diff -u linux-6.2.0/Documentation/admin-guide/kernel-parameters.txt linux-6.2.0/Documentation/admin-guide/kernel-parameters.txt --- linux-6.2.0/Documentation/admin-guide/kernel-parameters.txt +++ linux-6.2.0/Documentation/admin-guide/kernel-parameters.txt @@ -1610,6 +1610,26 @@ Format: off | on default: on + gather_data_sampling= + [X86,INTEL] Control the Gather Data Sampling (GDS) + mitigation. + + Gather Data Sampling is a hardware vulnerability which + allows unprivileged speculative access to data which was + previously stored in vector registers. + + This issue is mitigated by default in updated microcode. + The mitigation may have a performance impact but can be + disabled. On systems without the microcode mitigation + disabling AVX serves as a mitigation. + + force: Disable AVX to mitigate systems without + microcode mitigation. No effect if the microcode + mitigation is present. Known to cause crashes in + userspace with buggy AVX enumeration. + + off: Disable GDS mitigation. + gcov_persist= [GCOV] When non-zero (default), profiling data for kernel modules is saved and remains accessible via debugfs, even when the module is unloaded/reloaded. @@ -3245,24 +3265,25 @@ Disable all optional CPU mitigations. This improves system performance, but it may also expose users to several CPU vulnerabilities. - Equivalent to: nopti [X86,PPC] - if nokaslr then kpti=0 [ARM64] - nospectre_v1 [X86,PPC] - nobp=0 [S390] - nospectre_v2 [X86,PPC,S390,ARM64] - spectre_v2_user=off [X86] - spec_store_bypass_disable=off [X86,PPC] - ssbd=force-off [ARM64] - nospectre_bhb [ARM64] + Equivalent to: if nokaslr then kpti=0 [ARM64] + gather_data_sampling=off [X86] + kvm.nx_huge_pages=off [X86] l1tf=off [X86] mds=off [X86] - tsx_async_abort=off [X86] - kvm.nx_huge_pages=off [X86] - srbds=off [X86,INTEL] + mmio_stale_data=off [X86] no_entry_flush [PPC] no_uaccess_flush [PPC] - mmio_stale_data=off [X86] + nobp=0 [S390] + nopti [X86,PPC] + nospectre_bhb [ARM64] + nospectre_v1 [X86,PPC] + nospectre_v2 [X86,PPC,S390,ARM64] retbleed=off [X86] + spec_store_bypass_disable=off [X86,PPC] + spectre_v2_user=off [X86] + srbds=off [X86,INTEL] + ssbd=force-off [ARM64] + tsx_async_abort=off [X86] Exceptions: This does not have any effect on diff -u linux-6.2.0/Makefile linux-6.2.0/Makefile --- linux-6.2.0/Makefile +++ linux-6.2.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 6 PATCHLEVEL = 2 -SUBLEVEL = 15 +SUBLEVEL = 16 EXTRAVERSION = NAME = Hurr durr I'ma ninja sloth diff -u linux-6.2.0/arch/arm/Kconfig linux-6.2.0/arch/arm/Kconfig --- linux-6.2.0/arch/arm/Kconfig +++ linux-6.2.0/arch/arm/Kconfig @@ -5,6 +5,7 @@ select ARCH_32BIT_OFF_T select ARCH_CORRECT_STACKTRACE_ON_KRETPROBE if HAVE_KRETPROBES && FRAME_POINTER && !ARM_UNWIND select ARCH_HAS_BINFMT_FLAT + select ARCH_HAS_CPU_FINALIZE_INIT if MMU select ARCH_HAS_CURRENT_STACK_POINTER select ARCH_HAS_DEBUG_VIRTUAL if MMU select ARCH_HAS_DMA_WRITE_COMBINE if !ARM_DMA_MEM_BUFFERABLE diff -u linux-6.2.0/arch/arm64/boot/dts/qcom/msm8996.dtsi linux-6.2.0/arch/arm64/boot/dts/qcom/msm8996.dtsi --- linux-6.2.0/arch/arm64/boot/dts/qcom/msm8996.dtsi +++ linux-6.2.0/arch/arm64/boot/dts/qcom/msm8996.dtsi @@ -2987,8 +2987,11 @@ interrupts = <0 131 IRQ_TYPE_LEVEL_HIGH>; phys = <&hsusb_phy1>, <&ssusb_phy_0>; phy-names = "usb2-phy", "usb3-phy"; + snps,hird-threshold = /bits/ 8 <0>; snps,dis_u2_susphy_quirk; snps,dis_enblslpm_quirk; + snps,is-utmi-l1-suspend; + tx-fifo-resize; }; }; diff -u linux-6.2.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dts linux-6.2.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dts --- linux-6.2.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dts +++ linux-6.2.0/arch/arm64/boot/dts/qcom/sdm845-xiaomi-polaris.dts @@ -726,6 +726,4 @@ vdd-3.3-ch0-supply = <&vreg_l25a_3p3>; vdd-3.3-ch1-supply = <&vreg_l23a_3p3>; - - qcom,snoc-host-cap-skip-quirk; status = "okay"; }; diff -u linux-6.2.0/arch/arm64/mm/copypage.c linux-6.2.0/arch/arm64/mm/copypage.c --- linux-6.2.0/arch/arm64/mm/copypage.c +++ linux-6.2.0/arch/arm64/mm/copypage.c @@ -21,9 +21,10 @@ copy_page(kto, kfrom); + if (kasan_hw_tags_enabled()) + page_kasan_tag_reset(to); + if (system_supports_mte() && page_mte_tagged(from)) { - if (kasan_hw_tags_enabled()) - page_kasan_tag_reset(to); /* It's a new page, shouldn't have been tagged yet */ WARN_ON_ONCE(!try_page_mte_tagging(to)); mte_copy_page_tags(kto, kfrom); diff -u linux-6.2.0/arch/m68k/kernel/setup_mm.c linux-6.2.0/arch/m68k/kernel/setup_mm.c --- linux-6.2.0/arch/m68k/kernel/setup_mm.c +++ linux-6.2.0/arch/m68k/kernel/setup_mm.c @@ -10,6 +10,7 @@ */ #include +#include #include #include #include @@ -504,7 +505,7 @@ module_init(proc_hardware_init); #endif -void check_bugs(void) +void __init arch_cpu_finalize_init(void) { #if defined(CONFIG_FPU) && !defined(CONFIG_M68KFPU_EMU) if (m68k_fputype == 0) { diff -u linux-6.2.0/arch/mips/Kconfig linux-6.2.0/arch/mips/Kconfig --- linux-6.2.0/arch/mips/Kconfig +++ linux-6.2.0/arch/mips/Kconfig @@ -4,6 +4,7 @@ default y select ARCH_32BIT_OFF_T if !64BIT select ARCH_BINFMT_ELF_STATE if MIPS_FP_SUPPORT + select ARCH_HAS_CPU_FINALIZE_INIT select ARCH_HAS_CURRENT_STACK_POINTER if !CC_IS_CLANG || CLANG_VERSION >= 140000 select ARCH_HAS_DEBUG_VIRTUAL if !64BIT select ARCH_HAS_FORTIFY_SOURCE diff -u linux-6.2.0/arch/powerpc/kernel/iommu.c linux-6.2.0/arch/powerpc/kernel/iommu.c --- linux-6.2.0/arch/powerpc/kernel/iommu.c +++ linux-6.2.0/arch/powerpc/kernel/iommu.c @@ -517,7 +517,7 @@ /* Convert entry to a dma_addr_t */ entry += tbl->it_offset; dma_addr = entry << tbl->it_page_shift; - dma_addr |= (s->offset & ~IOMMU_PAGE_MASK(tbl)); + dma_addr |= (vaddr & ~IOMMU_PAGE_MASK(tbl)); DBG(" - %lu pages, entry: %lx, dma_addr: %lx\n", npages, entry, dma_addr); @@ -904,6 +904,7 @@ unsigned int order; unsigned int nio_pages, io_order; struct page *page; + int tcesize = (1 << tbl->it_page_shift); size = PAGE_ALIGN(size); order = get_order(size); @@ -930,7 +931,8 @@ memset(ret, 0, size); /* Set up tces to cover the allocated range */ - nio_pages = size >> tbl->it_page_shift; + nio_pages = IOMMU_PAGE_ALIGN(size, tbl) >> tbl->it_page_shift; + io_order = get_iommu_order(size, tbl); mapping = iommu_alloc(dev, tbl, ret, nio_pages, DMA_BIDIRECTIONAL, mask >> tbl->it_page_shift, io_order, 0); @@ -938,7 +940,8 @@ free_pages((unsigned long)ret, order); return NULL; } - *dma_handle = mapping; + + *dma_handle = mapping | ((u64)ret & (tcesize - 1)); return ret; } @@ -949,7 +952,7 @@ unsigned int nio_pages; size = PAGE_ALIGN(size); - nio_pages = size >> tbl->it_page_shift; + nio_pages = IOMMU_PAGE_ALIGN(size, tbl) >> tbl->it_page_shift; iommu_free(tbl, dma_handle, nio_pages); size = PAGE_ALIGN(size); free_pages((unsigned long)vaddr, get_order(size)); diff -u linux-6.2.0/arch/sh/Kconfig linux-6.2.0/arch/sh/Kconfig --- linux-6.2.0/arch/sh/Kconfig +++ linux-6.2.0/arch/sh/Kconfig @@ -7,6 +7,7 @@ select ARCH_HAVE_CUSTOM_GPIO_H select ARCH_HAVE_NMI_SAFE_CMPXCHG if (GUSA_RB || CPU_SH4A) select ARCH_HAS_BINFMT_FLAT if !MMU + select ARCH_HAS_CPU_FINALIZE_INIT select ARCH_HAS_CURRENT_STACK_POINTER select ARCH_HAS_GIGANTIC_PAGE select ARCH_HAS_GCOV_PROFILE_ALL diff -u linux-6.2.0/arch/sparc/Kconfig linux-6.2.0/arch/sparc/Kconfig --- linux-6.2.0/arch/sparc/Kconfig +++ linux-6.2.0/arch/sparc/Kconfig @@ -51,6 +51,7 @@ config SPARC32 def_bool !64BIT select ARCH_32BIT_OFF_T + select ARCH_HAS_CPU_FINALIZE_INIT if !SMP select ARCH_HAS_SYNC_DMA_FOR_CPU select CLZ_TAB select DMA_DIRECT_REMAP diff -u linux-6.2.0/arch/x86/Kconfig linux-6.2.0/arch/x86/Kconfig --- linux-6.2.0/arch/x86/Kconfig +++ linux-6.2.0/arch/x86/Kconfig @@ -70,6 +70,7 @@ select ARCH_HAS_ACPI_TABLE_UPGRADE if ACPI select ARCH_HAS_CACHE_LINE_SIZE select ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION + select ARCH_HAS_CPU_FINALIZE_INIT select ARCH_HAS_CURRENT_STACK_POINTER select ARCH_HAS_DEBUG_VIRTUAL select ARCH_HAS_DEBUG_VM_PGTABLE if !X86_PAE @@ -2639,6 +2640,25 @@ against straight line speculation. The kernel image might be slightly larger. +config GDS_FORCE_MITIGATION + bool "Force GDS Mitigation" + depends on CPU_SUP_INTEL + default n + help + Gather Data Sampling (GDS) is a hardware vulnerability which allows + unprivileged speculative access to data which was previously stored in + vector registers. + + This option is equivalent to setting gather_data_sampling=force on the + command line. The microcode mitigation is used if present, otherwise + AVX is disabled as a mitigation. On affected systems that are missing + the microcode any userspace code that unconditionally uses AVX will + break with this option set. + + Setting this option on systems not vulnerable to GDS has no effect. + + If in doubt, say N. + endif config ARCH_HAS_ADD_PAGES diff -u linux-6.2.0/arch/x86/include/asm/kvm_host.h linux-6.2.0/arch/x86/include/asm/kvm_host.h --- linux-6.2.0/arch/x86/include/asm/kvm_host.h +++ linux-6.2.0/arch/x86/include/asm/kvm_host.h @@ -1342,21 +1342,12 @@ struct task_struct *nx_huge_page_recovery_thread; #ifdef CONFIG_X86_64 - /* - * Whether the TDP MMU is enabled for this VM. This contains a - * snapshot of the TDP MMU module parameter from when the VM was - * created and remains unchanged for the life of the VM. If this is - * true, TDP MMU handler functions will run for various MMU - * operations. - */ - bool tdp_mmu_enabled; - /* The number of TDP MMU pages across all roots. */ atomic64_t tdp_mmu_pages; /* - * List of kvm_mmu_page structs being used as roots. - * All kvm_mmu_page structs in the list should have + * List of struct kvm_mmu_pages being used as roots. + * All struct kvm_mmu_pages in the list should have * tdp_mmu_page set. * * For reads, this list is protected by: diff -u linux-6.2.0/arch/x86/include/asm/microcode.h linux-6.2.0/arch/x86/include/asm/microcode.h --- linux-6.2.0/arch/x86/include/asm/microcode.h +++ linux-6.2.0/arch/x86/include/asm/microcode.h @@ -5,6 +5,7 @@ #include #include #include +#include struct ucode_patch { struct list_head plist; diff -u linux-6.2.0/arch/x86/include/asm/microcode_amd.h linux-6.2.0/arch/x86/include/asm/microcode_amd.h --- linux-6.2.0/arch/x86/include/asm/microcode_amd.h +++ linux-6.2.0/arch/x86/include/asm/microcode_amd.h @@ -49,10 +49,12 @@ extern int __init save_microcode_in_initrd_amd(unsigned int family); void reload_ucode_amd(unsigned int cpu); +extern void amd_check_microcode(void); #else static inline void __init load_ucode_amd_bsp(unsigned int family) {} static inline void load_ucode_amd_ap(unsigned int family) {} static inline int __init save_microcode_in_initrd_amd(unsigned int family) { return -EINVAL; } static inline void reload_ucode_amd(unsigned int cpu) {} +static inline void amd_check_microcode(void) {} #endif #endif /* _ASM_X86_MICROCODE_AMD_H */ diff -u linux-6.2.0/arch/x86/include/asm/msr-index.h linux-6.2.0/arch/x86/include/asm/msr-index.h --- linux-6.2.0/arch/x86/include/asm/msr-index.h +++ linux-6.2.0/arch/x86/include/asm/msr-index.h @@ -153,6 +153,15 @@ * Not susceptible to Post-Barrier * Return Stack Buffer Predictions. */ +#define ARCH_CAP_GDS_CTRL BIT(25) /* + * CPU is vulnerable to Gather + * Data Sampling (GDS) and + * has controls for mitigation. + */ +#define ARCH_CAP_GDS_NO BIT(26) /* + * CPU is not vulnerable to Gather + * Data Sampling (GDS). + */ #define ARCH_CAP_XAPIC_DISABLE BIT(21) /* * IA32_XAPIC_DISABLE_STATUS MSR @@ -176,6 +185,8 @@ #define RNGDS_MITG_DIS BIT(0) /* SRBDS support */ #define RTM_ALLOW BIT(1) /* TSX development mode */ #define FB_CLEAR_DIS BIT(3) /* CPU Fill buffer clear disable */ +#define GDS_MITG_DIS BIT(4) /* Disable GDS mitigation */ +#define GDS_MITG_LOCKED BIT(5) /* GDS mitigation locked */ #define MSR_IA32_SYSENTER_CS 0x00000174 #define MSR_IA32_SYSENTER_ESP 0x00000175 @@ -538,6 +549,7 @@ #define MSR_AMD64_DE_CFG 0xc0011029 #define MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT 1 #define MSR_AMD64_DE_CFG_LFENCE_SERIALIZE BIT_ULL(MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT) +#define MSR_AMD64_DE_CFG_ZEN2_FP_BACKUP_FIX_BIT 9 #define MSR_AMD64_BU_CFG2 0xc001102a #define MSR_AMD64_IBSFETCHCTL 0xc0011030 diff -u linux-6.2.0/arch/x86/kernel/cpu/amd.c linux-6.2.0/arch/x86/kernel/cpu/amd.c --- linux-6.2.0/arch/x86/kernel/cpu/amd.c +++ linux-6.2.0/arch/x86/kernel/cpu/amd.c @@ -27,11 +27,6 @@ #include "cpu.h" -static const int amd_erratum_383[]; -static const int amd_erratum_400[]; -static const int amd_erratum_1054[]; -static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum); - /* * nodes_per_socket: Stores the number of nodes per socket. * Refer to Fam15h Models 00-0fh BKDG - CPUID Fn8000_001E_ECX @@ -39,6 +34,78 @@ */ static u32 nodes_per_socket = 1; +/* + * AMD errata checking + * + * Errata are defined as arrays of ints using the AMD_LEGACY_ERRATUM() or + * AMD_OSVW_ERRATUM() macros. The latter is intended for newer errata that + * have an OSVW id assigned, which it takes as first argument. Both take a + * variable number of family-specific model-stepping ranges created by + * AMD_MODEL_RANGE(). + * + * Example: + * + * const int amd_erratum_319[] = + * AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0x4, 0x2), + * AMD_MODEL_RANGE(0x10, 0x8, 0x0, 0x8, 0x0), + * AMD_MODEL_RANGE(0x10, 0x9, 0x0, 0x9, 0x0)); + */ + +#define AMD_LEGACY_ERRATUM(...) { -1, __VA_ARGS__, 0 } +#define AMD_OSVW_ERRATUM(osvw_id, ...) { osvw_id, __VA_ARGS__, 0 } +#define AMD_MODEL_RANGE(f, m_start, s_start, m_end, s_end) \ + ((f << 24) | (m_start << 16) | (s_start << 12) | (m_end << 4) | (s_end)) +#define AMD_MODEL_RANGE_FAMILY(range) (((range) >> 24) & 0xff) +#define AMD_MODEL_RANGE_START(range) (((range) >> 12) & 0xfff) +#define AMD_MODEL_RANGE_END(range) ((range) & 0xfff) + +static const int amd_erratum_400[] = + AMD_OSVW_ERRATUM(1, AMD_MODEL_RANGE(0xf, 0x41, 0x2, 0xff, 0xf), + AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0xff, 0xf)); + +static const int amd_erratum_383[] = + AMD_OSVW_ERRATUM(3, AMD_MODEL_RANGE(0x10, 0, 0, 0xff, 0xf)); + +/* #1054: Instructions Retired Performance Counter May Be Inaccurate */ +static const int amd_erratum_1054[] = + AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x17, 0, 0, 0x2f, 0xf)); + +static const int amd_zenbleed[] = + AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x17, 0x30, 0x0, 0x4f, 0xf), + AMD_MODEL_RANGE(0x17, 0x60, 0x0, 0x7f, 0xf), + AMD_MODEL_RANGE(0x17, 0xa0, 0x0, 0xaf, 0xf)); + +static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum) +{ + int osvw_id = *erratum++; + u32 range; + u32 ms; + + if (osvw_id >= 0 && osvw_id < 65536 && + cpu_has(cpu, X86_FEATURE_OSVW)) { + u64 osvw_len; + + rdmsrl(MSR_AMD64_OSVW_ID_LENGTH, osvw_len); + if (osvw_id < osvw_len) { + u64 osvw_bits; + + rdmsrl(MSR_AMD64_OSVW_STATUS + (osvw_id >> 6), + osvw_bits); + return osvw_bits & (1ULL << (osvw_id & 0x3f)); + } + } + + /* OSVW unavailable or ID unknown, match family-model-stepping range */ + ms = (cpu->x86_model << 4) | cpu->x86_stepping; + while ((range = *erratum++)) + if ((cpu->x86 == AMD_MODEL_RANGE_FAMILY(range)) && + (ms >= AMD_MODEL_RANGE_START(range)) && + (ms <= AMD_MODEL_RANGE_END(range))) + return true; + + return false; +} + static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p) { u32 gprs[8] = { 0 }; @@ -916,6 +983,47 @@ } } +static bool cpu_has_zenbleed_microcode(void) +{ + u32 good_rev = 0; + + switch (boot_cpu_data.x86_model) { + case 0x30 ... 0x3f: good_rev = 0x0830107a; break; + case 0x60 ... 0x67: good_rev = 0x0860010b; break; + case 0x68 ... 0x6f: good_rev = 0x08608105; break; + case 0x70 ... 0x7f: good_rev = 0x08701032; break; + case 0xa0 ... 0xaf: good_rev = 0x08a00008; break; + + default: + return false; + break; + } + + if (boot_cpu_data.microcode < good_rev) + return false; + + return true; +} + +static void zenbleed_check(struct cpuinfo_x86 *c) +{ + if (!cpu_has_amd_erratum(c, amd_zenbleed)) + return; + + if (cpu_has(c, X86_FEATURE_HYPERVISOR)) + return; + + if (!cpu_has(c, X86_FEATURE_AVX)) + return; + + if (!cpu_has_zenbleed_microcode()) { + pr_notice_once("Zenbleed: please update your microcode for the most optimal fix\n"); + msr_set_bit(MSR_AMD64_DE_CFG, MSR_AMD64_DE_CFG_ZEN2_FP_BACKUP_FIX_BIT); + } else { + msr_clear_bit(MSR_AMD64_DE_CFG, MSR_AMD64_DE_CFG_ZEN2_FP_BACKUP_FIX_BIT); + } +} + static void init_amd(struct cpuinfo_x86 *c) { early_init_amd(c); @@ -1005,6 +1113,8 @@ msr_set_bit(MSR_K7_HWCR, MSR_K7_HWCR_IRPERF_EN_BIT); check_null_seg_clears_base(c); + + zenbleed_check(c); } #ifdef CONFIG_X86_32 @@ -1100,73 +1210,6 @@ cpu_dev_register(amd_cpu_dev); -/* - * AMD errata checking - * - * Errata are defined as arrays of ints using the AMD_LEGACY_ERRATUM() or - * AMD_OSVW_ERRATUM() macros. The latter is intended for newer errata that - * have an OSVW id assigned, which it takes as first argument. Both take a - * variable number of family-specific model-stepping ranges created by - * AMD_MODEL_RANGE(). - * - * Example: - * - * const int amd_erratum_319[] = - * AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0x4, 0x2), - * AMD_MODEL_RANGE(0x10, 0x8, 0x0, 0x8, 0x0), - * AMD_MODEL_RANGE(0x10, 0x9, 0x0, 0x9, 0x0)); - */ - -#define AMD_LEGACY_ERRATUM(...) { -1, __VA_ARGS__, 0 } -#define AMD_OSVW_ERRATUM(osvw_id, ...) { osvw_id, __VA_ARGS__, 0 } -#define AMD_MODEL_RANGE(f, m_start, s_start, m_end, s_end) \ - ((f << 24) | (m_start << 16) | (s_start << 12) | (m_end << 4) | (s_end)) -#define AMD_MODEL_RANGE_FAMILY(range) (((range) >> 24) & 0xff) -#define AMD_MODEL_RANGE_START(range) (((range) >> 12) & 0xfff) -#define AMD_MODEL_RANGE_END(range) ((range) & 0xfff) - -static const int amd_erratum_400[] = - AMD_OSVW_ERRATUM(1, AMD_MODEL_RANGE(0xf, 0x41, 0x2, 0xff, 0xf), - AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0xff, 0xf)); - -static const int amd_erratum_383[] = - AMD_OSVW_ERRATUM(3, AMD_MODEL_RANGE(0x10, 0, 0, 0xff, 0xf)); - -/* #1054: Instructions Retired Performance Counter May Be Inaccurate */ -static const int amd_erratum_1054[] = - AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x17, 0, 0, 0x2f, 0xf)); - -static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum) -{ - int osvw_id = *erratum++; - u32 range; - u32 ms; - - if (osvw_id >= 0 && osvw_id < 65536 && - cpu_has(cpu, X86_FEATURE_OSVW)) { - u64 osvw_len; - - rdmsrl(MSR_AMD64_OSVW_ID_LENGTH, osvw_len); - if (osvw_id < osvw_len) { - u64 osvw_bits; - - rdmsrl(MSR_AMD64_OSVW_STATUS + (osvw_id >> 6), - osvw_bits); - return osvw_bits & (1ULL << (osvw_id & 0x3f)); - } - } - - /* OSVW unavailable or ID unknown, match family-model-stepping range */ - ms = (cpu->x86_model << 4) | cpu->x86_stepping; - while ((range = *erratum++)) - if ((cpu->x86 == AMD_MODEL_RANGE_FAMILY(range)) && - (ms >= AMD_MODEL_RANGE_START(range)) && - (ms <= AMD_MODEL_RANGE_END(range))) - return true; - - return false; -} - void set_dr_addr_mask(unsigned long mask, int dr) { if (!boot_cpu_has(X86_FEATURE_BPEXT)) @@ -1203,0 +1247,12 @@ + +static void zenbleed_check_cpu(void *unused) +{ + struct cpuinfo_x86 *c = &cpu_data(smp_processor_id()); + + zenbleed_check(c); +} + +void amd_check_microcode(void) +{ + on_each_cpu(zenbleed_check_cpu, NULL, 1); +} diff -u linux-6.2.0/arch/x86/kernel/cpu/bugs.c linux-6.2.0/arch/x86/kernel/cpu/bugs.c --- linux-6.2.0/arch/x86/kernel/cpu/bugs.c +++ linux-6.2.0/arch/x86/kernel/cpu/bugs.c @@ -9,7 +9,6 @@ * - Andrew D. Balsa (code cleanup). */ #include -#include #include #include #include @@ -27,8 +26,6 @@ #include #include #include -#include -#include #include #include #include @@ -49,6 +46,7 @@ static void __init mmio_select_mitigation(void); static void __init srbds_select_mitigation(void); static void __init l1d_flush_select_mitigation(void); +static void __init gds_select_mitigation(void); /* The base value of the SPEC_CTRL MSR without task-specific bits set */ u64 x86_spec_ctrl_base; @@ -124,21 +122,8 @@ DEFINE_STATIC_KEY_FALSE(mmio_stale_data_clear); EXPORT_SYMBOL_GPL(mmio_stale_data_clear); -void __init check_bugs(void) +void __init cpu_select_mitigations(void) { - identify_boot_cpu(); - - /* - * identify_boot_cpu() initialized SMT support information, let the - * core code know. - */ - cpu_smt_check_topology(); - - if (!IS_ENABLED(CONFIG_SMP)) { - pr_info("CPU: "); - print_cpu_info(&boot_cpu_data); - } - /* * Read the SPEC_CTRL MSR to account for reserved bits which may * have unknown values. AMD64_LS_CFG MSR is cached in the early AMD @@ -175,39 +160,7 @@ md_clear_select_mitigation(); srbds_select_mitigation(); l1d_flush_select_mitigation(); - - arch_smt_update(); - -#ifdef CONFIG_X86_32 - /* - * Check whether we are able to run this kernel safely on SMP. - * - * - i386 is no longer supported. - * - In order to run on anything without a TSC, we need to be - * compiled for a i486. - */ - if (boot_cpu_data.x86 < 4) - panic("Kernel requires i486+ for 'invlpg' and other features"); - - init_utsname()->machine[1] = - '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86); - alternative_instructions(); - - fpu__init_check_bugs(); -#else /* CONFIG_X86_64 */ - alternative_instructions(); - - /* - * Make sure the first 2MB area is not mapped by huge pages - * There are typically fixed size MTRRs in there and overlapping - * MTRRs into large pages causes slow downs. - * - * Right now we don't do that with gbpages because there seems - * very little benefit for that case. - */ - if (!direct_gbpages) - set_memory_4k((unsigned long)__va(0), 1); -#endif + gds_select_mitigation(); } /* @@ -694,6 +647,149 @@ early_param("l1d_flush", l1d_flush_parse_cmdline); #undef pr_fmt +#define pr_fmt(fmt) "GDS: " fmt + +enum gds_mitigations { + GDS_MITIGATION_OFF, + GDS_MITIGATION_UCODE_NEEDED, + GDS_MITIGATION_FORCE, + GDS_MITIGATION_FULL, + GDS_MITIGATION_FULL_LOCKED, + GDS_MITIGATION_HYPERVISOR, +}; + +#if IS_ENABLED(CONFIG_GDS_FORCE_MITIGATION) +static enum gds_mitigations gds_mitigation __ro_after_init = GDS_MITIGATION_FORCE; +#else +static enum gds_mitigations gds_mitigation __ro_after_init = GDS_MITIGATION_FULL; +#endif + +static const char * const gds_strings[] = { + [GDS_MITIGATION_OFF] = "Vulnerable", + [GDS_MITIGATION_UCODE_NEEDED] = "Vulnerable: No microcode", + [GDS_MITIGATION_FORCE] = "Mitigation: AVX disabled, no microcode", + [GDS_MITIGATION_FULL] = "Mitigation: Microcode", + [GDS_MITIGATION_FULL_LOCKED] = "Mitigation: Microcode (locked)", + [GDS_MITIGATION_HYPERVISOR] = "Unknown: Dependent on hypervisor status", +}; + +bool gds_ucode_mitigated(void) +{ + return (gds_mitigation == GDS_MITIGATION_FULL || + gds_mitigation == GDS_MITIGATION_FULL_LOCKED); +} +EXPORT_SYMBOL_GPL(gds_ucode_mitigated); + +void update_gds_msr(void) +{ + u64 mcu_ctrl_after; + u64 mcu_ctrl; + + switch (gds_mitigation) { + case GDS_MITIGATION_OFF: + rdmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl); + mcu_ctrl |= GDS_MITG_DIS; + break; + case GDS_MITIGATION_FULL_LOCKED: + /* + * The LOCKED state comes from the boot CPU. APs might not have + * the same state. Make sure the mitigation is enabled on all + * CPUs. + */ + case GDS_MITIGATION_FULL: + rdmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl); + mcu_ctrl &= ~GDS_MITG_DIS; + break; + case GDS_MITIGATION_FORCE: + case GDS_MITIGATION_UCODE_NEEDED: + case GDS_MITIGATION_HYPERVISOR: + return; + }; + + wrmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl); + + /* + * Check to make sure that the WRMSR value was not ignored. Writes to + * GDS_MITG_DIS will be ignored if this processor is locked but the boot + * processor was not. + */ + rdmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl_after); + WARN_ON_ONCE(mcu_ctrl != mcu_ctrl_after); +} + +static void __init gds_select_mitigation(void) +{ + u64 mcu_ctrl; + + if (!boot_cpu_has_bug(X86_BUG_GDS)) + return; + + if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) { + gds_mitigation = GDS_MITIGATION_HYPERVISOR; + goto out; + } + + if (cpu_mitigations_off()) + gds_mitigation = GDS_MITIGATION_OFF; + /* Will verify below that mitigation _can_ be disabled */ + + /* No microcode */ + if (!(x86_read_arch_cap_msr() & ARCH_CAP_GDS_CTRL)) { + if (gds_mitigation == GDS_MITIGATION_FORCE) { + /* + * This only needs to be done on the boot CPU so do it + * here rather than in update_gds_msr() + */ + setup_clear_cpu_cap(X86_FEATURE_AVX); + pr_warn("Microcode update needed! Disabling AVX as mitigation.\n"); + } else { + gds_mitigation = GDS_MITIGATION_UCODE_NEEDED; + } + goto out; + } + + /* Microcode has mitigation, use it */ + if (gds_mitigation == GDS_MITIGATION_FORCE) + gds_mitigation = GDS_MITIGATION_FULL; + + rdmsrl(MSR_IA32_MCU_OPT_CTRL, mcu_ctrl); + if (mcu_ctrl & GDS_MITG_LOCKED) { + if (gds_mitigation == GDS_MITIGATION_OFF) + pr_warn("Mitigation locked. Disable failed.\n"); + + /* + * The mitigation is selected from the boot CPU. All other CPUs + * _should_ have the same state. If the boot CPU isn't locked + * but others are then update_gds_msr() will WARN() of the state + * mismatch. If the boot CPU is locked update_gds_msr() will + * ensure the other CPUs have the mitigation enabled. + */ + gds_mitigation = GDS_MITIGATION_FULL_LOCKED; + } + + update_gds_msr(); +out: + pr_info("%s\n", gds_strings[gds_mitigation]); +} + +static int __init gds_parse_cmdline(char *str) +{ + if (!str) + return -EINVAL; + + if (!boot_cpu_has_bug(X86_BUG_GDS)) + return 0; + + if (!strcmp(str, "off")) + gds_mitigation = GDS_MITIGATION_OFF; + else if (!strcmp(str, "force")) + gds_mitigation = GDS_MITIGATION_FORCE; + + return 0; +} +early_param("gather_data_sampling", gds_parse_cmdline); + +#undef pr_fmt #define pr_fmt(fmt) "Spectre V1 : " fmt enum spectre_v1_mitigation { @@ -2434,6 +2530,11 @@ return sysfs_emit(buf, "%s\n", retbleed_strings[retbleed_mitigation]); } +static ssize_t gds_show_state(char *buf) +{ + return sysfs_emit(buf, "%s\n", gds_strings[gds_mitigation]); +} + static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr, char *buf, unsigned int bug) { @@ -2483,6 +2584,9 @@ case X86_BUG_RETBLEED: return retbleed_show_state(buf); + case X86_BUG_GDS: + return gds_show_state(buf); + default: break; } @@ -2549,2 +2653,7 @@ } + +ssize_t cpu_show_gds(struct device *dev, struct device_attribute *attr, char *buf) +{ + return cpu_show_common(dev, attr, buf, X86_BUG_GDS); +} #endif diff -u linux-6.2.0/arch/x86/kernel/cpu/common.c linux-6.2.0/arch/x86/kernel/cpu/common.c --- linux-6.2.0/arch/x86/kernel/cpu/common.c +++ linux-6.2.0/arch/x86/kernel/cpu/common.c @@ -18,12 +18,16 @@ #include #include #include +#include #include +#include #include #include #include #include +#include +#include #include #include #include @@ -59,7 +63,7 @@ #include #include #include -#include +#include #include #include @@ -1258,6 +1262,8 @@ #define RETBLEED BIT(3) /* CPU is affected by SMT (cross-thread) return predictions */ #define SMT_RSB BIT(4) +/* CPU is affected by GDS */ +#define GDS BIT(5) static const struct x86_cpu_id cpu_vuln_blacklist[] __initconst = { VULNBL_INTEL_STEPPINGS(IVYBRIDGE, X86_STEPPING_ANY, SRBDS), @@ -1270,19 +1276,21 @@ VULNBL_INTEL_STEPPINGS(BROADWELL_X, X86_STEPPING_ANY, MMIO), VULNBL_INTEL_STEPPINGS(BROADWELL, X86_STEPPING_ANY, SRBDS), VULNBL_INTEL_STEPPINGS(SKYLAKE_L, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), - VULNBL_INTEL_STEPPINGS(SKYLAKE_X, X86_STEPPING_ANY, MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(SKYLAKE_X, X86_STEPPING_ANY, MMIO | RETBLEED | GDS), VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), - VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), - VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED | GDS), + VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED | GDS), VULNBL_INTEL_STEPPINGS(CANNONLAKE_L, X86_STEPPING_ANY, RETBLEED), - VULNBL_INTEL_STEPPINGS(ICELAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), - VULNBL_INTEL_STEPPINGS(ICELAKE_D, X86_STEPPING_ANY, MMIO), - VULNBL_INTEL_STEPPINGS(ICELAKE_X, X86_STEPPING_ANY, MMIO), - VULNBL_INTEL_STEPPINGS(COMETLAKE, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(ICELAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED | GDS), + VULNBL_INTEL_STEPPINGS(ICELAKE_D, X86_STEPPING_ANY, MMIO | GDS), + VULNBL_INTEL_STEPPINGS(ICELAKE_X, X86_STEPPING_ANY, MMIO | GDS), + VULNBL_INTEL_STEPPINGS(COMETLAKE, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED | GDS), VULNBL_INTEL_STEPPINGS(COMETLAKE_L, X86_STEPPINGS(0x0, 0x0), MMIO | RETBLEED), - VULNBL_INTEL_STEPPINGS(COMETLAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), + VULNBL_INTEL_STEPPINGS(COMETLAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED | GDS), + VULNBL_INTEL_STEPPINGS(TIGERLAKE_L, X86_STEPPING_ANY, GDS), + VULNBL_INTEL_STEPPINGS(TIGERLAKE, X86_STEPPING_ANY, GDS), VULNBL_INTEL_STEPPINGS(LAKEFIELD, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED), - VULNBL_INTEL_STEPPINGS(ROCKETLAKE, X86_STEPPING_ANY, MMIO | RETBLEED), + VULNBL_INTEL_STEPPINGS(ROCKETLAKE, X86_STEPPING_ANY, MMIO | RETBLEED | GDS), VULNBL_INTEL_STEPPINGS(ATOM_TREMONT, X86_STEPPING_ANY, MMIO | MMIO_SBDS), VULNBL_INTEL_STEPPINGS(ATOM_TREMONT_D, X86_STEPPING_ANY, MMIO), VULNBL_INTEL_STEPPINGS(ATOM_TREMONT_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS), @@ -1411,6 +1419,16 @@ if (cpu_matches(cpu_vuln_blacklist, SMT_RSB)) setup_force_cpu_bug(X86_BUG_SMT_RSB); + /* + * Check if CPU is vulnerable to GDS. If running in a virtual machine on + * an affected processor, the VMM may have disabled the use of GATHER by + * disabling AVX2. The only way to do this in HW is to clear XCR0[2], + * which means that AVX will be disabled. + */ + if (cpu_matches(cpu_vuln_blacklist, GDS) && !(ia32_cap & ARCH_CAP_GDS_NO) && + boot_cpu_has(X86_FEATURE_AVX)) + setup_force_cpu_bug(X86_BUG_GDS); + if (cpu_matches(cpu_vuln_whitelist, NO_MELTDOWN)) return; @@ -1592,10 +1610,6 @@ sld_setup(c); - fpu__init_system(c); - - init_sigframe_size(); - #ifdef CONFIG_X86_32 /* * Regardless of whether PCID is enumerated, the SDM says @@ -1977,6 +1991,8 @@ validate_apic_and_package_id(c); x86_spec_ctrl_setup_ap(); update_srbds_msr(); + if (boot_cpu_has_bug(X86_BUG_GDS)) + update_gds_msr(); tsx_ap_init(); } @@ -2281,8 +2297,6 @@ doublefault_init_cpu_tss(); - fpu__init_cpu(); - if (is_uv_system()) uv_cpu_init(); @@ -2298,6 +2312,7 @@ */ cpu_init_exception_handling(); cpu_init(); + fpu__init_cpu(); } #endif @@ -2337,6 +2352,8 @@ perf_check_microcode(); + amd_check_microcode(); + store_cpu_caps(&curr_info); if (!memcmp(&prev_info->x86_capability, &curr_info.x86_capability, @@ -2360,0 +2378,66 @@ + +void __init arch_cpu_finalize_init(void) +{ + identify_boot_cpu(); + + /* + * identify_boot_cpu() initialized SMT support information, let the + * core code know. + */ + cpu_smt_check_topology(); + + if (!IS_ENABLED(CONFIG_SMP)) { + pr_info("CPU: "); + print_cpu_info(&boot_cpu_data); + } + + cpu_select_mitigations(); + + arch_smt_update(); + + if (IS_ENABLED(CONFIG_X86_32)) { + /* + * Check whether this is a real i386 which is not longer + * supported and fixup the utsname. + */ + if (boot_cpu_data.x86 < 4) + panic("Kernel requires i486+ for 'invlpg' and other features"); + + init_utsname()->machine[1] = + '0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86); + } + + /* + * Must be before alternatives because it might set or clear + * feature bits. + */ + fpu__init_system(); + fpu__init_cpu(); + + alternative_instructions(); + + if (IS_ENABLED(CONFIG_X86_64)) { + /* + * Make sure the first 2MB area is not mapped by huge pages + * There are typically fixed size MTRRs in there and overlapping + * MTRRs into large pages causes slow downs. + * + * Right now we don't do that with gbpages because there seems + * very little benefit for that case. + */ + if (!direct_gbpages) + set_memory_4k((unsigned long)__va(0), 1); + } else { + fpu__init_check_bugs(); + } + + /* + * This needs to be called before any devices perform DMA + * operations that might use the SWIOTLB bounce buffers. It will + * mark the bounce buffers as decrypted so that their usage will + * not cause "plain-text" data to be decrypted when accessed. It + * must be called after late_time_init() so that Hyper-V x86/x64 + * hypercalls work when the SWIOTLB bounce buffers are decrypted. + */ + mem_encrypt_init(); +} diff -u linux-6.2.0/arch/x86/kernel/signal.c linux-6.2.0/arch/x86/kernel/signal.c --- linux-6.2.0/arch/x86/kernel/signal.c +++ linux-6.2.0/arch/x86/kernel/signal.c @@ -182,7 +182,7 @@ static unsigned long __ro_after_init max_frame_size; static unsigned int __ro_after_init fpu_default_state_size; -void __init init_sigframe_size(void) +static int __init init_sigframe_size(void) { fpu_default_state_size = fpu__get_fpstate_size(); @@ -194,7 +194,9 @@ max_frame_size = round_up(max_frame_size, FRAME_ALIGNMENT); pr_info("max sigframe size: %lu\n", max_frame_size); + return 0; } +early_initcall(init_sigframe_size); unsigned long get_sigframe_size(void) { diff -u linux-6.2.0/arch/x86/kernel/smp.c linux-6.2.0/arch/x86/kernel/smp.c --- linux-6.2.0/arch/x86/kernel/smp.c +++ linux-6.2.0/arch/x86/kernel/smp.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -146,31 +147,43 @@ static void native_stop_other_cpus(int wait) { - unsigned long flags; - unsigned long timeout; + unsigned int cpu = smp_processor_id(); + unsigned long flags, timeout; if (reboot_force) return; - /* - * Use an own vector here because smp_call_function - * does lots of things not suitable in a panic situation. - */ + /* Only proceed if this is the first CPU to reach this code */ + if (atomic_cmpxchg(&stopping_cpu, -1, cpu) != -1) + return; /* - * We start by using the REBOOT_VECTOR irq. - * The irq is treated as a sync point to allow critical - * regions of code on other cpus to release their spin locks - * and re-enable irqs. Jumping straight to an NMI might - * accidentally cause deadlocks with further shutdown/panic - * code. By syncing, we give the cpus up to one second to - * finish their work before we force them off with the NMI. + * 1) Send an IPI on the reboot vector to all other CPUs. + * + * The other CPUs should react on it after leaving critical + * sections and re-enabling interrupts. They might still hold + * locks, but there is nothing which can be done about that. + * + * 2) Wait for all other CPUs to report that they reached the + * HLT loop in stop_this_cpu() + * + * 3) If #2 timed out send an NMI to the CPUs which did not + * yet report + * + * 4) Wait for all other CPUs to report that they reached the + * HLT loop in stop_this_cpu() + * + * #3 can obviously race against a CPU reaching the HLT loop late. + * That CPU will have reported already and the "have all CPUs + * reached HLT" condition will be true despite the fact that the + * other CPU is still handling the NMI. Again, there is no + * protection against that as "disabled" APICs still respond to + * NMIs. */ - if (num_online_cpus() > 1) { - /* did someone beat us here? */ - if (atomic_cmpxchg(&stopping_cpu, -1, safe_smp_processor_id()) != -1) - return; + cpumask_copy(&cpus_stop_mask, cpu_online_mask); + cpumask_clear_cpu(cpu, &cpus_stop_mask); + if (!cpumask_empty(&cpus_stop_mask)) { /* sync above data before sending IRQ */ wmb(); @@ -183,12 +196,12 @@ * CPUs reach shutdown state. */ timeout = USEC_PER_SEC; - while (num_online_cpus() > 1 && timeout--) + while (!cpumask_empty(&cpus_stop_mask) && timeout--) udelay(1); } /* if the REBOOT_VECTOR didn't work, try with the NMI */ - if (num_online_cpus() > 1) { + if (!cpumask_empty(&cpus_stop_mask)) { /* * If NMI IPI is enabled, try to register the stop handler * and send the IPI. In any case try to wait for the other @@ -200,7 +213,8 @@ pr_emerg("Shutting down cpus with NMI\n"); - apic_send_IPI_allbutself(NMI_VECTOR); + for_each_cpu(cpu, &cpus_stop_mask) + apic->send_IPI(cpu, NMI_VECTOR); } /* * Don't wait longer than 10 ms if the caller didn't @@ -208,7 +222,7 @@ * one or more CPUs do not reach shutdown state. */ timeout = USEC_PER_MSEC * 10; - while (num_online_cpus() > 1 && (wait || timeout--)) + while (!cpumask_empty(&cpus_stop_mask) && (wait || timeout--)) udelay(1); } @@ -216,6 +230,12 @@ disable_local_APIC(); mcheck_cpu_clear(this_cpu_ptr(&cpu_info)); local_irq_restore(flags); + + /* + * Ensure that the cpus_stop_mask cache lines are invalidated on + * the other CPUs. See comment vs. SME in stop_this_cpu(). + */ + cpumask_clear(&cpus_stop_mask); } /* diff -u linux-6.2.0/arch/x86/kvm/vmx/nested.c linux-6.2.0/arch/x86/kvm/vmx/nested.c --- linux-6.2.0/arch/x86/kvm/vmx/nested.c +++ linux-6.2.0/arch/x86/kvm/vmx/nested.c @@ -4488,7 +4488,7 @@ * CR0_GUEST_HOST_MASK is already set in the original vmcs01 * (KVM doesn't change it); */ - vcpu->arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS; + vcpu->arch.cr0_guest_owned_bits = vmx_l1_guest_owned_cr0_bits(); vmx_set_cr0(vcpu, vmcs12->host_cr0); /* Same as above - no reason to call set_cr4_guest_host_mask(). */ @@ -4639,7 +4639,7 @@ */ vmx_set_efer(vcpu, nested_vmx_get_vmcs01_guest_efer(vmx)); - vcpu->arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS; + vcpu->arch.cr0_guest_owned_bits = vmx_l1_guest_owned_cr0_bits(); vmx_set_cr0(vcpu, vmcs_readl(CR0_READ_SHADOW)); vcpu->arch.cr4_guest_owned_bits = ~vmcs_readl(CR4_GUEST_HOST_MASK); diff -u linux-6.2.0/arch/x86/kvm/vmx/vmx.c linux-6.2.0/arch/x86/kvm/vmx/vmx.c --- linux-6.2.0/arch/x86/kvm/vmx/vmx.c +++ linux-6.2.0/arch/x86/kvm/vmx/vmx.c @@ -4728,7 +4728,7 @@ /* 22.2.1, 20.8.1 */ vm_entry_controls_set(vmx, vmx_vmentry_ctrl()); - vmx->vcpu.arch.cr0_guest_owned_bits = KVM_POSSIBLE_CR0_GUEST_BITS; + vmx->vcpu.arch.cr0_guest_owned_bits = vmx_l1_guest_owned_cr0_bits(); vmcs_writel(CR0_GUEST_HOST_MASK, ~vmx->vcpu.arch.cr0_guest_owned_bits); set_cr4_guest_host_mask(vmx); @@ -5450,7 +5450,7 @@ break; case 3: /* lmsw */ val = (exit_qualification >> LMSW_SOURCE_DATA_SHIFT) & 0x0f; - trace_kvm_cr_write(0, (kvm_read_cr0(vcpu) & ~0xful) | val); + trace_kvm_cr_write(0, (kvm_read_cr0_bits(vcpu, ~0xful) | val)); kvm_lmsw(vcpu, val); return kvm_skip_emulated_instruction(vcpu); @@ -7531,7 +7531,7 @@ if (!kvm_arch_has_noncoherent_dma(vcpu->kvm)) return (MTRR_TYPE_WRBACK << VMX_EPT_MT_EPTE_SHIFT) | VMX_EPT_IPAT_BIT; - if (kvm_read_cr0(vcpu) & X86_CR0_CD) { + if (kvm_read_cr0_bits(vcpu, X86_CR0_CD)) { if (kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED)) cache = MTRR_TYPE_WRBACK; else diff -u linux-6.2.0/arch/x86/kvm/x86.c linux-6.2.0/arch/x86/kvm/x86.c --- linux-6.2.0/arch/x86/kvm/x86.c +++ linux-6.2.0/arch/x86/kvm/x86.c @@ -310,6 +310,8 @@ static struct kmem_cache *x86_emulator_cache; +extern bool gds_ucode_mitigated(void); + /* * When called, it means the previous get/set msr reached an invalid msr. * Return true if we want to ignore/silent this failed msr access. @@ -904,6 +906,18 @@ void kvm_post_set_cr0(struct kvm_vcpu *vcpu, unsigned long old_cr0, unsigned long cr0) { + /* + * CR0.WP is incorporated into the MMU role, but only for non-nested, + * indirect shadow MMUs. If TDP is enabled, the MMU's metadata needs + * to be updated, e.g. so that emulating guest translations does the + * right thing, but there's no need to unload the root as CR0.WP + * doesn't affect SPTEs. + */ + if (tdp_enabled && (cr0 ^ old_cr0) == X86_CR0_WP) { + kvm_init_mmu(vcpu); + return; + } + if ((cr0 ^ old_cr0) & X86_CR0_PG) { kvm_clear_async_pf_completion_queue(vcpu); kvm_async_pf_hash_reset(vcpu); @@ -1586,7 +1600,7 @@ ARCH_CAP_SKIP_VMENTRY_L1DFLUSH | ARCH_CAP_SSB_NO | ARCH_CAP_MDS_NO | \ ARCH_CAP_PSCHANGE_MC_NO | ARCH_CAP_TSX_CTRL_MSR | ARCH_CAP_TAA_NO | \ ARCH_CAP_SBDR_SSDP_NO | ARCH_CAP_FBSDP_NO | ARCH_CAP_PSDP_NO | \ - ARCH_CAP_FB_CLEAR | ARCH_CAP_RRSBA | ARCH_CAP_PBRSB_NO) + ARCH_CAP_FB_CLEAR | ARCH_CAP_RRSBA | ARCH_CAP_PBRSB_NO | ARCH_CAP_GDS_NO) static u64 kvm_get_arch_capabilities(void) { @@ -1643,6 +1657,9 @@ */ } + if (!boot_cpu_has_bug(X86_BUG_GDS) || gds_ucode_mitigated()) + data |= ARCH_CAP_GDS_NO; + return data; } diff -u linux-6.2.0/block/blk-cgroup.c linux-6.2.0/block/blk-cgroup.c --- linux-6.2.0/block/blk-cgroup.c +++ linux-6.2.0/block/blk-cgroup.c @@ -501,6 +501,9 @@ list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) { struct blkcg *blkcg = blkg->blkcg; + if (hlist_unhashed(&blkg->blkcg_node)) + continue; + spin_lock(&blkcg->lock); blkg_destroy(blkg); spin_unlock(&blkcg->lock); diff -u linux-6.2.0/crypto/algapi.c linux-6.2.0/crypto/algapi.c --- linux-6.2.0/crypto/algapi.c +++ linux-6.2.0/crypto/algapi.c @@ -963,6 +963,9 @@ void crypto_enqueue_request_head(struct crypto_queue *queue, struct crypto_async_request *request) { + if (unlikely(queue->qlen >= queue->max_qlen)) + queue->backlog = queue->backlog->prev; + queue->qlen++; list_add(&request->list, &queue->list); } diff -u linux-6.2.0/debian.master/abi/abiname linux-6.2.0/debian.master/abi/abiname --- linux-6.2.0/debian.master/abi/abiname +++ linux-6.2.0/debian.master/abi/abiname @@ -1 +1 @@ -25 +27 diff -u linux-6.2.0/debian.master/abi/amd64/generic linux-6.2.0/debian.master/abi/amd64/generic --- linux-6.2.0/debian.master/abi/amd64/generic +++ linux-6.2.0/debian.master/abi/amd64/generic @@ -1,106 +1,106 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x7da96663 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0xd126ff61 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x10df2ba8 devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x40e3fa99 counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x4861218f counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x72e7df7a counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xac9d2096 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xcb969a59 counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xd94c8e01 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xfc9eff5d counter_priv drivers/counter/counter -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x01bce813 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x24627f33 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa5a55cae crypto_cipher_encrypt_one vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x1951f658 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x5aa68a43 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x0a43f242 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x0a59e5d2 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x1fc07242 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x2dea38b4 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x343890b8 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xb92547c8 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xc120abd0 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf89d9b1b devm_counter_add drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7eb285a9 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x89b259a2 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd25ede56 crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x005d5ba3 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x02c17669 to_cxl_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x08025006 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c503fa7 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x13968483 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x16e80cc8 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1c78d779 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1d8a1241 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x23bb31a5 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x243e9e78 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x25e6c539 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2a0bbc87 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2f0218ea devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x09a933bb to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0dbf1a74 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x173e4af3 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2873be7f devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3248b448 cxl_map_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x35c9e69f devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3d4e7bd3 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x44c53e22 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x47544737 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4ad74461 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4f5c414f cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5917fd2b devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5cc4cfce is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5d890b7b cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x635005f1 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x67744f73 cxl_rcrb_to_component drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x68aae719 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3ab7e352 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3b029758 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x499f3e3b cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4c9a902b devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x503f4723 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x53e215aa to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57307cd4 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5926d416 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5c724a6a cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x625e3445 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6948c54f cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ea9cb27 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f59e1b9 is_cxl_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x74128f68 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7763a710 is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x78b57e93 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7a077360 read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7b381470 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x728cf7d1 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7598d242 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x76af9d38 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x77af1ac1 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x79d8ee1b cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7ed3637c is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x8636ab05 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8772b760 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93c6739f is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x957ce596 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x853e08c1 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x86983359 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8935eba6 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8adc0d6e is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8bb38aee cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x95211335 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x973d9734 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x97589e30 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x977c3a6f is_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9eba0b89 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9f04e983 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa1c29cdd devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa7eb769a cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xad2b3ac1 cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xafe37bb6 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbc205fa0 to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc898ba7e cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc5d40a5 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd245ebf2 cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd3a2aa86 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd50ee1d8 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd71e1cee cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd972bb41 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdb25303a cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdcf68e08 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdff79f99 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe0da3f44 cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe49b83f2 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe7384b44 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe75e2895 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xeb6a0e3e to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf7fa6ae1 cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf8872e85 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfa1d547f to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb156cbf cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb4d4dc2 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xff04e136 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98b0b719 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9a46e4f0 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ca73a49 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ee09fdb to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa233e541 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa54813ae cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb5459d30 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb56aa57d devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb7dad28e cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbe994221 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbfd6cd06 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc333ae1d cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc86b309c devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcc07ffa9 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd04e5468 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd47ed799 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd89e2aa1 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xda3f9f0b cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe185f24b cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4e532db to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4e743c6 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xed086e07 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xefdc19f5 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf4b1e3b2 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf84e891c schedule_cxl_memdev_detach 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 0x284615d8 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x2db1d5ae dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3368b63b dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x359cb0a9 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3e1fa1b8 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4321327e dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x6b955c66 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x7250710b dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x76b954f2 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8b89813c dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9a037052 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9f9a65e2 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb9c3e091 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc7d0898f dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd83bee82 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xda42e5f4 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdf8102a6 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe02bf03d dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe0be96ee dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xed21f75a dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf61e2d1f dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x055b634b dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x11e5d8e7 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2fa7f246 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3905ce27 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x428d33ab dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4aa76cbf dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4f9980b5 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x58e403ca dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5ec02fbf dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x616383cc dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6738e3aa dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7bda88d3 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9596c08d dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x991c4ae3 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb41f2388 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb82c17cf dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xba54f85a dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbd093f91 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe1e4a693 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xebf07de9 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xed0df9f5 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 @@ -138,16 +138,16 @@ 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 0x0dd3a4d2 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x3838478e crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x438c0384 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x97911339 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xa68c8603 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xe4d6b7c2 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0x3999fa9c crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x6a43017f crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xe9e4d38e crypto_sha3_update -EXPORT_SYMBOL crypto/sm2_generic 0xc95f5428 sm2_compute_z_digest +EXPORT_SYMBOL crypto/nhpoly1305 0x488a9325 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x4f7b4716 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x6353e819 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x9d924629 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x9d9d059f crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xd2535c5e crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x07faf59d crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x6ab934f3 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x8bc74d1b crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xc14362c8 sm2_compute_z_digest EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox @@ -155,48 +155,49 @@ 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 0x48d8c7e7 acpi_video_get_levels -EXPORT_SYMBOL drivers/acpi/video 0x756c8f17 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 0x943c0d0e suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x35088ea1 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x681ee38f bcma_core_irq +EXPORT_SYMBOL drivers/acpi/video 0x9ae04ee3 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xd5d003fa acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0xaeaf15db suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x4ef48a47 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xa127675d 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 0x142b2697 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x3ed05eb2 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x105451a1 pi_release EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4a159d69 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x57a27373 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x6dd8df5f pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x7c4ee5c0 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x91bb4066 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x9432e05d pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xa6cd077c pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4e99b8ee paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x75b6fab8 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7bc18c36 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x93ff7334 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xae70b441 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xb14c945f pi_write_regr EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xdd2cebb5 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xdfbe1a07 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xf6cc7e5c pi_read_block -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x65b7ac84 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x2674a519 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xd3e12666 mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xb3b72dd2 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xbdccd6c4 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xe5687b37 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xf5c34497 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xfe597f3d pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf8832f64 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x89616444 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x12a701e4 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 0x0d3aaa1a ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0ddac7e4 ipmi_add_smi 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 0x3d0cf5dc ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x32c45679 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3cd0a247 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 +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x70f55ada ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7d2fad4e ipmi_add_smi 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 @@ -207,696 +208,695 @@ 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 0xeb4f30ae ipmi_get_smi_info 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 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 0x0be68921 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4c665ca6 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa28f5fb6 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe31babcf st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x2bc7dfe9 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x712cb784 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa2d67e5b xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x40fafb75 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4f59d9da st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdd5a2e93 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfecc8687 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1634a26f xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x3423bc47 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x623e83d4 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1ff2bab8 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x20b28c92 xillybus_init_endpoint EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4387f7f3 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x52f1ecb6 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbdd31991 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x21724c23 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x52378113 atmel_i2c_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x838b286f xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5c7580f4 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6e456045 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 0xc0ff000a atmel_i2c_send_receive 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 0xefc60133 atmel_i2c_send_receive 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 0xaa04056c psp_tee_process_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x038809b7 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x08d48fee fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ac7e5a5 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1186f4bf fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1888fe1f fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x195239b8 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d773116 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x243da214 fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x28aaa826 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x294528f7 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ba04c1f fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x307b135d fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x389558e1 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x292eb515 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3671035f fw_bus_type 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 0x43c2c75d fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d61fc78 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d7343c1 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e7c3454 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52425723 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x557aeb7f fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f970fd1 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6737e36d fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f2d6351 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x500ab5e8 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x525cd231 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x542edbdd fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b265439 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x67111d42 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d8b6610 fw_iso_context_queue_flush EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x810b8c14 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x85388183 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x730d6fdb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x73f56860 fw_card_initialize EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa733f2f2 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b69fdad fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6688367 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb30cc029 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xca2428dd fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8959847 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd95154ab fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb892fd92 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd14be9e fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd915bb5b fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe525e945 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe4734df4 fw_schedule_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4fc1a30 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8769445 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfcc72527 fw_cancel_transaction -EXPORT_SYMBOL drivers/fpga/dfl 0xa9f61561 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xcab7c41f dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x3cdac2f1 sysconfig_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe84818d1 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf74690db fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfec53d2a fw_core_remove_card +EXPORT_SYMBOL drivers/fpga/dfl 0x2dd57585 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x569385bf __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0xe43e4bf1 sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01675e62 drm_dp_mst_detect_port 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 0x063ac670 drm_dp_cec_unregister_connector 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 0x0991fcc0 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09ac7045 drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ac7e74d drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e77dc71 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13323358 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1369ee4a drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15ec778b drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x075c4d20 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08f5f94c drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a647d2d drm_dp_atomic_find_time_slots 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 0x161e8928 drm_dp_mst_update_slots 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 0x17c15a8a drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a124646 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 0x1d312e6d drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d6ded04 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f906b65 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b1e5bee drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x227ba032 drm_dp_link_train_clock_recovery_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 0x23fb8405 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23f46bb1 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2442ed3b drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x256d9495 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 0x26981369 drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x27a2c885 drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28e93063 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d47b3db drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c494c15 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ce573b0 drm_dp_set_subconnector_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 0x3065d736 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x387dd614 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x312baf93 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32ccb883 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34896de7 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x35a49c6d drm_dp_pcon_frl_configure_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39bf7f50 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a323605 drm_dp_pcon_frl_prepare 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 0x3a83d82f drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b30def6 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c2d2ee5 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3dd2752d drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3eabbfda drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40b67d90 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3eef9206 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41b5225f drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4286b366 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42a0698a drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x444791a7 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44d3be21 drm_dp_mst_connector_late_register 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 0x4b1a0fe2 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cb427eb drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d3f9215 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5168a302 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x488213f0 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x490d0c64 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x498c40ea drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4c384195 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e968cfd drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ede5943 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f9a9eea drm_atomic_get_mst_topology_state 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 0x56acd9d1 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5739a314 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x555a05be drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5565b6b5 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5710fa18 drm_scdc_set_high_tmds_clock_ratio 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 0x59c6da74 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 0x5c8681fb drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f45b51e drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fe7dac7 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x62a6865a drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63577d24 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b82db75 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5dca3c84 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e670962 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fc75bf0 drm_dp_pcon_pps_override_buf 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 0x65f13122 drm_dp_atomic_find_time_slots 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 0x66d5740b drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds 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 0x6a5ce26f drm_dp_get_vc_payload_bw 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 0x6c6c4c28 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c9982e0 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d1f28d4 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e2e3ebd drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f3a90e4 drm_dp_pcon_pps_default 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 0x716c3b74 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x728f03e2 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70fde717 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x715a04af drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7253098e drm_dp_mst_atomic_enable_dsc 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 0x738e12cb drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7505c29f drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7576416d drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7642b9fb drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76483423 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x764fc85d drm_dp_mst_topology_mgr_init 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 0x7b44c4aa drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7cdc5065 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e6921e9 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82be3d4e drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x863168d7 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8701a35e drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89529834 drm_atomic_get_old_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x895b4425 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x78692bdf drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x786e1ce5 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7930d419 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79cc72bf drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7a09d9a0 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7cbcb910 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d914e73 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e1edeb3 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fa17272 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8134d02e drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82769550 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82917326 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86f4bdc9 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b385aca drm_dp_mst_topology_mgr_set_mst EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8cd93e4e drm_atomic_get_old_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9017282b drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90485a5b drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92a376e9 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x928c4c9d drm_dp_aux_register 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 0x96b7afcc drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x97cc15f5 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x991780a6 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f81caba drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0e4758a drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9965e048 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x999a6cd8 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x99d3d9cd drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9c292d35 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d6cf376 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9dac4448 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9fba048e drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa079bfb6 drm_dp_mst_hpd_irq EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa20f97db drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2ea1685 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3abee16 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4573725 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5b4027f drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5d8eaf4 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa831a3b1 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab3a9b9b drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad94c0c4 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7bef896 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaa5adc74 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab135ed2 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab3511b5 drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf5272d6 drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2841131 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb955fde4 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbaa6942b drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbef68972 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb247b8db drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb471897c drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5dc4f3a drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8cb56a0 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc8c63df drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcbb8270 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbdaec394 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc007c8ca drm_dp_pcon_frl_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 0xc42f6cc2 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc48cbc1e drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc11b1b49 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2f91f1b drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4296c45 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4f7e441 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5900257 drm_dp_dual_mode_read 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 0xc5d1acaf drm_dp_dual_mode_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc833faff drm_dp_link_train_channel_eq_delay 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 0xc9b876a0 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca06bd1a drm_dp_dual_mode_set_tmds_output 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 0xcdee0b67 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcdefdc8c drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce1e806a drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0636ad5 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0dbcfe3 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd2657ddb drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd364411d drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd49eded drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcefdf1c6 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf27ceb3 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd39ef03d drm_lspcon_set_mode 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 0xd8229de1 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb4c3b87 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf896334 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd87edd55 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda016bc4 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbd37041 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd091856 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf05b034 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1efb1be drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2abc489 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe304eaa2 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3c2995c drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4726b5b drm_dp_pcon_hdmi_link_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 0xe5b98179 drm_dp_atomic_release_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe64023b9 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7a61a52 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed9ddb71 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5643df5 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7258eab drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe950afa2 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed57191a drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeebf0ebd drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeeead394 drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0234766 drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf2c33791 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf64f8798 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0b13b1d drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf155f41f drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3660172 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4d9e42f drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5684040 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf63fdfb8 drm_dp_send_power_updown_phy 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 0xf89c97a8 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa4cecc8 drm_dp_pcon_frl_configure_1 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 0xfb644b1d drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbc00374 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfba397af drm_dp_pcon_reset_frl_config EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x002afe11 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01697f40 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0212d4c6 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0269b2d2 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02825aa3 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00bb0b5f drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x025d0db3 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x030c613a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03847d74 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03873dea drm_universal_plane_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x054fd364 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05578cb9 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0598d066 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05eb5910 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0667bee1 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a30f14 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0737c3b0 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x074dc9e9 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0795c621 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03cbcc21 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d6d3e0 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d7344d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e4a42e drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056f8c38 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c033bb drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05de1819 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06071e50 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0711a09c drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x078df29b drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b8a7aa drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb1dfe drm_modeset_unlock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f5fb85 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x098ef50c drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e22edd drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a381f85 drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a40a892 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ff0f0e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ffd3ca drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091aaa87 drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b101775 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b1b37e3 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c9c96cf drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb34f02 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d51701a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac0eb95 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0bfcd0 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0c763b drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b29a8c7 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b87c142 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c322710 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c56457c drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc5be61 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d573590 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d698181 drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ed6d87a drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f2749fe drm_read EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8e61f7 drm_vblank_work_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11960b33 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x119847c4 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x119f7159 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x120eda6f drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e9e828 drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145a7d50 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x155e496f drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c7d269 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x178a25e5 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17cd0487 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17d4abe7 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191b1169 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19409314 drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0x194591c5 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19a8a786 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ce11df drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3dd2b3 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11e4ca1f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12249a43 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1229ebd5 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1229fbbf drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12471288 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e05b22 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x131a2e7f drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13744167 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ea4bb1 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15fa3027 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163ce2ca drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x166d4ddb devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f0f7e4 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x179fc112 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a8a727 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19b2ec45 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c9e8a5 drm_gem_prime_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab95dde drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae26cf7 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc79040 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c25ecb9 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4ac516 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6b535e drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c75e718 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cef771c drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d222a55 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d49a068 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e33f635 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e457b4a drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea3501a drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec52b80 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1a30e7 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x213edcf7 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4edc9a drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b383622 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5348eb drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb4cd42 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf4bc20 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d63df5b drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4748a2 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e9dcd98 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee9a29b drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f7c0d31 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2005e6b2 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2108cfbc drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22689da7 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x226c3942 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2295cedc __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x237d2b53 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23da13a7 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23dc4946 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23de834c drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22048ae3 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2248270c drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23edb3af drm_modeset_unlock EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a52ee1 drm_gem_vm_open 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 0x24e9d9fa drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24f175f1 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a33db5 drm_color_lut_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27450f91 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260e0c1c drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262e6299 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26489d3b drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x268ea152 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2743888d drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274a4041 drm_atomic_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2870ab41 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27ba5188 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28026426 drm_connector_list_iter_end EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x295ced7c drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2979e2d4 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d6300e drm_framebuffer_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a398d5a drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a53e3fe drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a612af3 drm_gem_vm_close EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a9b5608 drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b3c76ef drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b927cf1 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bcdbdb7 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be87614 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd4794e drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5411e6 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b73b0a6 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb9f23e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d6eb7c5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd49ddd drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4fca17 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea69abb drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec9cd1d drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f0667d8 drm_crtc_vblank_helper_get_vblank_timestamp EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3097ed10 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ea0afd drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ec4f45 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x312c858f drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x319bc829 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6607ca drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9dfcb7 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fde666a drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe97b20 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3000def1 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30037d06 drm_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3299c1a7 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cd393a drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f2b53b drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331482d3 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x334e65c1 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34587e79 drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x351e2637 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x372a0c3f drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x351032ed drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a8afc2 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e51841 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36259d6a drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b8a326 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x385b999f drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3867e8ec drm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b9f5c1 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f5f0f3 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3934ce9c drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e3d215 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e54d88 drm_atomic_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a852cb1 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c74310 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f32ab1 drm_plane_create_zpos_property 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 0x3b517d9b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b46762f drm_panel_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3bd457 drm_plane_create_zpos_immutable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4ee360 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecbafe8 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f03fae9 drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f075ce1 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f352dce drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2035c8 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3d2edb drm_modeset_drop_locks EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fe35cc drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x420ac493 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x426b7011 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43208f17 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f90e592 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x402220a5 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40727ee7 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40996d3c drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d9896d drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ea6100 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43453e02 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4351a72c drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e18397 drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4417741f drm_dev_unplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c09da2 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44eee1db drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45335f78 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45593f82 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x456dcc6f drm_client_buffer_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45f58dba drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46af5860 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4591019f drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ad4fda drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46b877e4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46dcbab8 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x480e6f02 drm_mode_probed_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x484b24ef drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b94939 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x491a34be drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49245680 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492fd975 drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x497486f1 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b343a8 drm_atomic_state_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4ec46f drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6f247b drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1c9ad7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a41804e drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a5b5d89 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ac0709b drm_mode_create_dp_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b92ecdf drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4baa05f2 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce085ca drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3c80b8 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4b4985 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d681ecb drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc70530 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de9dea5 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e061e70 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bbb81ea drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccd95c0 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de6aa0c drm_atomic_get_connector_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e51c19f drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcc53cd drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5001ef51 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea9cbe9 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1216ab drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x501dbe56 drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ba193c drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50daa59a drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f2753c drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x519bb5c2 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5143f4c8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x514f54e8 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51aa2c3f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f4d8cd drm_av_sync_delay EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53a3381b drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x548587d7 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a6cebd drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5221e653 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5239f077 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5417e598 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a35915 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54cadec9 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55263359 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5580f4f1 drm_vblank_work_schedule EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5613ce4e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x560c23a4 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56794348 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f20e3f drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x570fecf2 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x572cdc8a drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578f19db drm_dev_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b84fc3 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a2bfad drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d7637b drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5902904e drm_vblank_work_cancel_sync EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5946c98a drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f568af drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0d0ac1 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aaf996e drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b2303b8 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b961f59 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c77bbeb drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d59cb88 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd0a4bb drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f14d2d9 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f198025 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f3b7fdb drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x593b07f9 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5acf8f97 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b40c0c9 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bffc441 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c27811d drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c38b813 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2d4d55 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d36c01e drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef37299 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5efc012b drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1207aa drm_client_framebuffer_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x615e3b1a drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e0e399 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62185982 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x633dee49 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63480863 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x643244e9 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c28567 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64cce9a8 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d8b80f drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fcf7aa4 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60e5be8c drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61703e76 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6187aee8 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61ce167a __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6229db96 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ab77ce drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63bf2ca2 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64cf52ba drm_gem_lru_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x657483ab drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6641aaf5 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x673fd91e drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6607003e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660ff7e4 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66433cb0 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x670c8bdb drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x672cb65c drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6784afdc drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x691022a2 drm_gem_dma_resv_wait 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 0x693c5f99 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b7da5d drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d35812 drm_gem_prime_import EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5b287d drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abebeea drm_add_modes_noedid EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b099bb0 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b8860 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b47412e drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6c9f97 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d783560 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e98e7a9 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efc0f41 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f926ffd drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fc9ea0d drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x701aac94 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7040c2e5 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x710db3c9 drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b241a6 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d66f54 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x736bdcf5 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c881c7 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74edfc25 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc45cfc drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e300d38 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e47e292 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed13271 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f0d6bc9 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f3ee73c drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a6bc1d drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71477d35 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x718259bf __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a03a9c drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x727ea3a9 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7299860f __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76eef3fd __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ac3807 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x783b92f5 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x789c8316 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75976371 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a0c9d5 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ca2db9 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79114329 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7929806f drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x797b31c1 drm_privacy_screen_register_notifier EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d1f042 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a8f588d drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b246763 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a228246 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a912e39 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac73317 drm_writeback_prepare_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd6b54b drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bddd90d drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0bd3b7 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4cea98 drm_gem_object_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8100ff drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc2f043 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d24451d drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d505a73 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d6c5190 drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ecb9f60 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8d73cf drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec36d8d drm_atomic_get_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8030fdda drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8072f992 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9c6fee drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83f42951 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e7049f drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86308e26 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d129bc drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88d00ba5 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ff7b52 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x892b7072 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x896d6b93 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89be9877 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a445c3d drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aae9ee4 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ac4fc45 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8216eab0 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824de512 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82612ff9 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840e3b73 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8417305d drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84891ca8 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84ffea27 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85799a3a drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d33994 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f88260 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8888de61 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x898baa97 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8992b9ef drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa5f47b drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8abbc091 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b034e4f drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b7b4b05 drm_mode_object_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c87b006 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce8667a drm_prime_gem_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d7b1112 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e6f5c47 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea81161 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecae98e drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f131438 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fce54ee __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90034ae2 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x913ae0e4 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91bd68c4 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c2fb17 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9340bc1a drm_privacy_screen_register_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x949b3d13 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a4b995 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94cf2331 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9540099b drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9565c98b drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97860b42 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d948eea drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfcc0a1 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e2c1ed1 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9139b6 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff8a291 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90143ea3 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90539a25 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b76f60 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90fa39c8 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x911a3210 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92485614 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92900925 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94113a2c drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947d892d drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f56486 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9556a0dc drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ac58e0 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c5a3f4 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96cab060 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e30b16 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f76a98 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98066532 __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x987d1a3f drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x994a7686 drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x994fb91e drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x985285af drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f69650 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad4154f drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9af2b7e0 drm_panel_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b2f53cd drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b39728a drm_privacy_screen_unregister_notifier 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 0x9ba322d5 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bd3f1f9 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bde966e drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2ff952 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd8a38d drm_privacy_screen_set_sw_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df59199 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e77dc84 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7a34d4 drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef6dab4 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f019df8 drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4200fd drm_driver_legacy_fb_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0099744 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa00ddd82 drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a5ed4a drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f996540 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd0c819 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1495b24 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15404e3 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15e2758 drm_noop 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 0xa42218ea drmm_mutex_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa496d83b drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e3dc75 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67106ee drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d57291 drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7aef543 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa94a74b8 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3dcefb2 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46c3d38 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b464ac drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4bcaa29 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa59cc988 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61f5d36 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa703a1d3 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7449d07 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74ad5e0 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8498f15 drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9e3b3c3 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa22c465 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa93f7de drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab155490 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb404a3 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd14936 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac41b577 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4b4f92 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2c35ff drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad36e28a drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa989740d drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa738fa6 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa73aa77 drm_bridge_chain_mode_valid EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaef21e0d drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb001badf drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae645f2d drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf8084c1 drm_atomic_add_affected_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ade3c8 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2060707 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1d2dbea drm_property_create_bitmask EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb249c27e drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d4b066 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30471e2 drm_dev_printk 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 0xb43d1752 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb549e0b8 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a98dbb drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb413adc8 drm_atomic_bridge_chain_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6aa48dc drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb89664e3 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e74e80 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7db49c0 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81bb67c drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d68fd2 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb960600d drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97c4306 drm_modeset_lock_all_ctx EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d2791a drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0d9e59 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1a0221 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3b4ff6 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc786045 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc84ff9e drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcbc3628 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd40b27d drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd771890 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8b8178 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb80afe1 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9ece4f drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbca1ee67 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0869b2 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd33932 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff61811 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e7aaa drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d785b5 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3bfd586 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3fb5c72 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49fa502 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e304c1 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fc5c22 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63b3507 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc66b2fb4 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc760eafd drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfb59d6 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf8fd5a0 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc039ea52 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05655fa drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc40c1a47 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc41bf7b7 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42d0308 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc619fc62 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64a8de1 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6939bc3 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a86896 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77fe87c drm_connector_set_panel_orientation_with_quirk 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 0xca629910 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaab7319 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb56f036 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6d8617 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc807d39 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc832539f drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99d37d8 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c1ae9e drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2938a7 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca4d0719 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadabe62 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1ddd07 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba10b74 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbdc0d45 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1d84a7 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc91399b drm_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceddc161 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf01310d drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf4c4d79 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd2e1bc drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd009f395 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06340fa drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0de8541 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f77aec drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcead6b5b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5d17d9 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfaa7f60 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd023584a drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04c29c7 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08da4d7 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e5a607 drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd19e1ce5 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3fa84ca drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42904a2 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61b35e1 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1745768 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a495cf drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd263d03b drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29be6eb drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2bb1679 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ce062f drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3acc04e drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5210f45 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd537f845 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57860bb drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd593f125 drm_atomic_get_old_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd794f50d drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd85e9a6c drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd87cae6d drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88b252b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda4c3516 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9b40d4 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab1dca8 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacaf59e drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c754ce drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda10fb62 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda8ecd79 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacdcef7 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb526ff0 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd6cbba drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd77b4e drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb9b4c4 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb37bdef drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe4842b drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc647365 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc8066b5 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca32768 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb3ba8d drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdce7446e drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd078576 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8d4b11 drm_atomic_bridge_chain_post_disable 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 0xe009b70f drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe013904f drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0e619a6 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe232f3de drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe250fbca drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdffcafa1 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ce8879 drm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4135117 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe480c47b drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5be666a drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cfd708 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe631be8d __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe454bbfd drm_panel_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66354fd drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6fa2c0e drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73a5a55 drm_gem_object_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 0xe92c9607 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97bfd8d devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e5ad00 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8cbd678 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93f80b6 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe99a53dc drm_crtc_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea2e03fc drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea4cdda1 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea54aa10 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb1c8043 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebe5b524 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec31605a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec5f8ebf drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed342bae drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb6efff drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef297a71 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf57552 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecaac649 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1dfba6 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed384c96 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee517e63 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef67ef29 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe33124 drm_atomic_get_old_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07c18ff drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a672c4 drm_object_property_get_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1524b46 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1535291 drm_edid_connector_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1db361d drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2728168 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf283a832 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1c6a8fa drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d83bd7 drm_modeset_lock EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4843d28 drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf578e1ab drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64851b6 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf685b8ee drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6af103f drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c9e5e8 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70668cf drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf77074a3 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf421ad05 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44d305d drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56816b4 drm_gem_lock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8856223 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a02ad9 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94f4aba drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa809444 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad3b350 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb29ff18 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc56e53b drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9e0cf3 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdefcb68 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4cf78b drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc61c4cd __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcfdd9a6 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb01aee drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe007da6 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe6a9bfd drm_connector_atomic_hdr_metadata_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfebd3726 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4d2550 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5ea752 drm_crtc_cleanup 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 +906,421 @@ 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 0xca968d86 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xf551a516 drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x016b4797 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02980c18 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x061bbb73 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x062a3a7b drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0790e0d0 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x084a5a75 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f10d77 drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08fd023d __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09175ece drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a0e2647 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a809acb drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6e7ecb drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ee5e5a1 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fde8a95 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c9c698 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x8bf95485 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xe367b38c drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00377288 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0066dbd7 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02306073 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02b66ba6 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02ecae69 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x032e6936 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0407faac drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09713be3 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e78f592 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x115681cb drm_i2c_encoder_dpms EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x166e00aa drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x182c9d3c drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d070660 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d347eb4 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d3f687e drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ee59ef2 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f130b97 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fe5ce7d drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20316787 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b61d21 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d1bb25 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17202def drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19b1218a drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b345563 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c856609 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5e91a3 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d80af14 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d9665a0 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207574bd drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207850be drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x209b6297 drm_atomic_helper_commit_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2213ac8c drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d67640 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2456469f drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24e74924 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2571f998 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2687c9b4 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2765f1df drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x286bb399 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d2990e drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9bed3b __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c0e25b3 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x241f801c drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25253c0b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x274231de __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2765ef6b drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29bb6dbc drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d45643 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ab4fc33 drm_atomic_helper_async_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db45cb5 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e36358b __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e6bce22 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e974de4 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3143627e __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3307cbc0 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3371225e drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c1a03c __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x348fd8eb drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36af9356 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3880acf2 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x394929ce drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39aade7b drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b5bba99 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c88be83 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ccb2c78 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd9d5cf drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e84a894 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40ee81f3 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42b92f1f drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x431359d4 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43eec73c drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4540befe drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b9c6ec1 drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4be7053b drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e1c8101 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e8e25fb drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a3638d drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a79a8f drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5185bcd2 drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x522920a2 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x527733a1 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529c3bee drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52f84f14 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6a00f6 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dac5755 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dc1a9a6 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2df7c372 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f39291f drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f5b6c13 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f788b75 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x306356a1 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31035c42 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3266ca4f drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x358d383f drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37038e6f __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x375654dd __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37864869 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a47b680 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b7f3fd0 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dc1c28e drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e15e67c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f3dbb05 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x425da85a drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42cf13e9 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4319864a drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x436bd4a4 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x466df44d drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ad1154 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e87cd3 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48f7b517 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b5680de __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c6eb708 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51374f7a drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x519db5b8 drm_plane_helper_disable_primary EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5552e495 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x557d43e6 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f5d24a drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56454215 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56484350 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57dbe9d9 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59beea21 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x586c1c04 drm_fb_helper_cfb_fillrect EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5abd9266 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c04cf2a drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2bc4b5 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c5176a2 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c9a41e1 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x610517a4 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6368dd05 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63fe21fd drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e56c68 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6825dcda drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b59e37e drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d4dccb6 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f3b51b2 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f5b0fed drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f9695f6 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb65f81 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff5de8e drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff7b994 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6017d136 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6393740a drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66201ab6 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6713e21a drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x675e4d71 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x689f573a devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ae8c8c __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aef47b4 drm_atomic_helper_check_modeset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce3e253 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bb36f48 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ccc1e33 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d77136f drm_panel_bridge_set_orientation EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700b2150 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f1dacf drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7443cb65 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e6c7c2 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75e4f884 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7616429a devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7628f872 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775532c7 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x778bd523 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d7bcca drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a69852c drm_fb_helper_cfb_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae4a809 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7df8776d drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e16ffff drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810310e6 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8111c3ca drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8314d439 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8326b8d3 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x835326c3 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x710f5bd2 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x713b0d85 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x736fe91d drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ca91e3 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x763d5b3f drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776408c6 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7789608f drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77fce010 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78c0aa5e drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b5839c1 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce1d2c6 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fa6d678 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fb79145 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80c742fa drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80ed64ad drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83e6dcf4 drm_atomic_helper_wait_for_flip_done EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88191dac drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dd23ee1 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x900d5a8d drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90c434ae drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873dd7d7 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8776e53b drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88daaeb4 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e0d740 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89f44ef9 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aace178 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e5da9d9 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ee341fc drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ee860e7 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f921bd1 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9086c98e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e97aa8 drm_helper_resume_force_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95462c4a drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95f6df18 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x992a47fe drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9932d406 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9328ba21 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9690305f drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f0b8a8 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x971f7ffb drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x973fa64c drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x996cb328 __drm_atomic_helper_bridge_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af32d98 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d1f65d9 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db7e3b3 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9df065b5 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed51b92 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e905ec drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa211d54d drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa21c9d0d drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2d54ca9 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3896866 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa746fbe3 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8bb72f4 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92eb2f0 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabdc5117 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac8e2868 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6f8a3d drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a40085b drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d8da717 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e99e739 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11abfec drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2340c87 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4e13251 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa54dc344 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6afaf95 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6b9edf2 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c1e088 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71908bd drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75cec0d drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa949d43a drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac3214a1 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6bd59c drm_gem_simple_display_pipe_prepare_fb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb246e184 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb552a67a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0c0383f drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2a8204f drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2e678e0 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3968ff0 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a8211a drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4dac81d drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5bd55a5 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6198096 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb68562a3 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb698365e drm_fb_helper_debug_enter EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8d638e6 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91e5a1a drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbae4410c drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcfc7dac drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0ac87f drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeb95208 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeedd81e drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef32917 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf537ded drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc473631c drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5087907 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc57cecd5 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c80eaf drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaacca8c drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb591dfd drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc960f66 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc05f9655 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc094ee51 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1891bc4 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c31c55 drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc63bb074 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc69e9c51 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6b925ab drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc901f82f drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc902bf17 drm_fb_helper_cfb_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93c47d4 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc64eba7d drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc77e8807 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ca5f4d drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9febf17 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca1a277a drm_helper_force_disable_all EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc73a791 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbbefb36 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbefff63 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc5a8ee5 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccad898d drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccbf7817 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce0d2d34 drm_crtc_helper_mode_valid_fixed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf393ce9 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfeca4f6 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd03caefa drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd23d2bec __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd94dc543 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9920261 drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9da5b2c devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda87d547 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdba51d77 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcea49dd drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd789ec0 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfbd2f0c drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0969e32 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5642ffc drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74ad677 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7a6aa05 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea740810 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb2419ad __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb902ca0 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebcd9d12 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec232526 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec8b5330 drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed561868 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef1eedc7 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef9133e3 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd022cb drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf177f68e drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c1f644 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1c57c01 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2303d1c drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2ae27d1 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf307112f drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4409047 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf45974e8 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4c08218 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf942f140 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf983a6a3 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d8d565 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbc3ec66 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5e5d33 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff7b027 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffff1102 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x25fec890 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3124f28b mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4363cbe0 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x527fd6f7 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x683a5db4 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x721875e1 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7758ac7a mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x827788c1 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x85011ed3 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90a4ed94 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90c90144 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x926afe0a mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb38a7a5f mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb966ebba mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd5ad641a mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6f6b416 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd9cc1aa4 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf7811988 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x111d3fef drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x285df220 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x28bbc7a8 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3d16f999 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x457545c3 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4b59b670 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x83f3d55c drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa6ea48ca drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb0d43a23 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdfafa878 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x058daae6 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3cca1152 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5d708404 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7793390b drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd2266b59 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x329885a7 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a25f31b drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x645312d9 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72a98d80 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9120a044 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9d9a0aba drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa1680907 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xab8995cc drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb651f2c4 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc3ec0c7b drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc7fb1ca4 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb2b14dd drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdaceaf73 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe82b583e drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf12876b9 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf53cdff2 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x008484b1 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0f34d68f drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x183db50d drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d6c87a0 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ad42d7c drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d0d0d30 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31747420 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x34429793 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x49d4b5c6 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4aedcf8e drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e181461 drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b5bc48d drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d7f5334 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x822d68f7 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8456f9fa drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f156406 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9ce36ebe drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa7c0135d drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb4f87c81 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2c968a7 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca7d2ee9 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcd85633a drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce955c82 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd10ebd9c to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05dab4c4 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09ab522f ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09d6de1f ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fde814e ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14e6cd04 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16617be4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf7c75a8 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd042755d drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd05f8c92 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1efa007 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2394aeb drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd48f5809 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7de440a drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd84959cc drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9c8be2c drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaad98c9 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdacb2df5 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf040ef6 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf43c2e7 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b4427b drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1cb29f0 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2546587 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30bf7d1 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3565b7c drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ae0505 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6006c94 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe62e4631 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6bf2b74 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe974f2f6 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee168786 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee5b71f6 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeff65d8e drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3eaf78d __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf46dc58f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b4e87e drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4f6c5df drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf54bf97c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7ed0c63 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad86528 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbfd52d5 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2a185f __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd3360af drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfddc6f90 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfea3c9c8 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfedbda88 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x00c41084 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x02a09ddb mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x097a5db2 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x13b26a1e mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21b0c7aa mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x446631cf mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4477ba23 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x46991fd1 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x52e58ac7 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5f1613d1 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b3e5c99 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x73517cb3 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x80ab4917 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9add1169 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9e1bc39f mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa257413a mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbe5a19b3 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xced83447 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x081b8221 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1635259a drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x448548a0 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x9cb0df83 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb858dfb1 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xbc85d301 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd7823672 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xddcbd5d3 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe789dadb drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf7921d4e drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5b5a42db drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x66572219 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdef6a25f drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdf69ec6b drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xecb77d2d drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0cf268e6 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0e0fafb0 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x215f7e27 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x31cff59c drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3589c51f drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x390c2438 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x530b4e2c drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x81425716 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9659abb0 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x993b8794 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa0920549 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb8e5d895 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd30d9fa5 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe6016295 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7e0edc8 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xedd32476 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x080e3bff drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0fab09f8 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x10c3dc67 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1537cfef drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1616a4aa drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x34f51711 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x41ddc017 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4285ea35 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47bc1ffb drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ada2289 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x51fd39a6 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x60d9957e drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x815d0229 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86c63c66 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x87a2be4c drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb19d35cf drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2889516 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc67ef54b drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce018e46 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcebcd8b0 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd3b3f920 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdc811025 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe2fc1c04 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf16cbfd9 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x000e13c0 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01cbba48 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x095df63f ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12965a12 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17c8e32b ttm_bo_move_sync_cleanup EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f3ea91 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2566fb1b ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2848c435 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28cf5da6 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32430f52 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c336fcd ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d0c406d ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x451961bc ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4606c071 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x497d9f87 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a1c9fd8 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c7f740b ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f2e70db ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f556a9c ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x551f14a7 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57aad1bc ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58aee864 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ced6444 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x611ae607 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b1bfbf5 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21499e80 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21be804a ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2237e314 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2291d819 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30f5a607 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3626c6b9 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39ee2ac8 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x425aa85b ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43e87284 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44d616c0 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4717be61 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48fdb4f0 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6372043d ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63fec746 ttm_bo_pin EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a847134 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c6d791a ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ea7eb2e ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79fa2e63 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d27381d ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d65a705 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e0bb32e ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85336968 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x877e5a39 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ba9d4cd ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c9f96c6 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e45e199 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f74d89d ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ce05799 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f805c32 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa099f8c5 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0cffbd0 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2276b73 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4ec6822 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4893ae6 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbcc5e3e ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdace000 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe276758 ttm_resource_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe774d9d ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2fb276d ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3420815 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc739ca15 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce4840c9 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3147d78 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd569c583 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd580b64f ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd716f17 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0ca200f ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe439e275 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5518791 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe83c3898 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe962acef ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b5fa1f ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7e5a67f ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf907356b ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb5cf78c ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/hid/hid 0xf146a8ae hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x01ee5712 ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x030b689a ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x060f8be9 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x065d2384 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x17147d85 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x27c01ad0 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x30f298e6 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x31747b57 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x34882e52 ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x35abeae2 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x407b64a0 ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5d4ad271 ish_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cfa93e0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72bf7c11 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x741b577c ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76db2421 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80e0d9cf ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a73fba0 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ad0687e ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ca9f5e0 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91877061 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94c56acb ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98e2c5c2 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9aa11be6 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c672028 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1ba020f ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa60c1457 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9ac94ef ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa538a9f ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa8e9d00 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaab9d024 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xacfee532 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad0339ee ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf201c34 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb298ac03 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3070b95 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb85f86eb ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba010f2b ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba9085f1 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc2b163d ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc16b4137 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1d7d895 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccd817d4 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce0cc6d2 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd11e466f ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd161a2bb ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1ae8d73 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0256d47 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe16d69d4 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2f0d192 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec01e188 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee8b4bf4 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2507b14 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4e08156 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcc76d7c ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd6a5a09 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff3b26e2 ttm_pool_free +EXPORT_SYMBOL drivers/hid/hid 0xe2c4d463 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x04e54498 ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x07691b6f ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0b007f7b ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x11d2bfaf ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1f00e82c ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x20453102 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2422c1f4 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x27f8d682 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x29212f31 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2d2f5a7c ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x32c6f0ac ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4132e772 ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x43b24e77 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x492e720e ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4b60cfbb ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4bab31f1 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x555b5dcb ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x55e9458e ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5d8e2fa1 ishtp_cl_free EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x61d8bbef ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x642c5421 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6537ab81 ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x68de7d2e ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x690eff53 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x716e9bea ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8021fa8c ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x83b75b0b ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x89ee375e ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8d0d608f ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x939a24c6 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x94d0d5c7 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa53f2b89 ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa81a0786 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa8ada615 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaec334dc ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb173a18d ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb228347d ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb536219b ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb597efc3 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbf01acfe ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd3ce2099 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd4aaa0cb ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd52a1617 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd9e1aceb ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdcd328d3 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe08c86ee ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef2f6dd4 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf8dedbef ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf96cbb2f ishtp_get_drvdata -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x13c7a064 vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x3cf7b296 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdd903796 vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/adt7x10 0x83e12441 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6f825f4c ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7337578c ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x746f0ebb ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x82e52e12 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8aa31398 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8b43f550 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8b87697e ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa4fe99b9 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb3ebcc12 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc005333d ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc4c8518d ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc5d42afc ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc9552841 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc9b4d00e ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcda0414c ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd0573934 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd54cb59f ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdae2e0b2 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xde21742a ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe10bca92 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe5bbd444 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe8ec8e67 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xedcf5a16 ishtp_reset_handler +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x3978d358 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x42e06b76 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4500fd46 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x1762e62b 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 0x757293b0 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x3f1d0341 ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x271c76da 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 0xce8cf85c sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x29502f96 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x320581ff i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x787f235e i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe4a22dff i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xed22d0f7 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x69d1b153 amd756_smbus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x706293b1 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8138afe1 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xafc9316d i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x98a257cf i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcd2083bd i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4ee27568 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 +1330,1165 @@ 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 0x6c42faae iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbe79c78c iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x54f31422 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdb11ed56 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x704e9b03 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x0190f652 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x1885e4d6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x2021b384 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdcc512d8 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x87436d03 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfbe2bfa3 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x180f6776 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x035995e3 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x09fed8b5 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x0f829746 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x17a98ff2 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x1ae5f7b4 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x25129947 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x280f7014 __iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2d98d2eb iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x36c94991 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x4216d921 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x4af3dadd iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x5bd01953 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x6321fc27 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x6afcfa2b iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x76561f0a iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x77a64bb3 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x8fc10e01 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xa3a25b1c iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xa7e1abc6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xb26bd4ee iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xc604850d iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xca37d907 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xdc9c3074 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdea51b73 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x3b93769e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x3e9f7370 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x46cd5cad iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x562df5c4 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x652c53e0 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9943537d iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xa9ec10ef __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xb593b5b8 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xc1260836 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xc2c096bf iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xd975d726 iio_device_set_clock EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xdfdc26b5 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xec3f8e17 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf7e99ad7 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x7c1533b0 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x23f3bf38 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x27610868 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5e8ae67f iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x80e1e264 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6ba071e3 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe6b3a1ea iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf1bbf265 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfc1da95f iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x92355157 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xcdbb1208 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xfadb37b3 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1337ed4e ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ece54f4 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41412456 ib_destroy_cm_id +EXPORT_SYMBOL drivers/iio/industrialio 0xe60e9321 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xe89d3b2f iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xee158fd3 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xf3d77b2a iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x94a07899 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2858a9a2 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3d5793a5 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5f2d8397 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7352dbe6 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0910872c iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xabf2b9f8 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd9ff51e5 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf14b942d iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x74d9882a iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xaf1feb62 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc76872b4 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17aed406 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x23d5044e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x261318b7 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2be58a10 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x36756fc8 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45733be4 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x595aa9e3 ib_send_cm_rej EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x769bf756 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80c7831b ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c216b23 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91d13672 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa311a01c ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xacc92281 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb81a30e9 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc335e346 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0ee9ef6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe85f993f ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf13853c6 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff40e3fc ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00c90efc rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d3506e9 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7cc12345 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ca50370 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa90fa3d9 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae5c2fde ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd580ba42 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee5a7ee7 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4e26dd2 ib_send_cm_sidr_req EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02d905d7 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03da72ab ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03fc5411 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a842c0 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07c19b28 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aef3071 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x021b8e1d rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d9a250 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d1b5ea rdma_restrack_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c97a3a2 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ca569e3 rdma_hold_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e6fd8ab ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbfdc94 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x108e6458 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x118d60b5 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x125932bd rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11cf52c3 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x120f8835 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x121a07dd ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x128ca7a0 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17ffb596 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186b95fa ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e6f7c8 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18fbfeaf rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x195656bc ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198709f4 ib_modify_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b6a45aa ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b975968 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c4663ac ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c58ae90 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f166e4a ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f65b87a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f822885 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21055ab1 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2147b4c6 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217685b3 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb92f34 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d23686e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d3e06db rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d946db5 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e0b7128 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2002de41 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x216bffd0 rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x230cb94f rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23a6f59a ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23ea828e ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x261db235 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ae2f6f rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b011d7 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27bea66b ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292ea6e2 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91d8fd ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b912cc2 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c3460e0 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f27bf80 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fe9a6ba rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304553dd rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30593798 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2534491a ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25a32cf6 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26c064e4 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x276eee78 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a3655a9 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a6ae442 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b1c9545 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba1575b __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba49622 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c80e8f6 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eaa5478 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fab8e51 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fd3a5e6 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x301a7853 ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31b3b241 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3540d1ec _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35db5c37 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3905a04d ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b0b4664 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3a6049 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8eded0 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3da07590 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e1bc5ef rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e27c0d0 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x310a6bfe ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31c521f0 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x323536ba roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32d862fc rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32e7a8b3 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331bc345 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x343465fa rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x389e7535 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38f80935 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x398bbd3c rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dcf08a7 ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b20d96 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430ae2b5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4320c84b ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40930846 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41558575 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41c8645a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x423d9d05 ibdev_emerg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4391968f ib_get_rmpp_segment 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 0x476f847c rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x483a92dc rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a2997dc ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b01ab3e ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bbfe4cc ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c3a8ea5 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c509871 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d07e941 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dca6591 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df54fec ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45ff9b9d rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x490bc996 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49209b3d rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4977a3b0 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a39c243 ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e503c86 ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ffc6dfa rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50b4f0ad rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x525391be rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52eee47d ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53e16f83 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7d653a ib_qp_usecnt_inc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56280991 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563ad2c9 ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57a85b3c rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58a5974d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57bee3eb ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57c33d26 rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x595f7376 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d20e962 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e943a33 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6065df88 ib_dma_virt_map_sg 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 0x6431b895 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64dce3e4 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64fa6015 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677b8a1f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6787d99a rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d26837 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6851dc9a rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b0e204d ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x623f62ff ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x662f95ac ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69555b4b rdma_user_mmap_entry_get_pgoff EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c8b35e4 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2e3d75 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6efe0242 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c61c977 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c9c36e9 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ccda5a2 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d47cc43 ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f4c4eb4 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703e2f49 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7056f729 ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x731e514c rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7139292a rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73202d87 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x738627f9 rdma_user_mmap_entry_remove EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7581cc5d ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7617f278 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x779d3beb ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783e4d1b rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75d458df ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x760cac5c ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799d4202 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd935e6 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de419ea ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df308ab rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e57e499 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x813acabc ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81690b99 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c46e6b rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8326f9b1 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8589b2e8 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85c59496 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca541a9 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf4ab88 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d34b235 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae48f56 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b94390b rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7beb9fde rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d4ed2b5 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da5bc70 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e6da927 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e82a6eb ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f1ec8bc ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x806f46a7 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x841a84b2 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x849b45e5 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x870681ef ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8707f7e7 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ab8285e ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bac4fa5 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c8f04b6 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce9bb3d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e4accf0 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e957283 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90a34bc2 ib_get_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92a16288 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96e04c82 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x982eb985 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98956aa5 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x999612fc ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b1c9282 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cbf149a rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce8987f ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d37bb58 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dccd551 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e632cc0 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f6e9d1c __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fe6677f ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa05bccd7 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa069a97b rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2032723 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x910db050 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91650df0 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91834f91 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x941348c3 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94452f65 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94fe2926 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x959ca748 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96179dfc ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98904bfd rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x997a714d rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab9a39a ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d0987ea ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ee7b969 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f8a187f ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fa06dfb ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1107544 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e6c530 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa49ea869 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ecad69 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5bae185 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa73e5ec1 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9be0604 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa1bcaea ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaf5ea03 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0dfe79 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad3c5d0f ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae189d8d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4810ec8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa648d32e rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa77cd2ac ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8e3c9c0 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9188e3b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa96d3447 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9c459e7 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabde27ad ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xade24454 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae101a88 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae225c8a ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1dc45f rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1e1eb6 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb21d9bcb ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb22e38e8 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4a6f60b ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeb09de7 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafe3199d ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb376b81d ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4990500 ib_dealloc_pd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d12052 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6476923 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f61e06 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72383aa ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb743eeaa ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb67708f6 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6cd858d ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb759b405 ib_mr_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb819f71b __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba740804 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb5269bf ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc57280c rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd1dcf1e ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd49dc71 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe1d85ce rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee1f156 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf87e364 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2033586 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc21409d8 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2813cc2 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b39554 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4902e3b ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a2503c rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc847e5ad ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba128be6 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba371389 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbae18ee2 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc18f4fe ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd005837 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf989185 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc03c419c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0dce4cf ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc25f91c2 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc388331c rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4d0dee8 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6484dbc rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8acaa85 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8c7bd40 rdma_user_mmap_entry_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca5fb0a5 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc6c5564 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7c8e5b rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc934b5ce ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca80f74c ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca89a511 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaaf4246 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcddea971 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xceb5d71f rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1d1838f ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1d1c381 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1fc94db ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd530847c ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd550d536 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5dad734 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2f30b4e ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2fd8eb7 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd581d596 ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd770a5a7 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd93e5b74 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd791be3a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7bcea42 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7bded2c rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7db925f rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc28e57b ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde390a98 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde93b8f3 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde97012f rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf8eadc3 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4330663 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc0ca92f ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdddf210d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde5f201 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde24b215 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfd6c96b _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0775579 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07c80ea ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe098346a ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1415f9d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1dd147e rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5c34baf ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6480761 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6fdb4ef ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe716c3f9 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5e09b2d rdma_modify_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d96514 ib_get_cached_subnet_prefix EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecbe7233 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede36816 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2d3a8f ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf13b8a01 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf20d2c19 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf38d6de3 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea1888c4 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed856544 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedeac5cd ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee1842dc ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2c64c3 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef6fc5ac ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef79c895 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef7c2988 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefcb1d8c __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4dff8e8 ibdev_notice EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf60baa16 ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf77cbe01 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf981676c ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd92a27e ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff941122 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06c751d6 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0aba9cbc ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x253ba3b5 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26849ec3 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36896e43 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf82e6721 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf89d0696 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9135416 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd6bfd71 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff01648d rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x008fe94f _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07526fef uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13175487 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15f0d74e uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x182dcedb ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f9f11f8 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21db7537 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ff340cb 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 0x4865b9c2 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48aae9be ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4af4c01e uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53d04ef4 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53ec5c69 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57f4f22c uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c777a08 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61c9ee30 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e5955ab ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e910890 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3acc14ab ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47256608 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5376aee6 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cbd9e52 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63713fcc ib_uverbs_flow_resources_free EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a62e994 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7cf58f80 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83c97681 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dae15d9 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8de6486e ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e32adc4 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x903eada1 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x933a2bf1 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x99c95e16 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a2d84fc ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e481906 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f8c4914 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2bffc95 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb534d84 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c4efa9c ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e336239 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e52fc05 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x816bf780 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83f5d4e9 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88a2f23a ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8abc95d9 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b19a98d ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9179dca3 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96c55581 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b515d3c flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e216ff2 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0f1f753 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacc1c614 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xade79ba4 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb166ff09 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb50aef04 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7d204ae ib_umem_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9db8e2d flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd9c2395 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd370aef2 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd53fe9d6 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3015230 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe592f0ac uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb10ff8a uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf41d6e65 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x04cae026 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1f063f12 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2610ff20 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4017481a iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x990fc8e2 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb2a32a06 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6693f97 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xefbd2ee6 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb790c50 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1cefe98 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd4b096bd _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc4cd85d flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf378266f uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7759af2 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x008ef42f iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3020c988 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x568a5f23 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8c572d28 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa58e464c iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa8bdb3ef iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe035df85 iw_cm_accept EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10d02f5c rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16539e83 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d3f6859 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x235b7b2a rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27a0df81 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cd054ad rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2eec4b31 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30fdb955 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x311f1c09 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3133dc67 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32f03db9 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x333c5490 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e97cd04 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50bbb87f rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b08237d rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69e3fb98 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6dc73307 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72a80098 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7935ed47 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c8a0cf1 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ca360ec rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf867e3df iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10b9ba88 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x150f965b rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22548e42 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22f57156 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2473fd72 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26db39e2 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27edfecd rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cad57b4 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35d7cc96 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3779bd02 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38716a5e rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a6a85d6 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40fadb2a rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60ebbe23 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x639e9848 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x666ef172 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x743dd65d rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76748bf1 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78e38372 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8910ed50 rdma_unlock_handler EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x941f5790 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x998542dc rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e1d1c04 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa393e1db rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac41e7ab rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb50ecab9 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc194b5af rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4c60bb4 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6529420 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddb81b82 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8cba84a __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf33a55d4 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf97b7f1c rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x03804c26 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9139bce8 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaaefb3f3 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3296cc8 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3d45d74 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4e3c0d6 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0bab131 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1bac280 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda5de6d2 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xded04387 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2a802ff rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe565a89d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe67c7803 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef1a431a rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb47bd27 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0714c32b rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0aab2233 rvt_qp_iter EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x23f33c86 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3737f0c5 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4709bacf rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x48ff6edc rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4cc3270d rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4e9f6ac8 rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4ec0d18b rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4fd98d32 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x55d04b5f rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x60dfbd29 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x73645ac9 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x84d3e4bb rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x87dd5fa0 rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x94fd985f rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9e8df76a rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9faf40ff rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa6472425 rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb5a17a17 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb693e514 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x13dc6578 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x153c87b9 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1588a131 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x21a00291 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x23475521 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2a7981f0 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x308eb474 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x38f73a19 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x65df89da rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6ad4947d rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x78ac61be rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x78cce76c rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8f481c36 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x907673f6 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x93467495 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa3039fe1 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xafec7cf1 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb251cf4a rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb78bb58a rvt_error_qp EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcbd845c1 rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd58e612c rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd766b277 rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd8d1879c rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdf797910 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe598ecda rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbfc1240a rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcc6b3691 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd1c988f7 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdc9cba5e rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdfe6bdc6 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe0537bef rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe5eefb1c rvt_invalidate_rkey EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9e395b8 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9f17371 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf34f334c rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x198bc3f8 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9b4119b5 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa81a9532 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb0c83529 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb8f6cf10 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd2b0a1f9 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfea245e3 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1cf55464 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf4bea6c6 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x23e22eea rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7d368c8e rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9cec6ee0 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9fca2584 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xacd5ab94 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xeba53c60 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf5ff8b84 rtrs_clt_rdma_cq_direct EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2d78a306 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2cd8a468 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x340f553e rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x46e2c233 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 0xabe5f72d rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xcdcde381 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xba71cc3b 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 0x0ec59f00 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4965cbc9 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9019ebf3 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x979a4122 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xad528a6f rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc3fbd910 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0a1f5577 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e1febef gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c41d2a6 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5785c41b __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x701826a8 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x880f992a gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa98f791b gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xbb1319de gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xc6f8eea3 gameport_unregister_port -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2e8e0b1e iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x56a8c1d8 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xaabf531e iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x4f26a9c8 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x38aeac77 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x476c94e7 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x84f658b9 ad714x_probe +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5ffdea9e rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6373a230 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6c9b884d rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb00c9458 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf8a90f94 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xffe0f812 rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x068e19a5 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2137353b __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c4e2f8a gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x63d99a3d gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x69b46995 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70d6c732 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7c3a4e63 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd1663447 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfe60e65d gameport_stop_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1436ca44 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe91ba9cd iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xed0cd3bc iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xede0523e matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0ac375e5 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2c8ba67e ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x88cfd59f ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x284ed995 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 0xb0041564 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xb723325a rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x1bb1bd22 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x4ecb98f6 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8d530f9a sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbd1ba6fa sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe058bac7 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5eaa4ff9 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xeb5b9801 ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x0db75db8 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x2816494f amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x309584a0 amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4f42580f amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x56bdaed3 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf8fcc704 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2229ebd4 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x48e6eae5 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7602c612 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7db24419 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9633a650 detach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x60611e63 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0a3ea46f sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2fe3717e sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5ec2f630 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x927444a2 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb4165d90 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x065f9ff2 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x801bf9f2 ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x0b75d9f3 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x13b1f0c3 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x172f9733 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x79b08074 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xa23bee39 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xd58d016a amd_iommu_init_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x86016c85 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc1584c00 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd2a09b7e capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdaca8672 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe3bc8261 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 0x48340dc0 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9c621edd mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbd55b72c mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbd9038b8 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x63e903b1 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe2a659c9 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaaf8435f mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb6ee2285 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe8324834 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xecf45d39 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x5e1f9bce mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe3a2b3ea mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x01dab372 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x089ead7e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1fb5de90 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11145773 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c594aea mISDN_freebchannel 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 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34bb4a87 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x356b23b1 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35f6f598 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3fbd4985 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42415aa7 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4bda729b mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4dc3299f mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b112ead get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x469f1581 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e9e0d95 mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x534649a4 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5820e32c recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f8d4455 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x60268f94 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x605e3c66 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6eda6abd recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73bf0a5d mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79fa6160 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d7cdbcf mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c1296f0 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90b83cf1 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c0e75c5 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ad7da03 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72f4d0c5 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x774e6f21 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x971c9fc2 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa00177b4 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2ac1577 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa05506ba mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa655a4ac mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7a63b62 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8a9601b mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa903631c recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xabc07361 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf3b2867 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbcf5b0fa bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5af7e95 dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe765ffec recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe82397e5 recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8d1bebf recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd301128 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 0x4cd088d4 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 0x616e0cb1 ti_lmu_common_get_ramp_params EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xec6d29dd ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xfc8325ea ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/md/dm-log 0x1170211e dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x569b8609 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x66ffeba9 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x8fd14e69 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x266e5427 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4e737052 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x767b5589 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x91a3bf8e dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xddbfec04 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xeffeebd2 dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0x0bc3978b raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x549dc8dc r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b5fa7d3 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3bda5b94 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59b08ba9 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b3e3910 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5f4797e2 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa2d72b0f flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb7172490 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc6d6f63d flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4e88115 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdfa4091d flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe3a414c8 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xea2b95d2 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf9588744 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/cx2341x 0x10e03b31 cx2341x_handler_init +EXPORT_SYMBOL drivers/md/dm-log 0x17bbfff6 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x2d990833 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x451b841f dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xad18020a dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x478f58e9 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5fcbefbd dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7eaf53c8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xacf73fe0 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd3e45781 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xea8d5aed dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x15b3bf4e raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x5cd07761 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0a543582 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1cc080a5 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3d88a180 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3e6508ad flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4fb98110 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6af8716a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x82382850 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x87a8d326 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x886a3d9e flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xec0ef1eb flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7df8494 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfdb391cf flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfef53dcd 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 0x32f1202c cx2341x_ext_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7754ac8e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x59fcffd6 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xba1a4f5e cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd3fefa46 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d85f156 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd5576da7 cx2341x_handler_set_50hz 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 0x236b555d cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cx2341x 0xfacaa15b cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x251939de cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x1c7392b2 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xd5125095 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb11e6bbd tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc4929eb0 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x0950f5dc 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 0x205ffc8a vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x79c2ebf9 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x78810492 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 0x3df11de4 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5f8d510d vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6acea8fa vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8938a0c3 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xad2c0604 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe7afb1ec vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x383ee244 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5d00083c vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x93b7fbc8 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x947f704d vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbfce4985 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfa20fe9b vb2_dvb_get_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 0xe336e003 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06a946df dvb_net_release +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x4789c405 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01e61ab7 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13a38bbf dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1effcbfc dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x281036d9 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3afdc6d4 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31a3de1b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x387f6f55 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f895b7e dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41e9920e dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a4c7e6a dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x499e7b1f dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56a86401 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x581b0ebd dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x599a522a dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b13bdf2 dvb_generic_ioctl 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 0x68588f32 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e7e029f dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f8edcfc dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c1eb662 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x719e198b dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x81fb507e dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83d4034c dvb_net_init 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 0x95c054cd dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96fb6809 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x97f9a876 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9bf3ed8e dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e304b86 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9633b63d dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ddf0703 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0cd32e5 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac003a3f dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb30e07ed dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa81d0697 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb18a0c8e dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7d48449 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb95926ef dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbd7e79b4 dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7fe1ca2 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc5b62fe dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6bf88ef dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1fe932d dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe846aae6 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5677ce1 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf56a7db8 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec174e73 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf73a6080 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf7bfb055 dvb_ca_en50221_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/ascot2e 0xa09f5644 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x12b59650 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x072edd06 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x118d17ff au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2dadcd53 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85bef1f4 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa50cbda4 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb6b82d10 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb8740277 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce878ded au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe8c2115c au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x6d02638e au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x2810b8d6 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xeb9e888c cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x90c66a05 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x4f901f23 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x53cf0ac1 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xee25baa6 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xa2b57dbe cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x9f68d474 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x58900b51 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe00e6c59 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5da38a5e cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x67606100 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x78fff793 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x080c5359 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x03e280b4 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x38af898b dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3b349f02 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbfb48590 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc46adf26 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x316c822f dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x36942a6e dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3bf21e5d dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4035eea9 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48715be2 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f4375dd dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71001e76 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x77436afe dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bd9ff43 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bf8d3ba dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa8ddca0d dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcecd4edf dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2780c15 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea640f2d dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeaadf7db dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x1e55eccb dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x177fc3f9 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3b72a23f dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x46022f1e dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x68eb757e dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x90647cc6 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x915175cc dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x37ef1326 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x811ebf05 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x816c80e1 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc19737a4 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x62577931 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9335b6e3 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x11dac203 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1222b8e7 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x145168e0 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x24b15557 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2a935e54 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x341a2369 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5e82052e dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6444450f dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6666ed03 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6c300422 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9beb340f dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc081bbe9 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdda5f276 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x387b5dd8 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x58e9d021 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8602904b dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd6a0e0cd dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfbc488c6 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9adbbdc0 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xbaf5e524 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xcf4b6eb7 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x0012e4ba ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8def9cff dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x2c016753 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x87cf433b dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8d213506 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3de1d3dd ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0197cc78 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9416c383 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x251ca10c horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xde880338 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xabcabe59 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34dc4802 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xf8ab613d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xfa3c2e34 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x47069f08 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x447b9e52 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6ddb75ba lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf0d7b5b0 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x37ceafc7 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xa13603f6 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xd4a0c5a2 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x401f22ef lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xae03f51e lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x71fbba42 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd502afc7 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x6407833b lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x58857426 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf8471606 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x8e5f18be m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9b296ecb mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd91f563c mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xa4705821 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xeeda7fcf mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd509fad8 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8f88c60d nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x2385320e or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xed132e33 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x3a894684 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x57cec80d s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb7a6aed1 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xeaa0277c s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xd9cc8492 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x42fe1173 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x918b37d5 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x08c07f2d sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x3312be39 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x353ba351 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x6e5b5557 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xace06ad8 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe36c79dd stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x885b8c85 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x0221924d stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7155c128 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd69d270f stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x52c11b7c stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x98363f8c stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x10f4d7df stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xc9386f28 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x1712f7b8 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x89752d3d tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa2552f35 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x27d6d36c tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xd3b50536 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x15b55fb5 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xae8fa5fb tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xf4ef505d tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x435ec70e tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x7c551c01 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3d91f49b ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x93015634 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x600c76c2 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x91c4a85e ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x51b7f791 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9f8e62aa zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x173c72a7 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xecd97228 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xcb32d3be zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b5c9a03 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5bbc3b2b flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x626df4c0 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x632e116b flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6a2f4090 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6e03189d flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc430522c flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0ecfcfac bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x68597efc bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa4edcf4a bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xae1d7daf bt878_start +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x78b61c63 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb50bb3be atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x437df533 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x79df1c9c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x895101e3 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd47094e9 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd8a0f557 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xea3f1037 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf69a8456 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf7b44230 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xffa3f594 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7d924909 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x16aeba33 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb3e14182 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x389c4bd9 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x17efd62d cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1bc3af35 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x23acf5f8 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x5c23104d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xf01287fb cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2436241a cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7ee226d0 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xf47370ff cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1869913f cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9d9c50ba cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x592f57d1 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x068fe370 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x16cedf7b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x33925bd4 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x54c54f00 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9fe41ae1 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x08044d52 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x22808d85 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47e71dcf dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4ca7d748 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x679d4819 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7396abd3 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x78bac1ca dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c03e708 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x92cf3482 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa64a859d dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb801b506 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe04037e8 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe825b111 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf16b64b6 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfeed1241 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x38d0f405 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0862d251 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x14d2a321 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa86a16dc dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xae485d50 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xef3bbeaa dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xffd56265 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5beb4066 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb6f6bf64 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd41327c1 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf356bc2d dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x0537a2a0 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x663a4cd9 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x047965fe dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x051a166d dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2c818bc5 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3753e0db dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f484f27 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6612cc95 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8316d4a8 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x89e16e63 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8d72258a dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc0acd955 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcca87918 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf80a4a46 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfa4b9731 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x16606bda dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5c5eda30 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6e09a91d dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd660bcb4 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe4f85ca4 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x790088b6 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x1ae9b3d9 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5c5475a0 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x1f6d29b8 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7f70d146 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7b45e7f9 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa114ba72 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd08bc391 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xf3245bd4 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x05a8d313 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1d285213 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xfd35eb2b horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xf096dcf3 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x19852a3c isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x1484c862 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xc555e890 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xe2b718aa ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x75a7e196 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xd94e418e lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xc19c523f lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x0a848e5f lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x8ea02347 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xf949caf8 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x98790286 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xd8b0959d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xd3943b5c lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xdb29f03f lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xdf0b431d lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x72a9864d lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x34e50ded m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3beb84f1 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xcc08e375 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x385181cf mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x494fa5b3 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3cdfef53 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x3446f1eb mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf0786e27 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x5ab268b0 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x06f4a6f1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9c0b4b73 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x8ceb90e7 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xd8b2df56 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x281b2b13 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xccd20afd s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x56b093c9 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xffac0b15 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x39d11609 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1de86fc8 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x586e24e2 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x502bfe47 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x98e07694 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x4983cdf1 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xfd2a266f stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0ca3d81f stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x75e5c80b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa1597d49 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd22d2e2c stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x544869eb stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x2ecddca7 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x57590d4d stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4c60ad3f stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x76f6c5af tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xcb22d6f6 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x2db3f150 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x34a86feb tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xc0cbb9b1 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x0d3e692b tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x897acf17 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xac909953 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xac4fef6c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x775ca8a9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xae8eef8c ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf6110b22 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xdd09535c ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x01945bd1 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7396bc14 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x84008db8 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x7d1b8d90 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4c5da270 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x3207aa8b zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x10c620b8 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x333be7f0 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x39d2fd7d flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5bccca09 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6d3fb674 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x74565910 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xddeefc22 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0162606c bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0bbcdd84 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x128fc48f bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfcd2d1ac bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4dc10e85 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x69a65851 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8c9037ca bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9a04acb8 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcd1834ea bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xddf0863c bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x079edeec dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x14e1d4fc dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x395fa196 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2022b3f9 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2e576189 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3e469188 dst_error_bailout EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4abb4f64 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d288d96 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x61a84dbb dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x931c7341 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcd73946e dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe1826c33 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc46c746c dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8216307b dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa366e5f1 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa6a8b188 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb88ea810 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc9a610cd dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf332acff dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x438b0e82 dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6167f496 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x730d49bc cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7c6ceda1 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa20e33cd cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcc33fd7d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2ce2ac60 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60688acf cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6b419a3a cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6d1f0612 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa02388e4 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 0x13e9f2ce cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0458d610 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0ba5a8fa cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d3c5e72 cx25821_dev_unregister EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x481de143 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5817ed46 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86bc9a95 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x972613e1 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa9b39378 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdaa9a01c cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x64bd0162 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8b7ccca2 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbcf514a3 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc8b9fcee 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 0xc400f7ee vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe7d1e4a5 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x082bfcec cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x54007ba0 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5901e3e5 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb37e18a1 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4da058eb cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5fb80596 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6201eb5e cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x63ac6a1a cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6ee1233e cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xca7bb00c cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf850685b cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01c38ef7 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x07c059ce cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f1a6e59 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b659b3f cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e43acc4 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x53d00bc5 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c81ca2a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x903aaee8 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd121641b vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1bd0906e cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3076ace0 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3867d220 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xeb038279 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x06c9ca1f cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1593e2a3 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x556b1a64 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5bf8049b cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8baab400 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x996ca8fd cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b1f5513 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d76434b cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x274b9b54 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x30b48da5 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3188ed55 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x499fb8db cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4b16a1e7 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4eef1efd cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5320094e cx88_risc_databuffer 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 0x62087941 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x674494a6 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c2fd459 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c995acd cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x68e0ee17 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x700b3836 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x716c0e10 cx88_set_tvnorm 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 0x94cfb454 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d2769c1 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8a61054 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbaf3da87 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5f078e8 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda401367 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeaae47d7 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7821489 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe83ea91 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe8cbb787 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x125e3997 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x128a7a05 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9348b7e0 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9aaa453c cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa505e1b8 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa83f20bd cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb81dc038 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcdd3b356 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb065742 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf628a27c cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7abfb98 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x4a321b30 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x00beac23 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x00c48991 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0aff576c ivtv_clear_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36aed089 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4210aa79 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x51beed86 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x54498d33 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5732c02f ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e2deae1 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6d871f06 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85fdce81 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8ee3ab32 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91dee312 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc85c13d4 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd26d41a9 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdc1a6c44 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfdb70405 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfeb42d07 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1857a83e ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1bf50abc ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x33f359b7 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f6b6450 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x477866b5 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d8c09b3 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58f5cbe8 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x754c13bc ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x948a9a8d ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb42dfbfd ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc9d524b3 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe3817603 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xea9b8105 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeb097cc5 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0281d861 saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0602b04a saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1e403d67 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5641c48b saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5c5ce8cb saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ec9e198 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x16340eb9 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1f8a84b4 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x29c8384a saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5796f386 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x709f627c saa_dsp_writel EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74e9898f saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c9f0ac0 saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x95159511 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb3bd53e9 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc72b82b1 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0bb89a8 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/radio/tea575x 0x30e0109a snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x73f98425 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x75645141 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x86322ebe snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa1739620 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd8cd0dfc snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf3ba5de7 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa6ff0522 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdca0bf47 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe0762da6 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe12c5b47 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf7cdf92d saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/radio/tea575x 0x046706df snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x15511e2c snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2057a493 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2e35633a snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5fe99c41 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x64a8ca07 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa5b3b27d snd_tea575x_exit EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x21f7eca8 ir_raw_handler_register 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 0xb4bf47d5 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/rc/rc-core 0xf374bc68 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x35d961ff fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb065a7ab fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x32cc0a0d fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5b2e80e2 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x683f7dd1 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x999bd037 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x3b6e1007 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x1298cf32 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x9d57ae9b mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xbf834610 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0470c563 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x92298360 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xfdfdfa1e tda18218_attach +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd7b59d50 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xb66b000a fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x9eeb782d fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x568a8553 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf1241229 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfb181fc0 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7675ce38 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x46f9de45 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa800f592 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x27cf943b mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x7ac98f20 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x976fde74 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x57634a50 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xba50208c tda18218_attach 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 0x86f630c4 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x14159588 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x2f314ec5 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4eafa327 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbee9ba05 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12f322cb dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1bfd0797 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5027385e dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5b91f9d4 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x79cfb806 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8986e2b0 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd54390d0 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf1876a72 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf2d22cd7 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x82938b73 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x8a3e4d5e xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9b6982d3 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xb08ccb07 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x590ae45c cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x85ab13da cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x133adfcd dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x293799e2 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x310c2e01 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb359a067 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd72fe0ea dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe723905e dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf331cd62 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf77906af dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfe77a0fd dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1e7821d9 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x33a6aec9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3d417d7e dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3f67b03c usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x58b831b2 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 0xb1079d07 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xce2a7880 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd2b0df07 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd49d24d7 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xefda1476 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfa84b464 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 0xb526cc0c 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-af9005-remote 0xffaae5c3 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0520bacd dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6bcfa271 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x73d03315 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2842c34d dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2e2b4954 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x57b1a1f1 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x73c35f16 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7a20a61c dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x850051ff dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8ee230fa dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9191bbc8 dibusb2_0_streaming_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 0xb11f1266 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd2f1dc74 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf77683bc dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa291e93 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc49d5b4 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfee7c8cb dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5378c519 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x59822b2a dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0c841338 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x406a1428 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18adab62 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x36bd283e go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4d5b3832 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5338ab8a go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7e56f256 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7e8caef2 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8c558399 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3ed022c go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb6a2e0dd go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0b7176d9 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x189ea5ec gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1f784c4f gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4248fc59 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8c5cca16 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf83ab5d3 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x3ac4d438 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x4db43d24 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9c561cb8 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf562f557 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x28e84be3 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7ea48a41 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7f7b193b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc6ee27f0 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd95e3c50 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe6a42c67 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xeb180fa6 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf2089afd go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf6b9e58f go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x10bb79f4 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x10ece6ed gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4c645f0a gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x62d7e3ca gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x941ed1f0 gspca_disconnect EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9cb3cf1b gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xab61f397 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8283a9d gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x08a15b26 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x23665aec ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5a1adc50 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x85aad07e v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x88a50823 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xaee2ca30 v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd0d4d295 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf005e1ff v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb8b7c9a5 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd6da451a gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7eadda4 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x069ac4e1 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2d5dc52b ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x12697461 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2f9cdb74 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3cfeede8 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4bc4ddc2 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5c9dbb4b v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbf6a6991 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x13696b0f v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x244d936d 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7c289506 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9abbd54a v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9deff9c4 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xca68fb8f v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x86abab5b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x89f2f579 v4l2_m2m_get_vq EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x015b3b35 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03f2bb2f v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x053f53f5 v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07e7ff2a v4l2_ctrl_subdev_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b8a0b3f v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bba09c1 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09cd8be5 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e914f15 __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12cc907f v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14fa7153 __v4l2_ctrl_s_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f4a2edf v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22a010a7 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1646682f v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e1dfec8 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fb641e7 v4l2_ctrl_new_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28ac1301 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25e8e20b video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x278bca5a v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28f9851e v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a0985c7 video_device_release_empty 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 0x36f06ac7 __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4993402f v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b1abbda __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52916c09 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x550ae9f7 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5550ac5a v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55c4e053 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56ba3509 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b037be5 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63261a07 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e32c1f8 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72eb46f9 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x779b041c v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cacdbc7 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cc82ef8 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f2a028b video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x452b2cfb v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a6b350a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ae9b9e5 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x501507f4 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x543ea5b5 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58eb256f video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d6a3fec v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61586d80 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6788c96b v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69c02fc6 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bcfea3f v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cc1d0ff __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x706cf3c0 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72471094 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79dec72c v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b7110f3 v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x822699b2 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84226e58 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x844e0baf v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8450b088 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84e30b62 v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b15cc10 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f231b37 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96ecd7f8 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2a25544 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2fda2dd v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3cbb7c5 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4ce7cc0 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5e7592d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a8141a7 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cc861d5 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8df31079 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x915975e4 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b6b1eb5 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5c04a9c v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa62646d8 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaae84712 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae9704fc __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf076f39 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3c0487c v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4d74778 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb23cd812 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb30c7ceb v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb34cd778 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb42b5794 v4l2_ctrl_handler_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7f3189a v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbaf2f8a8 v4l2_querymenu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc30867bc v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc78c8919 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7d6dd6e v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9548162 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9853395 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9baa232 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc00cedc4 v4l2_g_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdf43a0f v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd117acfc v4l2_ctrl_request_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd33d9677 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6a48202 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb7c2baa v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbf14b56 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc78ca83 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe20a4cf9 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4c894aa v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd84a8799 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc37103f v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe177f858 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe1d90fe3 v4l2_ctrl_activate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7fca61b video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedf7d73b v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0c677cd v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0cec50a v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf09ba66a v4l2_ctrl_poll 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 0xfad70ffd video_devdata -EXPORT_SYMBOL drivers/memstick/core/memstick 0x16128335 memstick_unregister_driver +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa717605 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfaed23be v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe2f23bf v4l2_ctrl_type_op_init EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1afbf654 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x27419026 memstick_next_req EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d2a2dd1 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b9300e9 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x42440eb7 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5146e7f2 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x61844780 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x64e0e446 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7634d51b memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9f0ee947 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcf7f67c6 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf1f16fb4 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfa984ada memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4c40c7c9 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5be4c4a7 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5eafbc8b memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x793652a4 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e9d0fc7 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9b04ccb9 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb0bec2a6 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc61f29e1 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf0502bea memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6487187 memstick_new_req EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ae143ef mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0af1f62e mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d7d66f1 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d9923a1 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x158f8a77 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x187fd4b5 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x200d08f0 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32f63bef mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35366003 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x387f26f8 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d5acb8e mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09f8e7a8 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d097d9a mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0eb6b4c1 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1da93984 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a2f3563 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f72c5e2 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x451274b6 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4741ddf2 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b25a4b8 mpt_HardResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5075cd87 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59c803f3 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x595374d5 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c7230e2 mpt_get_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6225190e mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63c7c127 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6658a37e mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68eb857c mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x614ad51c mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x687db724 mpt_set_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cc87f07 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77da2974 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81103ae7 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f759af6 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8fdb17e9 mpt_halt_firmware EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2a0fffd mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf5a9276 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba5e7ddb mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd739920 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc679443a mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb916f08 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d8c4ddf mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f0765e9 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa6d89955 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa73d136f mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8726df0 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2e06fd9 mpt_raid_phys_disk_pg0 EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddc4fcb8 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe12a73e6 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3d11b68 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe61ac451 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdef62c15 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe11a8e33 mpt_device_driver_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb010afe mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04817631 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0716f932 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15136334 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x194fbbce mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3eddab4a mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3fb29d54 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50633caa mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x64c0c8a9 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7092b270 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x712a66d2 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x75b159e1 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93714aa9 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94ffceac mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95a4fc43 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb22aac9e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb728769d mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb4e38b6 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb52ddb7 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc21177e4 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc27aa0ca mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdcdb9577 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7997f07 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7bc400f mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7fcbf4d mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf30d039b mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfca3e89c mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff728262 mptscsih_abort -EXPORT_SYMBOL drivers/mfd/axp20x 0x546da65f axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x55ea254a axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xf30bbe33 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x153a02e5 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x23c95450 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x4f559f56 dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0728cb8 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf1da888d pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1900c569 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x215820a5 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ddf948a mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x371d73ca mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x65261346 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6fffaae8 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa93df65a mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc82a1343 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8e66812 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb42e260 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe10e16c5 mc13xxx_unlock +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6f21e31 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe712b4cb mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe7333839 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf931f7fc mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06710834 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b6da81a mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fb87e3d mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1657c796 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f509233 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3405ce8d mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x38a4ca31 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x38bd9bf8 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a7c40bf mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6739eb27 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72bf6c7a mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7327e0e9 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x944d3c68 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9dc7c27f mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa44745b6 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9f61b4e mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb411425b mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbce05ea1 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb35428f mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2e98566 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4964a0f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc415021 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe169f2f3 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec4aebab mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee16c0e8 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef743021 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe2fa429 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x3f1eda45 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xcf907a19 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xf27207cc axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x1ab40ece dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x3d572e6a dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x6a8362fb dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6bfac422 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb11ac9b7 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2ffa6967 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x36262787 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5b4fa074 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x84173684 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8d226a50 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x910fe476 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9cd63fd3 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb1a2e74 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee68ddec mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfe1d4ffb mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xffebd455 mc13xxx_reg_read EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 @@ -2497,212 +2497,212 @@ 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 0x1839c617 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x3c846865 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x4116081d wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x732cb384 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb11ccff8 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xde740a30 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x04fb1f35 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe7529e21 ad_dpot_remove +EXPORT_SYMBOL drivers/mfd/wm8994 0x0de6ab84 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x66787b75 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7eaf0b03 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x911bcb99 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xcb20c2c1 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xf91a7958 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x73783880 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xde372670 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x4ea1f25e c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x8f15c7cc c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x4fa35c88 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xa0c2a32c c2port_device_unregister +EXPORT_SYMBOL drivers/misc/mei/mei 0x0a190c75 __SCK__tp_func_mei_reg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x1f681435 __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x2d042658 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x165136ee __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x1f98b904 __SCK__tp_func_mei_reg_write EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x625fa58c __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7f9cfe3c __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x8ca2661c __traceiter_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xc8e73d93 __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xdb91b515 __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xea24e8a4 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xeeac66a2 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x4d1c72dc __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x63fb3d3a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x691da540 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbb4bdaae __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xd7e52a1e __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf9920734 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x0dc04f96 tifm_map_sg EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x23743d29 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x440d3063 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x482c0bbd tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x6c9c86dd tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x7788549b tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x984b8302 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa68a2c84 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xc8e1d682 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xd6a66309 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xde4f886c tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe719aa7f tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xf5d5f4c6 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x08bb66ee cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x31523182 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x59eb93cb cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7989e0f1 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd55b4ddd cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x4f056207 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe6609158 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x40e08c58 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x99b69d6c cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xac470c52 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbcd892ff cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcf647abc cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf4fd78bb cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfb58af77 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/misc/tifm_core 0x21891efa tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x2ecb0681 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4297273f tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x780806f1 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7f37f5db tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x87ace166 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x8ec9b379 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x912b8286 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa78fa88e tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc53f71d0 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xda0d79b6 tifm_eject +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1b309944 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x239489e3 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x55cf4481 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb327f585 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe238d2b3 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xba1632af mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc586d4e8 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2785261e cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x32af2273 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x66b042e8 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6d218bd7 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x75364c47 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e8da6fc cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xce6b896f cfi_send_gen_cmd EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x48c5f123 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xacb686e1 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xced26697 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf3382991 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3e7f6d03 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd63a8e33 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x351f68ae simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x19053a30 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x9b2400a8 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x01ae07b2 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x055f1b2a nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0dbb36ad nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x31bfddc1 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x34875008 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x52265249 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x52aafc99 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5b61c103 nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6f3b5635 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x70dd41f7 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x74b408b6 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7e4f94d1 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x861f8270 nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x966dac2c nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9f63d1c9 nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa0c6cd32 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaabd671d nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd0117bde nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdc8cb79a nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x311b473f map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5a265f89 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x947d49c3 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe9baf8a3 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xf38477f5 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x5b8ffb08 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7caea0aa simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x52d35c3f mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xb3de8481 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x066fc707 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x091cbb59 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1d64ab56 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x23933fac nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x423b3260 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4baabed6 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c10ae72 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4fcf3c7a nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x856050f7 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8a9ee0b9 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8bfbd77d nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x90a71537 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa73d41f2 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaf5f5ea4 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcf6352f7 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdf035856 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe0207c7b nand_ecc_finish_io_req EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe9cda253 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeff84f75 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf28bb918 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf21ab78d nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf3273701 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf36bf4a9 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfc875118 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfe958183 nand_ecc_sw_hamming_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x422a264e onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x99e40e7b flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x979956af flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc280798c onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x479477f4 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xee631586 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x05be20be rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0c4af790 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x143c9c8a rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3330392c nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3ab71c97 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3d322dae nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x526dd7f2 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65d06ac6 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65d5c3e7 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6a708c88 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x72e53d4a nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7490701e nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x81b323b3 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x5e792630 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xd4756f68 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1b599c47 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1d6da0bf nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x26067c93 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x30ce31b3 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x36ae8950 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3b911cc7 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4048811a rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5aae8662 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5c9e1b4f rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7ed1842d nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x864806dc nand_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9f25a89c nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc3c0b2b4 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdb7e3216 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0632035 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0316134d arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x134dc066 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4894d472 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4edc0fa9 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x609bb45d arcnet_close +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ffd9a64 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9349d689 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc79f48d2 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe3340024 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe5c43a75 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf524bb9d nand_read_oob_std +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2dbac4c6 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3337f26e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x36344f00 arcnet_close EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7cd7093f arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa6953e65 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8166de0 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc8fefae9 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77aa66ac arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7c296adc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x97fb7a78 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9d111676 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa127f077 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc79a41f6 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcbe07e66 free_arcdev EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf0872a2b arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb8dbff1 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1e674380 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa1ecf819 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc9967b89 com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x258a5ab9 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbd44d771 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xead99762 ctucan_resume -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x29b96027 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xe959250f can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05babc3c b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b52a9d4 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x154e189e b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2163c789 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x264a2abd b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29278f3c b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b7aa0fe b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d09614a b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x421eca5d b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4606a019 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55f205c0 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b317a10 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5d960bbd b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61ecd888 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63b7b51a b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6946237a b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f8291c8 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ab7884f b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80110408 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8128771e b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x835e7eb6 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b9a942f b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ed8fc80 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9cd30d4a b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0d939d9 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1c9940f b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4a34cd3 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf00b1f1 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5825228 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb724bc93 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb7274af1 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbcff8bb4 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5d4cd05 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf924c48 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8592daf b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdb9140b2 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc30cbbf b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd57d2ea b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x527fcdd7 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6394ca81 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8a3c2b01 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xce330c42 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x242cff57 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3b6fec1e lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x77533ec5 lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb834403 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x18e4f3ed com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x222bb707 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdcbe572e com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x5eb613b2 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xa1838f7c ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb46fdf31 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x01914234 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x7841eba6 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x10142d03 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x10a9245f b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25755245 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b823a33 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3caeea84 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x419078e0 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49072e17 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x499779b9 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50991708 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51bcef1d b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59300444 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a4dfb90 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65a7e31c b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6956e97c b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e7b48f5 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f5f25f6 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b528553 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84b57445 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84ee8a5d b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dbb9def b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9cc88cc5 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0f5e5af b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3490ed5 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa34e2de4 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa67bac85 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1310b1d b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1c39898 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3a2529f b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb53a6548 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8aa28a3 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd89a4d26 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8f9070c b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd991102c b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2a1bab8 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe587a744 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeda713c3 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf0aea77a b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa8b9b3d b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x376750b6 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc4f7e7e4 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd40f8b0e b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd96cd256 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0215fff1 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x25501a3e lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x661304d7 lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x045d2c4d ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbb465054 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xf516799e ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1a386623 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x68f2fa18 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x66ede24a ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xb4cfd4cb ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xfdb2f7e2 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x26aebf8e vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x274abc2a vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x60931f31 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9ede88e7 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x009b3166 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x27dcfd01 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x38e056ec xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x182896b6 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x52a9d5f9 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83d6e097 xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa786c782 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 0xd1864ecf xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x084fdaac ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x10f8c556 ei_get_stats EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x275357b7 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x56f30159 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74d83506 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x83077b2c ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa6206198 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb105ff5f ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb5c22fb6 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe16f5dd0 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3f278e9 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfb7f79b7 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2f9d7ea4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3aaa7303 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x80c46080 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8509e9bf __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8e4b44e9 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbdd347f6 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xea6e67e1 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfa019ee0 ei_open EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xfe5d5783 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x5481533f bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8cc954e4 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xac4a33af cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xeda86758 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x74aff57e cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x27286c90 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7e89302f 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,353 +2720,356 @@ 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 0x0a3b080f cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1fbbd9d2 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2417d992 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2958bb25 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c282e9c cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7474466f t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x781ecf68 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7ce164c1 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8c428957 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd27d7218 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda522fce cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda76c9f4 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe38e3a44 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef763b36 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa72ffc3 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfd97cebb cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x032d49d6 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b932ad8 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e4f7af3 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a24f838 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x188d5fe3 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x222aaad4 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x56989d53 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x629c4e52 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6885eb45 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x698b20d2 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x69e41bab t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ebc51ba cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92938653 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa39754a9 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc7654d9d cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc85d5655 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc895e804 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd802b4a2 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xed156612 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d63baaf cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ea7b142 cxgb4_flush_eq_cache EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11e42d25 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1999fef9 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2187bd1f cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x278b9eec cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30816bb5 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33b19305 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34cbafc0 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35069133 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x353908a3 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ac8e055 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41cddd40 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49429864 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cc0947f cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dbfa64a cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x110da3d1 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x128a8ae5 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17345926 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x207f0551 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21f4bbf5 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x261f93d8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x262f8bc0 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2da29f21 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31fa413f cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x341569ad cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x366a0916 cxgb4_l2t_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58a10807 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d582eb6 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x602a25b9 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62bc103d cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67a61f9b cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c1e175c cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c6df901 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ddeebb1 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75a5c10a cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x764efd08 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86ad8287 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e8e9d7d cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x936bbfba cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d41ffd8 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f308344 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1a33ce1 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2b2fc9f cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4be3c43 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52961053 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c6c7810 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e3b00d7 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5edae400 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67a3b72c cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f6d922f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x741a0ec6 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x758c5672 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75a6bc72 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78bb01ec cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b39ccd1 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86b39858 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x935797c9 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b2d9af5 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa503a3be cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa56899b6 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa605983b cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa71adf32 cxgb4_crypto_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaef46fb2 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7137948 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc304736 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb65d946d cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbbae1b57 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfac4995 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1c1757a cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4ae7644 cxgb4_remove_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd759f3e2 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb7159d2 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8ea81bb cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe977fb43 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe993e91a cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea851270 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb645faf cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffeac348 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0f3f5316 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x19b4a1bf cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7786239 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc6d1580 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3f705a2 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe41a60ae cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe513bd3b cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe59c794b cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9f08124 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec06dd12 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee93fbce t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3ed6299 cxgb4_l2t_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1f8c7029 cxgbi_ppm_ppod_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x68846dff cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7661dc89 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb8092e3f cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbac9621d cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc4424880 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x167a2ebb vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x19bec851 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x36563b2e enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7efcad17 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x957e4340 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf9fd8722 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2e62282f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x30c3aa61 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x712e8d88 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7f06ed2e cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x85a371f9 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x90834044 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbffedc6e cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd0db7dca cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x033e213c vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x347b2076 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xceefcc8d vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd883ea3a enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdca33790 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfdcedb50 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x333d7b3d be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x1f2738e3 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xa2a3ce62 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb5814a5e fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdb00bb84 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xcd67feed iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe4a09fcc iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xeb46d4e3 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x02d04329 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x6f979c0a fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x716ea108 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xd9eff31d fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc8c45c50 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf4f706a0 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 0x7618a4a9 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb6a047c6 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x038b0912 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06754ccd mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de8c7d4 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13da03d8 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a075ec mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16ae76ee mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae4c973 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da04b6c mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f8bbc6b mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20379b61 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27a8d423 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f681c52 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c566c6c mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e4dd47f mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef0813c mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f373b03 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4127be9e mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f905d6f mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5080d983 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53fa9762 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x594ed16b set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b860ced mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62d654d5 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x780e55b1 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bc84b8e mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x970e6259 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe1fe668f prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01dde07d mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07efded0 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16c6f4a6 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9f18d4 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e98a217 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c4586a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3551e721 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3569317b mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b0c3a11 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d7717ca mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc059d4 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42b00d8a mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x488283c2 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a3c4374 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53fe4f1a mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560e125f mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57e7aa47 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58e5d2f8 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bd4e39a mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6172fe59 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x642812bb get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69bfe611 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a342216 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c778321 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b7f929 mlx4_SET_VPORT_QOS_get 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 0x88436071 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dde8e23 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9faeea3f mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1abe1e9 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad65bcaf mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f246fc mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6153610 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73d3a5a mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb00e6dc mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbed68992 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc62936b7 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce3e687f mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe011c0c3 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3bdd340 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5a4df24 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe79ad863 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c0c811 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaac4ee7 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfffb1e64 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c61cb7 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01953b8e __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05f3eba6 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x073d2766 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x082a2813 __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1e1d94 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a3db720 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a459a46 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b4cd363 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc1ebc1 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4dfb34 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0feba401 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11595a54 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11861180 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fda37b mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d98681e mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x973e73a7 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa279aa22 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa10622e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb05f8d2c mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb74fe844 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb37c8f4 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe97feba mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb4c6e47 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce5a74cc mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4421541 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd56ac925 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf9b0d62 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2eb77a4 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3960325 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeca83280 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff8d588 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf12f8bb3 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdc53250 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01b5ccee mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02910bb4 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03b0120e mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x059b2ee1 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06023793 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06911168 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b0ac1c __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07da7261 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09169c61 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09a877f4 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a40f944 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a4b7c60 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d3ff95d mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e11dd0a __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11239df2 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x130cafe2 mlx5_nic_vport_disable_roce 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 0x13ebeebb mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14176733 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d64a16 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191055be mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x196f0753 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19eee21b mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19fe8d9f mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x153c7aba mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c2bf9a1 __tracepoint_mlx5_fs_add_fg 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 0x1cc47209 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fbc1709 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e0baa17 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20401514 mlx5_lag_is_sriov 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 0x2491f8cc mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x277b822b mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29564297 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29a7b145 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ac05f6f mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b578e3b mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ead8126 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31bbc37a mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33b27aa7 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3759212c __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38712882 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x389229a6 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38e3ad69 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3af9b06f mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b06ce85 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cb0ef02 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d679c55 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fc11175 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x407f7878 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x419c3842 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4270ed58 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x495c6f4e mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a29db53 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7f2a8b mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e731bc7 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e15dd1 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5178b445 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x569b8f9c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56b660be __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a011b8e mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a86f70c mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aafc401 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244c3978 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24a87db8 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24cb2bf6 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2535ba57 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26a0f675 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aaaea6c mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc48dd7 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ef4e574 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33bdba66 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b88a215 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bd6d2a0 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c5024a1 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fb0c896 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fbc01fc __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40f0eed2 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425bd536 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43911ed5 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x488219b3 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f7c2c3 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49e57727 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc895c7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c29ceb9 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cff816d mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d48a307 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55095463 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58518fe1 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58e978b7 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ab0c23c mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ade9745 mlx5_lag_mode_is_hash 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 0x5d637491 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fff8589 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c78edf4 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cdffdb2 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e53406e __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa56f74 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61460a81 mlx5_eswitch_get_core_dev 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 0x623b6e14 __SCK__tp_func_mlx5_fs_add_rule 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 0x641714dd mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63dab3e4 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64257f1d mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64685e14 mlx5_core_detach_mcg 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 0x699d73ce mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69c56981 __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69cc733b mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6adea7ff mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f08a2f4 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710fa037 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x750944ed mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75c11502 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76fa73bc mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7acff014 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b8596ef mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7beb208a __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c5beff3 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x805cf4e5 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81bf953d mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x829ba7d9 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x836e9e77 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85a5888d mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88024b26 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6597dd63 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b678bdf __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5f7289 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7118f42c mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x758e41c6 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77c1d3ac mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78af6102 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78e7fa74 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7af31354 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dc4b833 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8116d372 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c65945 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849bc98c mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x856236a5 mlx5_core_roce_gid_set 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 0x8936e3e9 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8efcb983 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f512075 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f768a31 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ebcd0c mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d730ef mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f89faf1 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93aab583 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ba9af9 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a8b63f __SCK__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9808f484 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a03ad69 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c2691b2 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97039ac2 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98ce635c mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c2abfa1 mlx5_fpga_mem_read 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 0x9e36ee5f __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4d96ef __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13e9fd0 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1de5ca7 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2651f73 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa544bb2b mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa811b128 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa852dbd8 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f4de04a mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0b48ae7 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1332dd2 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa38040f0 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a60ae0 mlx5_eswitch_vport_rep 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 0xa9524388 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa0e2789 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab0b472a mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa8ae0bc mlx5_get_flow_namespace 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 0xacfd71ce mlx5_rl_remove_rate_raw 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 0xae352d6a mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb05dc4cc mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf03bd66 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf62ab44 mlx5_cmd_do 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 0xb218aafd mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb262a7aa __tracepoint_mlx5_fs_del_rule 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 0xb4473038 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb40fe723 mlx5_add_flow_rules 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 0xb91508bd mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9f6be58 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb53f4e62 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb573430c mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5db1706 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb71ce46d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb82c8099 mlx5_eswitch_get_encap_mode 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 0xbf6db6fa mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0d1de42 __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1141797 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc14a794c mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc428e895 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc50082ba mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9028fb1 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbc3d6bc __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe40dda mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe42e7c mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc11bff7a mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1d0ef39 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1fa7196 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1fd3c8f mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3c4708e mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e4f2b5 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5777f7b mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6b5f765 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86d60d5 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8e322b0 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9689dca mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7a01a1 mlx5_eq_enable 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 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcce9ea36 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf2eca7 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce06337f __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xced15ea3 mlx5_vector2eqn 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 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd227a17e mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a2cce6 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3d26397 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd49fdf55 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5a0ba5a mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd710098a mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd786ec95 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7e965a2 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd855a203 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9c793d4 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa88cdf mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdab31d15 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d00ff0 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5870e5d mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd90b5616 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9554e32 mlx5_fs_remove_rx_underlay_qpn 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 0xdc491309 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd98c747 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc0826a2 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde8b3295 mlx5_rl_remove_rate 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 0xe1a9d722 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe210984e __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0f1b576 mlx5_eswitch_vport_match_metadata_enabled 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 0xe3b301fd mlx5_core_destroy_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 0xe71ddf10 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe811fc69 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe83d8ba8 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea23c072 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea2835ae mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebfb7762 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0775eec mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13ede4f mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2f6bab1 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50d00a1 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf55aadc3 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf72d2adf mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf74fcd39 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9283dda mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc88fc05 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa2d77d __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe619777e mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe690f388 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe86be2c8 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea3b8f30 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed16931b mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf22502d3 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf34d986a mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48a58b9 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51b19a0 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf646db5a mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf747f7ad __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf79a98a6 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cf64c4 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94e95ec mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf955279f mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa26c844 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa607551 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb6124d8 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb66ae10 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb9f9efb mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc365aca mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe6fd7c6 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffbb3651 mlx5_eq_disable 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 0x01dbead5 mlxsw_core_port_netdev_link 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 0x088a3b43 mlxsw_core_ptp_transmitted 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 0x0e4e66d4 mlxsw_core_driver_unregister 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 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 0x166d7ff7 mlxsw_core_traps_unregister 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 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x294c73bd mlxsw_core_trap_register 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 0x329af8a5 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x372c9e4e mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x381183cf mlxsw_core_skb_receive 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 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 0x47df6bc4 mlxsw_core_driver_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 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 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 0x50974288 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50ef8fb8 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x514fa973 mlxsw_core_port_devlink_port_get 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 0x56c4ac4c mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a288b45 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b1ab19a mlxsw_core_driver_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 0x5ff17b5c mlxsw_afa_block_destroy @@ -3074,47 +3077,48 @@ 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 0x66c7a5e8 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 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 0x7c314383 mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x816e07ef mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x818e5a14 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 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 0x89a6f86a mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8fd7e978 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a00b411 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a3cccee mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a7c8cdf mlxsw_core_bus_device_register 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 0xa509fafd mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa5440881 mlxsw_core_traps_register 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 0xb5b902bb 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 0xba05b3b0 mlxsw_core_emad_string_tlv_enable 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 0xc0e50038 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc4f9fb77 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc7dcc239 mlxsw_core_trap_state_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb53ad6d mlxsw_core_trap_unregister 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 0xcd903404 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 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 0xd38ca099 mlxsw_afa_block_append_mirror 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 @@ -3124,146 +3128,142 @@ 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 0xe13298c3 mlxsw_afa_create 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 0xe1933f73 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeab0109c mlxsw_core_rx_listener_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 0xef9391f4 mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf0130f0b mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2510074 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf67cf5fc mlxsw_env_reset_module 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_core 0xffcc1d23 mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6edf411b mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf7bc94ef mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0f618de9 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xedb38729 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02b9dc44 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08f4e9dd ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c405b56 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd0906d51 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xfd43ab6d mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x1c97f4a7 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x714bc81a mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x003d0fe2 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07b91a6d ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08f8fb40 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x090bb4c0 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a3dbbec ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0dcf442b ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ed165a2 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1415dc03 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15a2b0d3 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1801fd44 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1823b17b ocelot_sb_occ_max_clear 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 0x1a18b6bc ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c7cb3ec ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d11b79d ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d495719 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e5c06f6 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x209b6533 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x240a5d5f ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d0236b ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c4758d3 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2eb9abca ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ab3e882 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bf0cf97 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d9c12f5 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fb5d509 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21ef2e71 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24fb89c8 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26f2694f ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b447fa9 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b818578 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c9486a6 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e04fc05 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ed83f09 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 0x328e7ed8 ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33bd884c ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x349a10ab ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37e3f80c ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e48a290 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f277961 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f92585e ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x418f8707 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ffcf2b9 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36171399 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3cf6f3cb ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f0a0f41 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41ebacd7 ocelot_get_txtstamp 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 0x4356b935 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4445737f ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x444e1a87 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44c02a78 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x464f2edb ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x478de271 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49e10a47 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d69202d ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52918d54 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x555b0224 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ec160c8 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f70b251 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x681c6037 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a6a77b2 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70b429f7 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a0a544f ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a22df20 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d5b1634 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x439c61e5 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x482cd0ab ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bee727c ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5271f624 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x552221d8 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aa49af7 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c7072fa ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61d17540 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68094e00 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b4a22ba ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cb5d009 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74c022f3 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75c671ed ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77ad9dfa ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78bd1944 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f11b70e ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f565b0a ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x805c12b6 ocelot_sb_occ_port_pool_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 0x81fe9ec9 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82207030 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89e3ff2d ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d1b6d57 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81bbe69d ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83bf681b ocelot_get_ts_info 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 0x91831f37 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x924510f0 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92a5d3b8 ocelot_sb_tc_pool_bind_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94da087f ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b9ea518 ocelot_vlan_del EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ddbefc5 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0bb365f ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3bb3bca ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e23a7f6 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa709d4ce ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa75b795a ocelot_port_mdb_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 0xac91a123 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad23b99b ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad26ee2f ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf69adae ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafb64774 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaaf90fa6 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2abad36 ocelot_policer_validate EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb45c2de3 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb531c6a5 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6ddab38 ocelot_deinit_port EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc6724d8 ocelot_ptp_enable EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc47a3306 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbe06654 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd73b07c ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc18d6013 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5005828 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5e99a92 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc9fd8d2 ocelot_mact_lookup 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 0xcef70228 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfdfc520 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf06d372 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0804b04 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 0xd1941200 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5d11859 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6687998 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5c6ea1c ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd632a779 ocelot_can_inject 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 0xd7e76d08 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdabc4d57 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddeea959 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf6ccddc ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7ca0d65 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe85e5bc9 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8eea08c ocelot_get_ethtool_stats EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec2fcc1e ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec7ddbe6 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec8360e5 ocelot_devlink_sb_register 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 0xece8569c ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf53fbf28 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7397d2f ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf75dd256 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff1e7ead ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x32eb58a5 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeec87148 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa60fdc7 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc812e4e ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff323d70 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1b3bb208 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 0x7b6139a4 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5f969695 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8534a953 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 0x9df1054c 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 0xee6a87b1 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3ce80f56 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xbd0b86bf qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x078ac979 wx_clear_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2893c9f4 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29ebd4cc wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2f5578ec wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3096ffb0 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3571ac44 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41e6fd85 wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x440b244a wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x604e68b1 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6529b0b0 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8b1433f1 wx_set_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb3cfecaf wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbced64f2 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe1cae233 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf4367f5b wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf46e2d37 wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf54b180b wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfeb25582 wx_check_flash_load -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa45094cb hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb1cdf539 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbe166252 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xce05bebc hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfc228c8d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe4fce727 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9f5bb091 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xeec3da33 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0053232c wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2d1a2ec8 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3c38026b wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x59b4275d wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x65712d02 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8167de43 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8332d006 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x889149ad wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9fed9922 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa16024f9 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb2637ed7 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcf12d977 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd0cec706 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xda85adac wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe4d1b7a4 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf2f10409 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf5442dea wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf67f2da4 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x42523d50 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbce47e81 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd614977b hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd930c8f4 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeb43d878 hdlcdrv_arbitrate EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok @@ -3271,1529 +3271,1529 @@ 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 0x23f68d0d alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5f74af44 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7fb9a0d4 mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd37a5b2a free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4b5dc81d cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xb0d80f01 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xd087927a mscc_miim_setup -EXPORT_SYMBOL drivers/net/mii 0x06227286 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x0f875822 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x1536fe1e generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x1f32b58a mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x5eb0c380 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x8c307efa mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x8fd7a245 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x9b38eaba mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xada54b4d mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xe3671c62 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x025da257 lynx_pcs_create +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x2d52a67c mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5ddeffcf free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xcf79eff3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd197f48d mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7f8af438 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xc61e4815 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xf79b63a4 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x31eba2f6 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x3822c60e mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x54500503 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x58092fb4 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x83e20102 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xb867f833 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xcd95374d mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xe4a61f4d mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xef239503 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xf571e6c9 mii_nway_restart EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd33d880a lynx_get_mdio_device -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x5a9793ae bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0366dcd5 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3776fc41 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x736f189f pppox_ioctl +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x3a8ff9e0 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xc08f45a1 lynx_pcs_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x02ab9d96 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x11445063 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6f535cfb pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8c954f63 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbca1daf9 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe82ce87a pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/sungem_phy 0xda337158 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x26f06d4a team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x5543783d team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x591bcf26 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x699efd2f team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x6b71a62d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x71238802 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x8de9b6d7 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xf3553104 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x05ef3244 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x46c89c05 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xd81071f6 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x26995b3d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2dc17770 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3c376552 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6e9d5d96 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x713fbb4f attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x83831c0b alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9a76fb87 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d4bf492 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc5c50092 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc8542cb2 hdlc_close +EXPORT_SYMBOL drivers/net/sungem_phy 0xf9f53a83 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0169e3bd team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x1c7a9c6a team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x23f1c778 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x27b31b73 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x2fac089f team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x304a8556 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x973801b5 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xca9ab73d team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x44bb05ec usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe561dbc1 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xefcb8d75 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1793fffe hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3f541131 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x57f9ac63 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x69ff16c9 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x701e4393 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fa0e996 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x896061f0 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9ae7f218 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb6a6767b detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfebd833f alloc_hdlcdev 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 0x16b67292 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1dc038a1 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x167d9979 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3b9d38c2 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x505997a9 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84b0798c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f777c7c dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x950a1c3b ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9786a5a3 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9bcbf7c5 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9eab8ed5 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e3dbabc ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x540483ef ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ca87886 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8597abf6 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x85ec8397 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f7f4f3c ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x93f468a4 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaca9381f ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb3bc733e ath_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb77ef5c3 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcd04daac ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2c757fe ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebe12f58 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb96c226 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe24359c3 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 0x01dc6efe ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01f5ce36 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02156970 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0225093a ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07700fa2 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09204ca2 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0baf137b ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dbc10a5 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x103cfae4 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fd1cc44 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2631e610 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a260529 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x365f5ef7 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a0d4d52 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40ee3778 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41fee9e7 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43c6a2bb ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x442a3ab4 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4534a26d ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47378186 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x488e939e ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a4f8d66 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51006575 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56553f53 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b3b252e ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6fa3faa3 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71c59609 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x761ed602 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81963f0f ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a5fd3f9 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b9566e5 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91046b23 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9244f2a7 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94b871f1 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95a82a8a __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9651f94c ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e379d1c ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8bee0e4 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadcd207a ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2b11ceb ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb727738e ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb35a521 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe5fb547 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc24d43ce ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2600311 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc564bb19 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc66b743b ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcea484e8 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd04f0cb6 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd53910cf ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5bd639c ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde334b77 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7a21865 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed12c946 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf62582ac __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf95bedfa ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa130f6a __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x01682dd6 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x03f6e3b3 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ce420b6 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ffd4c21 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x244e9978 ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e66cefa ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x416df778 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42284e3c ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ad87c3b ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ccea14d ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f585ae3 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f8576ef ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x50b1174e ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x52daa41d ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x575b999b ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6068cb0d ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x64b7d449 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e72afdb ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x793b8707 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8251a2f0 ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x82931096 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83ef556e ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x868fc554 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8711eb03 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b219423 ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95f23c05 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x99d94a9b ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9a11dcbd ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x024566e1 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0471028a ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0786944d ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c35c9bd ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c7ac110 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17fbc7c2 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x236c54d7 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29600c4a ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3248ebc4 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33eafeb4 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3404cdfe ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x342d7094 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38c866af ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3974991e ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cf45bb7 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e135d77 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4070addb ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4488b8c8 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bd0635b ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bf56048 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cdc8051 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d8164f4 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5577ceab ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5980dc7e ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c555c54 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f75c0d6 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68f13652 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69afade9 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a5fb656 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6beaf6df ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7035ca28 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77dd3e33 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b8f3b37 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cb3bcb3 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e914dee ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87b18f19 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8abc34a8 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b2c753a ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b8e1345 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90a8e291 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x927de22b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bb94953 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3a76599 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabe53de2 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3fd634d ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc475b6ac ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd00ebdf3 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0cc72a6 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd32ca073 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdabe622d ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddd8e494 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf692058 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5fe9769 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe91382e0 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf00455c0 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3004584 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3c998dd __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x056a748a ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ad34da7 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x178b021c ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d1a0c6b ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x37605515 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39da349c ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4341fd95 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x46a9f2e6 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b4b1129 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4c9dcb6d ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ded5b4c ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x62084e22 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x63c00b91 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x702a69a9 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7746d835 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7da86d0a ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x802f2c5c ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8452d1d3 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x98a8df0d ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9b8aa0ad ath11k_pcic_register_pci_ops EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c8355ef ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb20fe30d ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd5ba489 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbfe244e9 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9748592 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcb68d51f ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd681f21f ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6a39ed5 ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd7f02edd ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdbda04a3 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6d60464 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee4c4dc6 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1a50de7 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa220e329 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa7fdcd84 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad8a4868 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaeedf265 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xafe50750 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6ddfed1 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb8851103 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xba7560af ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbba6adec ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe98bbb6 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc2b2c769 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc5837b10 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd7a8f952 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe27c8c7b ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe98f390d ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe9f38143 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb3a734f ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee09af2e ath11k_warn EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfadc6c99 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfafdfe4d ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf9181cb2 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfbdd8edf ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfc149178 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x07f3007e ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x08b33ffd ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0cf8fa29 ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2bf9dd26 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1a028a1e ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c420902 ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x502f3573 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x55e4cf0c ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x602a7849 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b695b42 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4b5588ad ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f0acb4a ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x581c2458 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7aa50221 ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_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 0xbd5bf7b8 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc046b047 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc9da0b9b ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd609a120 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf6f441fe ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfe7ff4ca ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x04e73e94 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b415d1a ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f559b14 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x128672e9 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1650cd61 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29155b46 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34f70c95 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3cdc83b5 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdd55a104 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeb921164 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01456c8a ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f019824 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38cb945e ath9k_cmn_process_rssi EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4901774e ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b85841c ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x693c5133 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x74a89395 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84a0b0c9 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87531efb ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa269025d ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa87a6634 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb357bacf ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb438aee0 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb43d7242 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbce4d186 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8f7578f ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53e134e3 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5882f140 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5cf2b109 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d7e8629 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5fcf06fb ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6f443d19 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7c5fedb2 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x83a1696b ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9dfecc1e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa45d4d32 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb0a8589a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf768965 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc8f02303 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc9e2340a ath9k_cmn_debug_base_eeprom EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd9440c16 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9f64133 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0231089e ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03b3a885 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05f3b18c ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05fe15b1 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06b2a964 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08355381 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b4076a0 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c0d7ff0 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c693b39 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e360a39 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd3050f6b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd3a2a198 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf401a2f1 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf41817ce ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8249e0f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfafdb976 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0010f54d ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0476ceb9 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05e70f07 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x077306f3 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b1f1182 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c2fd5c7 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0da54d17 ath9k_hw_check_nav EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x151047fd ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16a6c791 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1871feed ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d0c4c5f ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c1e23c6 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2da68338 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2db936a1 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e04cde0 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x306139fc ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3643d8da ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396da97b ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bb75b58 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3be03350 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d2506de ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e8f5a05 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45703ef3 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46514f35 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x475521db ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ad37bf6 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bb74d24 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5257e966 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x531c0cbc ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5830f04a ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59bd8225 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bcdba4e ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x631eec19 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x633c5c84 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x690d088e ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b670710 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c5fb326 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cf6b35e ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d89e356 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f16d229 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f49a9eb ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f5bd996 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79186e02 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79267aa0 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79c56d9e ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b311922 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ba0dca2 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bd43faf ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bf498f0 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c897637 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81b751c3 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84910b87 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x855d8891 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879b616a ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b56c9a7 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x942d7375 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95555f10 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96efdd88 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97c23fef ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ef5279 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b2f0f31 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa02dd389 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0f02b3d ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa25c7830 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa16669c ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa74caaf ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabffa738 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad1528d4 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb02bdcee ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1cd4761 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb481f8a8 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7067baa ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb826f85f ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb97012c0 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbce9615 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1fddba9 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3cae2aa ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4bd0a8c ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7e08ad7 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb4e4ad1 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc62f9f6 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd45df6f ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd7ae023 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3677c15 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4249a20 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9ecb7d9 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeee3c43 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3654261 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3a11a70 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe516177e ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed177b7d ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee6d1fe ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef28a83a ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef5fcef2 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf010ef52 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf182e32b ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2ac133b ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6532480 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf98ea514 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfae3e433 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaf6d227 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc20c351 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc4a413e ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd264f97 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x113e99f2 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x6ab6c1be init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb2fcb7b4 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x09a352a7 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x13183496 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x117a7d08 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1186742d ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x126c20e9 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x139be200 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x142c583f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19834635 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a1d1bd3 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d3830b9 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d4d5789 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fadcbac ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x212e4414 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x258cc046 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26f97aa6 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x270535dd ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28f57139 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b1329a2 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e651d89 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e8c9a06 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ee36522 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f3f9bd8 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x328600f0 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x337cea21 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374c97fe ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d54b2e9 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ef4f9cd ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f3bd79b ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f6fd43a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43d1a0a8 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x448f62d2 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4580e3a4 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ab4d55 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x476229bd ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48bf4b1b ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x490282ef ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c0382b6 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e95ded9 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f718785 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fe16f29 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53a63965 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55c51b3d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x580b67d0 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x587f2687 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bd5b75d ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6127eafe ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bc3f449 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c70c847 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e7eaec4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x725b0021 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bfc26fe ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8567ab42 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8abd711a ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c67008e ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fd50a6b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x995c8e30 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a1eb350 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b6e5954 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b840973 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c4442b2 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d801d9e ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2b52414 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5f3b52a ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6a75ebf ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7bd5ce0 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9d87486 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad9ad034 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb14c4c7c ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb34b4fd1 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb358932a ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb383c5eb ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb639e30b ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6777175 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb97bbcd5 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc9205a0 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd4f2688 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc163064b ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2e49981 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca622a72 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd90598f ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xceda76b2 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd8a4abd ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe03156be ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe13669d9 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1c67847 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5598455 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe785c9f0 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8013454 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe86174bd ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe864c4b5 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe879dda8 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecdbee22 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0d33c13 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf45fa4a9 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf74b646d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7cfc2f2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7eedc56 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb535180 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdcece72 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff1035d3 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff5d5ecd ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfff1af79 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7b8c7484 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xba7454da init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc0529685 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0f5ff7dd 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 0x3f93f14e brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x434f2dbb brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4453f0bc brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x760a5198 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8062af8f brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa076585f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c13cbc7 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e4c9bc7 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4800070e brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4e20377b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ebe173b brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5375cf87 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x58a3a837 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x70225838 brcmu_pktq_mdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa49fac66 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbc5e209a brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd3c0f929 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb15918c1 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc3a959bf 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 0xd8da662b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xea19fa34 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x16ad4eb5 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x920d6b3b init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x9615caa5 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0163826a libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06a219ec free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x16f5b091 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2400aa84 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3c067094 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x43d349a9 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x457b49c6 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5e7974b8 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x64b6c1fd libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x664e4417 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x66c4ebc9 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x97fbe924 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa06bee19 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xac939a8f libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xadd5f1f5 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbcbf69c6 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc0826fd4 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe6a253cc libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe7313543 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf74092d5 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04173144 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04e94059 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b944b46 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fc1a798 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10e179f1 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x129bb453 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12c61222 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x139d7897 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1443dc97 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x156b096b il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15cde1f3 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a929bf1 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b0714f7 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b22aaf6 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ccabcb4 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dae5eb6 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1eec9b12 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22ba50dd _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x253abca6 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2622aa6e il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27c8f67a il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2887a5b4 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8d17553 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf4b1ea7e brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xaf1108e4 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc68fd987 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf4de064d stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06003942 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x18590f1d libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1bd197bd libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1c0a2cdc libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3e782f75 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4d3eb334 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x59f89058 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5e4367f1 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6ba0566b libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70876af8 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x72386148 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8323829e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x88b0d969 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa5e1512a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa61276d4 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc1e95d2a libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe460ba13 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xef06f42f free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf36e8737 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb16eb8c libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01df249b il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04021b80 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06fdb5d3 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0aeb822a il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cade9b8 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d6af18c il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d8904f8 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ed7f97a il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10151c16 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x119196dc il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12253bb5 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14a16cf6 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x179cd789 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a3f5b0e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dd2e28d il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f7f4675 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2023c903 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22849589 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2980c0b4 il_init_channel_map EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c33a608 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3019d260 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30c38358 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x338ecabd il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3413dc40 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x341762fe il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38911f82 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x392b7929 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d2dba26 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3075eafd il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x397f7f81 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f885781 il_free_txq_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x462594ad il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46434009 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46e10f27 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48e11b87 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49077850 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f18ffe6 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ff82cc5 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x500d8061 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50742b82 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52a7c55c il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52d3e14f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53b9193d il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53ce3de5 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5470c5a8 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55dbb593 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c446747 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f876688 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6263bc51 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63851428 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66463e57 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x683921a7 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6980d3c0 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x698295d4 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70df2489 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72cb3d01 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b990090 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c2637fb il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x854f549a il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94ab7491 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96a01b74 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x994c7132 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9acf3cd3 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41b52cc7 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44d470e5 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45594e45 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x459b9ba2 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x468609ec il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46f8ead2 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x479f13a3 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fad6340 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x524b28a4 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55286fe0 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x571df8ab il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5985794b il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a569ebc il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a7e4d93 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5aee67a9 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c06f876 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fbd4b51 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62bc367d il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x646faecd il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69b11bf0 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d2da615 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ea6e419 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7072e459 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72d01771 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x740f18e6 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x791d3c08 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79bef4d9 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cf55f4e il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d086417 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7da1081b il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ec6d954 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81f1a51d il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8537cd58 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85e11d89 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x864d766b il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87dc0bdc il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a27f02f il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8dddb00c il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f2e75a6 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9097a27b il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x927ad629 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9485e166 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95ca2306 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x972f185d il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c91fb09 il_power_update_mode EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9eec50fc il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2d0f0b9 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7a918ed _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8119b62 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa96aad56 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa3048a9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf1edd97 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafa3c87c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb12613bd il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1592a63 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb569005a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d876730 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa45ab382 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9e6a7b1 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab2e81c3 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab51819e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadb43326 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf4fbf0e il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1c60bef il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6438683 il_check_rxon_cmd EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb66cbf5e il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb734cad7 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb71bae3e il_get_free_ucode_key_idx EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9247c5a il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd18e92c il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb5046b il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc61f337f il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc967cff9 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3c9c722 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd46d38f3 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4dfdfea il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd70deac1 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda08a310 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd4a475a il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdebae576 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3385b5f il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3398a60 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6a9f1eb il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6eb616c il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7da46c6 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed22fbcf il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda015e2 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf185a26d il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe749db2 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc003d555 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc10157cb _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1787433 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc74e6a49 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbf97828 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce58beef il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3532608 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6574daa il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe12dbe8b il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe65e67a8 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe89bdda5 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec1659fd il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec4e2a34 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed318039 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeec888c4 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf01bbf39 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf197227d il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4c124d3 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5246c25 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5433a5b il_read_targ_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaa7ef84 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdfb9903 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x210df50f iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1681e40f __tracepoint_iwlwifi_dev_ucode_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 0x54564d03 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7eef52f4 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92613235 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a285084 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d4fc1f1 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f3d7ae5 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3da3139 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd60d7e46 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42f7eb15 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f3b6140 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5309571b __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x67113f6b __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8365ccb1 iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4852b21 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc9d5dda9 __traceiter_iwlwifi_dev_ucode_wrap_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 0xe9632ece __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cdbbbd9 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45a085e3 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x49ab2f84 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d7a9139 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6261ff10 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b33e3e7 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6bc86108 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6feee4d9 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73b35419 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd940adc8 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf09d4351 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0051c91a hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x06aeedfa hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a0ce4a5 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x10712cff hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x10d138a6 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x150de763 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x173ee76e hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2b1c1e25 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x392f15b7 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3c15678f hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5db922d1 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7120985e hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7dcd7ac9 hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x858fc9a5 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a4b9d62 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ac683fb hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa665531d hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabb4c313 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabf5b077 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8019c09d hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8bca35fe prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8bd5ae5c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ef66cd6 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8fe40e43 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x98736d85 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac432945 hostap_get_porttype EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7d5de9b hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb88a827d hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9254596 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd600ea98 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe24f2fcb hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe376a79f hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf15a124e hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf3496bf4 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc6634e8a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcdcf010a hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd15163df hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd44b908c hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf6a2c2fc hostap_80211_ops EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa7836f6 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x07ef6fb2 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0c9c59e6 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0fc0518e orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1e4728b7 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ccc300b orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4fce14f0 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x70ae3284 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x734920c9 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x745f6adf alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8118353e orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c025a37 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfaac11e0 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0122d7af orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0f9d5ac1 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0fc36587 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1152a901 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x26a94449 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3dabae5d __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4186655d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4f4166d9 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d8dfcc5 alloc_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaf8eeafc orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5e36945 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xea511d12 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf077bafb orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa87c79d0 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xba63c0fd __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc52e3780 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc67262ba orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xedd78447 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeea08b28 orinoco_set_multicast_list EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x0eb1ba00 mt76_wcid_key_setup EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd6aeee9a mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4af05903 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x089efea0 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1912996f rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a6e5bb0 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1daf4e2f rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x15e342fa rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x006fe03f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05e35ade rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06e4b2bc _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08899721 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aef46a8 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bcb360f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fbacd61 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1051ac5d rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12d9b2a8 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13036323 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1982ad9f _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1994fdc9 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1baf3bb4 rtl92c_phy_update_txpower_dbm 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 0x26ec9c82 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34524925 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x365349d5 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x375af67d rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cd8d2e0 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x403dedde rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42cc9e32 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43928952 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49c8a7eb rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bbf2436 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b4c2551 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a06619a rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71318a66 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x719d6223 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bd4fc88 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cbc864b rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x825f79d9 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89191cc2 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e2f6d50 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92687348 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96f2f5bd rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x988e08e8 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99f36860 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cbddd2b rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1ba12e8 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd043e9d _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd539659 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc89d01fb _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcee7ef89 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd45bfae3 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7782f84 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda775d9c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebe14e33 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0528f73 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf698b6ef _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf87abefc rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfeaa82da rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x35e98229 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3c4ad7cd rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaca97fa6 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xccfc3a8d rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x186075cc rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2a7824b9 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3b64a235 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd25c491c rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06401d98 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08b8a713 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2380f027 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29eaa921 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b16c2de rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e126d7b rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f2f08f3 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x321c5772 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32d134a2 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35adbf98 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36264818 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37c1a215 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e0ee1bc rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5184ec28 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60739990 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6eb40e50 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x771bede8 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b34c261 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x826e654d rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa5adf03 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabf1437b _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae37fa6b _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd54fcfa6 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda58d11e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1974448 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe35d11f5 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4075787 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3b30b8f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8ce9e44 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe341f71 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa3765fdb rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaeb08762 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xea72050e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfeedcbee rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x156107e2 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1bd2693f rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1e2d0355 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4653edf1 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0656c2e4 rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b6a7804 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b012429 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bd588e5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c57805c rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d766a79 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17445065 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x190aadf1 efuse_power_switch EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x234afce2 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bfc66e1 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c593a70 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2274224b rtl_cam_get_free_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b35c5c3 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45697e84 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x496e9af8 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x388a644c rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41203fb8 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46f1779c efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dc0e2c8 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e855c05 rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61ff2b3f efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f5f69a4 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79f1b6c2 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83cb1251 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b011d88 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ed598b2 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64767c20 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d3a3163 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dae8e5c rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ee49311 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x956a4903 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c37e205 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9dc17c1d rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa896e0a3 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb96560be rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc037d964 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc69c2e6b rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e086c5 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc2472cf rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcceb4245 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf0f6327 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9f3df52 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebd2f35c rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f4ae381 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9548fc52 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9aed1a5f rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4b82910 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaacfffd5 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac78582f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae48a540 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae9cda1f rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb041f608 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3a1a2be rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6cf69f9 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7e9f722 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe884a76a rtl_cmd_send_packet EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecb3b338 rtl_cam_delete_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1de7deb efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xd32ba376 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x4eebd4fb rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x38cbd9c4 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xd709b2fa rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00c609c5 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x046a1f8d rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f384f2f __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x173fd09a rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18d31cdc rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19001c1a rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d50b58e rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x271fbc25 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a4a18af rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c4b33d3 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x42d692fd rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xdf16e570 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xa936e84f rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x46f48371 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00a75e1b rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06704835 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1080f756 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x121a8107 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x139cae95 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x202d6d8b rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2101e3d3 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2134a874 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2238b6d4 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x223e9715 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2579471b rtw_phy_cfg_agc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x361ccffc rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x364dcf11 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 0x3781f4fc rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf206ca rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c06139d rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3fb5c298 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4028bf3b rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c80b00d rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x404f57a2 rtw_phy_set_tx_power_level 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 0x45c909ce rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x465c6e07 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48ac9e68 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a7f71a7 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d3c2f4b rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e3f7b6f rtw_read8_physical_efuse EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56826667 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5288e41d rtw_phy_parsing_cfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a75b643 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a8f5da4 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f702078 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61e7d180 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63c6f9ae rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x684dc524 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78421df9 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e5df96c rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86350d10 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9399aef8 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9644344e rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d224c33 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f23c256 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1413422 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5ae2de0 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5e840b8 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa65fbacc rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5991568 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8510e7c rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9c33666 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba00f76b rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb9226a5 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbfdfa50 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe41f53e rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf996844 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4cda243 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd127a92b rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd249dd70 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5bae126 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd967a858 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdac82057 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xddbf6497 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3c604ee rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9ea7b83 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb2ddfb6 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee27e600 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeef12143 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6b8e075 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9fc188b rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb124a1f rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe233b69 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x33f95c20 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x66bcc1c7 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7e11f437 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x972baef3 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x079c2597 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x910e1e7d rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x004acb74 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x77d41984 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xec7155eb rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01b8b5ef rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x060f27d0 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16bd1706 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17485ace rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e4faa29 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x205afe75 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x21b2de63 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x26d7afcb rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x290c788f rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36a9bda0 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a162780 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3aa05f54 rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b41ed2d rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x43972211 rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47f85195 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a4c1ecf rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x531638a9 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x552e9637 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x574bc91d rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5eb4a2c5 rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x659da5b8 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6660caaa rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d04fcff rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d2c98cc rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d321669 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61a1313e rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6becc1ae rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7098d6b3 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7555e8d8 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77e32c3c rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d15baef rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80a345df rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83e23709 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x857a2aa5 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x883b7474 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x898c8104 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b24ab8e rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8be245fa rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x908d799e rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92f088c4 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9fc51570 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4237844 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa52eeb2e rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5a2abc2 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa63ed0da rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab8ce1db rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafbbdfb4 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb13c97b7 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2575b37 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb78a35f9 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba6a006d rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc56ab4ec rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccca412d rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcce7a988 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0f1934b rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd741eae1 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8fbee49 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc92c1fe rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xddb01dd4 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xded23ed6 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2d1144f rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf69c2f1a rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8300b2e rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9a616c2 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfcb25fc2 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7368ff35 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa35752c4 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xcf8ba04f rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xdb9a6b06 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xa71d3d24 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xc9ec70a8 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x0c299137 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x7bb743c7 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xe0120fa8 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x00e7a155 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b62aaae rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b987588 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10129179 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x121aebfd rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d68be84 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e93ed03 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2432a53d rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2676d5a0 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28a3f9e7 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28cf818f rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e329da1 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x302931ee rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3347c162 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38b540b3 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4280e474 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45c387b2 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x469585bf rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x504a1fdc rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x522f48af rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5278c22b rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a20a883 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e83ad13 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x624bf957 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64a60476 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6527ae00 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6afaa2a2 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6bb57b94 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d5a57c9 rtw89_phy_write_rf_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x706c24d7 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x76a3977c rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x788f9884 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7bf048d3 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c73eb0c rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x804f1ff0 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x81117564 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x81bbee25 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x83099ff1 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x84ebaa2b rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9bcdcfdd rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf1713b1 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xafc432ea rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb059894a rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb22afaab rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8919ba1 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0556ae0 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc278ff0a rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc3caa681 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb603936 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdf2b3c8 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd01386ec rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd1701ac3 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd5b4d351 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd68bcc17 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd85aa1c8 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8718ec2 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc9cd1ca rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdcdd5e28 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0dcbf23 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7150784e rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7983172e rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b90c3b0 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c30a42f rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f3736ee rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x818a78d2 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x822ca9f8 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x842aef52 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x85a0b1ad rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87db189b rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b39bf45 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9334c5ef rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94e3e95d rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x953181e0 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xacc41a08 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad6c98d9 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb500e305 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb863a79d rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb9881c09 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbcd3c23e rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2faa08d rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc6fb78f3 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb2863f7 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdaed1ee rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2aef747 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd532bf8c rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd6a58f19 rtw89_core_napi_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe837a3fb rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec3c8ff3 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf00f630d rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf5e694ae rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe4cf0eb rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0319f21d rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0597833a rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x06f775f7 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x27e31c87 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4915fe23 rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5096c530 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x61b7a274 rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x63dab26f rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf3d29524 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf8d0ee4d rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfde56b75 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0690975b rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0980f7c3 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x27c61b58 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x35a2b4a7 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x479d9e5c rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x55ac890f rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6cb9ff81 rtw89_pci_recognize_intrs 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 0x74dacabb 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 0xb90b7a98 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc1a3f23e rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcb94a68d rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd140a578 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd9006da2 rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe8d72537 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf1dcd682 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ed7415f rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb555f7c7 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcbd593af rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcded9148 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd0f0e698 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd2bc1136 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd7300d1c rtw89_pci_remove 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 0xae9f48d8 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1c78afc6 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x59891e95 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x975f7874 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaf245f37 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb7a2c924 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf8999327 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x30ccc2f4 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x90c6024d microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3767714f nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3844499c nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8f8ba09e nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xcb5e27d7 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdda3bc03 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xec895171 pn544_hci_probe +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x4ff524bb rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2946e0b5 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x74095396 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaa582228 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb122e8c2 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa73862e1 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xaab6dbd5 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x107750f7 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe925cac4 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x18e7f4c8 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6bc01c1a nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb03ed36a nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x12e3c3e1 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5a18d3ed pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xde473ed3 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x59d2c472 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7392be64 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa6ba4254 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd1780b10 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe066d333 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x84b00dbc s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x897d9524 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 0xf855e9ad s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x042610ea st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09a2972f ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x19186f56 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4211ebdd ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4b3b7278 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x705407be ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95df2777 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa8552d25 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9003a3d st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe930a64e ndlc_open -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0eebea25 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x15f3ffba st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x492139c7 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x503ea4fa st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51018a4e st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5fe332bd st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x762a5aae st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa819989f st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac3b70c9 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2ea2e71 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc922d099 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5fbe3db st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdeff6865 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf575047 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe40bba74 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3a9e41b st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3f91612 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc86c77e st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/ntb/ntb 0x11f2e7de ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x12f669e7 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x21e243ce ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2717cf9f ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x3d162a67 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x3db50300 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x41df08cd ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x44a9d552 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x56745f23 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x6a0c3cb9 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x6ef573ea ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x721906f8 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x73223693 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb0c3c3dc ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xb8a646ab ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xb9246222 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xbb91c8f7 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xbedf85d1 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xca0cdbec ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xf18cfee5 __ntb_register_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x35b46347 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3c85b302 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0d695b43 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x11abe951 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x21a15ed8 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x3165214d parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x3ce09ff6 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x4020ba39 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x4903452a parport_wait_event +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2cbd3f35 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e7dda57 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7739dea1 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb34b7f1a ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc4a804c ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc236f0c8 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xced9ca15 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd90309cf ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe8cb866a st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfeecc009 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06f59050 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x151b84aa st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e7ecb20 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x484aa06a st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x528d4523 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5710e6af st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6318b091 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6cd82d09 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x768b0a13 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76b34a49 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9082326a st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa42450de st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa551a73f st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc903f181 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcf0a9469 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xddcca073 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xec8be650 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfe9a8323 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x072c028a ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0bb5f6ec __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x0bd96143 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x106ca7aa ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x241abd42 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x26e7fc16 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x283c0746 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4e532e06 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x4fb3db28 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7267a817 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x7d31f11d ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x8dcc2b73 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x94b1de53 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x9dd06be7 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa3c35f42 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xd7e182fa ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe191c813 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xed08c4f0 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf6c0e9f6 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xf763e8fa ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x6a4a5500 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf1de944b nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x01992011 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2407f96c parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x26776ac4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x27e1e867 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x3cacaebf __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x3e0bb0e5 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4cfa5c5a parport_put_port EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4fe69df7 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x5066837e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x512d3d8a parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x541dcc62 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x5a3e72df parport_release EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5e5e1e72 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x6080c455 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x6689e928 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x6d35cb9c parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x6d5242cf parport_read -EXPORT_SYMBOL drivers/parport/parport 0x77c4f202 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x7c70aa80 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x9007736f parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x95ec2372 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xa0d75b69 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xa7c99934 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xafcd9884 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb0a70d03 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xb300e542 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xb5908417 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xbc6a8e6d parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xdb7215bb __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xdc9de39b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xee8e3ce4 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xf2043797 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xf5015a12 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xfa48a988 parport_put_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x0c0a6fe7 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x5e87e76e parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x013097f7 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1586bdf9 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x16347dd8 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x195dfb69 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x236b1d07 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x23dc057d pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x34051724 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4ecfe4bc pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x554d9144 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78ddad97 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x841a3dc5 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9548600c pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa0e81399 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa10ac28a pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8baba3e pcmcia_disable_device +EXPORT_SYMBOL drivers/parport/parport 0x625243de parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x664fd571 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x7b47de66 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x83ba07b3 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x85c5a307 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xa29eefff parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xa84c5662 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xaaa6e2d1 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xaecc81db parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xb34a6785 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb7064a00 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xb8eb40a2 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb9dc5995 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xbc8f4155 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xd5cf03bf parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xdb20236d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xde9858d4 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xe6b5ade0 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xf0fd8223 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf382e70c parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xf8862b48 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport_pc 0x96b2a96f parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xe494ed92 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0d25a90b pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1b413d7e pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x37d6b010 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x505a1ad7 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x563ae24b pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5c698e5c pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x607e1691 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6ee63dee pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8480a532 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8cb43fa0 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8ea6f7f6 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa44076d9 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xafd6fdd6 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb9eecff3 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb9fb0405 pcmcia_loop_config EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xde88a457 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe66f9b11 pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe7b9f444 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x03baef6d pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x10dfe789 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1958866a pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc56a40d5 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd30402f5 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6012d42 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0be9afd2 pcmcia_register_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4811307a pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x55a27e65 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x79ee4875 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa750df1 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc82651a2 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x385d8f95 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x50bf4d8f pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x749c50f2 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb7025238 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xba82363e pcmcia_reset_card EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdb084f8d pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf1138cb9 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe3f26c72 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe8054817 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf039afa4 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf5198741 pcmcia_put_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe84c5112 pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf7e3e1e4 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2a2be8c2 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x42d303df cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x77b79263 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa01eb1e0 cros_ec_resume +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xc1c99b9b pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xcbdb1d14 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2d2d50e9 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x814480a4 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa37be5a0 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc4017121 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 0xef5525b8 __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0xfcf61493 wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x0a34409d rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xb972cbd0 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1a697948 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f6b1161 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30d9af29 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x47c66106 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x61552485 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6c08f83a rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x70163b60 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8afd073f rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x91b0f6c9 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x998ea4aa rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9c431d3d rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc92c60d4 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc9d7720f rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xccb709ea rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf10f57b __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdcc14e77 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xebf324ab rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed78dfa3 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf2ce18b7 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x277dd6d6 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x653091be ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x1958ba17 NCR_700_release +EXPORT_SYMBOL drivers/platform/x86/wmi 0x772e8f67 __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0xe7c03c44 wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x8379be33 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xb85027af rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0b4ae4fa rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0daba778 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x14fb6f8f rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x44502c04 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4b14ac8a rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4ed055ce rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x544e2c60 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6405cd29 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6fcf1a30 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7a731c09 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x883ee2af rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8ba87b95 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x90c0d657 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb9f9a1b9 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5063484 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd7eeacf7 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdd7d02e0 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe2dd6111 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xead7661f __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xbfbc9b8d rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xe04de4cf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x360572c3 NCR_700_release EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x6b71f442 NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x35759ef8 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/53c700 0x7f51b568 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x18698ae1 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3c16da80 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x41e51207 scsi_esp_template EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5255a3a5 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x93854493 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xadc8ed3d scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x129411ca fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25231f82 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f51e786 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x403c5056 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a89ad03 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4e59bbe9 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5d67d8b4 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c54acb1 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d590e53 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdb3f9ee5 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeb10a83f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9ea09909 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00f5f105 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x081a6dc8 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1d711753 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25cb1b02 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2fef053a fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x512eec43 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x94792ff7 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa5100859 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc1fe14a7 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf45f16bc fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff201f82 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00ac9370 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x070d25cc fc_seq_assign EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x095c8ba4 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13567c82 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17c4c982 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09dcea54 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae32b02 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b9d2491 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13b25491 fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1801077a fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e8dac0b fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f7dbd49 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bda6925 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b60f9e fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27597f27 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2790253e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fd05759 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3100c786 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31114f81 fc_rport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35299dd6 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38a39b8c fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38b80b43 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d99cb8a fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e682d2e fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x420302ab fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x352cf81d fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38453563 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3be37613 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41d7e34b fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423f8c46 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44224233 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44510d40 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44e94b0d fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4590dbe9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45f43ea2 fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce0da4e fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51ebad11 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52482c70 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57e3078b fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58265fd4 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x610306f6 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50841a60 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56a6d205 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ea6aaa8 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f4a52eb fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e89388 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x673745ce fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c894caa fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70a4e26b fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x783b77f0 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67402055 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b864e8d fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b8830c9 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cecf24a fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f0421dc fc_exch_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80cef0a5 fc_set_rport_loss_tmo EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x842710d2 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x880a2cf2 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89e93345 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c740a98 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93aa0bf6 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9512d59a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84fc21fb fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b6491fa fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96624f4e fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e0b7a96 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0777fc4 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0a994a4 fc_fabric_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa2795f5 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad7d6de2 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3484c1c fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4454f85 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5de758e fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa784ef06 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaebf892d fc_elsct_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc152a548 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1ca62f5 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc7a88fb fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc7ff4c8 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd7487fa fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0127f96 fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc30d3be7 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc5116bf fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc604992 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7eaf07a fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd003d4d fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcff7bd81 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3308eff fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd51c2eb1 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8748162 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe19b8399 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe48bbba1 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd24101ea fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda4aaf90 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2ad619b fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4733e89 fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec0cca10 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef5c9ce3 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf00a31d6 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec593dcc fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2950d48 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc4b2b2d fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff34f654 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff789a67 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x29793753 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb5d1d1f fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd21a045 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfed1f679 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfff7ced8 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x217ce1b2 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x249ee614 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5ec04f70 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x644e66fd sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9a907c2b sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x597331e0 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x69dcb4b1 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8e83840a 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 0x1397d07a qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x16df535e qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2d405e17 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2e7ab451 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3acf11ba qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x41147815 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x72acbbaf qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x77a25679 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5e0a0fb qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd16c7809 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd5d11a84 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf8a14258 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x076eeb79 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1d3b6724 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xe200f116 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x073f94dd qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1030dbf8 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ffa0041 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x29c888c5 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x372c1798 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x57b53b4b qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8798cb33 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9594e2ea qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x95c0cec2 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb3a2212f qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc7ea5bb6 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb01ba13 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x176ba0ea qlogicfas408_biosparam EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7abc5d4a qlogicfas408_host_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7b349a53 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x987e4d2d qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb01aaa40 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6662a85e qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb431f96b qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd069a956 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe20a04cf qlogicfas408_abort EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x4b5ea71a raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x508ff575 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xe48fe133 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x173283a7 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x206bed26 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2b849efb fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf5fc10e3 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/raid_class 0x169b3ec8 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x5bc62255 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xe1559cfd raid_component_add EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42dbb7c9 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x67711163 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7aebf3df fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x82085f7c fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xac05f121 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb30f81bd fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf09def4 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbfa46c04 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc790e24a fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd2308f6d fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd48252cb fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde303a3d fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xed53a863 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb1f980d scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00d02387 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d4d26e7 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23e26420 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x363cf2cb sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x429a47ce sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50d9a300 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5bb6f36c sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69b90ec2 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69c7fb25 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d602163 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x72835ed0 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76e5bec8 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e7879ab sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9fde30df sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa90c56a1 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd35a0578 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd423f8e7 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd42e4678 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd54b5544 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6af7f19 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdca5062c scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1816733 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2bba36d sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7b1da56 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeac980e5 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedae77e5 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6541176 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf7b856f9 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9d2b93a sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x12a648de spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3418263a spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3cc396d8 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x478eb07c fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d8c7d35 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x517386e2 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6210a613 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x66db67cd fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68b5fab7 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x748a8839 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b779070 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x848322f5 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8f45bae9 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa28839cc fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa86e4176 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf67f3bb fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc41cfafe fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd07411b6 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd8458046 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0652985a sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0775cd57 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1057c945 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x151f64ee sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20d2dfdc scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37e7e648 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3996a377 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a303086 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ebff72a sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3fd54a15 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5885367f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61163b63 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6459e542 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70ca8bb0 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x727f3d65 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7935db16 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84c61663 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89232948 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8931f602 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8b3c62b4 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c532df0 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c8986bd sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cd53027 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa56086fc sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4ab75f9 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb72bce54 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3740dd7 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe74ede25 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec0aadea sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x03ac7607 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x04f99de9 spi_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6259e861 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x92624e8b spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf37c95fb spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0823ed16 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x243a4bd0 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4a363c73 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc6a696fa spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe0b90c0c spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3fcbfc04 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4bd95420 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb861e55a srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf6def786 srp_rport_get -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1594e726 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x168bb666 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x275aa557 qmi_send_response +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5a95f149 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc5457b6b srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd6325a5d srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe0968fb7 srp_start_tl_fail_timers EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x31428882 qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x57902e55 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5dfeaa29 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ea76ff1 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x58ae58e1 qmi_send_request EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8abd9899 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x92b73f3d qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb6b804f2 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xddb30068 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe08d30b2 qmi_handle_init -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x04f9b132 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c468f57 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e7dfbe3 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f3a6727 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x13a92e9f sdw_stream_add_slave +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x661bced2 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x70b8ccd6 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x740e8a4a qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x75eab4b8 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa8b158c8 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb317a75f qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe1d94193 qmi_send_indication +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e2c4685 sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x180a4fe7 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d7c108b sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x183ba6c1 sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x250c01bd sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2692c51e sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x32a5b04c sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x35735cb4 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37a80557 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2ed827f7 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x375a6649 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3848236f sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e2c82f5 sdw_show_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x45ec8a12 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c30e854 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x466a3b0d sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60212bd7 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e0056f4 sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6a626577 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e8edf19 sdw_extract_slave_id 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 0x747630fa sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b3d1797 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8d23c94c sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9319db1f sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7a985d5f sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7af46f12 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80a78cef sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8a8c68bc sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x90e1b947 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9918339a sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f1ebc6c sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaeb1964f sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb637f29a sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa05435ad sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa24eac83 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab1a6189 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xad4b9baf sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb2cbec05 sdw_update 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 0xc9211ba9 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbf490488 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2b91fd4 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc5437c66 sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe44dd4b7 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdf9975fe sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe0b36d59 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe45c50c6 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe77ce69c sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf6abc043 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0c182331 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1dd4c9a5 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2590de30 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfd111bd3 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1fe595f2 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2326b470 cdns_reset_page_addr EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x35566a8c cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3751a93e sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x58cd8112 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6d43bbe0 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6d88b30d sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6eb12516 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8510dc08 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x87396f16 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8f461517 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x98738509 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9caa3443 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd9ff19bf cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf5b28e80 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf6d5e93e sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x1a37454b sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x144f598a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1b976978 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x3c997c0d ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x4d7a893a ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x5195dd21 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x53341bec ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x6cf993ce ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7c3c3acd ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x84ea1080 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xa04c1819 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xa5420ed9 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xb21c2dd9 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xb7811795 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xbc9e4059 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xc47a72a3 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xc65b812b ssb_pcihost_register +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x438926f0 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5521d456 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x598230fd sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x72687ae6 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8d114ceb sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x904222a3 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x985e917f cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xab1af3b7 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaccc4c52 cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbf54e313 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcbfba98d sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcd300331 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcde63d14 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd13bc374 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdfca92fb cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xf0c6b72d sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x0156e248 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x14af00a7 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x1c235e9b ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x2b82fe03 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x597ae70b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6d1d8915 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x793fcdff ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x8acd2efb __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8ea5727e ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc472714e ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc8a1ca4c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xcaf186c4 ssb_set_devtypedata EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcc26f208 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xcf5a8f2e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xcfa58a8f ssb_device_enable EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xef431349 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xf3b1427e ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xfc88cfc6 ssb_bus_powerup -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0584a61d fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x231f3567 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x34f8769a fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48a0b017 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54ced6e1 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a645569 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fa093c6 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fdf508b fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62174775 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x645078d2 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b8e1957 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c76da81 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x839ad610 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8781db86 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92e0245d fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x98af215f fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaeb00635 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7b99468 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbcac718b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc36353b7 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4eca530 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4e827fd fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf0ed7ae fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf0c29913 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3a0b3cd fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2c1e98a5 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4d37db79 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5ee8a7a8 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf2177eda adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x666b284c ade7854_probe -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x001145d8 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1147811d free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11b69899 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c40ac6e rtllib_wx_set_encode +EXPORT_SYMBOL drivers/ssb/ssb 0xe164d1e6 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xe86847c1 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xf25954c6 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf5a0dc68 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xf6832288 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xfd1325f7 ssb_device_disable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0de7472e fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17c112ad fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b9da453 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b16b7f1 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x32afc57e fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x33f8545c fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47e36f66 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5222743b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ada3e3b fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x63f73627 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78bcdba0 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7991e742 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x892340e5 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x919315c6 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9efd2794 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3b54eb0 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf499cbe fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfbec9ed fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd317a425 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb97d664 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0f7225b fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8d1cd23 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5bea9f2 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5f1e9d8 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9858204 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x13eb3134 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc35986e3 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xcfd5eaa8 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x66d1638b adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x3c26ec0c ade7854_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d7646e4 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f36c906 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bbf5878 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f231c1a rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20c89716 rtllib_wx_get_rts EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2448c770 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29cfb4fe rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b9f0970 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cbd5d29 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3216d5db rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x373cad04 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42ec9dae rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43dbb9d5 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x486343f1 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ac7b1b2 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x663d4814 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75fc9ce1 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b07187a rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b0be22c rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e6ff0e0 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e8fe4cc rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84a9bcd1 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90719eaf rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91a2365e dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x949a307c rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa361edbe RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4de92e4 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7033e44 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8819f60 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8d1ce16 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaefc5214 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb313fb02 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb673ed87 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc30406df rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc37b1a9c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc722d865 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc72915a6 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc938e35 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd77d5165 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd830d252 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8317cc2 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8545f0a rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde6e9f6d rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x249e28a2 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x284d70e5 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ad029ee HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x314e04fc RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31955b0b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x328bf036 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34305244 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fd52c76 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fec5188 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40d02566 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41c3a591 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44204139 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45c61c69 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5096d698 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52468c0e rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x524c40a4 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57857b49 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c7ea558 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x636e41df rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x644d6169 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fd21b0c rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x825b8c07 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x855949f1 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b175c87 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c2279f2 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x921d7ff9 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95437c39 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b00ac0b rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3c04686 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa41304a3 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa60dfa93 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8e2f601 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb66d2143 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5f40dc6 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc880b58e rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfe9ab20 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0b4b919 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7219c1a rtllib_reset_queue EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1621101 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1d11a57 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec15e92a rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf38dd42e rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7667afd rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc156095 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc5ad58f rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08185126 ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0847fd03 ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0abf519a ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cbc1037 ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e4edd69 ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22dbc717 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdffc7e3c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb2c19a5 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf14a392d rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1a58fe3 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf424bbc2 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff0a4e50 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05521460 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07121360 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08db8514 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1252da04 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1653c5d6 ieee80211_wx_set_mlme EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x257d75a9 ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2af54da1 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b5257c2 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45ed41cd ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x477b070d ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47f70212 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55d91e23 ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56283734 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24a12a54 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x251b7d1e ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28d6918d ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d363cde rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x346e31fe ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35c067a4 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a1e72f7 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a5213a1 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f84ef30 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x441fb76c ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x467bb26d ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x487a3e21 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bd62118 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5416520d ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6100cd30 dot11d_update_country_ie EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68ad3e9b ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b500daa dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e446c49 ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e71582a dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72c65afa ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7939820f ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a691778 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7aa617a3 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x811c8673 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81d2d1c2 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8384b37e ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86c43807 ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x894e8f34 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93f8edec ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94d728b9 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98d108ff ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x995113e1 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a3efee3 ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ed4dfa9 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2854fc7 ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa653a972 ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab4aa975 ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacab1686 ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaed79bb8 ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb15a67f0 ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3518b2b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6946c1f rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8add23d dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc90460ee ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9fff7e5 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6a155bd ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb184849 ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde58c330 ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe25219bb ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x704a30de ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70c67cb2 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x734e2cf6 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ac1e756 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x852c9df1 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x862d0f9d is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b904dde ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9be55ba7 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d791244 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f822ca1 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0d97301 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2e7f6e4 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb600b3b8 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7b44ae3 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8313dcc ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb951e5f5 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9a93cfb ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9b0618d dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd93ef72 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5e57756 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8e55012 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcecb8015 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd090761b ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd38dc65e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd54ffe03 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb3d9a4d ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcff7e55 to_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe53ec1c7 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefb1cd1f ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf64b608f ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf80b360a ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa19b4f0 ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x038ed590 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05925fb7 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08218580 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21287393 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x216ab92c iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d7b7a2e iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fc20a93 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44fd69d3 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b1f2cc8 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52c26838 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5402c7b3 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x583ac6bb iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59087b73 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59a1c667 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e0867ec iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6252954f iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a1cc569 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a9dba34 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72f7f7eb iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73d28c01 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78c014aa iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86cccf07 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8afb6753 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cb897d9 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x957dd61b iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x993ac69a iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e7cd73b iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa00c4cc7 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6785383 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae7f8211 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb83541e0 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc125a3b9 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5373f4c iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc5d07aaa __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcce2c10b iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd2e340e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd13e41c1 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5707a02 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8006f30 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec3627f7 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecfd461e iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xedf40f31 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1b6d971 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3c48d73 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe64c5282 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9a19de2 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xede4e582 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeffdb514 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6ebaf79 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x018fcd17 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x027d590c iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d0e793e iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x200010ad iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22bd7e3d iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b29299a iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2da7f39b iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed9ad54 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30bf7c38 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4bab6981 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c6d46cd iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50aa900b iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50ac0fdd iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52e0c597 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55023a8d iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b0d79e1 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6192a60f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b6b02f7 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x813ab73a iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a8a434e iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8aac2129 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cf66eb1 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b834e54 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3bc91d2 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa427477f iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa515742f iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaadf891b iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab64e98b iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac54b3c8 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xacd0487d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb275c85c iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb41ba448 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbacc867b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb5303f5 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc261ec95 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6c6bf40 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf0c01b4 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4d9e596 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7879603 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe506356d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7a92de5 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeca44557 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed256d7f iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed55c944 iscsit_allocate_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf86f4595 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa500f55 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9161b7f __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/target_core_mod 0x04dd9cba target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x065cc81c target_complete_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x106560fd sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b5b6216 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c30e911 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ee6c9b1 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x13f2dcb0 target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1dd0757d transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x220f6dba passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x22eaf01e sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x25ddc92a target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x27a912d6 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x300d3b7f transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x32708b71 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x3510e770 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x35bd2449 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x399e8814 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1631f6ff core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x16d477fe transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e315193 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x251837bc transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2521e3ea target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x2aaaf1d3 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c5d1e9c spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e115605 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x34daba13 core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3cb688c0 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d87b13d transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x40126f0c target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x43d3ab1e transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x43f9e536 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x451da079 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x456d3d58 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x49134192 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b62c7d9 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c08bf24 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c3ebde9 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d38da81 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e9a71c6 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x508d6489 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x5244bac1 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x54d56505 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x55f03af6 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cebe50a transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e395956 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x44458931 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x45631823 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a25183c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x50c0e514 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x518ba222 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x532971bb target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x53d249d4 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x56b6970d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5837742e transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a534894 transport_deregister_session_configfs EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x666732e1 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a5b5451 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x7661aaad core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x76f8693d target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x78a1defd target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x809563a7 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x80dfb1e4 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x818b35d2 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b03b859 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x9858a39d spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x992b0cba sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x9930b5b4 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cb2d9f9 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cd00cad sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d73c123 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9fc31a33 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0c9482e target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d842fe target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xacee83a1 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bfe84fa core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x5da76815 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x603bdba3 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x621162cc spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x67824e72 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x6864d939 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f51804b sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x704797fb transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x748d0799 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7746e95c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b96d466 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f3094d1 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x804557b5 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x80bec78a target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a4bef8e target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f040f51 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b625af7 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cea7690 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d2fb786 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f871403 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1f22c5e core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5061038 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6851780 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xaac3ea9e passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb18c3b9b target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb29e59d4 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xb53dc8a2 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xb956faa5 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3a4a38 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7611257 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9ad6aaa sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xca7a99ba core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb01684d transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xcebd24aa core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0af04c0 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd374b567 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd571e5c4 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5bb129f target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xd79c048a passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc60f619 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe222df77 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3faa7c7 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xe438b46e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8d125c3 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf11d7b08 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf134fb4a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb236072c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9e541b1 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xba0b10ca target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xbee71a7a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc156d914 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2d34411 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2eddf71 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc36c0216 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3b238af target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6d18648 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc798551 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3bd7fa0 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf7bd5cf transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2017dd8 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xea904f83 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xec03fe05 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xec673b3d sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xedabb82f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf03a8fb0 transport_alloc_session_tags EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf75fa3e2 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfad3e665 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb19759e transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4401998 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb29b963 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc65b161 transport_alloc_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 0x02959c41 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x205a6edc ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2f778420 ufshcd_shutdown -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6c25e58f ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6ede3847 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x824053a3 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe4760974 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xfc60eb12 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x2449cd88 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xf3803006 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x4d8d1ffa ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xde10e605 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x6a17f600 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x8fddd11c usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x25a95d04 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x125cff89 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28f84ce2 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2c0bec56 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3284c8fa usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x603b8532 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x65aef6de usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9ec497c7 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa0f89929 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd28b551d usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe37480de usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9d232f2 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1fb21187 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd11fd275 usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0x1b17ce4a vdpa_set_status -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5940069c mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x80b21c3b mdev_register_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa38aa589 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xaed906ea mdev_register_driver -EXPORT_SYMBOL drivers/vfio/vfio 0x01cadc84 vfio_pin_pages +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x38e95894 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4b864515 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x64e4cbb3 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x72cc2c4b ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8315425a ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x90003de4 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xedf96072 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xfb9b5831 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x55a3daa0 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x748c3f32 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x9b539703 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xdaf4c398 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x4d8934fc usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb6bf1b41 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x6c06716f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1877c38e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x439dd3ed usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x451917fc usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x686a7be2 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82746521 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x937b3f68 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9816c6fe usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb569164b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbe58aa99 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdf0095e4 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe2881146 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x21488ed0 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7caefab0 usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x91599a47 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3748865d mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x474ebb53 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5a6948de mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x924d6199 mdev_register_driver EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x54a6e292 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x36954fdc vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x77c87414 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x89d016b6 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xe80994b1 vfio_dma_rw -EXPORT_SYMBOL drivers/vhost/vhost 0xc0ea5cca vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xfe7abb34 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x22121956 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xb1e0d255 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 @@ -4824,151 +4824,151 @@ 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 0x04e92688 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5abd98c1 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8e5a5511 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x95d1e176 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x33e4e491 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7449aca4 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb3a8b5b8 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb5da0b2d lcd_device_register EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x18676412 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x461b965d svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2e966063 svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7299e32c svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x77ee957e svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x81507736 svga_tilefill 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 0x96f70bd8 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xabfa70a0 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa592a550 svga_get_tilemax 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 0xd58d5013 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd9d7c00e svga_settile 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 0xffb141ab svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xdd81aa80 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x6a9a9a27 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x35e55f65 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0378f53c cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xec46ccc4 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xff861898 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x2911f594 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x9ea0cbde sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x4b5a5346 sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xfde49ae6 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x3bfcecda mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x50afcc53 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe410c457 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xef88d0a2 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x424c7819 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x603bc600 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x665d51a3 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x699ac0ff matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x5b9c7819 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd978b0e0 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5c745727 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x77f2b94c matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa89aebcb matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd7ece82c matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x25ddf757 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9ea2742d matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1585f9eb matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1fab5c28 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x20d1a3f3 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xfeef8584 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6ac1ba05 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7f4199e7 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9bde13ad matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x67157100 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6b27d13f matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb0ffafe4 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xfcc5f54c DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfad68d18 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x58ada11b matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2a60b1c2 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x41405426 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x86d454d1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd5d26fd9 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x874cb499 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb1e78d8e matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc8b9a77e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x477d667e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x50abe768 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8e1cbb4e matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xca1faef0 matroxfb_vgaHWinit EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfc195481 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xde54c582 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/virt/vboxguest/vboxguest 0x1357886f vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x22ce514f vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x25a1b870 vbg_hgcm_call EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x29ba4b3f vbg_get_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x40b55450 vbg_hgcm_disconnect 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 0x75a6a0b6 vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x7da32bbe vbg_get_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xee473825 vbg_put_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xf05193ab vbg_hgcm_connect -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7c3079fe virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x94562077 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9c44f561 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf3510c36 virtio_dma_buf_export -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa45656bc w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc1d792a5 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x2dd35b1f w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x74a2e0bf w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x440bb9ad w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x6874a190 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xb9d55bd5 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xbae9da05 w1_remove_master_device +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xdd5813e2 vbg_hgcm_connect +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x069395d4 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x337d913a virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb2ce8411 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe4048ee9 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9aad8c74 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfa6a0d3b w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x006a1bc7 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0a8475aa w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0xb04091ba w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb7e2508e w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc2bb40a7 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc34ea388 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 0x068b2447 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x09c09ff8 fscache_withdraw_volume -EXPORT_SYMBOL fs/fscache/fscache 0x0f3a7c93 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x0f5131b8 fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0x1932a1ce __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x06997de5 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x07e48b7c __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x08668b71 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x08dff195 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x15446ccb fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x199c8d95 fscache_put_cookie EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1cb457f5 __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1d6c552c __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0x212d1d8e fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1a7a0116 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1fdabda0 fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x32c68e5c __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3a0177a9 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2ffe90c3 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x36f1c4cd fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x3e392ffe fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space -EXPORT_SYMBOL fs/fscache/fscache 0x455cfc09 __tracepoint_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates -EXPORT_SYMBOL fs/fscache/fscache 0x4d5a376e fscache_caching_failed -EXPORT_SYMBOL fs/fscache/fscache 0x4f61b38a fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x52047150 fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0x53ede305 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x50e17a27 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x5480a467 __fscache_use_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 0x5b85ef6d fscache_end_cookie_access -EXPORT_SYMBOL fs/fscache/fscache 0x5c808040 __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6e6ec775 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0x709e02da fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x5982b47c fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x7509067f __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7705f689 __SCK__tp_func_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7bb8a400 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7bc34585 __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x815edf61 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x85b8595d __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x86bf1727 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x874f16ed fscache_wait_for_operation EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x8cab4b1a __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x90f3cb18 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x92720d1e __fscache_begin_write_operation EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa8b6e9a1 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xa2613dfc __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xa5cf10c7 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0xac0b4d90 __SCK__tp_func_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb11826ec fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb441f9db fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xbbc65852 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaf9ca55d __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb089780e fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xb4af37c9 __fscache_acquire_volume EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc0ba20a8 fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc5a37f68 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xbe88dc2d __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc814a460 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xca6b2338 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd2f2adfa __fscache_unuse_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd595254c __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd1add145 __SCK__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xde9de96b fscache_relinquish_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe2133e00 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe2cfccf6 fscache_wait_for_operation -EXPORT_SYMBOL fs/fscache/fscache 0xfeca2aa9 fscache_withdraw_cache -EXPORT_SYMBOL fs/netfs/netfs 0x44c59e25 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x4527e3ab netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x4c0fccea netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xa577515a netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0xc1ce7ab7 netfs_stats_show +EXPORT_SYMBOL fs/fscache/fscache 0xe1bc3c86 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfbbde339 __fscache_begin_read_operation +EXPORT_SYMBOL fs/netfs/netfs 0x90f737a3 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xa20849b2 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xc24c13d5 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xf23cc814 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xfe2815b6 netfs_read_folio EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x181732c9 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x24ad8de5 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6e0ca0bf qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd822d321 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xdd758f87 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xfd67fc65 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x00608591 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x11811fd2 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x977bde82 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xc8288392 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe1c8effc qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe1dd1f17 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 @@ -4997,14 +4997,14 @@ 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 0x28ae9df5 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x6777831c lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x2dac0f9f 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 0xbf18a077 lc_reset EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find +EXPORT_SYMBOL lib/lru_cache 0xd3c60ffc lc_seq_dump_details 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 @@ -5044,851 +5044,851 @@ 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 0x3d016011 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6c8b53bd lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7bd5af40 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa79497b9 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xaad796da lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xff99b8a5 lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x3b98e375 register_8022_client -EXPORT_SYMBOL net/802/p8022 0x67e4591c unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x3342632e register_snap_client -EXPORT_SYMBOL net/802/psnap 0xee452215 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x05105425 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x0539869f p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x11248cdf __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x145f009e v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x1536b51b p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x15b9820f p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x24828777 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x26330b1b p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x27b7f8ca p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2ecef4e5 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x32a4d397 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x3a259920 p9_client_mknod_dotl +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0e240946 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1b99a267 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x21d3271e lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x67d43055 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9d017e5f lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb9cafad2 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x3a1a34db register_8022_client +EXPORT_SYMBOL net/802/p8022 0x642b8503 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x1eac1fdb unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x8cf93738 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x04a9895e p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x0afe6d9d p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x0c9a16a4 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x0da30ffd p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x0f5cd3e5 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x200e0c8b p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x21343c95 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x22ddc63b v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2d1d7fba p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3091f250 v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e0d21bd do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0x3f52173f p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x479ba0ea p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x47e10d55 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x4b212d19 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x4445d98d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x48124a46 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x49e3bbee p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4c269195 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x50f05d19 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x5984d725 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x5c382d5a p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x5d6f48d5 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x600f89f9 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x6100096c p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x68b7c530 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x69a00032 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6ed5a16d p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x75c5a2a4 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x5d605fa6 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x5d9f675b p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x5fa35e08 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x61cfb718 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x633ff4c2 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x6355627b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x6a0993d8 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x6ff862f4 p9_client_stat EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x779df3fc p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x7929d015 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x88156745 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x8c93a3f3 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8d074cbc p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x768a696f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7986a6bc __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x79b119f8 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7c3b8796 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8421df3b do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x8effe010 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x9490c64b v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x951e7be1 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x952489b3 p9_client_rename EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa353b265 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xae921c47 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x96a21979 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x99bcf27e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x9a62a4a1 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xa3bbf214 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xa673b471 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xaf016b17 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xb0b96b9c p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb0c9f23f p9_client_setattr EXPORT_SYMBOL net/9p/9pnet 0xb798a888 __SCT__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xbd349a38 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xc5d62b88 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xc948b8b7 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xca96595b p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xcfc8b21c p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xbbe72270 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xbdaad5e6 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xcbe89529 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd14beedb p9_release_pages EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd878646f p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xe2666dff p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd6fd73fb p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd8c82e90 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe27e1e84 p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe8b24181 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xecb5363a p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xf11e839b do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0xfd8299e3 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xff585089 p9_client_fcreate -EXPORT_SYMBOL net/appletalk/appletalk 0x641bbd01 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x78d72836 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xb20a0432 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xb668b17b alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x02533c1c atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x0e88e220 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x1d81ef7b atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x29df5c51 atm_init_aal5 +EXPORT_SYMBOL net/9p/9pnet 0xeafb7f64 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf46e75c0 p9_client_readdir +EXPORT_SYMBOL net/appletalk/appletalk 0x434ae379 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xc5f1025b alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xc887d004 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xcc21c110 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x0a70a0a0 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x0b698686 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x160405fc atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x24875fa1 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x30da5967 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x37943c0e atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x3fcc4105 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x3df71638 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x3e66c8e1 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 0x50726f6b deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x6524c911 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x8483b191 atm_charge +EXPORT_SYMBOL net/atm/atm 0x44da1475 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5e014989 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x6003ca28 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x639b3e15 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa2450b36 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xa4fff993 atm_charge EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb8cf744a atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xc8cba2d8 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xbee99f9f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xea6ebeac vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x02f4b1a3 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 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4c7ccc9d ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8ebbb355 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x663eec3e ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x84415a98 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x90fcd8d4 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x934e7fec ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xb95187d7 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x93433f04 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x9493a2f6 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xac9c582c ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc945d02d ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xce64ccfd ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd5619e46 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x071403a3 bt_sock_unlink +EXPORT_SYMBOL net/ax25/ax25 0xf8082ac1 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xff654238 ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01d5969e hci_resume_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x08e9fd8d bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a105266 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a784b47 __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0daf2614 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10da9ce1 __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x183b3b74 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ce6d3a2 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08df2e61 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x091c77b5 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16daa660 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fb73c70 bt_sock_wait_ready EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a382de7 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e61c64b bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x323fb9d6 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35dee1d9 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x361621f9 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x367513e7 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x38e728a4 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bebb298 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x497b43fb hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a87150c hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aebdf89 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4baf6071 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cbe9881 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5015b73b bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d5f50cd hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ec49518 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x74db0d9b bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a498dfc __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30fde095 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33af744f hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a3debed bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x45b0e646 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x475b23a8 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4963be13 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52cd14f5 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56284873 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5839f119 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c94c736 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5daf2638 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x609c8184 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62eea133 hci_unregister_dev 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 0x7cb91791 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8628d521 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88136542 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a06813c hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8af996d5 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83a63373 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8543bb62 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8afb3940 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ba2265f __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8beedcf0 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8eb41f37 hci_suspend_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e7acea5 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa27704e9 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4809f06 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8b01cec hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa6df827 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a980fb hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb483fcdc hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5847f3b hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb962a018 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9a1274a l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9ee3b27 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbce5003a hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc290c2e2 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc57d60b7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc644a4af l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6b6a121 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x950fa12c hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96163181 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96714f96 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x967a4510 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x978a5939 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98330ad4 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa101a537 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa15fe7ab hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6317ac8 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafc906d3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb138f897 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7a603b8 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb88dabca hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9ccf69a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba2a55a0 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbda42eaf hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1496e28 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1be4e3f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd47bda6b hci_recv_diag EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8427503 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd79abce7 hci_cmd_sync_queue EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbb3ea91 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd1e30f6 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xff6ca553 bt_procfs_init -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x44eac47c ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5af91275 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8ae57723 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaf0b22c0 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc559e177 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc55ceda4 ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x013ac1b6 caif_enroll_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8c9c921 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedd0267b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeef58b40 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8ab4942 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb226da8 bt_sock_recvmsg +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1db88fd3 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x386f0540 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8c90cd41 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa55968b5 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdfdebd74 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe5b78275 ebt_unregister_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3c76a9f9 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x3fd39bd5 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 0x5d27bcec get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x5dec4b50 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6eb231e0 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x81e7e999 caif_connect_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 0xb59173cd caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x1449389a can_rx_unregister -EXPORT_SYMBOL net/can/can 0x14944c13 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x5510ebe2 can_proto_register -EXPORT_SYMBOL net/can/can 0x73d304b6 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x9ab4e379 can_send -EXPORT_SYMBOL net/can/can 0xb57d4320 can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x033f82c4 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/caif/caif 0xbf4b4b9e caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xe98380aa get_cfcnfg +EXPORT_SYMBOL net/can/can 0x1e08f3ee can_rx_unregister +EXPORT_SYMBOL net/can/can 0x8684b0cd can_rx_register +EXPORT_SYMBOL net/can/can 0x8e6901d3 can_proto_register +EXPORT_SYMBOL net/can/can 0x9eec1ab6 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xe3c5f773 can_send +EXPORT_SYMBOL net/can/can 0xeead1f28 can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x01918237 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x03e8121c ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x048a551d ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x07eadf4b ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x090accc8 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x09b182e4 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x0c1294f0 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x0c8dbe7c ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x0db7a10f osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x103357e9 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x06c60647 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x07162635 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x08b97464 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x0975cc8a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0a345ac2 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0c83a058 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x15a472a9 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1511c8fd osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x1523f769 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x16e40a2e ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1712a47c osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x17b1283a ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x1b3278ee ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x202193bf ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x1bc7825d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x1c79319a ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1c94da33 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x1f5a7ba0 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x22a7c58e ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x22be86b6 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x24d68a3d ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2a8ca134 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x23e9944c ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x2507d713 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x27523bbf ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x2a367398 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x30e4fa6c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2ae5b2c3 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x2ceb7d59 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x2e337d78 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x30dbefe4 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x36274bc4 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x36f71903 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3be268e3 ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3e1bbc73 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x3d261a3a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x3d6bef39 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42b6b67a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x426a2267 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x4564db45 ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x476ba534 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x4800161f ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x4842e570 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x4add4e41 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x480f8570 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x4942638e osd_req_op_cls_request_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4d2e15e0 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4daf8d7f osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x4f328ed5 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x4cabe06a ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x52d92d86 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x52fdd2aa ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59d5317f ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d2eae37 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x6250f732 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x6246ec25 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x62b20b04 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63642ca3 ceph_copy_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66573a9a ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x6a19b0d4 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x66d89fa0 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x68d56a86 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x690edd2e ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c21b100 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x6e4d3b8d ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x7079a028 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x71f02af1 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x79c9e133 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x79f1dae0 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7b40264d __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7f19c576 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x7ffa156d ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x839c48a4 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x84b19791 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x71e8d0df ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x73cbaec0 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x780e6d34 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x799e2989 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7aa4940d ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7d976be7 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7ea2408c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7f397b6c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x7f405b41 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x82441d1a ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x84b5d494 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x8575d89a ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x88769c73 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x8a898c01 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x8e172f34 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x8fde8d75 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x90ecae96 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x88d642f8 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x8e8f3a0b ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x91c5b8cc osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x92be4fd0 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x955ec288 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x958929da ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x9685d68e ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x93fb94a8 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x9873340b ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9aefbd18 ceph_auth_verify_authorizer_reply 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 0x9cb3b475 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x9ecb662c ceph_monc_get_version 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 0xa1e3e210 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa32e4a26 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0xa52b879a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa3b0fe34 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xa4ac554e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa55f4b2f osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa5e85d81 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa7595d35 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xaa45dfc1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xacbf7532 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaea6a417 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xaf117833 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xae5f3173 ceph_auth_is_authenticated EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb4b25a18 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb161e08a ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xb2c559c8 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb63868e6 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb74cca68 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xb75db3b7 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xb99684a6 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xb9b7e61c ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb786fbe2 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb90b458a ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb9d4d13d ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xbaf86ed8 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbb6b8436 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xbc9d7e50 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd37cc51 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc1040857 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbe8ed78e ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xc2a0eaab ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc4911c08 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xc7af84dc ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xc8077d45 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xc4d8cc5c osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc6a4f434 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xc9b2d48f ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcb7ca996 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xcbe4b928 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xcddf6e67 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xd0394a4b ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xca89fb03 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xd3fde868 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4e4f420 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd4fc7eb8 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xd54b710f osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xd761bff8 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd9628c9b ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xda2fc49a ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xdae9f348 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xdb6244ef ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xdca0b319 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xd56b6fe1 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd6706f50 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xd7e140ee ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xd854c28c ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd9f4b18a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xdc36dd07 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe00d366c ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xe0fbf1b7 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xe13ffd34 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xe018f35e ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xe186b3db ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe2d7ba30 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe3681f40 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xe3f75ca5 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xe42bba22 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe436f13d ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xe439ccc8 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xe5f862b4 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xe46ea182 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe4f60d66 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xe75fbd2c ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xecaf3955 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe77a528e ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xebd88470 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xedc98ff8 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef0f364e 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 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf1528e55 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xfa9610ab osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xfe0a81ac ceph_compare_options -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1a550c32 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x391ebeab dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x1a635a69 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0x9dd2618f is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1e99b948 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x2f52803d wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x51d29863 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x52e15667 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x634227ec wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe5e180bf wpan_phy_new +EXPORT_SYMBOL net/ceph/libceph 0xf180ff56 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xf48cf67c ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf4fec7b7 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xfb9f98e2 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xfe7a6526 ceph_zero_page_vector_range +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x07b47736 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x11c9e0dc dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x2aa2b933 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xf0a3361d hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x25ed6095 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x89abd547 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb5ec01da wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd2167984 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd97cb485 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0620db6 wpan_phy_free EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x31877e2b __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xdb3ec71a __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa48f4e09 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe5a8f67f __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xa6ed1d55 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x621335a7 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x88f1d6a7 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x92a14071 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf6390f03 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd3a819e arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe11b4843 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe4f37358 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe9cab3fc arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x41904e0f ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa2d31897 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdb5d966e ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfa936a5f ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x02724caf xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x1a66ff15 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xce6bdf46 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x14e28f74 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x16ded17f ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4b856071 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e9482db ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5dd50aaa ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x92fd184d ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x949da3d3 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5586486 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd7b481cc ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2aafd550 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4e643de8 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9a8be0d0 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xee47f553 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x2e48bdf7 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x3900dcb6 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc47f56f8 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf96b6d69 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x09cecaa8 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x0d8497e1 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x201301fc lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x27c5ec9b lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x46926fa4 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x884eec63 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xa62fbb07 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xfc64eca0 lapb_data_request +EXPORT_SYMBOL net/ipv4/gre 0x335ca686 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x032f39fa ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x550ce4a2 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb218c970 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe80263f4 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1b75782a arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5de81ce0 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x72cb199b arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa00aad01 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5fb7b4ce ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6168ee4b ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x74be17d2 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa80a173d ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x1b8652bc xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xfb9184b5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3decaf8d udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x00feb3d0 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x41d1ee4f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x97046398 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9de64012 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5f2990d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb5e1d5fb ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbd94903b ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcd50bee7 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe7814663 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9adb816e ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xaa54d0e1 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xca389699 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd5f2e8fe ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x0cb9bc7d xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x51ca1fb2 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7b5bb7ad xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf7d4f5e1 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x2a64425e lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x32cda5bd lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x3d1359f0 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x3fd48503 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x66522232 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x6986c0e4 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xbe92d413 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xe398a3d1 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x1e5f0acf llc_sap_open EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x519efc89 llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x5b0a1701 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x872865f0 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xc5945efd llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xc8955b6b llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xe09171b8 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xe9ccf06a llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xf1a93b95 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x04a02717 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x05c847c5 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x08ad182b ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x0b4f665a ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x151cc02b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/llc/llc 0x5d5547ab llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x5f651d72 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xc08164c9 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xdad0ff6b llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xdf619d78 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x018accc3 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x0285aed0 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x09e49311 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x0fb92ebb ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x13a8def0 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x150db387 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x16df98f5 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x17b6a0ce ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x1877b29f ieee80211_free_hw EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1caafd9c ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9b41c2 ieee80211_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1e26a2de ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x21cea4cd ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x246f88ef ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x278860fd __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x27b6e9e5 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x28402990 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x294bf42d ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2bcf2bfe ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x2c0ddfcb ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x2c8ffbe0 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x2e69ba0f ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x360a23c4 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x36c9d72f ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x383a5dee ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x21f47c4f ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x23c72f1a ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x242ac62e ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x243ff9c0 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x24524614 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2795c0f8 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x28c84078 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2b429df9 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x2f0cd2a9 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x30b2a906 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x34561fbc ieee80211_beacon_loss EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3a9ac1b5 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3bba402d wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3c260bf9 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x3d51d498 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x3ddee0b6 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x3ec7c205 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x48197608 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4c02cc1e ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x4c0de6f3 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x4c97ac0b ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4d3566ed ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x4e0cb51d ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4e9a1d27 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x52619dae ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x585bf4e7 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5daea78b ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x5fb3ec05 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x609af68e ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x625226e5 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x65e1df34 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x699895b8 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6b2ecdd0 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6f677e71 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x71928bf9 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x7284e1da ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x733aa672 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x74999fec ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x75096b8c ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x7651b999 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x7719a0b8 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x78f058ed ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x7b204743 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x7cffa01e ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x89fa2fe7 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x8a7beb12 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x8ad4635e ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x90955663 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x93dbbe27 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x3e2acafa ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x409493ee ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4287cc87 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x431636fc ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x47101bca ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x47514601 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x47eb7a4d ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x48180c2a __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x481987bc ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x4e3ef11f ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5555889c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x57a318e7 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x57c3a088 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x595c40c3 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x59c143f8 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5ca005f0 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5da0fd30 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5f4d4060 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x65d81913 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x660fe34b ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6dc3a900 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6ed893c2 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x729ae485 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x731bb02b ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x751c99cd ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x752b57a4 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x77f23f81 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x782b9c6d ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x79f2d9c1 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x7c2fb628 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7f30f466 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fd2b887 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8030e79e ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x85e038ae ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x89b6b1bd ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8c6d306e rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x93a11d53 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x9563ef7f __ieee80211_get_assoc_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x96417600 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x98b3dccc ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x97ec421d ieee80211_get_unsol_bcast_probe_resp_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a61c799 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x9b5ffb83 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9d5dae5f ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x9e386873 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa2d09b6b ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xa6c184db ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xa6d997e6 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xa91ded74 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9b330bb3 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9c38874a ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x9c864607 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xa0ff752b ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xa117d933 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xa16720e9 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa2a7f31f ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa4c1d9f8 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa5062c0c ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xae01d89b ieee80211_start_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xaec7d02c ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaf0a8c88 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xafcdc087 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb174c285 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xb36c7153 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xb5f0779a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb611869b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb6a881a6 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb8aac00c __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb9b35517 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xbb04a6c6 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xbb84656c ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbdb2ea22 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc0c59bb3 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xc15f0e1d ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xc362e880 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xcfdf9a19 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xd6c470f5 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xd922aaaf ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xda2937f9 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xdc8aa780 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xded58a0a ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe06b6253 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xe2f89a0d ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xe66d384f ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xe6a0ba69 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe7715a99 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xeb435dc1 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xedc19417 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xf0c189e1 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf0ea721b ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xf9c81a98 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf9cc9075 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac802154/mac802154 0x4050e1e3 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x4c92538e ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x5925053f ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x69c972e8 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x733501f5 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa528beb0 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb8e5bc26 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0xc4cd56c0 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0xc4e4eed6 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04fd2275 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ae3c8c9 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2b158248 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3fafa623 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x45a798b6 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x51143568 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x588a10ea ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c93703e register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7de2c355 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2db855a register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2dc1c36 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9742927 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd08ec3c6 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd670cce9 ip_vs_proto_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1e5f1b4 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xb29016fc ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xb3bd1f5a ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xb40fbb3d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb7ed57e0 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xb8dc3dc2 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xbe089d6b ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xbe2d50d4 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc1486270 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc59463b5 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xc79d58a5 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd3a229d3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd4fd61f9 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xdaff1c53 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xdfe00fc3 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xe11cac0a ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xe2936bf1 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe32ad431 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xe465bb66 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe5dd38d2 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xe70a2628 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xe9ede76c ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xea1d2eab ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xebc94fda ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xee763e25 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf08f5b66 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf6c9e10a ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf9f4edc1 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xfd65d711 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xfe9afd5c ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xfec6e7ed ieee80211_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x02f97e95 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x09c004a3 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x3753ca63 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x62890fa7 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6ad5a6af ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8c9bcdd2 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xa172af18 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf3d35d79 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfb79a09a ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x41de0018 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x42a603be ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f4865bd ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x696d493b register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x731433c6 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x73e0260e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7960fee5 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d0d2227 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa74476cb unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbd23ffd7 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcbd1b4a9 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd4cf713 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd682af4a ip_vs_conn_new EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2e3574e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xddd2ab5c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea34a5db ip_vs_new_conn_out EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4f077bcb nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa104c7e0 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0edc7a37 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x98a2d20f __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb654d7ab nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xbf56e7f7 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x688bc0e6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc267fa89 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xce281c38 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xfca32958 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 0x18220e26 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x39c946ba xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2185dcae xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x24466c71 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x2f4c2cde xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3ea736f6 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x498ca390 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x956e9391 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x961f742c xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5322a660 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x5c6a3318 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x973fc149 xt_find_match 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 0xb5cb4449 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb9279dad xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xc5be4f86 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xcaac8039 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd322e8e2 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd40d9967 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcd9621a7 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdbff2d52 xt_unregister_targets 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 0x2c6baeb8 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x410a0533 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x414ed68a nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4d0c689d nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x5f019505 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x609415b5 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x697c65f5 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x6f45e2d4 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x030c4f8a nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x10c6b323 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x149f3d56 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3f73710a nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4108b073 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x45a5bb7c nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x66a93b69 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x695199fb nfc_hci_disconnect_gate EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x757a24ff nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x95bbec04 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xac51ea65 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xac755910 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xc2fd0dd4 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xd3274253 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xd532245f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x789e6b89 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7f625ff5 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x867cd485 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x93df6fc2 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x9dec679e nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x9e8ddd8d nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb13ccda3 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xc77c268f nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xda678b29 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xdb4fb177 nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xde360c7a nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xe62f5288 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xeb89d550 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xf21c1db4 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xf41bdf24 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xf484cd97 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x0dadde27 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0deb587c nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x22d1b0d3 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x2673b049 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2ad41891 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x2bdc1882 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x38b060a9 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x3bb5661b nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x3d32d1cc nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x524ef818 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x55716fcf nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6199b8f3 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x61e96685 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x62dbb169 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x63b80ad4 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x64389e07 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x6fe9db3b nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x7e7a55e3 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x7fce4042 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x8dff3d8c nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x8f423ded nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x98022547 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/hci/hci 0xde7c5de0 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xe2315d2c nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf01c8e6d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x008802b0 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x082cc868 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x1104b15c nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x2a59ffe8 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x353a27ce nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x356b9d91 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x356eff3d nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4e5db833 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x56cefa7a nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x62458c00 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x6875e624 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6a07889f nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x6ad05ed8 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6cc431d4 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x76ef8a09 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x7d7c4ff9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x7db9a7d4 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8f175048 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x927ec0aa nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x96aa0899 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x9b70aef0 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa2d14b8b nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa4f8f784 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xaf0704a3 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xb3969e38 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb74e6beb nci_core_reset EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc1fa967f nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xc7a61c45 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xce462182 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xce8e9336 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xd0cda5c4 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xd6a1d24a nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xd9dc420f nci_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x0f38944b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x1c68142c nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x1d5f803e nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x246fd23b nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2d987164 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x664d13f1 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x6aa7dc1e nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6dc20c32 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x755079de nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x78b6b7f5 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x7e28af3b nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x8516b937 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x86309a58 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x880dbab5 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x9386d2ed nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xa359a7da nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xade7c3f0 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xb5a4c689 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xbdb1e133 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xc1a201a2 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xc6e773d0 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xcf655d04 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xebd361dc nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xedfc899a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xf211a6d6 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc_digital 0x1e063848 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x2d9545b2 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x394fb607 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa982797d nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x204cd410 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x2565ad1d pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x4b695d86 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x576c02d5 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x8678e4fc pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x87b7e5e3 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xa2d556a1 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xd3bfbb05 phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0575ead2 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x07c71089 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x193a8389 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ef0a7fe rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x22c604eb rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31454a04 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/nfc/nci/nci 0xbbf5ebcb nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xc53b41ef nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xe7844fe8 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nfc 0x04a21a98 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x0ffd57fb nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x191b947e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1e28a145 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x34a5ef95 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x366ab9de nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x367348ea nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x39a13c36 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x44a180de nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x44e1a1df nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x4f3d1258 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x55868dc6 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x6dfd26eb __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x6e7f6ae5 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x848d4922 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9d934b7d nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa80a81c9 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xacdb7d92 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xad215184 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xbdddfd93 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xc9c4e721 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd366f123 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xe85fb663 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xece26fed nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xff6196f6 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x301a7e3e nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3179c92c nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7e538800 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xd5c4740b nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x152bc62e phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x1fd2d3de pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x302de88d phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x3a75459d pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x404f9ad1 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x85c18893 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xab3caadc phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xe7a16a52 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0b139c5f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x197e5d52 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x23d4fad4 rxrpc_kernel_end_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x551e53ed rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fe9b336 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b761097 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x825cd59f rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x87862e07 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa3f38576 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa49895eb key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa7ad9781 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd06dd9b7 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xda13ed9b rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xea68841e rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeecba200 rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0x3faf0d84 sctp_do_peeloff +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3308650d rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3701c1f9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x396e18ea rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x40a6f15b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e5ad4b3 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7ee04815 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a881c7c rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1af96cf key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa201f7d0 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa743ae2b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xac50d178 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5c98ff3 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb99f7f0d rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc8d5f799 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf9584e35 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/sctp/sctp 0x079dedf5 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x07c7a35c __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x0c2f7040 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x1475c6a0 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x29ccd52f __tracepoint_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x34c79180 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x2b0fdda4 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x2d25b27f __tracepoint_smc_switch_to_fallback 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 0x5778fd10 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x7bb7954a __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x7be64091 __traceiter_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x7de4cfd1 __tracepoint_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x81f1fa0f __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x411f66ff __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x58076abe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x77adf6c0 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x7f27c75a __SCK__tp_func_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x9f9ff556 __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xa88c35f9 __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xab6dc8ce __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0xb297a471 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xd5d9e0f1 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8c0959aa gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd67051d1 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xed0f3478 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6a2b2d94 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x781607ef svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8dc4234d xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x10958d09 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x1cbcc0bd tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x48345b31 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x8ec7f89c tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x3cfdf8cc tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x01b74306 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x02a3d248 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x0428beb4 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/smc/smc 0x8e8e6da1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xcc7538f4 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xfd86dabb __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0ed94741 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x42567fa4 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb856676d gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1405304d xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x744b7392 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe33f79ac xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x28435afe tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xa3b6369c tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xa923cea7 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xd6414cd3 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x8cd46d79 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x051929ce wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x059dab6f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x062122a1 cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x08192865 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x0c217d62 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0f911400 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x17072469 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x16186940 cfg80211_update_owe_info_event EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19c8f990 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x1a5baf50 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x1b49b7c1 __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x1c2db8f8 cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1dd61fe9 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x1f995888 cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x23d79a8a cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x242f631c cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x2480c9c6 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x2665c5cb cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x20011f1c cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x202f927c cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x214a1d86 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x21c98817 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2644ff8e cfg80211_cqm_rssi_notify 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 0x27629311 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x288e5b17 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2ac7ec6e cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2af4df82 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x2b7a60da ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x300f1cde cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x317f8677 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x32f344a9 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x35d8aa2c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x27cf1e65 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x29437050 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x2ad52195 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x31382a68 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x3184994b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x31a68392 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x334a9e88 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x3477dc66 cfg80211_reg_can_beacon EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x386cdd6c __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x40c31a06 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x36f07058 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x4010589a cfg80211_sta_opmode_change_notify 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 0x453b2f44 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x453f7acd cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x468981c8 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x46f37134 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x46d446e3 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x488bdef4 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4b474c89 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x4c4d4034 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4d82d6b5 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x48da7f81 cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x51744ddf cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x543812a9 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x4e5cedce cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x4f4ea39a cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x509d1352 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x5748e627 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x589a5e2f regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x5a6edb5a cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x5b56bf84 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5caadb78 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x609bf712 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x60ce540e cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x63088fed wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x63932f21 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x58c0a585 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x58ff954f cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x5b918270 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x63690e10 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x63b70cb4 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x64a4d866 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x68f9260d cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x69faaaa2 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x6a5a6aed cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6f942a0e cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x77ecd330 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x70193198 __cfg80211_alloc_event_skb 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 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f8aaeda cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x8351510a cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x856195e9 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x868da0d9 __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x87e1a80c cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x87f9a1f9 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x89b31278 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x8ba65af2 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x813260f4 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x81422599 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x864c9f8c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x86f7602a cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x8785edd2 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x87c00bbd cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x8f7c40cf ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x926e7032 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x93bb74c3 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x945d6c14 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x906fec25 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x9085d81e cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x90bb593e cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x91122051 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x940c088f ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x97ccc547 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x9a102a1b wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x9c79eee4 cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9d851060 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x9e0b9f52 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xa0590649 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xa1001965 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xa6c85271 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xa847a044 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa9ffd478 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xac02694b cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xaeafad14 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xaf0ef1fe cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xb5b9fdd9 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xb5de012f regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xb63da436 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xb920cbb7 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xc3ec89b3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa26d7632 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa4f21837 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xaa50ad4e freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xaae5e235 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xac1f0a53 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xae2762fd cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xb0703262 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb163e8ca cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb249b9e8 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb381a04b cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xba66dbd4 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xbccd0350 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xbe683836 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc0223fab cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xc073f4ca cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc09007b8 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xc0c3b8d3 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xc403f115 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc424889c cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xc42f62f0 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc4b77edf cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc80eebd8 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xc8b3a19d cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0xcb3aa8c4 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xc5ca7041 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc6aeb021 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xcb380bec cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd2369f31 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd4888854 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xcc8a74c2 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xcf0280d9 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xd17620d8 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd27dd9e2 cfg80211_background_cac_abort EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd708d4f8 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd7b06ae1 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xd9a57782 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xda35e02e cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xda9d4c5f __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc6b30e1 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xde2fe1b6 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xdfd343d3 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe3c2bb1e cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xe4910659 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xe4939410 cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0xe76d5934 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xec69da9a cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xede6b1cf __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xf23310f1 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xdbfb3b11 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xddbc7f4e cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xde2b1975 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xe0140a1a ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe1b2d2d5 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xe673b920 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe770059f cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe7f3f9c5 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe8dc5522 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xef0ade67 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xf2a18cfc cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf33baafa cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf44c5ff2 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xf48e6669 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf8dc6384 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xfb94dd41 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xfce3d364 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfee1136e cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xff3c0c4e cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/lib80211 0x18314fff lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x1aef2984 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x3b5f8e12 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x73558a2d lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x7857d4f2 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xd99a643e lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x1f9654b7 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x89d8595e snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf569a2a7 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf632f15e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf8f2abe5 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xf91b4b6e cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfb56732d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfba7641f cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xfc711870 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xffd9c456 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfff8456c cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/lib80211 0x1118cbb5 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6e36fbc2 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8dc7e13f lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa829db1d lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xc2145174 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xf62017c4 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0xb20563d2 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa3ee755a 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 0x231e7a04 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x5f419e8a snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4720d8b0 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5b7e3e7f snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x74fdf100 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x94fd99d2 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x99352f66 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 0xe6d91549 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-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -5901,442 +5901,442 @@ 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 0x66093a6e snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x088884f9 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x097d6a7f snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x0b01c75b snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0x1286e27c snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x17b091fb snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x6b7cfb4b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02d9a7f6 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x03620805 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x09e4e7c8 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x0ab18494 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0c6c676c snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1d6e2933 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x1d998640 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x213c17a2 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x1b95264f snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x212488be snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x2401d60b snd_power_wait EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2acd3f88 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x2b698533 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x2e422341 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x2f05f54d snd_info_register -EXPORT_SYMBOL sound/core/snd 0x341c0e5c snd_card_register +EXPORT_SYMBOL sound/core/snd 0x2ee5361f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x3353b7ef snd_device_free EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x34b11b87 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x357628d6 snd_ctl_boolean_mono_info EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3c4dafac snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x4251bd90 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x457af535 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x459e5fd7 snd_mixer_oss_notify_callback EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c94803b snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x52316676 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x55acbe20 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x60390792 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x6240986a snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x6d9a7fe0 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x4bca0b67 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x4f44122e snd_info_register +EXPORT_SYMBOL sound/core/snd 0x5222c2d0 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x6366d17a snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x64d1d9ac _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x7091b01e snd_info_create_card_entry 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 0x7499bd5d _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x782437da snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x78656aea snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x787ad287 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x795e07c8 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x7ead83a0 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x731deec0 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x7615de58 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x7996a8da snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x82d55d92 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x83e96975 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x887c661e snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8f62e5da snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x8f9c022a snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x9c6ca9c8 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x90c924ac snd_card_free EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9e7f2d1e snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xa2151b6f snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xa0eb527d snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa2a12ae7 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xa2f78082 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xa85d86f8 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xb11d8c62 snd_ctl_rename_id EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb54573a5 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xb7d6808f snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xb90207e1 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xbf106be3 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb4138176 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xb439de08 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xb4ece37a snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb71be436 snd_device_new EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc867e39c snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xc8c82ca0 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xc8d0462f snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xc66a2d20 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xc6c9bf13 snd_jack_set_parent EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xccbae949 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xce45e64c snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xdc438ea3 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xe4315190 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xf64a5dbc snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xf66176d8 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xf67e6706 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xce445353 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xd4fae14e snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xdd6c549e snd_component_add +EXPORT_SYMBOL sound/core/snd 0xdeacbc83 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xe0763aa4 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xe702594a snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xea6c75ea snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf05ec229 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xf3dfe7bc snd_card_new +EXPORT_SYMBOL sound/core/snd 0xf497b7bd snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xf62dd52b snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xf7313909 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xfa719b03 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xfd5080c1 snd_ctl_find_id EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x01523c16 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x681918a7 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xb03a16c9 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x672b832a snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xc7c873be snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x2651435b snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02e15b97 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x035141c1 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x03d90a24 snd_dma_alloc_pages_fallback EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x06772920 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x09ba9f21 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x10740354 snd_pcm_open_substream EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1251e70f snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x136d6b88 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x1396b752 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x14cfc36c snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x16619ffd snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1cbdb538 _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2093fd64 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x2095f6e1 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x260b12ab snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x284008ea snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x2e3bcc62 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x2e61363a snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x322282d0 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x33714c07 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x36ca7846 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x36e2f723 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x1ffeb3c3 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x23a9abdf snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x23dd3249 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x244e75df snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x30082f3b snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x31f3e35d snd_pcm_period_elapsed EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x38dd0709 snd_pcm_set_sync EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3d53280b snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x3e1f7d4e snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3ea3cf66 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x48988a7e snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x4d774bcb snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3da2094f snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x45933438 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x495404e5 snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x4ff7fdf2 snd_pcm_lib_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x519bc03f snd_dma_buffer_mmap EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x53bbb54d snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x5ba87b33 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5d88032e snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x63d8ba10 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x641b60f8 snd_pcm_suspend_all EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6759edc1 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x6864980d snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x68912a79 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x66e97bba snd_pcm_hw_constraint_list 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 0x6cd43c47 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x6e051e4f snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x6ccf9da1 snd_pcm_hw_constraint_step EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x77f01b36 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x7ba00a9c snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x81803d48 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x833afb08 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x709fe738 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x73377461 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x82acc587 snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8ee47276 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8ffa685a snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x876eb965 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x881b6a35 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8f0a7234 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x96037404 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x99fa6fdd snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x9b919fe9 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x9f1ff7fe snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x95b3ee8c snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9a6db91a snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x9cbc2b73 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xa0e229a7 snd_pcm_hw_constraint_ratnums 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 0xb46aaad4 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xb7197c71 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb83a7ae2 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xb8dd9df3 snd_pcm_period_elapsed_under_stream_lock EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xd48740db snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xd713932b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xbfd9932b snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xc1f245e2 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc9000ad2 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xcf44ad91 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xd1340772 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd37f960b snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xd444efeb snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xd47e539d snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd5bca7f2 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xd996f223 snd_pcm_set_managed_buffer EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe61969d7 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0xec579c2d snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xf95bbb0c snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xf97e6b35 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xe9e912ec snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xeb60637f snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xebd03284 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf5d3111f snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf61c2097 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xf7d57b32 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xf8dd9463 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x221d3e19 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x25a3d367 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x42121ce3 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e09527d snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5972e6d6 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x66c6bdfd snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x79a3b4a0 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a246c83 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x837aac50 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x93be6075 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x97473b7e snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa3026d1f snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8b242bc snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb818a69c snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc58d5ac9 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd241950c snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6a5c9ce snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb705359 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x063b8035 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0989aa32 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3733203b snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b42df2b snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fc0892f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x58d1e4ba snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x62b49e27 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ede905e snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x98331f3d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cdf157a snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa16f20d9 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6e4627e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0ad3cb6 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5d3dd06 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbca3a681 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8ffbfb3 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd28cd7eb snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe88ccb48 snd_rawmidi_transmit 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 0x5b5a56f9 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x039e444f snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x05c0f032 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x1ab9d893 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x2247dd29 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x5c3bc973 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x5f37f0a0 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x61605846 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x64978e62 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x705cb7cd snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xb952b3d4 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xbe96a80b snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xc028ea3f snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xca471a8d snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xccc7dc80 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xee588e87 snd_timer_stop -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x50c3909d snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0xb79b502e snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x00ad7b94 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x2a267866 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x3394f506 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x43b88e3c snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x4b235d35 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x9194cfb1 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x9dea8aa3 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xa0e64488 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xa52e1955 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xa566f0c2 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xa7f1d3fc snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xc1c05d60 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xe02d252e snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xe7d076e5 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xf31063e1 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 0x7ca3b794 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 0x28228dcc snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x33d3d63a snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x36e4b4a0 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58e64837 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a4091a1 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x80cb2cab snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbd30c281 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8561c7f snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf007130b snd_opl3_init -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b6a5337 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2128833d snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3f6c148c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x43235c0a snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x468caacc snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x702f8a61 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fd93d77 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x82fbb841 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbcffb7f9 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe510b1cb snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x059a2aff snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1786b8f3 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1e0eabb9 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1f5159a2 snd_vx_check_reg_bit EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x35facd26 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c4558f9 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5c0620dc snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x643f574f snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x687a691b snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xae9e7eaf snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcea0be6b snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeb74ad0f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x234eaa9c snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x41393991 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5aeb9047 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd574cf37 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddd2bf88 snd_vx_dsp_boot EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x020d7f56 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02640322 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08018468 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c7a7245 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f4ef4f9 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18cc6f6b amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1af6d839 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d239a19 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0fce5831 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11a70a5d cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ef91549 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1fe92130 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bf32175 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cb9f656 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cc8cda1 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e7ffc03 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38a2a301 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x216dced9 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a51b5c9 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cd41b29 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cff63f2 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33b5db06 amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55f2e3ba fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x577f90d6 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75e1374a fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78b6f468 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x937401a5 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97386a77 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a23a987 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa01a23a6 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacf70f08 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3011bb3 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4742392 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6a5c273 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce996dff amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6dc507b fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8c6d261 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9f5a04f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffaa481a iso_packets_buffer_init -EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x13443b35 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54f2abe4 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61116980 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64b3f893 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6e280aaa avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f19d612 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x727ee5e6 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b206487 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c29e88e fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f8201fe fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa467001c fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa55b5c38 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa7fef75e fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac46b220 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6a85838 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf87865e iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd65f7d8e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd965228d amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf084bb0 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee92a2fa cmp_connection_init 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 0x5da756b7 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb8a14a29 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0eb43160 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x475989ae snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x68faa7b1 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7bc1408b snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f44d3a7 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fde53bf snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9b4a21aa snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbb3cebd3 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0fea82f8 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1208f767 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8b47d3e6 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa1b248c0 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa1b7f3bb snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xeb9ec772 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x033cd1ce snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x043081ed snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5b562104 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe120faa3 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0bd8e30e snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x90f47d2b snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0e85f51d snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1d17c61a snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x73691907 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x76d349fc snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa8e73314 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf28b2ec5 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1b9e1ee3 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4aabfdf5 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x79fdc167 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xa44a9cdc snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb1f404bc snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xedd948f8 snd_i2c_readbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x18b28524 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x25168a2b snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x40ef87af snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x47659cc2 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9b168feb snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc10a9b76 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc482d0c8 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcb39ed74 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd7694efc snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfba2b3e1 snd_sbmixer_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x21379463 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x249fc064 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c0c9a61 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33883b6e snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a53710e snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x43c2ed20 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x47171e29 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x54dc91f2 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x682a8166 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73304b11 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80f378a8 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a8e5e7e snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa27f439c snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe499d6f6 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe52b9ea6 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec0da83e snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe754bf0 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xbdb4f409 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x08a4d266 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x232fca9f snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4de17d56 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x702f0ac6 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7396eb26 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9bd938d4 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb757c69f snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xda032ea8 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf60f82f4 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0560db54 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2bf6f1b8 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc8e017c7 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11fb12bf oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c59549d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x272924b9 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28c41183 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ac6b795 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3df90433 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48978d48 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ebc45e3 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6fd0bc84 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x823ea848 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x916a0653 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4ee060c oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae630805 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0651600 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4b57649 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc605d03b oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcbc0f69f oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd4c67627 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeded34b2 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef09c883 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x162a10db snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1d23b9be snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbf7e0236 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe29d7297 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfdd9918d snd_trident_start_voice +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xdd20aedb intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x69019302 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc0efc216 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0f46d4bb snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2ddec6a3 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x66f4a8e1 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x69c5262c snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7d4a3b87 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9dd174b8 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa4a1a5cf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfabe077e snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2c168f5c snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x853f275e snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xaa2fdf3f snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb0d0278b snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc2c48afe snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xefee129b snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5c51572b snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5cd4d5bb snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x97af22c9 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x991154b3 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc28b266e snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf1fd8b79 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0bac5a55 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x43466954 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x58029d15 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5dd286c3 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6fe65ed7 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x94f091a3 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0d47c38d snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0fecc739 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5e06d5c2 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa3fd086d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbc856e12 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xeabdcc10 snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1792fd79 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x37fb9dfc snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3d761e06 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x42094d93 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x70e6277d snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9ff5f341 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa7303af9 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa850404f snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb3b3eca6 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd2b8c1da snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0364d249 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05b8cf96 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x14cd06cf snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1df404a6 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34701934 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34accc45 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8d98dcd4 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93343860 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e7d43fa snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8a4cd21 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb5d15a60 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb98dd0aa snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbb39e63e snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd215e4be snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde61366e snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5fedee3 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef9fd2fb snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x80c9e202 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0a752488 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x15991bd9 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2c23569c snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2edb3ba7 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44c2a24d snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7e0bdf82 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9a8ab1ec snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc0f480e9 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdb7d8a2a snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x326925d8 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x49f56f5a snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x69cb6e03 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x005b0713 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01ad5f50 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x065be5b8 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2135772f oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x217f3816 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x375350d6 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d5f53c1 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40a815dc oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4d12371b oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x526cf6d3 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70c28030 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x78935b68 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7db2f22b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6cf483a oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xce9e0b13 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe1910ec6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe36a8ede oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe93b183b oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf55cecbe oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa8202de oxygen_write8 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2df821e9 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x32eb3e02 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6f59621c snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc6b5a0e2 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xdd09e1dd 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 0x382a2464 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x387b2a72 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xdb5f4479 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x42d7171e adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x85ea6b1f wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x06e35c3f pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x942dd745 pcm3060_probe +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x54620014 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xa86037df snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xf5d5a400 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xb21bbf92 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4bbb0731 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x600b4560 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8799e5f9 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x150ac26a tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1589fc69 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x200325b0 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x92f76e5a aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xce3fc395 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4c35471b aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xb2390f16 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x03e50ba5 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x74cd7ea6 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc3cc94e5 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6bcc2c3b aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9b252f30 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc4304447 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4301d1bd aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x861b6072 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3322b567 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 0x4f28b683 wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x6aad17f4 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x40da7854 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/fsl/snd-soc-fsl-utils 0x26b59b74 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x32812231 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x8ac4f1a6 fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1ed19442 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b7aa34a snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d289ce0 sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x102e83a3 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1115c051 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12a71555 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13619560 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17422230 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x189ce2b2 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1bc64e22 sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d4ea6fa snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1fc10ae0 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25430362 sof_block_write +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xf1772d78 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x1dd74c5b fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x2c1266d9 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xf984973d fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/snd-soc-core 0xbacd23b3 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11a61d38 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x136a2c1e snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cca9336 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x217e3de1 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23d71723 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x258c735a snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27988d22 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2dc1c6e2 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e845937 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31b7f275 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x337879f3 sof_ipc4_set_pipeline_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34004093 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35087ddc snd_sof_dsp_only_d0i3_compatible_stream_active EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3df901b5 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42e555c5 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4515b475 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x452fcb00 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4ae967fa sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d06ccbf snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e968b30 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51b92c43 sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52aba245 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x56557a22 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x601ad390 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61435908 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63adb34a snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65116d71 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74f21d05 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fa4831b snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fe8785e snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80eba107 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82a472c4 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82bcfa50 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x882d51e0 sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fd2518d snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fe305fe snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9158d2e7 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93aa8fcb sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93c06659 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95c60d1e snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96d06c9a snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a7c0833 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa609b24a snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xada98a64 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb04a0cc1 sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2060eb4 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbbc1ac1e snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0f58725 snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc122d89d sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd034a197 sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd910e0cc snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb44761d sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd800f99 sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed01ad69 sof_ipc4_set_pipeline_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef1bcf19 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8a39936 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfebd1756 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff86ae5f sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x7a0f6340 snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x37c2ab39 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x53e53fc9 sound_class -EXPORT_SYMBOL sound/soundcore 0x5c3d65f0 register_sound_dsp +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x382ad058 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b2ea8a8 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43588c4d snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b990613 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52d4e603 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x558f269c sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x597fef77 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c3daecc sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d2e4a63 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ff58d73 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6084e857 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x614cecc3 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e68929d sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7347d70f snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x77292cec snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x77be6b2a snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78e431bc sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b116f79 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8e56764e sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92fbd027 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x964e7c34 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98b9aab8 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c4a0fe4 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb145eab9 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2cc56ba sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbaf66efc sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc07a78c sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe5d0a1c snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf4a85b3 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf86e73a snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc25337c3 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf12de79 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3c1c25c sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd8d4797a snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd7b6e21 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdead8e8f sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf070f177 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf411f00b snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf65ec888 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf71a82c8 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf80e8dcd snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf87c83b6 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9392d26 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfbdca0f5 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x699bd38a snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x2e3288c1 register_sound_mixer EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x95b360d5 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xb36ddbef register_sound_special +EXPORT_SYMBOL sound/soundcore 0xaee52db0 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xc0b21d8c register_sound_special +EXPORT_SYMBOL sound/soundcore 0xc3232a28 sound_class EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd205d34b register_sound_special_device -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1df35178 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2ad11e14 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4391f5cf snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x55fc6dd0 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5a5359b6 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 0x6abb9863 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x799d01b0 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf138bef7 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x79b45c82 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8c0c8025 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9abf25bc snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf4c40fae 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 @@ -6346,5733 +6346,5733 @@ 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 0x5bd81624 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x373bda4f __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 0x00027f61 input_set_keycode -EXPORT_SYMBOL vmlinux 0x00049d17 textsearch_register -EXPORT_SYMBOL vmlinux 0x0007d502 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x0007e589 dget_parent +EXPORT_SYMBOL vmlinux 0x000a710b filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001bad58 phy_start -EXPORT_SYMBOL vmlinux 0x0089f29d flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x0098064f udp_seq_stop -EXPORT_SYMBOL vmlinux 0x009bdfb9 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x009f8fb5 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x00a11f57 dquot_destroy +EXPORT_SYMBOL vmlinux 0x00306363 fput +EXPORT_SYMBOL vmlinux 0x00340dae sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x004cbdae __scsi_add_device +EXPORT_SYMBOL vmlinux 0x005e4038 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x0063cf63 netdev_err +EXPORT_SYMBOL vmlinux 0x0066198f skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0066d66a tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x006cbcc0 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x0083a509 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x008d63a0 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x0090fafc inet6_getname EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode -EXPORT_SYMBOL vmlinux 0x00af807d phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x00b08ecc filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0x00b4d7c9 to_nd_pfn EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00fb782d bio_endio +EXPORT_SYMBOL vmlinux 0x00ecd832 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x00ffe071 mmc_release_host EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010afce9 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x01010f2d serio_rescan +EXPORT_SYMBOL vmlinux 0x010f62dc mdio_device_register EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x01258bbc register_filesystem +EXPORT_SYMBOL vmlinux 0x0128e8cc dump_skip_to +EXPORT_SYMBOL vmlinux 0x013daf28 kernel_getsockname EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01486284 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x014f1f30 napi_complete_done +EXPORT_SYMBOL vmlinux 0x016b8312 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01740c89 pci_get_subsys EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017c69e5 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018aa44a vme_register_driver EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01b6edf9 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x01bb58b2 kobject_add +EXPORT_SYMBOL vmlinux 0x01b89d0c sock_create EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01daaedc mmc_remove_host -EXPORT_SYMBOL vmlinux 0x01e29f94 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x01e43c8b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x01cab807 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x01e61d6c __x86_indirect_call_thunk_r12 -EXPORT_SYMBOL vmlinux 0x01ef663e dquot_quota_on -EXPORT_SYMBOL vmlinux 0x01f8ef82 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x01fcb110 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x0207dea4 netdev_notice +EXPORT_SYMBOL vmlinux 0x01f949db netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x02089b4e input_free_device EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02115787 get_watch_queue -EXPORT_SYMBOL vmlinux 0x0223dd0a sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x022628c8 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x020e3098 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x0233110f __invalidate_device -EXPORT_SYMBOL vmlinux 0x0235c309 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x02437232 clear_inode +EXPORT_SYMBOL vmlinux 0x02451e0b nd_device_notify EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x026818b0 netdev_emerg -EXPORT_SYMBOL vmlinux 0x026c0cbd hmm_range_fault -EXPORT_SYMBOL vmlinux 0x026e9f85 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x025be9ec ipv4_mtu +EXPORT_SYMBOL vmlinux 0x02635d0d devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027cea7e sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x027a1cb3 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x02846d71 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x0288ba75 cfb_fillrect EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02ab0f5b generic_file_mmap -EXPORT_SYMBOL vmlinux 0x02b06f17 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x02b86716 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x02bfb356 input_copy_abs +EXPORT_SYMBOL vmlinux 0x02a215b0 sk_mc_loop EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02cb8ca0 sock_pfree -EXPORT_SYMBOL vmlinux 0x02cfba0e bioset_exit -EXPORT_SYMBOL vmlinux 0x02d81486 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x02ddd54d udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x02ec964b irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x02f6ab00 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x03197e29 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x033404c3 generic_fillattr +EXPORT_SYMBOL vmlinux 0x02dc568a dm_kobject_release +EXPORT_SYMBOL vmlinux 0x02ec4ab2 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x02f91943 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x03048b4e folio_add_lru +EXPORT_SYMBOL vmlinux 0x030d4cd0 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03362766 dev_addr_add -EXPORT_SYMBOL vmlinux 0x034b45b4 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x03357bfc vfs_symlink +EXPORT_SYMBOL vmlinux 0x03384ef5 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x034252b2 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x0358efc1 key_put 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 0x03771a3f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x0378f2a6 migrate_vma_pages EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x038b324f pci_disable_device EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03aa462e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x039aa560 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x03bd3411 ndisc_ns_create EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03bfe1f7 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x03c36a3e vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x03d539b3 kernel_write -EXPORT_SYMBOL vmlinux 0x03d955bc single_release -EXPORT_SYMBOL vmlinux 0x03ec3c73 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x03f2e3da xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x03fcb7b3 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0418d621 input_grab_device +EXPORT_SYMBOL vmlinux 0x041e0560 dcb_setapp +EXPORT_SYMBOL vmlinux 0x04271616 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x04271af8 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x042c8988 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x04643625 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x04678889 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x046d3028 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x04719cbe sync_blockdev_range EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047dcf63 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048f1e6c import_iovec -EXPORT_SYMBOL vmlinux 0x049277c5 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x04928300 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x04c33c05 fiemap_prep +EXPORT_SYMBOL vmlinux 0x04893659 mmc_command_done +EXPORT_SYMBOL vmlinux 0x04aec98c inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d22c59 inet_del_offload EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04d84ec3 __alloc_skb EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d8cc44 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x04df47e7 serio_interrupt +EXPORT_SYMBOL vmlinux 0x04e2d67d fasync_helper EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ec06e7 tcp_make_synack EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051c9cad netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x050a26eb vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x05122590 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x05129b33 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05356ce6 block_truncate_page EXPORT_SYMBOL vmlinux 0x053671d4 amd_iommu_snp_en +EXPORT_SYMBOL vmlinux 0x0536aff3 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x053cec18 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0541c926 vme_register_error_handler EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x055cc07c __ip_dev_find +EXPORT_SYMBOL vmlinux 0x05469115 tty_hangup +EXPORT_SYMBOL vmlinux 0x054d5cc7 key_type_keyring EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x05759568 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x05781ea3 __free_pages -EXPORT_SYMBOL vmlinux 0x057dda59 ipv4_specific +EXPORT_SYMBOL vmlinux 0x05785798 security_path_mknod +EXPORT_SYMBOL vmlinux 0x0597a4f6 max8998_write_reg EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05c2a0a4 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x05c2b455 tcp_poll -EXPORT_SYMBOL vmlinux 0x05dad101 seq_lseek -EXPORT_SYMBOL vmlinux 0x05dc06fc jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x05a42c5f proc_symlink +EXPORT_SYMBOL vmlinux 0x05acdce6 nf_log_packet +EXPORT_SYMBOL vmlinux 0x05d6192a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x05ef8669 inet_dgram_ops EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve -EXPORT_SYMBOL vmlinux 0x0603cc80 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x05f7c303 iterate_supers_type EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x06094c60 build_skb_around EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0624f3cd key_link -EXPORT_SYMBOL vmlinux 0x062da189 pci_disable_device +EXPORT_SYMBOL vmlinux 0x06189400 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063edaa5 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0641acb1 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x06438a09 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x0646e475 kobject_put +EXPORT_SYMBOL vmlinux 0x064d04f8 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x065cc2e6 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066eab0f vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x066fb1ab __neigh_event_send -EXPORT_SYMBOL vmlinux 0x069b6105 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x06732980 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0679e74e napi_get_frags +EXPORT_SYMBOL vmlinux 0x06857cfc pci_enable_device EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06a9494a __block_write_begin +EXPORT_SYMBOL vmlinux 0x06abc227 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c3874d fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06e1aff9 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x06dd7ea9 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x06ee07a6 init_task EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x071b89d6 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x0720369f __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x072a7ecb xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073a6c97 udp_read_skb EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0754f869 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x0745af67 devm_release_resource +EXPORT_SYMBOL vmlinux 0x0765f2b0 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x076ab55c devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x07732447 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x07759cbe tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x079c164b mr_dump +EXPORT_SYMBOL vmlinux 0x07a1a43a pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9b0f7 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x07b05e39 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x07bf0da4 config_item_put +EXPORT_SYMBOL vmlinux 0x07c5b103 zap_page_range EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07f55385 agp_backend_release +EXPORT_SYMBOL vmlinux 0x07e21e65 proc_remove +EXPORT_SYMBOL vmlinux 0x07f1ed6c tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f86dc9 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0814e5a9 read_cache_page EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x081fed9d pps_register_source +EXPORT_SYMBOL vmlinux 0x08288bbf unix_get_socket EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0839e6a3 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x08330acf hmm_range_fault EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0845a628 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x0851d3c4 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x085d4a7a inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x08a1fa69 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x08cfbd2d flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x08df2ceb skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x09022814 nf_reinject -EXPORT_SYMBOL vmlinux 0x090c4a5d mmc_register_driver -EXPORT_SYMBOL vmlinux 0x090f4005 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x09201afb alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x0922f44b genl_unregister_family +EXPORT_SYMBOL vmlinux 0x08524c15 d_splice_alias +EXPORT_SYMBOL vmlinux 0x0853cd0f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x086a30c6 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x086e881b fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x0871c8b0 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x087b59bd cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x08a91ef2 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x08c2a39c tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x08c7cf05 d_path +EXPORT_SYMBOL vmlinux 0x08d39cdb textsearch_register +EXPORT_SYMBOL vmlinux 0x08e7a00d __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x08fa07e1 finish_swait +EXPORT_SYMBOL vmlinux 0x0917dc65 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x091e8a5d qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0925de59 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x09370c9f security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x09381ea0 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x093c566b find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x096208a3 iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0x0966e107 __x86_indirect_call_thunk_r9 -EXPORT_SYMBOL vmlinux 0x09691c7b mpage_read_folio -EXPORT_SYMBOL vmlinux 0x0974259b tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x096d635a inode_needs_sync EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097afe43 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x0981b1aa uart_resume_port +EXPORT_SYMBOL vmlinux 0x0986d4de udp_poll EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09930987 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a6a980 scsi_print_command -EXPORT_SYMBOL vmlinux 0x09abd7e6 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x09bbf33f bio_chain +EXPORT_SYMBOL vmlinux 0x09a568d0 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x09a74b7c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x09aa0443 seq_escape_mem EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09e11b8e vme_register_driver EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a0f07b0 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x0a17a7b4 param_get_long +EXPORT_SYMBOL vmlinux 0x0a10ae08 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0a15557d input_inject_event EXPORT_SYMBOL vmlinux 0x0a19b956 __stack_chk_fail EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a44c9aa blk_finish_plug -EXPORT_SYMBOL vmlinux 0x0a5ef349 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0a5f255b t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x0a7341a7 napi_build_skb +EXPORT_SYMBOL vmlinux 0x0a2199af jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x0a262eef d_set_fallthru +EXPORT_SYMBOL vmlinux 0x0a36d086 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0a3ca709 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x0a498ec0 generic_listxattr +EXPORT_SYMBOL vmlinux 0x0a4d6e24 register_netdev +EXPORT_SYMBOL vmlinux 0x0a62d0aa simple_rmdir +EXPORT_SYMBOL vmlinux 0x0a74e31d __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a810881 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a95e9d1 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0x0a97b768 sock_edemux -EXPORT_SYMBOL vmlinux 0x0aa2f7db scsi_add_device +EXPORT_SYMBOL vmlinux 0x0a92a1aa kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x0a953a42 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa3679c blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0aaaeff6 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x0aab6c09 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab5cf8b sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x0abe2865 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x0ac614ca dst_discard_out +EXPORT_SYMBOL vmlinux 0x0aaeb75e read_cache_page EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad6f745 block_write_end -EXPORT_SYMBOL vmlinux 0x0b081902 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x0b0b839e netdev_update_features -EXPORT_SYMBOL vmlinux 0x0b0e28b3 udp_disconnect +EXPORT_SYMBOL vmlinux 0x0ad29d98 dm_get_device +EXPORT_SYMBOL vmlinux 0x0ad6ff59 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x0aea3a83 phy_device_create +EXPORT_SYMBOL vmlinux 0x0aeb39ae tcp_conn_request +EXPORT_SYMBOL vmlinux 0x0aeced5b jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x0b115c26 retire_super +EXPORT_SYMBOL vmlinux 0x0b1334cd blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b2f9fe5 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x0b43c1b2 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x0b49d705 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x0b5bcb6c dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x0b633d44 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x0b2ef5fe padata_free_shell +EXPORT_SYMBOL vmlinux 0x0b4bb4e3 mr_table_dump +EXPORT_SYMBOL vmlinux 0x0b5b4660 put_cmsg EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff -EXPORT_SYMBOL vmlinux 0x0b678477 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x0b6a2aa9 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x0b735f73 noop_llseek EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7a8468 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0b9d61be vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x0b9f515e netdev_alert +EXPORT_SYMBOL vmlinux 0x0b7b84a2 new_inode +EXPORT_SYMBOL vmlinux 0x0b82413c skb_checksum_help +EXPORT_SYMBOL vmlinux 0x0b9d4eb0 padata_do_parallel EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba0eb72 skb_eth_push -EXPORT_SYMBOL vmlinux 0x0ba753de ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x0bb0c90e get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bca973e __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0bce7591 task_work_add +EXPORT_SYMBOL vmlinux 0x0bcd9343 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x0bceffe2 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0bea6363 cdev_add +EXPORT_SYMBOL vmlinux 0x0bd8fabf fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x0bdcf597 __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c039147 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x0c1996f6 tty_port_put +EXPORT_SYMBOL vmlinux 0x0c1073fd has_capability +EXPORT_SYMBOL vmlinux 0x0c146e16 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x0c16e1aa cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x0c1ce00e __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2f724d ps2_drain EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3ba0c1 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x0c4b60c1 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x0c4d1de6 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c68b548 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6c0325 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x0c6dc28f unregister_qdisc -EXPORT_SYMBOL vmlinux 0x0c73548c jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x0ca46af9 genphy_update_link -EXPORT_SYMBOL vmlinux 0x0ca775f0 pci_find_bus -EXPORT_SYMBOL vmlinux 0x0ca96f49 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x0cb4a27d bpf_map_get -EXPORT_SYMBOL vmlinux 0x0cbfdafc dma_async_device_register +EXPORT_SYMBOL vmlinux 0x0c706a0c bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x0c706e4b put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x0c82fc19 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x0c845dd8 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x0c9cfc39 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc4deb2 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x0cd23705 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x0cd503a5 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cdaa25d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x0cdc6cce genphy_read_master_slave EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf4082b cdrom_open -EXPORT_SYMBOL vmlinux 0x0cfa1d35 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x0d0082af phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x0ce37da5 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0ced8c04 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d2bc9f3 d_add +EXPORT_SYMBOL vmlinux 0x0d286109 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d4d862e security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5a3b56 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x0d75aa6c fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x0d7787b3 tcp_connect -EXPORT_SYMBOL vmlinux 0x0d889313 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x0d969f12 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x0d547770 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0d6073ea vme_lm_request +EXPORT_SYMBOL vmlinux 0x0d76139e cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x0d79db59 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x0d87a602 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0d9f62ec thaw_super -EXPORT_SYMBOL vmlinux 0x0da1bfb6 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x0da2a9a3 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x0dc830a1 dquot_acquire -EXPORT_SYMBOL vmlinux 0x0dd396f5 blk_start_plug -EXPORT_SYMBOL vmlinux 0x0e0ab31d release_sock -EXPORT_SYMBOL vmlinux 0x0e0f7a50 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x0db03b0f xfrm_state_update +EXPORT_SYMBOL vmlinux 0x0db3ab79 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x0def6904 phy_sfp_probe EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1f45df param_set_bool EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e30fba0 retire_super -EXPORT_SYMBOL vmlinux 0x0e31dcb4 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x0e385e10 param_ops_short -EXPORT_SYMBOL vmlinux 0x0e3e72fc sock_set_priority +EXPORT_SYMBOL vmlinux 0x0e27c04b mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x0e3a8f61 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e54c434 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x0e639612 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x0e71d1c8 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x0e74d426 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x0e94f6f4 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x0ea331ae ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0e5b3f69 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x0e75d62c __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x0e8d5526 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x0e9140fb bio_copy_data EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebe9331 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x0ec3f0ab inet6_add_offload EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec8e7be pci_enable_msi -EXPORT_SYMBOL vmlinux 0x0f06248c ether_setup -EXPORT_SYMBOL vmlinux 0x0f06f51b dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x0ec686d0 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0ecb838f __do_once_done +EXPORT_SYMBOL vmlinux 0x0ed42164 simple_link +EXPORT_SYMBOL vmlinux 0x0f094e78 pci_scan_slot EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0ce9f9 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x0f162f4e rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x0f16fe3b rtc_add_groups +EXPORT_SYMBOL vmlinux 0x0f17fc40 begin_new_exec EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f3728f9 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0f202242 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x0f2b834e kobject_set_name +EXPORT_SYMBOL vmlinux 0x0f2c8c60 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x0f31306e done_path_create EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3bf397 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x0f3de8c3 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x0f41c58e kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x0f44f2fe vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x0f501ad5 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x0f40f183 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0f4b272a scm_detach_fds EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f69a241 set_pages_wb -EXPORT_SYMBOL vmlinux 0x0f83d83e jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f94657d devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x0fa26815 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x0f8797fd mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0f8e6112 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x0fab0f68 follow_down_one EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb23bb5 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fcbb000 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x0fd4d1f0 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x0fb73857 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x0fb8ef8b touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x0fbfc3d9 input_register_handle EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fdd5eb7 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x0fe448b1 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x0ff58d1b folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x0fe4a865 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x0fe52741 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x1009f2cd rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x101d3124 inet6_offloads +EXPORT_SYMBOL vmlinux 0x10171adf redraw_screen EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103c6258 zero_fill_bio EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x104f3a31 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x1051e503 kmem_cache_free EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1060c039 dquot_initialize -EXPORT_SYMBOL vmlinux 0x10637030 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106a8bf1 phy_ethtool_get_sset_count 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 0x108ace25 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x108d736d sock_wake_async -EXPORT_SYMBOL vmlinux 0x10a21792 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x10cfffa1 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x10803e69 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x108446c4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x10a775ce nonseekable_open +EXPORT_SYMBOL vmlinux 0x10adbec9 mmc_get_card EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10eac21c dev_lstats_read +EXPORT_SYMBOL vmlinux 0x10f027b9 __folio_lock +EXPORT_SYMBOL vmlinux 0x10fa1a50 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x1105c05c scsi_print_result EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1109e842 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x1118a108 vfs_llseek -EXPORT_SYMBOL vmlinux 0x1151253b jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x11520f49 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x114d4555 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x11585367 file_update_time +EXPORT_SYMBOL vmlinux 0x116cd7b5 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x116f4a9a mmc_erase EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x119627f1 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x11b60266 free_buffer_head -EXPORT_SYMBOL vmlinux 0x11b86726 set_posix_acl -EXPORT_SYMBOL vmlinux 0x11bda55b tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x11d62d64 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x11d7fd3e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x11d9e5fe blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x11de3afa dst_release_immediate +EXPORT_SYMBOL vmlinux 0x117a7c2b __destroy_inode +EXPORT_SYMBOL vmlinux 0x11843a50 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x118d2c44 inet_frags_init +EXPORT_SYMBOL vmlinux 0x1191dfea filemap_release_folio +EXPORT_SYMBOL vmlinux 0x11933699 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x11a026e7 input_allocate_device +EXPORT_SYMBOL vmlinux 0x11bdfa4a ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x11befdba dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x11c91abb kmem_cache_size +EXPORT_SYMBOL vmlinux 0x11d21910 param_set_bool +EXPORT_SYMBOL vmlinux 0x11dea842 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x11dfd3fc md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x11e1147b neigh_destroy EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11f904f7 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x120a2d67 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x11e3435d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x11ee104e dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x11f6c360 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x11fc7f52 cdev_add +EXPORT_SYMBOL vmlinux 0x1209d0c3 lock_sock_nested EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1214d059 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x121f563d xp_free -EXPORT_SYMBOL vmlinux 0x12265225 d_splice_alias EXPORT_SYMBOL vmlinux 0x122c3a7e _printk -EXPORT_SYMBOL vmlinux 0x122c635a ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1251af4f xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x12693bb2 finalize_exec -EXPORT_SYMBOL vmlinux 0x127bc107 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x125a5a4f vfs_setpos +EXPORT_SYMBOL vmlinux 0x12766ed8 udp_gro_complete EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x127e1872 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x128fe88a tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x12a954b7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x12916a1c i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x12956679 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x129a838f locks_remove_posix +EXPORT_SYMBOL vmlinux 0x12b202ad sock_wfree +EXPORT_SYMBOL vmlinux 0x12b5a077 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cc22d2 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x12cc51ba pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x12e437cc vm_insert_pages +EXPORT_SYMBOL vmlinux 0x12ec2d0b simple_getattr +EXPORT_SYMBOL vmlinux 0x12ec5488 skb_append EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fe9b0a netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1317768c mmc_retune_pause EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x1333b508 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x131bff8b tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x132fdfb9 get_task_cred EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x1348c37c sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x134c6280 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x1357bf17 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x135ff376 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x13603ff6 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x136f1b4a rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x136c6be8 notify_change EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x13907e3e __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x139bd933 agp_alloc_bridge EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13bd817a bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x13be0183 devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13cf0fcd d_delete EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d4146a pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x13ef15fe mdio_bus_type +EXPORT_SYMBOL vmlinux 0x13eabcd5 key_revoke EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14008265 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1403f691 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x1408a37b input_register_device EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141e29b8 dget_parent +EXPORT_SYMBOL vmlinux 0x14332cb8 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x14464d78 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x14496634 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x144bbaa0 param_get_ulong +EXPORT_SYMBOL vmlinux 0x14500cec xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x1457b0f7 agp_copy_info +EXPORT_SYMBOL vmlinux 0x145f150b rw_verify_area EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x14606883 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x146285b1 param_set_charp EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147fa5cb proc_set_user -EXPORT_SYMBOL vmlinux 0x1485d0dc sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x14629030 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x146c493b fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x146cf138 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x146da268 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x146dc708 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x14791ddb dentry_open EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x148735bc pcpu_hot -EXPORT_SYMBOL vmlinux 0x1496cb83 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x149812fa devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x14a1a145 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x1493f499 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14af38a8 input_match_device_id -EXPORT_SYMBOL vmlinux 0x14c4bbf1 flush_signals EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ce4e8f xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x14cde48c fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x14ce09ca kernel_read EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14fcd610 inet_put_port -EXPORT_SYMBOL vmlinux 0x14ff20ae register_cdrom -EXPORT_SYMBOL vmlinux 0x1511a15a input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x14da5751 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x14db96d6 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x14de13fe security_path_rename +EXPORT_SYMBOL vmlinux 0x14ecb196 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1515cb53 mount_nodev EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152c9d15 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x1532ba51 vfs_get_link -EXPORT_SYMBOL vmlinux 0x1533f217 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x1543ab2b qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x154a9f69 make_kuid +EXPORT_SYMBOL vmlinux 0x154c579a ndisc_mc_map EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15679250 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x156efd23 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x157c35c1 module_layout -EXPORT_SYMBOL vmlinux 0x158c56c2 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x15aa6661 pci_clear_master -EXPORT_SYMBOL vmlinux 0x15b68fe2 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x15537dbc __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x1563f709 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x15709eef mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x15871540 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x15a221d0 dev_addr_del +EXPORT_SYMBOL vmlinux 0x15a98283 bmap EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bbc7b8 simple_get_link EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15cec980 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x15e0e22a sock_set_mark +EXPORT_SYMBOL vmlinux 0x15d4bb18 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x15f1809e ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16060da6 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x161aa340 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x161ffde9 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x160fcf20 ps2_end_command +EXPORT_SYMBOL vmlinux 0x16123d5d vme_master_request +EXPORT_SYMBOL vmlinux 0x1615b86a always_delete_dentry +EXPORT_SYMBOL vmlinux 0x16216a94 scsi_device_quiesce 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 0x164a580f security_path_unlink -EXPORT_SYMBOL vmlinux 0x165c42ae xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x16759dac tcp_child_process +EXPORT_SYMBOL vmlinux 0x1639e2eb netpoll_setup +EXPORT_SYMBOL vmlinux 0x164b19df eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x1654a35a nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x166b766d blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x1671fc1f sock_set_priority +EXPORT_SYMBOL vmlinux 0x16775d73 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x167ee43c jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x16825fb2 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x16966ea2 netlink_ack +EXPORT_SYMBOL vmlinux 0x1688ddad jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x169773b7 pci_enable_device_io EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16b1461e ihold -EXPORT_SYMBOL vmlinux 0x16b24c7d ___pskb_trim -EXPORT_SYMBOL vmlinux 0x16c7b504 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x16cca194 bio_free_pages EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d2551d __check_sticky +EXPORT_SYMBOL vmlinux 0x16d7e693 audit_log_start EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e42160 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x16f55183 inet6_getname -EXPORT_SYMBOL vmlinux 0x170659d2 inet_offloads +EXPORT_SYMBOL vmlinux 0x16f7577c tcp_seq_stop EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x173c2631 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x1756ecc9 tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x1758932f kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x1721cb3c netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x17255530 tty_devnum EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x176d210a jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x17837441 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x178472f9 fb_find_mode -EXPORT_SYMBOL vmlinux 0x1798448b discard_new_inode -EXPORT_SYMBOL vmlinux 0x17991e0d jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x17a112b6 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x17a6816e sk_dst_check +EXPORT_SYMBOL vmlinux 0x17876a70 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x178dc747 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x17a28383 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x17ba36ea param_ops_uint EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17d28dd8 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x17d9a1ac agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x17e09d45 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x17eb7df1 inc_nlink +EXPORT_SYMBOL vmlinux 0x17c691e2 __sock_create +EXPORT_SYMBOL vmlinux 0x17ce7558 dm_register_target +EXPORT_SYMBOL vmlinux 0x17ef01a1 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f52c09 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x17fd7900 dentry_create -EXPORT_SYMBOL vmlinux 0x181285fe scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x181460ff tty_vhangup -EXPORT_SYMBOL vmlinux 0x18172c6b thread_group_exited -EXPORT_SYMBOL vmlinux 0x181eadca skb_copy -EXPORT_SYMBOL vmlinux 0x1833c9eb tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x181609e7 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x18204776 register_md_personality +EXPORT_SYMBOL vmlinux 0x18320ea1 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1857f8db security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x185bc625 xattr_full_name -EXPORT_SYMBOL vmlinux 0x185c0d71 netif_skb_features -EXPORT_SYMBOL vmlinux 0x185cca48 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x18376fc6 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x183ede1c folio_alloc +EXPORT_SYMBOL vmlinux 0x184b1574 tcp_read_done EXPORT_SYMBOL vmlinux 0x185d46d5 clear_user_rep_good -EXPORT_SYMBOL vmlinux 0x1868a4b5 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x186c9275 ps2_command EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a2d74e inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x18aa8933 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x18ab6f29 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x1894dbc9 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x189d1e4f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x18abb135 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x18b2f5e6 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18e43a87 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x18e4b6d8 mdio_driver_register EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e81bc3 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x18fd2c2d __x86_indirect_call_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1907adec configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x19028444 proto_unregister +EXPORT_SYMBOL vmlinux 0x192d6866 sg_miter_skip EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x19383ba0 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1945741d inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x194cd88a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x19357db7 xfrm_register_km EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x1959b2bb __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x197b40bb dev_set_alias EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x199df100 amd_iommu_domain_clear_gcr3 EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a8ec90 proc_create_data -EXPORT_SYMBOL vmlinux 0x19b12301 filemap_get_folios -EXPORT_SYMBOL vmlinux 0x19b5be4b fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x19a23121 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x19b37c8c pci_release_region +EXPORT_SYMBOL vmlinux 0x19b9d8eb dev_set_mtu EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c62e59 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x19c21a2a folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x19d7a21b flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x19dce7ff cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19e21dc7 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x19e721d8 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x19f79503 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x1a0a37ea set_create_files_as -EXPORT_SYMBOL vmlinux 0x1a1bb41e fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x1a20eeb8 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x1a223ecc skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x19dff6ca tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x19f7a6aa blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x1a0b61e1 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x1a0fcfb7 iput +EXPORT_SYMBOL vmlinux 0x1a1fac27 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x1a351603 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x1a38864d tcf_generic_walker EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4a7de2 tcp_close EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a6c24bb pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x1a75125c unlock_buffer EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a8f1516 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x1a8a5ccf serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x1a8baa5a dev_uc_unsync EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa2663c twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x1ab2738a mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x1abb4f6a _dev_notice +EXPORT_SYMBOL vmlinux 0x1abde164 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x1abe7276 km_policy_expired EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac85e7c pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x1ad69a5a mmc_can_discard -EXPORT_SYMBOL vmlinux 0x1addda23 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x1ade48d9 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x1affa334 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x1ad4b931 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x1aef88a6 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1af11a8b netdev_crit +EXPORT_SYMBOL vmlinux 0x1afc9566 dquot_file_open +EXPORT_SYMBOL vmlinux 0x1afec53d pci_restore_state EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b01a2dc fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x1b1a7ada dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x1b267242 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x1b34da66 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1b396127 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x1b4042d3 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x1b472cff dm_table_event +EXPORT_SYMBOL vmlinux 0x1b4cd370 netpoll_parse_options EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x1b5f8ccb ip6tun_encaps EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1b9ad92e rtc_add_group -EXPORT_SYMBOL vmlinux 0x1b9b5ccb i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x1b9ff3e4 finish_no_open EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bae9b1e fb_pan_display +EXPORT_SYMBOL vmlinux 0x1bb1055c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1bb4f3f7 migrate_vma_finalize EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bcb4808 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x1bcca9bb vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0x1bd2ba83 tty_name +EXPORT_SYMBOL vmlinux 0x1bb823ec ppp_input_error +EXPORT_SYMBOL vmlinux 0x1bbd8471 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x1bd12086 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x1bd4a1f1 phy_stop EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bd76832 neigh_table_init -EXPORT_SYMBOL vmlinux 0x1c026971 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x1c0bf7d9 inet_add_offload -EXPORT_SYMBOL vmlinux 0x1c1b07b4 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x1c1f795c i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x1c2e4983 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1c4a664a dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x1c5007e6 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x1c554ba7 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x1be1b876 rproc_add +EXPORT_SYMBOL vmlinux 0x1be3228f mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1beb4871 sk_stream_error +EXPORT_SYMBOL vmlinux 0x1c235a30 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x1c496588 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x1c519b47 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x1c563aa3 pci_map_rom +EXPORT_SYMBOL vmlinux 0x1c56d5a2 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c6788b4 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x1c73dd4c user_path_create EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cd5b67f free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x1cb22cb8 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x1cbfc4ba amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x1ccc0943 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x1cd3675f param_ops_hexint EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdc5252 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x1ced9fc6 scsi_device_put +EXPORT_SYMBOL vmlinux 0x1ce36dbc tty_write_room +EXPORT_SYMBOL vmlinux 0x1cfdd030 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d09992e eisa_bus_type +EXPORT_SYMBOL vmlinux 0x1d189ced sync_inode_metadata EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d1d9056 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2b7e08 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x1d3af8e6 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x1d3dc516 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x1d368600 tty_register_driver EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d41f874 input_event -EXPORT_SYMBOL vmlinux 0x1d472610 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x1d5e30a2 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x1d68a817 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x1d73f090 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1d7683ea vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1da79ccd __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x1d9e22ec build_skb_around +EXPORT_SYMBOL vmlinux 0x1daa1177 seq_release_private +EXPORT_SYMBOL vmlinux 0x1dab7957 agp_backend_acquire EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dc14b94 freeze_bdev +EXPORT_SYMBOL vmlinux 0x1dbfac19 devm_of_iomap EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd3b409 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de30ee5 param_set_ullong EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1de89af8 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x1dea2d5c tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x1defa21c twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x1df0e0fb __bh_read -EXPORT_SYMBOL vmlinux 0x1df40d9c dump_skip -EXPORT_SYMBOL vmlinux 0x1dfa3752 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x1dfbe7ce param_set_uint -EXPORT_SYMBOL vmlinux 0x1dfd6923 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x1de790d6 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e0e84a0 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x1e635ef7 km_query +EXPORT_SYMBOL vmlinux 0x1e2edcb0 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x1e4659c5 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e9a8bad __block_write_full_page +EXPORT_SYMBOL vmlinux 0x1e77954b kobject_add +EXPORT_SYMBOL vmlinux 0x1e814ce7 audit_log +EXPORT_SYMBOL vmlinux 0x1e85ecac vme_unregister_driver EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1e9fefe8 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x1eac56fc inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x1ea0894d bioset_init +EXPORT_SYMBOL vmlinux 0x1ea0c4f6 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x1ea50c4b dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebd581d udp_seq_next +EXPORT_SYMBOL vmlinux 0x1ed7bf37 tty_kref_put EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f095001 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0x1ee1ae15 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x1ee533f1 elv_rb_add +EXPORT_SYMBOL vmlinux 0x1ee7c765 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x1ee92afd sg_miter_stop +EXPORT_SYMBOL vmlinux 0x1efb2d76 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x1f06e928 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x1f15cb3c devfreq_remove_device EXPORT_SYMBOL vmlinux 0x1f1821ae efi EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f1ed762 file_update_time -EXPORT_SYMBOL vmlinux 0x1f3a5bb1 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x1f2460c1 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x1f2fc984 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x1f3079ef dup_iter +EXPORT_SYMBOL vmlinux 0x1f5221d1 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f6e1845 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x1f7a5d22 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x1f80a45e PageMovable -EXPORT_SYMBOL vmlinux 0x1f862da1 tty_register_device -EXPORT_SYMBOL vmlinux 0x1fb578d7 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x1fbac6a6 sock_i_ino +EXPORT_SYMBOL vmlinux 0x1f57fb6e intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x1f5fe161 fb_set_var +EXPORT_SYMBOL vmlinux 0x1f8b6edb folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x1faa1e27 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x1fb02400 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x1fb11593 inet_shutdown +EXPORT_SYMBOL vmlinux 0x1fb326fc skb_condense EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fcef0d8 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fea670b mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x1fee5c26 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20026b5e new_inode EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201ae277 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x20286b78 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x201c9dd5 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2024b84e alloc_anon_inode EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c1be9 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2051acee inet6_bind -EXPORT_SYMBOL vmlinux 0x20665684 ip6_xmit -EXPORT_SYMBOL vmlinux 0x206f812c param_ops_byte -EXPORT_SYMBOL vmlinux 0x208bd2f9 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x2050711f end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2050ff02 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x20640fab logfc +EXPORT_SYMBOL vmlinux 0x207b373f param_ops_short +EXPORT_SYMBOL vmlinux 0x208865da jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x209b631d pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ab1e38 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x20b9be9b __netif_napi_del EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20f77ad3 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x21085e2c tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x20efcfb0 sock_wake_async +EXPORT_SYMBOL vmlinux 0x2117bb91 vga_get +EXPORT_SYMBOL vmlinux 0x211a985f dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x212bd071 param_get_bool -EXPORT_SYMBOL vmlinux 0x212e8839 md_update_sb -EXPORT_SYMBOL vmlinux 0x212f1fc9 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x21319ecf d_instantiate_new -EXPORT_SYMBOL vmlinux 0x2135049d disk_stack_limits +EXPORT_SYMBOL vmlinux 0x212ff83b submit_bio_wait EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21428252 folio_account_redirty -EXPORT_SYMBOL vmlinux 0x2150b9a1 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x2172f60b tcp_release_cb +EXPORT_SYMBOL vmlinux 0x214f33ec param_get_ushort EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x2178463c nf_log_register -EXPORT_SYMBOL vmlinux 0x21854fa0 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x2180fe0d vme_irq_request EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21a127d9 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x21af757e neigh_destroy -EXPORT_SYMBOL vmlinux 0x21afb88f put_fs_context -EXPORT_SYMBOL vmlinux 0x21b09c32 ppp_input -EXPORT_SYMBOL vmlinux 0x21b89d36 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x219775f5 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x21a7dac0 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x21a8ece1 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x21b0f4cf flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21d5c62c jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x21d57326 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x21d6439d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x21db3c46 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x21e131f5 cdrom_mode_select EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21fbaa6b scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x21fdf43e qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x220efa57 __do_once_done -EXPORT_SYMBOL vmlinux 0x22271c75 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x220e9235 unregister_key_type +EXPORT_SYMBOL vmlinux 0x22113abd iget_failed +EXPORT_SYMBOL vmlinux 0x2216a095 ptp_clock_event EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f392e nf_log_set EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x22622435 phy_attached_print -EXPORT_SYMBOL vmlinux 0x2267cccf from_kuid_munged -EXPORT_SYMBOL vmlinux 0x22771cae generic_ro_fops -EXPORT_SYMBOL vmlinux 0x2295b9cd sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x229a58d5 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x22364a10 sk_free +EXPORT_SYMBOL vmlinux 0x226a69b1 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x226e96b1 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x22780a7e sock_pfree +EXPORT_SYMBOL vmlinux 0x2280968f pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all -EXPORT_SYMBOL vmlinux 0x22a504b9 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x22ab0aaf __phy_resume +EXPORT_SYMBOL vmlinux 0x22b284c1 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22be9a2f proc_symlink -EXPORT_SYMBOL vmlinux 0x22c87a02 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x22cb8775 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x22cbfc5e end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x22d49ad6 skb_copy_expand EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22fe8848 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x22feb142 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x231bee9e sock_create_lite -EXPORT_SYMBOL vmlinux 0x232a26f6 sock_rfree -EXPORT_SYMBOL vmlinux 0x232bf8a5 input_inject_event -EXPORT_SYMBOL vmlinux 0x2347d059 param_set_bint -EXPORT_SYMBOL vmlinux 0x23571191 __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x22e250dd neigh_event_ns +EXPORT_SYMBOL vmlinux 0x23015456 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x2320c8ae tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x23257e39 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x23453e22 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x2349ab51 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2349bfc3 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x235b24d2 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x23601521 dec_node_page_state EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23650457 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x2375b26e vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x236e6f7e __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x23762d23 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237f011a pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x237f99ca __phy_read_mmd EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23a72f6a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x23a0e668 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bcfb26 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x23c874b7 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23cf7f96 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x23da0086 msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23ec2e6c xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x23ec6df9 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24052620 make_bad_inode -EXPORT_SYMBOL vmlinux 0x24060546 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x24081254 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x2417717d pci_get_class -EXPORT_SYMBOL vmlinux 0x2430e271 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x2433b782 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x2448502f ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x244dd64d scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x2458ecf0 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23fecac7 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x24004898 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x240090cc tso_start +EXPORT_SYMBOL vmlinux 0x242a701d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x242b2f19 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x243cb903 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x244347be get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x24485da9 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x2452ed11 devm_ioport_map EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24689224 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x246f07b1 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x24722401 udp_ioctl -EXPORT_SYMBOL vmlinux 0x24800a13 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x248411ff rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x2462db43 arp_xmit +EXPORT_SYMBOL vmlinux 0x246e96f5 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x247254a9 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x247b456c inet6_protos EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2488bb49 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x248a897b vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x24922c03 dev_activate -EXPORT_SYMBOL vmlinux 0x24948fab jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x24a11e17 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x24c4c7d0 pci_get_slot -EXPORT_SYMBOL vmlinux 0x24c6af6a sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x24a45190 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x24a79c27 tty_port_put +EXPORT_SYMBOL vmlinux 0x24b7509c dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x24bb335e reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds -EXPORT_SYMBOL vmlinux 0x24cd92b5 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x24cde50a mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d55c35 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x24e103cb backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24fc4fad tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x25017606 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x24e9e8e9 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x24fbf3a1 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x25023a90 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x251916b9 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x2522f77e vfs_statfs -EXPORT_SYMBOL vmlinux 0x25269ab7 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x252b4449 param_get_string -EXPORT_SYMBOL vmlinux 0x256548e3 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x2523a24f i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x252e76b6 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x2531897b sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x25543f97 genphy_resume +EXPORT_SYMBOL vmlinux 0x2560be22 mdio_device_reset EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x256f5a79 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25877f2e sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258b9e39 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25900972 configfs_register_group -EXPORT_SYMBOL vmlinux 0x259347a8 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x258e0fb5 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x25c15bea fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x25c5f560 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x25c63564 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x25d9f46f tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr -EXPORT_SYMBOL vmlinux 0x25de0c7b xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x25dff9f7 sock_no_connect EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25eb7888 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x25fe7f09 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x260863dc memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x260df11e seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x2629c1c6 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x2640c021 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x264be41d md_done_sync -EXPORT_SYMBOL vmlinux 0x264dad15 mr_table_dump -EXPORT_SYMBOL vmlinux 0x2658a7fb generic_write_checks +EXPORT_SYMBOL vmlinux 0x2643fd1c vfs_ioctl +EXPORT_SYMBOL vmlinux 0x26470ad1 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x2652c80b pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x26789bab tcp_v4_connect EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26953fa0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x26cf7560 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x26d83cc6 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x2698a372 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x269b3505 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x26c02c23 simple_empty +EXPORT_SYMBOL vmlinux 0x26c68952 skb_dequeue +EXPORT_SYMBOL vmlinux 0x26da6f06 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26eaa09f tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x26e349a2 pcim_enable_device EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270829bf ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x2705b649 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x270a59bb filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271a1d76 fb_show_logo +EXPORT_SYMBOL vmlinux 0x27138ffb xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x271c7514 udp_pre_connect EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272a46f3 set_page_writeback +EXPORT_SYMBOL vmlinux 0x27207d49 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273a5f44 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27549024 devm_clk_get EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2770e139 sock_no_shutdown 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 0x279368ca truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x278a289a d_instantiate_new +EXPORT_SYMBOL vmlinux 0x279a3469 _dev_emerg +EXPORT_SYMBOL vmlinux 0x27a6d12d tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x27b0424d ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x27b60fd4 twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c0778b phy_detach +EXPORT_SYMBOL vmlinux 0x27ca1cf5 page_symlink +EXPORT_SYMBOL vmlinux 0x27cb4b88 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x2817bbac pnp_device_detach +EXPORT_SYMBOL vmlinux 0x27d23d96 dma_find_channel +EXPORT_SYMBOL vmlinux 0x27dc1d64 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x27f0d863 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x280cef9a devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2829dee0 pipe_lock -EXPORT_SYMBOL vmlinux 0x2848ba89 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x283b6683 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x283b771e param_set_hexint +EXPORT_SYMBOL vmlinux 0x28487fc0 agp_generic_free_gatt_table EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x28527542 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x2850b69d md_register_thread +EXPORT_SYMBOL vmlinux 0x287137a5 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287a1372 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x287a9477 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x28850885 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x28885382 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x289771bb commit_creds -EXPORT_SYMBOL vmlinux 0x28b7801a nf_log_packet -EXPORT_SYMBOL vmlinux 0x28bba68e pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x289c6a8f flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x28abb5af iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x28ad2570 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x28ad69f4 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x28b97434 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x28c634a4 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x28d1e8da proc_mkdir +EXPORT_SYMBOL vmlinux 0x28df5343 rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28e1f675 tty_unlock -EXPORT_SYMBOL vmlinux 0x28e815b5 param_get_hexint +EXPORT_SYMBOL vmlinux 0x28e42977 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x28e6a2ca folio_write_one +EXPORT_SYMBOL vmlinux 0x28ea1fa0 blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28f9b704 __filemap_get_folio -EXPORT_SYMBOL vmlinux 0x2914e086 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x28febf23 simple_statfs +EXPORT_SYMBOL vmlinux 0x2907ddd7 simple_transaction_release EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x29263126 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x292f3203 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x294620d5 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x294d01c1 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x294dd03a iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0x2953bd5f phy_device_free -EXPORT_SYMBOL vmlinux 0x295d05fb __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x295fde05 kset_register +EXPORT_SYMBOL vmlinux 0x295b204b __free_pages EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x29687c63 d_prune_aliases EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x296ce74a tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x296e459d iterate_fd -EXPORT_SYMBOL vmlinux 0x297e3630 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2980ad57 __find_get_block EXPORT_SYMBOL vmlinux 0x2989487b nla_append -EXPORT_SYMBOL vmlinux 0x2989a5eb vme_dma_request -EXPORT_SYMBOL vmlinux 0x299b6752 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x299fd67a unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x29a14b37 dev_change_flags -EXPORT_SYMBOL vmlinux 0x29a2b72d netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x29aca789 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x298fedd8 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x299b59cc ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29b39dc1 scsi_print_result -EXPORT_SYMBOL vmlinux 0x29c666d5 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x29dce0df debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x29b76ed1 fb_get_mode +EXPORT_SYMBOL vmlinux 0x29c2c1f5 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x29c857f3 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x29d351d1 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x29d86f2f kernel_connect +EXPORT_SYMBOL vmlinux 0x29da1586 netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e767ad kthread_stop -EXPORT_SYMBOL vmlinux 0x2a17c3e1 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x29ee4703 dquot_destroy +EXPORT_SYMBOL vmlinux 0x2a060146 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x2a0faa10 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x2a1fea2a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x2a2ddf5a __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a372f5f blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x2a5cdbd2 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x2a6877ff tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x2a51e2e6 pci_iomap_range EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a730760 fqdir_init -EXPORT_SYMBOL vmlinux 0x2a85174c scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x2a857a13 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x2a7d72cf mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x2a82c681 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x2a831204 sock_no_socketpair EXPORT_SYMBOL vmlinux 0x2a85b203 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a8f90ba md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free 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 0x2aa97665 eth_header EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab794a6 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x2aca8a81 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x2acb4eaf __x86_indirect_call_thunk_r11 -EXPORT_SYMBOL vmlinux 0x2ae12eb4 pci_release_region -EXPORT_SYMBOL vmlinux 0x2af2bd10 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x2af9ef91 agp_generic_enable -EXPORT_SYMBOL vmlinux 0x2b014848 vfs_rename -EXPORT_SYMBOL vmlinux 0x2b0a26c5 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x2b12f695 bmap -EXPORT_SYMBOL vmlinux 0x2b245a44 mmc_get_card -EXPORT_SYMBOL vmlinux 0x2b25078f truncate_setsize -EXPORT_SYMBOL vmlinux 0x2b2f0c19 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x2b3835ac config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x2b575327 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x2b0c71d0 dcb_getapp +EXPORT_SYMBOL vmlinux 0x2b0f3268 to_nd_btt +EXPORT_SYMBOL vmlinux 0x2b1596e7 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2b1aecaf get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2b2202f1 __break_lease +EXPORT_SYMBOL vmlinux 0x2b332013 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x2b5694e2 filemap_fault EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b6e0aec pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x2b61a969 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x2b6d60d4 phy_device_free EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b73175c dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x2b76abac scsi_dma_map -EXPORT_SYMBOL vmlinux 0x2b90e059 put_watch_queue EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba05151 dquot_alloc EXPORT_SYMBOL vmlinux 0x2bae204e mt_find -EXPORT_SYMBOL vmlinux 0x2bb41a1f finish_open +EXPORT_SYMBOL vmlinux 0x2bb11167 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bb7c05d __x86_indirect_call_thunk_rsi -EXPORT_SYMBOL vmlinux 0x2bc7f2b1 from_kuid +EXPORT_SYMBOL vmlinux 0x2bbfb983 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x2bce58e8 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x2bd503fb dst_destroy EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be3ce2c vga_get -EXPORT_SYMBOL vmlinux 0x2be3d10d dev_disable_lro -EXPORT_SYMBOL vmlinux 0x2c0b9b18 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x2c0c45c3 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2be03968 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c3560da fwnode_iomap -EXPORT_SYMBOL vmlinux 0x2c3d164c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2c2f2fce cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x2c438847 agp_free_memory EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6b8c44 inet_sendpage +EXPORT_SYMBOL vmlinux 0x2c558045 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2c6b8ee6 start_tty EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7b001e get_thermal_instance -EXPORT_SYMBOL vmlinux 0x2c7b7da8 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8bfe8f param_set_short -EXPORT_SYMBOL vmlinux 0x2c9853bc mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x2c87db52 fsync_bdev +EXPORT_SYMBOL vmlinux 0x2c887d1d dev_mc_init +EXPORT_SYMBOL vmlinux 0x2ca581d3 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cb70f1a sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x2cbcef39 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x2cc091e7 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd60189 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce2ef6a phy_suspend -EXPORT_SYMBOL vmlinux 0x2cec437f tcp_ioctl EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cffd712 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d160fff bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x2d2e44ae xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x2d1df0ce d_rehash EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d370883 tcp_mmap EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3acaf4 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x2d413c86 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x2d46815b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x2d439248 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d4fefa8 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x2d54a02b seq_dentry -EXPORT_SYMBOL vmlinux 0x2d7b59de mdiobus_write -EXPORT_SYMBOL vmlinux 0x2d7de8b3 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x2d7f0492 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2d801cc3 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x2d5c0b9e crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2d624112 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x2d75d7b1 make_bad_inode +EXPORT_SYMBOL vmlinux 0x2d855afa free_task EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d942e9f vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db2b776 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x2da1d838 neigh_ifdown EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd4659b backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df814da set_pages_uc +EXPORT_SYMBOL vmlinux 0x2e085ebe fqdir_init EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0ca484 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x2e12cfd7 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4baea0 md_integrity_register EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e7e2ab0 file_open_root -EXPORT_SYMBOL vmlinux 0x2e93370f tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x2e96dbfd mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x2e9a0ef2 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2e9fb0ee copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x2eada295 deactivate_super -EXPORT_SYMBOL vmlinux 0x2ebcd1c5 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x2ebcdedd tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x2eb3a563 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ec82b92 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x2ed3e7e1 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee82589 set_pages_wb +EXPORT_SYMBOL vmlinux 0x2ef00f0c d_obtain_alias EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0abe7b node_data -EXPORT_SYMBOL vmlinux 0x2f0d78c8 lock_rename -EXPORT_SYMBOL vmlinux 0x2f0f34d2 inode_set_flags -EXPORT_SYMBOL vmlinux 0x2f1c1db1 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x2f05beb6 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x2f1c15e2 config_group_find_item EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f36a938 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2f371912 neigh_app_ns EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3c3e64 single_open_size -EXPORT_SYMBOL vmlinux 0x2f4eab38 dma_pool_create -EXPORT_SYMBOL vmlinux 0x2f5aa4f0 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x2f41d851 serio_bus +EXPORT_SYMBOL vmlinux 0x2f4d9da2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x2f697185 generic_fillattr EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8b2334 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x2fa25090 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x2faa000e sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x2fae7970 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x2fc8e227 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x2fca190e timestamp_truncate -EXPORT_SYMBOL vmlinux 0x2fcaf42b qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x2fd747df pci_free_irq -EXPORT_SYMBOL vmlinux 0x2fdb6e43 sk_stream_error +EXPORT_SYMBOL vmlinux 0x2fa5b1df pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x2fc02c79 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x2fdbeab1 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x2fded7d4 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe2a6c2 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x2ff3ec5c netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x2ff6de82 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x2ff799c6 sock_i_uid -EXPORT_SYMBOL vmlinux 0x2ff934d8 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x2ff9713a dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x3000b80b input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x300eeb5e sk_net_capable +EXPORT_SYMBOL vmlinux 0x2fea5b9b neigh_table_init +EXPORT_SYMBOL vmlinux 0x2ff20246 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2ff94ea0 iov_iter_init +EXPORT_SYMBOL vmlinux 0x30027ad7 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x3006e39c nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x304d22e5 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x30159f5c devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x302784b6 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x3034abbe generic_file_llseek +EXPORT_SYMBOL vmlinux 0x3037fb99 _dev_printk +EXPORT_SYMBOL vmlinux 0x305a10c1 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x3072219f dcb_setapp -EXPORT_SYMBOL vmlinux 0x3075428c pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x308dacab netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x308fc966 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x305e2ede devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x306d4acd devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x30700e38 dcache_readdir +EXPORT_SYMBOL vmlinux 0x307e5405 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x30841430 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x3084e042 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x30880ba1 unpin_user_page +EXPORT_SYMBOL vmlinux 0x3093fb09 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3097aefa devm_ioremap -EXPORT_SYMBOL vmlinux 0x30a772da devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x30a7e61f udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30ada072 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x30ae5c77 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x30c915c2 thaw_bdev -EXPORT_SYMBOL vmlinux 0x30e905e6 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x3105e838 key_unlink -EXPORT_SYMBOL vmlinux 0x3108583f noop_qdisc -EXPORT_SYMBOL vmlinux 0x310a5fe3 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x31205956 param_ops_string +EXPORT_SYMBOL vmlinux 0x30dd0d30 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x30e539cf put_ipc_ns +EXPORT_SYMBOL vmlinux 0x31014b7f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x310b57f7 __folio_alloc EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312b329e dquot_file_open +EXPORT_SYMBOL vmlinux 0x312d1f2a pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x31366bc9 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x314c5eec eisa_driver_register +EXPORT_SYMBOL vmlinux 0x31503e7b dst_release EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x3156eb34 is_bad_inode -EXPORT_SYMBOL vmlinux 0x3188c401 genlmsg_put -EXPORT_SYMBOL vmlinux 0x318a20e3 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x319439de send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x315b0631 skb_trim +EXPORT_SYMBOL vmlinux 0x31608439 cdev_del +EXPORT_SYMBOL vmlinux 0x3174189c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x3176526f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x317f8e00 try_module_get +EXPORT_SYMBOL vmlinux 0x31979bc0 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31b2dec9 dev_deactivate -EXPORT_SYMBOL vmlinux 0x31b41671 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x31c4b590 __napi_schedule -EXPORT_SYMBOL vmlinux 0x31cb1ee6 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x31d3fd3c skb_seq_read -EXPORT_SYMBOL vmlinux 0x31fa5981 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x320b5080 dm_register_target -EXPORT_SYMBOL vmlinux 0x320fd3e8 key_type_keyring +EXPORT_SYMBOL vmlinux 0x31ac0990 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x31c8b1e0 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x31cc8fe7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x31ec9b75 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x31efbbd4 folio_mapping +EXPORT_SYMBOL vmlinux 0x3202eeff nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x320e303b cdev_device_del EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32172adb generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x321ed305 param_ops_bint +EXPORT_SYMBOL vmlinux 0x3217cd95 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x321cb9e6 sock_no_listen +EXPORT_SYMBOL vmlinux 0x321f4b0c netdev_warn EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x322c9d80 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x32505c5b ip_options_compile +EXPORT_SYMBOL vmlinux 0x32461146 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x3258006f set_page_writeback EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop -EXPORT_SYMBOL vmlinux 0x326f8e5c gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32a8789d path_has_submounts -EXPORT_SYMBOL vmlinux 0x32bd8939 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x32a22b51 get_tree_nodev EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d0c268 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x32d86fe8 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x32d5bb63 padata_set_cpumask EXPORT_SYMBOL vmlinux 0x32de75a8 __x86_indirect_call_thunk_rdi +EXPORT_SYMBOL vmlinux 0x32df0d48 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32ead707 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x330885a0 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x32f2660a inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x32f38835 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x32f3ff39 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x3303e3df redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x3327b9aa ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x33286ec8 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x33344926 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x33600ec0 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x336665b9 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x3369b272 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x333b2bc1 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337959df tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x338f3eb6 inet_listen -EXPORT_SYMBOL vmlinux 0x33b3e34a inode_permission +EXPORT_SYMBOL vmlinux 0x338b5e81 __bio_advance +EXPORT_SYMBOL vmlinux 0x33a1db58 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x33a563a3 generic_writepages +EXPORT_SYMBOL vmlinux 0x33ada52e mfd_add_devices EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33b8cf4d dma_map_resource -EXPORT_SYMBOL vmlinux 0x33c27ea2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x33b91271 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x33d07fee __x86_indirect_call_thunk_r10 -EXPORT_SYMBOL vmlinux 0x33e662ed tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x33d47485 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x33d8c147 do_splice_direct +EXPORT_SYMBOL vmlinux 0x33e49a33 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x33e755ed tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f6e884 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x33fab0e4 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x33fc8c8c netif_device_attach EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x34000171 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x34066a41 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x340b118b softnet_data -EXPORT_SYMBOL vmlinux 0x340dd2f2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x340fd120 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x341d97ad param_ops_ushort +EXPORT_SYMBOL vmlinux 0x340d5814 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x341d39a2 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x341dfd82 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x342030c9 agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x342acbaf agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0x342b2529 inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0x343c86eb put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x3432bb8a vga_switcheroo_client_fb_set EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x34430807 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x34506019 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x34625fb4 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x34453868 phy_disconnect +EXPORT_SYMBOL vmlinux 0x3452d7c2 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x34534e0e fb_blank +EXPORT_SYMBOL vmlinux 0x345e243e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3462e956 skb_pull +EXPORT_SYMBOL vmlinux 0x34794181 neigh_connected_output EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x348bc590 lookup_one -EXPORT_SYMBOL vmlinux 0x348ce533 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x34983b0f configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34c7c568 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x34a69396 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34c9a48d arp_create +EXPORT_SYMBOL vmlinux 0x34cfba01 netlink_net_capable EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f4c83d __scm_destroy -EXPORT_SYMBOL vmlinux 0x34f626a0 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x34f40961 __remove_inode_hash EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x34ff6144 sock_rfree EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x350f91b7 seq_path +EXPORT_SYMBOL vmlinux 0x35147645 vme_bus_num EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351d2217 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x351fb691 mmc_free_host +EXPORT_SYMBOL vmlinux 0x3517c178 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x351f9ca8 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3522009b __filemap_get_folio EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x35448059 set_disk_ro EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x354c9cbe genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x355a684e bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x3563fd26 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x356164ee devfreq_add_device EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356e1f57 d_add_ci -EXPORT_SYMBOL vmlinux 0x357964dd generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x35839743 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x35a44e4e compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x35a55de7 inet_addr_type +EXPORT_SYMBOL vmlinux 0x35656871 ppp_input +EXPORT_SYMBOL vmlinux 0x356e2547 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bb2d95 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x35becbf3 register_shrinker -EXPORT_SYMBOL vmlinux 0x35bfbe9e __scsi_execute -EXPORT_SYMBOL vmlinux 0x35c51022 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x35dcd405 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x35eaf753 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x35ebf998 seq_read_iter -EXPORT_SYMBOL vmlinux 0x35ecc843 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x35bd04f6 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x35c75b7c param_set_short +EXPORT_SYMBOL vmlinux 0x35ee2bb9 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x35fb7e85 freeze_super +EXPORT_SYMBOL vmlinux 0x360a3f97 skb_store_bits EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x361a1ffd neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x3620ea11 d_invalidate -EXPORT_SYMBOL vmlinux 0x36220a2a phy_init_hw -EXPORT_SYMBOL vmlinux 0x363ca08f inode_init_always -EXPORT_SYMBOL vmlinux 0x36428e00 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x3619c768 block_read_full_folio +EXPORT_SYMBOL vmlinux 0x3646746d __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x3649b98d vme_register_error_handler EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x364f818b reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x364c86dc dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x365f9751 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x36700968 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3688d8f1 security_path_mknod +EXPORT_SYMBOL vmlinux 0x36800e49 from_kprojid +EXPORT_SYMBOL vmlinux 0x3686fef8 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x368ede3a proto_unregister -EXPORT_SYMBOL vmlinux 0x369f2bc8 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x36a84a4d flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x369f59fd acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x36a0ed8f rproc_free +EXPORT_SYMBOL vmlinux 0x36b1f08f ip_frag_init EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36b8b200 seq_printf -EXPORT_SYMBOL vmlinux 0x36c390a9 devm_clk_put -EXPORT_SYMBOL vmlinux 0x36d5b7f4 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x36e3f1c2 dcache_readdir -EXPORT_SYMBOL vmlinux 0x3703c071 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x37076c70 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x36b943a2 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x36bdbdd8 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x36be6222 udp_ioctl +EXPORT_SYMBOL vmlinux 0x36f7acd5 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x36fd1b1f genphy_update_link +EXPORT_SYMBOL vmlinux 0x36fe699a file_remove_privs +EXPORT_SYMBOL vmlinux 0x37071fb2 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x370e4000 phy_init_eee EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3711ef1b locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3715f8c8 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x3716e553 block_write_full_page EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x3725f557 phy_write_paged -EXPORT_SYMBOL vmlinux 0x372b4217 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x373051c7 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x37216712 __block_write_full_page EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37459af2 pci_find_capability +EXPORT_SYMBOL vmlinux 0x374934cb genphy_read_status EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3759e4ba inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x376cbde3 filemap_flush +EXPORT_SYMBOL vmlinux 0x375d70e1 ilookup5 +EXPORT_SYMBOL vmlinux 0x37697dbc xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x377b41d1 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x378373a1 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x378cc078 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x37aaf457 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x37833d49 param_get_charp +EXPORT_SYMBOL vmlinux 0x378c0964 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x378f8b8e ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x3797c4a1 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x379f5bc0 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x37a18df6 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x37abf42b devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x37b809ab dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d87099 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x37d898dc alloc_pages +EXPORT_SYMBOL vmlinux 0x37dae106 __tracepoint_read_msr EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e7fb68 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x3804b988 do_SAK -EXPORT_SYMBOL vmlinux 0x3806773b generic_block_bmap -EXPORT_SYMBOL vmlinux 0x3806e0b9 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x37e1634c udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x37e674f6 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x37f107d9 vfs_rename +EXPORT_SYMBOL vmlinux 0x37fbe09a blk_get_queue +EXPORT_SYMBOL vmlinux 0x3807862c mdiobus_scan EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3836e24d proc_remove -EXPORT_SYMBOL vmlinux 0x384472d3 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x384a6cdb clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x384e4f28 udp_poll -EXPORT_SYMBOL vmlinux 0x384e9c7f ps2_end_command +EXPORT_SYMBOL vmlinux 0x383af3b8 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x3851875a rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x386c2e53 param_set_ulong -EXPORT_SYMBOL vmlinux 0x3877ce80 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x385ffd54 iterate_dir +EXPORT_SYMBOL vmlinux 0x3876b263 can_nice +EXPORT_SYMBOL vmlinux 0x3880592b posix_test_lock +EXPORT_SYMBOL vmlinux 0x3881007d tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3892af58 iov_iter_init EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x38a32c63 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x38a65026 blk_put_queue +EXPORT_SYMBOL vmlinux 0x38a31e0e dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b3f33b fb_class -EXPORT_SYMBOL vmlinux 0x38c305c1 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x38cbf6e3 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x38d79699 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x38d9d650 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x38dad926 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x38dc10c7 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38e876ab agp_bind_memory +EXPORT_SYMBOL vmlinux 0x38ea1c36 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x38ec6b1b phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x39121e1f request_firmware +EXPORT_SYMBOL vmlinux 0x3913edfe iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x3926dcbc vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3936426b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x39360706 acpi_processor_notify_smm EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393ca1ea rproc_add -EXPORT_SYMBOL vmlinux 0x393f1429 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x39404a93 pcim_enable_device EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394a6f2b skb_store_bits +EXPORT_SYMBOL vmlinux 0x394f09fd skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x39517537 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395a83ce flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x396cc224 dump_skip_to -EXPORT_SYMBOL vmlinux 0x3975372b nd_dax_probe -EXPORT_SYMBOL vmlinux 0x39835486 skb_expand_head +EXPORT_SYMBOL vmlinux 0x395b8b6d genlmsg_put +EXPORT_SYMBOL vmlinux 0x398b4d8b mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39ab1b8d scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x39a3aa20 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x39b14593 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x39bf6c48 elv_rb_del EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39cac601 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39defabe security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39e467de inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x39e72378 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x39e66ea1 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x39f6308a vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x39f8c015 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x39fed138 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x3a1a78f2 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x3a207b4d mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x3a218482 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x3a49400d pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x3a3346dc dev_lstats_read +EXPORT_SYMBOL vmlinux 0x3a33a19c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x3a47ef18 netlink_set_err +EXPORT_SYMBOL vmlinux 0x3a4d9957 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a549195 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x3a5e8e0e d_drop -EXPORT_SYMBOL vmlinux 0x3a79f3e3 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x3a9d4f6e scsi_done_direct -EXPORT_SYMBOL vmlinux 0x3a9eb4bc mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x3aabae7e pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x3aaf4bc2 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x3aafc43e vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x3ab18a3b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x3a74f328 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x3a791242 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x3a7ff934 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x3aaf157c security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aba4871 sock_gettstamp EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3acab7ed inode_permission +EXPORT_SYMBOL vmlinux 0x3acb7861 filemap_fdatawait_keep_errors 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 0x3ae0bdde dev_mc_del_global EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3aebe77a generic_file_open +EXPORT_SYMBOL vmlinux 0x3af79602 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x3af7da28 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x3afb6b58 _copy_from_iter EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b0f1588 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x3b07b60b security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x3b1c1121 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b28f7af sock_setsockopt -EXPORT_SYMBOL vmlinux 0x3b2b063f xp_can_alloc +EXPORT_SYMBOL vmlinux 0x3b2aa5f8 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b39d229 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x3b54bb01 neigh_lookup EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b64b73b vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk -EXPORT_SYMBOL vmlinux 0x3b7653db sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x3b7ba7e8 mpage_readahead -EXPORT_SYMBOL vmlinux 0x3b7c0c1d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3b73e66a inode_nohighmem EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b8ce139 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b966997 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x3bcc99b8 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x3bb5990f folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x3bb6d273 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x3bbcf783 sock_no_linger +EXPORT_SYMBOL vmlinux 0x3bc05872 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x3bd771de kernel_getpeername +EXPORT_SYMBOL vmlinux 0x3bf4dc5e mmc_request_done EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c248363 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3c263716 inode_init_once EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c4f46ab neigh_for_each -EXPORT_SYMBOL vmlinux 0x3c5d01e3 param_set_byte -EXPORT_SYMBOL vmlinux 0x3ca71127 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x3cac160d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x3c467f8d jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3c562374 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3c5d71be mntget +EXPORT_SYMBOL vmlinux 0x3c64858a folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x3c722263 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x3c894942 set_nlink +EXPORT_SYMBOL vmlinux 0x3c8b7018 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x3c952fd5 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x3c99e24f gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cb5ed38 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cc48eec linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x3cd7e8d4 netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0x3cd84a8d scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x3cdbc635 seq_read -EXPORT_SYMBOL vmlinux 0x3cdc9af6 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x3cc207f1 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x3cd7e517 vm_map_pages EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce69861 phy_resume -EXPORT_SYMBOL vmlinux 0x3cf2dd98 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x3cff9112 block_dirty_folio -EXPORT_SYMBOL vmlinux 0x3d002cb9 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3ce9b18b netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x3ce9c457 seq_bprintf +EXPORT_SYMBOL vmlinux 0x3d02c984 finalize_exec EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0fea46 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x3d17d7b0 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3d0843c6 mdiobus_write +EXPORT_SYMBOL vmlinux 0x3d09701d tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x3d13d233 xp_alloc +EXPORT_SYMBOL vmlinux 0x3d155a9f xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x3d1579ce vme_slot_num EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d2d177f tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x3d311084 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x3d340f09 pci_restore_state -EXPORT_SYMBOL vmlinux 0x3d43ac20 add_to_pipe -EXPORT_SYMBOL vmlinux 0x3d44be64 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x3d4bcb5c dev_alloc_name -EXPORT_SYMBOL vmlinux 0x3d7d060f nd_device_register -EXPORT_SYMBOL vmlinux 0x3d98b30b scsi_remove_host -EXPORT_SYMBOL vmlinux 0x3d98ecc2 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x3d9bcf66 simple_get_link -EXPORT_SYMBOL vmlinux 0x3d9e2153 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3d508819 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x3d7226ea scsi_host_alloc EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da1fbff folio_clear_dirty_for_io 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 0x3db91d19 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x3dbe5f5f generic_file_open EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcfd7a7 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x3dd47880 phy_aneg_done EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3df1fcaf vfs_symlink EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e087d42 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x3e32c477 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3e3357c2 dev_mc_del +EXPORT_SYMBOL vmlinux 0x3e004815 __put_user_ns +EXPORT_SYMBOL vmlinux 0x3e1c3d49 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x3e1c8b77 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x3e1c93e3 inode_init_always EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3c2fe6 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x3e649670 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x3e6dffc3 napi_enable -EXPORT_SYMBOL vmlinux 0x3e7159ab default_llseek -EXPORT_SYMBOL vmlinux 0x3e8d10be fb_get_mode -EXPORT_SYMBOL vmlinux 0x3e8eaec2 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x3eac5b97 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3e43446b tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x3e4d615d disk_stack_limits +EXPORT_SYMBOL vmlinux 0x3e52020f input_open_device +EXPORT_SYMBOL vmlinux 0x3e95134d pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x3e9b1bf4 netif_device_attach +EXPORT_SYMBOL vmlinux 0x3e9df22f unregister_netdev +EXPORT_SYMBOL vmlinux 0x3ec57fa3 dev_add_pack +EXPORT_SYMBOL vmlinux 0x3ec8120f lookup_one_len EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed4979d fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x3edf54b9 drop_nlink -EXPORT_SYMBOL vmlinux 0x3ef11a87 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x3ecedd57 param_ops_long +EXPORT_SYMBOL vmlinux 0x3ee0994b d_alloc_anon +EXPORT_SYMBOL vmlinux 0x3eec7e78 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x3eecc200 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x3efc9697 fiemap_prep +EXPORT_SYMBOL vmlinux 0x3efd6754 acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f18fb1a netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x3f44354c flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x3f3b2a8c unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3f4532f8 vfs_create_mount EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4936cc vga_con EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f80e4fc xp_dma_map +EXPORT_SYMBOL vmlinux 0x3f51b142 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x3f6f3ef5 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x3f73a012 __register_chrdev +EXPORT_SYMBOL vmlinux 0x3f7ab9c8 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3f866311 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9a804e ps2_command -EXPORT_SYMBOL vmlinux 0x3f9c072f blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x3faa73c5 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x3faae64c insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x3fb0ef9a xsk_tx_release -EXPORT_SYMBOL vmlinux 0x3fbbdd5f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x3fa9b13a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x3faf228f put_disk +EXPORT_SYMBOL vmlinux 0x3fbdce2e netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc02d5b elv_rb_find -EXPORT_SYMBOL vmlinux 0x3fc19376 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x3fc3f375 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x3fcbaec5 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x3fc88fd7 blk_execute_rq EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdb0454 unregister_filesystem EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fee491e alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x3ffb2268 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x400da5ef vfs_create_mount +EXPORT_SYMBOL vmlinux 0x3fe62a17 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3fee1875 filp_close +EXPORT_SYMBOL vmlinux 0x40132ed7 kthread_create_worker EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x4034b1aa netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x402d44e7 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x40378ed4 vc_cons +EXPORT_SYMBOL vmlinux 0x403a6cff pipe_unlock +EXPORT_SYMBOL vmlinux 0x403b3553 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x40471713 dev_set_threaded EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x405b3102 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x405ee916 param_set_copystring -EXPORT_SYMBOL vmlinux 0x408040f7 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x40680b8a mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x40768393 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x4081c2c6 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x40821378 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x408714ee mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a21202 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x40a5a4bb d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40baa389 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x40c143a8 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x40c17cf5 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x40b887b2 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x40be842a is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x40bf9bb2 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d185ac __ClearPageMovable EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e1f7c0 d_lookup -EXPORT_SYMBOL vmlinux 0x40f24ec8 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x40f51f8b flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x41084f8a __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x4105c7cc __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x411fae67 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x412805e5 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x413994b0 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41846657 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x41630443 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x416dac7c end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x41770eea skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418bd492 bio_uninit +EXPORT_SYMBOL vmlinux 0x4192b7d3 adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41a5f7e3 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x41a93d74 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x41b1f543 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x41e437c4 user_revoke +EXPORT_SYMBOL vmlinux 0x41a4e69b phy_find_first +EXPORT_SYMBOL vmlinux 0x41b2a0c3 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x41e19dae devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f2b494 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x41f66830 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x4202fc60 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x42109639 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x42127566 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x4212fd25 skb_checksum -EXPORT_SYMBOL vmlinux 0x4239ef00 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x4242eaf9 xen_alloc_unpopulated_pages EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42554382 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x4256a13b inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4259d56e dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x425c6626 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x426acaea jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x42778768 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x42a9afc9 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x42bc51f4 kill_pgrp +EXPORT_SYMBOL vmlinux 0x426b580d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x427c3118 regset_get +EXPORT_SYMBOL vmlinux 0x427e6368 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x42944026 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x42a0ea73 devm_register_netdev EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42cb9f71 filp_open -EXPORT_SYMBOL vmlinux 0x42d0f839 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x42c0450f ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x42c0d00f simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x42d2c116 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x42daaf63 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x42de9db1 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x42ec64a5 dm_put_device EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fa93c3 clocksource_unregister EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4308f4ff ipv4_mtu -EXPORT_SYMBOL vmlinux 0x430b214d pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x4312253f bdi_alloc -EXPORT_SYMBOL vmlinux 0x431524e4 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x4316e844 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x431e6289 netdev_crit -EXPORT_SYMBOL vmlinux 0x43212cc4 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x43115cf4 make_kgid +EXPORT_SYMBOL vmlinux 0x4314ff32 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x434e3b18 pnp_get_resource EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435bb8a5 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x4363f7b3 nf_log_set +EXPORT_SYMBOL vmlinux 0x4355f1d8 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437c0a18 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x4381dede pnp_request_card_device EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43876579 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x438c831c init_task -EXPORT_SYMBOL vmlinux 0x439ded33 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x43a2b06d param_ops_invbool -EXPORT_SYMBOL vmlinux 0x43ab642e seq_write +EXPORT_SYMBOL vmlinux 0x439b53fa take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b4216f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x43b7c203 netif_receive_skb EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d71fe4 filemap_fault -EXPORT_SYMBOL vmlinux 0x43dc8d7a update_region -EXPORT_SYMBOL vmlinux 0x43e8907e iov_iter_alignment EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x43ffd94d __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0x44032e5a input_setup_polling -EXPORT_SYMBOL vmlinux 0x440c649f create_empty_buffers -EXPORT_SYMBOL vmlinux 0x4410a996 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x43fa9a4d netlink_capable +EXPORT_SYMBOL vmlinux 0x4401f9b5 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x442262f3 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x44338b06 dump_page +EXPORT_SYMBOL vmlinux 0x443df483 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x4445a61c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x44428732 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4451d9af netif_carrier_on +EXPORT_SYMBOL vmlinux 0x4460c8a1 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4483e759 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x446480b8 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x4464e9cd phy_read_paged +EXPORT_SYMBOL vmlinux 0x448ed3cd nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event -EXPORT_SYMBOL vmlinux 0x4497c5b2 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x44941484 __check_sticky +EXPORT_SYMBOL vmlinux 0x44984437 pcim_iomap_table EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b94603 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x44b9ab17 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x44c30b07 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x44cbf9ae skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x44e47e2b d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x44c836cd param_get_byte +EXPORT_SYMBOL vmlinux 0x44cee83b uart_update_timeout +EXPORT_SYMBOL vmlinux 0x44d33697 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x44e98b26 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ea8674 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x44fd9f01 pv_ops EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450a70b3 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x45128f99 netlink_unicast -EXPORT_SYMBOL vmlinux 0x4515df5c input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x45143e7f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x451e07f9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x451f55c8 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452f97bb sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x45387ab6 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x453add3b vfs_readlink +EXPORT_SYMBOL vmlinux 0x452e953f convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x4535bc1f bio_reset EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455c33df pnp_release_card_device EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x456f6464 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x4573f2af __mdiobus_read EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457b26a7 sock_bind_add -EXPORT_SYMBOL vmlinux 0x45809742 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x45828eee dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x45830469 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x45abd711 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x45b0e78d sg_miter_skip -EXPORT_SYMBOL vmlinux 0x45b5593f ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x45b7f756 padata_free_shell -EXPORT_SYMBOL vmlinux 0x45baf6e7 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x457d8282 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x459c374d configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x45a70824 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x45a7101f reuseport_alloc +EXPORT_SYMBOL vmlinux 0x45aaa32b agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x45c13aab ip6_output +EXPORT_SYMBOL vmlinux 0x45d0dd6e devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45dc39c2 tty_port_close +EXPORT_SYMBOL vmlinux 0x45e4b906 input_copy_abs EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45fa2a53 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x45ebc2c5 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x4609305a tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4611a505 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x46133278 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x4616edd4 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x461ff2c2 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x463082b0 kobject_set_name -EXPORT_SYMBOL vmlinux 0x463f5461 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x461a8248 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x463256ae ethtool_notify +EXPORT_SYMBOL vmlinux 0x46332bfe xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x46340c11 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x463f436d vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x4643f366 vm_mmap EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0x464c3627 skb_ext_add -EXPORT_SYMBOL vmlinux 0x46564d65 path_put -EXPORT_SYMBOL vmlinux 0x46567e8b vc_resize -EXPORT_SYMBOL vmlinux 0x465ab08a ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4664190a from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x46646cd0 register_md_personality +EXPORT_SYMBOL vmlinux 0x465edf84 __register_binfmt +EXPORT_SYMBOL vmlinux 0x466251e8 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x467fdf0c jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x468a61c1 dm_io +EXPORT_SYMBOL vmlinux 0x468ae3e4 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46ab81b9 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x46b42ac6 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x46bb022a pci_read_config_word +EXPORT_SYMBOL vmlinux 0x46bebaef __pci_register_driver +EXPORT_SYMBOL vmlinux 0x46bf2752 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x46f264b6 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x46fb1936 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x46fc557f vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x47002cda simple_transaction_read +EXPORT_SYMBOL vmlinux 0x46da2fcd fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x46e9dbbf rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x47140039 page_pool_destroy EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4733962d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x4720b6ae __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x4740ee0f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x47502395 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x4756c32e generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x47612b32 input_unregister_handler EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477391a3 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x478537ab end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x4794ac25 elv_rb_add +EXPORT_SYMBOL vmlinux 0x477160e9 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x477a3042 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x477c0fef sget +EXPORT_SYMBOL vmlinux 0x4785a032 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x47883018 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x478e9bdd request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x47942e80 nf_log_unregister EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47a929b1 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x47b5320e textsearch_prepare +EXPORT_SYMBOL vmlinux 0x47a018d5 d_move EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47cd5ea9 generic_perform_write -EXPORT_SYMBOL vmlinux 0x47ce9aa5 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x47c9109d send_sig_mceerr EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47ddc02f agp_enable -EXPORT_SYMBOL vmlinux 0x47de48e2 bio_init -EXPORT_SYMBOL vmlinux 0x47fade81 seq_putc -EXPORT_SYMBOL vmlinux 0x4801395a md_reload_sb -EXPORT_SYMBOL vmlinux 0x48104950 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4801d256 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x480c9c76 pcie_set_mps EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x483a2203 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x483b6919 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x484631b9 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484b669a pci_iomap EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x48520b1f page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0x4856e859 posix_lock_file EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486358e6 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x4889e378 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x48669499 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x48680b2b __netif_napi_del +EXPORT_SYMBOL vmlinux 0x4873d335 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x487438e0 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a0bbbc file_ns_capable EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48aaffa0 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x48b1363c eth_type_trans -EXPORT_SYMBOL vmlinux 0x48b26879 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c6070c sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x48d16430 scsi_done_direct 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 0x48d995ed fb_set_suspend -EXPORT_SYMBOL vmlinux 0x48da9546 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x48e9fe33 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x48ecee41 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x48f6f5aa __break_lease +EXPORT_SYMBOL vmlinux 0x48f40b32 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x48f4a674 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x48f821f0 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x48feda5b inet6_add_protocol EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x491d5d9b flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x49418524 dentry_open -EXPORT_SYMBOL vmlinux 0x4946dbf6 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4948ab82 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x490be3ae set_page_dirty +EXPORT_SYMBOL vmlinux 0x491ea66c fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x4929edf3 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x4934c785 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495330d4 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x4957c338 phy_config_aneg EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4966c36f security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x4966c918 pci_iounmap +EXPORT_SYMBOL vmlinux 0x4967c423 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49702620 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x4986cdae locks_remove_posix +EXPORT_SYMBOL vmlinux 0x49882f51 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x498da52b __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x49921914 ip_output EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49acd15a max8925_reg_write EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49d0911f sync_filesystem -EXPORT_SYMBOL vmlinux 0x49f455fc rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x4a1fe099 inode_update_time -EXPORT_SYMBOL vmlinux 0x4a2367f6 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x4a24b196 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x4a2c98f7 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x49b30106 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x49c20de3 send_sig +EXPORT_SYMBOL vmlinux 0x49ccb4f3 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x49cdaea3 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x4a083397 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x4a1c7f5d __i2c_transfer +EXPORT_SYMBOL vmlinux 0x4a26fb8a pci_release_regions +EXPORT_SYMBOL vmlinux 0x4a360156 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4a39429c bio_init_clone EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4d20ef tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x4a5e147a phy_get_pause -EXPORT_SYMBOL vmlinux 0x4a875c63 key_revoke +EXPORT_SYMBOL vmlinux 0x4a59aeeb blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x4a5abaa8 dma_pool_create +EXPORT_SYMBOL vmlinux 0x4a6a033a neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4a6a26fb filemap_flush +EXPORT_SYMBOL vmlinux 0x4a80cc05 vlan_vid_del EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa680b2 tcf_em_register EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4acdbbef kobject_put +EXPORT_SYMBOL vmlinux 0x4abef190 tcf_register_action +EXPORT_SYMBOL vmlinux 0x4acb96bf security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x4aced1bc __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4ad0f073 d_instantiate +EXPORT_SYMBOL vmlinux 0x4ad5ac02 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x4adda0f0 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aec6d49 simple_rename EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4affbadc dev_mc_sync EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0f8552 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4b2bd808 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b41eec7 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x4b5609ee dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0x4b63d569 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x4b6a0703 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x4b6ced18 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b803fc3 __register_binfmt -EXPORT_SYMBOL vmlinux 0x4b810aac peernet2id -EXPORT_SYMBOL vmlinux 0x4b9cdbd2 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x4bbbca1d phy_error -EXPORT_SYMBOL vmlinux 0x4bcaaa4f find_inode_rcu +EXPORT_SYMBOL vmlinux 0x4b7c131b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x4b7eb21c n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x4b87c1e1 seq_file_path +EXPORT_SYMBOL vmlinux 0x4b9b1dd7 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x4ba5492c skb_pull_data +EXPORT_SYMBOL vmlinux 0x4bab33f5 unregister_console +EXPORT_SYMBOL vmlinux 0x4bb3e92b set_create_files_as +EXPORT_SYMBOL vmlinux 0x4bcb8edc xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4be83d16 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x4bee452e inode_io_list_del +EXPORT_SYMBOL vmlinux 0x4bee8cab xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4c0053ab i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x4bfbd42c mount_subtree +EXPORT_SYMBOL vmlinux 0x4c033d8b generic_file_read_iter EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c1664cb generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x4c1a964b vfs_getattr EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c29d3bc skb_split -EXPORT_SYMBOL vmlinux 0x4c36f0a0 tcp_make_synack EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4ab593 address_space_init_once -EXPORT_SYMBOL vmlinux 0x4c4e2a95 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x4c51f26d bioset_init -EXPORT_SYMBOL vmlinux 0x4c8dffe1 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x4c940c44 con_is_bound +EXPORT_SYMBOL vmlinux 0x4c74963c tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4c772707 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4c7b4697 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x4c7deeb8 t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4c9d5ecd simple_rmdir -EXPORT_SYMBOL vmlinux 0x4c9f0832 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x4cc414ea get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x4ca50408 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x4cb5c496 __module_get +EXPORT_SYMBOL vmlinux 0x4cb9551c xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x4cbc54b5 pci_find_capability EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4cdb8da5 mmc_command_done -EXPORT_SYMBOL vmlinux 0x4ce853cb devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x4d028c1b tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x4d081568 km_policy_expired -EXPORT_SYMBOL vmlinux 0x4d1ed2fa tty_write_room +EXPORT_SYMBOL vmlinux 0x4cd65c08 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x4d0bb6c7 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d2eb5e8 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x4d2f2ad7 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x4d37b3c2 tcf_classify -EXPORT_SYMBOL vmlinux 0x4d3875c1 config_item_set_name -EXPORT_SYMBOL vmlinux 0x4d3d6a17 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x4d475f34 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x4d513698 locks_free_lock -EXPORT_SYMBOL vmlinux 0x4d64d33f reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x4d6a97c4 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x4d877969 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x4d8c5a61 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x4d317f82 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x4d5f1805 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4d6415d6 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x4d680ec9 napi_build_skb +EXPORT_SYMBOL vmlinux 0x4d7bf46e ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x4d85abb7 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x4d915b3f simple_unlink EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db34475 send_sig -EXPORT_SYMBOL vmlinux 0x4dbd432d tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x4dbe1aba iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4db1dc4d scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x4dbd5c89 simple_write_begin EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4de14fbe nd_integrity_init +EXPORT_SYMBOL vmlinux 0x4de45859 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df18ca2 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df47c31 scm_detach_fds EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4dfec6f7 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x4e02bc7f input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x4e053133 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x4e0b44f1 devm_ioremap EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e353676 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4e288943 vga_switcheroo_unlock_ddc EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e4be2d0 __seq_open_private EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e636d42 generic_fadvise +EXPORT_SYMBOL vmlinux 0x4e57d344 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x4e580e6b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x4e64e039 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6a04b7 write_inode_now +EXPORT_SYMBOL vmlinux 0x4e69aefd sget_fc EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e8bedbe fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x4e8dbb5b filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x4e90fc11 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x4e91076c inet_bind +EXPORT_SYMBOL vmlinux 0x4e7fbef0 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x4e981a81 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea2d294 acpi_dev_uid_to_integer EXPORT_SYMBOL vmlinux 0x4ea78bab __x86_indirect_call_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4eaced1e dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eafc5e0 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x4eb0b0ee cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x4eb12d83 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x4eb471c5 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ed3759d dev_mc_init -EXPORT_SYMBOL vmlinux 0x4ee6ba5f __put_devmap_managed_page_refs -EXPORT_SYMBOL vmlinux 0x4eefd3ce rproc_boot -EXPORT_SYMBOL vmlinux 0x4f0d0a92 find_vma -EXPORT_SYMBOL vmlinux 0x4f122d19 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x4eebf0db blk_put_queue +EXPORT_SYMBOL vmlinux 0x4efbcd5e sk_common_release +EXPORT_SYMBOL vmlinux 0x4efcfe4f phy_resume +EXPORT_SYMBOL vmlinux 0x4f0849fe vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x4f0924d9 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x4f100e96 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x4f11b42a inet_del_protocol EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1d7a04 input_get_timestamp EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel -EXPORT_SYMBOL vmlinux 0x4f21a787 devm_iounmap EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f24a326 __fs_parse -EXPORT_SYMBOL vmlinux 0x4f27af6c devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x4f2adcd0 dev_add_pack -EXPORT_SYMBOL vmlinux 0x4f34821c tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x4f448136 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x4f386ef3 complete_request_key +EXPORT_SYMBOL vmlinux 0x4f419a0f skb_vlan_push +EXPORT_SYMBOL vmlinux 0x4f49d0cb flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x4f533c9d page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4f71b363 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x4f770b58 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x4f77d420 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x4f878f97 security_sb_remount -EXPORT_SYMBOL vmlinux 0x4f9079bb __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4f773136 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x4f7dfa75 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4f85c3cf simple_setattr +EXPORT_SYMBOL vmlinux 0x4f86da9b pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x4f968d63 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x4fa032b1 dev_addr_del -EXPORT_SYMBOL vmlinux 0x4fa7fc65 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x4fae6472 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x4fba0036 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x4fc776fa tty_port_close_start -EXPORT_SYMBOL vmlinux 0x4fd3eb2e security_inode_init_security +EXPORT_SYMBOL vmlinux 0x4fb6b421 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x4fc42b0d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x4fc46dfd inet_sendpage +EXPORT_SYMBOL vmlinux 0x4fc9ac58 rproc_del EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe0c741 phy_device_register EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid -EXPORT_SYMBOL vmlinux 0x4ff41baf end_page_writeback +EXPORT_SYMBOL vmlinux 0x4ff3c2ba __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500d1629 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x500d2d89 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x5018a51a scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x501b2e4b uart_update_timeout +EXPORT_SYMBOL vmlinux 0x500b0452 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x50178028 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x501ec5cf tty_port_close_start +EXPORT_SYMBOL vmlinux 0x50209572 unload_nls EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502931a2 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x5029a9a7 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x50586509 simple_link +EXPORT_SYMBOL vmlinux 0x5034320d kthread_bind +EXPORT_SYMBOL vmlinux 0x503a9982 vif_device_init +EXPORT_SYMBOL vmlinux 0x503e98c7 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x503eee44 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x50501699 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x505ebeb4 param_set_long EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5070d2c7 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x5072f40b xsk_tx_release +EXPORT_SYMBOL vmlinux 0x5085f92e blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508b6414 filemap_write_and_wait_range 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 0x50ab24e5 __fput_sync -EXPORT_SYMBOL vmlinux 0x50ad8e76 mmc_can_erase 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 0x50bf1d85 __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50cddd4a sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x50c7928e pci_write_config_byte EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e61d18 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x50f8e741 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5123b70a md_error -EXPORT_SYMBOL vmlinux 0x513a5f52 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x511dc18d acpi_device_hid EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x513d736e jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x51402498 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x51422a44 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51530494 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x5154b733 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x515b25f1 folio_add_lru -EXPORT_SYMBOL vmlinux 0x5162fb16 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x515f08a9 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516f786c tty_unregister_device -EXPORT_SYMBOL vmlinux 0x51780ded neigh_ifdown -EXPORT_SYMBOL vmlinux 0x5186add0 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x518dd49b tcf_action_exec -EXPORT_SYMBOL vmlinux 0x5199c39a blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x519a4628 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x51a0a9dd inet_stream_connect -EXPORT_SYMBOL vmlinux 0x51a29209 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x519ff5e4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x51a4b6cc netif_tx_lock EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51a52bbe ip_defrag -EXPORT_SYMBOL vmlinux 0x51b8c787 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x51c0ce97 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x51c3ad75 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x51aef97d devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x51c39acd wake_up_process +EXPORT_SYMBOL vmlinux 0x51c740f8 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x51d09f88 tcp_mmap EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d59215 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x51e75c88 init_special_inode EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 -EXPORT_SYMBOL vmlinux 0x51f4fc1d md_write_inc -EXPORT_SYMBOL vmlinux 0x51fc8445 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x523759c4 __block_write_begin -EXPORT_SYMBOL vmlinux 0x523d11f6 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x523f56b3 dev_load -EXPORT_SYMBOL vmlinux 0x52404740 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x5256c7aa convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x52581f54 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x526be824 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x51f2b7e2 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x52092ad1 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x52155e36 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x523031d4 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x523501f3 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x523b1e40 read_cache_folio +EXPORT_SYMBOL vmlinux 0x52444e87 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5276b0c8 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x527e1366 pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a9a1ea jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x52b18196 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x52c3fa95 has_capability +EXPORT_SYMBOL vmlinux 0x52999cec input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x52a8be6d finish_open +EXPORT_SYMBOL vmlinux 0x52b824d5 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x52c77a38 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x52d364f5 md_flush_request +EXPORT_SYMBOL vmlinux 0x52d3ebe7 inode_init_owner EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d834be done_path_create -EXPORT_SYMBOL vmlinux 0x52d964df blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x52dbde3f nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x52dee012 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x530517cb agp_bind_memory -EXPORT_SYMBOL vmlinux 0x530833ca genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x5304fe80 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x530533c7 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5312beb3 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x53285e67 get_cached_acl +EXPORT_SYMBOL vmlinux 0x5323411f xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x5328201b phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533bda8c rtnl_notify -EXPORT_SYMBOL vmlinux 0x5345f98b __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x5353b202 param_set_ushort +EXPORT_SYMBOL vmlinux 0x5345649d netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x53562229 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x5362959a generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x53652efb pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x5366286d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x536a9a34 framebuffer_release +EXPORT_SYMBOL vmlinux 0x536ff821 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x537594a0 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x5379922c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x538fcd42 dev_uc_del EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53b1806f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x53ab280c path_put +EXPORT_SYMBOL vmlinux 0x53ab851a jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53bdadb1 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x53d0632d sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x53d0810b tcf_block_get -EXPORT_SYMBOL vmlinux 0x53dd2973 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x53eced33 can_nice -EXPORT_SYMBOL vmlinux 0x53ed40e4 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x5406d3bc __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x540714a5 __folio_lock +EXPORT_SYMBOL vmlinux 0x53c1cfa9 rproc_detach +EXPORT_SYMBOL vmlinux 0x53ce8a5f tty_check_change +EXPORT_SYMBOL vmlinux 0x53cf7c5c blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x53e8fd6a __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x53f6da36 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x540e88ee pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x5426fe1c pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x542df55f __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x5435edf3 vga_client_register +EXPORT_SYMBOL vmlinux 0x54274b65 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x5431ca33 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54414006 folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x54591757 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x547e07bb devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x546f17dc skb_dump EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x5483a0e4 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x54930d75 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x548bf9d8 current_in_userns 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 0x54b52def napi_consume_skb +EXPORT_SYMBOL vmlinux 0x54b704a2 ps2_begin_command EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f361c5 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x54fe0bde agp_copy_info +EXPORT_SYMBOL vmlinux 0x5502c821 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x551b80b6 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55367cc3 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x55213f87 pci_get_slot +EXPORT_SYMBOL vmlinux 0x55336418 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0x553e5178 dma_find_channel +EXPORT_SYMBOL vmlinux 0x553c7da0 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x5547e5a7 alloc_fcdev EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554c1874 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x55607366 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5557f26b cdrom_check_events +EXPORT_SYMBOL vmlinux 0x5558ccac filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x55637614 pcim_iomap EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache -EXPORT_SYMBOL vmlinux 0x55669d5a fb_blank +EXPORT_SYMBOL vmlinux 0x556a66d6 dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x556dee0a inet_release -EXPORT_SYMBOL vmlinux 0x55807fc9 d_instantiate EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x558e2c74 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x559c841c pskb_expand_head -EXPORT_SYMBOL vmlinux 0x55c47f79 audit_log_start -EXPORT_SYMBOL vmlinux 0x55daf0ce pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x5597f120 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x559d3ae0 follow_down +EXPORT_SYMBOL vmlinux 0x55c8959f pnp_activate_dev EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ee914c nd_btt_version EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x55fb9f05 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x5609fb36 would_dump -EXPORT_SYMBOL vmlinux 0x5615eca9 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x561d1552 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x5629c958 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x5631117e irq_set_chip +EXPORT_SYMBOL vmlinux 0x562c9061 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x56308cdd bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x563160eb ilookup +EXPORT_SYMBOL vmlinux 0x56319396 xp_dma_map EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56367106 vme_irq_free -EXPORT_SYMBOL vmlinux 0x563ed705 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x563a4171 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564e83a3 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x565557e5 seq_bprintf -EXPORT_SYMBOL vmlinux 0x565cea4b keyring_clear +EXPORT_SYMBOL vmlinux 0x5654a1e1 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x5654cb0e pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x566cf8a8 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x5675c82a dquot_disable EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56823653 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x56851b29 netdev_printk -EXPORT_SYMBOL vmlinux 0x568ef230 kobject_init -EXPORT_SYMBOL vmlinux 0x5691a211 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x5692f26c dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x56a9a2b2 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x568602b3 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x56c7d819 tcp_splice_read EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56e347f7 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x57277b94 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x572ecc58 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x56cf61ba vga_put +EXPORT_SYMBOL vmlinux 0x56e04a22 sock_create_kern +EXPORT_SYMBOL vmlinux 0x56fbc9ed amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x5706f933 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x570c92d2 phy_attach +EXPORT_SYMBOL vmlinux 0x570df076 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x57155ab3 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x571cd470 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x5721b9d7 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x57358dae __phy_resume +EXPORT_SYMBOL vmlinux 0x5739f8d8 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x57445f6e get_phy_device EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x575535e3 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575c4ee8 noop_llseek -EXPORT_SYMBOL vmlinux 0x575de24e free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x5776de81 scsi_done -EXPORT_SYMBOL vmlinux 0x577a2813 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x57835317 find_vma_intersection EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x57904158 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57aa61fa netif_device_detach +EXPORT_SYMBOL vmlinux 0x57ab832b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x57b1fee8 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x57b2a561 get_cached_acl EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57bcbaea __x86_indirect_call_thunk_r14 -EXPORT_SYMBOL vmlinux 0x57c2b268 rproc_add_carveout EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57e148e4 bio_split -EXPORT_SYMBOL vmlinux 0x57ef9497 __devm_release_region +EXPORT_SYMBOL vmlinux 0x57eab09e uart_add_one_port +EXPORT_SYMBOL vmlinux 0x57eac584 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x57f53645 phy_attached_info +EXPORT_SYMBOL vmlinux 0x58031946 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x58118b04 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x58119a10 nf_reinject +EXPORT_SYMBOL vmlinux 0x5817792a setattr_prepare EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58262167 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58369e4a genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5859031b netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0x5874527f tty_devnum +EXPORT_SYMBOL vmlinux 0x584ec58b uart_match_port +EXPORT_SYMBOL vmlinux 0x585d59f0 input_mt_init_slots EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5882a8f4 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x58857ff8 dma_fence_describe EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x58a7a28d sock_no_ioctl EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c2e69d scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x58c78516 put_disk -EXPORT_SYMBOL vmlinux 0x58ce1aaf udp_seq_ops -EXPORT_SYMBOL vmlinux 0x58d26c36 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x58ce9465 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x58cfdabc sock_i_uid +EXPORT_SYMBOL vmlinux 0x58d1d991 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x58d67569 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f30e73 bpf_link_get_from_fd -EXPORT_SYMBOL vmlinux 0x59018f5c dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x590e9e78 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x5932004b param_ops_ulong +EXPORT_SYMBOL vmlinux 0x58ecf746 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x58f5bdf1 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x58fff192 backlight_device_register +EXPORT_SYMBOL vmlinux 0x592d95e8 eth_type_trans EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x595def90 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x597bd35d ethtool_notify +EXPORT_SYMBOL vmlinux 0x595da2cd skb_expand_head +EXPORT_SYMBOL vmlinux 0x597deae9 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x5989f3c1 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x599428d4 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x59948e97 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b4002d xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x59ac1d62 dma_resv_iter_first_unlocked EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59bbccb0 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x59c1c92c unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x59f64363 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x59fc22ee crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x59b76840 sk_wait_data +EXPORT_SYMBOL vmlinux 0x59c0e3cd __skb_get_hash +EXPORT_SYMBOL vmlinux 0x59cf7eac input_get_timestamp +EXPORT_SYMBOL vmlinux 0x59d08efc pci_disable_msi +EXPORT_SYMBOL vmlinux 0x59de7b30 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x5a02dec7 ndisc_ns_create EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a201cb2 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x5a10052a fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x5a148de8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x5a21a1d3 kmem_cache_create EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2df4a2 get_task_cred -EXPORT_SYMBOL vmlinux 0x5a2f1084 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x5a32e1b2 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5a2b63b5 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x5a3b50f5 empty_aops EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a492379 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a502849 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a6f8230 __d_drop -EXPORT_SYMBOL vmlinux 0x5a72a6b8 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5a5cd2b5 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x5a8c871b send_sig_info +EXPORT_SYMBOL vmlinux 0x5a918f7d blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a947074 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x5a987a37 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5ad799a1 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x5ab446d6 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x5ac0ceba put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x5ad0e9d3 netlink_unicast +EXPORT_SYMBOL vmlinux 0x5ad2957f genl_unregister_family EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5af220b0 regset_get -EXPORT_SYMBOL vmlinux 0x5b00960b security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x5b0c56e7 d_alloc_name -EXPORT_SYMBOL vmlinux 0x5b158ce2 rt6_lookup -EXPORT_SYMBOL vmlinux 0x5b1fa5dd follow_down_one -EXPORT_SYMBOL vmlinux 0x5b2d0b23 genl_notify -EXPORT_SYMBOL vmlinux 0x5b2edfa5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x5af6d420 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x5afba1fe phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x5b14f54c igrab +EXPORT_SYMBOL vmlinux 0x5b1d68c7 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x5b2ce3bb scsi_scan_target EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b332cb2 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b48b1ad tty_do_resize +EXPORT_SYMBOL vmlinux 0x5b499fd2 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b63be2c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x5b5bfe33 request_key_rcu EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b66e8a5 param_get_short -EXPORT_SYMBOL vmlinux 0x5b70bd2a security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x5b7c143c tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk -EXPORT_SYMBOL vmlinux 0x5b8f92a7 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x5b90e510 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x5bcacf62 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x5bce3bd1 dma_ops +EXPORT_SYMBOL vmlinux 0x5b8c9d1b d_exact_alias +EXPORT_SYMBOL vmlinux 0x5b8ff327 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x5b96469a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x5bb873ee vfs_unlink EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd4ffd1 seq_puts EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf7fd44 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x5c13fbe0 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x5c1cc480 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x5bfe0f56 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5c01396b acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x5c0367b9 dump_skip +EXPORT_SYMBOL vmlinux 0x5c08fa15 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x5c0db055 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x5c1b712f tcp_poll +EXPORT_SYMBOL vmlinux 0x5c1cc235 skb_checksum +EXPORT_SYMBOL vmlinux 0x5c2054a1 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2dd7ea devm_rproc_add +EXPORT_SYMBOL vmlinux 0x5c3bb5d8 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c403006 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x5c44581c netlink_set_err -EXPORT_SYMBOL vmlinux 0x5c53df00 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x5c5420e2 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x5c8aa67e d_delete -EXPORT_SYMBOL vmlinux 0x5c9cd5ee d_tmpfile -EXPORT_SYMBOL vmlinux 0x5ca8e290 pci_release_regions -EXPORT_SYMBOL vmlinux 0x5cab9f89 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x5cbd943a blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x5cc4adf9 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x5cc4dfa7 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x5cdb7ad2 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x5cddbce2 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x5cf44242 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5c53812f tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x5c6aaf34 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x5c7e0d8c __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x5c861e68 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x5ca421e4 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x5cb060a4 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x5ce19b54 page_get_link +EXPORT_SYMBOL vmlinux 0x5cef545c forget_all_cached_acls EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf7712a vga_switcheroo_fini_domain_pm_ops EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d23fd89 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x5d2c7283 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x5d2efe0a misc_register +EXPORT_SYMBOL vmlinux 0x5d094f4a gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x5d117a53 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5d19bdd8 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x5d3de0ef udplite_prot +EXPORT_SYMBOL vmlinux 0x5d48e4d9 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4c78b2 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x5d4dec91 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x5d7557a8 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x5d78f3ee tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x5d7c8c90 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0x5d956653 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x5d97164d unpin_user_page -EXPORT_SYMBOL vmlinux 0x5d9b1a76 devm_memunmap -EXPORT_SYMBOL vmlinux 0x5daa7efa simple_transaction_get -EXPORT_SYMBOL vmlinux 0x5dbed6fe input_register_device -EXPORT_SYMBOL vmlinux 0x5de85e6c add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0x5deb23f2 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x5e023576 folio_mapping +EXPORT_SYMBOL vmlinux 0x5d613415 single_release +EXPORT_SYMBOL vmlinux 0x5d650a03 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x5d69cec2 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x5d6d8fb9 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5d8442a9 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x5da71fb6 input_event +EXPORT_SYMBOL vmlinux 0x5db697ab tcp_seq_next +EXPORT_SYMBOL vmlinux 0x5dc891f4 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x5dcce72f serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5de1b02a gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x5de8e07e zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e1bd866 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x5e1ec67e neigh_lookup -EXPORT_SYMBOL vmlinux 0x5e276df3 dput +EXPORT_SYMBOL vmlinux 0x5e1f716a md_update_sb EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e34d3f1 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x5e35d02c tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e6bc7f0 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x5e703e24 __neigh_create -EXPORT_SYMBOL vmlinux 0x5e74019d i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x5e4c7204 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5e4c7b9e tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x5e7f6761 serio_close EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e91662b __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5eac8960 freeze_super +EXPORT_SYMBOL vmlinux 0x5eb3af6c jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec81ee0 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed77d60 __breadahead EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ef250ce genphy_aneg_done EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f02d830 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x5f044ffe register_console +EXPORT_SYMBOL vmlinux 0x5f06508b pm860x_reg_read EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f263460 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x5f0e794f migrate_folio +EXPORT_SYMBOL vmlinux 0x5f1fdb41 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x5f27c9e8 cdev_device_add EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f401381 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0x5f48d6a2 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x5f4c63c3 set_binfmt +EXPORT_SYMBOL vmlinux 0x5f4e6919 netdev_change_features EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f58f9f5 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x5f5dcb97 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x5f5e7f2c dev_activate EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f8bf64d dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x5f90e088 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x5f91193b sg_miter_next +EXPORT_SYMBOL vmlinux 0x5f7812d3 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x5f903a2d vme_bus_type EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5f999b3e blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x5f9c9c45 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x5fa515ac input_free_device -EXPORT_SYMBOL vmlinux 0x5fafcd45 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x5fb13efa inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5f9ac7d2 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x5fb695ee clocksource_change_rating EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fce1b6e pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x5fce2557 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fd2bfc0 arp_send EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x5fe5b63e current_in_userns +EXPORT_SYMBOL vmlinux 0x5ff2ee29 __phy_read_mmd EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffc1a76 pci_choose_state 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 0x600fe474 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6026ffbb nd_device_unregister -EXPORT_SYMBOL vmlinux 0x60336481 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x602cde56 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60426b07 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x604eefa6 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x604fb968 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x607eef8e pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x6083cb69 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x6069560f bdi_unregister +EXPORT_SYMBOL vmlinux 0x606d9e07 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x60734442 fixed_size_llseek 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 0x60a26b33 I_BDEV EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a7176e kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x60a839c7 cdrom_check_events EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60b9c82c __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x60bc3ec7 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x60d3662f forget_cached_acl EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e0f64d pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x60ecfd4e __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x60ee969f inet_protos EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address EXPORT_SYMBOL vmlinux 0x610756b8 __x86_indirect_call_thunk_rdx -EXPORT_SYMBOL vmlinux 0x610b6c3c simple_open -EXPORT_SYMBOL vmlinux 0x610c23d4 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x611bc11a mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x6125bfdf __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6107aa2a tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x6108e434 sock_set_mark +EXPORT_SYMBOL vmlinux 0x6110d09b __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6118be81 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x611be4f8 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614f9b81 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x6155e36c cdev_device_add +EXPORT_SYMBOL vmlinux 0x6147da41 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x61507599 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x61588449 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6159b500 kmem_cache_alloc_lru -EXPORT_SYMBOL vmlinux 0x616add85 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x615b21e3 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x6160d0c1 dev_pm_opp_unregister_notifier 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 0x61942aee __icmp_send +EXPORT_SYMBOL vmlinux 0x61942c1e unpin_user_pages EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv -EXPORT_SYMBOL vmlinux 0x61b04188 build_skb +EXPORT_SYMBOL vmlinux 0x61b4f8b0 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bd3835 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x61c1e61e tcp_splice_read -EXPORT_SYMBOL vmlinux 0x61dfc2c1 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x61dbfd0b vma_alloc_folio EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e7cd23 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x61e54720 padata_free EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ee4c39 __brelse -EXPORT_SYMBOL vmlinux 0x61f17f3e mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x61f20433 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x61f2c448 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x62070acd security_sock_graft -EXPORT_SYMBOL vmlinux 0x62096ad3 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x620ab62e tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x61fc045b jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x61fdbdb2 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x61fdff8d platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x62025c83 kernel_listen +EXPORT_SYMBOL vmlinux 0x62064ca9 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x6207cfd2 _copy_to_iter EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621c1b86 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622b971e scsi_target_resume -EXPORT_SYMBOL vmlinux 0x62398c47 __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x623bec94 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x6243604a kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x626e3553 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x622e8269 config_item_get +EXPORT_SYMBOL vmlinux 0x6231da85 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x625ac8f5 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x627b1570 agp_collect_device_status EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62870ad8 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x62888952 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x628939e2 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62a5e905 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x62bc7350 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x62bd9e5b neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x62e9ff4f pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x629ceef8 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x62c88876 sync_blockdev_range EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x6304dd18 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x630b582c skb_pull -EXPORT_SYMBOL vmlinux 0x630f6100 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x62fb29da inet_frags_fini +EXPORT_SYMBOL vmlinux 0x62fd3522 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x62ffaf76 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x6301d87e pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x63186bc4 dm_get_device EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x634bb4d9 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x6335a746 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x6356c2c5 uart_remove_one_port EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x63674a6e __pci_register_driver +EXPORT_SYMBOL vmlinux 0x63642fbd scsi_remove_target +EXPORT_SYMBOL vmlinux 0x63672190 dquot_resume +EXPORT_SYMBOL vmlinux 0x636b5b37 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x6372480b xfrm_lookup +EXPORT_SYMBOL vmlinux 0x6380e80c udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x6395f097 __f_setown +EXPORT_SYMBOL vmlinux 0x63842d83 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6384d544 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x63894347 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x638ba249 ip6_mtu +EXPORT_SYMBOL vmlinux 0x6395240c dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x639c3c00 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x639feafa mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63adc85d has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x63b52259 skb_condense -EXPORT_SYMBOL vmlinux 0x63ba01e5 pci_set_master -EXPORT_SYMBOL vmlinux 0x63c0899b _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x63c40cb3 __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x63ca6e66 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x63e3d953 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x63c8d0ca param_ops_bool +EXPORT_SYMBOL vmlinux 0x63ea8eb3 blk_sync_queue EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x63fb46d0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x63fad293 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641d5261 phy_attached_print +EXPORT_SYMBOL vmlinux 0x6421db6c ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x6430d392 kill_anon_super +EXPORT_SYMBOL vmlinux 0x6430eebd xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x643f4f80 netlink_ack +EXPORT_SYMBOL vmlinux 0x6443738d phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x6448403d __x86_indirect_call_thunk_rcx -EXPORT_SYMBOL vmlinux 0x644b3e60 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x644850b7 kill_litter_super EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x645f1aa7 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x646f26b5 pci_match_id +EXPORT_SYMBOL vmlinux 0x646a6297 ptp_clock_register EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a8ea06 setup_arg_pages EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b18ccb qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x64b6bc36 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x64b84d4a inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x64b4f1c6 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c5a8c7 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x64d24155 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x64e56a51 tcp_read_skb +EXPORT_SYMBOL vmlinux 0x64d5f1fe scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x64e244f3 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x64f80d01 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x65020225 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x6504924d __inet_stream_connect 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 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652f6fd5 input_grab_device EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65443670 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x6547743c sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x65421090 dentry_path_raw EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x65504262 sock_register +EXPORT_SYMBOL vmlinux 0x65686d3a pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65872922 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x6588d7ba devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x656f93e0 would_dump +EXPORT_SYMBOL vmlinux 0x65854d5c nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x658a2a0a __x86_indirect_call_thunk_rbx EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658fdb64 block_commit_write EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659bfb94 stream_open +EXPORT_SYMBOL vmlinux 0x659cabda xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a9a09a mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x65ac911e bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x65b98e93 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65cb488c devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x65d04049 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x65ba48e9 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x65cd6a6a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x65d07fbf param_ops_invbool EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier 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 0x65e6991f ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x65eac448 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x65ecb55f d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x660803f3 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x66253637 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x65ea1111 del_gendisk +EXPORT_SYMBOL vmlinux 0x65fc4729 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x660c294d pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662f3c30 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x6632dbd4 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x6634cf2b lock_sock_nested -EXPORT_SYMBOL vmlinux 0x6647df6c fqdir_exit +EXPORT_SYMBOL vmlinux 0x66386893 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x664643fb inet_accept +EXPORT_SYMBOL vmlinux 0x66552ce6 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x66555071 mmc_add_host EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x66677d1a pci_set_power_state -EXPORT_SYMBOL vmlinux 0x6670983a filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x666f4017 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667b093f tty_check_change -EXPORT_SYMBOL vmlinux 0x667f26cc dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x6685c665 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x667c0036 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668b9ed0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x6692e635 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x669d8644 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x669ee2b2 param_get_uint +EXPORT_SYMBOL vmlinux 0x669c23a4 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b396c2 agp_create_memory +EXPORT_SYMBOL vmlinux 0x66b4118c sock_setsockopt EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b76a4a max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x66b7e984 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66ccda28 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x66cd6e8d blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x66e68391 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x66e7e330 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x66e8a503 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x66fe2ba9 nd_btt_version +EXPORT_SYMBOL vmlinux 0x66e83833 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x670733a4 inode_newsize_ok EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x672283c0 phy_find_first -EXPORT_SYMBOL vmlinux 0x67267f35 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x671e4f0d update_region EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x672c14eb key_alloc -EXPORT_SYMBOL vmlinux 0x67310936 qdisc_reset -EXPORT_SYMBOL vmlinux 0x6737bf65 single_open -EXPORT_SYMBOL vmlinux 0x6737ee4a devm_ioport_map -EXPORT_SYMBOL vmlinux 0x673971b6 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x674728fb md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x6747d13a pcie_set_mps EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6766eded pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x6767dd64 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x677a46e8 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x674cd55e mmc_of_parse +EXPORT_SYMBOL vmlinux 0x67592a07 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x67721982 cdev_alloc +EXPORT_SYMBOL vmlinux 0x6782d890 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x6785034a xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x67863c2d d_set_d_op EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x6797d568 intel_gmch_gtt_get -EXPORT_SYMBOL vmlinux 0x67a02ecf rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x67a91fbb netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0x67ad41be tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b4c8fa mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x67b688e3 inet_select_addr 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 0x67f164a6 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x67f62341 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x68065905 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x681d8c48 __register_nls -EXPORT_SYMBOL vmlinux 0x6823c73a dquot_quota_off -EXPORT_SYMBOL vmlinux 0x683519ac eth_header_parse -EXPORT_SYMBOL vmlinux 0x683efbe5 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x67d8c9b6 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x67ebcf9c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x67ebf476 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x680061e8 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x680e5f68 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6812a826 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x6820e406 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x682277dd blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6826112d skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x6838e84c get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x683ed3fd generic_setlease +EXPORT_SYMBOL vmlinux 0x68434852 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x684a773b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x684e955e get_thermal_instance EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x685e5889 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x685ed0d8 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x68689070 tcf_block_get +EXPORT_SYMBOL vmlinux 0x687817bf dquot_transfer EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688186a6 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x688b0bdc mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x6893897c seq_open_private -EXPORT_SYMBOL vmlinux 0x68a8ed3b __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x68ae5e31 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x68b60b4a vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x68c37656 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x68f07027 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x68948c0d genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x68b1b46a dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x68c1c975 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x68c6838c lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x68dcd57f submit_bio_noacct EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690b04c6 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x6910d764 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x691713f3 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x691e65e5 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x692f16ec scsi_device_resume -EXPORT_SYMBOL vmlinux 0x694395b9 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x694a6bb7 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x694b6b92 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6928b8d5 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x692f1e18 dump_emit +EXPORT_SYMBOL vmlinux 0x6931434c register_cdrom +EXPORT_SYMBOL vmlinux 0x6951c288 ip6_frag_init EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696cc223 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x6970445e seq_vprintf EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x697d11db sock_no_listen +EXPORT_SYMBOL vmlinux 0x697503f1 path_has_submounts EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x6990a139 km_new_mapping -EXPORT_SYMBOL vmlinux 0x6999a857 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x699a6ee8 devm_memremap -EXPORT_SYMBOL vmlinux 0x69a5d766 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x6988d2b8 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x6989d2e6 thread_group_exited +EXPORT_SYMBOL vmlinux 0x698edf5d agp3_generic_tlbflush EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ba5765 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x69d7cd03 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x69b4bdee kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x69d963a1 trace_event_printf EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69f01549 serio_rescan -EXPORT_SYMBOL vmlinux 0x69f20768 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x69fe0d1a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x69f3aa73 get_user_pages EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a2314ea copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x6a2c3c5c phy_connect -EXPORT_SYMBOL vmlinux 0x6a400469 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x6a423982 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x6a44604a get_tree_keyed +EXPORT_SYMBOL vmlinux 0x6a0418ac flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x6a06ba5c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x6a0b6c83 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x6a1bbd8f mmc_put_card +EXPORT_SYMBOL vmlinux 0x6a3214d5 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x6a326199 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x6a3c3ddd dma_resv_init +EXPORT_SYMBOL vmlinux 0x6a3d8b21 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x6a42816b phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a482874 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x6a4999e2 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6a5a8021 __folio_alloc +EXPORT_SYMBOL vmlinux 0x6a48268f tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x6a578c56 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6d7b50 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6a645a9e is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a874717 sk_capable -EXPORT_SYMBOL vmlinux 0x6a8b627b blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6a99196f netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x6a9c0b28 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x6ab5b4b2 vme_master_request -EXPORT_SYMBOL vmlinux 0x6abcc8f0 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x6abf2fcc tty_do_resize -EXPORT_SYMBOL vmlinux 0x6ace7620 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x6a6fbbc3 phy_get_pause +EXPORT_SYMBOL vmlinux 0x6a87491d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x6a882d2e build_skb +EXPORT_SYMBOL vmlinux 0x6adbd7b8 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x6adc19be tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae40d6f tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af0547d xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x6af81324 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x6b023bc7 vfs_setpos +EXPORT_SYMBOL vmlinux 0x6af03f58 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6b08742e __inc_node_page_state EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b158f47 km_report -EXPORT_SYMBOL vmlinux 0x6b1efb19 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x6b1182f3 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x6b24c0f0 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2cb310 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3ee401 stream_open +EXPORT_SYMBOL vmlinux 0x6b2f95f7 mmc_start_request +EXPORT_SYMBOL vmlinux 0x6b33542b devm_memremap +EXPORT_SYMBOL vmlinux 0x6b3d6dde security_inode_copy_up EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b758035 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bd64e xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b935903 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6b938560 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x6b957835 d_move +EXPORT_SYMBOL vmlinux 0x6bb69df4 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x6bbc3287 dput EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bd2d744 dquot_drop +EXPORT_SYMBOL vmlinux 0x6bd7094b rtc_add_group EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bfa1f5c mmc_of_parse -EXPORT_SYMBOL vmlinux 0x6c03f9be generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x6c099133 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x6c1aef94 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x6c1c2855 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x6c20e828 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x6be3cba2 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x6be681a8 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x6be8fe79 scmd_printk +EXPORT_SYMBOL vmlinux 0x6beb1389 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x6c0019ac import_single_range +EXPORT_SYMBOL vmlinux 0x6c196a65 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6c19af06 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c32a814 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x6c38aba0 security_path_rename -EXPORT_SYMBOL vmlinux 0x6c5a53d6 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x6c34229a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x6c3e77f9 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6c46bb69 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x6c59ade5 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x6c5ad8c8 release_pages EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c7731bf ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x6c778b25 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x6c888c8e dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6c8aa5df neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x6c93daf5 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x6c999e5c sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x6c99c710 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x6caba1fd get_inode_acl -EXPORT_SYMBOL vmlinux 0x6cb000b2 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x6cb1640e seq_vprintf -EXPORT_SYMBOL vmlinux 0x6cb29e81 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x6cb45f21 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x6c6bb503 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x6c87f6f8 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6c98698e pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x6c9baa1a _dev_info +EXPORT_SYMBOL vmlinux 0x6ca377c1 blackhole_netdev EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cc46d85 key_task_permission -EXPORT_SYMBOL vmlinux 0x6ccd13d3 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x6cda85f7 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x6d078e98 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x6ccc9905 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6cd64dd4 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x6cda393e secpath_set +EXPORT_SYMBOL vmlinux 0x6cda94bb mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x6ce14892 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x6ce9de7b inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x6cfcdaee config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x6d14a728 skb_tx_error EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2b4ad0 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x6d2b359e vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d3833d0 vme_irq_request +EXPORT_SYMBOL vmlinux 0x6d4b3b0d set_anon_super +EXPORT_SYMBOL vmlinux 0x6d56c81d to_nd_dax EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5c2977 dev_mc_del_global EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x6d5fb4a5 __x86_indirect_jump_thunk_rsp +EXPORT_SYMBOL vmlinux 0x6d6a38b4 nd_pfn_validate EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8d3804 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x6d8df868 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x6db5ee51 tso_build_data -EXPORT_SYMBOL vmlinux 0x6dba031b input_unregister_handler +EXPORT_SYMBOL vmlinux 0x6db8475a cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dba9a37 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcdaf96 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x6dc8a53e __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd2f6b1 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x6deae58f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x6df152c6 ip_frag_next EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6df31390 intel_gmch_gtt_clear_range -EXPORT_SYMBOL vmlinux 0x6dfc71a3 bio_put -EXPORT_SYMBOL vmlinux 0x6e071da7 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x6e1a1465 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x6e1db707 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x6e244e9b acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x6df3e241 tcp_req_err +EXPORT_SYMBOL vmlinux 0x6df887f8 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x6e030e52 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x6e203481 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x6e3d4b01 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e663248 __destroy_inode EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e86e496 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x6e7d15e8 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x6e7fd3b8 seq_lseek +EXPORT_SYMBOL vmlinux 0x6e85a6e2 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6e91d148 security_d_instantiate EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ed70d7c __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x6ebb4240 pci_choose_state +EXPORT_SYMBOL vmlinux 0x6eca9520 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6ef49ca7 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x6efd3024 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x6f0513b8 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x6ef53bc2 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x6ef67884 dev_mc_del +EXPORT_SYMBOL vmlinux 0x6ef7fb2b wireless_spy_update +EXPORT_SYMBOL vmlinux 0x6eff6b41 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x6f0caba6 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f26434b xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x6f2a04c2 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6f17c573 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x6f1f9d5e ata_print_version +EXPORT_SYMBOL vmlinux 0x6f254b81 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f42047c dquot_resume +EXPORT_SYMBOL vmlinux 0x6f478835 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r -EXPORT_SYMBOL vmlinux 0x6f510106 qdisc_put +EXPORT_SYMBOL vmlinux 0x6f4de049 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x6f584b2c mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f5b520c __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x6f5bfad3 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x6f5f0b10 filp_close -EXPORT_SYMBOL vmlinux 0x6f69f55b i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x6f716180 __inet_hash -EXPORT_SYMBOL vmlinux 0x6f7b4e7c phy_attached_info -EXPORT_SYMBOL vmlinux 0x6f7f0248 kernel_listen +EXPORT_SYMBOL vmlinux 0x6f627bc3 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x6f6397d4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x6f658cda sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x6f861bc9 inet6_release EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fa39aa3 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x6fad035f i2c_clients_command +EXPORT_SYMBOL vmlinux 0x6f99ab38 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x6fa2042b filemap_map_pages EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fca6d5c locks_free_lock EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe37e6e xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6fe9d31d param_get_invbool EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7019a771 sock_wfree +EXPORT_SYMBOL vmlinux 0x7011dced register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702eb228 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x703b08dd vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7040a69a blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705b4159 vm_map_ram -EXPORT_SYMBOL vmlinux 0x707b5273 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x709f763b t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x70a5ae70 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x706a3006 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x707313f9 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x70a89f0e __f_setown EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b2a0b2 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp -EXPORT_SYMBOL vmlinux 0x70d8285d dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x70f60ed2 folio_mark_dirty -EXPORT_SYMBOL vmlinux 0x70fd1381 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x70c6d9f6 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x70d1d292 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x70e38327 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x70ef0795 proc_create EXPORT_SYMBOL vmlinux 0x710056ac abort -EXPORT_SYMBOL vmlinux 0x71193f80 d_rehash +EXPORT_SYMBOL vmlinux 0x710f9c5c may_umount +EXPORT_SYMBOL vmlinux 0x71171a72 noop_fsync +EXPORT_SYMBOL vmlinux 0x7118710d block_dirty_folio EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7132bb13 unregister_nls -EXPORT_SYMBOL vmlinux 0x713cf88a lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x713d1385 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x71438131 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x71556d66 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x71329975 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x7133efb5 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x713e2bac genphy_suspend +EXPORT_SYMBOL vmlinux 0x71466af8 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7149f41c xen_free_unpopulated_pages EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715e04ab sock_kfree_s EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7175008e cdev_alloc -EXPORT_SYMBOL vmlinux 0x7179ad5e is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x7182de7b mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x718bd768 pcim_iomap +EXPORT_SYMBOL vmlinux 0x718feddf mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x7193a1c6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x71999ccb scsi_mode_sense EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c60ad4 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x71cd520c blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0x71d7d0e0 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x71c12e31 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x71d54e32 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71e51bdc follow_up -EXPORT_SYMBOL vmlinux 0x71edf459 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x71e92a26 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x720d4281 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x720f3d34 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x72111619 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x72301300 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x723c85f4 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x7244b2a0 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x7256fd5a __netif_schedule -EXPORT_SYMBOL vmlinux 0x7257f863 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x7269d293 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x720e9f04 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x721247c6 vfs_llseek +EXPORT_SYMBOL vmlinux 0x723656f9 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x7248876d iov_iter_zero +EXPORT_SYMBOL vmlinux 0x725649e1 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x727b961b __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x728c920f kernel_sendpage +EXPORT_SYMBOL vmlinux 0x7299b372 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x729a4a67 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b65fca vfs_get_fsid EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bdc19b devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x72cdd849 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x72cfcca1 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x730f5499 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7336619f ip6_output +EXPORT_SYMBOL vmlinux 0x732e23ee phy_write_paged +EXPORT_SYMBOL vmlinux 0x73484e65 bpf_link_put EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x73649ee6 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x736bcb26 pci_pme_active -EXPORT_SYMBOL vmlinux 0x737d75ca ps2_init +EXPORT_SYMBOL vmlinux 0x7365f153 pps_register_source EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73a2651a scsi_device_get -EXPORT_SYMBOL vmlinux 0x73a5e1c2 config_item_put +EXPORT_SYMBOL vmlinux 0x738e0be5 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x738f2421 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x73904ac7 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x73a225b9 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x73a7ecf5 give_up_console EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73c3a4e2 touch_atime +EXPORT_SYMBOL vmlinux 0x73ca3a4d clear_nlink +EXPORT_SYMBOL vmlinux 0x73d468e8 udp_seq_next EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e2bf25 mr_dump -EXPORT_SYMBOL vmlinux 0x73f73ecf mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x73e433d1 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x73ed5ed1 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x73f7be7f kern_path_create +EXPORT_SYMBOL vmlinux 0x7406ceee dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x740a4355 register_key_type -EXPORT_SYMBOL vmlinux 0x740c7a93 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x740c5d75 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x741543f3 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x74154af5 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x74252304 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x741c8800 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x742181a4 dquot_free_inode EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742f30ba page_pool_create +EXPORT_SYMBOL vmlinux 0x7432316b input_close_device +EXPORT_SYMBOL vmlinux 0x7439dd38 register_netdevice +EXPORT_SYMBOL vmlinux 0x743f31a2 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x74523a20 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746f77d2 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x7473d943 mmc_erase +EXPORT_SYMBOL vmlinux 0x745b2dae set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x7460600f netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x746973fb scsi_host_put EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x74781b94 skb_put -EXPORT_SYMBOL vmlinux 0x747da325 vga_switcheroo_init_domain_pm_ops EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749f0bff flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x749ba9fe unregister_binfmt +EXPORT_SYMBOL vmlinux 0x74ad7886 pci_get_device EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bca217 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x74be64b4 sg_miter_next EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e8eb23 bio_alloc_clone EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0x75316adb pci_dev_driver EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x753a29f5 napi_get_frags -EXPORT_SYMBOL vmlinux 0x754779d1 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755bc457 blk_rq_init EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x756ef6c1 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x75710120 vm_event_states -EXPORT_SYMBOL vmlinux 0x75784581 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x757bae91 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75a277b8 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x75a30261 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x75ba1a72 skb_split EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdc637 kernel_accept -EXPORT_SYMBOL vmlinux 0x75c43a4c uart_match_port EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d5430e zero_fill_bio +EXPORT_SYMBOL vmlinux 0x75ddd944 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x75df4f7a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x75eafec5 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x75eb200c skb_find_text EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760f2631 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76306ee9 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x76346b6c ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x763a6b69 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x763ffa8e devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x762a510b phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x763cb4dc kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x76400bea mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76477d32 may_umount +EXPORT_SYMBOL vmlinux 0x76502036 fs_lookup_param EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76602602 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x76608b89 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x76637444 skb_copy_header EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766a3d95 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x76736bbb sk_mc_loop EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x7698ad55 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x76859716 reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76aec78d xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x76b4e7d5 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x76d35e96 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x76a02060 add_to_pipe +EXPORT_SYMBOL vmlinux 0x76b00b71 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x76cd4c6b __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d923ad blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x76ddef99 vm_mmap +EXPORT_SYMBOL vmlinux 0x76d5e64c jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x76dd1ba5 scsi_target_resume EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76f47ab7 uart_register_driver EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x772265e1 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x77237351 file_ns_capable -EXPORT_SYMBOL vmlinux 0x772fe0a3 dev_uc_del EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7732d6a9 inet_confirm_addr EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x77359104 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x77374739 bdi_register EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x774067b7 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x7742cf28 __pagevec_release EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x7764fef4 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x7767acb0 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x776aa267 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x77712bb6 simple_lookup -EXPORT_SYMBOL vmlinux 0x77729455 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x7776b774 inet6_protos -EXPORT_SYMBOL vmlinux 0x7780b4e5 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x778bc528 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x77933ca0 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x77584d64 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x775dcbc6 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x776db3e6 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x77716964 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x7796032b rt6_lookup +EXPORT_SYMBOL vmlinux 0x7798567d md_done_sync +EXPORT_SYMBOL vmlinux 0x779e0cf6 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x77a173e0 skb_copy_header +EXPORT_SYMBOL vmlinux 0x77a2dc41 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x77a5b2f6 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x77a87fe0 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x77b5dce0 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x77b77f27 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77da78e2 dev_trans_start -EXPORT_SYMBOL vmlinux 0x77dd0af3 __bread_gfp EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f8ffbc skb_unlink +EXPORT_SYMBOL vmlinux 0x77ed16aa devm_rproc_add +EXPORT_SYMBOL vmlinux 0x77f46976 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x77f6c90a ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x77f7136f proc_create_data EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780dedae padata_do_parallel -EXPORT_SYMBOL vmlinux 0x782720ce phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x78390d84 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x783dbb74 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x7844d8b7 vm_map_pages +EXPORT_SYMBOL vmlinux 0x7825cc59 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x78299da7 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x787bb28e tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x7882d07c mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x788baa0a tcf_em_register -EXPORT_SYMBOL vmlinux 0x788d1516 netpoll_setup -EXPORT_SYMBOL vmlinux 0x788d6c7c genphy_read_status -EXPORT_SYMBOL vmlinux 0x789dfbd3 kill_pid +EXPORT_SYMBOL vmlinux 0x7874a607 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7884bdd5 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a81b80 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x78a185f4 d_drop +EXPORT_SYMBOL vmlinux 0x78ae248d inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x78b4fd7a fwnode_iomap EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78d8a8b5 import_single_range -EXPORT_SYMBOL vmlinux 0x78dae75c i2c_del_driver +EXPORT_SYMBOL vmlinux 0x78dbb397 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f1b944 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x78f8251f xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x791ea8b8 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x794d5ab2 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x79606cb0 amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x796223a0 from_kgid -EXPORT_SYMBOL vmlinux 0x797aa9ab tso_start +EXPORT_SYMBOL vmlinux 0x78e333d1 km_state_notify +EXPORT_SYMBOL vmlinux 0x78e98776 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x78fe6910 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x790f7e1d update_devfreq +EXPORT_SYMBOL vmlinux 0x791a05b2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x792c6b75 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x792cb00f i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x792e24f9 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x793fffe1 eth_header_parse +EXPORT_SYMBOL vmlinux 0x79461127 poll_freewait +EXPORT_SYMBOL vmlinux 0x794d4b50 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x7953daa6 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x79752b63 ip6_xmit +EXPORT_SYMBOL vmlinux 0x797e4abf fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7983ab39 dst_release_immediate EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798700d8 set_cached_acl -EXPORT_SYMBOL vmlinux 0x799001b1 icmp6_send -EXPORT_SYMBOL vmlinux 0x79916849 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x79a14231 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x79852099 end_page_writeback +EXPORT_SYMBOL vmlinux 0x798cdc3c config_group_init +EXPORT_SYMBOL vmlinux 0x7992de8d max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x799ddada rtnl_unicast +EXPORT_SYMBOL vmlinux 0x799e7249 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79c41f7d fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x79d20d3d __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x79d516c9 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x79d620f0 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x79afafd7 d_alloc_name +EXPORT_SYMBOL vmlinux 0x79ba7258 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x79c4b03a mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x79d64676 block_write_end EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79f42897 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x79fb7edc xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x7a108361 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x79eabb9a generic_read_dir +EXPORT_SYMBOL vmlinux 0x79eeb1c3 generic_permission +EXPORT_SYMBOL vmlinux 0x7a05e3a8 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x7a168a71 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a28b37f __sk_dst_check EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a404b7f __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x7a4f74f7 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7a378000 file_open_root EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a7f923c d_obtain_alias -EXPORT_SYMBOL vmlinux 0x7a812839 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x7a874352 _copy_from_iter EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a8f967b inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7a8ab1ec console_start +EXPORT_SYMBOL vmlinux 0x7a938778 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a973723 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x7a9c2983 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x7a9e449c pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x7a99facb blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa1ec4b vm_insert_pages -EXPORT_SYMBOL vmlinux 0x7ac25688 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x7ab372b3 dev_change_flags EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae47bdb phy_stop -EXPORT_SYMBOL vmlinux 0x7aeac727 vfs_unlink -EXPORT_SYMBOL vmlinux 0x7af082a4 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x7af28a5d skb_copy_bits EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7affca5f sg_miter_start +EXPORT_SYMBOL vmlinux 0x7b09bede generic_write_checks +EXPORT_SYMBOL vmlinux 0x7b0c412e simple_open EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b132995 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7b1d3a63 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7b25b23d mntput EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b4d09bc scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7b43f1fc sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7b45c2c9 sync_blockdev EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b551e08 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7b527db5 input_release_device +EXPORT_SYMBOL vmlinux 0x7b5b1929 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5cc1a0 folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0x7b6c218b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x7b72fb87 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x7b7bb30f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x7b7c31ec icmp6_send EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7ba6c624 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x7badfd1d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7bb2f8d8 inet_offloads EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbca00f devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bcd7f06 scsi_host_get -EXPORT_SYMBOL vmlinux 0x7be40faa pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x7bec6470 __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x7c0190d9 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7bc55051 devm_clk_put +EXPORT_SYMBOL vmlinux 0x7bddf9a5 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x7bee9a28 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x7bfe6a38 register_mii_timestamper EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c439fa7 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x7c19a535 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x7c24dbb6 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x7c37b96c nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7c37ca25 __napi_schedule EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c47a231 read_cache_folio -EXPORT_SYMBOL vmlinux 0x7c4b1911 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x7c511d2e invalidate_disk -EXPORT_SYMBOL vmlinux 0x7c531c7e tcp_check_req -EXPORT_SYMBOL vmlinux 0x7c57aa81 logfc -EXPORT_SYMBOL vmlinux 0x7c57fd08 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7c708080 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x7c85bbce nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x7c8815bd cdev_set_parent -EXPORT_SYMBOL vmlinux 0x7c8db046 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x7cbb8406 _dev_alert -EXPORT_SYMBOL vmlinux 0x7cc8e2c9 tcf_register_action -EXPORT_SYMBOL vmlinux 0x7cce21dd devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7c608054 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7c6154d1 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7c756aa9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x7c7c2779 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x7c893fb9 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x7c8a972c mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x7c8fb251 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7c961bf9 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x7c9dca8b ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x7c9e3ea5 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7cb98657 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x7cb9b290 netdev_printk +EXPORT_SYMBOL vmlinux 0x7cbc84cb seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7cc74b8a generic_delete_inode EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce3a09a generic_fadvise EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf25ac4 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf7b38f fddi_type_trans EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d07739e cdev_device_del +EXPORT_SYMBOL vmlinux 0x7d04f14e crypto_sha256_update EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d0e745a sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d2211e1 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d2d9935 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x7d2ebe6a unregister_console -EXPORT_SYMBOL vmlinux 0x7d3058de xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x7d35a4aa rproc_put +EXPORT_SYMBOL vmlinux 0x7d3b1b4a iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7d48ac3c gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d563034 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x7d58b34b netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x7d59a8a8 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d72d239 vfs_fsync +EXPORT_SYMBOL vmlinux 0x7d6c5148 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d750fad pcie_get_mps -EXPORT_SYMBOL vmlinux 0x7d8d334e flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x7d99a2d8 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x7d8bc2b6 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7da5a9e9 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db3d0da inode_init_once +EXPORT_SYMBOL vmlinux 0x7dc57ff9 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd440ef kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7de54254 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x7dfe0ca8 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7de26cf0 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x7dfba87f devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x7dfc471e blkdev_put EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e0ba940 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x7e2d5d5e dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x7e0b9062 bioset_integrity_create EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e5a2305 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x7e3368ae __post_watch_notification +EXPORT_SYMBOL vmlinux 0x7e3899d8 inode_insert5 +EXPORT_SYMBOL vmlinux 0x7e3be1a1 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x7e3cde8d __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7e45b2d0 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7e487cdf inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x7e4a74e6 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x7e52c9eb tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x7e56899e dev_get_by_name EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e7f0c57 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x7e8ab80f rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x7e904e71 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x7ecc50b8 netdev_features_change -EXPORT_SYMBOL vmlinux 0x7ed795de forget_cached_acl -EXPORT_SYMBOL vmlinux 0x7ee0c414 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x7ee16740 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x7ee790dd elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7e882aa2 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x7e957a2b set_trace_device +EXPORT_SYMBOL vmlinux 0x7eaf8a26 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7eb80af6 register_fib_notifier EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ef59b0d ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f12229c md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7f0de780 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7f162d37 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f2bbfab devm_release_resource -EXPORT_SYMBOL vmlinux 0x7f3d93f0 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x7f4d11e5 napi_complete_done +EXPORT_SYMBOL vmlinux 0x7f36784c neigh_seq_start +EXPORT_SYMBOL vmlinux 0x7f3ae9f4 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f53cfac serio_open -EXPORT_SYMBOL vmlinux 0x7f5e5782 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7f546cc5 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x7f578a43 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x7f5b25f9 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7f628442 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f633879 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x7f6d0e6b blk_execute_rq -EXPORT_SYMBOL vmlinux 0x7f7b0f0c eisa_driver_register +EXPORT_SYMBOL vmlinux 0x7f754a0d devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x7f79e273 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f819fc7 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x7f8340a0 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x7f88ea56 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x7f8d243b udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x7f97e1f6 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x7f9a3695 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x7f9d2b74 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x7fb3267b neigh_parms_release -EXPORT_SYMBOL vmlinux 0x7fd40150 sock_create_kern +EXPORT_SYMBOL vmlinux 0x7fdb70a5 vlan_vid_add EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff1c33d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x7ff2b171 dqput -EXPORT_SYMBOL vmlinux 0x7ffc9c1e tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x8018d992 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x801c68da mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x801ea9bc ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x803955c3 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7ff4551a vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x80024d44 vme_irq_free +EXPORT_SYMBOL vmlinux 0x800cea24 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x800e0400 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x8040b61e vme_slot_num -EXPORT_SYMBOL vmlinux 0x8046f069 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x804865bf vfs_rmdir +EXPORT_SYMBOL vmlinux 0x803eab06 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8043691e backlight_force_update +EXPORT_SYMBOL vmlinux 0x8045044f request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x805d89d4 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x806ea674 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x806f34eb ilookup +EXPORT_SYMBOL vmlinux 0x80522c7b blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x805939ef jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x80779589 readahead_expand EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80b1753c uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x80c5b4d2 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x80b5e52b locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x80baff3c tcp_check_req +EXPORT_SYMBOL vmlinux 0x80bca1b3 tcf_classify +EXPORT_SYMBOL vmlinux 0x80c3cf17 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d296e7 page_get_link -EXPORT_SYMBOL vmlinux 0x80d2e1aa mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x80cca9a1 bio_split EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x810b22fd sock_init_data +EXPORT_SYMBOL vmlinux 0x81035774 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x810e6c5a locks_init_lock EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8138b81b seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x81460213 block_write_full_page -EXPORT_SYMBOL vmlinux 0x8148b4c8 skb_trim -EXPORT_SYMBOL vmlinux 0x814c81a9 dst_release +EXPORT_SYMBOL vmlinux 0x812b20cd jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x814873f3 iov_iter_xarray 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 0x816990e1 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x8176dc40 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8180fd13 agp_generic_alloc_pages EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8184617e mmc_can_trim -EXPORT_SYMBOL vmlinux 0x81878bb8 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x818ab589 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x818d6883 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8191ef92 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a2e451 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81be3f78 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x81af8126 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x81b0cf68 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x81b6fe78 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e2687b gro_cells_receive EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81fdb900 simple_unlink -EXPORT_SYMBOL vmlinux 0x822e3ef1 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x82355f69 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x8236551c vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x82141584 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x821a72bf inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x82239f43 rtnl_create_link EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x823fc235 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x8255e114 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x82407e3c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x8245a800 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x82931549 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x82b0dc44 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x82b22e7e __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x82c656d3 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x8289f9ab fd_install +EXPORT_SYMBOL vmlinux 0x82a2d896 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x82a545ed brioctl_set +EXPORT_SYMBOL vmlinux 0x82ab8e49 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d2f05a tso_build_hdr -EXPORT_SYMBOL vmlinux 0x82dd0498 tcp_read_done -EXPORT_SYMBOL vmlinux 0x82e15fe9 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x82e45675 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f08101 arp_xmit -EXPORT_SYMBOL vmlinux 0x83005589 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x830226e5 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x83184bdc flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x83230eba rproc_free -EXPORT_SYMBOL vmlinux 0x834d38df free_netdev -EXPORT_SYMBOL vmlinux 0x8354317a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x82f2b1e8 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x82f57035 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x830c52ed __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x832824d9 skb_put +EXPORT_SYMBOL vmlinux 0x832ec30b dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b0121 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x83756395 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x8389a8e2 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x8391cdbf dquot_alloc -EXPORT_SYMBOL vmlinux 0x83925971 netdev_state_change -EXPORT_SYMBOL vmlinux 0x83cac342 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x83d29cff clear_inode -EXPORT_SYMBOL vmlinux 0x83fa7689 is_nd_dax -EXPORT_SYMBOL vmlinux 0x84113cc1 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x84241c06 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x838f4219 task_work_add +EXPORT_SYMBOL vmlinux 0x839c7bb3 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x83a15532 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x83a1c1bc ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x83a7808a dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x83d20fd2 pci_bus_type +EXPORT_SYMBOL vmlinux 0x83d362c1 km_new_mapping +EXPORT_SYMBOL vmlinux 0x83dfa93f kernel_write +EXPORT_SYMBOL vmlinux 0x83e54fdb pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x83ff22fb set_pages_array_wc EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842b750e mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x843a2fbe pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x844b1a64 pci_request_irq +EXPORT_SYMBOL vmlinux 0x842e6d40 pin_user_pages +EXPORT_SYMBOL vmlinux 0x843e448a tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x8448c7fc flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x8463e01e simple_getattr +EXPORT_SYMBOL vmlinux 0x8461b57b pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x846fcaee phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848329eb netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x848efe1c pnp_disable_dev EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x849141e6 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x84935297 fasync_helper +EXPORT_SYMBOL vmlinux 0x8493b98d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x849ddd1e iunique EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84a12870 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x84ab2628 d_alloc +EXPORT_SYMBOL vmlinux 0x84b71a88 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x84c0be34 free_netdev EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84d45cdf input_reset_device -EXPORT_SYMBOL vmlinux 0x84dfd131 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x84ec30b0 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x84c5d0d7 put_fs_context +EXPORT_SYMBOL vmlinux 0x84cb4209 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x84d2275d icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x84d56860 lock_rename +EXPORT_SYMBOL vmlinux 0x84d8bdbf rproc_shutdown +EXPORT_SYMBOL vmlinux 0x84efe452 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x84f695fa mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x850a3bad tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8519b641 clk_bulk_get EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x854dac77 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x854dddc2 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x8563ad09 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x85661fbb xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x85346502 dev_open +EXPORT_SYMBOL vmlinux 0x8536ba90 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8558d1a5 kill_pgrp +EXPORT_SYMBOL vmlinux 0x855b896b __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857f2a17 skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x8582cec6 nd_device_notify -EXPORT_SYMBOL vmlinux 0x858459d6 sock_efree +EXPORT_SYMBOL vmlinux 0x857c42f4 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x85809c70 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a2b910 file_remove_privs -EXPORT_SYMBOL vmlinux 0x85a662de submit_bio_wait +EXPORT_SYMBOL vmlinux 0x85921a70 folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c6c4b6 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x85da12d8 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x85c5f2a8 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x85d985cf security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fbb148 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x86209dc5 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x862bdc29 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x85f331df dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x86163e03 devm_request_resource +EXPORT_SYMBOL vmlinux 0x861949d7 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x861c376b try_lookup_one_len EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x862de04a vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x8632c4b8 pci_claim_resource EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x864afcb5 pci_dev_get -EXPORT_SYMBOL vmlinux 0x86618823 seq_release -EXPORT_SYMBOL vmlinux 0x86694084 eth_header_cache +EXPORT_SYMBOL vmlinux 0x86510c67 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x865978bd tcp_parse_options EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x8680c35b cont_write_begin EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x868d0db7 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x8691becd sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x86943c94 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x869a6780 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x86b0b1d2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x869c17b6 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x86ae6a4e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x86af7732 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x86b1ccf4 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x86b8d954 inet_listen +EXPORT_SYMBOL vmlinux 0x86bb29f7 tty_port_close_end EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86c7d590 md_write_start +EXPORT_SYMBOL vmlinux 0x86c82d38 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x86cae5ef secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x86ce02d4 rtnl_configure_link EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86dddef1 sock_no_linger EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred +EXPORT_SYMBOL vmlinux 0x86f1eb40 inet_getname EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8709492e jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x872d8700 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x86febfac dma_ops +EXPORT_SYMBOL vmlinux 0x871375b3 vme_dma_request +EXPORT_SYMBOL vmlinux 0x871392fe inet_csk_accept +EXPORT_SYMBOL vmlinux 0x8718d264 md_write_inc +EXPORT_SYMBOL vmlinux 0x871b1418 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x871dfcd2 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x8724c8c6 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x8725672f device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x872a2a36 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x87465d84 serio_open +EXPORT_SYMBOL vmlinux 0x876180cd pci_fixup_device EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87659720 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x876e2fda d_make_root +EXPORT_SYMBOL vmlinux 0x876cfccb twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x8770aa1b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x87754792 __fput_sync +EXPORT_SYMBOL vmlinux 0x8779612f qdisc_reset +EXPORT_SYMBOL vmlinux 0x877c96e4 md_error EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x878f604a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x8796a2e3 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x87a1cd6a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x87836264 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x879b60d7 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87cc33bb inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x87dce3b8 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x87ddd392 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x87fd6cd1 km_policy_notify +EXPORT_SYMBOL vmlinux 0x87b10aaa ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x87c382f6 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x87cdc21e __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x87d47c45 twl6040_power +EXPORT_SYMBOL vmlinux 0x87d99f87 seq_puts +EXPORT_SYMBOL vmlinux 0x87e0237d param_get_string +EXPORT_SYMBOL vmlinux 0x87e0697d page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x87e75a67 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x87f21ee3 make_kprojid 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 0x88249e1e bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x88266ca5 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x88427ed6 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x884bfc5c console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0x884f16bc simple_nosetlease -EXPORT_SYMBOL vmlinux 0x8860134c fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x886bfe52 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x887e0c9e fget_raw +EXPORT_SYMBOL vmlinux 0x8828f430 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x8834f59e eth_header +EXPORT_SYMBOL vmlinux 0x883a1d02 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x8844ff2f dev_addr_add +EXPORT_SYMBOL vmlinux 0x88509e02 simple_release_fs +EXPORT_SYMBOL vmlinux 0x8863c756 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x88780a5e tty_port_tty_get EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88856e99 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x888655ba put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888a9b1a ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x888f815a arp_create -EXPORT_SYMBOL vmlinux 0x88934236 udp_set_csum -EXPORT_SYMBOL vmlinux 0x889509b1 backlight_device_register -EXPORT_SYMBOL vmlinux 0x889affde jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8898da7c pci_dev_driver EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88be5128 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x88ac2272 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x88b31461 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x88c2c07a uart_resume_port +EXPORT_SYMBOL vmlinux 0x88cb21b6 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88f8e6a9 __icmp_send +EXPORT_SYMBOL vmlinux 0x891dba30 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x8941e4c5 tcf_block_put +EXPORT_SYMBOL vmlinux 0x89214bb6 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x89251ebe eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x893128ec ihold EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x89494726 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x895deebc param_ops_charp -EXPORT_SYMBOL vmlinux 0x8965ad3d bio_uninit -EXPORT_SYMBOL vmlinux 0x8967cdf3 dm_put_device -EXPORT_SYMBOL vmlinux 0x896bd51b simple_write_begin -EXPORT_SYMBOL vmlinux 0x897712cb inet_getname -EXPORT_SYMBOL vmlinux 0x898f9be3 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x894d0545 elv_rb_find +EXPORT_SYMBOL vmlinux 0x89590e58 tty_port_open +EXPORT_SYMBOL vmlinux 0x89770907 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x89844312 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89b6645d uart_register_driver -EXPORT_SYMBOL vmlinux 0x89d859c2 open_exec -EXPORT_SYMBOL vmlinux 0x89e0ffb9 udp_seq_start -EXPORT_SYMBOL vmlinux 0x89f13933 noop_fsync -EXPORT_SYMBOL vmlinux 0x89f6b285 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x8a2d181f param_set_long +EXPORT_SYMBOL vmlinux 0x89b1d7a7 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x89c7f83f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x89e55afe xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x89edeece flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x89fc59bb phy_init_hw +EXPORT_SYMBOL vmlinux 0x8a10bd4e tcp_time_wait EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve +EXPORT_SYMBOL vmlinux 0x8a357c63 dev_printk_emit EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a447d7b phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a52d0c9 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x8a54670a __x86_indirect_jump_thunk_r14 -EXPORT_SYMBOL vmlinux 0x8a64b515 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x8a66118e ptp_find_pin EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a6db73c tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a761cbc watchdog_register_governor EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8c1734 unix_get_socket -EXPORT_SYMBOL vmlinux 0x8a91e6e3 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x8a822978 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x8a8ca0fc kobject_get +EXPORT_SYMBOL vmlinux 0x8a950cb5 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aafdf13 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x8ab3f7e6 start_tty +EXPORT_SYMBOL vmlinux 0x8aa9921d __scsi_execute +EXPORT_SYMBOL vmlinux 0x8aaf86d0 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x8abe42f0 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac34050 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x8ad072e5 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x8ae4a8d4 generic_write_end -EXPORT_SYMBOL vmlinux 0x8ae68a81 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x8ae75b92 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x8affde89 fs_bio_set +EXPORT_SYMBOL vmlinux 0x8acc83ff udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8acdaa38 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x8adf2a80 security_sk_clone +EXPORT_SYMBOL vmlinux 0x8ae69161 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x8af2dac1 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8af5557c xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x8b002fed scsi_rescan_device EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b1e97b2 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x8b204b1d bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x8b28b0bd pci_iomap_range -EXPORT_SYMBOL vmlinux 0x8b2d6d3b rtc_add_groups -EXPORT_SYMBOL vmlinux 0x8b403e01 igrab +EXPORT_SYMBOL vmlinux 0x8b06b0d5 thaw_bdev +EXPORT_SYMBOL vmlinux 0x8b1f6c35 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x8b55ffe5 registered_fb EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b733426 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8b69ab41 default_llseek EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b86ed61 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b916916 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x8b930459 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x8b940fc2 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8baa4dcf padata_do_serial -EXPORT_SYMBOL vmlinux 0x8bb1220d netlink_capable -EXPORT_SYMBOL vmlinux 0x8bc7eba5 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x8bceb6ac __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x8ba257a9 get_inode_acl +EXPORT_SYMBOL vmlinux 0x8bcdb2b9 __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8bf87e3f __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x8c0c8570 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x8c207cb9 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x8c12ac43 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x8c14ca4a set_blocksize +EXPORT_SYMBOL vmlinux 0x8c159c12 register_shrinker +EXPORT_SYMBOL vmlinux 0x8c1b8f50 mount_bdev EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c26f6ae phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c403f23 km_state_notify -EXPORT_SYMBOL vmlinux 0x8c4abeba poll_freewait -EXPORT_SYMBOL vmlinux 0x8c55a40e fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x8c616225 register_framebuffer -EXPORT_SYMBOL vmlinux 0x8c67373e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x8c3a9629 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x8c3bac10 __bforget +EXPORT_SYMBOL vmlinux 0x8c4e6c4d blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x8c5a766b seq_release +EXPORT_SYMBOL vmlinux 0x8c5d41aa pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x8c61c978 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x8c7aecdb security_sb_remount EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8b9008 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x8c919545 backlight_force_update EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8c9e67e1 blk_mq_end_request EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb8b586 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8cb74546 vfs_readlink EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cd2b57d folio_alloc EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf7bee5 iget5_locked -EXPORT_SYMBOL vmlinux 0x8d0908d3 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x8d0eeac0 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x8d15b71b dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x8d2308ad __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x8d2e66a3 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x8ce7071f param_set_bint +EXPORT_SYMBOL vmlinux 0x8ced3b4c blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x8cf899ba udp_read_skb +EXPORT_SYMBOL vmlinux 0x8d199c42 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x8d1b65ed pcie_get_mps EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d3534c3 unload_nls +EXPORT_SYMBOL vmlinux 0x8d3e7621 do_SAK 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 0x8d6b43f9 param_get_ushort -EXPORT_SYMBOL vmlinux 0x8d6e047c processors +EXPORT_SYMBOL vmlinux 0x8d6dfea5 input_register_handler +EXPORT_SYMBOL vmlinux 0x8d728fc1 ping_prot EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d810903 param_set_charp -EXPORT_SYMBOL vmlinux 0x8d8ef036 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x8d989eb2 dma_set_mask +EXPORT_SYMBOL vmlinux 0x8d9c199c component_match_add_release EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8da51ec7 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x8da5c1dd fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x8dab52c3 dquot_drop EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8db832a8 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x8dc67698 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x8dcaceda unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8dc3ea9e set_disk_ro +EXPORT_SYMBOL vmlinux 0x8dcbf9f1 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x8dd7ba4c agp_find_bridge EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de2566c pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8dde27e5 seq_open_private EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x8df6fd09 agp_bridge -EXPORT_SYMBOL vmlinux 0x8df7ea59 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e0f92d9 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x8e03e77c nf_getsockopt +EXPORT_SYMBOL vmlinux 0x8e0f1698 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x8e0f8437 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x8e1691af phy_detach EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1bd3ef to_nd_btt EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e227600 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x8e2baf68 __alloc_pages +EXPORT_SYMBOL vmlinux 0x8e392c3e udp6_csum_init EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e5951ce udplite_prot -EXPORT_SYMBOL vmlinux 0x8e7f9aab fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x8e86cbf0 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x8e455543 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x8e52ee35 __bh_read +EXPORT_SYMBOL vmlinux 0x8e69d7b9 fqdir_exit +EXPORT_SYMBOL vmlinux 0x8e82ce97 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x8e897ead phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x8e8b9a77 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e981903 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x8eac0040 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eba370f __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x8ebcd543 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x8ec45155 pcpu_hot EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed1db3b blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x8efbc0e8 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8ed915c3 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x8edcb4cb agp_put_bridge +EXPORT_SYMBOL vmlinux 0x8ede5b6f security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8f006d7d blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f02f967 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x8f2407c7 get_agp_version -EXPORT_SYMBOL vmlinux 0x8f26e086 __bio_advance +EXPORT_SYMBOL vmlinux 0x8f118dbb cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x8f1edca4 pnp_possible_config EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f39a74b request_key_tag -EXPORT_SYMBOL vmlinux 0x8f3d9220 sock_from_file -EXPORT_SYMBOL vmlinux 0x8f43236d arp_tbl -EXPORT_SYMBOL vmlinux 0x8f5b7e3f folio_wait_bit -EXPORT_SYMBOL vmlinux 0x8f7034f6 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x8f78b36f sk_free +EXPORT_SYMBOL vmlinux 0x8f2a09ef zpool_register_driver +EXPORT_SYMBOL vmlinux 0x8f39b51c mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x8f6f259e skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x8f7dd294 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x8f808b33 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f821f93 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x8f8d849c generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x8f93c606 import_iovec EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa0f4f7 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x8f9d8cd4 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb87d74 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x8fc038db filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x8fc8f8ee cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x8fabca34 edac_mc_find +EXPORT_SYMBOL vmlinux 0x8fb3e3ea simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8fb7c169 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x8fbb1697 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x8fc855f2 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds -EXPORT_SYMBOL vmlinux 0x8ff32820 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8fd77d9d stop_tty +EXPORT_SYMBOL vmlinux 0x8ff5e2ca generic_update_time EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900576be flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x902323be ip_frag_next +EXPORT_SYMBOL vmlinux 0x9016f291 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9036b1dd netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x903b56e2 __bforget -EXPORT_SYMBOL vmlinux 0x9040de7e devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x9048e017 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x904c398f pci_map_rom +EXPORT_SYMBOL vmlinux 0x9048c1cf d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x90555a9f pci_add_new_bus EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9060eff2 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x9062a6a9 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x9080cd06 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x9082d1eb __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x90911f80 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x90920f78 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x909a6983 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x90a54951 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x90584396 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x906aea1c fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x9097ee0e drop_super +EXPORT_SYMBOL vmlinux 0x90a01158 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90edcdd0 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x910b0a71 secpath_set +EXPORT_SYMBOL vmlinux 0x90bb312b blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x90c727be request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x90caf749 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x90d55f34 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x90d69d34 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x90fa1a8b inet_release +EXPORT_SYMBOL vmlinux 0x90fb48a9 inc_nlink EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x914c29ca vfs_get_tree -EXPORT_SYMBOL vmlinux 0x914c856c bdi_put -EXPORT_SYMBOL vmlinux 0x9153df7c security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x9157bbcf bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x913edd8c refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x9155aa81 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x91679fd7 phy_device_remove -EXPORT_SYMBOL vmlinux 0x9170125d zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x9179bdda pci_read_config_byte EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919dc88a qdisc_put 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 0x91aec9b8 generic_setlease -EXPORT_SYMBOL vmlinux 0x91b28901 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x91b66520 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x91c7539a inet_add_protocol -EXPORT_SYMBOL vmlinux 0x91d1c4c1 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x91d1d7f1 ilookup5 -EXPORT_SYMBOL vmlinux 0x91d9201d inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x91e3d59b _dev_notice -EXPORT_SYMBOL vmlinux 0x91e486d7 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x91eaa156 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x91ecca40 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x91efb1d0 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x91bda22c blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x91cce377 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x91e197c8 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x920a1535 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x920d2bc4 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x922d77b5 vmap EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b8f1c fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x923cd14d tty_name EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258bb57 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x92546efd input_get_keycode EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926032bb iget_failed +EXPORT_SYMBOL vmlinux 0x925acaa3 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x926c871f set_capacity +EXPORT_SYMBOL vmlinux 0x926d69c5 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x92713511 netdev_notice EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927c28a4 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x928d0dfb xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929b783f sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x92a0e80b neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x92a3445c agp_allocate_memory EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b94695 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c193d5 filemap_dirty_folio EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x92c982e6 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x92d32197 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x92d33b0e inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e29246 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x92e32957 simple_fill_super -EXPORT_SYMBOL vmlinux 0x92e5cd87 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x92d98151 mdiobus_free +EXPORT_SYMBOL vmlinux 0x92db4a11 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92ec8332 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x92f586b5 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x92f7c5c3 vlan_for_each +EXPORT_SYMBOL vmlinux 0x92f87276 param_get_int +EXPORT_SYMBOL vmlinux 0x92fa4e77 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fc966f gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x92fca609 invalidate_disk +EXPORT_SYMBOL vmlinux 0x92fdd1f2 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x931a8afb netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x9322ce12 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x933492f5 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x93461f68 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x9306f60f padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x9313c1b6 security_path_unlink +EXPORT_SYMBOL vmlinux 0x93367d4b pnp_register_driver EXPORT_SYMBOL vmlinux 0x934f564b __x86_indirect_jump_thunk_r15 -EXPORT_SYMBOL vmlinux 0x93663399 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x936778fa adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x93529bdf cdrom_release +EXPORT_SYMBOL vmlinux 0x935c6d05 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93813520 i2c_transfer -EXPORT_SYMBOL vmlinux 0x938f2185 proc_mkdir -EXPORT_SYMBOL vmlinux 0x93971499 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x939c42c6 pipe_unlock -EXPORT_SYMBOL vmlinux 0x93a0d786 is_subdir +EXPORT_SYMBOL vmlinux 0x938e2ea5 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x9397daa0 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bbdc7a inet_recvmsg -EXPORT_SYMBOL vmlinux 0x93d10cbb jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x93bdbbe9 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x93bf6c89 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x93c16770 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93d8fc99 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x93d97372 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x9420a496 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x93f2a6c9 bio_put +EXPORT_SYMBOL vmlinux 0x93f2d6e5 __ps2_command +EXPORT_SYMBOL vmlinux 0x93f81d31 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x94045a79 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942c18fa rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x9434dfd0 set_trace_device -EXPORT_SYMBOL vmlinux 0x943503b0 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x94320446 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9451419c bio_init_clone -EXPORT_SYMBOL vmlinux 0x945be222 genphy_resume -EXPORT_SYMBOL vmlinux 0x945f5647 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x946943c0 set_nlink -EXPORT_SYMBOL vmlinux 0x946afe19 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x94870e6d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x945b1eee lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x94845751 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x9493fc86 node_states -EXPORT_SYMBOL vmlinux 0x9494a73f input_set_capability EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949dbb97 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x94a31ee5 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x94ac7eb7 param_ops_bool +EXPORT_SYMBOL vmlinux 0x949716a2 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x94a2c1a5 deactivate_super +EXPORT_SYMBOL vmlinux 0x94b2fe20 key_task_permission EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94d92ff4 da903x_query_status -EXPORT_SYMBOL vmlinux 0x94dc0e3d pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x94f09227 set_anon_super +EXPORT_SYMBOL vmlinux 0x94c30907 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x94c42581 pci_find_bus +EXPORT_SYMBOL vmlinux 0x94c9aa1f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x94f7adf6 d_obtain_root EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x951c5618 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x95082065 __invalidate_device +EXPORT_SYMBOL vmlinux 0x9528387f netlink_kernel_release EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp -EXPORT_SYMBOL vmlinux 0x9545b30a nf_hook_slow EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9552043b iov_iter_zero -EXPORT_SYMBOL vmlinux 0x9579e2d5 set_page_dirty -EXPORT_SYMBOL vmlinux 0x9599dae5 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x955b7a02 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x955cffb3 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x9599edcb udp_seq_start +EXPORT_SYMBOL vmlinux 0x959b9f20 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a27ce0 netif_device_detach EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95c420ad param_get_ullong -EXPORT_SYMBOL vmlinux 0x95cf1206 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x95dfc012 vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0x960970ed devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x96176880 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x95b932e9 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x95bdddd9 phy_start +EXPORT_SYMBOL vmlinux 0x95bf31e1 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x95c2e123 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x95ca294e blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x95dbc787 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x96160193 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x962a9ec4 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x9637c124 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x96687150 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x96758c17 pci_request_region +EXPORT_SYMBOL vmlinux 0x96321acf i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x964c0302 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x96503c12 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x96701443 phy_print_status +EXPORT_SYMBOL vmlinux 0x96710132 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x967fa153 bdi_register +EXPORT_SYMBOL vmlinux 0x9684559e _dev_alert EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9686e17a mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x9694c340 padata_alloc +EXPORT_SYMBOL vmlinux 0x968e2d44 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x96b14d50 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bc1b04 follow_pfn +EXPORT_SYMBOL vmlinux 0x96b8d7fd sk_dst_check EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c30f13 mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e0182d pci_pme_active EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x96eadfd0 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x96f21e70 vc_cons +EXPORT_SYMBOL vmlinux 0x96ebbe0d xfrm_init_state EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9704833e n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x96fea1b8 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x97054847 rio_query_mport +EXPORT_SYMBOL vmlinux 0x971249db mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x972a3e22 xfrm_state_add EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9746e806 unregister_key_type +EXPORT_SYMBOL vmlinux 0x974b83e0 phy_loopback +EXPORT_SYMBOL vmlinux 0x975fbfce generic_file_splice_read EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x976814ca inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x976d5d45 serio_close +EXPORT_SYMBOL vmlinux 0x976e4a21 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x9770f60a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x9774e0d1 pnp_is_active EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat -EXPORT_SYMBOL vmlinux 0x97834518 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x97865aef _dev_info -EXPORT_SYMBOL vmlinux 0x978706a2 phy_print_status -EXPORT_SYMBOL vmlinux 0x97917ccc simple_statfs -EXPORT_SYMBOL vmlinux 0x979dbebd nf_log_unregister -EXPORT_SYMBOL vmlinux 0x97a2dfc9 pmem_sector_size EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97ac67e4 _dev_err EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b41706 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x97b871d3 phy_init_eee +EXPORT_SYMBOL vmlinux 0x97b6b82b dev_mc_add EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97ccf170 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x97d57ceb __i2c_transfer -EXPORT_SYMBOL vmlinux 0x97e83220 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x980626f0 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x97c8d30a pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x97cd9d41 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x97dca8a9 from_kgid +EXPORT_SYMBOL vmlinux 0x97e468a2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x97e50637 dquot_release +EXPORT_SYMBOL vmlinux 0x9810fa96 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98306354 tcp_recv_skb -EXPORT_SYMBOL vmlinux 0x9840016f dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x984d9c39 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x9853193c pcim_iounmap +EXPORT_SYMBOL vmlinux 0x98589764 mdio_find_bus EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x988ef58c dev_mc_add -EXPORT_SYMBOL vmlinux 0x989ac479 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x985bdf04 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x985c986f sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x985f3883 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x988158cf genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x9883dd88 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c37c16 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x98c5d4e6 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98d8daa6 phy_device_create -EXPORT_SYMBOL vmlinux 0x98e2ffe7 wireless_send_event +EXPORT_SYMBOL vmlinux 0x98daa78d pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ee5833 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x98ef45f8 genphy_loopback +EXPORT_SYMBOL vmlinux 0x98fc0c67 xp_free +EXPORT_SYMBOL vmlinux 0x99027410 sk_ns_capable EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x990f52e1 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x99145692 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x992566cc register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x9933c0d6 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994673bf neigh_update -EXPORT_SYMBOL vmlinux 0x994917a0 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x993ca684 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x993da778 netif_skb_features +EXPORT_SYMBOL vmlinux 0x993f79c0 lease_get_mtime EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9960cbe4 iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x99651037 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x99627ab2 iov_iter_discard EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9979c2ec serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x9987172c eth_mac_addr -EXPORT_SYMBOL vmlinux 0x999e7a57 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x99777be1 neigh_xmit +EXPORT_SYMBOL vmlinux 0x9977ff22 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x9988f0a0 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x998ff682 bio_free_pages +EXPORT_SYMBOL vmlinux 0x99997964 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x999d8d53 udp_set_csum EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99adee8c xfrm_register_km -EXPORT_SYMBOL vmlinux 0x99c6fd38 blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0x99d05d81 seq_hex_dump EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99dece3d mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x99e1ebdd mdiobus_free -EXPORT_SYMBOL vmlinux 0x99e71d6a kmalloc_trace EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99f20f91 d_find_any_alias EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fbcd2b from_kprojid -EXPORT_SYMBOL vmlinux 0x9a005bf4 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0f67db prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x9a1bd558 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x9a193ebf kern_path EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a269b1f jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x9a2c088f irq_stat -EXPORT_SYMBOL vmlinux 0x9a5508a2 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9a32a8c0 __brelse EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a690bf4 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x9a787013 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x9a852716 qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0x9a8ccfd5 page_mapping -EXPORT_SYMBOL vmlinux 0x9a9fb476 skb_dequeue +EXPORT_SYMBOL vmlinux 0x9a61b3ef netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x9a793a42 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9a9a2115 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0x9aa47a41 md_handle_request EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9aba2599 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x9abca419 km_state_expired -EXPORT_SYMBOL vmlinux 0x9ac78bfa fput +EXPORT_SYMBOL vmlinux 0x9aaf509a devm_iounmap +EXPORT_SYMBOL vmlinux 0x9ab4cb1c dev_close +EXPORT_SYMBOL vmlinux 0x9ab5069a i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x9ac2c487 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9ae04dcf __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9adf2766 param_ops_string EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af79d84 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x9b0b72e5 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x9b0def3e rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x9b0f26aa d_tmpfile +EXPORT_SYMBOL vmlinux 0x9b19d9ae ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9b1a627d dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b3308c4 __devm_release_region EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b380eb2 set_binfmt +EXPORT_SYMBOL vmlinux 0x9b41923f fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x9b42097b security_inet_conn_established EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5f4a75 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9b4e955e vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x9b593c33 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x9b6497dd xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b9871ef write_cache_pages -EXPORT_SYMBOL vmlinux 0x9b9ef5b9 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x9ba14157 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x9baa4762 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x9b76b872 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x9b8ad839 input_setup_polling +EXPORT_SYMBOL vmlinux 0x9bb052d2 dma_resv_fini EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bc220d1 ram_aops -EXPORT_SYMBOL vmlinux 0x9bd804b0 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9bc08458 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x9bc72880 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x9bd11a68 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x9bf7a1d9 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x9c0dd6f8 agp_enable EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1aeaa9 ip6_mtu -EXPORT_SYMBOL vmlinux 0x9c2c1f46 blkdev_put -EXPORT_SYMBOL vmlinux 0x9c4dc5d6 param_get_invbool +EXPORT_SYMBOL vmlinux 0x9c3b4a44 da903x_query_status +EXPORT_SYMBOL vmlinux 0x9c3f2d99 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x9c41e0e0 inet_add_offload +EXPORT_SYMBOL vmlinux 0x9c57220b netdev_reset_tc EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c81d7ca mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x9c691cd2 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x9c6c33e5 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x9c6fc8c8 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x9c7c39a4 ip_getsockopt EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c921f4a phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x9c8957dc __quota_error +EXPORT_SYMBOL vmlinux 0x9c8ba343 agp_create_memory +EXPORT_SYMBOL vmlinux 0x9c8fa7dd mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x9c99880c skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cc25978 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x9cbdcf71 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x9ccbacf5 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd68ff6 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cea0eef tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x9ce940ce netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9cf6c3e2 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x9d00bc40 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x9cf77a2d csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x9cfdc370 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9d08aecc md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0a580c input_get_poll_interval EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0e99f2 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x9d0f2cf9 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x9d0f6c32 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x9d0da1a5 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x9d0e32b1 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x9d1538e5 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x9d154c0e prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9d1b7986 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x9d2923c7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9d288499 param_get_hexint EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2ac192 dev_get_stats EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d33807c xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x9d4da226 kern_path -EXPORT_SYMBOL vmlinux 0x9d4eb2c3 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x9d520e70 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x9d4bb2c3 vfs_fsync +EXPORT_SYMBOL vmlinux 0x9d5496d7 get_tree_single +EXPORT_SYMBOL vmlinux 0x9d567d38 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x9d5a17cb mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x9d5d3f89 tcp_shutdown EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d729bc9 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x9d7e8f57 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d9a4733 set_bh_page -EXPORT_SYMBOL vmlinux 0x9daa35f9 lookup_one_len -EXPORT_SYMBOL vmlinux 0x9db44088 module_refcount -EXPORT_SYMBOL vmlinux 0x9dc6c8aa flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x9d95b552 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x9d96744b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x9d9c2765 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x9dac94aa eth_get_headlen +EXPORT_SYMBOL vmlinux 0x9dc5903b __nlmsg_put EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de2adb8 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x9df1b8c8 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x9e0181c2 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x9e09146d key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x9e0b5270 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e139887 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e163455 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x9e17de04 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x9e1ea398 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9e21b38a nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e405018 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x9e35db97 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x9e4cd980 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5e5e26 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x9e61b76a module_layout EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e75dbb3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x9e6a5b13 to_ndd EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e9c8b1c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x9e8760ce generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9e8d6dc3 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x9e9139dc pneigh_lookup EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea62e3b __folio_put +EXPORT_SYMBOL vmlinux 0x9ea6cc3c inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x9ea7e3b8 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eaf940b tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x9eb1c206 skb_dump -EXPORT_SYMBOL vmlinux 0x9ebd4889 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x9eb0c85e pci_disable_msix +EXPORT_SYMBOL vmlinux 0x9ebf2b4b netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ece2309 kernel_connect +EXPORT_SYMBOL vmlinux 0x9eca5218 netif_rx EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large -EXPORT_SYMBOL vmlinux 0x9ed92544 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x9ed6c0f0 max8925_set_bits EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee7880e sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9f20dc0b sync_blockdev -EXPORT_SYMBOL vmlinux 0x9f23f6c1 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x9f2f1ada pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x9f3253a3 console_start -EXPORT_SYMBOL vmlinux 0x9f3323f4 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x9f3d583f configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x9f0128e1 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x9f03e808 cdev_init +EXPORT_SYMBOL vmlinux 0x9f0afc18 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x9f38ec15 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f58fab5 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x9f5a96e4 mount_single EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x9f913212 tcp_filter -EXPORT_SYMBOL vmlinux 0x9f966682 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x9f97fd42 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x9f7e1bcf tty_unthrottle +EXPORT_SYMBOL vmlinux 0x9f8c78c0 d_alloc EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa7976e genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x9fa7e334 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x9fa802e8 tso_build_data +EXPORT_SYMBOL vmlinux 0x9fb343b7 ps2_init EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fc8f4c1 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x9fcc6c15 tty_hangup +EXPORT_SYMBOL vmlinux 0x9fd7ebfd vme_master_mmap EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feeb009 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x9fe19313 skb_push +EXPORT_SYMBOL vmlinux 0x9fe2e99d param_ops_ushort EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa003e936 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x9ffe51c6 d_make_root EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0171cc0 __ip_options_compile EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01e0b22 discard_new_inode +EXPORT_SYMBOL vmlinux 0xa01f9fbb netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xa022c5a4 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xa025f692 param_get_long EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa02c2ba7 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa042526d jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa043fd99 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0xa04b2e88 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xa04ff54b registered_fb +EXPORT_SYMBOL vmlinux 0xa044f19e iov_iter_revert EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa061d6c4 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa069c07c fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa0708a9d netdev_alert +EXPORT_SYMBOL vmlinux 0xa079708e pci_request_regions EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084422d page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09d58d3 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xa09ef8a3 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xa0a1dd03 mdio_driver_register EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0da75bc vfs_link +EXPORT_SYMBOL vmlinux 0xa0bc3e80 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e6cd63 ps2_drain -EXPORT_SYMBOL vmlinux 0xa0e9095d netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xa0ea0798 touch_buffer 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 0xa0f97989 mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0ff716b xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xa108b397 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10b25b5 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xa10e7bb4 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xa11ec5c0 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xa11f2e30 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xa1325990 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xa132a0e4 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xa138918d inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xa13d8c12 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0xa1487841 clk_get -EXPORT_SYMBOL vmlinux 0xa1596837 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xa159abf7 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xa16fb12c tty_kref_put -EXPORT_SYMBOL vmlinux 0xa17b45b6 ppp_unit_number -EXPORT_SYMBOL vmlinux 0xa1948397 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xa1a585aa flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xa1a7736e __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xa1aae2c2 unlock_rename -EXPORT_SYMBOL vmlinux 0xa1bb9513 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa108fe92 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xa11566c7 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xa12cbf90 fs_bio_set +EXPORT_SYMBOL vmlinux 0xa12dfcab generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa139868c blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xa1462726 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xa19b868d __d_drop +EXPORT_SYMBOL vmlinux 0xa19d1836 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xa1a11b7e dev_load EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1ce09a1 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xa1ceaa58 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa1d05277 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xa1ee0b08 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xa1c924c4 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xa1d8a918 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa1e7c35c padata_alloc +EXPORT_SYMBOL vmlinux 0xa1f80edd vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xa1fa221c pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20ad2e9 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xa212f8bd update_devfreq -EXPORT_SYMBOL vmlinux 0xa22baf09 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xa213fffd xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xa2250a06 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xa22705b2 truncate_setsize EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa234ef69 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xa23d0969 seq_pad +EXPORT_SYMBOL vmlinux 0xa23eef16 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24c1f79 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xa2488d76 udp_seq_stop EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25a60bf pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa2520597 inode_dio_wait EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2833f34 copy_string_kernel EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa293cb73 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xa2a441f2 phy_loopback -EXPORT_SYMBOL vmlinux 0xa2b230d0 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa2bc39ee pci_iounmap -EXPORT_SYMBOL vmlinux 0xa2dc1f3e set_capacity -EXPORT_SYMBOL vmlinux 0xa2f490db _dev_printk -EXPORT_SYMBOL vmlinux 0xa313c0e6 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xa32c4196 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xa334cbf6 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xa34b8aa3 bdi_unregister -EXPORT_SYMBOL vmlinux 0xa35880d3 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xa378df73 md_handle_request -EXPORT_SYMBOL vmlinux 0xa37a10bf nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xa37be85b clk_add_alias -EXPORT_SYMBOL vmlinux 0xa38ad6f8 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xa38e91ea __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xa28de867 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xa2959837 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xa2a89a15 poll_initwait +EXPORT_SYMBOL vmlinux 0xa2b12f7f fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xa2b7da72 dst_init +EXPORT_SYMBOL vmlinux 0xa2bdc4aa tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xa2e1cd3d skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xa2ed4c9e skb_queue_head +EXPORT_SYMBOL vmlinux 0xa2f8dd06 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xa2ff203d param_set_uint +EXPORT_SYMBOL vmlinux 0xa3077ca7 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xa30aad95 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa31d6ca6 mpage_readahead +EXPORT_SYMBOL vmlinux 0xa33a9c26 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xa3423e6c max8998_update_reg +EXPORT_SYMBOL vmlinux 0xa36c2ee5 pci_dev_get +EXPORT_SYMBOL vmlinux 0xa36c64be i2c_transfer +EXPORT_SYMBOL vmlinux 0xa370eb8a jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa37be87e dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xa37f03d3 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xa38f090f mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa3a0a6c4 unpin_user_pages -EXPORT_SYMBOL vmlinux 0xa3b0d09e dquot_commit +EXPORT_SYMBOL vmlinux 0xa38fc36d devfreq_update_status +EXPORT_SYMBOL vmlinux 0xa3a1378f sk_alloc +EXPORT_SYMBOL vmlinux 0xa3a6ec42 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa3ab9edf netif_carrier_off +EXPORT_SYMBOL vmlinux 0xa3af9f67 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3cbe874 path_get EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3d3b94e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xa3e2ab3b pcim_set_mwi EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3e9fe15 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa3f51ff5 key_validate EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40b2b1b dev_set_alias +EXPORT_SYMBOL vmlinux 0xa40e2818 get_tree_keyed EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa410ab2e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xa415c129 generic_copy_file_range EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa41d0969 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xa42618de framebuffer_release -EXPORT_SYMBOL vmlinux 0xa4435c33 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xa43fb623 devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xa44f3e0f _dev_crit -EXPORT_SYMBOL vmlinux 0xa457fa2e devm_request_resource -EXPORT_SYMBOL vmlinux 0xa45cb6be begin_new_exec -EXPORT_SYMBOL vmlinux 0xa473a4e9 bpf_link_put -EXPORT_SYMBOL vmlinux 0xa49fa07d inode_nohighmem +EXPORT_SYMBOL vmlinux 0xa44f8761 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xa4513c78 inode_set_flags +EXPORT_SYMBOL vmlinux 0xa474c6d1 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xa47d69b5 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xa493a650 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xa4ad4cc6 is_subdir +EXPORT_SYMBOL vmlinux 0xa4b1f17a tty_port_tty_set EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c12a76 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xa4ccb8cd mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa4bb26ee pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa4bf9829 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa4cad03d release_sock +EXPORT_SYMBOL vmlinux 0xa4ced25a dma_free_attrs EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4db9025 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xa4f1760e jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xa4f323af fddi_type_trans +EXPORT_SYMBOL vmlinux 0xa4d657c6 nd_device_register +EXPORT_SYMBOL vmlinux 0xa4eab5c9 skb_ext_add +EXPORT_SYMBOL vmlinux 0xa4f23b81 iterate_fd +EXPORT_SYMBOL vmlinux 0xa4f6ea0b padata_do_serial EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa4fdc13d mdiobus_read EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa52179d3 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa50ffcdd devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa5136303 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa52949ea sock_edemux EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52dff49 seq_pad -EXPORT_SYMBOL vmlinux 0xa539f1a4 misc_deregister -EXPORT_SYMBOL vmlinux 0xa53a18f3 make_kgid +EXPORT_SYMBOL vmlinux 0xa53ed745 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa5409a2b vfs_mknod +EXPORT_SYMBOL vmlinux 0xa5434ce0 iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa553c081 config_item_get -EXPORT_SYMBOL vmlinux 0xa55f66f9 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xa56c151b __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xa577db42 del_gendisk +EXPORT_SYMBOL vmlinux 0xa55bba0a agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xa566a8b3 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa5679129 inet_frag_find +EXPORT_SYMBOL vmlinux 0xa57f5978 pcie_set_readrq EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xa592913b md_register_thread EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5c62d65 tcp_close EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5ec5062 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xa5ff1a05 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xa606dcf0 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xa6079a4a rproc_alloc +EXPORT_SYMBOL vmlinux 0xa613552b __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xa614d828 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa61c2154 netdev_emerg EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa646533c serio_bus -EXPORT_SYMBOL vmlinux 0xa646ffe5 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0xa62c3353 __register_nls +EXPORT_SYMBOL vmlinux 0xa6361ac4 device_get_ethdev_address EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa6621395 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xa674aef2 fd_install +EXPORT_SYMBOL vmlinux 0xa66df38d tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xa6809f35 inet_stream_ops EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa687bdac inet_ioctl +EXPORT_SYMBOL vmlinux 0xa68359d7 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa6eff593 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xa6f1b6aa udp_gro_receive -EXPORT_SYMBOL vmlinux 0xa6f49513 vme_bus_num -EXPORT_SYMBOL vmlinux 0xa6fb4ed9 dquot_get_state -EXPORT_SYMBOL vmlinux 0xa6fe6006 pci_get_device -EXPORT_SYMBOL vmlinux 0xa70b7f07 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xa6b71e9e __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xa6bf5a97 set_bh_page +EXPORT_SYMBOL vmlinux 0xa6cbb379 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xa70c1cfc __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71bdbb7 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be -EXPORT_SYMBOL vmlinux 0xa71d8df1 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xa71e8793 param_ops_charp EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa729c455 write_inode_now EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa73760b8 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xa73801e3 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xa7413f26 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xa742c164 dquot_operations +EXPORT_SYMBOL vmlinux 0xa73f8d96 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xa74139c9 proc_set_user EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76fdd11 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa752bd9e vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xa75f3071 f_setown EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7812c6e wait_for_key_construction EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa7b13bf3 __scm_send -EXPORT_SYMBOL vmlinux 0xa7b61c34 unregister_netdev -EXPORT_SYMBOL vmlinux 0xa7c702c7 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xa7c81519 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xa7ce8ee4 cdrom_release +EXPORT_SYMBOL vmlinux 0xa7988091 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xa7d3d181 skb_copy EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7de16fe d_find_alias -EXPORT_SYMBOL vmlinux 0xa7df5fb2 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7efa0ef dquot_disable -EXPORT_SYMBOL vmlinux 0xa7f47b1f netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xa7fc7d07 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa806a763 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xa81563ae netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa80a6f9a mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xa80d00b7 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa82538f9 pskb_extract -EXPORT_SYMBOL vmlinux 0xa83236db generic_permission -EXPORT_SYMBOL vmlinux 0xa8332a4b dev_set_threaded +EXPORT_SYMBOL vmlinux 0xa819adf7 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xa821a399 skb_eth_push +EXPORT_SYMBOL vmlinux 0xa82ddfe8 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa83bcd68 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa83ffbc1 d_prune_aliases EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa8582b60 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa857845d __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85bab48 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xa85c186f sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xa863b2dd of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xa8662f68 vga_con EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa894e4aa migrate_folio +EXPORT_SYMBOL vmlinux 0xa87e540d i8042_install_filter +EXPORT_SYMBOL vmlinux 0xa88004e4 __neigh_event_send EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free -EXPORT_SYMBOL vmlinux 0xa89903b7 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8c47066 vif_device_init -EXPORT_SYMBOL vmlinux 0xa8c5f89d twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xa8c81c48 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xa8ca8485 vfs_getattr +EXPORT_SYMBOL vmlinux 0xa89fa4f3 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xa8a0e47a jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xa8b7996b keyring_alloc +EXPORT_SYMBOL vmlinux 0xa8bf5f84 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xa8c5eeee dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8e3c857 put_cmsg +EXPORT_SYMBOL vmlinux 0xa8e20710 sync_filesystem EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8ebe135 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fbee7f __seq_open_private -EXPORT_SYMBOL vmlinux 0xa90ad7e5 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xa90423f6 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xa907c033 fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa90f09fb dev_loopback_xmit EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa92ef806 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa92fe71f dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index -EXPORT_SYMBOL vmlinux 0xa93efbd2 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xa93b65e7 cad_pid +EXPORT_SYMBOL vmlinux 0xa93e1a40 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9743f8d setup_new_exec EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa982edfc ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xa992a8cf set_pages_uc -EXPORT_SYMBOL vmlinux 0xa9b42fc9 edac_mc_find -EXPORT_SYMBOL vmlinux 0xa9bfccb3 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xa991794a flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xa9a05409 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa9aa9035 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xa9ab28c0 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xa9b4c004 freeze_bdev EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9f1f662 vme_slave_request -EXPORT_SYMBOL vmlinux 0xa9fb33cd d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa9fec4a9 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xa9d1ac5f scsi_device_get +EXPORT_SYMBOL vmlinux 0xa9db0bac __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xa9ec88a6 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xa9f28f48 rtnl_notify EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa09b523 dquot_commit EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa0df964 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0xaa138015 vme_register_bridge EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa317181 __skb_checksum +EXPORT_SYMBOL vmlinux 0xaa24ea52 is_free_buddy_page EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa4a51a3 dst_alloc +EXPORT_SYMBOL vmlinux 0xaa3a87f0 tty_lock EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7d1bc2 __inet_hash +EXPORT_SYMBOL vmlinux 0xaa7ed81a agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xaa80a3f5 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xaa8aff06 mdio_bus_type EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaac65f58 tty_port_open -EXPORT_SYMBOL vmlinux 0xaacb690c ptp_clock_register -EXPORT_SYMBOL vmlinux 0xaacf471f xp_alloc +EXPORT_SYMBOL vmlinux 0xaaa4ff62 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xaabe7db2 bdi_put +EXPORT_SYMBOL vmlinux 0xaac5b0b7 module_refcount +EXPORT_SYMBOL vmlinux 0xaacf0ded dev_uc_add 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 0xaadc978b make_kuid EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaed9ca4 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xaaeaed43 param_set_invbool +EXPORT_SYMBOL vmlinux 0xaaf8de05 simple_transaction_set EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xaaff031a proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xab1404a5 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xab1cb73e phy_modify_paged -EXPORT_SYMBOL vmlinux 0xab1fd948 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xab2dfa91 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xab31687d blk_sync_queue -EXPORT_SYMBOL vmlinux 0xab3308d1 ping_prot +EXPORT_SYMBOL vmlinux 0xab116284 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xab244d59 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xab246ff1 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xab28c485 vc_resize EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4cf79e __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xab4c043f processors EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab620e09 remap_pfn_range EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6a23a6 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab77a95e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xab754b05 is_bad_inode EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab826c57 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xab8330f6 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xaba642df sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xab78c821 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xab8dcb68 register_key_type +EXPORT_SYMBOL vmlinux 0xab9d215e folio_mark_accessed EXPORT_SYMBOL vmlinux 0xabb42425 set_groups EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabc93b5d netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0xabd0be1c page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xabf2d92e gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xabc50a7b napi_gro_flush +EXPORT_SYMBOL vmlinux 0xabd44d1a blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xabd5bead __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xabda68ad fb_show_logo +EXPORT_SYMBOL vmlinux 0xabec1f23 rproc_put +EXPORT_SYMBOL vmlinux 0xabefa797 pci_enable_msi EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac0507f8 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xac0adae0 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xac128233 key_invalidate +EXPORT_SYMBOL vmlinux 0xac1536af tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2bbac0 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac35be20 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0xac432918 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xac32a694 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac54da7d md_flush_request -EXPORT_SYMBOL vmlinux 0xac576ef9 mmc_retune_release -EXPORT_SYMBOL vmlinux 0xac5fa932 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0xac5bb621 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6bbf16 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xac755d34 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xac7eecac mdio_device_reset -EXPORT_SYMBOL vmlinux 0xac8d21a1 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xaca1396f nf_log_unset -EXPORT_SYMBOL vmlinux 0xaca8b830 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xac965a22 user_revoke EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb6b1bb filemap_check_errors -EXPORT_SYMBOL vmlinux 0xacc22c8b ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xaccfcdb0 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xacb4c4cb eth_mac_addr EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdbf0d9 elevator_alloc EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace9b1f2 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xace44d5b netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf43ff9 sk_capable EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfbe8c2 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xacfc63f4 pps_unregister_source EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad38ae95 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xad474170 inet_accept -EXPORT_SYMBOL vmlinux 0xad5024fd security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xad1051bc unlock_page +EXPORT_SYMBOL vmlinux 0xad10d4f6 ether_setup +EXPORT_SYMBOL vmlinux 0xad1a4b31 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xad2377d6 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xad3efe06 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xad3fd83f inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xad461db0 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid EXPORT_SYMBOL vmlinux 0xad53a002 __x86_indirect_call_thunk_rbp +EXPORT_SYMBOL vmlinux 0xad6245da vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xad6989dd request_key_tag EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad6bc244 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xad6cc57a neigh_for_each EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad88a8e7 __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0xad9035e2 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xad8aaba7 fb_set_cmap EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad9bc129 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xada1832d tcp_md5_do_del EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada549f7 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xada48208 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xada94c68 pci_enable_ptm EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb451db empty_aops EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc74be6 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xadd09045 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade28cea iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xadeb0357 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xae01aba7 sk_error_report -EXPORT_SYMBOL vmlinux 0xae03385c vme_irq_handler +EXPORT_SYMBOL vmlinux 0xadf4d08c mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0494dd dev_open EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae27c957 dquot_free_inode EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae49a58d __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xae54f81f vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xae31ca21 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae67062d kill_litter_super +EXPORT_SYMBOL vmlinux 0xae75f87b folio_account_redirty +EXPORT_SYMBOL vmlinux 0xae9690e9 amd_iommu_domain_set_gcr3 EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeac4b29 pci_dev_put EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb6fc3b dev_get_iflink EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaebd5632 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xaed207b3 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xaef6ed16 pci_select_bars +EXPORT_SYMBOL vmlinux 0xaebe092c get_fs_type +EXPORT_SYMBOL vmlinux 0xaec9f630 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xaed96e27 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xaee61308 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xaefcff0f thaw_super +EXPORT_SYMBOL vmlinux 0xaf0ed00b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xaf1d9d29 param_set_ulong +EXPORT_SYMBOL vmlinux 0xaf1e185a textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xaf33fea8 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xaf34b8d6 inet_sock_destruct EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf51c78b config_group_init -EXPORT_SYMBOL vmlinux 0xaf84a944 mdio_device_free +EXPORT_SYMBOL vmlinux 0xaf5ed90e bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xaf7b844e block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xaf876543 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xaf9a843a vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xaf9984d2 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xafa629fa agp_alloc_bridge EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafb8ac14 folio_end_writeback EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafdf78e7 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xafe10b8a blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xafe598c8 unlock_buffer +EXPORT_SYMBOL vmlinux 0xaffc48a9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb00e3047 sock_efree EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb03c1419 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xb03d16aa refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xb03e2089 cad_pid -EXPORT_SYMBOL vmlinux 0xb04824b7 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xb04923b5 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb03954de cdrom_open EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04dcda2 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xb056b8f9 add_watch_to_object -EXPORT_SYMBOL vmlinux 0xb0570e65 setattr_prepare +EXPORT_SYMBOL vmlinux 0xb04cca69 param_get_bool EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb067d4ac kset_unregister -EXPORT_SYMBOL vmlinux 0xb067e9c5 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xb06ab9c6 rproc_detach -EXPORT_SYMBOL vmlinux 0xb0840abe dev_get_iflink -EXPORT_SYMBOL vmlinux 0xb088abfc eth_validate_addr EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a45719 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xb0ae35d1 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xb0aed24c jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xb0b76945 __x86_indirect_call_thunk_rsp -EXPORT_SYMBOL vmlinux 0xb0c3de82 pv_ops -EXPORT_SYMBOL vmlinux 0xb0c4399e ndisc_mc_map EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d1ca48 lease_modify +EXPORT_SYMBOL vmlinux 0xb0d8b555 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e590e6 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb1193ae9 fget -EXPORT_SYMBOL vmlinux 0xb11e5a1d __kfree_skb +EXPORT_SYMBOL vmlinux 0xb0ea5069 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xb0f21a24 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xb11c51bc sock_kfree_s EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12fd881 seq_open EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb138899c ip_defrag +EXPORT_SYMBOL vmlinux 0xb1443565 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14eda00 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb14fce02 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb15cb4fe secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xb160467a netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xb1636a2e mmc_release_host -EXPORT_SYMBOL vmlinux 0xb194afc6 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb1559203 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb166cbb4 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1acf71b netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xb1a9e30c mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d07fba dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xb1d4203c get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xb1c82b35 arp_tbl EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e43246 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xb1fc3bb3 __quota_error -EXPORT_SYMBOL vmlinux 0xb2026766 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xb206f115 con_is_visible -EXPORT_SYMBOL vmlinux 0xb20b8b8d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb1e74931 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb1f9bf14 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb22d6047 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xb21cdd84 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xb2201e02 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xb2223e3d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xb2297873 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xb22a92af rproc_coredump_using_sections 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 0xb24ff1c5 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xb252cfea give_up_console +EXPORT_SYMBOL vmlinux 0xb2417e36 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xb25b4820 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb2621e8a pnp_start_dev -EXPORT_SYMBOL vmlinux 0xb26437ac phy_drivers_register -EXPORT_SYMBOL vmlinux 0xb2a06143 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xb2b44ddf tty_register_driver +EXPORT_SYMBOL vmlinux 0xb277f36c register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xb292c3ba ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xb2a7361d tcf_idr_search +EXPORT_SYMBOL vmlinux 0xb2a9f62c agp_bridge +EXPORT_SYMBOL vmlinux 0xb2ae12d8 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bfd5d5 sget_fc -EXPORT_SYMBOL vmlinux 0xb2c31476 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xb2cf0593 posix_test_lock -EXPORT_SYMBOL vmlinux 0xb2cfda63 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xb2dcb3f0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb2bed339 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xb2c17741 md_write_start +EXPORT_SYMBOL vmlinux 0xb2d355bd d_lookup +EXPORT_SYMBOL vmlinux 0xb2e81e11 mnt_set_expiry EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fb7f91 input_flush_device EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fceeca tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb301e66f tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb30745b9 fb_pan_display EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb317745a dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb31f3bb1 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb337a76b mdio_device_remove -EXPORT_SYMBOL vmlinux 0xb3380d63 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xb33ba106 input_release_device -EXPORT_SYMBOL vmlinux 0xb3511d32 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xb35a894b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xb361b979 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb36875b9 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xb342e51c mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xb35bc052 km_query EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xb37de261 __SCK__tp_func_write_msr EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert -EXPORT_SYMBOL vmlinux 0xb38c2a9e dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xb38e7248 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xb394427c mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xb39ce76a ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xb389c193 mdiobus_read +EXPORT_SYMBOL vmlinux 0xb39a7747 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3b0a189 skb_push -EXPORT_SYMBOL vmlinux 0xb3b189fb brioctl_set -EXPORT_SYMBOL vmlinux 0xb3b22670 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xb3b5c437 __find_get_block -EXPORT_SYMBOL vmlinux 0xb3c9053f generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xb3d22390 input_allocate_device +EXPORT_SYMBOL vmlinux 0xb3a9ffbd _dev_warn +EXPORT_SYMBOL vmlinux 0xb3afcc31 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xb3c7dacf d_find_alias EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e0b383 register_netdev -EXPORT_SYMBOL vmlinux 0xb3e7598d filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xb3ebcf42 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xb3ebdd61 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xb3db2017 bio_alloc_clone EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f5af01 iov_iter_pipe 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 0xb41c7f36 kobject_get +EXPORT_SYMBOL vmlinux 0xb4132013 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xb420a8af dm_unregister_target EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42b56e9 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xb442b703 kill_block_super +EXPORT_SYMBOL vmlinux 0xb4395586 dev_get_flags EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb4633838 f_setown -EXPORT_SYMBOL vmlinux 0xb464982c devm_of_iomap +EXPORT_SYMBOL vmlinux 0xb4624cb4 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xb4737d3c file_path +EXPORT_SYMBOL vmlinux 0xb47b5f73 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb480f36a fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0xb481493d cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xb488b3d1 input_get_keycode +EXPORT_SYMBOL vmlinux 0xb47dcd10 __dquot_free_space EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb495fccb unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb4979fea inet_register_protosw +EXPORT_SYMBOL vmlinux 0xb49da0eb ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xb4b493df xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xb4b51627 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xb4b88c30 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xb4d3ddb0 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xb5157294 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0xb53924a5 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb4d13b25 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xb4d63be1 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb4e28c44 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb4f03877 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xb4f5cb50 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xb4f6af71 input_set_capability +EXPORT_SYMBOL vmlinux 0xb4fee694 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xb5296b35 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb539843f cfb_copyarea EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5480ab9 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xb5587953 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xb583709b rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xb5852c81 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xb586429d invalidate_bdev +EXPORT_SYMBOL vmlinux 0xb54bfe4c pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xb54eee77 tcp_child_process +EXPORT_SYMBOL vmlinux 0xb5600198 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb56e7dcb pci_assign_resource +EXPORT_SYMBOL vmlinux 0xb57de72c tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb586668f serio_unregister_port EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0xb59a4f1a __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xb59f77f7 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xb58e19d0 aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5ad0248 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xb5b2c427 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb5b142f5 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5be6779 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xb5cf7a92 cdev_init -EXPORT_SYMBOL vmlinux 0xb5d0160c flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xb5de2cc6 block_truncate_page +EXPORT_SYMBOL vmlinux 0xb5b9dacf follow_pfn +EXPORT_SYMBOL vmlinux 0xb5c585a9 touch_buffer +EXPORT_SYMBOL vmlinux 0xb5cc7726 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xb5d0e1a2 dm_table_get_size EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb6051bfc xfrm_register_type -EXPORT_SYMBOL vmlinux 0xb6121f58 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xb5ee0bd3 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb5f46af7 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xb5fe995f capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb604cbbb bioset_exit +EXPORT_SYMBOL vmlinux 0xb60707df dev_uc_init EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb639ef3f page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xb64420e7 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xb654be84 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xb63be78b mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb669a4a7 fc_mount EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb670159a try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67ac006 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb68b680c set_blocksize +EXPORT_SYMBOL vmlinux 0xb68a6851 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69af7e3 d_genocide +EXPORT_SYMBOL vmlinux 0xb6a83aba sock_no_accept EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6aea65d dcb_getapp -EXPORT_SYMBOL vmlinux 0xb6c56406 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xb6adf74b tty_port_init +EXPORT_SYMBOL vmlinux 0xb6afb110 mpage_read_folio EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6cdd36d tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xb6d58547 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xb6dfcf3d mmc_request_done EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e6e46c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xb6e7c100 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xb6ee2501 write_cache_pages +EXPORT_SYMBOL vmlinux 0xb6f390b8 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb708206d agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xb7119dc1 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb712160c kobject_del EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb72c196f param_ops_hexint -EXPORT_SYMBOL vmlinux 0xb72e0040 device_add_disk +EXPORT_SYMBOL vmlinux 0xb72339b3 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xb726aa8a kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xb72c116d blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb7309dee __mmc_claim_host EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb754a70f user_path_at_empty EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb75a0077 vme_lm_request -EXPORT_SYMBOL vmlinux 0xb76d7d8a iunique +EXPORT_SYMBOL vmlinux 0xb77f9511 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7c0d642 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb7a797ad phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xb7bbeec2 dump_align EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c38944 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d76366 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xb7ec7c4c param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xb7f4a4d7 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb7cf10a8 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xb7da990f eth_gro_receive +EXPORT_SYMBOL vmlinux 0xb7e0d770 passthru_features_check +EXPORT_SYMBOL vmlinux 0xb7f398c2 reuseport_add_sock EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb819637d alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xb81dced4 sock_release -EXPORT_SYMBOL vmlinux 0xb83b36f6 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xb862f7ea __x86_indirect_jump_thunk_rbx EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86ecf7a component_match_add_typed EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb8977921 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xb88074d9 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xb885e367 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xb892bb32 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xb898ee39 inode_update_time EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e5437 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xb8ac1baa __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b8fae4 kernel_bind +EXPORT_SYMBOL vmlinux 0xb8d398b6 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb9071c12 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb8ea3d57 neigh_update +EXPORT_SYMBOL vmlinux 0xb901f084 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9195071 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb9330e69 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb9289c9d nf_ip6_checksum EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb946e250 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb94b5745 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xb94d68e6 ram_aops EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb97fbfb0 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xb98243a0 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xb99d718c ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0xb9a09ddd __x86_indirect_jump_thunk_rcx +EXPORT_SYMBOL vmlinux 0xb9a20191 inet_addr_type EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9c2435e alloc_pages -EXPORT_SYMBOL vmlinux 0xb9cc3122 kernel_bind +EXPORT_SYMBOL vmlinux 0xb9b876df vfs_get_fsid EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xb9e4cc3f devfreq_add_device EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ff11c2 keyring_alloc +EXPORT_SYMBOL vmlinux 0xb9e91fc7 max8998_read_reg EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba097c99 dentry_create EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le EXPORT_SYMBOL vmlinux 0xba2449b3 __x86_indirect_jump_thunk_rax -EXPORT_SYMBOL vmlinux 0xba2a4b46 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xba2b4e5d pmem_sector_size EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5283b5 passthru_features_check -EXPORT_SYMBOL vmlinux 0xba7c7041 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xba4da0b7 napi_enable +EXPORT_SYMBOL vmlinux 0xba5f75e2 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xba60c9aa tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xba7f48ee ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xba894018 vm_insert_page EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xba98a6af security_d_instantiate -EXPORT_SYMBOL vmlinux 0xba99c401 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xbab3ad13 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbac927c6 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xbadebe23 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xbae05ac0 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xbacb4b67 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xbaddddc0 keyring_clear +EXPORT_SYMBOL vmlinux 0xbaf03710 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xbaf7e5ed md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start -EXPORT_SYMBOL vmlinux 0xbafac507 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb07e535 legacy_pic EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb13882e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xbb16d7a0 is_nd_dax EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb226f2a vfs_ioctl +EXPORT_SYMBOL vmlinux 0xbb1bcf72 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2a3b24 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xbb28c91a trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xbb3c2fee jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xbb459839 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xbb4d4752 sock_bind_add EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb533690 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xbb55ebd0 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xbb586a13 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xbb6702bf kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xbb69075c fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xbb8dca41 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xbb58bc0e page_mapping +EXPORT_SYMBOL vmlinux 0xbb59b145 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbb617fb2 devm_clk_get +EXPORT_SYMBOL vmlinux 0xbb86f7a6 param_set_ushort EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb9608b8 __sock_create -EXPORT_SYMBOL vmlinux 0xbb976706 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xbb9889f3 mmc_start_request -EXPORT_SYMBOL vmlinux 0xbb990e6c init_net -EXPORT_SYMBOL vmlinux 0xbb9a4a0e mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xbb9ad1ca textsearch_unregister EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbaaeeae simple_setattr -EXPORT_SYMBOL vmlinux 0xbbad382a __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xbbcc9ed0 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xbbd08d67 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xbbcf8ece nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xbbe53621 current_time +EXPORT_SYMBOL vmlinux 0xbbeaa2f3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xbc02f918 has_capability_noaudit EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc326e2a cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xbc40beb1 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xbc61f989 to_nd_dax -EXPORT_SYMBOL vmlinux 0xbc6ecf6c security_sk_clone -EXPORT_SYMBOL vmlinux 0xbc882ff5 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xbc92cf79 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xbc9b402f locks_init_lock +EXPORT_SYMBOL vmlinux 0xbc54bf17 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xbc9fbbee inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xbca080a2 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcaddded xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xbcac57bb pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key -EXPORT_SYMBOL vmlinux 0xbcb94bf8 sk_alloc -EXPORT_SYMBOL vmlinux 0xbcc2ea4d jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xbcc5c420 param_set_hexint -EXPORT_SYMBOL vmlinux 0xbcd29197 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xbce5e5f1 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xbcc5ab18 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xbcd36e2a may_setattr +EXPORT_SYMBOL vmlinux 0xbcdd64b7 key_alloc +EXPORT_SYMBOL vmlinux 0xbce47ada scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xbce5c0a0 unregister_md_personality EXPORT_SYMBOL vmlinux 0xbcef8b58 __x86_indirect_jump_thunk_rdx -EXPORT_SYMBOL vmlinux 0xbcf835d3 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xbd13f6be bio_copy_data -EXPORT_SYMBOL vmlinux 0xbd1bb21e tty_port_close -EXPORT_SYMBOL vmlinux 0xbd209556 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xbcf91060 vfs_statfs +EXPORT_SYMBOL vmlinux 0xbd110778 page_pool_release_page EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd3d6744 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xbd3b6609 PageMovable EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd538627 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xbd54fa03 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xbd5bf74b tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xbd6396d4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xbd4a96ee vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xbd4da012 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6ade47 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xbd7b4961 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xbd8427da finish_swait -EXPORT_SYMBOL vmlinux 0xbd9e1f2f ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xbda0698c ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xbdc94404 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xbdd5e591 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xbd6b06c0 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xbd718c68 module_put +EXPORT_SYMBOL vmlinux 0xbd948ead vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xbd9d355e nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xbda8b451 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xbdaa52fd dev_remove_offload +EXPORT_SYMBOL vmlinux 0xbdc654ff iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xbdedc0b7 simple_lookup +EXPORT_SYMBOL vmlinux 0xbdf04c8f tcf_action_exec +EXPORT_SYMBOL vmlinux 0xbdf9c7ac close_fd_get_file EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbdfd2ae4 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xbdffb1a8 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xbdfc4eba __devm_request_region EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe0151ec bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xbe06a8a5 netdev_warn +EXPORT_SYMBOL vmlinux 0xbe137738 irq_set_chip EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp -EXPORT_SYMBOL vmlinux 0xbe2cae3c jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xbe2f563e tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xbe341a21 vga_put +EXPORT_SYMBOL vmlinux 0xbe33e671 vfs_get_link +EXPORT_SYMBOL vmlinux 0xbe3f0393 i2c_del_driver EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe58b2bb mipi_dsi_dcs_exit_sleep_mode 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 0xbe72f5ac skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xbe77ddb2 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xbe7b60a2 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xbe80e422 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xbe9bd0af scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xbec57d02 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xbe735c82 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xbe741c6a tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xbe8609cf filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xbe956aa0 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbeb312b3 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0xbecab81f clear_user_erms -EXPORT_SYMBOL vmlinux 0xbed863dd agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xbed3cdf0 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xbee80b27 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xbee90a2e __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf06d437 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xbf0f6cc6 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xbf12cbb7 udp_prot -EXPORT_SYMBOL vmlinux 0xbf1bccdf iptun_encaps -EXPORT_SYMBOL vmlinux 0xbf21f32f devm_free_irq -EXPORT_SYMBOL vmlinux 0xbf27bf0b mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xbf3068e4 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xbf3115d6 proc_create +EXPORT_SYMBOL vmlinux 0xbf067f4b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xbf1e1101 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf41512f mdio_device_register -EXPORT_SYMBOL vmlinux 0xbf572c68 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xbf3ae474 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbf3cf84c user_path_create EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf7be6e7 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xbf980ea6 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xbf61fc9c seq_read_iter EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9e1ef6 __devm_request_region -EXPORT_SYMBOL vmlinux 0xbf9ff2cd clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xbfa09b85 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xbfa1e687 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfc6f2c7 agp_free_memory -EXPORT_SYMBOL vmlinux 0xbfd10e5b seq_file_path -EXPORT_SYMBOL vmlinux 0xbfdac842 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xbff877bc sock_alloc -EXPORT_SYMBOL vmlinux 0xbff8d1fc gro_cells_init +EXPORT_SYMBOL vmlinux 0xbfc48cb8 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xbfd16ebb con_is_visible +EXPORT_SYMBOL vmlinux 0xbff811d7 vfs_mkobj EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc0366240 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xc0451ac6 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc05086df get_vm_area -EXPORT_SYMBOL vmlinux 0xc05f7a1b generic_delete_inode +EXPORT_SYMBOL vmlinux 0xc0374d11 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xc03f4f74 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xc0420e53 nf_log_unset +EXPORT_SYMBOL vmlinux 0xc044b417 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xc0490143 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xc056e961 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xc058aae5 con_is_bound +EXPORT_SYMBOL vmlinux 0xc06eac48 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xc07351b3 __SCT__cond_resched +EXPORT_SYMBOL vmlinux 0xc0737e5a scsi_register_driver +EXPORT_SYMBOL vmlinux 0xc074e9e6 mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream -EXPORT_SYMBOL vmlinux 0xc07a58ea framebuffer_alloc EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc08d299e xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xc0967762 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xc0a78d8c mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xc0b8f3a9 is_nd_pfn -EXPORT_SYMBOL vmlinux 0xc0e4a985 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xc0e6f9e6 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xc0eae11c shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xc0ed9a34 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xc0f1f189 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xc0806d20 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc08c0020 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xc095a07c nd_device_unregister +EXPORT_SYMBOL vmlinux 0xc09d4027 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc0a0da81 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xc0bc095c ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xc0c659c6 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xc0d2ee06 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc0d6559d __skb_gso_segment 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 0xc107c7f1 bio_split_to_limits EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc11a0237 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xc12ce26b rproc_del +EXPORT_SYMBOL vmlinux 0xc11ff649 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xc1254a8f tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc136313b netpoll_send_skb EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc14525f6 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xc149480c param_ops_int EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1550c13 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc159cf69 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xc15ef09f keyring_search +EXPORT_SYMBOL vmlinux 0xc1639f6c __SCK__tp_func_write_msr EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1902e94 pci_dev_put -EXPORT_SYMBOL vmlinux 0xc19548e6 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xc1af83ec xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xc1bc9a7e folio_mark_accessed -EXPORT_SYMBOL vmlinux 0xc1c03d6c fsync_bdev -EXPORT_SYMBOL vmlinux 0xc1ca58bc sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xc192c7e2 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xc19b1a0e buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xc1a4d84a rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc1b56cea sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1f63fef xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc1e4a6d6 tcf_block_put +EXPORT_SYMBOL vmlinux 0xc1fbc593 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc212a91c mdio_device_free +EXPORT_SYMBOL vmlinux 0xc22adecd skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc22f2871 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc2375f47 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc243514c try_module_get -EXPORT_SYMBOL vmlinux 0xc244fed6 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xc266436b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xc259fd2d vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xc26a87ab mmc_free_host +EXPORT_SYMBOL vmlinux 0xc2779b05 tcp_ioctl EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc28f5075 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xc2946cdb tcp_sync_mss EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29d1d0e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xc2b2b4a4 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xc2a5bc90 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xc2aa4318 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xc2ad7a36 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xc2af0b19 seq_path +EXPORT_SYMBOL vmlinux 0xc2b3060e shrink_dcache_sb EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xc2ccb890 mount_bdev -EXPORT_SYMBOL vmlinux 0xc2df162c netdev_info -EXPORT_SYMBOL vmlinux 0xc2df8115 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xc2e0422d page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0xc2e3f506 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xc2d139a6 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xc2de0960 xp_can_alloc EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f3188d rw_verify_area EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3198d70 __dquot_transfer EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31f335a nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33176e1 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xc35916bb tty_lock -EXPORT_SYMBOL vmlinux 0xc35ba98e cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xc36e9d9b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc33ba812 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xc35786d5 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xc364433b security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xc3663e79 dev_alloc_name EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc390a0de flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xc391a697 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xc39f423a genphy_suspend +EXPORT_SYMBOL vmlinux 0xc39503a7 skb_clone EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b8136e kern_unmount +EXPORT_SYMBOL vmlinux 0xc3b83bcc __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc3bb4c67 agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0xc3e5edb5 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xc3e7a8ea phy_read_mmd -EXPORT_SYMBOL vmlinux 0xc3fbb6b9 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xc3f59248 vme_slave_request +EXPORT_SYMBOL vmlinux 0xc3ff2190 dmam_pool_create EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42bb1da skb_checksum_help -EXPORT_SYMBOL vmlinux 0xc42d9d1f __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc42cad70 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc43c4391 __ps2_command -EXPORT_SYMBOL vmlinux 0xc444051a __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xc44c869f phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xc450c977 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xc4361a13 mmc_run_bkops EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc4527944 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xc457a01f agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xc45b6d60 inet_frag_find -EXPORT_SYMBOL vmlinux 0xc45bb00b pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xc471a8be ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc45703ae softnet_data +EXPORT_SYMBOL vmlinux 0xc45d5f88 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xc4610635 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xc4630a4c netif_carrier_on +EXPORT_SYMBOL vmlinux 0xc463af6d tty_vhangup +EXPORT_SYMBOL vmlinux 0xc463b80b xfrm_state_free +EXPORT_SYMBOL vmlinux 0xc465f1ee elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xc4755f4d filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xc477678a gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47ea7eb __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xc4888105 d_path -EXPORT_SYMBOL vmlinux 0xc495fb55 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xc47af3d9 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xc48080ba generic_ro_fops +EXPORT_SYMBOL vmlinux 0xc487f91c file_modified +EXPORT_SYMBOL vmlinux 0xc49b10b6 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b42239 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xc4beb08d ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xc4ea98ef dm_unregister_target -EXPORT_SYMBOL vmlinux 0xc4f01d0b buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xc4f7c983 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xc50c2271 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xc50ce3ef tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xc4c23032 phy_driver_register +EXPORT_SYMBOL vmlinux 0xc4c632f9 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xc4d0f6d7 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xc4d6f9fc pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc4ec58bf pci_match_id EXPORT_SYMBOL vmlinux 0xc515f1cd __x86_indirect_jump_thunk_r13 -EXPORT_SYMBOL vmlinux 0xc5165f6e xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xc522dc0b pci_set_power_state EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc52b4d9e init_pseudo -EXPORT_SYMBOL vmlinux 0xc530a404 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xc5352ceb notify_change -EXPORT_SYMBOL vmlinux 0xc53db400 d_obtain_root -EXPORT_SYMBOL vmlinux 0xc547dcca splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xc54d50f2 napi_disable +EXPORT_SYMBOL vmlinux 0xc52a3a8a mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xc541c530 dma_map_resource +EXPORT_SYMBOL vmlinux 0xc54c0fcf sock_no_connect EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc56174cc simple_dir_operations EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc56f6017 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xc572e7e0 inet_select_addr +EXPORT_SYMBOL vmlinux 0xc57a7d78 param_ops_bint EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc580e3b0 pci_bus_type +EXPORT_SYMBOL vmlinux 0xc582a74e sock_from_file +EXPORT_SYMBOL vmlinux 0xc588d49a pci_enable_wake EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59a6770 block_read_full_folio -EXPORT_SYMBOL vmlinux 0xc59fe7df unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xc5a36357 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc5b24423 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bb86ca jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xc5c4ce49 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc5cc8285 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xc5d2d9bf inode_owner_or_capable EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5db1a32 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xc5dcfe58 shmem_aops -EXPORT_SYMBOL vmlinux 0xc5dd4c26 drop_super -EXPORT_SYMBOL vmlinux 0xc5e20a19 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xc5df5ff3 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc5e6ea26 tcp_prot EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc60869e5 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60ddeca dm_kobject_release -EXPORT_SYMBOL vmlinux 0xc615bfbf config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xc61a7833 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xc61b1973 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633a18d blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc644fd65 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xc64df262 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xc64f0cc5 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc64004fd xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc65a19e0 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6625535 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66d9f55 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc69192c6 crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0xc6acf284 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xc6b3256f amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0xc6b6996a vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xc6bb2b0d inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xc6c1c2b3 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xc6a822e1 sock_init_data +EXPORT_SYMBOL vmlinux 0xc6b11968 netlink_broadcast EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cc7dcc __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6ec9b4b validate_slab_cache -EXPORT_SYMBOL vmlinux 0xc6f055fe skb_append +EXPORT_SYMBOL vmlinux 0xc6f28589 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f5de22 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xc6fb3be3 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc7061d99 __skb_pad EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc70dbf14 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xc7151379 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xc7100964 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72ecf9a __put_user_ns -EXPORT_SYMBOL vmlinux 0xc7657863 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xc727f32f netdev_info +EXPORT_SYMBOL vmlinux 0xc73d9807 dqget +EXPORT_SYMBOL vmlinux 0xc759ea21 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xc765c9af ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc771e078 acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc793dd82 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xc79d851d skb_queue_purge +EXPORT_SYMBOL vmlinux 0xc7a09335 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a92e2c devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xc7a55695 iov_iter_advance EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7b06898 param_ops_int EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c15223 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xc7c6f608 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xc7c72648 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xc7fa0eb3 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xc8017b17 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xc80a8214 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xc7c427af path_is_under +EXPORT_SYMBOL vmlinux 0xc7d4200d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc7d55016 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xc7de6df7 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xc7f825b8 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc7fa908a filemap_check_errors +EXPORT_SYMBOL vmlinux 0xc80a4862 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80bc530 vfs_mknod -EXPORT_SYMBOL vmlinux 0xc80f0d79 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xc81ba4ac vme_irq_handler EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc846134c from_kprojid_munged EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85c94b2 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xc8607986 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xc86417b0 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xc84b633e follow_up +EXPORT_SYMBOL vmlinux 0xc8572b83 md_reload_sb +EXPORT_SYMBOL vmlinux 0xc85a2474 init_special_inode EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87bf442 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc882f558 rproc_alloc EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8972e9d pci_unmap_rom EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8bb926d jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xc8bbecb8 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xc8bd048c dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xc8beeb9f sk_reset_timer +EXPORT_SYMBOL vmlinux 0xc8bce62b dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table -EXPORT_SYMBOL vmlinux 0xc8d95231 make_kprojid +EXPORT_SYMBOL vmlinux 0xc8c939ca jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xc8caf330 pipe_lock EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e65e44 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xc91687a6 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xc8f446fd md_write_end +EXPORT_SYMBOL vmlinux 0xc8f5722f vfs_create +EXPORT_SYMBOL vmlinux 0xc911165d tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc914fb3a pci_reenable_device EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc9336a14 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc9228df1 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9537cac bprm_change_interp -EXPORT_SYMBOL vmlinux 0xc95f3a00 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xc962f677 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xc9550fdc netdev_lower_get_next EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9636a30 is_acpi_data_node EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9771ba0 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xc97741ca security_socket_socketpair EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9851853 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xc9903735 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xc99b68c5 pci_release_resource EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a8bb31 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc9a91c51 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xc9aa732a param_ops_long -EXPORT_SYMBOL vmlinux 0xc9ad099e netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xc9b4f6d2 skb_eth_pop -EXPORT_SYMBOL vmlinux 0xc9ceaf13 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xc9a1ddbf nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xc9a76aab xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xc9aa6872 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xc9b39aa9 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc9b950ef locks_delete_block +EXPORT_SYMBOL vmlinux 0xc9d3b32a scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xc9d7eeee phy_error +EXPORT_SYMBOL vmlinux 0xc9dd0ef8 nf_setsockopt EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e1a168 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xc9f867b5 ptp_clock_event -EXPORT_SYMBOL vmlinux 0xc9fb6fa6 get_tree_single -EXPORT_SYMBOL vmlinux 0xca015c34 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xca14b549 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xc9f9dcbb page_pool_create +EXPORT_SYMBOL vmlinux 0xca10165a address_space_init_once EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca42aac5 free_task +EXPORT_SYMBOL vmlinux 0xca272665 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xca2c7ef9 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xca400ede __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4e7bce ip_output -EXPORT_SYMBOL vmlinux 0xca6677d4 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xca73123f dev_add_offload -EXPORT_SYMBOL vmlinux 0xca88520e kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0xca8eff6b nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xca4aef38 __serio_register_port +EXPORT_SYMBOL vmlinux 0xca4c21d9 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xca4d62f3 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xca5a059d filp_open +EXPORT_SYMBOL vmlinux 0xca7109a1 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xca76a582 kmalloc_trace EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9b7b54 generic_file_direct_write EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab24be8 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xcab75fff __register_chrdev +EXPORT_SYMBOL vmlinux 0xcaa2e4c1 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcab0554d skb_unlink +EXPORT_SYMBOL vmlinux 0xcacbc9d3 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcada36d8 trace_event_printf -EXPORT_SYMBOL vmlinux 0xcae6a73a dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xcaf31089 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xcaf4f943 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xcaf8de8a load_nls -EXPORT_SYMBOL vmlinux 0xcb01d528 vma_set_file +EXPORT_SYMBOL vmlinux 0xcad884b3 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xcae56386 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xcae61f03 param_get_ullong +EXPORT_SYMBOL vmlinux 0xcaed7557 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb029a8a scmd_printk -EXPORT_SYMBOL vmlinux 0xcb1ade79 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xcb20fb6b filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xcb324765 bio_copy_data_iter EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb43c1b4 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xcb47487c blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xcb5c1159 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xcb630c77 devfreq_update_status -EXPORT_SYMBOL vmlinux 0xcb6ec1f1 unlock_page +EXPORT_SYMBOL vmlinux 0xcb4d0b85 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb9ca699 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xcba68b21 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xcb7ec927 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xcb9bab46 __skb_checksum +EXPORT_SYMBOL vmlinux 0xcb9e6b04 xattr_full_name +EXPORT_SYMBOL vmlinux 0xcba63d30 genl_notify +EXPORT_SYMBOL vmlinux 0xcba88fa1 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xcbab609a tcp_connect EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc344e7 block_commit_write EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdc1461 folio_unlock -EXPORT_SYMBOL vmlinux 0xcbf03af4 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xcbdb7227 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xcbde8f86 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xcbde9e0e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xcbdf71e6 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcbe14877 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xcbee204d __scm_send EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcbfff541 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xcc16db36 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xcc0e9571 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xcc16a051 netdev_name_in_use EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1ecedf qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2a90dc netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc30de27 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c0797 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xcc5641d6 md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc60e9e7 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xcc61d1d4 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xcc702bb6 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xcc71162d pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xcc75555c security_unix_may_send -EXPORT_SYMBOL vmlinux 0xcc908cc7 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xcc9e13c9 iterate_dir +EXPORT_SYMBOL vmlinux 0xcc616c52 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xcc891244 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccb2d184 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xccc64e8b genphy_loopback -EXPORT_SYMBOL vmlinux 0xccccd0c5 mdio_device_create -EXPORT_SYMBOL vmlinux 0xccd05577 scsi_partsize -EXPORT_SYMBOL vmlinux 0xccd2b7f1 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xccebb8ab dev_get_by_index +EXPORT_SYMBOL vmlinux 0xccae03d5 scsi_add_device +EXPORT_SYMBOL vmlinux 0xccb011c1 slab_build_skb +EXPORT_SYMBOL vmlinux 0xccb25650 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xccb705f1 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xccbea6a5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xcccad61f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xccd1d43b _dev_crit EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd002f07 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd0832a7 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0xcd15b983 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd2228e2 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3928ec dev_close -EXPORT_SYMBOL vmlinux 0xcd4cb2b1 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xcd660bc2 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xcd6d1ab7 sk_wait_data -EXPORT_SYMBOL vmlinux 0xcd71b319 pci_request_regions -EXPORT_SYMBOL vmlinux 0xcd7f621b tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xcd85e1a8 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xcd35eeb1 security_sock_graft +EXPORT_SYMBOL vmlinux 0xcd36ace0 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xcd4a17b2 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xcd4e5d1a vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xcd5bd457 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xcd6915d7 kill_pid +EXPORT_SYMBOL vmlinux 0xcd716ad3 configfs_register_group +EXPORT_SYMBOL vmlinux 0xcd71f53a param_set_ullong +EXPORT_SYMBOL vmlinux 0xcd82e909 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xcd8a9802 phy_attach_direct EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcdafa595 generic_write_checks_count -EXPORT_SYMBOL vmlinux 0xcdbb7bfe dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcd9ffd30 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xcda08aa4 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xcdb238b4 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xcdbaccfc pps_event EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd27919 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xcdcaaf2b udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xcdcb8a30 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xcde38540 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xcde6b0f8 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcde95231 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xcdf4f7a7 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xce031d65 bio_add_page -EXPORT_SYMBOL vmlinux 0xce10ebd6 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xce118066 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xce112654 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xce180bf6 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xce22c788 phy_connect EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3d05e0 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xce2ca072 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xce304515 path_get +EXPORT_SYMBOL vmlinux 0xce3a00a5 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xce3f481d acpi_device_set_power EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce5a0828 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xce4f6bb6 single_open EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce66cc0d dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xce67dd65 __kfree_skb +EXPORT_SYMBOL vmlinux 0xce6d0dd4 param_set_byte EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7c7a37 inet6_release EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce93cbc8 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xce8a78a9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xce9308c0 md_unregister_thread EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebd1067 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xcecb7326 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcedc1dc6 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xcedf0f78 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xcee4063e mr_table_alloc +EXPORT_SYMBOL vmlinux 0xcedff080 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf053467 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xcf14b23e flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xcf25a1b7 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xcf0653f5 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xcf11e6e5 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xcf153429 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xcf1ec067 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcf257c74 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2c3cd3 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf4f830b mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf76443c generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xcf8576e1 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xcf904e46 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xcf9128f3 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xcf92ada8 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xcf985786 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xcf99413e vfs_fadvise +EXPORT_SYMBOL vmlinux 0xcf5b871d tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xcf661cf5 load_nls +EXPORT_SYMBOL vmlinux 0xcf6a0b53 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xcf7ce99f fb_find_mode +EXPORT_SYMBOL vmlinux 0xcf8e7bcc pci_save_state +EXPORT_SYMBOL vmlinux 0xcf92f6a8 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa90a56 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xcfb063e7 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xcfb373f5 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xcfa0eb4d inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xcfa19c2e phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xcfbda709 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xcfc90f5f flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfd20071 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfde93a3 __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0xcfe9503a __mdiobus_register -EXPORT_SYMBOL vmlinux 0xcff4e19b vfs_create -EXPORT_SYMBOL vmlinux 0xd002d9e5 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xd01caab9 dma_resv_init -EXPORT_SYMBOL vmlinux 0xd0253497 pci_enable_device -EXPORT_SYMBOL vmlinux 0xd03b1049 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd0111857 shmem_aops +EXPORT_SYMBOL vmlinux 0xd0224103 unlock_new_inode EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04c71c5 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xd052c26d msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xd052ff31 clear_nlink -EXPORT_SYMBOL vmlinux 0xd06412b5 __module_get +EXPORT_SYMBOL vmlinux 0xd05608b9 eisa_driver_unregister EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0671b1a ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0884e54 unlock_new_inode EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0ae4eea icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xd093688e dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b89b7f kern_path_create -EXPORT_SYMBOL vmlinux 0xd0dc167b phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xd0e4ebc3 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f8d106 netif_tx_unlock EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd11f1314 param_get_ulong -EXPORT_SYMBOL vmlinux 0xd122f7a4 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xd127fc81 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xd0ff10b8 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xd1083ea3 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1458d0a pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xd157adfd __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xd15cc805 may_umount_tree -EXPORT_SYMBOL vmlinux 0xd15f9758 dev_get_stats -EXPORT_SYMBOL vmlinux 0xd185f664 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xd18ba745 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xd19242ed dev_uc_add +EXPORT_SYMBOL vmlinux 0xd1407512 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xd147adef pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xd16950d2 pci_get_class +EXPORT_SYMBOL vmlinux 0xd1706c98 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xd17a1774 netdev_state_change +EXPORT_SYMBOL vmlinux 0xd1817f26 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1b22e4f arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xd1b974eb inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xd1cd0d6a rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xd1cdccdf simple_release_fs -EXPORT_SYMBOL vmlinux 0xd1d7a10b wake_up_process +EXPORT_SYMBOL vmlinux 0xd19e9ae8 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd1d4b1b3 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1ee0b15 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xd1f1636f migrate_vma_pages EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd202db94 cdev_del -EXPORT_SYMBOL vmlinux 0xd213ec2e clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xd2115b4d inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd21224dc kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd21ce12e kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd235cbee mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xd236ad11 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xd23b83a6 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd22b5866 d_add_ci +EXPORT_SYMBOL vmlinux 0xd240a1c3 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd2582180 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26f032c tcf_exts_change -EXPORT_SYMBOL vmlinux 0xd270f413 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xd277fda0 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xd270eb83 register_qdisc EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27e41d4 follow_down EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd297b28e simple_empty -EXPORT_SYMBOL vmlinux 0xd2bc3c99 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xd28880c2 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xd28f58c8 genl_register_family +EXPORT_SYMBOL vmlinux 0xd2a590ac simple_recursive_removal EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 -EXPORT_SYMBOL vmlinux 0xd2c24325 vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xd2bf9453 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd2d1faa5 get_agp_version EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2004e jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd336e604 skb_tx_error +EXPORT_SYMBOL vmlinux 0xd2ef76be qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0xd2f2e22a __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd30317cf memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xd307cdc2 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd317afb3 __mdiobus_read EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd358002a bpf_map_get EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd3686137 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xd35f5fc2 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xd366d362 inet_put_port +EXPORT_SYMBOL vmlinux 0xd368c4dd pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37d75eb qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xd3866afa md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd3898e95 kill_fasync +EXPORT_SYMBOL vmlinux 0xd38a3491 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd38fbf78 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xd3b070d4 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xd3b3185c flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xd3d49ecd ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd3e45fa2 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xd3fe5595 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd3a8dd57 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xd3c3f297 md_check_recovery +EXPORT_SYMBOL vmlinux 0xd3f0d2a5 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xd3f91346 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4261bb2 file_modified -EXPORT_SYMBOL vmlinux 0xd432cb0c jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xd4333fa7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd4071b87 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xd40f78eb km_state_expired +EXPORT_SYMBOL vmlinux 0xd421728d pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xd4358933 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd44c9442 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xd44f0b74 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xd457d577 agp_unbind_memory EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4632658 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0xd46eaeb6 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd46142be tcp_filter +EXPORT_SYMBOL vmlinux 0xd46c56de bio_endio +EXPORT_SYMBOL vmlinux 0xd46df5cb request_firmware EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd49568ed tty_port_close_end -EXPORT_SYMBOL vmlinux 0xd49afd55 pps_event -EXPORT_SYMBOL vmlinux 0xd4a6456a max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xd4b1ca81 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xd4b252c3 generic_update_time +EXPORT_SYMBOL vmlinux 0xd484acac dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd497a356 rproc_boot +EXPORT_SYMBOL vmlinux 0xd49bce9e __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd49e1bf6 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c5434e vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xd4bdf986 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xd4c6a3d8 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xd4cb0f72 vfs_link +EXPORT_SYMBOL vmlinux 0xd4d00569 ndisc_send_skb EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4dd51ac devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd4e140ef get_phy_device -EXPORT_SYMBOL vmlinux 0xd4e5de71 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xd51f4f20 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xd5229a41 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd4e8b045 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xd4fdb02b security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xd504ee14 input_set_keycode +EXPORT_SYMBOL vmlinux 0xd5080557 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52b2a18 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd53039c2 devm_memunmap +EXPORT_SYMBOL vmlinux 0xd53084f3 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xd533b2de may_umount_tree EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd54a9fd2 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xd55c61ee sock_create -EXPORT_SYMBOL vmlinux 0xd55daa02 folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0xd56a0ff2 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xd58aa06c skb_pull_data +EXPORT_SYMBOL vmlinux 0xd5518a2f pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xd563713b copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xd585a0e9 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd598424f jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xd5a2f316 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd5b2ca7a xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5e39498 param_get_int -EXPORT_SYMBOL vmlinux 0xd5ec6961 path_is_under -EXPORT_SYMBOL vmlinux 0xd5f73c94 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xd5c7fca7 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd5d79126 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xd5def146 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xd5e090ea dst_alloc +EXPORT_SYMBOL vmlinux 0xd5e86eb4 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xd5f77958 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xd5fd8236 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd603ceeb flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd627eb75 pid_task EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd63527a6 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xd63f5faf tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xd63d5ed2 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xd63f00d2 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64b1fbb tty_port_hangup +EXPORT_SYMBOL vmlinux 0xd65b4e21 seq_printf EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd6732b46 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd66fe6da udp_disconnect EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk -EXPORT_SYMBOL vmlinux 0xd675ced9 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xd6842698 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xd68545ea blk_mq_end_request EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd6980698 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ab124c noop_qdisc +EXPORT_SYMBOL vmlinux 0xd6ac52c7 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xd6af1776 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6b85485 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xd6d19962 readahead_expand -EXPORT_SYMBOL vmlinux 0xd6d9ff4b consume_skb -EXPORT_SYMBOL vmlinux 0xd6e667ac netdev_err +EXPORT_SYMBOL vmlinux 0xd6d62aef input_unregister_device EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7063747 get_user_pages +EXPORT_SYMBOL vmlinux 0xd704c160 fget +EXPORT_SYMBOL vmlinux 0xd70b2f51 param_ops_byte +EXPORT_SYMBOL vmlinux 0xd70d048d __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70f5edb blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7161b3a __lock_buffer +EXPORT_SYMBOL vmlinux 0xd71dfd9c set_posix_acl +EXPORT_SYMBOL vmlinux 0xd7225e48 elv_rb_del 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 0xd73f5e87 d_add EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7482f33 is_nd_btt -EXPORT_SYMBOL vmlinux 0xd76bc48a blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xd7739282 serio_reconnect -EXPORT_SYMBOL vmlinux 0xd77642ae inet_del_offload -EXPORT_SYMBOL vmlinux 0xd7977e32 phy_attach +EXPORT_SYMBOL vmlinux 0xd75c4320 submit_bio +EXPORT_SYMBOL vmlinux 0xd7701b3a get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xd78eaebc rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xd7977d20 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7b815af neigh_xmit -EXPORT_SYMBOL vmlinux 0xd7c3f923 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xd7a58f45 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd7af0ea4 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e37bf2 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xd7e0cb96 tty_register_device +EXPORT_SYMBOL vmlinux 0xd7e0d968 console_stop +EXPORT_SYMBOL vmlinux 0xd7e1bc65 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xd7e33435 __ClearPageMovable EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f86107 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xd802dd91 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd80c2384 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xd811f854 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xd829ba2a zap_page_range -EXPORT_SYMBOL vmlinux 0xd8332918 bio_reset -EXPORT_SYMBOL vmlinux 0xd8375a22 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd7ec0543 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xd7fb1f21 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xd8119d26 key_link +EXPORT_SYMBOL vmlinux 0xd823b91f kernel_param_lock +EXPORT_SYMBOL vmlinux 0xd828136b iov_iter_npages +EXPORT_SYMBOL vmlinux 0xd82bb89d sock_no_ioctl EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd83ef007 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xd841eb15 rproc_set_firmware EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd8755df4 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xd890c467 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xd893e937 do_splice_direct -EXPORT_SYMBOL vmlinux 0xd897ba55 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xd89a6d01 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a163e4 redraw_screen +EXPORT_SYMBOL vmlinux 0xd8a71238 remove_watch_from_object 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 0xd8bd29ef sync_file_create -EXPORT_SYMBOL vmlinux 0xd8ca8d2f kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xd8d35569 input_unregister_device +EXPORT_SYMBOL vmlinux 0xd8b8c528 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xd8c2c281 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8eb8917 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xd8ec0ac8 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd8fcf4ee tcp_prot +EXPORT_SYMBOL vmlinux 0xd8e57183 seq_read +EXPORT_SYMBOL vmlinux 0xd8e92b1e blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xd8f76cb4 register_quota_format +EXPORT_SYMBOL vmlinux 0xd904b955 inet_ioctl +EXPORT_SYMBOL vmlinux 0xd9070b8f backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xd90affc0 fs_param_is_bool EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd921e5b7 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xd921e77d pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xd924ad2b mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xd9254259 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9301789 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd934cfe3 register_netdevice -EXPORT_SYMBOL vmlinux 0xd948eb74 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd93402d5 vma_set_file +EXPORT_SYMBOL vmlinux 0xd93f5ed5 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd942acf6 pci_select_bars EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd95cfdbc key_reject_and_link -EXPORT_SYMBOL vmlinux 0xd9695a0e backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xd94b822f scm_fp_dup +EXPORT_SYMBOL vmlinux 0xd94c0362 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xd94ddef7 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xd95636d1 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xd960759f tcp_read_sock EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97f0334 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98b0a9e nf_hook_slow EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9ab6fca mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xd9b56bf0 ipv6_select_ident EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9bf657a keyring_search -EXPORT_SYMBOL vmlinux 0xd9cb3190 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xd9b90a2e config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xd9c44591 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xd9cbb479 from_kgid_munged EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9f622b0 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xd9ffafb2 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0xda05c454 key_move -EXPORT_SYMBOL vmlinux 0xda08b437 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xd9dbc4b7 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xd9e0a2e1 dev_add_offload +EXPORT_SYMBOL vmlinux 0xd9e39cdb generic_write_end +EXPORT_SYMBOL vmlinux 0xd9e40f01 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xda162e6c sock_alloc EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs -EXPORT_SYMBOL vmlinux 0xda319eaa setup_arg_pages EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4505d5 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xda4804b9 netif_rx -EXPORT_SYMBOL vmlinux 0xda48edca xfrm_input -EXPORT_SYMBOL vmlinux 0xda5832b9 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xda60e02b jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xda766f4f _dev_warn -EXPORT_SYMBOL vmlinux 0xda7f6b28 __post_watch_notification -EXPORT_SYMBOL vmlinux 0xda8071e0 touch_atime -EXPORT_SYMBOL vmlinux 0xda95e15f simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xda9999af clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xdac1ff02 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xdac333dc __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xda4351f0 drop_nlink +EXPORT_SYMBOL vmlinux 0xda437485 devm_free_irq +EXPORT_SYMBOL vmlinux 0xda52ae60 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xda5ab916 nf_log_trace +EXPORT_SYMBOL vmlinux 0xda73f119 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xda782baf crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xda97777c __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xdaabb1bd dev_driver_string +EXPORT_SYMBOL vmlinux 0xdaacaff1 blk_start_plug +EXPORT_SYMBOL vmlinux 0xdab2359f xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xdab347ce __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdace95c1 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdaeb6442 simple_rename -EXPORT_SYMBOL vmlinux 0xdaf571d3 dst_dev_put -EXPORT_SYMBOL vmlinux 0xdb013eb4 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xdb0e6598 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdadd823e flush_signals +EXPORT_SYMBOL vmlinux 0xdaedf4c2 param_array_ops +EXPORT_SYMBOL vmlinux 0xdaf22599 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb27ecde security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xdb4262dd input_register_handle -EXPORT_SYMBOL vmlinux 0xdb57c855 key_validate +EXPORT_SYMBOL vmlinux 0xdb3c5352 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xdb45583c seq_dentry +EXPORT_SYMBOL vmlinux 0xdb4acc89 __netif_rx +EXPORT_SYMBOL vmlinux 0xdb4e7b28 mmc_detect_change EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6ec39f amd_iommu_domain_direct_map EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8f746e kernel_getsockname -EXPORT_SYMBOL vmlinux 0xdb92804e fb_set_var -EXPORT_SYMBOL vmlinux 0xdb951a9d pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xdb76eba8 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xdb862afb filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdb98f09b fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xdb9bda83 locks_delete_block -EXPORT_SYMBOL vmlinux 0xdb9c66aa fs_param_is_string +EXPORT_SYMBOL vmlinux 0xdb95f24c pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xdba1cd6d free_buffer_head EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xdbb28f5d filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xdbbf6b55 mroute6_is_socket EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbcc5074 pci_clear_mwi EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd429ef vlan_vid_add +EXPORT_SYMBOL vmlinux 0xdbd3be8b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xdbdcf229 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbea538f __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xdbfba075 nonseekable_open -EXPORT_SYMBOL vmlinux 0xdc002131 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xdc00681a register_quota_format +EXPORT_SYMBOL vmlinux 0xdc033708 ptp_find_pin_unlocked 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 0xdc16daeb amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0xdc3bad2a inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xdc1dba31 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xdc2acd58 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xdc40053b phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xdc4079ff folio_unlock EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc8c7517 lease_modify -EXPORT_SYMBOL vmlinux 0xdca88a20 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xdcb04d7d blackhole_netdev +EXPORT_SYMBOL vmlinux 0xdc77e8ae dquot_operations +EXPORT_SYMBOL vmlinux 0xdc7f16c2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xdc830cbe __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xdc95c001 open_exec +EXPORT_SYMBOL vmlinux 0xdc988470 sg_miter_start +EXPORT_SYMBOL vmlinux 0xdca45a7b pci_clear_master +EXPORT_SYMBOL vmlinux 0xdcace62e tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcc23e00 tcp_seq_next -EXPORT_SYMBOL vmlinux 0xdcc53768 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xdcc56475 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xdccb4f4a sock_no_bind -EXPORT_SYMBOL vmlinux 0xdccf04a8 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0xdcda3b07 console_stop -EXPORT_SYMBOL vmlinux 0xdcdb7f9f netif_tx_lock +EXPORT_SYMBOL vmlinux 0xdcc9b60f tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcefba52 kill_fasync -EXPORT_SYMBOL vmlinux 0xdcfdc295 phy_disconnect +EXPORT_SYMBOL vmlinux 0xdceb3af1 scsi_host_get +EXPORT_SYMBOL vmlinux 0xdcf2cd7e __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd026976 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2a9138 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xdd18b18a bio_integrity_prep EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2f2e5e param_get_byte -EXPORT_SYMBOL vmlinux 0xdd368ebe bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xdd3a1dc3 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xdd3afbdc ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xdd3f74f4 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdd389f92 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xdd3a4c9a proto_register +EXPORT_SYMBOL vmlinux 0xdd4ae41b datagram_poll EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xdd51f051 d_genocide -EXPORT_SYMBOL vmlinux 0xdd54980a file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xdd553e98 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xdd5b029f qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xdd5cfa9b __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd74b8af send_sig_info +EXPORT_SYMBOL vmlinux 0xdd736be0 inet_bind +EXPORT_SYMBOL vmlinux 0xdd793544 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd82bbf8 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd86d584 __bread_gfp +EXPORT_SYMBOL vmlinux 0xdd9b448e ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddc23fd1 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xddc6d6c7 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xddca0dcc napi_disable +EXPORT_SYMBOL vmlinux 0xddcbba00 km_report EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddcf09db cont_write_begin +EXPORT_SYMBOL vmlinux 0xdddb1293 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xdddcc986 tcp_recv_skb EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfba967 i2c_get_adapter EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde0433ab mount_subtree -EXPORT_SYMBOL vmlinux 0xde1798eb md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xde06bb01 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xde1f8b44 __netif_schedule EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde4f5acf dma_sync_wait -EXPORT_SYMBOL vmlinux 0xde52bfb5 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xde5afadc rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xde6a1e67 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xde7a84c0 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xde6644a2 agp_generic_insert_memory EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde8e1266 dup_iter -EXPORT_SYMBOL vmlinux 0xde9aac8f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xde821250 inet6_bind +EXPORT_SYMBOL vmlinux 0xde8693d2 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xde89e49f unix_attach_fds +EXPORT_SYMBOL vmlinux 0xde957175 rt_dst_clone EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9d1257 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xde9dceda regset_get_alloc -EXPORT_SYMBOL vmlinux 0xde9f0e06 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xdec28485 dst_init -EXPORT_SYMBOL vmlinux 0xdec890f7 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xdea889e2 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xdec633a7 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xded2ba44 iget_locked EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded3a4c2 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xdee5a3b9 audit_log -EXPORT_SYMBOL vmlinux 0xdef4e5f4 pci_save_state +EXPORT_SYMBOL vmlinux 0xdedee9ac jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xdef40e98 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xdef67484 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef86ec2 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdf0882eb pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xdf141d28 clk_get +EXPORT_SYMBOL vmlinux 0xdf1441ac pci_find_resource +EXPORT_SYMBOL vmlinux 0xdf20c831 ps2_sliced_command EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xdf32b26f jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdf32d009 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xdf33baaa devfreq_resume_device EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3fb6b3 proc_set_size -EXPORT_SYMBOL vmlinux 0xdf4b2c4f vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit -EXPORT_SYMBOL vmlinux 0xdf543f08 pci_find_resource EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf572d93 key_put +EXPORT_SYMBOL vmlinux 0xdf661160 __bh_read_batch EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf870dcc page_symlink +EXPORT_SYMBOL vmlinux 0xdf6de5d1 load_nls_default +EXPORT_SYMBOL vmlinux 0xdf72f369 bdi_alloc +EXPORT_SYMBOL vmlinux 0xdf77c01c device_get_mac_address +EXPORT_SYMBOL vmlinux 0xdf8159ca pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0xdf8e60f1 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xdf90af77 simple_pin_fs EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdf9cdf3a xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xdf9ed17f mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xdfacd439 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xdfae77e0 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xdfb78368 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xdfae53ad md_bitmap_free +EXPORT_SYMBOL vmlinux 0xdfbe0d75 misc_deregister EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xdfc5219a iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xdfc88518 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xdfca1864 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfdce686 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xdfe6e6be sock_register -EXPORT_SYMBOL vmlinux 0xdfed6578 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe0073103 setattr_copy 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 0xe0379605 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe04b74d3 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xe079ab8c dev_get_flags +EXPORT_SYMBOL vmlinux 0xe054eb39 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xe057ab8c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xe067ba8b inet_recvmsg +EXPORT_SYMBOL vmlinux 0xe074b2e7 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xe0787eab pci_free_irq +EXPORT_SYMBOL vmlinux 0xe07b51af mpage_writepages +EXPORT_SYMBOL vmlinux 0xe07d808c crypto_sha1_update 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 0xe0841a12 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xe08a8039 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0adc6d8 param_get_charp +EXPORT_SYMBOL vmlinux 0xe09c483b vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe0c4d507 mntput -EXPORT_SYMBOL vmlinux 0xe0d1ce13 pin_user_pages -EXPORT_SYMBOL vmlinux 0xe0de9897 param_ops_uint -EXPORT_SYMBOL vmlinux 0xe0e360a1 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xe0e46db0 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xe0c5ae67 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe112379b set_user_nice +EXPORT_SYMBOL vmlinux 0xe1133e0c tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1197dcb devm_gen_pool_create EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1279f6b drop_super_exclusive 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 0xe16f53b0 complete_request_key -EXPORT_SYMBOL vmlinux 0xe1700d8d skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xe1732ab2 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xe17732e3 current_time -EXPORT_SYMBOL vmlinux 0xe180182a filemap_release_folio -EXPORT_SYMBOL vmlinux 0xe194f33b mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xe1b1450b fb_set_cmap -EXPORT_SYMBOL vmlinux 0xe1b6a9a1 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xe141517e nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe141e544 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe1483563 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xe14bb883 fb_class +EXPORT_SYMBOL vmlinux 0xe1576024 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xe19c0d98 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c68377 param_set_int -EXPORT_SYMBOL vmlinux 0xe1da16c3 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe1c38513 insert_inode_locked EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1dd9de4 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xe1eabb8d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe20b5f60 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xe20f6e8f xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xe211e1c6 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xe1ebd7a7 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xe1f54d4a phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xe21d3c2a input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22597b9 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xe2364e51 pnp_possible_config -EXPORT_SYMBOL vmlinux 0xe258280b skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xe272128b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xe2368794 pci_request_irq +EXPORT_SYMBOL vmlinux 0xe23b91f9 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe23d9f5c __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe244a101 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe2470c96 device_add_disk +EXPORT_SYMBOL vmlinux 0xe2522680 register_console +EXPORT_SYMBOL vmlinux 0xe25b8e89 kthread_stop EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe279cb82 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe299ce4e datagram_poll -EXPORT_SYMBOL vmlinux 0xe2b17881 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xe29df832 generic_perform_write +EXPORT_SYMBOL vmlinux 0xe2ada4ef dquot_get_state EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d76da2 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xe2dd00c0 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2e329d7 d_set_d_op -EXPORT_SYMBOL vmlinux 0xe2f07933 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xe2f84db4 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xe318fcac folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xe2e43d75 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xe2e55df6 dqput +EXPORT_SYMBOL vmlinux 0xe30499f7 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe30b311f consume_skb +EXPORT_SYMBOL vmlinux 0xe30fd827 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xe318d3b7 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xe31b9301 intel_gmch_gtt_flush +EXPORT_SYMBOL vmlinux 0xe31e611c dquot_quota_on EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32cdaf8 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xe3322d9b tcp_peek_len -EXPORT_SYMBOL vmlinux 0xe33ea290 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xe34627be sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0xe347501b inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe34e44ab inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe355d676 scsi_host_put -EXPORT_SYMBOL vmlinux 0xe386c0b0 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xe339a927 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xe33f7ec6 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xe34da115 unlock_rename +EXPORT_SYMBOL vmlinux 0xe34eb2f8 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe358c6ed devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe3665a57 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xe367c8d9 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xe3826f53 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a3696d tty_port_init -EXPORT_SYMBOL vmlinux 0xe3ac003f netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3d1adf0 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xe3d6b063 block_write_begin EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3ea9f47 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe3dca652 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3eecce1 submit_bh +EXPORT_SYMBOL vmlinux 0xe3ee4c94 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xe3ee7188 pid_task 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 0xe40b8f9c inode_insert5 EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe41d1bcf vga_switcheroo_register_audio_client EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe4352965 input_close_device -EXPORT_SYMBOL vmlinux 0xe43b1713 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xe43b2d41 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xe43b7392 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xe453c625 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xe4578d8e __netif_rx +EXPORT_SYMBOL vmlinux 0xe43999e4 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xe44b31c6 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe4544b06 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0xe456c9c7 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe458d889 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xe45ff8c9 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe46480c1 setattr_copy EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe470cfaf vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xe473b616 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xe475bc05 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xe47cc155 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe494966e phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xe4b34d68 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe4699d83 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4d07085 __pagevec_release EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable EXPORT_SYMBOL vmlinux 0xe4ffb648 cpu_info -EXPORT_SYMBOL vmlinux 0xe502bb11 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xe516581d padata_free +EXPORT_SYMBOL vmlinux 0xe50a4e6c __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe5225462 __SetPageMovable EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe536b67c input_open_device -EXPORT_SYMBOL vmlinux 0xe54966c0 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xe549c31b tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xe54bce11 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xe552ecac seq_escape_mem -EXPORT_SYMBOL vmlinux 0xe558b2e2 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xe559d08b register_filesystem -EXPORT_SYMBOL vmlinux 0xe5615673 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0xe570d883 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xe577bc96 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe57a5d9a phy_register_fixup -EXPORT_SYMBOL vmlinux 0xe57dcee8 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe52952dc netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe536654e inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe53d4b80 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xe552a3ff mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xe5541c99 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xe572dea9 agp_generic_mask_memory EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5819c8b input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe58701de __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xe58d12c8 dquot_quota_sync EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5afd3a2 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xe5bdeb70 dev_uc_init -EXPORT_SYMBOL vmlinux 0xe5c510f6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xe5aa4d83 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe5b176e4 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xe5be8bd9 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5f879ba xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xe5fc6596 netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0xe604c939 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xe60bf763 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xe60c7e3c netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xe62c6f7c wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xe63dab2f sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xe63dfad9 skb_find_text +EXPORT_SYMBOL vmlinux 0xe5cefa03 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe5e0dbb3 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xe5ffdd62 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xe601f6e2 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xe614c6f3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xe638f977 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe66bf5db nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xe67589d8 kthread_bind -EXPORT_SYMBOL vmlinux 0xe677971d max8925_set_bits +EXPORT_SYMBOL vmlinux 0xe65c500f rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xe667e109 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xe673bb45 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe674a481 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe67564dd setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xe682b5ed vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xe68921b2 inet_add_protocol EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe6901051 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0xe6b75c6b I_BDEV -EXPORT_SYMBOL vmlinux 0xe6c0877a sget -EXPORT_SYMBOL vmlinux 0xe6d06e19 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe6972866 lookup_one +EXPORT_SYMBOL vmlinux 0xe6b40646 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xe6b7ea35 __fs_parse +EXPORT_SYMBOL vmlinux 0xe6c2adc0 scsi_partsize EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6ecb2e8 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xe6e466d5 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe6f8862a pci_set_master +EXPORT_SYMBOL vmlinux 0xe6f99c36 kset_unregister EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe705648a blk_mq_init_queue EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7141951 kmem_cache_free EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7271c25 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xe731cfe9 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xe734e19e __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xe7578bc6 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xe7606506 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe7806dab devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xe783fa92 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xe73008f5 set_cached_acl +EXPORT_SYMBOL vmlinux 0xe7378071 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xe73877a7 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe7849cb5 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe784ac37 skb_seq_read EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe78b71e9 blk_rq_init EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7c61742 twl6040_power -EXPORT_SYMBOL vmlinux 0xe7cf204f dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xe7d3ec94 kern_unmount +EXPORT_SYMBOL vmlinux 0xe7b4acb3 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xe7c6ba75 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f42abc amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xe7e64035 setup_new_exec +EXPORT_SYMBOL vmlinux 0xe7e868df devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe800197d phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds -EXPORT_SYMBOL vmlinux 0xe8021f75 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe81f0126 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xe82da658 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xe8460dd9 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xe84a0f86 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xe8543e81 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xe81bbd16 kernel_accept +EXPORT_SYMBOL vmlinux 0xe81f8541 block_write_begin +EXPORT_SYMBOL vmlinux 0xe828fcb1 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xe844b947 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xe8471ddc phy_connect_direct EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe867697a dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xe872a4c4 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xe8944c2f __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xe89da8b6 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xe8c1cb79 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xe8c9204c neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xe8cf48c6 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe8741d85 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xe87da24b mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xe8816c2e crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xe88e8550 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xe897f82d mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xe8aa2792 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe8bbf65c pci_remove_bus EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8f0fe0a __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe8f38442 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe949740b netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xe919dcb4 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xe91c6c1b kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe920b346 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe9291c86 get_watch_queue +EXPORT_SYMBOL vmlinux 0xe92c0c20 param_get_short +EXPORT_SYMBOL vmlinux 0xe9533e57 tty_unlock EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe976659a phy_device_register -EXPORT_SYMBOL vmlinux 0xe9864445 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xe9a385e3 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe95df0c4 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xe999b5a7 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xe99b249a devfreq_update_target +EXPORT_SYMBOL vmlinux 0xe9a37a4f pci_scan_bridge EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9bdb960 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xe9c0b2eb skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xe9cbba5c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xe9d51ccd input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9e336a0 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xe9e42cf8 tty_port_hangup EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9edc916 tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0xe9f054d5 file_path +EXPORT_SYMBOL vmlinux 0xe9f62de9 sock_release EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f7dcd2 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xe9fbe851 md_check_recovery EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea1b2b4e cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xea284cac component_match_add_release +EXPORT_SYMBOL vmlinux 0xea13fc74 kset_register +EXPORT_SYMBOL vmlinux 0xea1e8401 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xea280fc9 textsearch_prepare EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea407ce1 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xea5010d1 folio_write_one +EXPORT_SYMBOL vmlinux 0xea6f6f10 ppp_register_channel EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea902582 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xea92244d may_setattr -EXPORT_SYMBOL vmlinux 0xeaa76bf1 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xeaab0424 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xeaaba17b flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xeab23fc0 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xea8bd9c0 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xea9fed17 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac2ec54 request_key_rcu -EXPORT_SYMBOL vmlinux 0xeac7058e pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xead9603f kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xeade4269 tcp_req_err -EXPORT_SYMBOL vmlinux 0xeadf9246 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xeac5ead8 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xeac6c1fc clk_add_alias +EXPORT_SYMBOL vmlinux 0xeae182a0 legacy_pic EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb0949e8 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xeb19da23 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xeb1d5b20 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xeb1fef15 dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb24d028 __SCK__tp_func_rdpmc EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb35bdc5 node_data EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3ebe6e clocksource_unregister -EXPORT_SYMBOL vmlinux 0xeb434f33 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xeb388594 netdev_update_features EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb51c84d get_fs_type -EXPORT_SYMBOL vmlinux 0xeb77f512 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xeb7d3601 kfree_skb_list_reason -EXPORT_SYMBOL vmlinux 0xeb7ed04c pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xeb60e8b7 bio_chain EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb86a009 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xeb9d2ac1 is_acpi_data_node EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba706de bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xebb944c4 gro_cells_init +EXPORT_SYMBOL vmlinux 0xebbc75a6 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xebd6c825 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xebdfabb9 dev_uc_sync EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xec0b82e2 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xebf05146 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xebf23f80 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xec041e91 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xec07eb74 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec2ea5c9 dm_table_get_size -EXPORT_SYMBOL vmlinux 0xec34c6cc mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xec35526e stop_tty -EXPORT_SYMBOL vmlinux 0xec43395b agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xec49677a devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xec31e495 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xec33ed75 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xec457fb1 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec69fb21 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xec6b998c to_ndd -EXPORT_SYMBOL vmlinux 0xec833f78 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xec91f091 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xec986aa4 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xec74e3d6 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb8e406 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xecbcd219 param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xecc58626 __serio_register_port +EXPORT_SYMBOL vmlinux 0xecad3600 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xecb9c5ba nf_register_sockopt EXPORT_SYMBOL vmlinux 0xecc7c868 __x86_indirect_jump_thunk_r9 -EXPORT_SYMBOL vmlinux 0xecd6aef2 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xeccb3757 input_match_device_id EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceea683 mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed2a7b07 nf_log_trace +EXPORT_SYMBOL vmlinux 0xed189ec7 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0xed1a18d1 bio_add_page +EXPORT_SYMBOL vmlinux 0xed2c961e ip_options_compile EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed54afff tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed69c7ca netdev_offload_xstats_enabled -EXPORT_SYMBOL vmlinux 0xed74f09e dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xed82aa24 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xed98b502 load_nls_default +EXPORT_SYMBOL vmlinux 0xed8106c4 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xed90ee77 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xed98f14f dev_get_by_index +EXPORT_SYMBOL vmlinux 0xed9b1f3f udp_prot +EXPORT_SYMBOL vmlinux 0xedb1ca57 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbd998e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xedc01a25 kobject_init EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedcc37e5 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xedcdff11 dump_page +EXPORT_SYMBOL vmlinux 0xedc22813 xfrm_input +EXPORT_SYMBOL vmlinux 0xedc3a6df netpoll_cleanup EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xeddaf538 submit_bio -EXPORT_SYMBOL vmlinux 0xedea7090 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xee0dcd1e genl_register_family -EXPORT_SYMBOL vmlinux 0xee221d57 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xedd283bd register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xedd4b253 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xedda5d4c __lock_buffer +EXPORT_SYMBOL vmlinux 0xede4061b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xedea469c amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xee28adc0 i2c_clients_command EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee341fdb pps_lookup_dev EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 -EXPORT_SYMBOL vmlinux 0xee3f711f generic_writepages +EXPORT_SYMBOL vmlinux 0xee49ce35 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xee56d481 phy_driver_unregister EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5afbdb scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xee6a2f7e devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xee5f6f76 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xee625d97 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xee6637ae dev_deactivate +EXPORT_SYMBOL vmlinux 0xee675dba __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee80f496 wireless_send_event EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9a75b4 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xee91bb43 peernet2id EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xee9d16a5 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xeea004da elevator_alloc +EXPORT_SYMBOL vmlinux 0xeea72974 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaa9e5e xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xeeb121de seq_open -EXPORT_SYMBOL vmlinux 0xeebb3bc7 dst_destroy -EXPORT_SYMBOL vmlinux 0xeebea043 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xeec1c60f hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xeec2b686 register_qdisc -EXPORT_SYMBOL vmlinux 0xeec6dfe5 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xeef11f7f mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xeef9c2c5 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xef0df447 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xef18e8cf tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xef2df28b __skb_pad -EXPORT_SYMBOL vmlinux 0xef2f4739 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xef2fe76b blk_get_queue +EXPORT_SYMBOL vmlinux 0xeeb0c0b6 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xeeb6cde4 param_set_int +EXPORT_SYMBOL vmlinux 0xeebdd19a xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xeed44e9e blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xeeeefc8c serio_reconnect +EXPORT_SYMBOL vmlinux 0xeef3cdd8 d_invalidate +EXPORT_SYMBOL vmlinux 0xef29a111 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xef2fd44d flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xef319637 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xef35c3fa sk_error_report EXPORT_SYMBOL vmlinux 0xef36a848 __x86_indirect_jump_thunk_rdi -EXPORT_SYMBOL vmlinux 0xef5aba7e scsi_register_interface -EXPORT_SYMBOL vmlinux 0xef600f0c dquot_release -EXPORT_SYMBOL vmlinux 0xef7a91db t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xef8733d9 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xef45132c vlan_for_each +EXPORT_SYMBOL vmlinux 0xef459262 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xef6db554 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xef7699c0 pskb_extract +EXPORT_SYMBOL vmlinux 0xef97fc59 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa2151e xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefafb6dc vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd26ec9 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xefe1771a jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xefe484b8 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xefecc009 init_pseudo EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeff556db mark_buffer_dirty EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf007e206 register_framebuffer +EXPORT_SYMBOL vmlinux 0xf02306ef ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02be2ea drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xf02d97c0 mount_nodev -EXPORT_SYMBOL vmlinux 0xf02e28ff tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xf03e2c7c mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xf05b82f9 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf02b9dcd tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xf0350cf1 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xf0388fdb __alloc_skb +EXPORT_SYMBOL vmlinux 0xf03ad3b5 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf061c303 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xf0765f52 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0acbd14 dquot_transfer -EXPORT_SYMBOL vmlinux 0xf0bd5cc5 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0xf0c25e1a __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xf0c62c43 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xf0d41d95 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xf0d74c94 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xf0a46c9b inet6_offloads +EXPORT_SYMBOL vmlinux 0xf0b11940 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xf0bd4567 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xf0cb9ba2 kill_block_super +EXPORT_SYMBOL vmlinux 0xf0d20e81 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xf0e04146 simple_nosetlease EXPORT_SYMBOL vmlinux 0xf0e52e56 clear_user_original -EXPORT_SYMBOL vmlinux 0xf0e620e5 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xf0ebc17d mpage_writepages -EXPORT_SYMBOL vmlinux 0xf10d1a30 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xf1152177 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xf11a32d4 pci_reenable_device EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf13390b1 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xf152413d sock_no_getname -EXPORT_SYMBOL vmlinux 0xf15c8260 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xf164492b __alloc_pages -EXPORT_SYMBOL vmlinux 0xf16ab2a8 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xf1769b2c pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf11f2ab8 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf128bc91 dm_io +EXPORT_SYMBOL vmlinux 0xf134d72e config_item_set_name +EXPORT_SYMBOL vmlinux 0xf15750af mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf1779e2e single_open_size +EXPORT_SYMBOL vmlinux 0xf17cf6e1 mdio_device_create EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a5d6af blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf1a6205b uart_get_divisor EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1ac1513 fc_mount -EXPORT_SYMBOL vmlinux 0xf1be65db __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xf1ca3fc8 kobject_del -EXPORT_SYMBOL vmlinux 0xf1cd7997 dev_driver_string +EXPORT_SYMBOL vmlinux 0xf1afa063 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xf1afb924 dst_discard_out EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f2bcc1 pci_assign_resource EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf20e9056 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xf21a54ae __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xf22423e4 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xf2264355 mmc_put_card +EXPORT_SYMBOL vmlinux 0xf1f9ba14 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xf2193f69 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xf22b9364 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xf22c39c1 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xf238ae26 submit_bh EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xf2645bfe nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xf273550c kill_anon_super +EXPORT_SYMBOL vmlinux 0xf278654c md_finish_reshape 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 0xf2aed107 ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0xf2b2c65f platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xf2b462d2 textsearch_destroy EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c51bc5 vm_map_ram +EXPORT_SYMBOL vmlinux 0xf2ca9788 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xf2e3e21f __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f3dbb1 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fcbeda vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xf2fe136a set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xf2ff1d4f mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf325531c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xf3246e93 netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35f4f2e set_user_nice +EXPORT_SYMBOL vmlinux 0xf35b478a get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf372d9c4 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xf378269f migrate_vma_finalize 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 0xf3a491e4 agp_backend_release EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3abf3eb jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xf3b6102f kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xf3c0466f nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xf3c15686 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xf3c6bb82 _dev_emerg -EXPORT_SYMBOL vmlinux 0xf3ce0003 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xf3cf2f31 poll_initwait -EXPORT_SYMBOL vmlinux 0xf3d5af88 flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0xf3e0df46 ip_local_deliver EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put -EXPORT_SYMBOL vmlinux 0xf3e44996 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xf3e57c03 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xf3f33a7a lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xf3fcf3f9 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xf413aace mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf4041020 scsi_done +EXPORT_SYMBOL vmlinux 0xf421b673 input_reset_device EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf43e17df mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xf4415be8 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf4462355 ps2_handle_response EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44f545a register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xf472f389 dump_emit +EXPORT_SYMBOL vmlinux 0xf44ce961 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xf44ea7b4 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf44fc8d4 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xf457ca2a page_readlink EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf483143e release_pages +EXPORT_SYMBOL vmlinux 0xf483f47c jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xf48c7e63 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4ae9ded param_array_ops -EXPORT_SYMBOL vmlinux 0xf4b30c43 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xf4b577ac find_vma EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4d7c6b2 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf4c3ecd8 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e4ab04 inet_protos +EXPORT_SYMBOL vmlinux 0xf4ea77db udp_seq_ops EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f5777b inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xf4f5adb3 inet_shutdown -EXPORT_SYMBOL vmlinux 0xf50e2d68 md_integrity_register -EXPORT_SYMBOL vmlinux 0xf51602fd ata_print_version -EXPORT_SYMBOL vmlinux 0xf53c6b56 _dev_err +EXPORT_SYMBOL vmlinux 0xf4f9938d remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xf514bd5a kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf515cc9e dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf5271cbb rproc_report_crash +EXPORT_SYMBOL vmlinux 0xf53ba0bb vmalloc_to_page EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf546d00f d_exact_alias -EXPORT_SYMBOL vmlinux 0xf5526dfe devfreq_update_target -EXPORT_SYMBOL vmlinux 0xf5690dff xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf562a5fe register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xf59d8c68 posix_lock_file EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a5516c forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5a6f2a7 module_put EXPORT_SYMBOL vmlinux 0xf5b00aab boot_cpu_data -EXPORT_SYMBOL vmlinux 0xf5cb12ed serio_interrupt +EXPORT_SYMBOL vmlinux 0xf5b644fe blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0xf5dcf929 __x86_indirect_jump_thunk_r8 EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5ed3716 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf5f26d69 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xf5f6249c from_kuid +EXPORT_SYMBOL vmlinux 0xf5fede8f bio_add_pc_page EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf60b25e2 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0xf60c1edb tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xf60e9400 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf6271457 ilookup5_nowait EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6444554 inode_set_bytes EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6726655 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xf670e9b4 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf69c3aaa tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xf6b32439 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xf6b96c46 mount_single -EXPORT_SYMBOL vmlinux 0xf6b97e2e vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xf6dc61aa tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xf68705a8 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xf69b35b8 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf6a93a34 sock_i_ino +EXPORT_SYMBOL vmlinux 0xf6aab5a7 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xf6b37de1 finish_no_open +EXPORT_SYMBOL vmlinux 0xf6b7f971 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf6c1b7bd unregister_filesystem +EXPORT_SYMBOL vmlinux 0xf6c5c2dd bio_init +EXPORT_SYMBOL vmlinux 0xf6d420b7 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xf6d960ff param_set_copystring +EXPORT_SYMBOL vmlinux 0xf6e4237e md_cluster_ops EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf704b018 mmc_add_host -EXPORT_SYMBOL vmlinux 0xf7213091 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xf70a778a param_get_uint +EXPORT_SYMBOL vmlinux 0xf70f01ec netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xf7113687 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xf71947fc kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xf723934f __x86_indirect_jump_thunk_r11 -EXPORT_SYMBOL vmlinux 0xf724aafc __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf746a32f page_pool_release_page -EXPORT_SYMBOL vmlinux 0xf753fb7c kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xf769e345 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xf77dac5f invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xf78bd5b3 input_register_handler -EXPORT_SYMBOL vmlinux 0xf79c754e netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xf7427058 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf7439012 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xf743a1ff mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf7559feb path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xf75da252 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xf76282b7 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf787f6ac i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xf78e6b5c pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf79fdf7c security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xf7ab0746 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xf7cc68c9 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xf7ae7c1a open_with_fake_path EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d5088c put_watch_queue EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7e152f9 ip_frag_init +EXPORT_SYMBOL vmlinux 0xf7e81912 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release -EXPORT_SYMBOL vmlinux 0xf80625d1 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xf80a51e9 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf7f01622 __ip_dev_find 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 0xf82982c6 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf8276bce pci_irq_vector EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf839b4d3 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xf83dab5e xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xf83f32fe device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0xf844f4d1 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xf831f55b genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xf847820a input_set_abs_params EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84c7850 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xf8512974 config_group_find_item -EXPORT_SYMBOL vmlinux 0xf860815f generic_listxattr EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable -EXPORT_SYMBOL vmlinux 0xf874dd0e reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xf8c24e9d genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xf8cceb27 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xf87b0d0a phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf87e2326 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xf8bab6c7 sk_net_capable +EXPORT_SYMBOL vmlinux 0xf8d02c98 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8e3ab70 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xf8d4e2a2 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf8dcdfad __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf8e9cad9 cdrom_ioctl EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf900ffa6 rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf9137552 dma_set_mask -EXPORT_SYMBOL vmlinux 0xf9195b39 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xf928b322 inode_init_owner +EXPORT_SYMBOL vmlinux 0xf929715f dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf9309657 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xf935087c fb_validate_mode EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf948918b ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xf95999f1 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf94cd6b7 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xf95dd98b phy_suspend +EXPORT_SYMBOL vmlinux 0xf962f4e4 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97499f5 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xf99821f8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf974b132 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xf9757176 iget5_locked EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9af9ebf fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xf9b4f85a iov_iter_npages +EXPORT_SYMBOL vmlinux 0xf9ad3494 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf9ad6cff ip_check_defrag +EXPORT_SYMBOL vmlinux 0xf9b81f9e dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9e6bedc security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xf9fb77bd pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf9e03ba8 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xf9e363a3 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xf9eb661d vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xfa03c16f fget_raw EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa116189 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xfa1e8926 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xfa2405ea __breadahead EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa4df4c7 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xfa52f758 dump_align -EXPORT_SYMBOL vmlinux 0xfa578963 dev_mc_add_global EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6febb3 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xfa7da1f3 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xfa7e5089 phy_driver_register -EXPORT_SYMBOL vmlinux 0xfa973912 md_write_end +EXPORT_SYMBOL vmlinux 0xfa6275b6 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xfa6f3edf phy_device_remove +EXPORT_SYMBOL vmlinux 0xfa90b351 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xfa915043 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaad923a vm_insert_page -EXPORT_SYMBOL vmlinux 0xfab73fca fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xfab994ec generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xfabbb531 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xfabe8f8d qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xfac5707a remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xfabc6892 pcim_iounmap EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfb2a0f5b input_flush_device +EXPORT_SYMBOL vmlinux 0xfad1ed94 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xfad76d23 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xfaf30aa1 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xfb0c532c component_match_add_typed +EXPORT_SYMBOL vmlinux 0xfb2b6a1b tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb374e52 skb_vlan_pop EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb43e976 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xfb501287 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xfb3ce749 unregister_nls EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb5e87c1 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xfb693dc7 mmc_register_driver EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb74a9af __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xfb77d476 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xfb84976a md_finish_reshape -EXPORT_SYMBOL vmlinux 0xfb919f66 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xfb95addf sk_common_release -EXPORT_SYMBOL vmlinux 0xfb99fc26 vmap -EXPORT_SYMBOL vmlinux 0xfb9b5ab8 rio_query_mport -EXPORT_SYMBOL vmlinux 0xfba22702 proto_register +EXPORT_SYMBOL vmlinux 0xfb9b1ae5 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaa79ab input_set_timestamp EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb4a47b simple_fill_super EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbbb28a pnp_stop_dev EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd0b05a __scm_destroy EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbdd1f04 key_invalidate EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbf6a2c8 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xfbf8127f dm_table_event -EXPORT_SYMBOL vmlinux 0xfc04fed0 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xfc124361 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xfc2fc412 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xfbecdf52 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xfc17560d vga_client_register +EXPORT_SYMBOL vmlinux 0xfc177a6b seq_putc +EXPORT_SYMBOL vmlinux 0xfc1c4e4b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xfc1d79c0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xfc28c1f8 dst_dev_put +EXPORT_SYMBOL vmlinux 0xfc32c023 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc39da23 proc_set_size 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 0xfc5133b6 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xfc5aff2a pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xfc4262b7 xfrm_state_delete EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xfc6cee66 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc929667 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xfcb253e6 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xfcc51ebd param_set_invbool +EXPORT_SYMBOL vmlinux 0xfc9e94eb seq_write +EXPORT_SYMBOL vmlinux 0xfca3f0a3 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xfca483e7 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xfcbba51b misc_register +EXPORT_SYMBOL vmlinux 0xfcd11792 devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdd1414 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xfcdabccc fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfa9e79 page_readlink -EXPORT_SYMBOL vmlinux 0xfcfad70c nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xfd13b9c3 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xfd222e36 vme_bus_type -EXPORT_SYMBOL vmlinux 0xfd258a01 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xfcee84f6 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xfd1046e2 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xfd3001b4 pci_request_region +EXPORT_SYMBOL vmlinux 0xfd37eee3 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xfd6337e2 dev_trans_start +EXPORT_SYMBOL vmlinux 0xfd6d2400 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xfd75e550 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xfd761bba init_net +EXPORT_SYMBOL vmlinux 0xfd892b0c udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xfd936718 sync_file_create EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfda2a3ab pci_release_resource -EXPORT_SYMBOL vmlinux 0xfda8e62c gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xfd94402d scsi_ioctl EXPORT_SYMBOL vmlinux 0xfda9a3f1 intel_gmch_enable_gtt -EXPORT_SYMBOL vmlinux 0xfdaca656 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc5408a filemap_get_folios +EXPORT_SYMBOL vmlinux 0xfdc6a07d sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xfdca04e4 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd40166 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdd7b296 key_move +EXPORT_SYMBOL vmlinux 0xfdd8fb3a is_nd_btt EXPORT_SYMBOL vmlinux 0xfde03c40 dns_query -EXPORT_SYMBOL vmlinux 0xfde260f4 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xfdeb4f57 arp_send +EXPORT_SYMBOL vmlinux 0xfde3bfe9 km_policy_notify +EXPORT_SYMBOL vmlinux 0xfdea6dfc __dev_remove_pack EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfbd766 uart_get_divisor EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe118813 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xfe13227a blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1d2c7e mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe356428 __folio_put -EXPORT_SYMBOL vmlinux 0xfe37a1d2 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xfe2b9aa4 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xfe482220 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe55a545 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xfe55d538 key_unlink EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe61d87b seq_release_private -EXPORT_SYMBOL vmlinux 0xfe79313b dqget +EXPORT_SYMBOL vmlinux 0xfe7d02bf __neigh_create +EXPORT_SYMBOL vmlinux 0xfe8881de vme_register_bridge EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xfe90d199 tty_port_tty_set EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe97aa29 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xfe9bbace elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xfe9ca496 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea47970 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xfeb320ce inet_frags_init -EXPORT_SYMBOL vmlinux 0xfeb9d2cf mntget +EXPORT_SYMBOL vmlinux 0xfea25bab md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xfebcc121 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xfec7c72f elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xfecf9b5f max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xfed43ea0 bprm_change_interp EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeead97b tty_port_tty_get EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfeed17ec phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xfeef3b13 iget_locked +EXPORT_SYMBOL vmlinux 0xfeede1d4 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfef4e1d4 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xfef73073 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff048e04 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xff0ae243 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xff10c278 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xff1352f2 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xff0e060b pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xff170792 timestamp_truncate EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff292e89 iput -EXPORT_SYMBOL vmlinux 0xff2abe4b skb_clone -EXPORT_SYMBOL vmlinux 0xff3a51f4 slab_build_skb -EXPORT_SYMBOL vmlinux 0xff50ac23 pnp_is_active -EXPORT_SYMBOL vmlinux 0xff51f3af pci_iomap +EXPORT_SYMBOL vmlinux 0xff2f3bbc netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xff38f490 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff714c75 generic_read_dir -EXPORT_SYMBOL vmlinux 0xff7fa714 kernel_read +EXPORT_SYMBOL vmlinux 0xff69ced8 scsi_device_put +EXPORT_SYMBOL vmlinux 0xff8167fd inode_set_bytes EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xffa806fe inet_del_protocol -EXPORT_SYMBOL vmlinux 0xffafa3c1 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xff985f21 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xffab06ba get_vm_area +EXPORT_SYMBOL vmlinux 0xffadefe3 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0xffb45c94 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffba899f agp3_generic_tlbflush EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffe1ce00 nf_log_register +EXPORT_SYMBOL vmlinux 0xffee7f8a dquot_initialize EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn 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 @@ -12086,464 +12086,464 @@ 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 0x2fe26d7c sm4_cfb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x306750cb sm4_avx_cbc_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x34f17751 sm4_avx_ecb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x4e2735b6 sm4_cbc_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x773bec8b sm4_avx_cfb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xbcec66ea sm4_avx_ecb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xcc71f660 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x296c1b49 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x29951b52 sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x6a477bd5 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x7aa96d0b sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x8174e8cd sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x87e7d9e2 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xc2c6290c sm4_avx_ecb_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 0x00fcc81b kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01f01fa5 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02643e44 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02e74471 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0394204c __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x039b5fd8 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04d4c99a kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0098114f __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00981a6e __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00adf9c9 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x019259f2 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02d7a1e1 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x033ccefd gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04832cac vcpu_load EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05eb448d kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06425a17 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0554e032 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06120dc5 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0615001a kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09707c2a kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x072d251f __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07ef27ad __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x096d3986 kvm_service_local_tlb_flush_requests 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 0x0ba9d4bb __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bff80cf __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0beba3d0 __x86_set_memory_region 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 0x0d1833c2 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d454452 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d837689 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0db1fe6b kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e81b5b1 kvm_gpc_deactivate -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fa75744 kvm_vcpu_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1012fa71 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8b78b6 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e01693b kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e107a4d __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e917b3f kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1019ddcc hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1038df71 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10796f00 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1086e745 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11a67c16 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1343a280 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11773e31 __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1211b4d6 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13b59660 kvm_get_apic_mode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x148a6388 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14f74904 kvm_find_cpuid_entry_index -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15080122 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x146baab1 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14f2b36d kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14f6bf05 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15458666 __tracepoint_kvm_cr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15ba2d99 __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15c672b8 kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x165b9600 handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16f03224 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15fbb480 __tracepoint_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18b075e6 kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19403592 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19c3b75a kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a86c179 kvm_apic_send_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ab84392 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19048e67 __SCK__tp_func_kvm_nested_intr_vmexit 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 0x1d73917f kvm_set_cr0 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e3f1a89 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e72c144 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f1cefd0 kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f6814b8 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dfb92e5 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f490e5e kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f525f50 kvm_find_cpuid_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20a38f6c __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21357ee2 kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21412449 __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x215adeaa kvm_set_or_clear_apicv_inhibit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21848c4d kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21fcc837 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22824d3d kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23d59561 __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24993b22 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x234fc5ff kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24386c7c __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x245c3b34 kvm_mtrr_get_guest_memory_type EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2523d646 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25ca4aae kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26405717 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x265c8be1 kvm_find_cpuid_entry_index EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b86f1cb __SCK__tp_func_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bd8ec8a kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c1077ec kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x287f3ab8 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c5e56af kvm_io_bus_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ddf285a kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ead17e3 file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2eee73ae kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fb7ed80 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32352b57 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32b1f962 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32d53d6b kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32f3b18a kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ef4860a __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30714a74 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x319be859 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31e61512 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31f39f37 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33d3ea1d kvm_emulate_invd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x346114c8 kvm_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e8a92a __tracepoint_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37fee074 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x385c8eb5 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34b425f3 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34ec3ddd kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35175fd0 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38f4b86a kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38a48a73 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x395d5495 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39b5f9e3 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3ffc1f kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3aafe765 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bfac489 kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c3f46b6 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c665e91 kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3df33eac kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e5323b6 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e690e3c kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ef76ca4 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ea96915 kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40bb5ab9 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x418f3150 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41f8552d __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43e955b8 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f6cad45 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4049f28e kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x435aef7b __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44523f38 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45ae6fe7 kvm_cpu_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45f70d58 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4644985a __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x466dc202 __traceiter_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474da4f8 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4787b3ff kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x481f561f kvm_put_kvm 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 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x495c87fb kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a9c1c98 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b705364 kvm_destroy_vcpus -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bba7cc2 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cae43c4 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d878c9b kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b497a0b __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d766c52 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4df86b12 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e603c78 __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ebf4d2f __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f582a15 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f8a9fb0 __tracepoint_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5162821a kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x516b6e9e mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x517392f0 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5259544a kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52a6d119 __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52b2edc5 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4eaa29a6 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f72a1d6 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5033dd3a __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x503f63d5 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5056b0ce kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50c9f209 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51c08fb7 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52bc8f72 kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53e2d4b8 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55036a53 kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57e782b3 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54a9f281 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x564756bc kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57c1a369 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5852f45d kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x589e8998 kvm_apic_clear_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x595f732b kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5946f5b4 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59d1b4fe kvm_emulate_rdmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a0d8b2a __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bdbd2aa kvm_arch_has_assigned_device 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 0x5c242fef kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d128583 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d436e42 kvm_set_msi_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5eb4a447 kvm_is_linear_rip 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 0x6156eaf2 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616a2749 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6064b00d kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6074d518 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6122d92e handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6131627c __SCK__tp_func_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62376d31 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62132e75 kvm_clear_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x626b0140 kvm_apic_update_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63ed681f gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63f59a36 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64d91d4e kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x657cfe1b kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65f21af1 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66b15304 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63bdbfe6 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64e6c539 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x668501a4 kvm_init_shadow_npt_mmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67bb8a85 kvm_gpc_check -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6849efef kvm_vcpu_on_spin 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 0x6a0e67ac kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a7074d2 __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a759a4b kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6aba89a2 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68cf85c4 kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68e266ec kvm_vcpu_apicv_activated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6af99847 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b697ef8 kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6afef6ae mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b909170 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb41166 kvm_arch_register_noncoherent_dma 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 0x6c7314db __SCK__tp_func_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cb5387d __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cfed674 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d06447f kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cd1e06c kvm_vcpu_deliver_sipi_vector EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d513740 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eca486e kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f774832 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fcd3f01 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7078a307 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e306091 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e5befe8 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f234fdc kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7034b218 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7093f1ba kvm_vcpu_update_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70a717aa kvm_pmu_trigger_event -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7104aeeb kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71b7c5e1 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73087a87 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7374031a kvm_gpc_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73bd1da3 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7215dabc mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e8d9d9 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7428f6d5 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x745ea26f kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74831708 kvm_x86_vendor_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74e0f601 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74f3a7b4 __tracepoint_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7514ee74 kvm_vcpu_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x756e8f8b __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x758460c6 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75bbc955 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76198b44 __SCK__tp_func_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x77ca58b1 kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78399cb3 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x781c4ecd __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7831a163 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78f1bb3a __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79805627 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79bdb679 kvm_get_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bf7cdc4 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bc26e88 __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c10fad1 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c4fe355 __kvm_request_immediate_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cd6b75b kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7efefd4c kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7db4bb65 __tracepoint_kvm_entry 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 0x7febb1bc kvm_mmu_gva_to_gpa_read EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80facad4 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x823f25d0 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82bbb2f9 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82c83ede handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82f1680b kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83bc986a kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8544db2e kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f798dd __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8103560b kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x852e13ca kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85dcf8b1 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x860e74f4 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87242b1c kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87797ea5 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x880a0cd8 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x893dd49a __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89b4d82a __traceiter_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a99abc1 kvm_vcpu_unmap EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ba0d7ec kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c9fc0b6 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cbd5f6a kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d2ed6cf __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e062d5b kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b871de4 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c2ab64e __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c5a4d8a kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8df967d0 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f02a9eb __tracepoint_kvm_invlpga EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fca6fd6 hv_track_root_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c02143 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fccedb3 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ffbbdbb __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9064e202 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90aef807 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90b4c450 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c2aa4b kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90e50899 kvm_sev_es_mmio_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912dd2a7 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x916ed677 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x928df351 __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92e3665c kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x931b7789 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91be3b2b kvm_write_guest_virt_system EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a5ebc6 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dad22f __traceiter_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x987f55ef kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x996c5343 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99febe54 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bd2bde2 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95319684 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x957e5b44 kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x963b4f63 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96790ee3 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96ab6ae7 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96b019b4 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b61695 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98c8f78c kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9926bc3c kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x992ed23f __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x993f4865 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a2f5a3e kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9be90dc9 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bf4be86 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bfdf66c __SCK__tp_func_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d98ac14 __SCK__tp_func_kvm_nested_vmenter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e86800f kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ef30626 kvm_update_cpuid_runtime EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fa632a3 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fb9cb24 kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa12509fe __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa17513d8 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa180f851 load_pdptrs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa21f40a4 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2636b23 __SCK__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa318afa9 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3f8e3d4 kvm_x86_vendor_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41fe09a __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa51a7e83 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa21496ec kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa419fe9f kvm_slot_page_track_remove_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5e5c5dd kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa646c10b kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6b703e4 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7c5da78 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa76ddeb4 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa79c1b00 kvm_gpc_deactivate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7dd1a26 kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8ca5997 kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa289d1b kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab023cad __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac2dadbb kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad44cf53 kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad8ba2c0 __kvm_prepare_emulation_failure_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae8a2dc8 __SCK__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae8fc7ca kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaeb59cfc kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb24b751f kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2f8828c kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9a56bc5 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9aa62f4 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa8c4dfd __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaaa3a57d __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaac48f3a __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaac59655 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabb07ddd __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabfb780a kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac133e9d kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac4db596 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac85865b kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaee9193d kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf674d93 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafa47585 kvm_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4a88559 __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6558b84 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5ca9810 kvm_require_dr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb87fd316 __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb88517f2 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8751c76 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb95966da kvm_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9fc7c9 __tracepoint_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbae7b0e6 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba018e2f hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba1180c5 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbac4346b kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc71ad67 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbca8ef5b __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcb2a2a5 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd24ad49 __SCK__tp_func_kvm_write_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdb539ff load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe5a2815 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbeef13f8 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf2db932 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf99e4e4 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdbd4159 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe13c5e0 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe1431b5 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe40e7e3 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf9b27e9 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc044565a __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc47d3a88 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4dbf32c kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1fe0f71 kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60dc2bd kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc669ab08 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc70ae6ae kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc730a7eb kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7b6d38a kvm_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8fc36e4 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9199e17 kvm_arch_unregister_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcba53554 __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd713461 kvm_emulate_halt_noskip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce3c61f2 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcab8cd54 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcae5055a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb1f7d64 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb71bff5 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbdc29d4 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcca29ca4 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd3bb7d5 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcde721d2 kvm_irq_has_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1c1fb59 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2b452b3 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3c2c258 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4479253 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0d23096 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd11d2d30 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1952334 kvm_emulate_rdpmc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5e3be8f __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5e8b192 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6244b1b __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6f3a806 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd75cf69a kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd56c605f kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5dc458a kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6367a2e kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8267cb5 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdafadbd7 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb94a4bf kvm_mmu_free_guest_mode_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc9d4a0f kvm_msr_allowed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd8685b3 kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddd743a7 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddee4971 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddf63a36 kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde043e44 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdeb2b077 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd8a7e54 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf2d32cf kvm_arch_end_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe154929a hv_remote_flush_tlb -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe485e28e kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4f6cd47 kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5df36d9 __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe61db43c kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe820a3bc __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8947247 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe108d8af kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe14a847b kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4a44ebc hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4bda782 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe50f521c kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe61cccab __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe62de397 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7b5fb7a kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9b5dda8 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9e94bb3 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9a89645 __kvm_prepare_emulation_failure_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1ce55b kvm_inject_emulated_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecccbfe8 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec318431 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec8d26f1 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed23192b kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedaf6245 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xede050a2 kvm_get_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef97600b gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefd50c64 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefea8997 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0109fd5 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef982001 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefb935d8 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefd73e7a kvm_read_guest_virt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0c48bcb kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1531adf __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1851922 x86_decode_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf191c799 kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2545f26 kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf281e02b __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2535687 kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf473871e __tracepoint_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4d9b131 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf40f75dc __SCK__tp_func_kvm_nested_vmenter_failed EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf64677c3 __kvm_is_valid_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6c664e9 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa36dc9b kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5fd2972 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf770c989 __tracepoint_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7a2fcbd __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa260432 __tracepoint_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfae40ace kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb024eda kvm_prepare_emulation_failure_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb156b28 __SCK__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb244669 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfea6ea01 kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff1de672 kvm_set_msr -EXPORT_SYMBOL_GPL crypto/af_alg 0x0f966840 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x1283dbbd af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x1595407b af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x1f3ff45b af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x277ce526 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x2c5519c0 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x454a4bdd af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x5359c20c af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x6f31a4b6 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x8253d5bf af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x887cf700 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x89f52b64 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x9f362e67 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xaca0eea0 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xb50acda5 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xb8a93cd8 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xd9b0959b af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xe034f818 af_alg_make_sg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb7b2ca2 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc44aaaa __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcac51ab __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcd7463f kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff7c2376 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL crypto/af_alg 0x15869442 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x28052918 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2e8f089f af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c0d1db1 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x52678925 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x5a47b219 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6655bb0d af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6c73fd07 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7dae3225 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7dd15a36 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x8835c6ac af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x9c6efdc0 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x9e89d2c7 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xccf60fb5 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xce7bc74f af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xd8943fc7 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf20d8af af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfcf63141 af_alg_unregister_type EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/aria_generic 0xd88132df aria_set_key -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xd3e7a5a3 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1725174d async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbde4458c async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xad2b2f55 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc4ca3124 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4c52616c __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6ba4b539 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd910cf49 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf957e349 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x16b8ab1e async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x40a2f1bb async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x88639f00 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe518560a async_xor_offs +EXPORT_SYMBOL_GPL crypto/aria_generic 0xd9a44a1a aria_set_key +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x253c5fe8 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x35e53d71 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa8a3bc37 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4a3b1a61 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbd511d85 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x03c257cf async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2b5cc933 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4486f35b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7a61db5b __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x47c0258b async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8d98b4b2 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x99b08c5d async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdae9e4ad async_xor EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2f25704d blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd6929b6e blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x5085897c cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xf42a1597 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x5cc22fc3 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb841a3b5 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 0x000a99a9 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x3cf57bcb cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x626825fd cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x64b9248c cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x6752599d cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x67e10502 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x784f188c cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x8f78e217 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x94bb1991 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa1bc77df cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xba498306 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xc2e3d04e cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd65de746 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x31130d25 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39eed6b3 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4b65542d crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x518bc286 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x60272e4e crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66ee8f0f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x673327ed crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6e6f6056 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x81851078 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9acd9537 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9ccfec81 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa3749d05 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xafeb21cf crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc3cef81c crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdd437da7 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x37b3d9fd simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/cryptd 0x0547849e cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x0829818c cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x13a8a2bf cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x16cc6653 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1c87c24a cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x26583601 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x352e995c cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x3fb9736b cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x867ff12a cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8a818955 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xe705f7cd cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xea77343e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf99760c3 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x03f4f5d2 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0b16d2a4 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x42edf99f crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6f73516b crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x761f2ef3 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8aba8d48 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8edb12bb crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9343f09c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb004137b crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb050051c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3aafac2 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcbdeb447 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd785cdb8 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5ae08b5 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5e3b1a5 crypto_transfer_akcipher_request_to_engine EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x572bfda8 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5bba7981 simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x69b08ce5 simd_register_aeads_compat 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 0x9af88dc8 simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd986972f simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe54d016f simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf52d74ef simd_unregister_skciphers 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 0x3d9b43a8 serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x54c50d37 serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update @@ -12551,48 +12551,48 @@ 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 0x20deb3fc twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x56630b62 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 0x097acfe3 synth_current EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2bf2cd54 synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x37256e50 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x416507ed spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e47dfe4 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2fc38233 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x371f199a 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 0x45eda959 spk_get_var EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4d520f79 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x69117d1a spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4c4cd769 spk_ttyio_synth_probe EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8057e83c spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x89e44408 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8b008b1c spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8b6068ac synth_add 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 0x98b97e36 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa8c94a37 synth_remove EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb65c2b1b synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb16453fe spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb73e68a7 spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc3414f82 spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc59e46c9 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8abb24a spk_synth_get_index 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 0xdc06bbb7 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdd690f25 spk_var_show EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xed9e6bb4 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf27f2b55 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf7da8292 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xffe88ccf spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf3be6f52 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfb04267c spk_synth_flush +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x006ada2b acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2701dec5 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x297d71f7 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 0x5b6b9eb9 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa07284f0 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xcb314a78 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe6f5023f __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfc706357 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4ff4c0eb __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa695844c __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 @@ -12600,50 +12600,50 @@ 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 0x05a18b8b ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x096bff95 ahci_shost_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x11ec95b7 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17de9210 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29ed5ba4 ahci_sdev_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38bf8760 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68ccf9e9 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x817fac87 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8fb9dc2e ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x99653b6d ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9e141efc ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa0e50167 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa12846a3 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa33e4c51 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xadb21e1d ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xae2bc3bc ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc524d961 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd5dfd960 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd82ac2a8 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde77723e ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe84ed2f0 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea4086e6 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06ebcc00 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12d13159 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17ea6ec3 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x29daf71c ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x36cbf305 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3fdd7515 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56d06c4f ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5f5f9031 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7728d03e ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7872bcc4 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7e2b8331 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8bbdcb0d ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ae31820 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa2784006 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad813aaa ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf198224 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb22f557 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8ec26a6 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc6ad3c2 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xddecb11d ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe898c1f6 ahci_do_hardreset EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeea63a44 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf782416c ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x144ef1b7 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x15cbff5d ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x161d8f22 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25091cda ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x38867b77 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3a4eadd6 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x411767a2 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x46a02044 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x50f34575 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5f612b85 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8963d50c ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x91415081 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9887f7db ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbd20503e ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd5ca5301 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdac110b2 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdd18e001 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe349e962 ahci_platform_find_clk -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfbac43c8 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea8e705f ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xee79e836 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf948304f ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x06d057e0 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0a502d5b ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0cdfd9b5 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x170b7e1b ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x31f78e1a ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4abaa783 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4bf9235b ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x507f8eb9 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x55d3444f ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5fc51e1e ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6eac70fd ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa1ea96d9 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaaaa467a ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd7f71d86 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd90ed7bd ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeeb2fa18 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf8e60b23 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf9907810 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfe74cd50 ahci_platform_disable_regulators 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 @@ -12677,262 +12677,262 @@ 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 0x8c88db4d linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xd6660dfb linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf577191e __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x70dc2f2c __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xce48a27f __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x00dac6f1 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x78e08fc3 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2abdc076 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x74a36164 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x329745a3 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x478922f1 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x11706464 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5eb0e43b __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4702571b __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x997995c0 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa8fd477a __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb92237e4 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x71b7ab4a __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7831b422 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0aa6e98f bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x517c0a01 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55f3ddb2 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d86af3e bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72f0ad85 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7309fb5b bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x77886da2 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x832807a6 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x859a5d5c bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b9a882d bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d560d78 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e554689 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e936a16 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5ea672a bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb85ac899 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbafb96bc bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd4b180d bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce092ec8 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd54bb509 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda8fea6c bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe49173c6 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee57b65e __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe48194f bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe746801 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2bfc886d btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4036d0aa btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5d49668d btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x71c82944 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x772fcd98 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b824dfe btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x92ba425a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xac21630d btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x08712951 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x32bf0dc9 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x38ff7c2c btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4016015d btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x496db152 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x518a0160 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5fb69fda btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x614f90e0 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x788df888 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0caaccd btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xab34243c btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb517a45a btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8ae9114 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd7c3c0dd btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6fa1725 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfe91e388 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xff3cda7e btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0117a5b5 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51339073 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59d8d07d btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74f7542b btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7a1930d8 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x84b8f97c btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6e46cd9 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa9c35410 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8a386c1 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc4656bc3 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xce695b44 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x0dee6060 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb7ebf9a3 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xda1108e0 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0c5521f3 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x313f8558 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x40edb74a qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa71b0210 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xffc8a9bb qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8820c1fe btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9efbea20 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xb8a829b2 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xd2388751 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf03edc8b __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x73ff1562 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe41c1484 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2540176d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa82660e7 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x91ca77ba __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xe23e6c8c __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x469fdd33 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xa29682f8 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x84515109 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x875b2166 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x585c4dd2 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcf55fe24 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xec3a55a6 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xee907025 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xeaa78861 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xf2345a46 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02bc202c bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02eb3740 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05b95203 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10eda30e bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x264d87b7 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ec8dd41 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f429402 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b3386a7 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5909bbf7 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60330f3b bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6043b3f0 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x729727cb __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73031005 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x74c781e5 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x81ed3e92 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87a77b0d bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88d52ccc bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8f393288 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8f61b6bf bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcf47eb4d bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8bda80d bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe5024f08 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6e46f49 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1e5d9b4 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5787a889 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5c4ab715 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ac2c866 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ac39095 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9700b55f btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbd76cd09 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcdae9fa9 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xda8c3613 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0459c46d btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x12aa6a15 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1cc22669 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3fd3c683 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4233b786 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6375e176 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6a8ba1e1 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d1fdd8e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9f932ed9 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb9c5005a btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf213039 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf88b11d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcbaff488 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc40d949 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xec4744a8 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf1f58848 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2567504 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0ff16d6d btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x26177dc8 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c9adf27 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7304ad3b btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x733c2dfe btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8c6d6cf7 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8d5c12bc btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc009cc1f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xce1322a9 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe6adae2f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xea0e6457 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x09f8cb43 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x3a044eb6 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xc2749cea btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x13dd4f88 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3c26321f qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x52d2f110 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x995cff44 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbcd4c79b qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x27baba57 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x31d15d0b btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3d6b1208 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4c353d3e btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8b3e4e0b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xacc2e788 btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb8adb64b btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xba88c69f btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbe033ed1 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd04e224d btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29270686 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2af69cc9 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2bc90621 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7a207a05 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3de45f54 mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4fc73be3 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x580efb47 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x689ed0ba mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x68f0e401 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb9e108b6 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf078b4cc mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xfc4a0c79 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09f9d746 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b5cd48c mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2ba252b2 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3dc25d1c mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44b08ba6 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x498bb24a mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4b93f71a mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4c12361d mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e362d0d mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a61960c mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b4fca22 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x679491e8 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x730297ba mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x73c689bd mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76369ebc mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fd829c3 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x82830035 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83d385c9 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x86d41d0d __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x86dbda6c mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x88e667f4 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8c3e04a4 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa9bf9160 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xac3599d2 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaecf9012 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd62e274d mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd68e4bd5 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe880f67c mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf1bc56ca mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf33448a3 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf57f0111 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0091805c comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x08cd3ea9 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0928b2fd comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c229e77 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7de26af7 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7f4c3865 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdaa91449 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xecafdaae hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1390de8d mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2e39c03a mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x37d543d9 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x61f2c62d mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6398d93f mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xbd0240b9 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd4601bba mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe7589b10 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0113599a mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05d0e6f8 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0662d39d mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x08cc926b mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x14e6dd3e mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x15f76258 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29ea635a mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d7bb982 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2f3be624 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3415c1b6 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x49af0b9d mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4fb820cd mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x53b12477 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x648d2dd5 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6c938470 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x798288e5 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7ee67bc4 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x816f979c mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x92cbc1c4 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x93342fbd mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb37ebaaf mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb63ee5b4 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbb07cd1b mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbe97d956 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc7c265e1 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb851d8e mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd0aad898 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe0020d6f mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xec367edb mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf47738c8 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfbe720bb mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x022032e5 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x064548eb comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x070faded comedi_buf_read_n_available EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1294992e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x19f45209 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1c3529cf comedi_handle_events EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28c64aa0 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2bfecba3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x293a1ca3 comedi_buf_read_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e003f51 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e9b4d56 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3f5d870e comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x40cb2d41 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e25d0f9 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3eedba18 comedi_request_region EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44da788e comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45dc9229 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x479dc332 comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ff77278 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5878c63a comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61be5896 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64af62af comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x714c8beb __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x71bc7dc9 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7834161a comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x53e1d34b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5c2d8cf3 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5c96371b comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5ee8300a comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6056ec2e comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6291dc66 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67bd4e15 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68087fce comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x75ee75af comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7c79bd58 comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x868b31d7 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88f17140 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8952913d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95391af4 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaeaa4274 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb14c04c4 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x826da3c4 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x869dc861 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8aa23f68 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x909b9566 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b9c5a0a comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabbb0ca8 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac002bf8 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xadba29f1 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf9299b4 comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8073dd0 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xba442fd8 comedi_nsamples_left 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 0xc2e5e11c comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc35cdfbd comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc6722626 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd4b4af21 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7d4d9de comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc2bbc5cd comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4cb42ae comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8e7d591 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xda550524 comedi_buf_write_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe248dc01 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf3600929 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf5cab2bd comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x11e662a0 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x31cb1d09 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x35862267 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x63a160ee comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7697a27e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8317bd17 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x912dd2e1 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xef912a03 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x088199b7 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x0f1e7dca comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x3bdaca5c comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc3adae3a comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd2caf34d comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xe729400f comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xf249bde8 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5660447f comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7b81b94c comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa164a73a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb90f52ff comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe766b8f2 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf8cb6daa comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe57da45a comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7aabe82 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf51ffd92 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf7a4bd58 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x072b6d77 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x08dec822 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa4b165bd comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc14cb30b comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xcdbbbeee comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd448fdc7 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xde94f185 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe8398fb3 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x020aa1b5 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x19024c12 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x267c958b comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2bb7d27f comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2c9cf29b comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x52251f15 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x77da2f3a comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0a85bb22 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x10fd7e86 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x54c5cb99 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa4ec2cee comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe68ba6ba comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf4b5fd30 comedi_usb_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xde5d7c25 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x03074af5 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x26ab89f9 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xddb68b5d amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0dc1b26c comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4a64668b comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4bc61a0c comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5f8c03bd comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68c2273d comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x83629a2e comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x958ee571 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa4915a51 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbe27f846 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcd843a81 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe35e0d89 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe6738d38 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe8fa8370 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0635e875 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1c82211b subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa558d8a4 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xb22e57d6 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x0d21e16f amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x6bb6d3f9 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xba5a0e50 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1a01a7ac comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x20ed2d45 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3d72d98b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4b384d41 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x58ecb153 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6854fffb comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x85840903 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb2718206 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbca8a644 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc09dbefe comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc3515b06 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc9bb8a7f comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2e9f928 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x61f83cc8 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x81804711 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xcca20f16 subdev_8255_mm_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x556da2a0 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xa48fcdf2 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xa4b691d2 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xaa3f920a comedi_isadma_alloc EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xe1049ba6 comedi_isadma_poll EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xf60eeb38 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x6c1f72f9 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0d8fa8c0 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x18aaffa7 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x24739c2a mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x333cb351 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a3a0f77 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x415caf93 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4da4f177 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x50b71b00 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66402220 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66902fe2 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c8bcea9 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x74da8479 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x86298dfe mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9c552315 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc68c8dc8 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd959a683 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xb04e4631 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf4b6252f labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x06f4c903 labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x34dfb538 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x4690bd68 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5e3bddc6 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe787968d labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x08fe0d98 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0a2e5e6f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2adcd1f8 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x61ca2302 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x85ecd8de mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8759fe5a mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x88e88cc0 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x914bb41d mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9f2755b6 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa23333ff mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa6f0dd99 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa9a0bf38 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcdceb1a2 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd2ee64fc mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd79c0114 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdddf6564 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf458562e mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xcf675654 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xeb23530c labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x09eb2cdc labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x4a3ad60b labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7f8d83a5 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xceb96268 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe4b5c516 labpc_setup_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 @@ -12943,888 +12943,891 @@ 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 0x3b4b110b ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4917273c ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5b84ef66 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5c4c972b ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64ea0ab5 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x843e274a ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa8f9603e ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa9b942f0 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb12964ac ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb8654285 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbdff3e29 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc409d7a9 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcbdf1a7d ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd4637e57 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe6ca155b ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe87345ad ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0307e04d ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3fdaee7e ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x59c9a3bc ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa77d12da ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc8dcfc47 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf2cb5e7b ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4137d43b comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x529e2a7c comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6261165c comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9dcb3b7d comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcdd7b11b comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe62efb6c comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe9e4c146 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x15dae743 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x36e705c9 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x415f7493 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5112a565 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x52cd9e36 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x616161f0 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7bf5adf8 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7c6021e2 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x82a91c9d ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x837f457e ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8b2bb537 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x98494161 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9f851c10 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xba98b3c2 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbae9f753 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfcd1c7e4 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x03507f5d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa590ddc1 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb66d4373 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf734bb54 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf97c7c31 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfcb9c886 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x18242470 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1ad65529 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x54344799 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6197d4ba comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x68d393c8 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6b06e61b comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe043940b comedi_dio_config 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 0x12f54a63 sev_issue_cmd_external_user 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 0x843d6541 sev_guest_decommission -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x85c62e7b sev_issue_cmd_external_user 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 0xb86b77bb ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe6cb75c4 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0025dc96 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0249f7de adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02b7c06b adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09121287 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e5a4b79 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0efad105 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a54dc03 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1caabb86 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22de028c adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23c69000 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x246649e8 adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24e61f26 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x271eacde adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b1ed092 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0131032e adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01cdfd4e adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x03c84d33 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x04639c03 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x050b3f57 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06648d5c adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0907b66c adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ff8c209 adf_dev_down 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 0x2cb1f7af adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2cd3d2d9 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30bd0e32 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3905e0ef adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3acc02a3 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3b491093 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e98061d adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30b5f30c adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x38abcdfc adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3cf0b61c adf_isr_resource_free 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 0x453d31d1 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4dd48dd8 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x508d2a00 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5141ddca adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x56557cb3 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x655bf348 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ab2301d adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ce9eae8 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6de3aab0 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7108170b adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7442b1d4 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76d7a1fa adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7933eb6a adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87546409 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ab22c08 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d66123e adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e06ee30 adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9028642e adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91281768 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93a67651 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9929d55c adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9af7af8c adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9f41b2b3 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa5e9c8ed adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa81e0153 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa949df50 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xada8c52f adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb4f57509 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf92862c adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2c5c1ff adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40acca2d adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x422d40a3 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d09ae42 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4e9be03b adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f881bb4 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51c0b14d adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a4316d5 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6445e11e adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ad1dcc5 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c0481f8 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d449273 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7769da06 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x77b5c4d9 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e1a141b adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f348918 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x80f63a49 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x824c94da adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x83e35bb6 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a593e55 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e566e16 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8edcfb34 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9416d2b2 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x942c04f0 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x95647ddd adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x961362cf adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9f6f15e8 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa1bbddc7 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa8de4882 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa9ab6b5e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb19545bc adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3828e02 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3ce6fc7 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb55b7966 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb59868b7 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc03ce9f8 adf_gen2_init_vf_pfvf_ops 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 0xc67d157e adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc722e4f7 adf_cfg_dev_remove EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcf209581 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd0d9846c adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd15a8f76 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5594b81 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcda2edff adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce82a9d7 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd205a202 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd4e41db6 adf_gen4_ring_pair_reset 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 0xe2b0552a adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd85fb466 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xddcd15b5 adf_gen2_enable_error_correction 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 0xe3da7641 adf_disable_pf2vf_interrupts 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 0xefafb3c0 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf95ca18a adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfdfb5673 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff4051aa adf_enable_aer -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x74609bf6 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeb318879 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xedca8a16 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6827121 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf733f543 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf832a342 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfdefc40c adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfe6f7e95 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x8427f635 dev_dax_probe EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x02eb92b0 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x030c4ff1 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x14709a9b register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x1801af1c dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x9938a3c4 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x0219005a dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x1713968d register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2d5becf0 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x40977699 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5e25a911 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5f2c7738 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x6782264b alloc_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 0xc92b36ec alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xcf587388 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6e8b95cc dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb63b22d5 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0d1fa713 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15dbcc75 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x26a5b770 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4057f52e dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x50578f87 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6391a10b dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x83e87e38 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbe0f89d7 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc0e40a1c idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x57b5b0df hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x835f79ad hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xac974343 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xaf17376d dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0a09db7c idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1f62b955 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x364ae35b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5f547844 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x90837451 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xaad88f80 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb08a8588 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xddc0d2dc idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf673edc9 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x26682b34 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8099ba47 hidma_mgmt_init_sys 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 0x05629a66 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x4224341b fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x9e2f6da3 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0aae3c9e dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1f9970ca dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2209a7b7 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2f5119d0 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3052ab54 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x42f7829e dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x494f69fa __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x60baef01 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61f829eb dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6b66acc6 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7f83cf4c dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fe6bfc4 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8502c592 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9e4c57dc dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xae8b1fbf dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc3f33bb dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc6ce57c3 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc9b7f40f dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdde76a18 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe32f9f5b dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4445bd8 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed7bfe88 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfe7b32c3 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb82a0865 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0a0e5b58 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1395b06c dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x142a368a dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x150ed461 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b757119 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1cddef93 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x304b0761 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3798e61d dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x426a5811 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5938ed56 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6cb741eb dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8af93c54 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8b03590a dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa1143d77 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc0c5ee9e dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdcb077a4 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe0a8abc2 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe5980713 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed073bfd __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed165203 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xedba9d41 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf00aed71 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfdf7667e dfl_fpga_port_ops_get EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0a4261d9 fpga_bridge_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x15dbebdb fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x29516b92 fpga_bridge_disable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x392d602e fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8b62c6ef of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa9b7bec6 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xba4ad04a fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcd931f23 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdfa88e15 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe197e86a fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe71465f8 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x08a8c85b devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1cb07f78 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3ad107b8 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3ae094a6 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3dd0635d fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x501d9959 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x89e06560 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8ff80e6f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3f4e3d4 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6779248 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec4e185f devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf983138a fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfc878ad2 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x10f7b745 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1172ff02 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa64b02e7 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc89c0b89 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xef19bd5c fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x13b237a7 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x40d980f1 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x658f9916 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6984d1ea gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xbe6b7cc0 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x599ceb06 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x74e0d4db gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa9aa9c42 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xac54e3f5 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb7e49124 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3a361d6a fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x469015ff fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7eae84cd of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb255841b fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb4662f55 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xea9a793c of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfa3fdec0 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x16da3d08 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3bf50e29 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x543f2edf fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9eb4bafa fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa6823831 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa6cc6914 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb45e3873 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc21d439a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc3d7ab06 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc8fc7e6b fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5e66b6d fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd6f144ea devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd734b6dd fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x05da9841 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9856c758 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb81c850f fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcfffb631 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe3565256 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x03ff6200 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0573e939 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5f5ed9dc gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x733a51fe gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x83175e79 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1b072f0d gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2b90fa87 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2dafea05 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8c5563e1 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb887eb6d 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 0x054b4997 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x84cd270f __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0d3a4d29 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0f2682e1 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x124becf9 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x144d6c79 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x170b7b2f analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5c2a3588 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa8046318 __max730x_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 0x80d50bcd analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe123766c analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xffe8057c analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xd2f4131d drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07f7ead1 accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1129e464 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16742745 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ad44175 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3ec7f6f5 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x435631a9 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x56235693 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8f2df16e analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8f666f83 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x91dd3ddc analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x98b7cabb analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xee2951be analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf201ce72 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf4442e36 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x0799149f drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d261352 drm_bridge_detect EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7e4d5657 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a498bd8 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9248a19a drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xacba9e24 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x692c1a5c accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f3f21c6 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x72b4f620 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8335c1b8 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b809b13 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d4b9d41 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d76e571 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa4013fc8 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab54d773 drm_bridge_hpd_notify EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb327a512 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1fc2bdc drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd50ab8ab drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3367daf drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd44b2c7d drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdac8888d drm_class_device_unregister EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x21f8d4f5 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x350c0165 drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3b1ab56c drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7134d3fd drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8a0ea04b drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa170037f drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa7e6e5ab drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xaef4deaa drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc711648f drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd6f62fba drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfde38483 drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfe4a4fe9 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x062f4f2c drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x44ea49b8 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x816d07ef drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8357ab73 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x90e49925 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x99304dea drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa0344319 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcb6d324c drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xce5e0003 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd953af6c drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x171cb7f1 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x25ece55e drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2b674ec4 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x479fec2f drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5ad72bf4 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb8da4b38 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc0f68c96 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd6fbb518 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x02855bdc drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x12123a8a drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x13586ae6 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x20bbb37b drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5249e073 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7597ef5e drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x76987647 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x82279e0b drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb1e0a007 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc69a83ac drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfa794a6e drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfdad468b drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0b12b91c drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0b6a2826 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1c709795 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34eaef55 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x71d7fba6 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x72b1a6c4 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc3e31d22 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc49fa489 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd1d7e7af drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdaa2042a drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x00c52334 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0898a498 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2b2d2fc5 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5e1ae3c8 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6dbaa448 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb113f5b9 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xeb0377ef drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xee1edbe0 drm_gem_shmem_mmap 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 0x878e59d9 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x87d3be61 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xc9abff30 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01f240d9 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x032f7da4 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x080f5e90 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fd17fbc gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x2a4eb940 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x88c120c9 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xb490c645 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01de523a gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03a6acf9 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0447518c gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06219ded __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0990dfcf gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0dd2d69f gb_connection_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x132f7733 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14684646 gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x18d107c6 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1947366b gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b5f0474 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c9caf2d gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f86fdb5 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a7a075e gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ebfe09e gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3163fb5a gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3638ef57 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36443013 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x365a8488 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39804ef2 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e5aaf2b gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x48850f9c __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a54704d __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ac5bb20 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b1f95d5 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b9f393c gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f35a2ec gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f93b11c __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x509deaac gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x55ef0138 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a7ac078 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d7912c1 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x685a6355 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16dd78e4 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25173a48 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a9b96fa __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x309f89b1 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x30e03fa0 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32ce6c1d gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36ebe275 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef72848 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42438dd5 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56be17c9 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57b42c7e __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x674e146e gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b7f479d __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c89d337 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6ed428ec greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71c51987 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x74aba9bd gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78d719c5 __tracepoint_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x801b9e35 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85845f69 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8934b420 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8adf961f __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e23abd5 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d8c9a8f gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f91b21d greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1ca9de0 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa757496 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa9dbab0 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79114cb2 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e673751 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x940eeae4 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa16b12ca __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa50e376c greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa6267843 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9713c73 __tracepoint_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae5ded3a greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf8a373e gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4916040 __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb801dd94 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe06549d gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb145a3e0 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb300d2a5 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb678f68d gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb8351bb1 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xba6e5ec8 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0688d26 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4cb1e86 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7455eff __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9dd465d gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xccb16381 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd826ad5 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcfa7a769 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2ad35dd gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3cc21a7 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7f559f2 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc819436b gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc823b018 __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca64cb64 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcbfed2cd __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd48ad6be gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd560144a gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5a5b4c8 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd82946ff __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdec6d57e __traceiter_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8feb231 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec603ade gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf6cf6495 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf76dea00 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa3b6e2c gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/hid/hid 0x015daf58 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x03cc9e26 hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x04ae8898 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe782e8db __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe81868e9 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4b9d599 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfad87503 gb_hd_output +EXPORT_SYMBOL_GPL drivers/hid/hid 0x016637c9 hid_ignore EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0917b03d hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07292d1b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d5c1ae9 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ec0c64f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1170612c hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x128dc1a5 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x12ef8b20 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13fb9d3a hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1710138d hidinput_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1bcff7c4 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2254a982 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x244052a0 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c48ba30 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d20923d hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30361a3e hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x397019fb hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a56f25b hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ee8cbf6 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x491f9455 hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d8cd984 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f4572ad hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f5c88ba hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x62b02772 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a8f1ed7 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d22bbf6 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d45a24c hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d9c811d hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6dcb708d hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fc2bb09 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7005fa5d hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70f9ada3 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75ae803a hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x79e76d0b hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7eeb466b hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fbb8a24 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87667185 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x87b2c769 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c11b4a4 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c8d18e5 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c28bc82 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x362956b0 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37bfa2a6 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47964fe5 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x490ad604 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c10b0af hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x501c5bb8 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x514e07da hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51e0c754 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51e72e76 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54b48ebf hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x572d0350 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58ff7b3f __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d5392fb hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64bf6f38 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a849fcb hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71c8555b hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x726ecad8 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e9fbe14 hid_match_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa09c8a2a hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa05ea08 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xadb01334 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb35ccfeb hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc197b1b1 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1bd0821 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc264b7ec hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2e36dbc hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3ed5f12 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6f334d5 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd6f185f hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0186e9e hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8867df9 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd894b160 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd9cfd3a hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf14e8dd hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3cf1843 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2069207 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c479beb hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2f45691 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3b4b271 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4560e47 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7eda0aa hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc56f9ce9 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6238295 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc4e1182 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc73028e hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd0b0fca hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdce80d8 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd112ce1 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0d78d20 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2a92e45 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe83bf38c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf02dc132 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5c8700a hid_resolv_usage EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb1ee16d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd4ecd4c hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe697cfb hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x35ba290e roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xaa5e32e3 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xab6930b3 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb211302b roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbaa3aebc roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xca3c4ce9 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xda8b4571 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xedb66459 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x076021fe sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x259e4380 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x32fe17c1 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6672225e sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7e14dfb5 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x88461a2b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xabde49ac sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb23758af sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe344e9b6 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x26c3023d vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3523e6c2 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1171ef40 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1e161e2c i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x412ee16e i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x78931b51 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xaaa1b63e i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x6a815f26 ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1490f693 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xcfe1481e surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xf79bfc6d surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x9c012345 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x90f7ef2d hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x94d28a1e usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x063aac2a hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x07538eab hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1733776b hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2785d07d hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2db3fbfc hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4cf27884 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d6c8d6e hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4f803989 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x252a3e8a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2758fd02 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x350061c8 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa06ee639 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe1e95f0b roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe60a0847 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x072b9e43 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0cbfa6ff sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2491e0b7 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4781f04d hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x550f49f3 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa9f9b5aa sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb6f65e73 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb75a466a sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf5828f82 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x43d77c8d vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xf8f0d610 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x62bf768e i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x69ee4d4b i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8a53a865 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa94fb904 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xbdea42d0 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x59cbf519 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x90f522ac surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xea1a59c0 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xef656b87 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x9ab13930 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x810281b6 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xccf029aa usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0c735d86 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20179015 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ce52fa4 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b2d80a4 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ca446cf hsi_register_controller EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7496dffb hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8e6cbb04 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8f23386a hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa09cfc53 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xafb29c61 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbeaa460d hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6d38154 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe7621c3d hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee3b82ca hsi_new_client -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0af5cb38 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0e306a6d vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2261612f vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x23c90492 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x26f48c51 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2acc594c __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a04c8da hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6fc4b75a hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x706cf427 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x71eefc00 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x96e58ba2 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x97774a70 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d1ac6f2 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb74fa61c hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcdefed1b hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd4759f74 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdcd022f8 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9ff87da hsi_async +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x03736919 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x06c5edf0 __vmbus_driver_register 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 0x34edd70d __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x34f513ae vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x36f38a43 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fcc21c2 __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fe930b0 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321f269b vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x39c97fea __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3cf6491c vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3cf77a61 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4283655c vmbus_next_request_id EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a4d152f hv_pkt_iter_first EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x51bbd8d0 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x51c2c956 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5e89145d vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x617e8217 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4d606afc vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5e6f417a vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x61968b32 vmbus_free_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6b07c49b vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7192600d vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8752591b vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8cd5ec48 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x91425617 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9146d241 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9583db05 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9fa60287 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6092fec vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb754e957 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc233facb vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd1cd1c08 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe4a2a950 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf2e48bcb vmbus_close -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xffad44d4 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x67b15071 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6c7a1c3c vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x762e0a79 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7cdcc8e0 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa929ed80 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaa27b72b vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc6b4172 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc8d9010 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbd3b9636 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc1c6aa94 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcd421eff vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcfbfdddd __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd615010c vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe018afb1 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe5672307 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6da60d0 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf077e059 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfffc199e vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x329fd1b5 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 0x1de7158d nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3322a68b nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3efe06a6 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa1dc6814 nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xaf475eb2 nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe303127e nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x423fe29e occ_shutdown -EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x7b468f1a occ_setup -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x18e5ec8f intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x29b2670e intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39ca373d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3e17bd98 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4fb0e702 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x92f87feb intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x973a82ea intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfc7dd1e9 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xff395804 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x08ec4e6f intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x399c4aca intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd6a2e5bc intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x07835a85 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x10f7ec13 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x205bf36c stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4eda23d5 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x54c5ee0e stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x55ccdfcf stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x73633f5d stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xad16b22b stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb0a68d52 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1a0d6fa5 amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x37aa169e amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x44df822a amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x72faeb06 amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x7b82bd26 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x9a8b02f6 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf71b3dab amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xdad880d3 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xd4628acb nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x899b8587 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8bc7bcd0 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb823a218 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf8a80e15 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2007cec4 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8e96b8ff i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b442b83 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b553204 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x18f3d0d5 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x39d68c79 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x41bbe843 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x424d5dfb i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5c816832 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6c0d32c7 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70a9abd2 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x5bf01eff nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x79d9db81 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7c63da6b nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x8eee4869 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xd31f928c nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe0f4b0d3 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x3514d4fa occ_setup +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0xa1607b7c occ_shutdown +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1fdbcf04 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7873649f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x83fb18e8 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa4e2137b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb01f62d6 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce5c1186 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2ecd97b intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd534024d intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe714bd35 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1f1a9060 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa87059cf intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf9640b42 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4098d83e to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x500b0779 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6c4647d6 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6d497619 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x71226e16 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7411fe25 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90cf7753 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd2e31033 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xea8220cb stm_data_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x086c42e7 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x412871a8 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x547a893d amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x5539c378 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa27ed23b amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa43bda0f amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf4df5753 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x73896ca3 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xec1af3c1 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x099141d2 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5d362dc1 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7a9fd57d i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9b6d1060 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x39eda0fe i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb426c950 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04d08a54 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0a41a72b i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x298c7d63 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b3640f9 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2e1b3f24 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2e2d6029 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x39bd6441 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3cd33bb4 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3ef53d55 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x441cbcc4 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x56018718 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x61a8b160 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a3e9b6c i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6b70c4ff i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6b77464f i3c_device_free_ibi EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80bd2dc2 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87da4db6 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a103952 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a9ec2ab i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9245d80d i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92b25ab5 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9883f6c6 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5caf6ec i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa8d9e81d i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb37145b8 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3ab578d i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb858ed66 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc494933a i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1fcd069 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdfe496e3 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdff9f784 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe39107a7 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1f34cb3a iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88947ec4 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x89731e21 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8d188d86 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa02f474a i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaff9f738 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc07c5d9a i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcad1442e i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcdff4904 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xced4786a i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef531d2d i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfd3b151e i3c_master_entdaa_locked 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 0x4a15d7c8 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 0x7c99bcae iio_channel_get_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 0xc0b07f1f iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x234826b2 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2465c2d9 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2be96fc2 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2fb140f3 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4c95056f iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x69793004 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6bd6b311 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x70abfbcb iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7692e1fd iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7c7e7482 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xda0279a7 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdc1154e9 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x349864a9 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa0c4215e iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdcb38e71 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x20045eae iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x293fa540 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x39a757ea iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4071decb iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x88430c97 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8ea011f2 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa94ccc08 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb2e44fc5 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbda81a56 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc77698b3 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdfbc0a4a iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfb3d9cee iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x7fa5bbc8 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x231eed4e 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 0x5a52f686 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x93b83df9 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x4bd0b4f3 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 0x297d0ebe devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x9270f509 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x08b50959 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x26265681 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x497895a2 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8b0aa8a6 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8ce3e3cd cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8d7c38f3 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x950ad8d6 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x3f870088 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x16c7bf5c devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2805c6d7 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2ae55b5f cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4c70d16b cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7e2667fa 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 0xb51079a1 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0298449 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xda0a52a3 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe7f073e8 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x730fb31d bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xac3408ce bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xeb9f2a11 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x8dadcf76 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x049b6617 iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c1cd93c iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1270cea8 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1376d132 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17e2c115 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bc94b62 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa2735500 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa74eab75 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbcdbabe9 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc6fd3921 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe80df19d cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf1554dd5 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf5a29937 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x033efdc4 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0b4e5a1b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x272f6142 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xe7489801 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05d78c38 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a3e91a0 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bf8b426 iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34bf664e iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b30adfe iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bd1ce9e iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f3e1e66 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x426d94b7 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a22296a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2939d23d devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x300a5230 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30ad89d2 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x318e03ae iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37270e6a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x413b85d8 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43c3d6e0 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45d84633 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45fc8ec6 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d29b575 iio_enum_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e5c6b99 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x534700b7 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5570f9ce iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56a7e7e8 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c086924 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fd2d228 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63030d4d iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64366c94 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65027276 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6734e0b9 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73fd1278 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x762e1f81 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7850bd20 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8498f9ff devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8726b18f iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8cb13f96 iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e9ef3ba iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99841420 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x999c2d5a iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a964281 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b32207b iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3a08b89 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad203bbe iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0853b47 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb11c76af iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6a3458c iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb94122d6 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb99d5988 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe85aa56 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbfb3acd0 iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2e9ae5e iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd140d3d5 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7c9ba96 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb0ed066 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf547f92 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfdc5f1a devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe142292d __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2ca130f iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8281616 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9ed21e6 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed1cb0e5 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc1185ec devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52ed54c5 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54d70bbc devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x559b1bd7 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d05837e iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60663b3e devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61297e4a iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69091648 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71c2fb45 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75bbb043 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75fb6010 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7cb3772d fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87c3d8db iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c90d1ce iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e3ab09c iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93687894 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93dad4be iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x963e88e0 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97d9d8d3 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3494da2 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3734a2d iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3eb15fb iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4cce485 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9803f3c iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7188fbf iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7bf545d iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbce94ac iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd50173e iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0621d92 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc82e0567 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd16e0c4 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1468c0c iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd479d5d1 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd5728a3 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xddc576d5 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde8c8710 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf9efe75 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4f8c96e iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5156f1e devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf87d293a iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf90f85b0 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff142e02 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1df7b928 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x217b8b33 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x36c988d1 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x53b9e938 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x76258ed2 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d700906 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x85ac0535 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x866b1e2a rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa19e202c rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xad40fb81 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbcea8a72 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfdd7dc3c rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf043bf89 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x4287e71d matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x582ef94d adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x00085fe1 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x03865c91 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0806119f rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0a921dbb rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x10e72bce rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x23b7a97c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6c5fb4c5 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6e3b6680 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90acdd5e rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xde717ee0 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe7bc9e33 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf3aa66cb rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x11f83243 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x4c91a09a matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x0ec32593 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f7af959 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x15d99db3 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2d13ac5d rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x309211d2 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4bd303eb rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5611d558 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x58dc932c rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6234e146 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x62941891 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8aac71bb rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbd240a07 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe0641e50 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe8e277d4 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4b7da788 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe522d6ea cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeedde8ad cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x24c7eef1 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc652f615 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3353b401 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x70a9a5fc cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0a6cebe7 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4343c19d tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x99810e6e tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xeeac2388 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x08bde6c5 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x140a97cf wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bd23342 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5a3abe48 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b2ea38c wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9432f45d wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9690bed6 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa2911e4 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb4639349 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcf29b871 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdb213fb5 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe3aac778 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x00e0d5f6 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x256c183a ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4c8da4c4 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5163fe9e ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x55e1c7b6 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5cbd233a ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa4104fe6 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa4b8a3ac ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe47d99bb ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x24a492a8 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2f9b69ea led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x90e67785 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9332c68b led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb7163503 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbc16d513 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcdcb5a2b led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd7a30ace led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2e13d7fd devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x46282095 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x546b8fe0 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc2082b4b led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfcf84430 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1aab3af7 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x267aa7f8 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x294f632c rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3df70846 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6b543f7b rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7afeb59e rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8300262d rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa0c35a63 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa4dc7ccf rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe686afa8 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf4306c9f rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf4eef9ac rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfca7316d rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7957c4f5 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x803dd7cf cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbe2c8694 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x105ce577 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1dfed2c5 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa4bd4d7b cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc5cca9b2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x234b0c4a tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8485cfe3 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfc14941d tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfc34c49b tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x048672a9 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f0d18f0 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ff2388b wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x875da178 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8ee6254f wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x90e132f5 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x93583815 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x96121bc4 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe615dbe4 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf766a1dc wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf81fc3e0 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfd00f525 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x042416a7 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x05d7abbb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b77e6d0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26e8aa85 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4e76ffdb ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7e89b6ea ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9413d533 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc3ea56d1 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeabd09de ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x20698cb4 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2b25bd27 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x304c6e46 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa157a748 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa857a10d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb672d655 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd2af5d07 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe5b4c8e6 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x0e1c8549 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4cfd6907 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x70d158a3 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9724340f led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x99c77884 devm_led_classdev_multicolor_unregister 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 0x03322987 __SCK__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04ad6805 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06f9f10e __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08566839 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x088cad0a __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ccaa2fd __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cfb30a6 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d667ea9 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0decbb15 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10dc5913 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1128276e __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16e6b203 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01ff9be1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0475d9ad __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06d309a2 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ac04b6b __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bbe1853 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1046779a __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1245c848 __SCK__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b49e793 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17fd3ade __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e6a8582 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20b4c149 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x254d885c __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2286eabe __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24b3fbdb __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x252b941e __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27765d8f __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2929cf3e __traceiter_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 0x2afbb876 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b434d48 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2d9fdbe3 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f371996 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34105370 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3668f8aa __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x366ab43e __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30fba567 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31464c6a __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37938087 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x393e2f35 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dcaa88c __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e562771 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x447055a8 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37587ade __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x390f985b __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39473c51 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b57b2e6 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3c570da2 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d07e2dc __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x41a39514 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x41f8fb51 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44a7ba55 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4af54a1a __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b80a724 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e40e7a2 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x529526e7 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x562dbe55 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56ea5913 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x57267bef __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59a985e1 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45d0cc2b __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ea0e0c9 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50ab52b4 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5423ec81 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5475022f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5575bb8c __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x569df61e __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b5e7bb7 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5be1a2fa __SCK__tp_func_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e53c837 __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61799794 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ea18212 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f77f749 __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x62e3647c __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x661f0539 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b63be23 __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bf89ade __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7001071d __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f42a93e __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72732435 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x755772be __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x75f24464 __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7bcf04b0 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc88b3b __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79ca9d44 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7eaa6d7d __SCK__tp_func_bcache_read_retry 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 0x8332c47f __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x871ed37c __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89765224 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8a22fb46 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90419105 __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91b68f50 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fccdb3 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84f0f14d __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8885dc8f __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89541a26 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89bb5f03 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c2ae503 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c5bcffe __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c617ea0 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9629f66c __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x974b14f7 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9aa42cb8 __tracepoint_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f37917f __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa21cace6 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa24ca40d __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7f65f19 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab12a610 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad21ab70 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad7f63f0 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb0d70568 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb199b7dc __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb228dcaf __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb095d536 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb72c6810 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5d0bca1 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb6656312 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb6c9c775 __SCK__tp_func_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912a29e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbaf07d10 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbd265ad8 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe563cfe __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf54884b __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc31e281c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf5b2043 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf7a0179 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc29a877d __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc31b16bc __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7111864 __tracepoint_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcce8ed24 __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd27b43d __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd7a858e __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc838047a __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc9140b19 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcadeb14a __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcc0227e1 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcdde1808 __traceiter_bcache_read_retry 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 0xd33e0e02 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd39699de __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd440ff31 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5932461 __traceiter_bcache_btree_insert_key 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 0xd9174dd8 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd93cabd5 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdaf6db9b __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7e0648b __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdafb8450 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb29372e __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde903370 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfa725cd __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe833f5a6 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb256100 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb80b59f __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xddcd758e __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde8bee0b __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0670083 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe37e7b57 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe407fba9 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe57c2b62 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5ff3214 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe77d7c0e __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe83cf572 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe97baf4d __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb5b4a43 __SCK__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec5ebae6 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xecd59c08 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef3e9bc3 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3a3e742 __traceiter_bcache_alloc_fail 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 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb8f6c86 __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfe03e443 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfef7d15e __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffaedb8a __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x005a442e dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x00ccfce4 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfdfd1be9 __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2a274933 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x186b66f3 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x19971f9e dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1d0c54ff 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 0x3d323c04 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x43bfe7b1 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x52a63456 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x66f8cba8 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53e60f2e dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e2a3e5d dm_bio_prison_free_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8ec5f25d dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b8e9b58 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa97d0742 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab6b8070 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97d5ccea dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa23e1f89 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa6ba03dc dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa87d66bf dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb3d7ad86 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaeaa29c8 dm_cell_quiesce_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 0xc35898d4 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc9dd3589 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbed2ef7a dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc3539377 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc690a82f dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd53265c8 dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe5a4e03a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec9b3800 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe3febca7 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe91eaef8 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xee658b1e dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf394109c dm_cell_unlock_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 0x4749e643 dm_bufio_client_create 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 @@ -13846,10 +13849,10 @@ 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-bufio 0xf8bb1547 dm_bufio_client_create 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 0x2abfb3bc 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 @@ -13859,32 +13862,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 0xd3ef4862 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf43b626e dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc106fe80 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8857707a dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xbfe7a298 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6fc9cd7a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x938a7f1c 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 0x0f9f4b7d dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x34f162e9 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 0x3ce0ad7b dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x499970ce dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5bd837f0 dm_rh_inc_pending 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 0x82638e6b dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x91ad62eb dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8921331e dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbcb5376d dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc6f68eb4 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 0xe7803c3a dm_rh_mark_nosync 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/dm-region-hash 0xfda2fd22 dm_rh_bio_to_region 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 @@ -13911,6 +13913,7 @@ 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 0x4bc9f27c 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 @@ -13953,65 +13956,64 @@ 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 -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe5b62ace dm_block_manager_create 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 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 0x0400d750 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0467771f cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1721c8be cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x23dfc62f cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26e9f9bf cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37102a2b cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x39fd73fc cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x46d6c333 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49363dea cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x559f244c cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x72966f51 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x768ea40b cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7763fd31 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7f1f37e9 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x064e43a7 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0d98df8c cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x116608a2 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x32ed0948 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44cd068d cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b88b48a cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x636227d7 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6cd2842e cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x79787d92 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7b28370c cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7c30d9ce cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x875e4cae cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8c7f1af6 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x92284f16 cec_transmit_done_ts EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa58a7c6a cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa9c89530 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa17217df cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb8f363dc cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc138d887 cec_notifier_cec_adap_unregister EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc6de5fbd cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xceffa18f cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe25dd94b cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8c465e8 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf6cbaef3 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfeed4d1f cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd2bcff93 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd700d48e cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf5339eca cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf65e900b cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf9543bb8 cec_received_msg_ts EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03a2ce59 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2153daa5 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00524052 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x036797a8 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x093418d4 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fc1605e smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1a07a43a smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x314241c3 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2f92a1a7 smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x35753eb4 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x375ec89c smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4cb7c1ed smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6146bf75 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4b594601 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d387a5e sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53455e32 sms_board_led_feedback EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77a6e4e0 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x866006df sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x951b6394 smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa858953b smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac97ab1a smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb39dbd01 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2062ed smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb652e873 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7cb0bd9 smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbce6ed66 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc068989e smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc4d89c52 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xed9c6583 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcfedcc59 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd3676201 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd3a943c0 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdcc4c5b6 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf28263e4 smscore_set_board_id 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 @@ -14029,301 +14031,301 @@ 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 0x03f784c0 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x127b23d4 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1335b6b5 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14d594ee __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1780476f __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x19a6d373 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ce22588 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x25591498 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x270d7f3a vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27183547 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x280293d1 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bba36fc vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bcb3332 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c3998d7 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x15df5c12 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27a617e5 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2918c8f7 vb2_core_expbuf 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 0x35a0d73d __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x35ba973c vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x39cf1cba vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x30ceff23 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3cdf467b vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x422ae045 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x423d695b __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 0x5ce730a9 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a778eee vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6cc53064 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x75abed6e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x78b9ddef vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f048d44 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83b792f5 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x84687fdd vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87197de5 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x962b4f66 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x990043df vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d49fd8a vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xae29a78f vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb61cb9b5 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb66f68ec __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb8d9912a vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0068889 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc29b7ad1 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x571ea089 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x610fbb95 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x629be585 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7e5ceaea vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8294734c vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x858549ac vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8dc07d93 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8e098239 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f30d8b5 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa14deb1a vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1f2b502 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xacff64db __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaf46476d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xafd5fc70 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0296456 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0e53b24 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb731aa39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb7756b4f vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb81c4dcd vb2_core_dqbuf 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 0xd2fb7fba vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd637215b __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8df3052 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde24cf3d vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0c0185b vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x39930102 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe5185ec5 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x6f06e324 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x49eaf679 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x041bf224 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ba07150 vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12b3795a vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x187aeb47 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18d2f0b1 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x24b53a5b vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x25a46260 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29883e46 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ce5a6e9 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3197c5d4 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37888f22 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37a7e29d vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3fe45251 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c5d07aa vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fb8fb1b vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d3cf6e6 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6de4daca vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8e687fa4 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x955efbb0 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d28965b vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9db30994 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4b90a59 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xada805e2 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb31547de vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb521f7f5 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca452000 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcbb5bebb vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd849b28d vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd89d005e vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbc24261 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9e667df vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb7d12e2 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf9526960 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfed946cb vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x45b1980f vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0d761294 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x568c9cfa dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x94eb2bc1 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa9d9cd92 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa4e09b24 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x75984bea gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xc2bfd3ae mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x2b4ec171 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xdf73a517 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb837b9e9 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x98b95574 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x30324cd4 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1f4fb295 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2e21f9ce max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x553eec0a max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5f21e8f5 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6a600306 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x751f8783 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x91eef141 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa474a7ed max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa9a74b8f max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf6fdd72 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdb4fc218 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe2544cc2 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf66918a0 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0650a008 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x065bc0fb media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0f42c94f media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1235472f media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x147c581e __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26ab5975 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29d80041 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b8690d3 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31e1df0c media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35df6bed media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b6e67e3 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4742cc0f media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a5387ce media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c08c77d media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4feb6b24 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54c69f79 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5655d0de __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c9d03ce media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5dcf6e05 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5fd80326 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x653b69b8 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x664f24fb media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66de701e media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6aa9a4c9 media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7353b95d media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73d0e5d3 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77e32eaf media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ab16117 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d02dff7 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85c81eae __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87b849d5 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8f44419a media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9059d373 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92cc9764 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9404a413 media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9754ef03 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa424de6a __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9870e63 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaccd889d media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfdffbde __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfe06e07 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc075cf7d media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd68d87dc media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8adeb8c media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd954621f media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb87a4cb media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdbcfec36 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xddac49ba media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf2e3dfb media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7a3b847 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcc6ebb03 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe522d9b0 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed9d9b2a vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xedf70d01 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf001555c __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1579289 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfcc8ca36 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x4fd5f399 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xd82712b0 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x3d77300d vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x1a78c5a3 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0427a1c4 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x054c85dc vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0961846a vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e17d54c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e30535d vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e36fcf7 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e95c3d0 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ed6ae02 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x242c3c1a vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ea91911 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x312aa447 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3b3346a6 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3e629633 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x413f281b vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x472364c5 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x67f4a53d _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7bcc2618 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x83448406 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x86ccb878 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ef2df2c vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9cd127cc vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ee8b2f7 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f649f34 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa3aa48ca vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb72e9ea4 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbaba4dd9 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd720f4c2 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdda5ea2e vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf2a7415 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe921ffe9 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xebb9acf4 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf14330e6 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf321d562 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfae1ca71 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x075171b0 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x38d63a7a dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6031d4a7 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x76205149 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x5e5652ec as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xfc9f522a cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x1039aa9b gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x49467e35 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x3c447a17 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x7ff7754f stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xde3b8bcf tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xd2aeecb8 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x80200fc9 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x180e0880 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x19d1bf72 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x232eac88 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2ed3fd6e max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3d514e65 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x533fb65d max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x85c50ee3 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a104790 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x945250bb max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9c86aa3e max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd61a87d8 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdf1be5b9 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xed532ec0 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x007e0d0d media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07cc1436 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07fe700c media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09c90649 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0adc9b74 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0fe75469 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1168cd1a media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1425ad6e media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x143da6b8 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b8a27a6 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24c7ae4f media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x264b6f4f media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x274c3d17 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x288df031 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d8d423d media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f14c45f media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c73d48e media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52367027 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53722ed9 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5483c3a8 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56e55ce4 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x58b26a8b media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60a50588 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63c5e655 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66203529 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71644f42 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7363b5d7 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c934bd8 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x820e2fe1 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x827cb1a8 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8411b46c media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x851cb2a2 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8d8c4030 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8dbcaf02 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ec5c0c1 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa07b407e __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa423fae8 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa77dbde9 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab9ed580 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf675cbd media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9384ed7 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbdf4169c __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc2c8961f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc750567a media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc899d341 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcbfe48ba media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2e9b026 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5e53902 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc5982b3 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0c40178 media_device_cleanup EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe710af1c media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb4b7707 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2d6853a media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa76b272 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfea462cc __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x9478deb2 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0643dfa1 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44896d1e mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5aa7b30c mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d22835a mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ebd7f17 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6c6f1a61 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e4e6ba6 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ff0e62c mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x71470715 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x765b0868 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8a6f52d2 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x934ffaf0 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c7244ba mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa68e76e5 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed53034b mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf019c30b mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1647e08 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf423148c mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5df9e6d mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0cfc9c87 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0ec1baeb saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x309fc9b8 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33dcea32 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41e6e59f saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x53f4445c saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67efdfe7 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7163fa91 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77210eeb saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb2159e5e saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb714d11d saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc22ed962 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc48cc59 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf7e8b6b saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd585f525 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6c78e7e saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6c899bf saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe46f778d saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee9d5393 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0834c332 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8fe34e8e mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa4521506 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa67ae1a6 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xfddf88c9 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8d1291d6 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9a79dff5 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x318861f4 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4164b677 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x771430c5 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa203759b si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xebb5b247 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03c35d91 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x08125b45 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x220bfeb7 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27e4d762 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e7ccb7e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe614ee55 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe647073d media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf6ba5595 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfb366e52 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5e1bb02d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15f27d6c mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x213a1ec2 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4e77c77a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51978e9c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51a97759 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51ce30e3 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a143c01 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6aadccf0 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80031b53 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8b7c56f8 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x97dc8fd1 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ca3c27a mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9efc4aad mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd78a867b mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb96599d mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdc6543ed mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe77401fb mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea004123 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfbd4d8d2 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x054fdfd5 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e924f88 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11950a3d saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3650cd17 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x49ea62fa saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d0a2f3f saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d88be60 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x787adcea saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d750b34 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9bfb4225 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc1acb06 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc6d6d6f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd252d22c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdbcc0be7 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xde3bf774 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe60cc591 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf06ec0d6 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf1feb152 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf86f21f7 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x242d4b67 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x352ea68d mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x41790343 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x69d0d995 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xacc45092 mccic_register +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x438ad021 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa1d53053 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x01c4676c si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2f00dc6b si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe19ef11f si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe3760431 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe85b65dc si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e1414d8 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1dfe0020 rc_keydown EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3fb9ae2c ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x484df164 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a18e43a rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7330f89a ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8168b697 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x81e2009f lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x84b78679 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98810bb1 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4cfc776 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb95906a9 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2fc1d417 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3d96beec rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42fe1703 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4482d120 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x472b7554 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f746569 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x60dd9f1a lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa9356d93 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac64db39 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3d60dbc ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb61018a6 ir_raw_event_handle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7406db8 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf547d4d8 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb65813c ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbbbc11bb devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca5e8a02 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda7c711f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea3b5322 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf1bbc49b ir_raw_event_store_edge EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x925ed9d4 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x85cbd6d4 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x312bd909 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf7220d73 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6f179028 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7a76830f tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4a8f25c3 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb5628d0b tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x241b524d tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x02fa5482 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa8c87ab1 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7e8488f2 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9bdd65a0 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x0eb80bf9 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xefc91796 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x717a73d8 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x85999c1f mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf8d39e07 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x1f3e8463 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x1779b145 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3a81cf5f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x456d7ba8 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x849f8215 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x146bedc4 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa27e84da tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xde0058aa tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe8a72848 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xb3ea119f simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09f1cd11 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a364a61 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0fcca8c8 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cd00e65 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20e7639e cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ad5a687 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2da28be3 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2fb004fd cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x317647b1 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5edf3f7e cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x618f482f cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63169edd cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x702de624 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa9cc91a4 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8dba992 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcdc7a5f9 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcfa84d2b is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe07ee6c6 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3f4425d cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfaaecd66 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5e20907d mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdc3ce97f mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0fdf9b01 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x17f6e78e em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ad9e2e1 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3550faa4 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x57f40685 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62f197ba em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0c8bab26 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1884887a cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2cb886da cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x306b816f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x351593de cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x362361af cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ba0a8c3 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x69a8e0e0 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x72a8440d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x74693a5a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8aa50de6 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d198932 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb46e2dc4 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb942b6f0 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc476bd70 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5e703ab cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdc139ee7 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe3929717 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6ef1f0e cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc8237ed cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x25029a3e mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x23b14cca mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2edfef8c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a51f9c8 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f3c8f71 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x436a3040 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a8c6e37 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ab2a31a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f205323 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x697d2fa5 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6b1022ec em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70ac434e em28xx_audio_setup 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 0x7ffeb993 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80c0dd23 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8fd1e118 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b3d43a9 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x91f53872 em28xx_write_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaaacdf3f em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae52b21f em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb787956b em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8b6daf2 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4599160 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc857717 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe15e255c em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb225d27 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf97c5f1c em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4d4cb901 __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x753e4916 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7690773f __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x813ed9d9 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x81803886 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99510d70 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa07feda9 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb5cf567a em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde164b4a em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3567ec5 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb88a43c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2e6f1e31 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5236b314 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x82b650e4 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x910a24af __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x99003561 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 @@ -14341,405 +14343,405 @@ 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 0x12941345 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x628796f5 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x64e51e39 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d2ef4f7 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x321a054b v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x44d3e69b v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0f414699 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2b215b0b v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x40dc8c26 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5f008aa7 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 0x64f0da35 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x734a6380 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc14c50d2 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdf83dee6 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf573bc17 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf84a2493 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xff465079 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x029a2570 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03e822b5 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07860f52 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e25b637 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1032b9f3 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x130f6ffe v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b9cc8c2 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d53d694 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e313263 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a2d9b3d v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x318c4ae0 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e237d06 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x417b37e6 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ba6fee3 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fcf95df v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5517f2b1 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x623b3199 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d1b6502 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x72654c75 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x61513db8 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6bc6479f v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7188312c v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7c1347fb v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x92098492 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa76f54c7 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcd36c231 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd2dfd9f6 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xeb530645 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06a0497b v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0870ac7e v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b7d5a2c v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f698f39 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x111effb4 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x246d43dd v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x302be7f7 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32db5d70 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3aee39ea v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44b48afb v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5330ea24 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x572a77cb v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5bb2bb3e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61e2dd08 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x643c9ca9 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6751bc85 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6abbdb12 v4l2_m2m_ioctl_create_bufs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x76c854cd v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c565b2f v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x81e1d163 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ccd5be5 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e591f8c v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96b22297 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x994364ac v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa394b474 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac532568 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf0bda20 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6c20bd2 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf1f99a9 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0d16807 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5ac8904 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x759d2f92 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x770b8f4e v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b9988e2 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bc61984 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e185ad1 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91bb013c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa35ec67a v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4088706 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6564993 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb79b3083 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba6607c0 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb6360eb v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf1b3b6b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf7f6faa v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfb7cef4 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1f9607d v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc293ece5 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc38476c1 v4l2_m2m_update_start_streaming_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbc3675a v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbe28b52 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd20cda9f v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb0d6074 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdbdb2ce1 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd2ab963 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdeba354d v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe870b34e v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebee185a v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed4c7ea5 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee630552 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xddae5d70 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde44a50e v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe422504a v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe597d054 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7c11feb v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9373741 v4l2_m2m_buf_remove EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x065155d4 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x22d9b034 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2f4f2ed8 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a1fc5bc videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x532348d3 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53ff0f72 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x54471959 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e680111 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e2cd626 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e527af4 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f610c35 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x977f97ec videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a87bc97 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d09cf93 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0a10534 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb13ce392 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3c43198 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb55abae1 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf01246d videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6112286 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec1932ed videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf92656ad videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf9d6a846 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa5e9a58 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x22d840b7 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x43b22f0f videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf39c2b53 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8db60f0 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd2d256c v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0459ca77 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09e36d31 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17f0b5e3 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a604db9 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1efc3b0a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x240ce944 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x333d44c5 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57f77852 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5de8a5f4 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78ef7b7f videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f8844b5 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86e3d068 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x88029901 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e01d3f4 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b78e68a videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8dcedce videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce3790f9 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd22ea04f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd70b286c videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0d74b71 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf668687d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7447522 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfbe9bc26 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe0398f6 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0cadb187 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 0x80884e7b videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x88ffb5a5 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5f5c5945 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x61df1503 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xac08e133 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02dadde6 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0498dd5c v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05198ee5 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05d2f074 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06202ec3 __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d4286cb v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x62c14f7f videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x87d394fe videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf33a9b0d videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2a72d6c9 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2deb2784 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9defab5b videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x057706dd v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0da5da93 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ec131ba __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14ace515 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x163acff3 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16a36c99 v4l2_subdev_get_fwnode_pad_1_to_1 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a52fa90 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a97baa1 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f727735 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2287aabc __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25a6b7d8 __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x305981ed v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32222461 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35100d68 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36c8a963 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3751cc23 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3941ee9d v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fa4f8b7 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fe15839 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4827fef7 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4cd87383 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e04d925 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c13506c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2afb8964 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2bce1b04 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30856db4 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x326ddda8 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32ced7ff v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33947e92 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3875eb1a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b20f847 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c9eff18 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x405b12e6 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4424bd17 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4441d63e v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x471bf402 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47e2e146 __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58064be8 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a96f3a3 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d1a7cb9 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f17bd5a v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61a2654e v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6391cfb7 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6589b992 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65ee5de0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55ec2b54 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a52fe20 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ddb6b83 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e6495ce video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61bbcb8c v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6543ec0c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cee9f33 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d0f8e15 v4l2_fh_init 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 0x6fd4e8e2 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x729eedbe v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75abed7c v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x766bade3 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b8181e9 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82352ce9 video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83b8e17f v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86a9526a __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8abe5ffa video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b698151 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8da853b7 video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f3bc203 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ab95304 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9aed2cd1 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b771eb8 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c59f39d v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e708f0c v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ee50353 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f24d9be __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6fe99ceb v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x703a1af0 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7664456d v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bec1078 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7da2f095 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x812488a9 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x840f838b v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x863d2fae v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x882160a2 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88c1ae4e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88cf2102 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88d24f02 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cd695e4 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e0079d4 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99fba2f5 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ac898f8 v4l2_i2c_new_subdev 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 0xa44e509b v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaabfd3db v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac5f282e __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacce89e6 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa29a1a1f v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2e0a3d2 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab6c130a v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacd4a0cf v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad2f8d19 v4l2_subdev_link_validate_default EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb15960f2 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb78042e3 __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8502799 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0d70445 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc74d8e30 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7547a17 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf0a3f72 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafbcc5e6 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd8bfc0a v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf052b5b __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf255c8b v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc37b1af3 v4l2_subdev_cleanup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcbda7e1c v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0523f5b v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd465ff5b __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xceea1258 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd49f45c4 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4e7d567 __video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda5e26df __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdee2f0cc v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6553a27 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9f3cfa0 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1bf4acd v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe628a47b v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe67198cb __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe74ce969 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe86b0798 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee4c2aaf v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeecc49a8 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf03e2cfa v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf08fee33 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf152d0ea v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe33a1718 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe48902e5 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe52442fd v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8dcb266 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea6d6bcf v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef0b9145 video_device_pipeline EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3969c47 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf35d9ee9 v4l2_g_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc9d1687 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcb011e6 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcdfd0bc v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5ace32eb pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x722327d8 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa93da2a8 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf76d6165 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb3589f2 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc651428 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfde9471c v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2740effe pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4a83ad4e pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5706e2cf pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01b2994a cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0a15e978 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1be73f8c wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e0eb140 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x216125f5 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2500fa38 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2d653c4d wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x33a302c7 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x346acdd6 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x41d00f5b wm8997_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54a462e1 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x55003361 arizona_set_irq_wake EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dffec0 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5dc0c71b arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x810866f2 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x66a0da6e wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6edc25b4 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77520c9a wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x80368b88 arizona_clk32k_enable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa58caafd wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa5cb9dba arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x896900e3 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8a0158a7 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa585bf7a arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xab6bede8 arizona_request_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb7654278 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb4e0b70f wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb6d3cf99 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6b46bb1 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe89ddf5e arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeae98352 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0b10b059 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x93f25cad atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2e249bb1 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x604055ca da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7f691ef8 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa899bd10 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc1ef79f2 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe3e8199a da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf81e16ac da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0999ab89 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x5cf75689 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x73f48a4c intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x96365363 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe037d2ff intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x3fd33104 intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x7493f5d2 intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xa9ee342c intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc93999eb wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd320d695 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd4fc1898 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeab6b122 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf7d32484 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xa9c5ed38 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xde350c0a atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x01ab0195 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5b15a7e2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x662ab236 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8975cee7 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb917c35c da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb91d5633 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc4377237 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1489f9d7 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x2bb90608 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x87d08875 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xa7299e29 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd7ecd908 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x51550a1e intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x92e4c823 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xdb9b72f0 intel_pmc_gcr_update EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5dddc02c kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6a1b4b1b kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x970ab4c4 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa5b0b1f0 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa826a1c7 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb23a7d34 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3df782f kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd4640495 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1a32212c lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xae756008 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd08646c1 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1a55fb7e lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3222b1e6 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc8ec00b6 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd5ddb2d3 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf23c209a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf42a65be lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf669d8ad lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x21906e72 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7b396eee lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdcc94e45 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x07a679d4 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x19be694a kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x68fea99a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6dee2017 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x796a4fd5 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7a11b4a9 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x977a2d6a kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe8440f2f kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4b5d9a59 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x589f8190 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb17f477b lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x216631d6 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x248b0289 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4c38965c lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x61796da0 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7379edc0 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb4411b2a lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe47d80ce lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2b633bec lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x778a008e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa693041a lp3943_update_bits EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e0709f7 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e0ad5b7 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7535188b cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d3214fb cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d3fc8bb cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8583254f cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x858ef90f cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d5652ff cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d5b8ebf cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaaaa3953 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaad74902 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaada9542 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7f1be37 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7fc6277 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6b63843 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6bbe403 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd10040c0 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdaffb019 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde634ff3 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde6e93b3 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe4d9319e cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9e2540e cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9ef884e cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11301adf cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x113dc69f cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x520507d3 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5208db93 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54686dca madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b5a4b38 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x698f2deb cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8541d64a cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x85e05a2a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x85ed866a cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98c6ad1f cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98cb715f cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaab43667 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaab9ea27 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb26141d7 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb26c9d97 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbafa9207 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6d54726 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6d89b66 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb346134 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd211b4c4 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdbf3b013 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdbfe6c53 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdf08a00f cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9812b6b cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe98cf72b cs47l85_16bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4c4a33b cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf4c97f7b cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf650ec0d cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfe2f4abf cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xffa4aaee madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2b8b1ee3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3984eb8b mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3fb14fd9 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x793ea0ab mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb0c096a7 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcf67880d mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03458145 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0d86c344 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x29613538 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3bb0ef88 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4683b665 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ffe4bb8 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75c77e0f pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8b760953 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbc2dfa5c pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc6f0d7c4 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0ab2331 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf379be78 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x07fe7930 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x20dcb7b3 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1dbb2557 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x576b4eca pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa5847b91 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbdb3c390 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xee26d873 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1545cdb cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf159809b cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3ac5baeb mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6e0afff6 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa7fbc7de mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb5f432b6 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf54e7996 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf9ddc34b mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1c93f6c9 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2b16c899 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3dd45e1f pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x538cc593 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x56bdf433 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6b78c622 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x700ac861 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8aaa802b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8bdc8ec2 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x924dae12 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7c4769d pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb94ee59e pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5012e819 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x726e47f5 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x669b86c3 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7a2464b0 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbac78a70 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbd2e0eab pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbecaba80 pcf50633_gpio_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8296bc6f devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe4deb561 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 0x0924ff78 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a239fd3 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14d36a21 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16be93b6 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ed44522 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21531911 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22a049a1 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26229bee si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x312b18ad si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31741961 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34f5a3fb si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fe91fad si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c958b71 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x800cec16 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8addf008 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90059331 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9616a176 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96f1e3ce si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a0bc310 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1cb044d si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa39db684 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8fefe5b si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb160d708 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb37eacab si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb79dd5df si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbb6f114 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb674b53 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcbc5a1c2 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4102e51 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6d442c0 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb5df402 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3899caf si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe78fa707 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeca983df si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2a9ef3ec sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45c3884a sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7f49053c sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb2fedf86 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf957eaee sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x71217f72 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x81ef8f4d am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb3a6b1e4 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe367982e am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x88369d6a ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x143ceb39 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x46a9cf08 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x525f741f alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x74dbaebd alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8509e911 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbf658101 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe5442711 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06845ded rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15957256 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1b194f68 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1fd3da7c rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ff8d1c1 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a28002e rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x567493f9 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x66c172ea rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6df5218a rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8dbd2147 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x929f26a9 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x973b030f rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97b55abc rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b136bba rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb436389e rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbe66eaab rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0fdf699 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2cb14d8 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd1335c96 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3ee0919 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe27251bc rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf62bb857 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf80dd164 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8ce2268 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x02f6ca26 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0659afe8 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3cbd73bb rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3e6666da rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x492dcecd rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87531925 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb3239c7a rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc7022b77 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xceb37056 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdb939e48 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0ee9e95 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe2be69aa rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf2b1366a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2fb319bf cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x34b1e640 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa9d24459 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcff66234 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22c96afc si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25cc9f65 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27791c3d si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f75b3eb si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f138adb si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41e9de61 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f1eff3d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53cb43d3 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a3b0365 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d1c1b96 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b1e0b38 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c12ad40 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7448e0e8 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x778ed4c9 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e4b0f2c si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b3c63a1 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ffa2a2a si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaebeda8f si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3ddd7d1 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2f0e898 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc57e2f5b si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9632125 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0fc3b96 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd26bc402 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9014ac4 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda577761 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfc88ee4 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5ff89c8 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7a9134b si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec47f263 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf3302575 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf360dbc8 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8766895 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfceea6a5 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x28cbd5c4 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56a6c6e6 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x73813f74 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x90090f2d sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdab05912 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3275f530 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa5587a02 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbcb30686 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd4a987fc am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x06d6a888 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0ff6e470 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1855d458 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4bc11add alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6627aac0 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6f868961 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x85f0e227 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbbb27471 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08afd803 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d7ffb0b rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15dd3699 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1c179a80 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x45cb57b4 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x473422f8 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c8aab9c rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x591bd9ba rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b9b0d8b rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x62b25ce5 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64b21ea3 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x74dfcd34 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7f3e6f8b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x807925f7 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9123eaef rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x949771fd rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9600776f rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa13ad554 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa84872d5 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb478a594 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2d6d60a rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc5f3f31c rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2a461d3 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe500d556 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x13954052 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x493390c4 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87657c33 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f813b16 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa01c7d46 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xadde5f5b rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb078b119 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb1028ff0 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb27fdada rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdc6aa876 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdfcda73d rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xecc201a3 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf1f10022 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x500effdc cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5f4aa9bd cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7540d600 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfe4f8c00 cb710_pci_update_config_reg 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 @@ -14753,64 +14755,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 0x3dad089c enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x68626fb8 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77faeaa2 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8c79ce23 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d1f6033 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb7263177 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb98ef60d enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbb644b9f enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x102b18d6 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x25a63f4b lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x30b8480a lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8b483954 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa70f5495 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbb492f18 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6c8279b lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xddf1994d lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x01f3f372 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x03794e2f mei_cldev_send_gsc_command -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x12014570 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1eb4e020 mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2241c8ca mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x299b2c19 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33878081 mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4ae95cc7 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x648d2e30 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x65bca759 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x731ac339 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76568954 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7c226f0b mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7e0d7c2f mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x80673dbf mei_cldev_dma_unmap -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8501612c mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x89b72929 mei_start +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x009858ff enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x05674815 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x906873ec enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbe02f158 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcc06ea75 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcdccdb0a enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe142a2f5 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xef6ea6ec enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x23d92c53 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7594690c lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x907efdbc lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe750cf00 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf74bf524 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf871ff4d lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfb79edf1 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xff90d683 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x02082d11 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x03b0b05d mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x05cea92c mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x16b49cea mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x174cc0ea mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1d92d51c mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x22128616 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x274442b9 mei_cldev_send_gsc_command +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28d4de3b mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2914e94b mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x294f77bc mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c26e152 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x53a0d408 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x59d6c045 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69967f70 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x740183e1 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x79eda249 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8669770e mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x86e3a87d mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x888ed1b6 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x903ad9d6 mei_cldev_recv_vtag EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x933ca222 mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9704347c mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x973e1f1f mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9762e902 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa3048de9 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa4bf248b mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa542ac6a mei_cl_all_disconnect -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa5adb8f3 mei_cldev_dma_map -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc488c6d1 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd4ac169c mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd6ffede1 mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd826cca0 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdb421872 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xddb3679c mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1817c00 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1fd2216 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe36113b3 mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xffbf9202 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x951912c6 mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9683b72d mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x98269918 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa29b23f1 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa30dc00d __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xba7b4d02 mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xca6bfddb mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xeb66f942 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf157abe1 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf680c138 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf762c6ce mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf8dcb8ae mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfb04b815 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd101246 mei_cldev_disable EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x051f202c mei_me_polling_thread -EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x39c6c00c mei_me_get_cfg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x4939cb0b mei_me_get_cfg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x6cec7532 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 0x930f3486 mei_me_dev_init EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x98a69b49 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x2da729e0 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 @@ -14834,15 +14836,15 @@ 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 0x0899dade uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2ad19e32 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8e77232e uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x066f5c20 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x84d6d24e uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xf89b6ab7 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 0x160c57d7 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 0x325a1c56 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 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags @@ -14850,670 +14852,669 @@ 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 0x77cc3b1e vmci_qpair_peekv 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 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 0xbf69c9db vmci_qpair_enquev 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 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdfb4e728 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0a1145e 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 0x0049bc63 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x005c37e0 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0566d1f4 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fc005cf sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10b1e27f sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14037fa1 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x171363bd sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1e3e215c sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e09ec8c sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3fd027a8 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4037c44b sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43192e89 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48e29229 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c3572a7 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f837807 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x50b8aceb sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x567fe783 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x577a142e sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x69c670e7 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f28647d sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x730c1307 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76a84615 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87aae50f sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bf35691 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f098125 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fc26652 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x927b2a36 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cfcb673 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4beabfc sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa68caf0b sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa87e9384 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa99bf60f sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb01c999a sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd76a6a1 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0d0fb05 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2166647 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5dd3145 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7f0f9aa sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdde7cd08 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5196203 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec54f47c sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xecc072e6 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0ab5c045 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x72b2ab5d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa1684868 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa6810c26 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad3d1d0d sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad42ed2b sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd9fbbe0e sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf49cca70 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf5b2163d sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0105f2fa most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1cc666e8 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x268c7823 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x2971e918 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x46e6c2a7 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x72ce38bf most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x77300bb9 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x871e6ab8 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x87b63d47 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa923f88e most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb2c9c52e most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcb8fe324 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd84f8292 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf2e8a4ff most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0b7e78a2 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x34575d4a cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc94978dc cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2bc3cfbe cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5591846e cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd83a0038 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xba04a939 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6de721b1 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7822ad9a cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xab6c9e1c cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc5be3fa4 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xe88eea64 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01a6da61 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0746febe __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b568800 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0be132a5 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dca5027 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x148793d3 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ad76f8f mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d15cfe1 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28b3a6dc mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b4347c6 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2bb7f455 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3980a9a9 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39dcfcfb mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f184b6e mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45b466f5 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x478852dd __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x094c2205 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0afd0cd9 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0be0ff61 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x103135b2 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1cd70f56 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x363e9f23 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3798a9eb sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x37d8386c sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3e3fdb9c sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4251f774 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45296b6c sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48581ba8 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d62f6f6 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52dc1ee5 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x586d9adf sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x634bd621 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71c249ff sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x73d98e93 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74f42bac sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7f526a0d sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x892ea7a1 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x90be73d7 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x925220f2 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f68af71 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0df1def sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadeb7aa4 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3d72d12 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1727bb4 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2c2dbcd sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc41c731b sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc48fde9d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcfb072bb sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd29e02c9 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd5a7bfad sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd5e916fd sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6cfd0e6 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8b82652 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda242b46 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda4863f9 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xddd61cdd sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2aa2851 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe8870931 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1fe84f80 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x43452ae8 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4f690112 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x530d0ed1 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5e45baa2 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x651f2589 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x865761a2 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8da158c1 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf70f3ec9 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/most/most_core 0x17d88334 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x18c6f4b7 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1b0af637 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x317bf84a most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x57ad6b67 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x79729ec4 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fd54be8 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x829f8170 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x86d7b72c most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xab83fd76 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb4ab2ced most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb979b8f8 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbdcecb76 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf7311bc9 most_get_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1aa47291 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd89372ef cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe7ba5707 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0bd70a75 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x867c8e23 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf82ec5f3 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x69e9a374 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0785c0b3 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x993e3063 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9f2e0317 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x445d50da hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x8c61214d hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x052414e2 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2d7704 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0eb85447 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f3aa03c mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c12082f mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x227c0411 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25409ecd mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c2ad88f __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ee34e39 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ff733ce mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41b96759 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x442bb0a9 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46da64b2 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b21bfe0 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d18b169 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e0e48ac put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4edcb2fe mtd_wunit_to_pairing_info EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5535d051 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57930556 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5aa4e64d deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b0e3681 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x668f3503 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x680b2bd8 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a21e0d6 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ecaf5be __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x760834ac mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d5655eb mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x830b18ef get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86609f99 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e2ae83f mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e5b9347 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x912f9eab mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96963df3 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99f58ade mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa588c537 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7563ad0 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7e480d6 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab1b774b put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad3382cf of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55b72dfc mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58743040 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x611a7895 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6234b823 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x677051eb mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c3b7d08 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6dd50a32 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77f12c7a mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7aa6f052 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c4b09a0 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x835c5ab5 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8befc0b6 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d0675f2 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f4e7019 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93b92c59 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97749e52 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ad137a9 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bc96663 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9cbb9fe6 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa42c65f0 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4dee131 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8a14ef7 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa907e4b7 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadf70c01 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb506bdbf mtd_ooblayout_set_databytes EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb868060e unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb3dbcbe kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd5df0e0 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc06c2489 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca5b457b get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd10e7f72 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda3c2502 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbe15c20 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbf8480f mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe220a7e3 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe57d3f58 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb640828 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb92c0e8 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xedfaa048 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef8cdd10 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd8e0c59 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39fd8ed7 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4af7cc00 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa3b90d4e del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc04ab90b add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf8578fb1 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x082286bd nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0eb678b8 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x12afe056 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x23a0e051 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29127283 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x351994d1 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x378fd3f2 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3fa43214 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x41738ea5 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x63b33313 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x65b3d04b mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7d84eaf4 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x816e083e nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84413680 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84576964 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8c97d04a nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6f2a468 mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc1360811 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd1703181 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd68b0c60 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd7f4da98 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd996b5aa nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe3578499 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe832537d nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf5231c7a nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1fcad349 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xd0847985 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xed858f52 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x066487ef nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f487a08 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb929df95 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc63d9206 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7869287 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc78d67b0 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xceb2c56e mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe68dfd21 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe75d6d03 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9299686 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb5e804e mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4336093 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6e2245c mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb285b31 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6a21808f deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6e1ec16c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x843eb11e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb5342783 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe5fa8334 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25b53431 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x28294c21 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x43339aae nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4f02d73c nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x51ee8404 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x535f9bcd nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5a5a903a nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cd99de5 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cdc1a8c nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7605159c nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8509a75a mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ac80cdc nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91ab5de1 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x99524571 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa48faebd nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa92679eb mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaf39d8c8 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb1e4ff66 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbc70c23e nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc3983af2 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc621d222 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd79d88b7 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe96ba3a9 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf5a31544 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfc0c848e mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x65ee7f3b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe886e6af onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x407f6874 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x03b83a3b nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0d0ff001 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x10dc7816 nand_read_data_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1c20b72f nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x23acffa0 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x27f4800a nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1452c9fe nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1cb64398 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x232d26eb nand_change_write_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a513bd4 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a92dc08 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3afc85e7 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3c34d30d nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x313c8c10 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x315396aa nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3431c6e7 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3c791830 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3ec08878 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x450a4a6b nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x535f7496 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x54e24b8e 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 0x89161440 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9cbaa592 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb53c1197 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbcdca063 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0b058c7 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5680e9d3 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x581a543d nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6c382e87 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79c42f08 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7d0f7201 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa3c43e4e nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc12a7d73 nand_ecc_choose_conf 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 0xd6279977 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdba921bb nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe919e7a9 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe9fb3337 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf95516d6 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff0a9fa7 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff30bfdd nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff530d5a nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff7e08a9 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff914bcc nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x96bcbfa6 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x6873b1ba spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x8ab6c939 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x045f7eb9 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f3dbb29 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xea2e9e85 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xea6daa6a nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9d5b2be nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xcb9df344 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x35f7a3cf spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x706f38be spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2263399c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2298569d ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x308dce29 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x35a0717b ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4f9804bb ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x54af98e5 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5bfdf530 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5fa7ea5e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4aa50487 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x531c33b7 ubi_leb_map EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f60fea3 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7184ac74 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x796213d9 ubi_leb_read EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8decd8d1 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f6d7f8f ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf2a56f1 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb55b9fde ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbfb8665a ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf133e3a8 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8e4e890c ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa9cc41c3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9e3db39 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd927c278 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf05114f1 ubi_get_volume_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf6e6ff65 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa39121c ubi_open_volume EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x203a16d6 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x25e301a9 devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x44e82af6 mux_control_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4bc48e71 mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x659cd443 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2fa353f7 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x488591dd devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6939c456 mux_chip_unregister EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9665440f mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb7e4fa57 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc3ddaff2 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd355ca41 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xddeee855 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe2893d7b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe9c31162 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xec746c5e mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf5d843cb mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7ef22e0e mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8736ce2b mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x98741ffe mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x98bbe427 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9e0bdb5f mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa56d9a89 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb9fa719a mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdbed2147 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdd880b9a devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdff2f555 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xed7c5304 mux_control_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x784e8677 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe2d457f9 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2bdb76ea register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x47513c83 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x63c82e2d alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8d21af44 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd7b409f2 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd7fb1743 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x36adad7e unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x51091078 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5ecc3c0c alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa1801e62 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x05885f68 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6e076743 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd56516d7 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0a661bf1 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8dc12144 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x99d706c8 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa973efe1 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb149acea free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd686d64a unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x063f497a register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5406b9c7 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x61978c7e free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbadf45a2 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0009d170 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x04f128d0 can_rx_offload_queue_tail EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17bd9f83 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3196a024 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b4c1cf4 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ddd3613 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3de151ac can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f3eb6b9 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c717b3a unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54fea581 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x142ba949 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b9af170 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1bd3df07 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c73127b can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1efef1e0 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f21f6e0 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36d73062 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d382db2 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x506f5626 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x507d6990 can_get_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x641514f1 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e4a956c can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x738dcc5e can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74475ff9 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fb399f5 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85f2c808 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b320fee alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d4f0dfb free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9de67e08 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8b2cd1a can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab66dc48 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb438ca4f can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbfea37cf alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc332149b can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfb38ea4 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd038e5d5 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdeda6c29 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec8013a5 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0f21fd6 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x678dabfd can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c8a85ce can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89931913 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8a927880 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9086d55c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99bbc7d9 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d7e4d31 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1f99c92 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad9b16ac can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb56938fe can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbed7b44e can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcaf43f78 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd3e51292 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda314da6 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe45f3e18 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xee3ea405 safe_candev_priv EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf317f37a can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9b6913d can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfefd9f2e register_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x08f152d6 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1ad26e2e m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x23df62ff m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2643f9ba m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4813599b m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x481a48f1 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8b031296 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd4093b27 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x24e276c9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf35aa0ef register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf6b5d7ec can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfae8542a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0e69e73e m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x16776b4b m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x21f12a96 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5def900a m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8778a603 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb432941a m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd2ae6bae m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf23c64db m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0708ee6d alloc_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7377519c register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x90fd5e8f unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb2d49d8d alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5ca1394f lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x1619cad9 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xbe54da9f rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0886a32c rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x08f34c33 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x21215a18 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x316a6448 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x38c133a0 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5216e8ff rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6994b716 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x78c1730f rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9e924ff9 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xef1149eb rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf4c43862 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfac41061 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0a50cb0d fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4e515181 fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5433dfda fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8244a7a1 fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x911b32bb fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x952b33b2 fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcdc887f8 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdac4c8be fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdee581bd fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdee939f3 fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe79e73ca fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa0acbfa0 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe881908a i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x02edb836 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x084676fa ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5888ae6c ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd795e516 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe3c87265 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0052a4a0 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fa5999 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0802ea4c mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x084b5712 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x091df100 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0efbcad3 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f684e5d mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1292a181 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x148a2b4b mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f66fbd mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2e8bb3 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bb78936 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f26b7ad mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b2a798 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22bbd6ff mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x266d086f mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27a9b013 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x284c532f mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x288ceb4f mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ec411bd mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3177f82d mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b513ad mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365c18b0 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x378f7531 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3871311d mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d2871f mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38e7b01d mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3abd44ec mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b5f5e1c mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d88297 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x465c83bd mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47bd3094 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a136058 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ae86a89 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50417556 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51807942 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54c4d16f mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x565bb895 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ef7f77f mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5faca19b mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62283db0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6343e7b2 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f343d6 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b19996 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad1beef mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b2bc109 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b6d29aa mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74ce1dcd mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x799e1851 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef116e4 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fcb6528 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd6d66d mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdeee53 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8420aab5 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86db4bf3 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0ecc1d mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8daeca89 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dd440e3 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8def22ef mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92ac379a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f9ca0e mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97bd67bb __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x995081e4 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a55bd8b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a72ee3d mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c5210dd mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e425228 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0594155 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa44117b4 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa605adf2 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6129f04 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab8d3644 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba6db63 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac6910b4 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf1ec0d5 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf753b85 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaff94e0f mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1af83c6 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1ec291b mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3061ef9 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb995f9a6 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf713c19 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0a71c05 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc13279d9 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc19752f1 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1b86221 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a8f613 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc535e26f mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5a5e3a7 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6cc22de mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7ff03bb mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8384f0c mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc94aaa9c mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca249756 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7fa611 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd837c34 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdef34c9 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce437e3c mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd16eedb3 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd580bcdb mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd94095e8 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb5753cd mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc45abc2 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0bc52da mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67c18ed mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe78837a9 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe917bc23 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed4b801b mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf17ad759 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1bdacb1 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf27737a2 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32ba0f8 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33b01fa mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf46d860a __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf534455b mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9e57d76 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa697832 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbfd9e81 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8ec3fc mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed2858a mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff728ebb mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5bb07c2e free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x94855761 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd4d2e8bd register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x934669a1 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x0159a674 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x435d08f4 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x09cdea09 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1eb25297 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x20d15772 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x222ca759 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x743b24f0 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8b743f0a rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9a89015f rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9f26a167 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc6b51d88 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xda26a658 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe5ed59dc rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xead41d73 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x39c595af fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x481750b8 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5b150618 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6651011b fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7644ac39 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7a8cb4e3 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x9bba49c7 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa8894b7b fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc014ad5d fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdd4a1533 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf243b315 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb9371be6 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xd0e6779a i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb33214cd ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc7bd026e ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd62c7c62 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe1614b06 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf037c11b ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02d3d65d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03446a52 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03bb3262 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05e8e0ab mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0889f1d4 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09360136 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cc34a28 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122a368f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15159e24 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1552a0b9 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1798473a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b814a4 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1adea4f5 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b259f12 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d25b166 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ff6b13e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2152d6e8 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2483dc06 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ca6e11 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28cdd758 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b7f79c3 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x336b8f71 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3600d446 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bc7f572 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bd3d9fb mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ccdae8f mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cdd517f mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fff9276 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4147ded0 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x415f2a2c mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4547f6f4 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48630d1d mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c3e054d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4885a6 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2b7aed mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x507737a6 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513a6166 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56bbbc26 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56c36712 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58563987 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5938967e mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5976cc38 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d9b0a5a mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f2784d1 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66ac8361 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d745df9 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fbc0b43 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x701d51ef __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7071558b mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x710e5cd5 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72fa0e74 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x730f0e2c mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x753f1db3 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ab128ca mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac8a4c6 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2d9024 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81377ec6 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81b69951 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8573cc2c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86690603 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86ba4901 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88db84e4 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96e9eb05 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x980cb8e4 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9900e178 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d2212f mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99d92137 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a4ee00e mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b0327ac mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cb673e1 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacaf6a39 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacde20df mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad2bbad6 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafc56d8f mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb05f3d72 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1515e6e mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3ec6538 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46670df mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4ae2532 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb735f80f mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7788f4e mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0a0f48 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb218bd4 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce22ea1 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf12db18 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc04472e9 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc09637fd mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0c96a25 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc11fd340 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc266ad1f mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc46b59a8 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc51f2f22 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ffa462 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc808c9e5 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8540dc7 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9a3650b mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca286aa2 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca419c21 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5ab817 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd78df18c mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9cc3cfb mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda14dd25 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd0f9a89 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2ba45e mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde328ab1 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfa96e35 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe23fcfbb mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe816d7a0 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8e9e1ac mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94f14ce mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebc9d9e9 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeccaf31e mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed1b8907 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf058f9de mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e355d8 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf550017f mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa75c5da mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfafc18a8 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb402db4 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe86a4c1 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8f14b5 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00186dea mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015e3efc mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01ed4fbf mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0664fc5f mlx5_db_free 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 0x138debea mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17173201 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2317ca65 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2680fee5 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d90ad5 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd83c71 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e5358e6 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31f6ae5e mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x360a4017 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de0479b mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42020056 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44312484 mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x483a9c95 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48c51e53 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d4e91a1 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x543f6296 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x584e3878 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59fe4016 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff6e013 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61e27b70 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bb2b022 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f02dbef mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fba9caf mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71cb42d1 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e4bcdc mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75726583 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x760db928 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8029a169 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b3cc34 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09c68d74 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cb3ee48 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1780b766 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b016612 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca04fcf mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x216fb930 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x218a1c15 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b979d25 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31f23fca mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33eddce8 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee397ea mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b2b35c mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42dc7ca4 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x464808e0 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f67e8c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x491edf78 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e6ef496 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edb5c1c mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x510976fd mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5681f006 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57d364e6 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629a2f36 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e6ff29a mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7097b1c9 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x721ece7f mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x757d4f30 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b83b5ea mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa462c5 mlx5_core_query_sq_state 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 0x835df5c1 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x876541ba mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7db8f7 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x907fc38e mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9171e43d mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95caab4d mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965bbb5d mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c023b6e mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0cba3a1 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1fdff5d mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa50f2fd6 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa60605e6 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8654987 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa928556b mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab24fe6d mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf7b1077 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb01ca6c0 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3307a1c mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba328865 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb8e9cbe mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc00c25b7 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc12f0ef4 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc51eafaa mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5a461f6 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64aa8b3 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf049362 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd43066f4 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b03dbc mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4e72564 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd33325d mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4093781 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe41ec7d3 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ae9814 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff59084 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf039556d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf66883b9 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75f3675 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcdca2f8 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x08c856a2 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x35e8a49f ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7b0255a5 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa9b39ad8 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x39246cb1 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e20b42f mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec07fc4 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98c7678c mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b742335 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d83e6c3 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39bfc93 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d5cae4 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d13eac mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70be17c mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa72036d6 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacaa6487 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6aa548 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xade8df78 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae613b66 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb17d2a01 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb30afb3d mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7f19f30 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb96adf6b mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba4c2c27 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdccc7e8 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc248df5f mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc838bfcb mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda5b0090 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde8fc1c7 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3b42de2 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5c6da7f mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe74b075d mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c3c025 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed9b1d03 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf152ae0e mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ce74b0 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2f4b827 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf936204b mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc965690 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffe94dfe mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x14800b83 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x439a029e ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa84a82ab ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xbe0276d6 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xaeb7d740 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 0x0ac80ef9 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11ebe373 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1210e27b ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12b8d973 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13ce5442 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18779a21 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ba194dc ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cd5636b ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e8ff494 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40a62341 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4836a863 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56f0a978 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c4c6814 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ceaa104 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f5cdd50 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85b33ddf ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89315b93 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91321f5e ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96ecad95 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x993052f3 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e3b881d ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6514696 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabc3ac92 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6b2475b ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba59aa49 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbca08ce4 ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc23f2a6e __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdce68bd ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd17bba84 ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd41526f7 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4793e39 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6b136f8 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe71c8357 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8e468d8 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf65e1c1d ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf867667a ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9159062 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcf610b4 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x354e2214 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x392eebb7 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03174bd4 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bf50186 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c88cf0e __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3058c9ff ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30efe73a ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32c15941 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39e97916 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45a90196 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46c06e48 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47457616 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x565a32d4 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57f2491a ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66eb9b20 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bb3be25 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cb2444c ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73e93c99 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76d6e981 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3f1bbf __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b00727d ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c905e23 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83e50660 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x866e9205 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x874750bb ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b03a7fb ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8dd28367 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x964dc305 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98db16d6 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c2165d9 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac5cd6cf ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc01f40d2 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccecbe17 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcee0fea8 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9ee7c1d ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe87cc991 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea18da6c ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefa5f8db ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf35ad898 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9d52909 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1f33a156 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x266f37a7 stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x80d8c711 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x805fb818 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 0xc75bdc38 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf585efac stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfd318066 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0b5328d4 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbef8f033 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe274c680 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf3c12f18 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf6b7b57d stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x002181ea w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4b0bba2d w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x644373ac w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb156722d w5100_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0x9ff35101 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2064f417 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3a8114b9 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb6a68cb3 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc8981520 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdc118848 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macsec 0x0d5b03a1 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x57bc619d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x682b18f0 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7f61bbb0 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xba4d3990 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x4494d20b mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6bca2701 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x90efe115 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x4a70635b alt_tse_pcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x21c334f2 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3ef2b4d7 xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa1ee6c6f xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb4d716c7 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xce0a2d64 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd297bb62 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0e9d9bc0 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fe37861 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xad58b240 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc464157e stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcdf956ce stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa7fe7605 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb1035a8f w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb312139f w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbcc2557d w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x32c256ef geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2bf5d6b2 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3e4d3439 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x508b2733 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd1eaf7fe ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe27658a8 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x721b89c6 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0cce29d9 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x28c6134d macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe129d14f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf219dc13 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xdb661e79 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x1e59c741 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9303c91a net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x9e1b4bb8 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0a8e14b4 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x16d9f4bc xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa199d068 xpcs_get_interfaces EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbd8cab80 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xda001f5f xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf31321c4 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x052b2e8e __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24e879c5 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33339167 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3759a478 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3cee56f6 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4bd49c02 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c7e75b4 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ee8cb8a bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63f6cbd1 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a265e87 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6aa4dd88 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b89e67a bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82298522 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8ce82bb4 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a603cfb bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa874e5e2 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab209395 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb24a19d7 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbaadf977 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb02c20e bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf16f552 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc525ffe0 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8ad81fa __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd64c72ce bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6dc2082 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda5b3be3 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdcd3020f bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd76fc10 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea4f0974 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed24f52b bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee561005 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf027b17d bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf33c853a bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5c71fe6 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x0b063ad4 bcm_ptp_probe -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x249f3dfc bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb3a5a8ee xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xce4db3fe xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdc3a35dc xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x053eb6fe bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16665268 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1fd45293 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x263df1f2 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2a266406 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3067892d bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x323d42cb bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x347a9288 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46216b2b bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54c2fbdc bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b2a12f7 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d5caed4 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7250db14 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7548dc25 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x761c9209 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7621dc71 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b1b9d5a bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x932c400e bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9c2e751d bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9fb608d8 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0909154 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb4e19631 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5c4c7fd bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb81f780c bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb1447ec bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccc3250f __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd535ccf1 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb2b3406 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd55ccc7 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe71a471d bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9600a6b bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0fe80bf bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf152c38e bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7eba524 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x2f3c460b bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x806baee9 bcm_ptp_probe EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x028d42c9 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x006419e6 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 0x120d02ef phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x140baa19 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 0x20cc59e2 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x39333c75 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4278d56a phylink_expects_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43774330 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4ac10440 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x47576afa phylink_connect_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 @@ -15521,17 +15522,19 @@ 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 0x67cc1977 phylink_generic_validate EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7a8d8803 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7def920a phylink_fwnode_phy_connect 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 0x8981167a phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x90e30b6f phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8b247285 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94592c80 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95ea06a1 phylink_ethtool_ksettings_set EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy 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 0xcb193ab7 phylink_mii_c22_pcs_an_restart 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 @@ -15539,827 +15542,826 @@ 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/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xfef0e5af phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/tap 0x2760276a tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x691291bb tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x6c385129 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x89941157 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x9377b49d tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xbb83cbba tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xc52341da tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xe210cd67 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xf35b8f12 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x195ab9b9 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa183500d usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbf67af44 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc949cb35 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe1ca6dac usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xecc049f3 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf0536640 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x12e17170 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15845304 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x19fd8aea cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2741805f cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x462f2e0f cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x80b511fe cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8a036490 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8fff2832 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95752f36 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa800b1dc cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe095a18 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x91e6abcc rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x46fe51f8 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x54899a9a rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa5adba56 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa861ff17 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb2f857cf rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcd6dbf9f generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00e44ec8 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x076806cf usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d65982e usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13d05d08 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23800446 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27c177e7 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x284d92da usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28ca9eb2 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x358e3055 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a29414d usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x410dac6b usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41344dc7 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51de9d16 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8044fb11 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x869729f3 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e4250d2 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa73fe983 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9421241 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9c5978a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb49e6e25 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf697480 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc217ab56 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc309cef8 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3cfadca usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb5ba65f usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda0c04ba usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda2e2729 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd985b67 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde843616 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfa007e0 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6f00d7e usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf748356e usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf75c630c usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfab2e2a8 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x10c4fcbc vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc150b77c vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc3c2b70a vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xfc8ad245 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1303c421 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10129ff1 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21d28438 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59078411 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1181721 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4ff62c9 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/tap 0x2a9ce0a6 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x36836c29 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x389598b2 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x7f82104a tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x806a910d tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xab9c442f tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xd9c7f4d8 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xe449df7d tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xfe02af65 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e21e605 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6e458643 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x746e24da usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x76315705 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7bd7aa54 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb433a044 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xeb3f67b7 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0fdd576f cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29122d57 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2f5df567 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x62a6fe71 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa3e0ed1d cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xae140523 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb55e85f9 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc75eb1f9 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2a487c3 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf4c94302 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf65d10d6 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x64185ba7 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0be90fdd rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2d310de1 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x317dafdf rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa06714b4 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa313085b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf807dbca rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0254fc0d usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05ddaecf usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b77fe21 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b9cf35c usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x103a92d6 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21c31649 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x286015c3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28a190f8 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e2d27fd usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34b7773e usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5194b489 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51aec1f3 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x674926ef usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e7153a7 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7584d853 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75f81d31 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79a4f84b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f8597c3 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8da6e698 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93414de4 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9611798d usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9cf9a8ec usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2d2d3c3 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa88499f8 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5fef985 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba508571 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd1556fa usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfe453ed usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9db130d usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd683424b usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdbbbd02b usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe53af48d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7e9b6bd usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe94eae9 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5f5eb0b0 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6b0a1939 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x78f32f1a vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa0bd768c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xd3013850 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03912dd8 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a993a64 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54165ed2 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bfdd1f4 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc57406f il_mac_tx_last_beacon 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 0x0b824010 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x12f4387c p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a8fe58f p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4aa4ee5a p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd9aa6041 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf0aabdfa p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf62adbb9 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfa7866ac p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfc6ff8ef p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0c09a75d lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x119f784f lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x18f969d4 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1fb8be18 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39a5f03a lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c716532 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40199172 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x700e166d lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x800c0132 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e4f3c02 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaca08a50 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaf1e09e5 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb0a892c4 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb9b4186d lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc6d5d385 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe6925b95 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x137f7bf6 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2732eff6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c4f20c5 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x39c56455 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x80d57a3a p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcd525e8a p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdab00dd7 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xddd99c41 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfa6dd484 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1d82d57b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24f35f4a lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3174498c lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c4d46d6 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x55ad78cf lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x678d269d lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6b4aab95 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6bc55535 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8cb165a1 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x934b64b3 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x950f163d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x98f79ecb lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc9243bf9 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xde0f1862 lbs_start_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0368f324 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1249a3c8 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x247a1874 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x481065f7 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x56d477f9 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6241daa0 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xae8a7b5f lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbda88612 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf6c4c9a5 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfcd044d5 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x583a5983 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x588aabf5 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5fdf9892 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6fca5a15 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x807d7607 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x97b6c301 lbtf_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x02d0881b mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12c66447 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13596859 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1b59ba9d mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f64d40d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28a4cdd3 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29b3f1f8 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a7f99e6 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3edcfb0e mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f011518 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44b51525 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7a5777a4 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x865f93f1 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dcbd671 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa31832a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb6fb8de mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc63a6e89 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc88fc0e7 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc8da5a0b mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd1de3e81 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe2aa1afd lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xee8e69a0 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0179ff7b mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0265b4fc mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x06c0d4f6 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1688fd4b mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1fecc74b mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x21bba8cb mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x22e813a3 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x40c7c21f mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x517020d3 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x54164a1e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x549b3f50 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58f2f0c6 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b298f06 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6725caa5 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d3ce05a mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93003f71 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x96f9d50d mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad45e04b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb869b616 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb88d513d mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbe52b23a mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc57acb41 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd252c789 mwifiex_multi_chan_resync EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd54ad655 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde50a3dd mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf1f16acb mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfb33a352 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0224af99 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02efde68 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03f1dd85 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0526ed0f mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07b737fd __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bc424b8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f9a1def mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10acd819 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x137c7ff9 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ae7326 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf5264968 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x009190fd mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0102c8f1 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05f83248 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06a8db2a mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c68c94b mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0dcb63c5 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14bd09f2 mt76_token_release EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19bb4e21 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c4d3c4e mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x189b8e48 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b23e1d5 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ca13666 mt76_register_debugfs_fops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2049a571 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20871016 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x212b2498 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22c667bf __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22e03fd9 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b4f4483 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2df8494a mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ff8dcc9 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31fa73fc mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3352be60 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36962357 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ca5d6c9 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d75bb49 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3de64166 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45846ddc mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47587e57 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48e169fd mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4dedbf62 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f5ff889 mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51d09a26 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54829af6 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54dfe108 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5556cfab mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x561a3e8a mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57fb744c mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a0b7fea mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ac571e8 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67023224 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c309be4 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73774501 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x772b0bcd mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x778f6e20 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d680a08 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8094a249 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x815813bd __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81837848 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x818378e5 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84c70824 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87d860c1 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8882113c mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b68a300 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fbcc2f6 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96851d05 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ccd166f mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ed6f1fb mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa109b529 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4231d06 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5980ab4 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa66e9cf9 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8bdd48c mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0ac4f41 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1a60e37 mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1bc77dd mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1d03cd8 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb416af5f mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb600be81 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x213dac03 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21bdf599 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26c1331a mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26cec7bf mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d7ae0a3 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e7ce172 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3542d683 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38224e63 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ce99445 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d3b27ff mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e1c8a93 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x422ebf90 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4417d183 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x449f9205 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c047229 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d26b596 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c4a7fbb mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5cbf0d33 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e42965d mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f2c9894 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f75b61b mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60a90ca8 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67914ab3 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x680214ce __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a6285e5 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f467450 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x723cda82 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7336de2c mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7486385d mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7509baac mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75b5147a __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8461ea27 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x866506e1 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c2b0b15 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8da66778 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x904bfc8b mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9651a2ea __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x990cd48f mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99bc9aae mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c958be1 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9cab04f1 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d699a79 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0d97876 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa44a0a4c mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8688dff mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9c00976 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xacf85afa mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaeeac64b mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2bc6bbf __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9974e81 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9cc5ced mt76_register_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb74d366 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc029701 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc05d9cca mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbca9f5e0 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbeba72fa mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0a7b05e ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc43b0184 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4fd14d3 mt76_update_survey_active_time EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7b1bb2f mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcab0d3b1 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcacae786 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcff3560c __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd32d5d0b mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd595cd25 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb502ec3 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe25ab161 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3660808 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd7e20dc mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf81a1f5 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfa386a4 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd060f351 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1195d93 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd200b5c2 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd33a86a8 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6049801 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9a3f838 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9a50053 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb6389f8 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd6ce0a0 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0d5acf9 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3e9a116 mt76_tx_check_agg_ssn EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe421f922 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe428b590 mt76_tx_status_skb_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe95fe7b3 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9716a7e __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf168dd2e mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3f2ce8f __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf71539cf mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf787e1b7 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03e33cea mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05ef2048 mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06b5b156 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c583390 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10ccf338 mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18379e14 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x187f9200 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x197e73eb mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b1eec34 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1eed910a mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x22ade90f __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23015006 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2382cc00 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x292a0061 mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a7fef40 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b4b8ea5 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cc928a8 mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f43f903 mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34bf73dd mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39f7e7c3 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4416b082 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47a8c0ab mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49226f6a mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494647d9 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52403573 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53c0dfd5 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5db89597 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6375d83b mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69965939 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6baa6d4b mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72a9f6cc mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72d01979 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73b034b5 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x750aa79a mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7bd9d08f mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7da836cd mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80bbe02c mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81ccceea mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x840646f5 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84e3c94d mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85c40ef1 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f86f9c8 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe75a69ee mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe78f1e9d mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0952e57 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf14b280c mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8d8541c mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeeeb500 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06cdb136 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07d6453f mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1184a158 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11ff0207 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x134538fc mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x151a2960 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1684f8f8 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x180c9334 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18a33e9c mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18b91857 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ba8099e mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fdb506c mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2546d92a mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2619eb78 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26731414 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x295881ef mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2bcd7abf __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d005bff mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x317badf2 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x343345a4 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35e25da8 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36c04ced mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37b6861f mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3998fec5 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39c35ce5 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c99e2c8 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44b9a511 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45280e86 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45db3595 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47de0f26 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48888afd mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c0be0d2 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4ee30e9b mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x508b8c6d mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5320f4b5 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5343531a mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6249313f mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62fc32ee mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a11e6ba mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6afbe7a6 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c80644d mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ea8f631 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x766b97cd mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x782b663e mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c12e53c mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fc0e6a2 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82eca513 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x839f79eb mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8429f867 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x89d73d2f mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ba8c0ca mt76_connac_get_he_phy_cap 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 0x90fd2649 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9172d380 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9321b452 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x996dbc56 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9acf3db6 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9edb2723 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f8f063a mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2659066 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae3a85e0 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3a32d34 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4920063 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb722f45d mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7b66f14 mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb99e8576 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9a1280b mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc318172 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd680e2c mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc521c49f mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6d14fd6 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6938b5d mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda24bf95 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdcb686ea mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd6080b8 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdeae01f0 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe1b9a3b1 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea85e355 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2d9d501 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf55246cb mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa2f7200 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc4cf1bd mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfeb65832 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfee10707 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x07d97f39 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1795363c mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2101de02 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x281fb62e mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x34c5be06 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3f4e83cd mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4167096d mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x446754da mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6bcc0f8a mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x81a476a2 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa00f5831 mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa0cf9ad7 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa396a035 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb520fa7b mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd125d251 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xfb104b97 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x093b2b9a mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x226e7c41 __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x32924219 ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3cedbf7a mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4682de85 mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5a24e37c mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5bd8885f __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5cb1c8e6 ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x71a1dd10 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7b5ea926 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d8a5599 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa16dd57e mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc2992341 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc649641f mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0cdcf1fa mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18107342 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18e97c0a mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c49467c mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ea6ecaf mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ef8fb9f mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20930451 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2412f6eb mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x24fb3642 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b24d902 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ac4e4d6 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3e70b62d __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e37c4f8 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64fccd87 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b03d118 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8093859e mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8da939bd mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e399e87 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa1a81076 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xada04af0 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb681bab mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc43966f3 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcd403dfb mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd9f9167 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1a29421 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeefd5439 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf29261ff mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf45e8cc9 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xd3233b43 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9858d985 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a52add2 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9deca403 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e4b8eb2 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5a00339 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa74b69c7 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xabfd12fc mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0518b49 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc118eab5 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc48cb12a mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6339dd9 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc63c87f6 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6e22ce1 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc73663a3 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2a2f287 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb563a68 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xebfc0804 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee1cf798 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1189efc mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf62badc5 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb59638e mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfde40a4a mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe7bbf7d mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x38e5a83d mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x456048fd mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4631f6ed mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x578b52aa mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6f5728ec mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x877ccb4a mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8fd0b5bd mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9573e518 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x97ee20b7 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa0c0150e mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa93f2238 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaa027ecd mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd2da4518 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd683f07a mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdb32260c mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf26df97b mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1335b4bd mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x15e80178 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x219c75c4 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x55adabd7 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x55c206dc mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5b88e50e ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7e2d774f __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x862c17ec mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9c93b0d7 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xac477ad4 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb453252b mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe647e0ce mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf23690e1 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf69f0ea0 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0799efca mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a84c308 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0ca0974b mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x147226c5 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15dc184f mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1eb4b8ce mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x28ed4122 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4252df87 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x475563d4 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5dd6c94b mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x627116e6 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6de92b00 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6f57fd63 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7a3f571f mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x964e0353 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa408704c mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaa3d75b8 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae5f9559 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xafe710cb mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb3099dca mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe992a0a mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4994efb mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4f31769 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdf142a66 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe33d8a39 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb5fffb3 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf8e73d05 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf99d5abe __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xab849121 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 0x782aebf4 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x85c29860 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcd5e8a59 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd6f39d8b mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2404b556 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2e350bef mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x364c9c3e mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6037e8c1 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8056bc35 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xae4e2caf mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe5092c0a mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x052714b6 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08809d8e mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08c999e7 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09a494c3 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a9e0efd mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c449133 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x11b79f69 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13f48fd0 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x175a6463 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b085273 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1de577f2 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3161da14 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39e6c761 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a205220 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x451205f2 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45f4bbb6 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48603660 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b0031c3 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d3aa833 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4de77772 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5267d89c mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56451def mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58dedaaa mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x38ea922e mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x399e72c4 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe5e3f254 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf1733509 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x61b7660d mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x62716913 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x95ce01fd mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xde5c0896 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xed81b176 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf1f4bb24 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf6be8db7 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x041a6824 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0edd76ae mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x141f0fa2 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x165412ed mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1870d278 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bad8ddd mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d458f6c mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x234d2fa6 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23ee5ceb mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24d43ea3 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28f5e6c3 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c1266d6 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2df44fe0 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f931cf4 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x300959a3 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x338e7c84 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3502770a mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d254245 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e1c6b9f mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4231d7b7 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42873563 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4eba7652 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f2c6bd8 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f787d22 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52883485 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5833d31d 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 0x5bf1bbcd mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ce2c197 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e7daf6f mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6632be48 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c9ae7e6 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73acd98a mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d70a50b mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61ea20cf mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64022e5b mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x647ceb9b mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6626b077 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d13b24e mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e77cb0b mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fe16d5d mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70a5ad0e mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75226060 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75b53013 mt76x02_tx 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 0x76aa68a1 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78d83cb6 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fb823e7 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x802876dd mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82b48889 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8960953e mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89a80bc5 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x904eaf3d mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x916962f6 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7750a1fb mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7a97cb72 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x837688a3 mt76x02_sta_ps 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 0x9877ca8e mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9acf9bf4 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e86d01f mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e91e976 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa496d8ec mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4a22168 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8027224 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa1d29f4 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x940c4e18 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b4f4c6d mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d74d6fd mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa134f5eb mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa213a40a mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8bfd26a mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa4d9739 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab17d108 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab7bf933 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabf2ec5b mt76x02_remove_hdr_pad 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 0xae170af2 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb75e2d24 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb81b03a0 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba1a4c7d mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfa6165b mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1417bdf mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc28b7d35 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4028444 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc505ca56 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7f6e2b0 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd1e203c mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfb6ea82 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd301962d mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd42d7216 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4d5f312 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5d7e76c mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5e1dfa0 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8ff8987 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee280a37 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf447b890 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4226dc9a mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x66907ad3 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7a9c9557 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7c8a1733 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x84c283ff mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8e2c7592 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa3555216 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf6a2be11 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x03143a64 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x170a80a7 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x24220b41 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2b3eacb0 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3f690c20 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x574b22d4 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x641d3703 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x670ea621 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c7e8ffd mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9aefd5dc mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa2f7ac15 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa5f977b0 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd4a1b349 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdba47408 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xebbff2f9 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xef9164b0 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf88d8b31 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc958f1a mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe96ce45 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfed191a9 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x05b56530 mt7921_check_offload_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x105e422c mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1e2999f2 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1e4fb8fe mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2452c4a3 mt7921_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x36e883d4 mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3c848852 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4f082328 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5062f7fa mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5e402ae3 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x60d58136 __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x69b3074c mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7cc50feb mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x895c0082 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8cf4fd6e mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x90d5e78a mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbfef2c39 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc04edd1d mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc46dced8 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc57594a3 mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcff279f8 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd41c729e mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdb15f37a mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf9bb3156 mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1322607e host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2277b794 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2ea8e47b wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4e0ed7ec chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4e5b32f8 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x525115fe wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7c3f1b0f wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x03f3e697 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x185b4720 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6795d82 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6b1cac5 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb931abcd mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb243bac mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcaf9fab7 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0e61703 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8113dfa mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeabc4ae9 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeda9ae76 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1ac9593 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4e3c385 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7eaae9a mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8e15c77 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8f7c432 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbc34e96 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe945ab7 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x19065c17 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4169bb83 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x49737a1e mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x53f91dbd mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x56198969 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x73940f32 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x83c01663 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfd37d21a mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0be196f6 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11b8396d mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11cf3701 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1bcf649e mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37ccf9af mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x385b10f2 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3e231677 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x54054f0b mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60d9387a mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6181e0f1 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63e8d0b3 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x79767b65 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x82ecc570 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8ab3f65e mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb5a637d9 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcff7fbc8 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd0cc7073 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd37983b1 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe34362df mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf9f06525 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x16929e25 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1b092b24 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1b430ca0 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1f59d9f2 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2976206d mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2de0b953 mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x444bec0a __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4598eb46 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6bc3fb8f mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6e92bdac mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8029cf38 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8a3cc931 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x90c0c8e6 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x91c384fe mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x948e09e6 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9f4d3fa6 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa2b42d1c mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa50980f6 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xba76c356 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbcc0252b mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc01cfae5 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd00461a1 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xddb21bb6 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe0418a96 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2e75bc36 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x301d3f8d chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x32000624 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3b1a4687 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x58614652 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8caac10c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9ffaba1e host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0fe77d58 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 0xbc03d357 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc76bbe82 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xca9604aa qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd196206b qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f84bf2f rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11feba76 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a4de3f8 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b149a8a rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25b3bfb9 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f868c21 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ff36183 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3566f270 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35f53347 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3880541e rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c608897 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4326093a rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48eec752 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x518adbcf rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52da1400 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c3d2c1e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6258f03f rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x78e06535 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7adcdba2 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80850aa8 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80ec5a8f rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85cb2ddd rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9187675f rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9275c53a rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92ae96b0 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9bc39bfa rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa225e86c rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3027145 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac8ec1ce rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadcac4cd rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb83eafc5 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf9acb66 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0e6ff08 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd31f2ea5 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd68266bc rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd95e80ef rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde6644e8 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe3fbbb23 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea038ad0 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xecdfade2 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xefaa6769 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf362ae30 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9220b85 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdf40643 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1aee42ed rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f5c2f86 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x34414cef qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4410cf48 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x445d16ad qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5ea656ff qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7cdced99 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03191f9e rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08dee626 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a61bc4b rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f4baaad rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f73870e rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x243b4e27 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a23140d rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c9caf69 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3cdb4acf rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45c33bf8 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x463b8038 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x472fee51 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49267b16 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f2163d3 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x512b9eca rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f24c9e8 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60f31bca rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ebd3ca5 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7465ef3e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cab89e9 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x813acc28 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82dc6fd3 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a4e6333 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9862269c rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb39f004b rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb52859fc rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd472812 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5082246 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc784ae22 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc256d1c rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcff5da88 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd544297e rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6f1c9dd rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbcbebab rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd243c74 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde7b89d2 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1289fe1 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9ba31de rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeaa1227a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb9bf7fa rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeedbe825 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2895084 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7952218 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfbcb5148 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c332950 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x16df9aa0 rt2800mmio_stop_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x37ff9b8a rt2800mmio_init_queues EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3f0878f2 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x42b503b3 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x460c1551 rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51c069b8 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54b0875c rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d53be15 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d2c41d1 rt2800mmio_queue_init EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6fa74e65 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x717beb3a rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x81bcb387 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6fd2d1c1 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7ae6a746 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7d5b5a13 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f2896da rt2800mmio_toggle_irq EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xadeef23f rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb35d325c rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbc4b7e4e rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc16ec8b5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1c19a6a rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf10edfdf rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd712584 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0611f979 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1374f067 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ccbb886 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20559584 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2328b888 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f9f2c25 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x357ac97a rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3781ed1e rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38c4ddb2 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4030dffa rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40dc453d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47cc7227 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c8017dd rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55a62874 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x626b7b1e rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63623ac8 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x698de843 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x703b4bb7 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x779cc07b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78a828b9 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7db1bf75 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83b68beb rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a07d925 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a567304 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bc9e027 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x903107ff rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91238410 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9198df03 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93deac0e rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x972cb3ee rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98e4fbaa rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ab3b033 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e014ce2 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa09a3065 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa60e04b5 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6c667cb rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab5aeea4 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac00c7cf rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac01dc5e rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf7bcd50 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4221360 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4f7cf27 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8f5a6f7 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf214692 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdcd08968 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb96ccb8 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef5fe1d1 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2a58ded7 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x386ac616 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x67b46383 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6efd5af4 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfd9e218c rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x118f5d25 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x122eac05 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb8fee5ae rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x24160a92 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x50291a82 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5115c104 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5671d759 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6df52edf rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x75af3189 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x815bdfbe rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x83f8814e rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa356d02f rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa8ffb936 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9cbfa6b rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaf3c3a75 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd9323247 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe462f00a rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf42cd09e rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfb6f9335 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19bc4add rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26280d56 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42f2218c dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5818d17 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06849990 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07ef3001 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c68811e rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13722d47 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x38cdf8f4 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa9d9a031 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbfd8a61d rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc38bf969 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd8f4eb4d rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe07912d5 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf3e6eb86 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01f8883c rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07438f59 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0748da18 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07d7262e rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0977ef2c rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c700697 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1dce0884 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bb089bf rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31db8470 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33eae64b rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50e3aea3 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52b0a608 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x539fa80b rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53fa8b2e rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55da788d rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5671c50a rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57f38c90 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5feac3be rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63aa17d1 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a604440 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b637d42 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b66d46e rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ba54c83 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f659c25 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x776ab521 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81265fb3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89aeaa4b rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92b1be63 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa094febf rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa3737948 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa373ec15 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba0f8756 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd13b21c rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbf3217b4 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd014b698 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde344a37 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe19d2608 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2ae87ee rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe43863d3 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe47477f5 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe53e3083 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8128ed2 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xecf4bef8 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed42a62a rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf572edf2 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa4d11fc rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe1e2442 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x330a0822 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7d9a5a0d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd1a7d365 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe11e03ab rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf65da403 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x10023229 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf14c5d17 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf6939731 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x092bd832 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1767084a rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2f4a9685 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x50718da1 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59c1ecd7 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x615130de rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6886e1df rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f1bed74 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x92bdc555 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb0d8faf4 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc75aa2b5 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0674a3a rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd6f10a87 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe28e2899 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe7c35121 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf468c500 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b5dba57 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6478ed0e dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb41f410b dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7254a75 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0cc2a219 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11e830a1 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13f8660b rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21c618cf rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26f55f58 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29fc3804 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 0x407124b7 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x408a7edd rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x45c2d7b9 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x640463cc rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d35b7eb rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x725f6d03 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73b0c8b9 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4300adf2 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49da31aa rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4fe6a8b6 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52e71e44 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x531ed148 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f95ae81 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65cbb1c3 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x71bd43c9 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a097aa8 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 0xa5e88fb1 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7c9b51b rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb565da28 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb58777b9 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9625472 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfcb42b7 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc433ed14 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd88c7230 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2d65a7e rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe739d780 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe8c9b3e1 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf9a317b0 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa859e89 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x032e9caa rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07ce55f0 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0938b659 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7e0f48 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fc5e7a0 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9f7dc9f2 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa846e9c5 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9b78c1d rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc367c45 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc501f98b rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc93d5a05 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1c2782a rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2b99455 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde206e9f rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00a2e578 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06474bcf read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a4c805a rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x102a7303 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1febab6e rtl_is_special_data EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 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 0x3778e892 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e15738a rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ab0240e rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30d43689 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32a77fc6 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x390d1e71 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42f53fef rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46f5ee22 rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a0825a7 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ed2dff5 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b3e5651 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ca73b30 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x687cd7df rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72ca1efe rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79778594 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a2eb99e rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x804c45aa rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81c4367a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8da888bc rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94231dee rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e2d6458 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ec63141 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7eb437a2 rtl_init_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b048ad5 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0095c2b rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc65ab60d rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc68b61c6 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8e94e4f rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9f8443a rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdafb4493 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb296440 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc10bf8a rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0f0d51b rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa45a7921 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae62bda0 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb131050f rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb976ae77 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb00b34e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9ecb34b rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc4483c0 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe29fd78a rtl_ips_nic_on EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xace8bc55 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc9a14c8c rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9d26de15 rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf193841e rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf1ed997a rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfeff9e2f rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x61b6a985 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x931944b6 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeb83b4c8 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf7826a15 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2047ebf6 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x400db67e wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9fd39024 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0512dc9c wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdc35bb27 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe7fa9759 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xee3443d4 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf7ceff77 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x05507ad8 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x186233b9 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6b9fd468 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfd88d09e cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2588dd11 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x307655ca wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x86707b56 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00d0a89f wlcore_event_fw_logger EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x070bd2b0 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0989593e wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ad512e6 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10584353 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x113962ad wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1187eaf4 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1626222c wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c0dcfc9 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13098d84 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e40e825 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e569ee9 wl1271_acx_pm_config EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24126886 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e3ae75e wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4140682b wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47c55038 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dc8920a wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x512fb744 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d17bdd4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6582f0cb wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66862e8c wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cc7728f wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x780bf68f wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d5250f1 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e9821ea wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25bea279 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x283dc4b1 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2eea0c58 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3384e7d0 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38efe529 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4acbfc2a wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e5a429f wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50799f43 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x562a43ea wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5714ddcf wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5939b1c2 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e822c78 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e34c0bb wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6fee4ac6 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71603730 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72568da7 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7594a8a9 wlcore_set_scan_chan_params EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x869e97f9 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b298e37 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b7ee275 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x906c281b wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x949616e1 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a359718 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bb8560f wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e09c7d3 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2a42c19 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9e373a2 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe55314e wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca9c6d9b wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xceda2abc wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xddba1f67 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf97cfbf wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb125344 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec12cc23 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0243423 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf21d9710 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe97bdb4 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfff41ef4 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x111e87e3 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b17cba4 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x903b3957 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92047b72 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x925e7e32 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99644788 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa03c0be2 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa15bfe33 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa94e85be wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2624749 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb53dc664 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc13518ad wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4803b5f wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd85cd02c wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9cda41c wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc6442bd wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4835a68 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec181c8a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf24640c1 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf87c2afb wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb430cee wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff71a098 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff8f311d wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x3bc4dd1a nfc_mei_phy_free EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9c06891b mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xad8265ae nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x218b42bc nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xab882788 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe3348343 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe35658fd nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1e1843e2 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5b578942 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x765a5ecb pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc4bd233b pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd79edec8 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xbe3f57cb nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x19563073 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1a7f0c2e nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5404ab1e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfd77d267 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6104f7b7 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x99100874 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xabe5018f pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc18a3461 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcb0a2960 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcb1d6f97 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcd500cea pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe5fd98e8 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf7e3e16f pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x637fe4f8 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6e4f6f3c st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8e0803a1 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8ee0e0c st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbe28f7b7 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc8ed36e3 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcbac477c st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd206fdcb st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x234de487 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9c14e890 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe1579237 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x03e3e736 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1dcacc31 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2b84ef26 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4216ff65 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x561b52b5 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7ae52181 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa4c7db0a st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa5b40772 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x06c031bb st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x74097c18 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xdcdb80dd st95hf_spi_recv_response EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x16f38932 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x51dafdc2 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x551c9f2a 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 0xa7d2a139 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xaf01261e ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5d876994 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe42ad702 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xff37d4d2 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xa5ddfed6 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xdafaa636 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 @@ -16369,109 +16371,109 @@ 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 0x82789d01 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x88800e72 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 0xb361ebbc nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xa6b3417a 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 0xcfddcab1 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 0x02f49b9f nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04b82c54 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0cb798fe nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e815fff nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1206202e nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b62c046 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2693a933 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d25d7d1 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ec69f74 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ee4fd33 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x368dce1a nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37139bf5 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xfa9fe505 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03bce488 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a588b7a nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x110a2312 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13ca2eb5 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e458138 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e8e058b nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25b745ee nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2afcf5be nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b7f430b nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e41beea nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33167f9d nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36979be8 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3714151c nvme_unquiesce_io_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e3b4ffc nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x436749c7 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f19c658 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3feaab33 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4026bdd1 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41ff2d80 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43a6814d nvme_setup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ba3b391 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50dd85e9 nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x560093a2 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a0728b7 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c0dfa2c nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d934c9b nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5382c596 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5671f019 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56e02305 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x575dfca7 nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66a5da90 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x700090fd nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x73976701 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77470244 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7776285e nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x791a726c nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a3cf3b2 nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b8fefb4 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fa16f5a nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fb5b2e0 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66a97dbf nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x681c4fc0 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69b5f885 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d30ead5 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x712fccdd nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x746d3c2c nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79609535 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a3216be nvme_cancel_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81c0cc29 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82255ee3 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x838c1d38 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87115643 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8740c41c nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b4db87f nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fc7be79 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9509e0ba nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99bc481e nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d74cdca nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e1d2d37 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9eafd4a5 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9eb68f2b nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaab3734b nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaca11c23 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xace4c87f nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafa674af nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb22f952c nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb979fcd5 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5b82930 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc757b9b5 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcdc79910 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcfc3e977 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x853360b0 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8acbd8fe nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x904ddfc3 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92cca37b nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94a7dc11 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97bbf47d __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f4cb946 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa8aeff20 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb841356c nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbbb237f7 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfb67c92 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc032b798 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2ab9926 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc333c44f nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcca7a15d nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd067a17d nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd23aa927 nvme_cancel_admin_tagset 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 0xd736dc0e nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde3398c1 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea7a57a8 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef4dbe30 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefd6df2b __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2c2d9cd9 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9bd8af8 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde17bd98 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2edf1a1 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7918471 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1df8d1d nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf4a0b8f2 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf5307ff3 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x08d86827 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x09201c78 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x26bd3d6f nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x422d6df1 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7c0ec5d9 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x842faae6 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa3c1d1e0 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcd0557a9 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcd44cf41 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe13e8ce8 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf076dcc1 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf7748635 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa3ab2f1 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x783ae2b1 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7f5a0037 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a3aacd5 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9a978fe9 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbbfd94b2 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xff7322e5 nvmf_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x1d47595b 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 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 0xf92a8761 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x154502fd nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x19897b79 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0f675287 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x120583f5 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2232960c nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2e18f134 nvmet_req_alloc_sgls EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x42aa6f18 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4417723a nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x46d8a0d5 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x63ced310 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85b941ea nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc0c5784e nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcb7580bc nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcdc56371 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe6d70f95 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x608455ff nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8bd2de58 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9314d1a0 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9f972db4 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xacf68795 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc2133bd0 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd0adf0cb 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 0x331bf894 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 0x6ca2c232 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 @@ -16479,90 +16481,90 @@ 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 0xfde2d0a5 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7f2000a5 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x805475f1 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb02fd11e mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x92af383d cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xa6c4464f cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x981b01c0 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x07028410 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x377920ff mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x8dd3ce7e mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x5bf8f6a8 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc0e97c37 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 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 0x3a77aee2 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/chrome/wilco_ec/wilco_ec 0xd59d0a56 wilco_ec_mailbox -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x013ed540 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x091e6544 __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11f1a3bf ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x172ed0b0 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x201d7205 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22b13e6d ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22c21d27 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x234f3336 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x24a0e86a ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x32ad9da1 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3cf82eae ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x465e9be5 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4d5ff338 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5bd79781 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x688eec38 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x706988fc __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x78aa6846 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x81f2329a ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x88664ba6 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8bebcc46 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9823c95d ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9ea0310a ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbc28e883 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe7f3e47 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x06d5f584 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1371aa15 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15b12068 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x188d17e8 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1e17c6c6 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x253d03e5 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3103f1da __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3df5227d ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x40a4839b ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x508ef9bd ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x54897a5a ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x58b0a69d ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x61c9b5d8 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x645653ff ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7359d154 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x80bbddc6 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x83c590db ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x83d699c3 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x853e7eee ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x97894667 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa0b9efde ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac185913 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb169d989 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb35c9438 ssam_request_sync_submit EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc32f3a9d ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4bb4052 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd583be82 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd8a458f3 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8c6c042 ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeac1939f ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xec10d22a ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf3ca831a ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x18080511 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc81a4703 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd7812b6a ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd9068df2 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd9ab4aed ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe5163c59 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe649b0e6 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7ab60ec ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeb4236d5 __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 0xcf3b38cc 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 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x97abb651 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xda6c8471 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb74f5ffa asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xcb4496a8 asus_wmi_register_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 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x388a68ed dell_smbios_call_filter EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x6e4c02b8 dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xa578f932 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x8fc8a5b0 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x93552943 dell_smbios_call_filter 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 0xc7cf306f dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier 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 0xe583db73 fw_attributes_class_get +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x25b9fd78 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 0x0ac20802 intel_pmt_dev_create -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x1a5f8ce9 intel_pmt_dev_destroy -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x78ae6300 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x7298adab intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xb63d4512 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xd4b5fa60 intel_pmt_dev_destroy 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 0x58a8261f isst_if_mbox_cmd_invalid -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x723e2c86 isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x80686f2d isst_if_cdev_register 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 0xcb805b2a isst_if_get_pci_dev 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/speed_select_if/isst_if_common 0xf4d5e2f1 isst_if_cdev_register 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 EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata @@ -16585,1014 +16587,1018 @@ 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 0x17b0f8ca wmi_get_event_data -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x52db4138 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x5d6b1c5b set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x366f621a wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x46d434b0 wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x69e4a453 wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda6d5983 set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x52e535f2 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x80458e06 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x96e93128 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x04e7bea9 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x445eb8b0 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb699de13 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x5a423ded rapl_add_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x74b53389 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xacb26019 rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0b7207c3 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4a4baab4 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa42b711d mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x374adb1b wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5884985c wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x76f3b223 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7d018105 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe145524f wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe52497a1 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc6167a74 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x2ab4b55e bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd75ec532 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xff6409ab bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x02b34283 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5f1cc126 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd5ae300f pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x193577b9 rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x94bbc8d3 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x94d1a8f2 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6d2ab2a1 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x925a662b mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa590f0eb mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x288c5b53 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b2a1797 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x63512c52 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6a94dd57 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbd2630fe wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc57ab849 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x9b78dcea wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa3d56489 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xdc0138c4 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 0x03dc539d cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0454be4a cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11c31c7b cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12235342 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14409997 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17d936e9 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a338bc3 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a402afa cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23823d8c cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c4ecba6 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31ddf5b4 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3426c9db cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c9b9a1d cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46117131 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4bad5f99 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x535b724a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x579d5b61 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64552938 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66037081 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c0989e0 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b7aa521 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x091f27dd cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0aed802d cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10cba398 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11af3b5c cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11c312ef cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14ca508d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d741dfc cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29b06e59 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cc93fea cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3790b11e cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42ed995d cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50403347 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x517444c3 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x519c1800 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x596c8ad5 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x604ddc92 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6091193d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70a98c3a cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ba71271 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c06c10b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d3fc73f cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ed8e86f cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f73e516 cxgbi_get_conn_stats EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80c09f2e cxgbi_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8cd08f65 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8da87071 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93471638 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94b91405 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9bf76b71 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa692f1ec cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab9bcba1 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0cafae7 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb23a3e92 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3598595 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb38eb9c3 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb428aed7 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb648f71c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb71bb05e cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7523832 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9e4526e cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcf79b2e cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9b5ffbb cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce844c6e cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8e9e220 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd2d79f6 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebd5fe44 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83f2786b cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c4ba486 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ef24981 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabdced52 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb263c081 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc242b237 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc75abed9 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8d720b7 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc9ef0d0 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf2ae7b9 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6e56caf cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf261f8c cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfa6cb61 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe229ab42 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe627c50d cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8f748fb cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9607ae6 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeadc0ba3 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb749168 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec5dee22 cxgbi_sock_rcv_peer_close EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb501871 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x091f49f6 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x100b8c7e fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x226c90d1 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x41378e7c fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4aa09b7b fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5bb5d5ab fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66a7a9da fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x733799da fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7dcba98f fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c2003df fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x94dc3b1a fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaea35615 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x01b9f612 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03c387f5 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x080586ae fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x23595ded fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2d72c7ff fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x34daf8c2 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59d60e9e fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5be12652 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x629d47e9 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64f46012 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x86fae0bd fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a599fa7 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a73751f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa85b3a05 fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb165f04 fcoe_get_wwn EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdc78427c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xebec5399 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd6483bd6 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xed871702 fcoe_libfc_config EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf75a2d66 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x4b47d077 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7e0648ad fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x14b8c7cc iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x283da288 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x449db109 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7214af48 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x72b8be4c iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcd8e3905 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcfcc5a25 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2b551c33 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x9a9a9fea fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3d52705f iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x63cf536c iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x71973502 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa84fc697 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbffda9e3 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf19c0628 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf978c2f3 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b39d1fe iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0db527a9 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e4d5bda iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10798dec iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11cfe50a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01266f23 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01fb0632 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03dd95a5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x041f0b6a iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0846a12a iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f4626b3 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11f3a69e iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12075836 iscsi_session_remove EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13ee3aca iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15ca69d8 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ac288b0 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x220273d8 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x245b3676 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26b5abbe iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31eb354f iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37d30737 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c49d692 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27c70857 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2997efe4 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34e2fc31 iscsi_host_set_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47e6ef84 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a02a756 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cf271a1 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5011a2ff iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54bbe1f3 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x556da3ab iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f567ce7 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61c20ead iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66babc8a iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bcd0871 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e5aa2a2 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41703e54 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53c56e91 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54d4fca8 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x581cac93 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a056bff iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6219d9f9 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62eac14b iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63dcfb70 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64fec79e iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a538db1 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b540f5b iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x700e0d62 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x713d0690 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x727e7e4c iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x736baa4b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x764376e3 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76ea69a7 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82f93c76 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84202f6f iscsi_conn_queue_xmit EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8deeaa23 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90e1171e iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x925b428c __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97cedd5c iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7d0c0ae iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb087d072 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb700d745 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2ad9448 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6edd602 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7bbfc88 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce7891c8 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf7988aa iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd12971aa iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd175880f iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd55d3fec iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3a93e0d iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8f0a784 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x915c30f1 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9625f2bb iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0c0ac46 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa13f5d9f iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3092ef0 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaccf3054 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafb121ba __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcca4f613 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd30f9ef1 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4c9063e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbf729b5 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1269754 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8600133 iscsi_session_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf442e7d9 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4701dad iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5c03f7f iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9c915a0 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb0bd901 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbb77a0b iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff3f5f72 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0339eb68 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07046d75 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c26043f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37968f8d iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c6d4169 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ef32ee7 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f46c8b3 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55365c52 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7cf13e66 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x922e4a50 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97a67d54 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f5f35bf iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa281952d iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb8e8a8f9 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2fc2d03 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5cc9e93 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5c46506 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05eee220 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0da67392 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ed5be00 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1cb815ba sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1edac487 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f205942 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42e2e646 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x474886da sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x51ae6f85 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53313814 sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c6d49eb sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8298652e sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8766a764 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa134276c sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae66a0c1 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb216e304 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5472e05 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7bf7efc sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9adfbca sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba526c71 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc1700b2e sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc430f93c sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xccda5a83 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcdab2fd3 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0df037e sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1129448 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2920979 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3b48bd6 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde4e117b sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2e76595 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe71ad19a sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7638c7f sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe789ea80 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9ca2add sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf3b87f8e sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd92e400 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x6644a402 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08190b4e iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x083b4654 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee6336b2 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef60ee81 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6b6642d iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd2625ca iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1aa42317 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c1a1e67 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2df710f2 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x364bc0ec iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f67a736 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5acb034e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5ae7dabc iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x62c4223c iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77023785 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a0b7e0c iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88936614 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9db08efe iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e27e361 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb38bd1e6 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5fe3605 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2795648 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe93294e1 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00dbc6ed sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02a96e6e sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x082f8a35 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f7b2031 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13ad7438 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b538d87 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bd1a8bb sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49c3e76d sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4fa7f248 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x540c27d6 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5415a5f7 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5cbc72a5 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x649712e9 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ec88711 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f1854b5 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89f2f12b sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cbc9f2a sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9280df85 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93543ae2 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x954b727b sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99b3d275 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d7fe025 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3db1dae sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa60cb47f sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7f6b9a0 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaeaa90f2 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9fa4a1c sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbec044af sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc02decbf sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3a004ea sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3fe3ef0 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc53b966b sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf0cfb40 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0a87241 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee231141 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfff8bee5 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x2887afb8 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00c291d3 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07f50558 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d67a130 iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x166ff745 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16c21118 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1972bdce iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e5244b7 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a4f5315 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ad9071e iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30415b95 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x316753d3 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x336fba69 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38bfc824 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f43ae83 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4000e22f iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43b3c39e __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a98bd7b iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c63c2b1 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a875194 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2010fb66 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22c1be1b iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23227f95 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26ac517a iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x283cd8b4 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x290ae0df iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29381091 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cd70e8f iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x320ab15f __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36cb1787 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3750a1ee iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f440f39 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4955cffe 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 0x5f1d3614 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f26b61d iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68e59a59 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x638b2c88 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68daa5a8 __SCK__tp_func_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 0x6da94726 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x722a122d __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8298463c __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6be3d943 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cc1c1ff iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f42bc75 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x705b2026 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7778919a iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7907c0aa __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79a09ec1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79c1418e iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d6b5433 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81a3ff74 iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x854c21b7 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88f34b3a __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89645cbb iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a69179f iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93605e91 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9361fbbe __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cd70f7d iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9db88444 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1d4d680 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b234d3b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d7f507e iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99cefda9 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9aa4afad iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bd7ec17 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d246ab2 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5c81155 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa711750d iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaaa00d16 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0196450 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb30ff042 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5e76ca9 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6680247 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba2db59a iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaaf49dc7 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac48ad47 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad658e60 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae80253a __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb05a1e7c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb25a9921 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb29d3b97 iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcfe826e __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc461b2c5 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc597d6c9 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c2c80d __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca221c21 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4b50808 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5881199 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb5e4196 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf9a8e09 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7289859 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb5c134f iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd0d37fa iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd8759b6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf3efc95 __tracepoint_iscsi_dbg_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 0xe114c22d __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe23c3961 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4685e89 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8fd6b17 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9249d5d iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf183f598 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3a00f94 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5c9ae25 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe127069b iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe50c0c4e iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe784f7b0 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1d45178 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7ce6fb4 iscsi_session_chkready EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8eb70c1 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf90a059e iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc56f488 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc80b3f2 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffbb3f3b iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x096dfeaf sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0fe12e24 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x411d4773 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe6871015 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb24706b __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfec961aa iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0d3e2be8 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4a15475c sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4ccda183 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeaf98818 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x55ec555b 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 0xe3610c0e spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x274a7008 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x41365f81 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x458c5309 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x57844830 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xebd4ec37 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf13ef65f srp_attach_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1d24affe siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb4a5264b siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb6ef8bbf siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd782bd9a __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xee68ddc2 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xff0b04cc siox_master_alloc -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x05bd5285 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x079a86c5 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x08651cef slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x10bd92a3 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1ebbfa70 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a74e661 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2dacf923 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x314fc4b4 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x34150931 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3c6f6866 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4015f13d slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4ee9c284 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4feb4998 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x51531443 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x52b3ee12 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x707186c1 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73cd0550 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7f568454 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e034948 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1a61fbd slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xba2d70c6 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9e9f003 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe19e590a slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe6749f54 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4b073f8 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbabf8ee slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x41512283 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb38fe923 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf318646d sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xab4f13f1 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1e8c1604 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3c276dd7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaa9e96ba srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe12e1908 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe89edebe srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd07a50e srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x016066bc siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2ebbf2d2 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6ced1a66 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcf0f2215 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd4a99b5a siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd87801ab siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07b6fc63 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x177038a4 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x19140b7f slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b179022 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3952ea94 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f89b6fd slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x59438481 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x62ce296d slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x693e8d48 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7612df57 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x92450069 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x92b0cfd2 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa0839500 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa472eee7 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6c8749f slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaa8ef039 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xae7db58c slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xafc5c115 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb06a20a6 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3b36334 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb5304f2e slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb751d0bf slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd3ccf717 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd6a22e6d slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd84c4b88 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe69f7fe1 slim_read +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x50d0ee4f __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbcb460f2 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xfe50324f sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x77a701fc sdw_cdns_debugfs_init EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xf7f88191 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x069df738 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41d07a8e spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5ec9ca7f spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x60dd92f4 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac79e2d8 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb4d00804 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0x552f51d7 intel_spi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x44473e3c spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x78901b1b spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa9d8ca93 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0360ecc0 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03deaca1 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ed09fa3 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a5ecb99 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41e61a39 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4b1014e3 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64ab8521 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e2ec3e9 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0c36e23 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa68b71a3 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1c40c99 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb21e71c1 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5f48242 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc64178ac spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd2827257 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xddbe9dfc spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8c7b0d6 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4d76705 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfa6eb54b spmi_device_add -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xc3b1bec6 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3bc6ccf2 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x404ca937 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5e5d92a7 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa2f03f51 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0bbd79fc gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0d445656 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1b0153ce gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x20d23f5a gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2ac19132 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36781f11 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3f53ad13 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x47f078f5 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6075bf91 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7630ba09 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8a2f7832 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8bd0fccf gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x970bb379 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47508bdc gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4be0cb2d gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8cfcdd6c gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa1b0fee3 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa3564e13 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa383b0f2 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb084fdd2 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb5d1dd08 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc00f4a1a gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc93cdf31 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd1272d0b gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdb0feec9 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde5ace13 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xd949e488 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x054f4bb9 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x53edc050 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x94bd0f48 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc5d56a28 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe8b066e1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe902e7bc spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0xd7caf4ef intel_spi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2befb2f9 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x588fca91 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9f98ff5c spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03ad00f8 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0905877e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0b152c45 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2332cf3f spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x349c16e1 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c289f07 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e48a8b3 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76dd4acb __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9031c52d spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaa33cacb spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd3cf9e71 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd98fe845 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd9cc9d20 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdab06673 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea497aab spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeac73f0c spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf1dc629b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf2559b07 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfac3857e spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xa1058fff ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x44a9db78 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb0da56f1 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd8ed880f fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xddc30030 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5153d8ba gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x62315304 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6285d40d gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x682a6402 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7418d9b8 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x75210f93 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x873d153f gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8da74367 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9099cea1 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9fbfb27d gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb4eb1988 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf4827f8d gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xff0e03f9 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x03533bba gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x03e8ae44 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x271626c0 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3acf9e83 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3c42b5b7 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4cdf3263 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5367672e gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x597cfd2b gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9e9993a2 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xada1639b gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb3953a2c gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc163d8bf gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xee041476 gb_audio_gb_deactivate_rx EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x30ce7f03 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 0x41825ea3 gb_audio_manager_get_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 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xd1673ff1 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x11dccd87 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xedb38ef3 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x00942542 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0c204065 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0bb31866 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x10eba8c5 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x15b2511c target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa134279d target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xce6a36a4 target_init_cmd -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e57764f tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x15d912b4 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x28ebaf03 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3a21ca0c tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x42d78f77 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5a8f3e91 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x668687ab teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x71b7fc90 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x78fcf863 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x805cb394 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x807f7a7b tee_bus_type +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xe6fd676a gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x87a4389c gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb5a971a4 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0d724ed5 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xd12ef5b8 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x343e730b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0329456c target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x47d3c356 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x72875d6b target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x72c9aedc 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 0x0d916390 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1823cf03 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x21bf0a54 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x22b6bae5 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x23b617cb tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3fef1dcc tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5e16ec79 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5f415490 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6b90ea38 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x761b1436 tee_client_invoke_func EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x908dd249 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa470100e tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb3852495 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc080dcb4 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc113d00b tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc328497e tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc4f31450 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xca736f61 tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd276e845 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xda65c52e tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf0bb5bac tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x3bf35728 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x914a0a49 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x99baa03c int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x185f557a proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x788a8b1c proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xa04020e0 proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb4907de9 proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc0c34b68 proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc560bf72 proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x0147a8f8 proc_thermal_mbox_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf098252d proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8a68d153 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b910701 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9169c6b8 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x98de01e1 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc4debfec tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcae44ca7 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcda82ec9 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd86d79a6 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd99f2bd9 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf804df20 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfaf9a9b5 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfe65f23a tee_client_get_version +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x1b874fe2 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x6dffd571 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x8da4df98 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x1e7eea3d proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x337aaf18 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x541fc3e6 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb6e5b24d proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xc699cb19 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe9a0ec16 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xa1125880 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xbbd94fce 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 0xd5225d9d proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x10a410b4 proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x391df331 proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x813a7621 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x9172eb05 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x977b2ac3 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xe93a1e55 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x004cca8a tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x006d8fbe tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x6c213f3e proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x35b912f0 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x7dcf1403 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x3d6dbe35 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x4c7fce7a intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xb5aec9b3 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xba39f91f intel_soc_dts_iosf_init EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c1fd480 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3161e3cd __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x118b130c tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2280a9b7 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x375bf3dc tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x40a6d8f1 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 0x5233833f tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x561c8bb0 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5d76daac tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5e32da6a __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x62b07833 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6102a1ad tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66e4c91e tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6bb5daa2 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ef2aca7 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x696d19fc tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x70731f28 tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x75e225a6 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785de1be tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x749ee99c tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7bd54e32 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7e8ea535 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7c168ffe tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8cef9206 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x98f5d592 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a736c77 tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa7383a11 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xacdadd39 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa771513e tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa8e2ce16 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xad146e56 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb3504292 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb4e8f858 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbdddd4a9 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe990fbc tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc0867eca tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc2177562 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1a2d611 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd7203dd9 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd7c7cd1f tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd9eddd3c tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd90419e9 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd9fe26c9 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe3005c44 tb_xdomain_alloc_in_hopid 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 0x0a9a4b62 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1604ea74 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1823dc8e ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x192315cd ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1d08b633 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x25aa70a5 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x28b77ccd __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3134aa40 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x33ee8a97 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x46ff9fd5 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4b04bc0f ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4db32563 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x69da90c2 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfa7881c4 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfc2ae8f1 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x009b7b5b ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x016b47ac ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x091df8aa ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x12cd71f9 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x24bb8ded ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x26261bcd ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c2b257e __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3495670c ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4747c393 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4cabce18 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4da0141f ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x59917892 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x60822c22 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x63b983c0 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x64eb391a ufshcd_auto_hibern8_update EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7380ca65 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x742295c7 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x74a302c2 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x846cad15 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92f0f0e6 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa7551fb5 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb0267532 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb03901ca ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbe81d5c9 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbfa0d462 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc1fd3a20 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd3d162a6 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x0f8b4c65 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x73f0334c ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9400bdf3 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb8f54fa9 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcc28e6e7 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd7fb43de ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xddb9eaf7 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe5f4bb1e ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe8072519 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef15b419 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfaab08f0 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x441ca74c ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7313fc7d ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa24baad2 ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/uio/uio 0x36397422 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x959c7f41 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xabd49153 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe888f9bb __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0ccd22d5 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfe07aebd usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x51b8a828 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x54a21a2f cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x67d5eeb7 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x98f3b960 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xad15d88a cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb6e7b9f0 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb8aedd2e cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbdcb2526 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xedf56b0f cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4ab69407 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5b5c61a5 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7d39930c hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xafe1a9e5 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x066c22f5 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x319e0b02 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x44d93767 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6e93a9bd ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbff411fa ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd4b25ec7 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0ac96051 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x148a1584 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x30f4255a u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4e79f25d u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e3bf725 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6619625a u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x722526f9 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7ce15e08 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8e3c2c16 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9429cb00 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x96af730a u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc3e53708 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcd002f02 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe33047f9 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe5cada1e u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x19aed740 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b4af076 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a772f86 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3ae16cbf gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5db0932b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6a872591 gether_setup_name +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a161831 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x89580a23 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2b21fec0 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8f7fccba __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9ad02f5f uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa7407cae __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x908c0265 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc3f672d7 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0c40ed16 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x17710a03 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x24f31ef6 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x34a1dd2c cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x48d927ef cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6591af2b cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd067191d cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf2d700e5 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfc022e2b cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x22a42077 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x63e34250 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe1c0fbb0 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf449f5e0 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1d25ac65 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x263386d6 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x550adf1f ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x89a3f96a __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb2964da8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xda7c6b32 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x14d65314 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x25ab73c8 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x501dcd0e g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6bcb2bc9 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6d71385e u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6ee0d65d u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x70dfd478 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x774a295a u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x78eea5eb u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x803e1619 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8cbea3f6 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xadf337e3 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb3ad4981 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xeb5737b1 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf538a9d3 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01edfd9d gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2dbd7f20 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x34b309b1 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40ea181e gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6120f4d9 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x69940962 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x791dd7c7 gether_set_host_addr EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1a42bce gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa577719b gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae8cf0b0 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb14c8e8d gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8cf12fe gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce353e78 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd17e7abe gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf126c557 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf25898f0 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf267b3d8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x89fa4c90 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a910e95 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e03d734 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb948e7d2 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbb5b199f gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbb9ef0f5 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc0cc9e5d gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc57f1b16 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdadef4b2 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x29f04359 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x597c5f92 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4602727c gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x704135f4 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa2ad466d gserial_resume 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 0xc26f7538 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 0xf904d0dd gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfd5fa284 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2680f4af ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x35eb7d60 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 0xce0946c7 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02162926 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07401f8e fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09a7f7d7 fsg_store_forced_eject -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0de5fae8 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1235833e fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe257f8d4 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 0x16ccc927 fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x178566c2 fsg_common_set_cdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2369f068 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x26b1bc2e fsg_show_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2cdaafd5 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x33560ca1 fsg_store_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 0x404f5905 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 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59f49419 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x619119d0 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56c0a458 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ebade64 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 0x6e303dc1 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x79cc6cfc 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 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8e85033c fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x88e7a73e fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8f3cce78 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x93b23a12 fsg_store_forced_eject 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 0x95e32d9b fsg_lun_open 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 0x9e8dcb08 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 0xa7824203 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab5070d9 fsg_lun_open 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 0xabd332b5 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb21b4f5e 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 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe0389fb9 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd7bc3fcc fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdfb64418 fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf61ac865 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf741a516 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30a8725e rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d98f219 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x46780558 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57269075 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x57bb8c58 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b55be9c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x69e9407f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bd1e9bd rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c276cf5 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fad6bdb rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9904d5ea rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbab6b736 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd2e4cebb rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe7b64134 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1e25f2e rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0321cf7c usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfdc2b02b fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe252998 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffd8674d fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x03fe3b83 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d3bb215 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x456da0eb rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b201e8c rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5f4599a1 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66077345 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7ac0c51d rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x955df6b9 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98025366 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa8260044 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xae696e07 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb85b8f01 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe1ee8686 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe722b61d rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe7b06446 rndis_deregister EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17a3176a usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19c75877 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22e123d1 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2425d881 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0de01025 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x15a612a3 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x203d70a9 usb_remove_function 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 0x324ae596 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3afbe6d0 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e0270bf config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x407bc1df config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b259df1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31482f8a usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3281ee48 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b6fcb8c usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42ad22a5 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44dc97ee usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44ed09b9 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45ed2409 usb_otg_descriptor_init EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53ecd4c4 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5718a1c0 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x65bb0115 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68d0fef8 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c1e1b13 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x705b633f usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x70d2f675 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d3285b2 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5606fee2 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c18ae9c usb_ep_autoconfig EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73268a31 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x77f5e81c usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x804376af usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80ee042e usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f6753f3 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa6c2c7b4 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa6798f2 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaffe4dcb usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb87f7e93 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4d78748 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ffbdaa9 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83bf984e usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x854e4c8b usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x993bb926 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0ad1a3e usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaca28152 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6c5e886 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbab5e587 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc21bb016 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4a1864d usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc5a36d5b usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc63962bc config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd870e789 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6dced1b usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdb0c53dd usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde3ff079 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8eb4d5a usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecd38bc8 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf304da4c usb_function_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf71a0e23 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc422875 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x36ceb53b gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x40d2894d empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa9f4f9b usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0475f27f udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x072f2b45 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3e6ad7fd empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x55f103ce 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 0x7439f12c udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9769a7b8 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb88c5929 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb8b3e865 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc4a11687 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcbb03ed0 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe4ac2944 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x676fb2b9 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbe878642 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc0f012c6 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc63dd7ac gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xff989dea udc_basic_init EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0194c1a2 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x062d8931 usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x110b0355 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1738ef99 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18063f3c usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1b342f5a usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29996832 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19f7bcb0 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1afdcd32 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x21441950 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25e3ce62 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2946ced5 usb_udc_vbus_handler EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b1355c3 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x31f7ab45 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e4605c2 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x335e329f usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34817a60 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 0x4475b6b8 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x449eb285 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48d4c279 usb_gadget_vbus_disconnect 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 0x631c117a usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b423fee usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6caf9f15 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x532c7d5f usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59b25da2 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5e490964 usb_gadget_unmap_request 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 0x7b524804 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x843a47d5 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a52dd76 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90e468b3 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90e6e95c usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79db7050 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b1c437e usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x988d373e usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa1580f99 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa2b0261 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x977b7061 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b2e9fe8 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa7348f39 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa841f3f0 usb_gadget_vbus_draw EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae60a0cb usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb3b734b9 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbf3279f3 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 0xc52bf448 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5ab884f usb_del_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7f36d24 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe44cfe65 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe84383f8 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeadf0e21 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeaf802ae usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed6a78d9 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3e490a2 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7e6823ce renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x312a4807 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xcfebd38c ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0aa29618 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6501fb17 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x89601271 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8c349e56 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x943e70ae usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbf252d2f ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc46887ae usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xccc59f3e usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xec3956ac usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x05dd93ce musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb1fa541 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcf284814 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd576a260 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd91801a2 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1f2a6c6 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe4b045c3 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xb3990e63 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2dc9311a ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc4118c0a ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x34332546 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5ad3cae7 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6e7a7b0f usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x70341439 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a7e8f5c usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7b4a1e6f usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa553e638 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa600fa85 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc276a848 usb_ftdi_elan_edset_output 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 0x0c1970d8 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1aa1c72a musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1ef79655 musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x298c8e0c musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x566d0b83 musb_set_host EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6ac075e9 musb_set_host EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x70e41050 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe15fa80d musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xecd349fb musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xecdc16d5 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5fa821de usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6662f12f usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7dd63bef usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xef5e27b9 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf8524075 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x37bde763 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x988ee8b7 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x028ac5e1 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23047d55 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e614156 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31e9b58c usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5fff1ee3 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63006f80 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x798c2c32 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x854e071a usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa427e3eb usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa992923d usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad2a0a1d usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad305e4b usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaec3bb99 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc008fed2 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe27bf990 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7b596b6 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xefe76763 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf6b44014 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfdf1be47 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff2b726c usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x42ec1d1d dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xddbdf33c dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf59ee99f musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9e3bc706 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb8e97226 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc36e46aa usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc71ecfd2 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xef0e45d2 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6572f8e8 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xc206d06d usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x203f31c8 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22ad6538 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b4f9dbb usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41c02676 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41e6472c usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5145352d usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6ced8fb4 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73c07c68 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7dfc9594 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95c77641 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa8580768 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad465aa6 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaebf7e90 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0277f12 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb645c14d usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd65b6c11 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7aebfa8 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd8529de4 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xea9280c9 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb7ff2ff usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6cfb65bd dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc6fb7126 dp_altmode_remove EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x982081fe 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 0xf402526d 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 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7e900f57 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb42a58c2 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 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01530e1a typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0680737b typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dccc050 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f5c08e5 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f7a285b usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13bba2b3 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15c786ee typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16e0cc0e usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1860a63b typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a1e5132 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x262f6d0c typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2935e46d usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29a929a9 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b550651 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a97c220 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dc015a0 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x102ba187 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15b58a89 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17b47684 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1aacafde typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1fd0d3fd typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2820cfa3 usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x28d3544b typec_altmode_notify EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30d56573 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30e50179 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x318d3bc8 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32a15ae3 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36bd2ddd typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37de2d76 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d07cfc2 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42cf3f10 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45e7bd9b typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c0d6197 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c2c7800 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50c107d8 typec_retimer_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x553a81ca typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56b69177 typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x586c9985 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c02a174 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d6fd78d typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5dbcc513 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62c53758 usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62e9c82b typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6840fd79 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x693438fa typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x326e4dbc typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x380a54ab typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38fcb1c7 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d8209f4 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ede7f23 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f61f84f typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4957101e typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4cac0d6f typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f7cebf3 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4face9af typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50eff054 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x513190f7 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53d2c12f fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x546e0e92 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x574c382e typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x577c2e61 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x578f964c usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x625f030c typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6aca8518 typec_unregister_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74854065 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b68255d typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dff72e3 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x762c549d typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x798de854 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a04f28e typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x819cf4d8 typec_altmode_put_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86bfb149 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8800871a typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8afb104a typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d62aa0e typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e68068a typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e6c6434 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x900df4ce typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x874e71de typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f96c73a typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8fe0e906 typec_retimer_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9780eaf1 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c029d87 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d7a2f51 typec_retimer_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e48757e fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95826df3 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97ff988f typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x98cd9e11 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x98f8b813 typec_set_vconn_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6c14c94 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa71144dc typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7edd5c1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaaa68461 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1aba816 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3f4ccf2 typec_retimer_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb472e763 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6be0ba1 typec_partner_usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0cfdeb1 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2b36332 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3a3c2e1 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcae402bd typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb6e9d7f typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa571c21a typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa75e40db typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae808855 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaee8cb56 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaf6f550d typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb010399e typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1ffe4c5 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb438b713 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb45e925d typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5dcd67c typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5ffb8ce typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbbe5e493 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc51f0d8 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbccb5699 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe0ad622 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe20c914 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbeeb2e07 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9037224 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcae66e19 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcda71d70 typec_altmode2port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd302728f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7e96b3b fwnode_typec_retimer_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0b5510e typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3a4049f typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5dbc352 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdaa578e5 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde48ec39 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3b3e7b2 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe745c841 fwnode_typec_switch_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xecb2a89b typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed83529a typec_mux_set_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3f5626c typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf7be9631 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf18ce410 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf32c5394 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6fd53d9 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa23df8c typec_retimer_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfefe566e typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x69dc0bc8 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7bb47116 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7db972e7 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x81c01258 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x858e1a90 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8ee5ee4f ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc2083966 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3d6541e ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe7f8c4bc ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x000b6d8b usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0d61569e usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1e22a6e4 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5093f094 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bb694ff usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x785f09cf usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4df722c5 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6af3c9e5 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6ef65fef ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7d220646 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7ddb27dd ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7de7267e ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9227c36c ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbfa1ea23 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeea5b2f6 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05e74fb0 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x14959645 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x155a78b5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x29b4d159 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e952676 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x60e6c9e6 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6e78e4df usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x77c1cdd8 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95170ad8 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa09e4535 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2c505f5 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbabe0e55 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x80cc6edd usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a1d08fb usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f6e035f usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb713eb53 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd5acebeb usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdddad9d6 usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe6b4ea4e usbip_recv -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x37542626 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3d58f044 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3f732700 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x446d0d65 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x503a92d8 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x52ceb8a8 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5a30daa7 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb630fb09 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc6ddab5c vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe415a917 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xec99d93c vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x51d44ded vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe6b9aa09 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x177691fb vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1c3fd649 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x28476933 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x317c1392 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3f2aaa48 vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4242255d vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x45bf7507 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xefc1c0e5 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x071eefa8 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0debd652 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x10c5af51 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x42e5f34c __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7a6883c1 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa04c20ae _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc5c71e11 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd1e7426a vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf7bd50bb vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfc70e20b __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xff901663 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x531695e3 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x170cbbb7 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c03643c vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1355cabe vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2c1b97f8 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30a708db vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30b3f90e vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x361feeb9 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e484ecc vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3f91818e vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x41b6479d 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 0x5300860d vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x54319351 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57f060ee vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5fac27d6 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x64a0589a vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa838760b vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb488c153 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xba4fe889 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xccd274e2 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe411ad3e vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8625845 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xefdbaf79 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x20f9b99e vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2c61ccbc vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x383d44d9 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6199ecaf vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6d8cd858 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fd500ab vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb1050c3d vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb34ecba8 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb8084b00 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdb2e8dfe vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe152298c vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf888afcd vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfbc23bdc vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x000bdb14 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0e7f0c5a vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x158ac89b vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x318e804f vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3e676aa9 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f0da91b vfio_virqfd_disable EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x49be088f vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5fa6488d vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5bba9dee vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5dbf711c vfio_register_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x716a4f37 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x786e68b8 vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x78d297d2 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7a696e57 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6207a200 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x77f083cf vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7f3ef07b vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8ffaf481 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x96600c4d vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c557add vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad4f3c51 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb39308bb vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb54edce1 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1a2239e vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd571a311 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe6d2f7a4 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xed93cbc6 vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfb16d445 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14e759ff vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x218a8ba9 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22894c77 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x268e507d vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x28bfde4c vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29db46e8 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31d1e7a6 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37629981 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37922126 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38f86f7b vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a044032 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45ae74d5 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ff9bb66 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51503636 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57d22ba7 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x592a6de2 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x598430ff vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b853d49 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71453f98 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7467b3fb vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7828d72c vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c96c861 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fa282e1 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x811d24ac vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89bdbd64 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fee6110 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ff912d4 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97123e43 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7fc437a7 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x861d4ed3 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d13c429 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa7d7ca8c vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb87b5125 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4ac4e90 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd244580d vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd596cfbe vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xde1744d5 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xef836715 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf37e3c16 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x196cfbf7 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f51f92d vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x284dc94b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39a34a78 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4204199d vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44e06afc vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d574112 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5073d263 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51117dc9 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x575b1db3 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f9e7e7e vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61defaae vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64d9854e vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x688ef917 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x762f6c82 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f23aba6 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85439bc2 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85c502ce vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89f6360c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a37f8d7 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c603bdf vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e325bac vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x979fc25f vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x986f1f5c vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98c1e090 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1c81fab vhost_discard_vq_desc EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac6c8ac6 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb330542f vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8479032 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd3cd79e vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4dced49 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4ec5a71 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9ebeb43 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe36fd455 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe59b4365 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1a9c05d vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8ff0431 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae0c8a81 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb578f53d vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0ad8b12 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0fdede1 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbd751e6 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd745781 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcde2f820 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf9b6e6c vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2157b07 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4c04b61 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd82ba20a vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe03c411f vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe94e65e1 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbe3a901 vhost_has_work EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff9dbe5b vhost_new_msg 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 @@ -17605,408 +17611,408 @@ 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 0x20ba4bb1 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x282e513d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x702f999e ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8c851584 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe38b5217 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf46a1d46 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfd14343d ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x2898b1f1 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x37a68425 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xee746a06 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x07205a18 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x74dc492b sis_free_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1f6eef5d ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2bfe0710 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x39cd3984 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5b509fa2 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6ac890a8 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb91cda66 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xeeffdcd1 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa18ac341 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xdfcd7f41 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe0b81d75 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x21e35758 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfe0da13c 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 0x8feb34e9 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x9532deee 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 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3339f28b w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5e843830 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x11cd7e78 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x160452a6 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x243e1db4 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x264968e3 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4da4aeea w1_write_8 EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6b10a509 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x73642286 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8032679e w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x848e67a0 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9094661c w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x92ca18d7 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd68e515f w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe93e40c2 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf90f8c65 w1_touch_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8470b0d1 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x913af253 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xcfac2a08 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xdb6c5078 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe264c70b xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x1ede9613 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x9e26a1e2 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8099f785 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x810ae1bb w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x887826bb w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8b142807 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9763b309 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9d380912 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x01309e57 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x402e6466 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb9c10e3f xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe2b091a2 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfbc9309a xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x2ff0fbd3 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x73db5d80 xen_privcmd_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5655094c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5cb6e247 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6769c4ae dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbca229d2 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb26613ae 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 0xd6b19fa2 dlm_posix_get -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0c688508 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fc158ee nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x84427401 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96dcd86f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x135525c9 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1a7bd0e8 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x276ab4e2 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x65a1e0b0 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x69ca9532 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcf95f5b9 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf57729ad nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6303f88 lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0172ebfc nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x019326a6 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x023f516e nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0255b54b __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc64ef797 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc71e1459 nlmclnt_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x030cc8f7 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03516a1d nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x049f76fb nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0510dc11 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08b8e1d7 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09164827 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098fa263 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09f41fc7 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cf5c20d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x044fa2ed nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04e89ca7 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0518cc19 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08101579 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09aeaea9 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a062298 nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10f23b1c nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1112e0bd nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1137aa8d get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x114b5d15 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12825dfd nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15995762 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a8decb nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1994a9a5 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19be9f95 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aea0a77 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b031c9a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c1e3614 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1da6d8da __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e340160 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2a3ce0 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bfbd05 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13d8f34f nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14bb1a47 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16457e74 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b7e9bf nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aea4fd6 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bf31ce3 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e441066 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21f0f3ad nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226f35b5 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e4c2d7 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2674013b nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275434ad nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27662560 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28c9914b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b27d064 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3460ebd5 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b2ca47 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27c38f79 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bcf8a12 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c55e7cb nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d49327f nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe50fe2 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x336a8e6d nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x353e441a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35ece9e0 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35fcad9b nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cfaf4e nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bb79242 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bfd3ff2 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e770658 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3efa85fb nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e5af12d __traceiter_nfs_fsync_enter 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 0x41fe5184 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42645fcb nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4113f9f9 nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4707e1fd nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490a1cd2 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c22ee1b nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43ec1b5f nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b7c37c nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x474cf168 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x491ee1bc nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49ecfd73 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad17503 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4baf0031 nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d1656ec nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ddfcf0c nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ea41a65 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ed80395 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f39f03f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50b61bc4 nfs_show_devname EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52617d80 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x544dda9d nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x559f2149 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52f84277 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x561ef58d nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x599e6c88 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c5eb4dd nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c7bab18 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d2d1eb9 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60c4f148 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62bf9a32 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63aa2aea nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x643a2c89 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d71add __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x667468ae nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67b78148 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68644e33 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69b7d7a4 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b8c9ff9 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f509d9d register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f87517b nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fbaeb50 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fea506f nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x701fe5df nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x707a3ea4 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71003038 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7367c043 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7374cfa1 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7494d336 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76341116 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x785642fa nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x786eb861 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a546f1d nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b2aea8d __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e670f04 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80127217 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80c4b7f0 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x585eb160 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7dc7fd nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6047a545 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62f7ea12 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63c9923a nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64da9a4c __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x656e767d nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x686349fd nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6abbab37 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ae2a4fa nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6af92e53 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6be13aaf nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d224fe0 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f413781 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7277f55a nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72a11de0 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72c36e91 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x742cd5ff nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743591d9 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b2a665 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77c44c38 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78be9ee0 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x793deed4 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79849ebe __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bab9051 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c267286 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82061cb7 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83ff80f7 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8502321c nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8554fb66 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e010d7 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8975051e nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89bbd841 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dfc08fa nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ef9e4c8 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x862d8df2 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86650f1e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877584ce nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887c8ced __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a75a34a __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c4375bf nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f0d7a48 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f4545b1 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90106e6b nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x932d379f nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946e2f9d put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9486c440 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x976679ef nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d843d0 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9869512f nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96fedc94 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99f6d121 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a223748 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ac7c7ca nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd58d61 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5f80f7 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990f1fcc nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99219c75 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99ed166e nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a168bec nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ccaf5e4 nfs_access_add_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa35cce83 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6f3a977 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d9edbbc nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e40e19 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa350b960 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5997fb2 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa69f0f4a nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7b78506 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa830fdb5 __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92d42e0 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa9006a nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd33ce8 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad3b6d51 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad449421 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1bed84d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7dc100d __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c746d4 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4ffe19 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc06a955b nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0b962b5 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc141b17a nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15a93ac nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a7f401 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2329475 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c74404 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadec3e27 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae12f849 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeac3b1b nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb12980f9 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb15c73a2 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb237e25c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2d03dc9 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb56ef947 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7dc0476 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb90c4a85 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba3b57a8 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbebd576d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0183e5c nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc442cd82 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4486922 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67e96a5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc477dc7d nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6412553 nfs_drop_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7ef067b nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc08c75c nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcee55748 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd07d5edf nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd76908de __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd78775e2 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8354ab1 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9166dd0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c5908e nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc99428ec nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2841b9 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca8e8d71 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc7d752 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1d00aa nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1767900 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1c4035a nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd32d1600 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd38d10f0 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcea7d77 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf9940f6 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1a86541 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1e52b17 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe25ea709 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe292cf4e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe39c31a2 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea51339e nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed04edbe nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1e8cfa4 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2c0fe03 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51a6ad4 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a902aa alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d7bad1 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf77527ce nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9dd2912 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb9a7194 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbb0691f nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5a0aa2 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde237c84 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0013b4 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf807c70 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2492345 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6b65308 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe86f8542 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecb76158 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecf62820 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefef110c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf165df8b nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5abc363 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5e55c01 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf72d3f05 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7493cd9 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf829364b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf88aa31f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96a37ee nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9b4801b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa56e3ef get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfab31708 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb9fdf42 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc4c27f9 nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc90cc7f nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcacd6f9 nfs_alloc_inode 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/nfsv3 0x8f08060a nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0120afb9 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x050f7692 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x83d931f0 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0576f52c pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09ad6f98 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b360cba __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b7566ff pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0eebb7e3 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18dd521d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0633ee02 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0760ab7c __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x084b8632 nfs4_schedule_lease_moved_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x199c784e pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e7b0e77 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f25114e nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2096dfd4 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x211c9e5f pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24d19f32 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ccdb12e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d46ea69 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x205002ae nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x207e7150 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2131fd9a pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21979d3c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x229ae26e __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x256d8f9a __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27d9bc8c nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27e0a8f9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28b2ee2d pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e3d9ad6 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e94bd08 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x334b1466 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3971b41c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4079b4d6 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40a4b9dc pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4322a805 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c10285 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x471ae5e3 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48b1f352 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d43f521 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f9dacdf __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51cec0d3 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5300d5aa __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53d13aba nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54214c24 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55215f2b __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a67003b __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dc5735b pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x330baa91 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34f402ed __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36cf213c __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x385f6ba7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f1985a5 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40bd1a79 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42908d65 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44c1c530 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46fbeef3 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49776047 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b2f48c2 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c42ac6d nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fdfc60b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x552a34ed __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x585ef457 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d595fc3 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62dc5d0a nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61daca31 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62259389 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x624ae121 nfs4_find_get_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63e9037e __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66bd0f5b nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68ecb734 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x679f6ec7 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69c71116 nfs4_mark_deviceid_unavailable 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 0x6c5a6211 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d1299ab pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e8ec719 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6edc9ad5 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70f89e07 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bbab762 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c48150c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x700f3607 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72ef4558 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x736614b2 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x744ec3d3 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78db1f66 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c50911d nfs4_setup_sequence EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83cac28e pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83b12252 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84f1ee5c __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88ac4618 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8abdcc17 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b296058 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c0ffce4 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d05bee1 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x922f81d4 nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93dc970e __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9475be17 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95d5f306 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96434472 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97f28f54 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98cea858 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x993e6edb pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b311cb2 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c3a9f78 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d7867be nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e095057 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa020b83a pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa259b30e __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa590031a __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa63aa20a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa93a62ac __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa59d9b6 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab96f4b7 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabab55d1 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad0de422 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x997e6b59 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cb6d338 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d81b155 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e4d8273 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa15bf936 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2808fd3 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8166012 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9e4a4bc __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa2437b7 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab466c62 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad693d30 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadc8d116 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf722095 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb02e8311 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb074abcc __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0b8ddd6 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb16b4b5e pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2aea786 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42f2f85 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb46c8330 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6e0d385 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb710ebf9 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb885d33 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbbe7d03 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbde9d15c pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf2becb6 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf352454 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf68523c pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc151bebb __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae570cd3 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7f748bb __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb911e037 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaa07c80 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb46e34f __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbe8ba28 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd885b99 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf1eeb73 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf36e479 pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3644722 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4593033 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcba307da nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9aa743a __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9d3daa2 pnfs_write_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd10a8207 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd15df590 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2d664c2 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5a38657 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8dc04ef pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd989e36c nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9e45d6d nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcdec901 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd50eec3 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc4776c5 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf772c2f pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1ff9793 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd40147d6 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd59ff55c __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6626ee0 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7e9de84 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8275a3b __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9b3a5f9 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaf4857e __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcb27d66 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd814332 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf4cd684 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe034f01a __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0f80c14 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe26d2470 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe287a313 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe78a957b pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe88ecad5 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9fc9078 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec5f866e __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe067dfc9 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0fbd79d pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1724f7c __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b8c0f4 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1db514a pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3d5232a pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3fe73fc nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6da9848 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe72ec27a __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9ba6856 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee66b8d9 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee9c7237 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf04b5626 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed3f8964 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf39ffdfc nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5722692 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5bd87e9 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf41120b5 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf938567d __SCK__tp_func_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa52a2e0 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb768f88 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbb70e1e nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdd4822f __tracepoint_ff_layout_read_error 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 0x15e272d0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x29523c52 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4a7605b2 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5418c640 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa17a4676 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x16d01c10 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1e7ad089 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1ecb96bf o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2b1e6c14 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3cda0d7d o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x432c6cc5 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4fee8c84 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7425cb42 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8ec0da08 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x1021e28c nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x17dc9b8f o2hb_setup_callback 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 0x5db9d771 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 0x77322b9c o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x796eb732 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7e60171c o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits 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 0xba4ebc69 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 0xc5cda910 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xec8f6cbd o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf10bb693 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 0x02a712d7 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x47b2b2b2 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4c438e6c dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7114a97e dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0954fc98 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4b001404 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x58dcdc50 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9215016d dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb24ea57a dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x89005111 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb27e6922 dlm_print_one_lock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf17f22d1 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x009b1e8a ocfs2_stack_glue_unregister 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 0x0e80a7ef ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4b97a99d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x453272c4 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x607e1e4e ocfs2_plock 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 0xa368f061 ocfs2_stack_glue_register 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 @@ -18014,12 +18020,12 @@ 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 0xe80f451c ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xeb204225 ocfs2_plock EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xc40cc8a5 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd16f0006 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x81d9f2a3 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xe2ac1a73 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xe8065af4 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xf732778e register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x6bebde6c register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x747a43ef 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 @@ -18041,8 +18047,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 0x3c4af2f4 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdd04d7dd notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x8fd62db7 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf2e1645c 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 @@ -18053,1075 +18059,1075 @@ 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 0x63be75be lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc1388833 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x0814cc68 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x0c4ceae7 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x3e734328 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x5225721a garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x55a2dea8 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xa977c7ab garp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x597466b6 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x8d64305d mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x9fad14a1 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xa63c140d mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xab3f542f mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xb1ce8e22 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x639d2612 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xa7149dd9 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x0b48524c p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xabe245a1 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe1d072af lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xec9e1512 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x2a3cc5ef garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x44b97ef5 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x71a7f8e3 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xddd8a1ac garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xed2aeefa garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xeeb4182e garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x2f937e97 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x32acedcd mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x3cd26f51 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4016a15d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x67837b4c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x758bc7bc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x9e48b805 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xfe53c7d2 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1947e42e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc56e62a3 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 0x3910987c ax25_register_pid EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xadd36af9 ax25_register_pid EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1e22b940 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3e44902e bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69a10498 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6e26270b l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7c5c7bf3 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa75992a4 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb02a27c5 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xba523579 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc4966840 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x10890948 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x02645c98 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x09ef5adc br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x16c89408 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x17e3975b br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x202442d5 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x21d131f3 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x233dd2dd br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c183623 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2fd58e25 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3181f375 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a8ba121 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a5005cc br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b107329 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x646731cf br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x68df8059 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6fbb4a14 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7be46b9c br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x82a44d86 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x863b0439 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9bf115db br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1f495b6 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8b39753 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9b274ff br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3efa4ad br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf96d1de8 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/core/failover 0x1074ba15 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x33629d6c failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xea8d4720 failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x03019312 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x08a90bed dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x228cf7ea l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64d65064 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x73f56efc l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbd338416 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc02d06c8 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc0defba3 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe579dc19 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xea12f934 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf93b8299 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xac13cb71 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1249104b br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2292c072 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x25912b2d br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5446af7c nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x559bf0f3 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d31f7d8 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61ca5e56 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x64fd1b39 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8012a031 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8b58d7b4 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x94f8b386 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97dc3037 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x99ed224f br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b282ac9 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa5531f7 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xadfe0bf6 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb228fa54 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb509189f br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbf3b702 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc80b951a br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcfeae638 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7185d63 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe03e1a4c br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf9621ed4 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfbae3c09 br_mst_get_info +EXPORT_SYMBOL_GPL net/core/failover 0x2a6b1772 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x32f431d3 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x522821a1 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x01225cc0 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x03b5beef dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16ab3ebf dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x19275a49 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x218fccd4 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24b70657 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29db8d57 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b26875a dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37f90870 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4214b778 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x451f7820 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4789fa06 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x48af15c9 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bd51550 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x18b2d036 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a1d4a36 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ab173a0 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ac3b44c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31a1263b dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x372c7926 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x528b78ca dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d066175 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5272ff1d dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ddec225 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fffde32 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x79ba1f63 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x804d5a82 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7133a117 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b1caf63 dccp_set_state 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 0x83331bf4 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84a95839 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87214c59 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c88e4b3 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f0d74f9 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90d3e1e9 dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb183325c dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1a9258c dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1fc8938 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc25e7c88 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc749ecac dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9db755fc dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac9cf5b7 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad6c0802 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb783b499 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf8181b6 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3577863 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 0xd99d8246 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbe44456 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1d8b05d dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa65281e dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa9dab41 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xff055628 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x00b9ddbd dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x013aeaaa dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3969d41e dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6c68490a dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbd9e6ef2 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd005165e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x07293ca1 dsa_switch_find +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd922e0de dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe419a809 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeaf6600c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee3877c2 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1375f45 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5c328f8 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf6f06c05 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8ba0ba0 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8c79ff5 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc463640 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3bef2490 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5081402b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x552e9488 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x57e82867 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5e18f167 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe841e448 dccp_v4_do_rcv EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f2a3f0a dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20313376 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x277e3ad0 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27f78009 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a4d9bc9 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x333a1029 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40e831c9 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x130c1d67 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25196f2a dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2dc06f41 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35589b54 dsa_tag_drivers_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 0x530be26f dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5953f246 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c4745b6 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64a547ed dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66c440f5 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c3af7b1 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72c15e26 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7f271497 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80fa2907 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x855b1675 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x891ba0c1 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9dfde36f dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50cba39a dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e2c0a4a dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x644ab4c9 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65fb3ca5 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66661a4f dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6aac0c52 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d20bd29 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d97016a dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x70a9e725 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72dd5003 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7bbefd9f dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82e06f06 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86e20e97 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ac557b5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9150a765 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e3e4ee5 dsa_devlink_resource_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f9d9ae8 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa7ea8b34 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbba4d655 dsa_tag_8021q_bridge_join EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5c06b7a dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd90942f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb6710b7 dsa_tag_8021q_bridge_leave EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7258c7b dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd85b5f7d dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3582b76 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8f55d8d dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe9150bd8 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb70ba8e dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe061283d dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe252ec72 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe5cbcf69 dsa_unregister_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5290169 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf30aad20 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf89946e9 dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe1677db dsa_register_switch -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x110381c0 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x159655b0 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x368ba37b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xff0cf5b7 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5e4cad07 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x83505019 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x98506bf6 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xddeb2173 nl802154_scan_event -EXPORT_SYMBOL_GPL net/ife/ife 0x21cf88d2 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x42ca18af ife_encode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa8574378 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xccc9201d ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xea366592 nl802154_scan_event 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 0x92b26cb8 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xd67a8afe ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8f3aae2c esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xad027d9d esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf2dc79ef esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x3dfe423f gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x852dd839 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5594d7f1 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c358462 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6bcc6ac9 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x71db4202 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9e9b533c inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9ec6af09 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf236f978 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf4d264de inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfff8d0de inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x71e77cc4 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d0114b8 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x43ba36c7 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44fca367 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5dcc1ced ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7648ced6 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x91ee1a82 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9b74e1d7 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fe8b8eb ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac99379b ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf1a7cae ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc58e7c01 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb4af9a3 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0501466 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6c95085 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe3963f11 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed8e26ca ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe82f4db ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x125c3a94 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7a1017e5 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x12f8b31a nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7d82894c nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xfc180d38 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24b5fca7 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x43edf3dc nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67b1805e nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x843b1cbf nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe4b05bf3 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xed75fd6e nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf990978a nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x84a6ee5f nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x146464d1 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x50acfe30 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x690c33b3 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xad48a60b nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbc8d9fab nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x00a1dd91 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2dfb65c2 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb00aafbb tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbe89a627 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe17c81c0 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x208b50e9 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c39aa16 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x907f9b0b udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ce67d9e udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbc0ed190 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbe852577 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc0f740ee udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd581ff1f udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x123a4990 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x80e5c74b esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9ec6d8c5 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x25b7fba4 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x756dcd30 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9f9f8a8b ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0af84846 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3df8e60c udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6716d3b9 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5f167fc8 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9475859d nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdeeda125 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x35db6074 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3be25d4d nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x46c53bf1 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x74f7940f nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8aa36f75 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9b3e6261 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb341916b nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe21bd7e7 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x03c14f36 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6d020120 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa38203c0 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xddbd5258 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x85440cbb nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc3040536 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02994898 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1672883d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x289066c2 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e1c13bf l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2fdec312 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x431cbe96 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c240f5d l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5db93b42 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65b007f7 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72be217c l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77c1bbfb l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaafd6210 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1a00844 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb488476e l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd616472 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2f8a9fc l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6fd8a33 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc9f3513 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdfbfaa9f l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe58d789f l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec09c9a3 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xe9c7e8c3 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0bbbd27a esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6f0599b9 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7d33dda9 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x60de0a6c gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xcdc4e4ed gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0e946af1 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1099b5ac inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x45c439e1 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x494490d2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9fc98a77 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbba15f32 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcc2c75e5 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe7471d16 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf2be2d46 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf6be4c7e gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ced89fc ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x132d6833 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x183de1c3 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53480ba1 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5758b58b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a9f51ab ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e20c950 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x69666d83 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b59c57b ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8f997a1 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd09870e5 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6fbd3a3 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe2efc1c7 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeece03a0 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf16e8fff ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf643b370 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbe683e9 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x872a0397 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x8dd2478c ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x024726c9 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd93a12ca nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x713b5384 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x10f8552a nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1fffff7c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5d38a317 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x62bb3dfd nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b645a5e nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbe273274 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe7e61d90 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x006b7145 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x73cc7e86 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc1d8e011 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xce1fb9b7 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xaab9f76e nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xced6879b nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x122613f1 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x45162157 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x91b7d5a2 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb8438acf tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc50f9bcc tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x49cb630c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4e85955f udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4f6efde8 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6a364e3c udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x82a38331 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8433ef48 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9161e9e3 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf160687d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9a9849f5 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd628afd3 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf2492e68 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5ee0452c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5fa6b608 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x758035b5 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa82a5492 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xcb230e3c udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc2cc05b2 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xacd814b9 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xddda5e05 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe785a576 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x4be806d3 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0c835221 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x13201c77 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x78205573 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8b412029 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x90b1a29b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc46c1cee nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xde7d0941 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x870cd02c nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1861a6b5 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x33e2385f nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5f164e4f nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x05759d60 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x825885ea nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e86d663 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28caa120 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x29f90c11 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c017d4a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31632e60 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x399b9df3 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d9a2f27 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3f7dac7f l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46d8492c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b40b67b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69dcdfd8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ba15492 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b3819a9 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9113950e l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91489c18 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9aa2c319 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb032f1c7 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb35b680b l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb9c30730 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf25b13fc l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf78246ed l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x82a97d18 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa9a2ca0e l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x7b0b5c1a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0a5ca8a1 ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a810b04 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x17c07bf9 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e1801cb ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x20adab75 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x24b8fcbe ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3508174f ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35f7933f ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36901679 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3846e47e ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x455e7928 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ad55e2a ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d33073a ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6fb26829 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c645f5d ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x816b411a ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8cc7a137 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25be767e ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30106175 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x319aa820 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x571168c0 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x621bb66c ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x643feca5 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x739f9b3c ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82dfbfd3 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dbafb21 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ef6ac89 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x987b3176 ieee80211_iter_chan_contexts_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc5868c4 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc0277165 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3a0cc43 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce1c6b3d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa4e940b ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xade9f8e1 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb176a53e ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc81580d5 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcdbd79d5 ieee80211_find_sta_by_ifaddr EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd78f8969 ieee80211_iterate_stations -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd836c705 ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8be2ff5 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6cad08c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd61b27e6 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd7f52c6 ieee80211_set_active_links_async EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2dde5a5 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe44ae9b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedda69a7 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef9b637e ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf03d014e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbb49066 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfe66a84c ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x301c9b20 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x758cad79 mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x95ba5772 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb8193865 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xce8a6be2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf9159bc6 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfab56c52 mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0568249d ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ae5fdcc ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ede903d ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1413553c ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c58bff0 ip_set_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeab14cc6 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xef822dff mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf7b9c02c mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x004b4ede ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bac4805 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33e511be ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x264cb766 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3592b7f7 ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52104eaf ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x534c5539 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x563ef83d ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x615dc485 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66b1e6e9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c3fed41 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c2d300b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x41d80078 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x42c66f3f ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4eeab905 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63100294 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ed3ddf3 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x809bea33 ip_set_nfnl_put EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b8ccb6f ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c278126 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97558fc3 ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa24f17c3 ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc32602f6 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3ceed04 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6ed50bf ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd4148d84 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe11ae185 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6221269 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac8bae2c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4020182 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc8a3a43 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe4fb9c15 ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf9cb9cf1 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3da1b634 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fb65433 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc5596cae unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeb1d52df ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x06e963e9 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1a1df101 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x50ef9830 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa40172b0 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xab67f7be nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x512cf8d3 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaab40514 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdc3dbfc0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdcee69b5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x42b4a758 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4cf18a0e nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5394f6c6 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x97fbd8e1 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb3ac39a7 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 0x01d573e5 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05611c2d nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x082a5ce5 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x056c5696 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b93665f nf_ct_gre_keymap_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fe9f5a3 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13dbda8a nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ace10e4 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bd5baeb nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cb7f960 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f652a4c nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fe2bfbf nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20bac498 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x226dced4 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x226fe3a7 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x231e81d0 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x245be4e3 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x260635cf nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x269500a7 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x274d73c5 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c46dbef nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f4631b4 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1466edc3 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14970a9d nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15234948 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d67e678 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d79c820 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ef6ca55 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2197b10d nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26da841b nf_ct_bridge_register 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 0x2e5648df nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34b828a0 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379c261b nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c3ca4a5 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4078e9ec nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x463d4db5 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eb99fd2 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eef23ca nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5206cf56 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55f17749 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56ea87be nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6214c49e nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x656c22af nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6616604a nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6631982d nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31c410b8 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3231df76 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3440658a nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x369e069e nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a5413b9 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a9838ed nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41627c0e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x426fdee0 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42c3a1d3 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x472ad62b nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473df9a7 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47fc733d __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fee4856 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5137e819 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5287326a nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x529bb6c1 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5db552bf __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e3b86ca nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67e37dc7 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68095aa5 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x682fcc3d nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c327406 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71c29222 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x732a09e9 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73a92f06 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76089ce2 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ec96fa2 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f9457c8 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x837cd6d4 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83c2aa00 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x846da852 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x878110a7 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88f989fd nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ae1e6cd nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a00dd86 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bb16a50 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bb5b60b nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78b9e1c0 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7910cab4 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79b4cfdf nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d04824c nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f29196e __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x803a0163 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80a11e9f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8529b3d7 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85ebc1fc nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ba80451 nf_ct_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982045aa __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99eb46b6 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x922d0433 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9265edd9 nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c8bfdcc nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cc05771 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d8162e8 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fc99edd nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa16eb05c nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1b2b978 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7920c7c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa933bbdf nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f7e5717 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4d4bd42 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa74056b7 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa77da545 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab19dbe9 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacc617cd nf_ct_helper_ext_add 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 0xb15394bf nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb277152f nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2a652ca nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2daa675 nf_conntrack_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb44097da __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbae8c288 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd6bd1ff nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebf6b1d nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb45dce5a nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4f720b6 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbec912e4 nf_ct_timeout_hook 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 0xcb699545 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcca6dddb nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd23984ee nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd324d870 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4112ca7 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc566717d nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5e3d4be nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b81eb3 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc932d11f __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca41352b nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc25b188 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd8997ed nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf0babf8 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf352858 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd02a21a9 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0614d8a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0f53fc8 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2a810b4 nf_ct_destroy_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd80702e3 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd97457e7 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdab93c2a nf_nat_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdea20a6a nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3b6bf70 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7cfca1b nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde6e1c64 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0863d24 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe15b00a3 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5642575 nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecef3b28 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedb97960 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1da08bb nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf36e82c7 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed3035e3 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf309cbb6 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf31ddcee nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3fbc65b __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd1b5543 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd8b168d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf52c047b nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa41cdd3 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc1cff32 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdae08ce nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfea0b2f5 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffcd3eb4 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x08efe4da nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1b9b8ebc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xe5975cc4 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4f175309 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c557040 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa3bd7976 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcfc86346 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2d3a3dd8 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3209496d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x40dc1e9b ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5cef44ed ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x724e9932 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x79f5a147 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca0357d3 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xff27c7f6 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x56ce5775 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6b1d7af8 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x912bac1c nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe853b357 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0bafe2aa nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x189819ce nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1f4ce82e nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d0e8ae3 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d38e1ed flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4fcea233 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x606572c9 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7dab0c9e nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9790f263 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbdfbc40b nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc52fe7fa flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcffd3bf6 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd095bfa2 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd2505e0a flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4da2d11 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf14a21d6 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf85cd337 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0fdaccb7 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15e4dd45 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x224b9488 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2cd28fff nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff73c671 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x8b1a9e7d nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2bf607da nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x26f5f71b nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b5556c4 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xde9a81f1 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x166ffd80 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5ca6ef5a nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1d58d33f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x845b6970 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x87cdff7e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9d46e93c ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbb2f2c9d nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0c06140 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe6f0d86c ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x4e85c77e nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xc8769015 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x04f64d22 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0a8cb884 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x148c113f nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x07491f57 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b29454b nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24a9a936 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x265d48b1 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x54436d80 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x557a578b flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68f62ecc flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x918b5fad flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xac9ade98 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaf25d515 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb8b1dfe8 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc9ce16e7 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd89a7ca1 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd9cc1648 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe93339e6 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb19c442 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf4dd6f40 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0f1d3e51 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1256363b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x146bc169 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x246f0f39 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x38157af6 nf_nat_ipv4_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x477e0380 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7239943a nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x803c3c37 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa99983e2 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaea1f1c2 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc20dad04 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc74fcddc nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcc9e6d90 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd6fad05 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xced64e7a nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3830ba2 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68addd98 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x769cfcb4 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x885e5e90 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa8ac2c6b nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb2496212 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc9ac42bf nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcfbfe9e5 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7314b70 nf_nat_icmp_reply_translation EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe52540f5 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe6d7e60f nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb661aaf nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdcf62c1b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe4fe7916 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7b5b40a nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xebe1d50b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff9c91a3 nf_ct_nat_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x217eab4f synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4c958dc9 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x688d6be2 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x871261d1 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9b853c65 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa1d4fd4d synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaa37d1e8 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc1783fd6 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc873558a synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x435256a4 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x47aaec07 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x59289abd nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5be56e11 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7aefb8cd synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x95ffe29c ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x991600ee synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9ab795cd synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb41fd5ba nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb6d22116 nf_synproxy_ipv6_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdbba060e synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xec5d8fef nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0089bbb5 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00968f76 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c9ac74d nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x122df741 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2fec9c8b nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfcdb86b7 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0067fae1 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x05daf347 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1096ada3 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19cffcaa __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1bc3ec4d nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a9bdec1 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f92a3bf nft_meta_set_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x433ccee6 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x453be097 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bdc3445 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ca3484e nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4375a129 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cbe25f4 nft_meta_inner_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x508206d2 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5278617d nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5734758e nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d0c5427 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f1922cc nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f4e9579 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fdd87cd nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x556fcb33 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b8b4d7b nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c757156 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e392c3a nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ff46883 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60fa7321 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6208aada nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70595fbb nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70c03d2a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x746ec274 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x759fee27 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81869610 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8731c353 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ebce9e0 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x958425cf nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa160169b nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa27cbdf3 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4af8550 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab1bc7e7 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fd84373 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69765956 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d475e4b nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71814cc4 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x758ffbb3 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b5facf4 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c42de2d nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8980394f nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97fb05b8 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bdc67a5 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa03aa5ab nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa59dabb5 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa910bc23 nf_tables_destroy_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf118e7b nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafb7cc70 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2c6d551 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb40b700c nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5768eac nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba9095b2 nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1b9beb7 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc33daf0a nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc382644d nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd1cfee6 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd447834c nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd65bdafe nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8cbfd2d nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaeb400eb nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8c801eb nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc393e11f nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc539d13a nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb6ce54e nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc95b934 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf5cf717 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcfce6fc6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9a11793 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde0ad6ec nft_unregister_obj 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 0xe3cd631f nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef49452a nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1b81369a nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1df1b26a nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x43e09181 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2dfe152 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf03dcbdb nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc268c5b nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff2daacc nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x09105ad1 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1502d5ab nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2b824b37 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x497633a1 nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6281f913 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x63a914b4 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6dd1ca1e nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9a45717c nfnetlink_has_listeners EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb4ffd2e nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf544acfd nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2625a8a8 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaf12bdf2 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdf812187 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x02dc1584 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2a4279d7 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9b27f592 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xea3685bd nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x58c374c3 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x8c801742 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4cdd7ebe nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6fac8d60 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x873d8851 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8c54bc24 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xff9b5413 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4355a266 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x771c5e67 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x81ebb51b nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8889fe73 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8c9930f9 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb2bdcc77 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd86ce325 nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x637a48de nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x567b5e7e nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x77603213 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xaa678bd8 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbe514469 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd94ea5a3 nft_reject_validate 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 0x123059c5 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1282a841 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a816411 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x200e0659 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3eaaaef6 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40595337 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46c2851b xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46f2ef3f xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58b4c25c xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d1ba028 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d8b789e xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19c20d3b xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b3bfeb0 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x247c182c xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e1a02a9 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3165b8b6 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3985bc9b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d0eacdb xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d7effc8 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52f33103 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63aeb27d xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c2b7928 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x72f4af4f xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d02f5a5 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x80d4099f xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x843df12f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8414df59 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99c4912e xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d62723e xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2c82266 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa4cc12d1 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb509e432 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb59a03cb xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5f13299 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc590b343 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd154a53d xt_unregister_template 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 0xdd4831cb xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd5e5046e xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8d7c04f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd92c0d36 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xde2d3fc9 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe1774b4f xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe492f2cb xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5e990d2 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee2e1cfc xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2c4ee61 xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd0e605f4 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd7a6809a xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x96eac5b6 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa5e43a2c nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa68946c4 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x30e75f87 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x36568a7a nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9315b06e nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0xc47f29ed nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xc4af3e8d nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x04950df9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3061004a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x52839525 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x572c11d0 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6d27b360 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6dc054fc ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x18849a6d psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x323cd42d psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x387461ec psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xdded1496 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x54e58f4d qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x5c6f6786 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8e02b338 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6664ae7c nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7edb56c8 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe440c84d nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x73484d70 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x828c7782 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd32f2c24 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x4e42a29e nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xbc246f60 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5161daa0 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7539e42a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9493127a ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6902793 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6f3c340 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcabd136f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0xa789de07 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xa7b53ab2 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xc534a1d9 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xed1d7c77 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x01f25c02 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x3b9c2ea1 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 0xe0a1773b qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe318949a qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf13742ac qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x030436cd rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x03edf1ec rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x0cd9c19f rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x1ab0b253 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x22edc7eb rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x096045e8 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x11f6808d rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x21ffe43c rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bea0863 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x319ee674 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x447299e8 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x366e3358 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3feb22cd rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x45d5a364 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x526bd0a4 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x54512aae rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x55c6ec32 rds_inc_init 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 0x647523ff rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x6e317745 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x6eae2e3f rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x737c7d53 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x777eba4b rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x7fdd47fe rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x80162f2e rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x712044ff rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x7da48f82 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x811d4f3d rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8c554695 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x9024b0f7 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x885a2422 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x8e827862 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x91191daf rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x92cf5b4b rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xa02d0661 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xa1e1a2a7 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xa89ba707 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xadcc3cbc rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xb282de60 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xaf4824dc rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb192e023 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb8d5ad47 rds_info_register_func EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc64da17b rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xca0d5044 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xd190b780 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xd1a33a6e rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xd3f3ec63 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xde4fbddd rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xf7138839 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x16a9ac5c pie_drop_early +EXPORT_SYMBOL_GPL net/rds/rds 0xc7e2f18a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc95b7fa4 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xce94f20e rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xcea2dac0 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xdec56c67 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xe96ee1b3 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xf7c06b21 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xfc2d7d89 rds_send_path_reset +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4971a187 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x84867bcb pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa093d945 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 0x0c7755b6 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x2d9f4f43 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x387c3a6e sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x875ad6f1 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x11686302 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x1be58cd8 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x2e8e11bf smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x3b1abac8 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x4f22543c smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x6cfc5b58 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x7de7c5f8 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xba3a80c1 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xbffc1093 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf971a8d1 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x05018485 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3947e3fe sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4ca96000 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4cc223b2 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xadf73ac1 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0ca40cac smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x0f6179e7 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3ad19ca2 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x4805be27 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x5eca45d2 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xb38a5478 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xeb478453 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xeed6d85c smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xef02192f smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xf46fd736 smcd_handle_event +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2dca96ea svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4185fecf svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x39adb3b5 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3fb885a5 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xad09348f gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xad35983d svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x755b7bcb svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c8e634 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b69f35 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x007ee7f1 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a9e265 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00e4ee83 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035b30eb rpc_max_bc_payload 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 0x09fec968 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ae3dbbf xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d1db090 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5d451e svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10bacdf4 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1234ea2d rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166a4283 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a626ba rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a720d7 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a85ead rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1912182c rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1924e929 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1be533e2 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c2e5fe5 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7c9cad svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8438d3 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0673010c rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06de545f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e83da6 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c33afd svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08d4a9af xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x097a0479 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e5d2c4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a56c520 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b03c9b8 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bbf3e4b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c9e323a svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e25e281 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e643c74 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f022509 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1045d2fd gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x104c4aca rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x112cded5 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x121ff098 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1356e7a4 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e3c7aa rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x157ac269 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15b4f72e rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19824f0f cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19ab1275 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19f1e71b xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d49ab80 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da89728 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dc7845a xdr_init_encode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2c4f4a rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eae0ff5 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f9ccf70 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x212be215 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21bd2c8d rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e7f36a xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2250abe1 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b66da9 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d51a0e svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23315c97 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ad68ec rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x262650bc svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6a2506 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f067d7e xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f49b243 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f6fb7f5 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2167ee33 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a3dc8b xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24511a13 rpc_call_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29aa2092 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb609ce svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7827ad svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e92d7e7 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f05520c xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f68e1cb xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fbd114b rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303490c4 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30a16f26 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30d1e62c sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30371087 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x307a4644 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30b6fe46 rpc_peeraddr2str EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f21438 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3214ed26 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32594151 xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f7e2a6 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343b6024 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328b21db xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c52f57 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343ddce5 xdr_shift_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35205adb svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35467524 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358791e7 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3591d535 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3676a1b8 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3706222f xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3742fa3c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386830fe rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x361813d9 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36cfe0fb xprt_add_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38a672fb rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b04e457 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c3e196e rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c5a6797 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef50e4d sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f685069 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a16faa0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8335cd rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be8b0ac svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c5248ae sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eb9a0e1 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f91de2e xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4130ab5e rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e2d7fd xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48622187 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4175e5ab rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x428b89d0 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c64375 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x444908a0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45127624 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46828ba5 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47141a89 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x474819ef rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4812ab1d rpc_alloc_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba4cd0c svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bebb26b svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cfbbcf9 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d77ba43 svc_auth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dad45a8 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e62f9d4 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e7c6ab1 rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb27e97 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bbaf8d xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5192af7b xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51df9a88 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c4d814 rpc_clnt_xprt_switch_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53be0ab8 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53bd83da xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53d1f2e0 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x544f0dbd auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545ae612 rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573e4b95 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b57023 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c53c64 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54b3f7a5 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f17428 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556e9f43 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566b57c6 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57258086 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57fbbe2d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x580a6824 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d0728e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x593e4a1f rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x599ba6f1 svc_alien_sock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a54203a xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d5f21e3 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d73d0f4 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e416168 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4b21f5 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bcbfc64 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd6218f rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9ab3ff rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de4c3dc rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e1f7344 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed0b3d5 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f880cbe rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61025973 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61cde031 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62bb75bb rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6541b68d svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a5eaf4 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ace1ec rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60a6504d rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x619f2a50 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62268635 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x623c9195 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62523963 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b85585 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63932a13 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x645abd67 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64aa8699 xprt_get EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6752ee73 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c0af2b rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6940dba4 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x699a0d82 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a1ddda0 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac49309 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b521570 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf01e79 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d5f1b80 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e28939b rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff4361d rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f3dfa7 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67015ea6 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f5318b xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69b21b31 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ae66279 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b1e5241 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7d2fcd rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c13f4af xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c47d27c xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c4c0628 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5566db rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ca9134a rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ebdd49a xprt_lookup_rqst 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 0x7265f2e5 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e77de5 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736dacf9 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x737c648b rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740556ce rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75201c45 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7748027d svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79fbe804 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aae02db svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c874371 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c883063 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d497c0b svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7293c7fa rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d5d338 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7440d969 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771a31fc svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777ca3fa xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7794de07 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c5c370 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x792d0cf5 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7944ae76 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a14f67e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a6fa0df svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aca6c17 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c52ff9c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c93fa50 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cdbb18a rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd2cb4f sunrpc_cache_register_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de9823c svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fad1a14 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832411e8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8394daad xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84864bb5 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86921190 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d48dd5 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873d2891 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87ad7c18 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8889cc75 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89bf8557 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a17bda1 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a551e09 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bef4f3e xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbc7526 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d15ee73 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3f32cd xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925d51be xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x933a69c8 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9417adae rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea2b709 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f50cccb xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fb60735 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80aef479 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80b31e7f svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80defb34 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d1e59a svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x861c572c xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x865a5692 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x879a17ef xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88196cf3 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8948fa52 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ba13e05 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c0f9ae2 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e11186d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd0fff8 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9050d1b6 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x908e9f2c xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x913e21fc xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x914c538c xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9260f5af rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927cf780 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93fc52fa rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959ba727 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96067698 xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b202d6 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97d5b034 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98cbdad5 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x993da25e rpc_clnt_xprt_switch_has_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b65bb32 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c5888c8 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13830ba svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18ce950 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51f83c3 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7aa6513 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d528cd rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92945b2 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5c3c79 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad3601b7 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad847205 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad870f69 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada6ae1b xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae27bcc1 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae40f961 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a552dd4 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abbed3c xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d830561 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f975714 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2dbd0e8 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45efae6 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51f3b00 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5487120 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa62851f5 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98bda45 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5705fa xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1f21fa rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad5d33ae rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad913acf xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae5471af rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeeb73d8 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf2e30c4 cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06e3b44 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0802ab0 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f51dbb svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb395c32f xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3f3de7e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb462b5ed svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4bdb6a1 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafaa88d3 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f64973 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1020c1a svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb10f8fff xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d2b191 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb237224a svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb373c3e3 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb47d01b8 xdr_init_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb583ba4e svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5ca43db rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6459629 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb699c05f rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb76d9ca7 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b1b8e6 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbac1bf57 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb9db858 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc9f59e7 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdadb64c rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdc35f97 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2e503d xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbece6702 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf38df26 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5cbf356 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb63a3696 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb72d4d80 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb89fe7ea csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1e47e7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8fb823 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe401476 xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc018c5d8 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc002aefb svc_recv 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 0xc23d0a9e xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2aaf31e svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2adedf6 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2c6c0cb svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37ece17 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1818250 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2dba2fa bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3cc32f0 put_rpccred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc540555e rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc689e023 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76495f0 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8238a5e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7af08ba xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8c07e18 rpc_killall_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9253cfc rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca11318a svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5c58de rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd7a1616 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2a3ef6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9932f69 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa8843a svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccd26ac2 rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf67799e rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd008e93f rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd039ced3 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15f6ed7 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd652b1f1 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6c2ef36 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70789a8 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7fbd12b svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd852d4c9 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e1560f sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0fa335 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc5e016e rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc14047 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd5b2723 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfeafed9 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd049142c xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd110ccb0 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd173e3ea xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2ff382f xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ca1b29 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ec4e81 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b9a223 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda41319b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb2eb701 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc41b8bf rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc565091 svc_create_pooled EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8fded3 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c5c915 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe339563c rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3bec51d sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3cb1984 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52f0fa0 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b3a478 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2930e10 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c05801 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4494f43 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d894bf xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe611dda0 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe641470d rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74e1b83 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b02836 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe810e5bf xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d65b3c xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73e1b96 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8105e9f rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe974ce6c xprt_reconnect_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b35371 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac072ce xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb746a70 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeba61e0d svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed3cecb1 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb8dce2 xprt_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2b7cb6 rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0996d9 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef80cb43 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06219e4 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef5be866 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b1badf xdr_set_pagelen EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0d41787 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf124003d rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf265c9ae xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3e60fc3 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf436e080 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5459d7f svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d52b30 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81486c7 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf83ac85e rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf937ae6f rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf972dfd9 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfada22b0 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfafa7659 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbcc1cc6 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd715c94 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9acd95 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdc88df1 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe915645 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2b64c8 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff597319 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff69ddce svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffea0f84 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/tls/tls 0x0a0f9001 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x3ec660f7 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x774dfec1 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x7ffa1759 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf38b530d rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf491eb3e sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5586cd2 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8312b1f svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8581ea9 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85c4d3a rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ec0606 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc7fd6b rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9c208a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde5a7f8 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff45b7ac xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff66de02 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc81e65 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd86757 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/tls/tls 0x381c3bdc tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x716d08df tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xa40bb1ba tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xd1842300 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 0x064a2056 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b16386a virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0eabcbaf virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f8de63e virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1531bbec virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1819d351 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x213c959b virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2df8fea5 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fc2668a virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43c89655 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x498cf436 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x510594fe virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55f417c6 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e276940 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x647573bc virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e094c39 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78fb1fe1 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b34de2c virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c7d382c virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x896be497 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8999bce4 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x930d0b60 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ec8a4ab virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa74f183b virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa846ce45 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7b9fa89 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14226354 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x238eee79 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x274a078b virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29b8a2c6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a17ac2d virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c17d70c virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c800b6e virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f535638 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4199057e virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47302cdd virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a533643 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e6c69d5 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54f04ad1 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ce9ca5e virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60753d99 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73bb81a5 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7bdac87e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x834eb96f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88e49543 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c6aa7e4 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x90ee33f2 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9afe961c virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa40759c9 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xadd77d53 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaef16195 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb18d3308 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb692c5f9 virtio_transport_shutdown 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 0xc8dda20b virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda5b4d6d virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdaf3077c virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb178080 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc592d8a virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2e79317 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf509952c virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff0a53ac virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b1ec8d7 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4ddf8a1 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd39c67b6 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9566a02 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6e47de8 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe90453e1 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb21696b virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd5d532b virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x09e90155 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0eb60eb9 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1aae0994 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x209033d6 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x216bbc20 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22ad9e68 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x149ec42f vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bda4370 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2cb16e44 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3578021d vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a08ff7e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32e83274 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x396e198b vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a954a40 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x412723a7 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41c08029 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x48cff2d8 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e099ccb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x482a85e6 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e2aab4f vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5784ddb5 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x62ce8b3d vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7bba678a vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a6694cf vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c287a50 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5ad6a1ea vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f80fa0f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d14010c vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x89260236 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x89412ad9 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x89f2359f vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9933afc9 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa9fbedb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa1646fbc vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad2b4f56 vsock_data_ready 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 0xb53ef395 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe83216ef vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbd4df52 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2400d716 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2bbcc93f cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x44289eee cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4cb35c83 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4e2737b4 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52c4754a cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d2dbf05 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78706509 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82d03d96 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84314f81 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x932dacb4 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96d36d25 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x986e2da3 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d346e6a cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf07cf03 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf7591733 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf22dd535 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf2a1456c vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf9d2ab92 vsock_create_connected +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1bc76255 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e44b479 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x517252a4 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b545297 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6be30d47 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x730d327d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7c01f5cc cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b396b20 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa1fc77bb cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa24859f3 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaf53b6d8 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5ef1c8d cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc5483306 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9b58eb9 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb16ede2 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe4c629d1 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 @@ -19134,531 +19140,531 @@ 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 0x60c9d946 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xca0903df ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe4c46868 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf86397ed ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb5d7861a ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbdfa27fc ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe06fb0f4 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xef0a43ca ipcomp_input 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 0x979cc040 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x5c4bb534 snd_ac97_reset EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x040c2c21 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x058c3897 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x06faeb36 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x229ffcd0 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x4a81b301 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0x5821dc2f snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x1134905a snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x1262d2fa snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x164b534c snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x17fdc32c snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x225b023c snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x3682aef9 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x40dc8ea8 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x4adf3571 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x4f0e37dc snd_ctl_add_vmaster_hook EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x77e35e5a snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x7d802de2 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x7dbbc28f snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x81053d22 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xa2ff4dc5 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xa948c2f2 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xae16557f snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xba6102ab snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xc49d950b snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xd6ccf492 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xd81e0c0c snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xe4e85a70 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xf63b0e7c snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x8b2625d2 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xa8d3ee12 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xc0f4e404 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xcf409e08 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xd5da2841 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xe1bdab22 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf0c11421 snd_ctl_sync_vmaster EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xf9a3e28a snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xf9ca8145 snd_ctl_disconnect_layer EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x2afe322f snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x3bfa3347 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfb55d53b snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x61648cdf snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8fcf606b snd_compress_new EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x077c3f2f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x08adc17d _snd_pcm_stream_lock_irqsave_nested EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x17ef6a93 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x29c1ac2d snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x18b79970 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1d022e13 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x395daa22 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x48367d3f snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x48fe9413 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5d7f3d53 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x85e5058c snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x695f4141 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x866604f5 snd_dma_buffer_sync EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x958f8909 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9ad7eb34 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b5d086b _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa185890a snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x989ce055 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb3a12c42 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc5ffb104 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcde1fadd snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd6ed2422 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe18a4152 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3da38ce _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5805d40c snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x723e9279 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9654e06a snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9732016c snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x99ca30b1 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa728daa3 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae0275bc snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb2ca125e snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbd55ae80 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe72dd182 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xec405cf2 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xedf531ee snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xbd1aea98 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe76baf0e __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x051c5b9c amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x069d77fc amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x184cb903 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x229eca67 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x39dd613b amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5a43f7c1 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5daaf76e amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6bfe8cb0 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x74d1922e amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaaa08f16 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcef8c3cb amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdd98b11c amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe646a560 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0bd6da7f snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e64e9b8 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b0292dd snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c655427 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34f47687 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4a733adc snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4e8f1b8c snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70729d85 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73d25da9 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a131849 snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8540d956 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x870ff6f0 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8c97f8fc snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99bf0d0f snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa684deec snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa70f626e snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa83f5202 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa2c22bf snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae1cac53 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaec7332b snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb5e28eac snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb878f498 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb90e1cff snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbbc7af26 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5155119 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc64d1a27 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8872776 snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xea70626c snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf584184a snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf7a5c65f snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf84bc064 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00393c34 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x094a4c4f snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0996737a snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a028b24 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a09df9e snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bc3e029 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d59198f snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0daa0ffa snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dbdd373 snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a4a1be1 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bc51c20 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ce3338d snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x200eb268 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21fd876c snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28d80589 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x297dd1f9 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ba94fb6 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c6dcb3b snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e728646 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ea29a22 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3333ec1e snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35592683 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37758acc snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3830d2b2 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a6633fa snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb5181ed7 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbb1aa5c8 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xce410f4e snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfa7a304a _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x286eeb48 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2d41714e snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x42fb869b snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x585d5eb7 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x776fdca0 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7c7f22f2 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7c80d373 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa28d675c snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa78f6a1d snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc63af293 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd41455ba snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe37f9f01 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb367f8f4 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcf453272 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x23b80d5e amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4a561d54 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x66ec72c7 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6ba1a813 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8ba74c54 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9d4c0e3e amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9e7f5075 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd525a0b8 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd623b7f5 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe7e9f90a amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xee1835f8 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xee7d468d amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4ede05f amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0d32debb snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0d8dc00c snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x144fe804 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x156c8835 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16e27927 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1eecee71 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1f5f9c06 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2a722b77 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c7566f0 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e386670 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47c44021 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5dc409cf snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5f19477b snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5f231946 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6f33502a snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7379373c snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x837ffb39 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84bc6a11 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x87d26f3f snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8f54f831 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa3f9f1d8 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa48f3c2a snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xadd3ca2a snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba16b653 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd8f5abb snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf290f0a snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4da4791 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdb53fcc7 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf09638d snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xefa9cc25 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xffcaf360 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01a561b1 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01b12143 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04833c25 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06b1ceee snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06dd62b9 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d2c8245 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12a07116 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17362944 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1928014c snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b0cb09b snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24753d22 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27cf9f6f snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29fde617 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b9ca39a snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bdf4931 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d4cbbec snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x315a4485 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a087d67 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b4033d5 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 0x3fa9b89e snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42a59439 snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43f0e3da snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x455808d5 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49a0a6d4 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d0d54da snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ed3c8a6 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x442be96d snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4493629d snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46d32633 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4723f169 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48458179 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4882ac4b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bc5e6d7 snd_hdac_dsp_trigger EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5054e78c snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x553308d8 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55419362 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x588b0e97 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58930a51 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b08964e snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x505fbe44 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5180e0cc snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5246f3ad snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a077427 snd_hdac_stream_set_spib EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x611ef09c snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62b5afe7 snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64bd4247 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64f7922d snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x665393de snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x674007bc snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67b1c7c7 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5dc7a892 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ebc4adc snd_hdac_acomp_exit EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b83b626 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x708ab2a5 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x727d388f snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x745f4040 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ae7140a _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ba4a0bb snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cdeb0a0 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fcb30f5 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71568089 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7413af10 snd_hdac_bus_handle_stream_irq EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x795f7af9 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b65057f snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7efda8a8 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80b2abb1 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89105ace snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b7c9dee snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c0f1e84 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x910fd56a snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92b61f2c snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96366cd0 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9730b042 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x980adb1e snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x984bebbc snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x798c2954 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8032adfe snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x836d2ed1 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85daec6b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x860caba7 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86f6a364 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x879bad0f snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89f9aad3 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b3ff8de snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f278430 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x909313e3 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92c0fde9 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x967154b1 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96c2ceaf snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9768c228 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9863b28a snd_hdac_sync_power_state EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9caffc45 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f5bc053 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5ea9a9a snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8744ea7 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa955ecd2 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9bd90f2 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbca5c308 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd0de007 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b55b167 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ea10cf7 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa300e7b9 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa35b3c2f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3e8c144 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa95b3d97 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9d67510 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1165f09 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba63e00c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbc139f4 snd_hdac_channel_allocation EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf1b1dc9 snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc364488d snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc62a46b3 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb25a79d snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce534503 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcff99193 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2aa8d3a snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2f5205e snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd679e073 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda6f1fd9 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc4f96db snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdda868a2 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe273e28d snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc068b790 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0c50db4 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc19126b2 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1fd4d6d snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc61dfe16 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7e8964c snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca7afe22 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb6922d6 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfdd7479 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0a0aa77 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0e4a7da snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1ea7bc6 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda10ba98 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde472117 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe17ace26 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2cebd80 snd_hdac_bus_parse_capabilities EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5c7e36a snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6a26366 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7106775 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7172ecd snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2c0080 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed65f153 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed78db86 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf276f6e3 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3d09b5f snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3e4caf6 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5797e78 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa965533 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc4e4979 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x0dfb77da snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x455382b1 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe553d3d6 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7de544b snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8bd2aa7 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb336a4f snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb4a02cf snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebd5bb28 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec915c99 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef13babb snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5dd0c1b snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6f66cd8 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa10bcbc snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa79ba37 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2afa7447 intel_nhlt_get_dmic_geo EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x553a8c8a snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb873051a intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5bf7ac5f snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x77e3ba24 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x90b56484 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbc005152 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbe80fcfc snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe527d89e snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02b2b9f1 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x5246a468 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x73cdc995 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe436d7c6 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xad4bab15 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbaa922c3 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xca0a1a9a snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd659e913 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd7929e92 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xddafaf61 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00d50eae snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0240df14 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05555424 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x066c01aa snd_hda_get_conn_index 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 0x06d3008a snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07ae2e6a snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x081c877a snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0933ac31 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b0c96c5 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e313810 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ee89245 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10015d0f snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1039befc snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x117d4982 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a7aab5 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1289b2a4 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1630ba1f snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1894aaac snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a157b5d snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a6ca449 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ade47ef snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1afa637b snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2041bdd7 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2244ec9b snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22ca07de snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d11ce2 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2acf2e55 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cc738d9 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d230541 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30803f1b _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08dcb695 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b41a0e8 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c66aa78 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e670a59 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0edef297 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10000c86 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14b775cb snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14bce315 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x158f0007 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x170b7fda snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bbbc995 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d973b29 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x231356fb snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2344e35d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24fb36f3 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2982c2a5 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e80d74e snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ea6b494 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f952bcb snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3029ae7a snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x313c2e0d azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3220d51a snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x325c4fc1 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35a21984 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35df5182 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37b442a3 snd_hda_jack_pin_sense EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39822478 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b0ccae7 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fc228be snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ccf7e4 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4203c232 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42401056 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ceb5b1 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x448169f4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45282a3c snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48964c37 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ad80065 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd61a4d snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cfa4bcb snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d433088 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519c61ef azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5479b185 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x567911e8 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57499b24 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a8ec57b azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bc83058 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d9386c6 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5edab263 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f1a8583 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f6827bb snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6108df92 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6122cc6a snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617827a6 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62411742 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63801539 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x666f19a5 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66715a0d snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68108167 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb184a4 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d2d9c02 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e282564 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e29b960 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71d72be8 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72271eb6 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76e5666b snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x784cb0b3 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78ec244a snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a4463a1 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e0d4071 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f79dbdc snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8216d6ab snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85c4533c azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85cdf8f5 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x862e6cb6 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86572987 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88242fb2 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x890930c4 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89271431 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b91a84a snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb6a438 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f8439c2 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97f95a20 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98249ad3 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c839c7 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bf0214f snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c2478f azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9507cfb snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa97de1c snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacec57a4 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb22e25c5 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5834557 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb644dfa1 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb650b8f3 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb9254b0 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd05891a snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe437be3 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe856c99 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbff6ad8a snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc254d03f snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7d432c3 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc914f113 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc99f3f26 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb0b3bcd snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc606bd0 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccadccfe __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccf23779 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd07ab04 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4d22c1b snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd521954b snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5a16b82 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd905e03c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb4e9f66 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde3ba8e2 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0bd76e2 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43737a4e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44f15523 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4988beab snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a2eaa59 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aa81a16 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c28ab34 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ea9d572 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x509ebbcb snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5399d782 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5469e431 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55c7f46c snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55e53983 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x572df3bb snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57e6d308 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59293119 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5948122b snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59a2b404 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eea97bc snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eefa054 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63eb2503 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63eeba97 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6df278f6 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6df2fb4c snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f91631d hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71470d40 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74758585 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74ef7552 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a7185b2 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b44f8be snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c5a7bcf snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81813a6a snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x820f7383 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x847550ee snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85ad50b2 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ab61a00 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d18946b snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fe2b6fd snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f6186e snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93fbbb21 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9523be61 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95d81182 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97368b4b snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9812f7ef snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98c6c10c snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99ff050c snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ae8519f azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aeefa67 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9edb2aaf __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2158ecd azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa536d922 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa81ba179 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa83cd767 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8f34dbf snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa953e823 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab727917 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac9083da snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf84ac45 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1179d6f snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25ba845 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4995f28 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb580a803 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb715e532 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb838b731 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9499251 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba868c22 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba9b6f00 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbacfe553 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc98e2f2 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc01d3c60 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2a77436 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3893141 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3946a75 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3e0411f snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc47d0874 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc48e5dd8 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5ee1e5b snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb296fe4 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc8946c0 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdb7056e azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce82e990 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd56f2c52 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd63cdce3 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6cd1331 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9741da4 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 0xe3541d48 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea1d33b5 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea785acc query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeafc5cec snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb52bf17 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb8b33ce snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9513fa snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebbede0d snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec29e319 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe22a7d4b snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe410b365 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4d0b2d8 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe515b1f3 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe739858b snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8de1ed1 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe933423e snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaeedb3b snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec6e1a47 snd_hda_mixer_amp_switch_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa6a1a8 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0469a42 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0e41fa1 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d9a059 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee6df0cc snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2719357 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf614dbd3 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf62883ad snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf85ac535 snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfff69f10 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05e6ca67 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1dd9d73c snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2283f0e6 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x362e4647 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3704ad63 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x436fcacf snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x485e93aa snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4c849d49 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6890f787 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x711972a9 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbb06f9d azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b875c7b snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x222f85c3 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d822a8a snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3bef2a1e snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x431f41b6 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x43bbc0cc snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52e9f1a9 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x547f25b1 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c6ed5d9 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 0x7f3336a5 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x85e0a6ee snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7ffbdd97 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 0x954ac400 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9a10b05f snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9fd91a8b snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xad9d3f3a snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8f77fb6 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd129c68a snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4831e51 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf89f872e snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcf80227 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8e15a795 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9854a72d snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9864fc11 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6d7602e snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa8cad755 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb96256fd snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba138249 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba7a6321 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd905818e snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfb6dc44 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf9f2fa1e snd_hda_add_new_path EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x74394911 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x6c36806e adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x982ed5ed adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x17b9d3a9 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4f6e2814 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4ff7c167 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6a167e34 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7983dd23 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x822adfa3 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa412dd06 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb98bceaf adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdd7fa31b adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff40b49e adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x993beb5e adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02893858 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c44cbbb arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0e6e82ec arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x15733e39 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20fc9025 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2ded74d0 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3397d471 arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35f89aab arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3af81b30 arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41dd2f1c arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x43e0960f arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x453ebea1 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4575cee1 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x5b22ba57 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x43160f54 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xca045717 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x25871c23 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x30a844ee adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x505f55dc adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fabf44b adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9fa1ed26 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd3c65056 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdd944820 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe43cbacc adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xea882aad adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf0f0d288 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x955395d6 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x012ea4c0 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0643b95a arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x084331d9 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0a6d9ad5 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0b6f8b03 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x166d8808 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x183f2cc4 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2498b852 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x33620406 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x33de0ad8 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x37a6e43a arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3ea809b0 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41a206f3 arizona_of_get_audio_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x550edff2 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x64166502 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x68600ee1 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x48cfba5a arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4a30bf94 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4a334414 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x500e3fe2 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x52424ed2 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5845c101 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x598b81c1 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5cdd7605 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x61e6257f arizona_lhpf1_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f18382c arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6b9f92ba arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6bbafb15 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6db988aa arizona_free_spk_irqs EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x742a42c6 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7635bea8 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x77bae9c8 arizona_in_vd_ramp 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 0x80ae2e07 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x821815c1 arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x860f4b1a arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8a3d5882 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8cb19a09 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x938f911f arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94bced5d arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94f31a5a arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x956b897d arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x977f5e87 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa2678b82 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa875f41a arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x824740ab arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x887ea6bc arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x960fe531 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa1e7dedf arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa2adb47e arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa2db9529 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa6a1fdac arizona_anc_input_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xafc1f9ad arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb43b4735 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb5a0bff5 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbbdeafdb arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbdaa45b6 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbffa4a22 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc021abe9 arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc172fd75 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3bf56a4 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9a295da arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb0e3a2bc arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb564ad1d arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc149088d arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc56039f4 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5730ce7 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc68f3251 arizona_hp_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd30c4fb8 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd59a7416 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd5ec26f5 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd9b1114a arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xda4c6d0a arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd1a1fd82 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd3c605d0 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd9e6caa3 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdad0bb4f arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdbafb366 arizona_output_anc_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe0ee67c5 arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf05fa425 arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf0ad0b09 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfb8eacf5 arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfda57190 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8deec2b7 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x99f244c2 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd1d61714 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe0104172 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe9334541 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xee6b91e0 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xee6cda2d arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf6793456 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x22f97bff cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb9086012 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe04a66fd cs35l41_pm_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x047c0482 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1287f838 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x17b8e772 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1954ba1f cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2156f6a7 cs35l41_set_cspl_mbox_cmd EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x47c6b9df cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x54cac598 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x712c91cc cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8d2eee4d cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x919e4905 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x559c99c4 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5afc7c5e cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x79e54bb7 cs35l41_otp_unpack EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xaa35a5dc cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xab41e9eb cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xae7c8295 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb918ae6d cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc7799713 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xce84e718 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xffb95ac0 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x274710dc cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xab0872ba cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x97c61a95 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9cd42b7b cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xaba766af cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc7c50685 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xeca97a81 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xeeb3db96 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4a65a917 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xda03fa82 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x133620bb cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2545997c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x295c6523 cs42l51_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7240379d cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x818e32ec cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x894c95f7 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9cedd512 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe35c94c1 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x152d05e2 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x414a84ba cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd98d0893 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x78ee33ad cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8cb80741 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xbf8071de cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe793e56e cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xce6fded5 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe432a438 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x3b5ea0f8 soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x54961d75 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xab1aa8d6 snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x7e4252e5 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x44d0f852 hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xc1311a39 hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x8531080f lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x87e96057 lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x449f0ea7 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1d5b27f1 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3cc070af max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4af3a881 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x87f66c8e soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x19824d6c mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8c0a1906 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbaba5d56 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd76da369 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x4c3c9f7a nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7c472e78 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf446c7f1 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x5d886d20 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x8fb20c0e es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x006fe4b8 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf140ff6b hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xff10dc26 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0xab970848 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xa10f048f hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xe4d7709f hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x633954c7 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xeb911bc8 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x04008695 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x60be255c max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x625bfe18 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x847a4315 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe786ae34 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0965d697 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5f06d4cb mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9ded52d6 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd17591c5 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xc7a59cd6 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7611c3dd 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 0x1e105fc7 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x36cd6738 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3e10ac7f pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa3c6fe78 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa4765250 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xabbe8adc pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x07a053d8 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x418ea2e6 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x14a8f234 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3383e403 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7f2b5d0b pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa0e33cda pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2667eff8 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x566176ee pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7600f658 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x962546cf pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x885579a0 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x76b87daa pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd7493f44 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xebabd766 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd0f9936c pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xe7cb438c pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x267eeb3d pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xb211e3e9 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x28855efb pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xbb39e3f7 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc7ea2338 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe3113359 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2d14543b pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x92ce7929 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa0ee5e7a pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc3b14669 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 @@ -19667,8181 +19673,8178 @@ 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 0x27dfa0af rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4328bcb4 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x507014ed rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5efdbf3b rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6c7525a7 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6fc6cb20 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x20ca98a7 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xafe1a090 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xee62e52c rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7ffbf3b4 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x16f4c89c rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0fd5b619 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x179a0c68 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5e983396 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x75e0eea4 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x976c432f rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcc8db2c2 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4738188e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdf93493b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x70b95ae5 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xfde7ce7e rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x08235037 rt5670_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x65de834f rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xca7a234c rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf3e5e79a rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xbd7d0f3c rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x3603696f rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbf5e3616 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf5cfd0b8 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x9921cef5 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 0x024eaec3 rt5682_soc_component_dev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x18ac603d rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x40e7e692 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3a722113 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4ce0747c rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x67f33aca rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d0cfcc5 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d8501bb rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8486c95f rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x96b2bab8 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa42c3b30 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb759d0ef rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5e4c7f89 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x79f0480b rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7f77a201 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x816801b9 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x86654088 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91e7f3e3 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x920d635b rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x94401902 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xaeebe416 rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfcbf5c14 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x6ca5a2c0 rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x38941e38 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6de2c95f sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x719918d7 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x811a5a4e devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9238405c sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc5bfbf11 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x55f414d9 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x8e4271a5 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xf850d200 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x14448d5a ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x219515bf ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x806322c2 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb4ad14bc aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x863c95ba ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x68f39b56 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1d218d61 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4e645bcb sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa7c8ba23 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xccb0e441 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdf48080f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x5630a535 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x2c5bff66 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x16897253 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x8cdf133c src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x551ad483 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x75be3bfd ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xac8ce2d4 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x394c0ea2 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xb6a8a910 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 0x07d09146 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x78c49ebf wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7db29a59 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8cd531db wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfde7e08b wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x22bdd87c wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32dc9d05 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x34baf25d wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3bed6831 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x42a462d3 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4540600a wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ead3a12 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52303427 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x288f3c73 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2cf7ac1a wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4968e352 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4996e135 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa23ba421 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0db02a8b wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x10086ed3 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1a9b56b1 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x25319906 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27f9ee61 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a35ce0d wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x30c8b250 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d27279a wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x458a9d09 wm_adsp_compr_pointer 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 0x54818037 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x56013fa0 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d25bc4a wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97c5b171 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e88a63f wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb47a200c wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbc09beb0 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbd57fa1b wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe65979a wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc0fb8b14 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc459ede1 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xda8378ca wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5481fef1 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x671f2c1a wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x692ef50c wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8112f9d4 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x83f7084a wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x84d0784d wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8dc7532f wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9a60209f wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa1f5252c wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa22468fc wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xae9be499 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb0a5ebff wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb495f819 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd457ea82 wm_adsp_compr_copy 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 0xe0cd0265 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe37085e9 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe5bb1964 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe0b908e5 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe117a153 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 0xed28e7e4 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf58b9926 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x61311370 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xeae55fa7 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x01cf1443 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3ce5678a wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5d338b34 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdf03eb2b wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1365f18b wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x123bec97 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xd491fc94 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x4da2304a wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x8b9a5f1a wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x57c85a4e wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x855fae92 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x88b502c5 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfa0be85a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x171a2f87 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7f915283 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe7424629 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 0x074b3656 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0fcc5f69 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13ba431b asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23c57c1f asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2887dc34 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2fac0ea3 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x355df2c6 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3f1299e4 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3f2b02e0 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x477e34f7 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b95c1af asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7c45e18e asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x824cc2af asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x826c0ea8 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9306a4ee asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb4876dcb asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc39b77be asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc492d415 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd14f91fc asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdab1cda5 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeba5f8bd asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf5e26a3e asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x10b163a8 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x7a4a462e sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x555e6d06 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x187d1615 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1a2737f8 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x239aa761 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x26170c0a asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x26fce13a asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x344fb20b asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40a9cfcc asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4d4ba49c asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x77dd2d36 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x79181371 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7a254728 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9bc73426 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa6fae3bf asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa9ffe6db asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xadb8aec2 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb12e4ccc asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc1a6b716 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xce6a8bd4 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe1dfdbb8 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xedf8efab asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf6270d4b asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf68620e3 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xb4be78c0 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xfc208f24 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2cd2431a intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5636bd25 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x680a996d sst_context_init 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 0x7a88c3ac sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xbdfb2db2 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd3b777e2 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd5db4e89 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x7d7a3474 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x837cc77d 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 0x14369290 snd_soc_acpi_intel_cnl_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 0x2a8ee84d snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2f500f90 snd_soc_acpi_intel_icl_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 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 0x55040ec6 snd_soc_acpi_intel_kbl_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 0x631cea9b snd_soc_acpi_intel_ehl_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 0x745f1210 snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x793ed6fb snd_soc_acpi_intel_skl_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 0x82eeef32 snd_soc_acpi_intel_cnl_sdw_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 0x97b93477 snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xacdfa977 snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa9014eaa snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xab7eefd9 snd_soc_acpi_intel_icl_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 0xc484b592 snd_soc_acpi_intel_rpl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd68ba821 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 0xf589e194 snd_soc_acpi_intel_icl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfab1701c snd_soc_acpi_intel_skl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0884948f sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1051c9f6 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xdc19e17f snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe0934c7c snd_soc_acpi_intel_ehl_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 0x1f60b6ad sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x22257250 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3dd3f782 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4bed97d5 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58b7c517 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7c0816e3 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1a61aba4 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x490ebcae sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x518503a4 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58913f46 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6086757d sst_dsp_mailbox_init 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 0x94414f96 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x967314a3 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6673223 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa50d4fe2 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xafd34008 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd317609d 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 0xe1dc8fb1 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdaa11ab0 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb955bd8 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe0dba5ed sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3aa54ff sst_dsp_shim_update_bits_forced 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 0xf2aad06c sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf699c748 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x2246b3b6 sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x423a2676 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x58377baa sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6ec161cb sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x8e0c521f sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x90287fa9 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa379c417 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0ab66a35 skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1583d8bf skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1d951652 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x21fc0ee7 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x28937d3e bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2ea4ff5e skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x31f15511 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3630f942 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3cc25e43 skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4295f9bd skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x429b4c5e skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x49aabb31 skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x518f3061 cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x56bf438d skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5be47428 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x67a4a37e skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x683c293f skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6c4484cc skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7f89d12f skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9c3a9f13 skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa5ba9210 skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb90adc1e skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbd38cffc skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbe1cd77f skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xce2b50a6 cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcf39fdb4 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd56d9d1d bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdb64d82e skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdf521b1e skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe22d82b1 cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe2796017 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe6c2c17e cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe7103a13 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe717ef02 skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfe7a4bc9 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf6aabd51 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfa21649b sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x11d11cab sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x32965155 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x670ae7b5 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6a1e74cb sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x85c0e851 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe68e1226 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xff025977 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x075d1328 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1898f5d9 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1ca702af skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x25a26a44 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x29234100 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2b3aea43 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x32f27af3 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3cd6f397 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x40e78d21 skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x45d83b71 cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4667bc4f skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4d791675 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4eb7e91f cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4fbfb69d skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5db3b487 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5df4b796 cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5f15231f bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5f284dce skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x636e98a9 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x696cc02f skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8b6893d0 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9605e8ec skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa73317a7 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa9844fa9 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xae6f671e bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb451efb2 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbe0dcb6d skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc4d68a11 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc52ed774 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc6ff162c skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd41368a5 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe6b2ccb4 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe86ee527 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe92ac44d skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf5d859ba skl_dsp_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine 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 0x0229c4fc snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0427ba82 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ea18c7 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06cf9265 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0963d10f snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09b394a4 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8c49be snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b441b92 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c754e4a snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d475052 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d687931 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e8e658b snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f06cbee snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10f3db69 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11c02bb2 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11f355fe snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x136be5b7 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1444563b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x144af315 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15c06f75 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17aaace0 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18c41edb snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18fe3528 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ff3a57 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19692ace snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac17b9a snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b067ca4 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x206d5981 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20d22b0a snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2123ec64 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2135413f snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2333f406 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00a68ddd snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x050da07a snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05864e67 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0706c50a snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x070e536f devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07ab2514 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c81bab snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07cadb66 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x083d4ff9 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d976203 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dcc7d10 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fc90e11 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10301a8f snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x136cca55 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14e2f389 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1555fd29 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15994f22 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17126df0 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1803e75f snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19e6b07f snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e77ab47 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f3c7d5d snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f76b30d snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2038055c snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20b8f4f3 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2248e763 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2288b2e7 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22fa499d snd_soc_bytes_put EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26ab9d21 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27479f99 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b79139 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2954ee07 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cb9353c snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d4c6110 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0d93a9 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302c65a6 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30a0ff81 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31b9f505 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f92942 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x354f2074 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35d47d39 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e30691 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x384165f5 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d0e22a snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aca5aa7 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c44169e snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cfcbc9c snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3deb8759 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x412d77fe snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42e0d08b snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4431b19a snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446969d7 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446b17ae snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446f5651 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x448c3c45 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4757b885 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4861fa8e snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48897d7a snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b6a69a5 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28034174 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28c8f57a dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a00e555 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a06e250 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aef9e23 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2be5ab1b snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c65f4bf snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e1afd48 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e9afa3b snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f627e0f snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f9da9bb snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34797187 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38bd5c2e snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x399de1ac snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b16898c snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c63a85f snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c6ed98c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e459280 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4185dbeb snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44a3bc3c snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47225b1d snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47334f67 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48701191 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x493e3ab0 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aaf027d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b78e39b snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c8054da snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d90eff6 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ec8cc11 dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ff588cc snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51bc2ab9 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x520a63c7 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5353ac0a snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57aa8f33 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7e55f3 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bb10437 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c9d2393 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6476f37b snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c01b77 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c4c095 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6808a807 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69672c05 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a861f1a snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d50af9f snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6faadbe3 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fcca4b6 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7006f9c9 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7112b735 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71c28de3 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71c60869 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x729b349a snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7418cd38 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75403b45 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7610c17b devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77884a81 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a70ccd snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77e00e77 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78102e00 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x797ea183 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a06ab55 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b46324f snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c6c7152 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fbc7d9e snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50654f6d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50c391f7 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51a126f8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5303f982 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5410d1c6 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54d4c0ea snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f6e5b2 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57dcd49a snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x589cfd94 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61c7a70f snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65b1277b snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x664d29d7 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6675b2fe snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x671b7bcf snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68b15dec snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68bc65a4 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aef253c snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b4c85b6 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c7d231e snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cdff0eb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e4a411c snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e7f2842 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f520700 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7109b35f snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x723b9ef5 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72b9fa60 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x738a49d2 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73eded7e snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74796b7c snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x749152b3 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7770374b snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7815151c snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x796e48ff snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79e888b0 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b684f43 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c095a1c dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d1512c5 snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eefda54 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fff790f soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80c366d7 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81efd6e3 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x834be224 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b113b5 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ee4822 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8636530b snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89f88061 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a3a0d63 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a781d94 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c6e5ede snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d0304e9 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90368c90 snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90712d50 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x920323a5 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926e3db5 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92fdb015 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9486f293 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x966932db snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x983d6276 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98eb0ef1 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9931aaa7 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99f3de46 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9acd09a1 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b277ad4 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bc2da7a snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c3e92ab snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ead9ffa snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9edeab26 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ef99af8 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa12932d2 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1359360 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa245009e snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2f6cde5 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4aa0ef8 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa56f26a8 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa71e232d snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8d5a2ed snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacdb972e snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae173e41 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf836632 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0182c26 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb024c628 snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0cc0201 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0fc1c6f snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb26de7ae snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2cebc11 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb311221a snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb327567c snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb364c98a snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5d0a839 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f940b7 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb931fbd2 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9ecadae dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb63dc9c snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbaa64cb dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd117d3b snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf18d9d1 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfa49238 snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0bede4c snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0dbf4c1 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc143a808 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d8da9b snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x837c65b8 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b2a4bd snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86fa49df dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x875c1592 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87d03608 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88198ed8 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88508f2a snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8851697e snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b154f9a snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bbe4534 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c14ef90 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ca3b855 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dc98313 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e720dd8 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e82b154 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901c0540 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9068ee9a snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d5b747 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x921e3a6a snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92b926ad snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9350e5d9 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x956a43e6 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95c7a7fa snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9750afbb snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99443935 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a565ac1 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a93ae1c snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9acaa2e9 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ad06eee snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b45643d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9be05133 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c5487fc snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cd9517b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d2ad429 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d76a49b snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e279e00 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fdc4552 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1798b21 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa532486e snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa65e7457 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7cbff7b snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab0e417e snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb0cce8 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf693930 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafccdf33 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb07d8cfb snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb12cf8aa snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1a8c637 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb23e578f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb36c0fa8 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3e18aac snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb494de7d snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb559e0da snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb560e7b9 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb749bf87 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb83a026e snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb93ea046 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9ee4cc6 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbafd6b2a snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd7a6149 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd811951 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeb53848 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf76d45d snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfdfb508 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c9c3c8 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2427efe snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c1aa5b snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc52aaf6c snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56059d9 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5e3a6f2 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc617a43e snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6ff6cfb snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc70ffb0b snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3567540 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc47b05ab snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56bcebd snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc646d4a9 snd_soc_of_get_dai_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc943c4a1 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb346937 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce16ea04 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd136fcf0 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2b60eb9 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2d13a25 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3647ec2 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8120f63 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a09a87 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbe11118 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde403ee7 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde7cba9c snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde9c8fbf snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee9a806 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe02bc83e snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe091fbb0 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3381fca snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3825605 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a01edb snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4306244 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe497a979 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe754c519 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84bdc9b snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9b2acb2 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea743d3a snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea812ff3 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc84a6814 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9ed78df soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccfefbbd snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd01fdc2b snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd069f53a snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd42d4214 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd54bcd74 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd579a74a snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5df1a2a snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd615ca9f snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd83354d5 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd837c6a8 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd91f47de snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdacc5ea8 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc1d663e snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde839c36 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeb1c15a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf0d1c39 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2473591 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe35e6410 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe401076c snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe40b03fd snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe549e88a snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6591fc2 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6b286e0 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe79804e2 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe80b1f6c devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe95965d9 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea113b4e snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaf0a729 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaf5e144 devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec90ddb0 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xece20f14 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedcf5774 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee639d8e snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeffa4915 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf10784ae snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12f2478 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4bc60aa snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4c07fee snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6178d09 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7141b01 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf84a9c13 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf86da1f0 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecc017d6 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed175f70 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedaccf2a snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee68c10e snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf07f8d0c snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1783c1c snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2241975 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf37c2141 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf58af56e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c7d19e snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6b5fe2b snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6c9afa6 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf85d468b snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf97f2c2c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfad5339e snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf5abd1 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb8827b0 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbbd97e9 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc8cab6a snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd451a53 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfee19c0b snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x06eaabed snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x313c82ce snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6407597c snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb6226b59 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe778cfd4 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9b4325d snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc5d5c92 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffec03dd snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x13d13fc9 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2837f2e9 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7752aa62 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7ad2dfe9 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc335410c snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0853a3cf line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0962b2dd line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e48230e line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0f23217d line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15b0a79e line6_send_raw_message EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ab7581b line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4d1d6c5a line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a4f5ce5 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6b5113e7 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x788849de line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a26986e line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80a97688 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9c51bade line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8fad403 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe3ae78f line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcae3c731 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd266c85f line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd7e62246 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe329c07a line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfafbe0e2 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfdef57a2 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4312555c line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4323d074 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4da40de9 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5da522be line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x84664250 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8ced312 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab83d5b9 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb7418da2 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbcc4fa1f line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd6c25d98 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa9366ff line6_write_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 0x000c0bf7 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x0004e2e5 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x00143731 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x00193b5a gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x002caa8c root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x00382588 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x003a82a6 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x003e7258 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x004109ac fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x004bd460 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x0050d6d7 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0052f3f9 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x006030d3 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x00659c6e _RNvXs1N_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10tss_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x0075040a bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x00723a3b devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00865bfe icc_put -EXPORT_SYMBOL_GPL vmlinux 0x008cfc6a ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0094ceb8 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x00891c07 rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x009e0513 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x00a0127c fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x00acb926 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x00ae0a33 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x00bf1455 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00a00cd6 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x00b35393 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x00c0cf28 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x00ce15b5 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00e33285 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x00f89b06 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x010bcfe7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x00f1f328 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x010bb0cb usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x010db083 _RNvXs3v_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6i16x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x01203437 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x0123e5ff crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x011a15d4 gnttab_dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0131908c debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x01499fb1 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x014cec62 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x013cbea3 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x0144569e raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x015a7e33 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x016472e7 _RNvXsF_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_12CharSearcherNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x016aa1ee _RNvXsa_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_5clone5Clone5clone -EXPORT_SYMBOL_GPL vmlinux 0x016d9f85 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x01760220 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0176a46c regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x0182dd44 _RNvXsV_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x019087b1 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x0194b9d4 _RNvXs6_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint +EXPORT_SYMBOL_GPL vmlinux 0x01976cb7 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x019b2745 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a11bf4 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x01a14efb devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x01ae1f20 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x01af91dc wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x01b2a1eb get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01c08346 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x01c0c843 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c188ba component_del -EXPORT_SYMBOL_GPL vmlinux 0x01d360f3 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x01c1bd9f scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01e2dae0 _RNvMNtCs9WMcp1Hn5Bv_4core3f32f8classify -EXPORT_SYMBOL_GPL vmlinux 0x01ea359d switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x01ea29c7 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x01ea5564 _RNvXs5_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtBM_10InfallibleE4from -EXPORT_SYMBOL_GPL vmlinux 0x01ed7bab devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01f1bdc7 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x01fda47d iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x020272fb __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x01f35bf4 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x01f5d0c3 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x021260ad regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0220585b devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0x02273a49 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x020d70b2 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x02292fa4 _RNvMNtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB2_9Utf8Lossy10from_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0229be2d ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x022a96cc cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x022e5b75 _RNvXsq_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_10static_keyNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0238eb6d sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023d9094 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x023f9aa6 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x0244628e _RNvNvXs1_NtNtCs9WMcp1Hn5Bv_4core5slice5indexINtNtNtBb_3ops5range5RangejEINtB7_10SliceIndexSpE17get_unchecked_mut8comptime -EXPORT_SYMBOL_GPL vmlinux 0x0246e131 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02766cdd rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x02904a84 vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x029cb38f rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x02aa91fa fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x02b1a45e __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x024d75a5 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x025d3198 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x025ebb06 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x026735bb gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0273d472 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x027ca8c2 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x02807498 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x028268ba events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x02912881 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x02ad9201 to_software_node EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02e04758 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x02eb604d memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x02ed4419 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x02f15c0a pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x02f578de regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x02c5efbd vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x02c6ddf6 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x02dec614 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x02e20fa5 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x02e9e9b8 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x02ea7b2f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x02f6793d blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0313b913 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x031f9d20 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x032fe44a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x031abc3f devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x03376674 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033bd0cd __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03463f7b hsu_dma_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x0365ead5 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x034d5e03 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x03503f59 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x0358fcf5 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0363e86b register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x036662cc register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x036747d8 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x036c06ff acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x036eca97 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x03774f16 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x037eece6 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x0383b4e7 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x0385ec99 _RNvXs3D_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16lru_gen_mm_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x03925442 _RNvXs1z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18avx_512_hi16_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0392e3e6 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039a7386 blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0x039dc407 _RNvNtCs9WMcp1Hn5Bv_4core6option13expect_failed -EXPORT_SYMBOL_GPL vmlinux 0x03a2ac39 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x03ad9db8 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x03b90b48 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x03bac351 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x03c0ba48 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x039eaf97 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03a5e1df nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d230bc __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x03d318f8 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x03d7fac7 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x03dc8dee __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x03f2119f dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x03f7bc76 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x03f8a523 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x03f8bb00 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x03d81329 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x03da8979 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x03dd8693 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x03e2da19 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x03f38267 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x03f52ef3 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x03f76e51 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041b58ad virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x041d1c47 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x040510ca skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x04197016 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x041c5cac devm_memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x04248b96 _RNvXs28_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20tlbflush_unmap_batchNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x043616d2 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x044b620e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x04458ea6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x0459a122 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0482c8f3 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x04683612 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x04698b03 put_device +EXPORT_SYMBOL_GPL vmlinux 0x046eb31f __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x04802117 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x0480e046 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x048a3d52 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0490cdb0 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x048f6ab1 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a17e06 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x04a35eca _RNvXs1O_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9irq_stackNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x04a5542b _RNvXs2K_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13rcu_segcblistNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x04b79328 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x04a93d31 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x04a97595 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x04aab781 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c5c18b cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x04c6f70c pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04cc3ce0 folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x04d12679 _RNvXs3u_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14vm_area_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x04d64085 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x04dd9198 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x04daf468 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x04df7273 __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e6acb9 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x04f33e89 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x04f39b66 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x0501692e ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x05040edc _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB5_14Utf8LossyChunkNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0510300c input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x0505b27a fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x050da00e __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051d379b led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x051eef14 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x052022ea spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0533cce0 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x053b0d3b regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x053e9449 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x053f8d3f _RNvXs37_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0540cc9e scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05524468 usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x0557bedb pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL vmlinux 0x056b71f2 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x057887d0 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x057f8756 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0583cff1 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x055c4172 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0564c135 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x056cc4e8 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x056fde3e gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x0576da9d put_pid EXPORT_SYMBOL_GPL vmlinux 0x058659d3 _RNvXs2G_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8rcu_workNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058f8840 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x0591db7f lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x059e49a1 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x0594ae71 __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05a8a42b powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x05ab5dbf md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x05af06f2 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x05b41ca8 cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x05b797a0 _RNvMNtCs9WMcp1Hn5Bv_4core3stre12escape_debug EXPORT_SYMBOL_GPL vmlinux 0x05b99460 _RNvXs11_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB8_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x05e4551d _RNvXs29_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i32x4NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x05e52937 _RNvMsi_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIter3new -EXPORT_SYMBOL_GPL vmlinux 0x05f6892a devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x05f8d7c2 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x05fc8629 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x05fcdc63 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x05feb9e5 _RNvXs3d_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u32x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x060511a6 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0607d9fa em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x05ffa3f1 firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x06149879 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x061bb3c1 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x061c6c65 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x061ebbf3 percpu_free_rwsem 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 0x063ef12a sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x06428bb8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x063069c6 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x06331412 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x06386cf0 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065b8ca8 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x0656e700 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x065c1517 user_read +EXPORT_SYMBOL_GPL vmlinux 0x065ed944 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x06653d87 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x066821cc _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core9core_simd7swizzleNtB5_5WhichNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0670641b inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x067281e3 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x0673cc5d devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x067b1289 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_14ParseCharErrorNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0682dd66 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x0695d14b spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x06a8ff47 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x06aadb52 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x06ad69e4 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06c18e7e tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x06897f86 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x06a9a235 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x06c77f1c apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06da428e bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x06dd137b pci_p2pmem_publish EXPORT_SYMBOL_GPL vmlinux 0x06e05576 _RNvXs0_NtCsiTPnVqBGVaY_6kernel3strNtB5_4CStrNtNtCs9WMcp1Hn5Bv_4core3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x06e1ef91 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x06e43807 _RNvXs1G_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9fpu_guestNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x06ee1dad _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp23as_chunks_unchecked_mut8comptime EXPORT_SYMBOL_GPL vmlinux 0x06ef00de _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0x06f30558 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x06f46549 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x06f65567 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x07015b13 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x070bcfc4 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x070c7170 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x07184853 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x06f93ffe blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x071403ce debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x07143952 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x0721b272 anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0724cfec devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x07282ffc clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x0732f233 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0732edc7 devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074cb65d clk_register EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x07572a35 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0x075fe570 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x0757dfb0 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x0758bccd pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x0760d20c power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07644783 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x076d9b20 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x077089aa xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x0777c32e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x076f0312 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x077ed359 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x07871a87 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x0792a3bf _RNvNvXs0_NtNtCs9WMcp1Hn5Bv_4core5slice5indexjINtB7_10SliceIndexSpE13get_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x07934dd0 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x07967238 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x07a52a7f pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x07aa0edf device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x079519e2 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x079cb206 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07a1cf91 gpiochip_remove 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 0x07b84da0 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07e73cf7 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x07f44b06 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x0812e962 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x07c66f3f bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x07c93610 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x07c97022 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x07d22585 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x07d94cc2 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x07f92885 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x080e205a __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x082459c7 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x084367bb inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x08441d7f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x081c445b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0828a320 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x082d0771 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x08390cbd iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x08475f96 _RNvXs0_NtCs9WMcp1Hn5Bv_4core3anyDNtB5_3AnyNtNtB7_6marker4SendEL_NtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x08530f6f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0854b856 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0859c2f2 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x0865891c _RNvXs4g_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroU32NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x08681b05 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x086f461c powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x08743ef6 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x0866437d usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08912fd7 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x08935034 ptdump_walk_pgd_level_debugfs EXPORT_SYMBOL_GPL vmlinux 0x08a0fc3e _RNvXs3N_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10mhp_paramsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x08a1f2bb __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x08a123eb wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x08a5425d gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x08a67866 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x08acd806 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x08bd8580 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x08c4b5f3 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory EXPORT_SYMBOL_GPL vmlinux 0x08c869ae _RNvXs3b_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_6__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x08ebf69b usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x08f7df1e crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x09021a77 fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0x0902dd79 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x08cf5bd3 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x08f325ce alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x09185b91 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x09088c41 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x0911305d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x091cff76 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x092aace3 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093be4f4 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x09446c58 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x0947837d _RNvMs7_NtCs9WMcp1Hn5Bv_4core3numy14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0x0947ca36 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x094e7869 blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x095a3108 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x0959eaeb __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x095f440c gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x095fa396 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x0966c20c tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x09682723 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x097369f9 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x096afde2 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x09752543 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x097ce29b __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x0984ab6d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x09853309 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x0987abf7 _RNvXso_NtCs9WMcp1Hn5Bv_4core3numjNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x09a10f94 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09a6d152 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x09ab6a37 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x09abbb82 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x09af023c usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c33a16 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x09f75a81 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x09fa519b sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x0a0e81ab vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0x0a13b7fc is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x0a373ff9 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x0a39f47a crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x09eb8215 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x09f60243 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x09fae791 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x0a030d15 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0a051e22 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a0579ed acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x0a06c166 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x0a18e86d tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x0a2a5d30 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x0a3f218f _RNvMNtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB2_4Part3len -EXPORT_SYMBOL_GPL vmlinux 0x0a459242 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall EXPORT_SYMBOL_GPL vmlinux 0x0a4aa2d6 _RNvXs3f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18page__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0a4ec451 vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap EXPORT_SYMBOL_GPL vmlinux 0x0a538cbf _RNvXsD_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_8___m128bhNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0a6115cf gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x0a62f373 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x0a70b11c nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x0a71a6b4 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x0a5714a0 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x0a5ab35b xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x0a5e2330 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x0a804e9a component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x0a8d46ae _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0a91f6f6 class_unregister EXPORT_SYMBOL_GPL vmlinux 0x0aa56f05 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_10AtomicBoolNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0ab963b1 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x0aa7e24b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x0aac6c66 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ac0d22f bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x0ac7d6ee __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0af141f9 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x0afb99d1 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0ad55d8b irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x0ad9251b regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ae0e767 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x0ae35f92 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x0aea6d12 subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b08ce96 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x0b105ca4 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x0b172784 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0b09c093 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x0b195d35 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x0b19bdb5 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b207b84 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0b21fef2 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x0b295e01 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x0b2d94e3 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b2739c7 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b484c74 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0b4b2ccf ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b59850f led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x0b59d4cb devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x0b630821 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0b53801f power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0b5b8e7a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x0b63269e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x0b6408a2 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0b6734b9 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b69e308 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x0b6d2ef6 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x0b6eed1a pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x0b7c3525 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x0b6a3410 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x0b714909 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0b769a62 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x0b77567d trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x0b79d07f fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x0b81d79f _RNvXs3i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_47folio__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0b828d18 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b952195 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x0b9610d8 device_rename EXPORT_SYMBOL_GPL vmlinux 0x0ba023c5 _RNvXs2_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith9SubAssign10sub_assign EXPORT_SYMBOL_GPL vmlinux 0x0ba7eb85 _RNvNtNtCs9WMcp1Hn5Bv_4core3str5count23char_count_general_case -EXPORT_SYMBOL_GPL vmlinux 0x0bbcaa97 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x0bb79eab pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x0bbcf825 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbea044 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bdb53fd crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0bdd25ff efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0x0bed78eb _RNvXs_NtNtCs9WMcp1Hn5Bv_4core5alloc6layoutNtB4_11LayoutErrorNtNtB8_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0bfacf1f usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x0c0cb3f0 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x0c13b5bf genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x0bf055f5 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c0aa3d1 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x0c197964 xen_pci_frontend EXPORT_SYMBOL_GPL vmlinux 0x0c20570d _RNvMNtCs9WMcp1Hn5Bv_4core3f64d16partial_classify -EXPORT_SYMBOL_GPL vmlinux 0x0c22da8d irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x0c2685b3 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c492966 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0c3bd1f5 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0c455b3a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x0c4a6106 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x0c524ae2 _RNvXs34_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0c543c6d serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x0c558696 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0c5664f9 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x0c58107f _RNvXs_NtCs9WMcp1Hn5Bv_4core4timeNtB4_8DurationNtNtNtB6_3ops5arith3Add3add +EXPORT_SYMBOL_GPL vmlinux 0x0c6ae07b ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0c6af6cc __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x0c7836d7 _RNvXs3p_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i8x32NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0c7f8f70 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c855948 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8ab5f1 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x0c8fd9b4 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x0c8e2486 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x0c92f09c _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index27slice_end_index_len_fail_rt -EXPORT_SYMBOL_GPL vmlinux 0x0cb38ec5 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x0cb72a3d synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x0ca93255 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x0cafa961 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x0cb1f0ae nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x0cb22b5a vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0cb6dc4f rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x0cb9f115 _RNvXs23_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i16x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x0cbac084 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0cbc0f16 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0cbbc18d scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x0cbbe9f9 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc4036c alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x0cc4471a vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x0cc5ef53 irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0ce827c6 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0cec7364 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x0cf24d64 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x0cf4c1c8 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0cf61c29 devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d064e84 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d1557ed akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0d1b4056 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x0d0f595a regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x0d14c36d regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x0d155329 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x0d188a97 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x0d2834f8 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x0d387360 _RNvXs1B_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11xregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d466a63 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0d480e1d l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x0d49246d __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4d1a42 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d50efa1 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x0d51e084 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x0d573d99 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d5d0a87 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x0d5eb47f fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x0d5dc877 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x0d5f3a17 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x0d619c08 _RNvMNtNtCs9WMcp1Hn5Bv_4core3num5errorNtB2_15TryFromIntError13___description -EXPORT_SYMBOL_GPL vmlinux 0x0d650a63 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x0d6a2d92 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d718674 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x0d7790aa sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x0d88450e __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0d78889b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x0d8983ae cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x0d8de3e1 _RNvXss_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0d918835 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x0da7b921 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0db46fdb __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0d9569df pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x0da56dfe rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0db321a3 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0x0dbd9e93 _RNvNvMsZ_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroI6413new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x0dbde5c4 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0dc2e951 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x0dc3b61b _RNvXs3E_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15lru_gen_mm_walkNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x0dc4c576 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x0dc8b8a5 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x0dcbeb2e usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x0dd2e9b0 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x0dd5d034 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x0dd674a4 _RNvXsE_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0ddacdd3 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddcf784 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x0dde1955 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0dece3dc devm_kmemdup 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 0x0e11fc04 dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e14d127 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0e1b034f iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0e1699f4 pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e3bc2d9 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x0e4088cb ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0e4ceb40 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x0e5c0627 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data9lowercase6lookup EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e65cd09 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0e6a5b25 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e7c466e p2sb_bar -EXPORT_SYMBOL_GPL vmlinux 0x0e85db3c perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x0e8aa9da gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x0ea2ceff inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x0ea49cea iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x0e8b694a __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0e9fd896 device_register EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eb2d837 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec15cac nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0ecbe471 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ecf7179 rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ed70c55 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x0ee4d151 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0ee4de57 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0efb6c36 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f136079 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1c0ea4 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0f207236 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0f2262d9 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x0f25e85b __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x0f28e361 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f3932bd sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0f3a07f5 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x0f522fdf _RNvXs3C_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14lru_gen_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x0f5bba03 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x0f5d54c6 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x0f67d9aa pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f54031e irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x0f552131 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x0f701432 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f80819a led_put -EXPORT_SYMBOL_GPL vmlinux 0x0f8939b6 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x0f954161 device_add +EXPORT_SYMBOL_GPL vmlinux 0x0f8627c6 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0f8e3806 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x0f9ec163 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0fa603b5 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x0fa60641 _RNvXsH_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_55restart_block__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fbd858c __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fca2311 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0fcb87d6 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x0fcb1143 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fd1a849 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x0fd44cc5 dev_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdb8338 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x0ff198c2 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x1003a1cd virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x1006440d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0ff8be9b irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x10109a81 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x100b690e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x100b747a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x101208e0 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x102e6a95 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x1037df95 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x10197622 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x10322e14 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x10476caf regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x10564df7 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x105d12f6 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x10758e63 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x107d270b clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x105abf40 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x105cbec4 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x107bfeb6 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x10833cd3 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1084f4b0 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10ab0a3c usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x10aeb320 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x108d1a7a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x108e54aa dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1091b251 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x1099f449 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10b9ee0a gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x10c1635f regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10c867b4 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x10c9b80a _RNvXse_NtCs9WMcp1Hn5Bv_4core4cellNtB5_11BorrowErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x10cfcfef __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x10cedcbb fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x10d6ad43 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb -EXPORT_SYMBOL_GPL vmlinux 0x10e072ba gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x10e92424 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x10e49095 adp5520_write EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fe8969 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x10f48b3d bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1107daa9 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1110e2a1 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x1111131e nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1117c6ad aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x111c962c sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x112fe550 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1151daf5 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x11572d48 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x111b7266 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x1124f0d8 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x11529fd5 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x115cea01 _RNvXs35_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x116940fb devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x1169d048 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x116d5929 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x11657840 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x116dc4ca irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0x117639db _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index27slice_end_index_len_fail_ct -EXPORT_SYMBOL_GPL vmlinux 0x119ecd14 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x11aed6af dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x1189686d iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x118f36d3 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x11b132ff devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x11b2015c _RNvXs25_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeUnicodeNtNtBa_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x11b7c731 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x11c16394 blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0x11c4c78f _RNvXsA_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_5ErrorNtB5_5Debug3fmt 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 0x11e78e7b pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0x11fb7d67 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x11f78294 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x11fc1d74 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x11fdbb36 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x120c2b32 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122b906d usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x122c6d63 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x1233f22e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x122b8971 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123ca1a2 __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x12417748 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x12448d64 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x124a0273 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x124f3024 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x12550e27 __SCK__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x125c75c9 hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x123cadb1 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x1254cdff shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1254ed29 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1255b6a6 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x12571d0e elv_register EXPORT_SYMBOL_GPL vmlinux 0x125e29ed _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_8AtomicU8NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x1269c275 _RNvXsP_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1273bce3 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1291a2de vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x129ba323 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x129cfcfe devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x12a5fbcb sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x12929683 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x1293a8cc debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0x12b48f05 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3fmt7nofloatdNtB6_5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x12b4ed69 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x12d22554 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x12d7324b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x12b8c9dd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x12b91535 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x12c19681 md_start EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock -EXPORT_SYMBOL_GPL vmlinux 0x12dd401a fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12ebb585 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x12e47bf2 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x12e5b6d2 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x12e74e35 dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f080f5 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x130da110 fscrypt_dio_supported -EXPORT_SYMBOL_GPL vmlinux 0x1311b444 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1326df5b dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x13239975 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134668c6 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x134bdbfe rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1340790a acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0x1356303d _RNvXsL_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x135a1450 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x135af5e3 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1363111a scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x13684142 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB5_9PanicInfoNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x1369650a _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_5WakerNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1376f1ed da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x1377293b _RNvXsf_NtCs9WMcp1Hn5Bv_4core4cellNtB5_11BorrowErrorNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x137fc04d usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x1382817e nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x1384e78b pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1379b5f9 fsstack_copy_attr_all 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 0x13955327 _RNvXs18_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25__fpstate_32__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x13991dd4 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x1399f8de gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x13ac1622 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x13af2eec sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x13bf19b5 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x13c4a988 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x13c53c4b crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x13b1710a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x13b50ddd sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x13c17615 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x13cd16f5 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d9c41d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x13e5fe2c crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f1742f fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140acdf4 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x14102424 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x1411d2b3 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x14153314 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x141b79a5 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x141cc869 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB4_14RawWakerVTable3new EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1428c6bd devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x14461ced devm_pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0x1449e256 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x142bb5ba mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x142f60c5 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x1452e0b1 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x1464cb9e acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev -EXPORT_SYMBOL_GPL vmlinux 0x146827fa dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14732ef6 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm -EXPORT_SYMBOL_GPL vmlinux 0x147d4ba0 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x147dbafa gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x148446c9 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x1499184e usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x14a73ae4 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x14840767 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x148563b8 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x14b226c0 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x14b28372 _RNvXs1A_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10xtile_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x14b50904 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x14bd87c6 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x14c52579 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x14cd3fde rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put EXPORT_SYMBOL_GPL vmlinux 0x14fa963f _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index29slice_end_index_overflow_fail -EXPORT_SYMBOL_GPL vmlinux 0x14fb1817 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x14fb7856 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x150a7318 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x150d2f92 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x1511adfa perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x150f1209 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x1512efe3 _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index10into_range -EXPORT_SYMBOL_GPL vmlinux 0x15154d7b gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x15256a68 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x151cdd00 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x15214c87 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x1528ca99 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x15319603 devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154258ce acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155785d2 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x155565ee cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x155e2994 _RNvMs1_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_10ArgumentV110from_usize EXPORT_SYMBOL_GPL vmlinux 0x155e8d51 _RNvXsO_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x15639d44 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x1565e7ee edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x156b5060 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x156fce71 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x15759e33 _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x868avx512bw19__mm512_bslli_epi1284mask -EXPORT_SYMBOL_GPL vmlinux 0x157c2344 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x158024cb _RNvXs3a_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_5NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x15835a53 agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x159a88bf __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x15961bc4 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x15ac89a4 icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b842b6 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x15bb13c5 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15c1afd9 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x15e3cd15 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x15c219b5 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x15caa80f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x15d83d3a ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x15e23e56 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x15e7fa57 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15ea4e32 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x15ef7d2f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x15f1628a fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0x15f5e560 _RNvXs4p_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_12NonZeroIsizeNtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x15f93988 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x160372e9 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x16114ed5 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x161ebe6b devres_release -EXPORT_SYMBOL_GPL vmlinux 0x16234dbf posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x15ff9fa0 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x16031ffa transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x161b91ee reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x162323ee vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x162b1b3c vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x16338238 ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x16440336 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x164438fe dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x165b08eb __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x16602129 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x16629b2d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x165814fd switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x16664fd3 sched_numa_find_nth_cpu EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x166fd03a __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1689e9b8 acpi_set_modalias EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1690cf40 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x1698dbe1 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x16a42925 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16a92e18 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x16a9b1bf _RNvXs8_NtCs9WMcp1Hn5Bv_4core3ffiNtB5_6VaListNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x16aab915 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x16abbc92 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x16c16b35 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x16bc33a2 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x16bc789c __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x16d34cf0 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16d8551e xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x16d94aa9 wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16db37e8 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16ec6ede validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16fb986e driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x16fd74e3 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x16fec596 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x16fed36c __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x16f19376 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x16f6607c irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x17066558 _RNvXs1u_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12swregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x170ca284 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1724f2f7 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x1729fe39 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x17354ce9 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x171c2221 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x17219f96 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x17366f47 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x17397753 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x173ed5f1 _RNvNtCs9WMcp1Hn5Bv_4core3str16slice_error_fail EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x1749f58c rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x174b159e pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x1744b016 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x174fd848 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt5to_u8 EXPORT_SYMBOL_GPL vmlinux 0x17560983 _RNvXsm_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_25FromBytesWithNulErrorKindNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x175a2fee _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x175fdc8e extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x1773bffc irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x17782049 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x1782ee7f _RNvXsE_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_22pcpu_hot__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x17a040bd rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1789ad8d xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x178ca0fe umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x1796693b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1796b7bb account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x17a12279 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17afe19c fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0x17bd1f5e fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x17b29a10 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x17b71137 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x17b95ab9 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x17bb184d dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0x17c8570e _RNvXs3p_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15page_frag_cacheNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x17c8d2f6 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x17ccb67d inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x17cd9cd0 _RNvXs3R_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19x86_legacy_featuresNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x17ce64c9 _RNvXs2k_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_38maple_node__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x17ce800a xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0x17da8f03 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x17deef81 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e3c69d __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x17e9f355 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x17e981fb __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x17eb6b05 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x17ec7f2f spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x17fe25c6 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x17fe9f80 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18032a23 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x181a571c serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x181b0cda genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x18252575 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x1829f1d0 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x181be435 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x182a20a5 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x184531dd spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x18463891 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x184c3e69 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x184776d3 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x1849e577 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x1854e0e4 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core5slice5asciiNtB5_11EscapeAsciiNtNtNtNtB9_4iter6traits12double_ended19DoubleEndedIterator9next_back EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x187a4713 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x187ee98f cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x1883996a iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x187c31e9 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x1881e770 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x18897d8d _RNvXs1q_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1898721b pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x189a0d28 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x189fcab2 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x188ed38e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1890eb26 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1895ac28 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x189a0965 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x18ad37cf spi_setup EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x18bf6b74 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x18c2db2f of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0x18d40791 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x18dbaf5d sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x18b2f31a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x18c89c04 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x18ce5f61 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x18de2d28 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18eb4319 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x18ec0fde __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x18eebe23 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_16CharTryFromErrorNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x18f63d49 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x18f137ae pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fdba53 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x18ff86d6 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x19000733 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x1912066b iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x18fcd476 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1904fbee rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x191658b0 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x1927f7fa tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x192be48d rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x193997b9 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1932ebf0 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x19368ab6 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x19417e06 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x1947b629 _RNvXs32_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12mm_context_tNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x19498de1 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x194b5ab9 _RNvXs1_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeUnicodeNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x194cecc4 _RNvXs3x_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9mm_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x195010f0 _RNvXs44_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_39local_apic__bindgen_ty_29__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1955cfae pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1957c743 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x195a40a6 _RNvXsI_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1986f08c uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x1998227b fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x199bc5c5 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x197ca559 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x19815654 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1986d1d8 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x198d3301 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x19915c9f reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x199e877f __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19aa38b2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x19c39512 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x19a7004a uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x19b8b966 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x19befea8 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19c580da rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x19c845b8 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x19d91c2b i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x19d97da2 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x19dc4d38 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x19de48bb access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x19daf104 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ed2ab0 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x1a0f4c32 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x1a067801 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a12c4de __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x1a10d273 sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a2273af hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x1a231607 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x1a16aa94 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x1a19890b __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1a31c820 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x1a68fb50 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie EXPORT_SYMBOL_GPL vmlinux 0x1a782127 _RNvXs3q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9vm_regionNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1a7e8329 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a7c57c6 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a8e5bcd gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x1a8f5467 _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh10trim_ascii -EXPORT_SYMBOL_GPL vmlinux 0x1aa95b7e driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1a98012d set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1a984204 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x1aac12d6 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x1ab147d9 _RNvMsb_NtCs9WMcp1Hn5Bv_4core4timeNtB5_18FromFloatSecsError11description EXPORT_SYMBOL_GPL vmlinux 0x1ab2584c _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1ab373fc cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad3e0d7 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x1af0dbd6 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1adc78ef __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x1aeb5273 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x1aef0f3c devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af9c3e7 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain EXPORT_SYMBOL_GPL vmlinux 0x1b03d9d7 _RNvXst_NtCs9WMcp1Hn5Bv_4core3numoNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b079027 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1b24d49b __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x1b28e0f2 __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x1b2ecb4f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x1b0a56d8 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x1b127cfd platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x1b2217dd crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1b28b21d bus_register +EXPORT_SYMBOL_GPL vmlinux 0x1b39cc49 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x1b59b2f5 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b614c3b simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x1b6e2989 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1b6f9add regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x1b714f4e class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1b75c985 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b88df62 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x1b8d418e __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9376bb fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x1b962c48 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x1b9d6586 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt7from_u8 EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid EXPORT_SYMBOL_GPL vmlinux 0x1ba49eae _RNvXsl_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_7qrwlockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1bbf588a fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bc90b58 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x1bce255f _RNvNtCs9WMcp1Hn5Bv_4core9panicking15panic_no_unwind +EXPORT_SYMBOL_GPL vmlinux 0x1beddb70 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x1bf3d517 _RNvXsu_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_7__ddebugNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1bf86c41 __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x1c0a0a45 _RNvXs10_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20paravirt_callee_saveNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1c14f89f regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x1c177d65 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x1c18a48c usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c242ec4 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x1c25e396 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x1c31b9c5 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x1c4924b1 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1c21f333 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c221527 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x1c30635e relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x1c3b651e spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1c3c2434 component_compare_of 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 0x1c60925c dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c7835db pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8803a2 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x1ca2aa31 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1caa6cb1 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x1ca99089 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1caa1fbb sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cbb9bcd gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x1cbbb57d watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1cbca9d6 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd84fa0 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x1cbf9ef8 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x1cc15055 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x1cd0f26c lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x1cd4dd5d gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1cdde65d gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x1ce02d4d ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x1ced8374 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB4_22FromBytesUntilNulErrorNtNtB8_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x1cf27db9 _RNvXs3H_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1cfe4804 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d0ff8c8 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1d190d2c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x1d1d870a pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d26af95 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x1d280f91 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1d28984b pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d46422c fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x1d4a7066 _RNvMs1_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_11DebugStruct21finish_non_exhaustive -EXPORT_SYMBOL_GPL vmlinux 0x1d568698 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0x1d5ec1f8 _RNvXsc_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m128iNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1d63af66 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1d82bfb1 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x1d89cf99 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1d8b4027 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x1d92da28 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d733ab8 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1d7e7315 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1d7f75a5 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9eed92 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x1db5174e _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings7WARNING -EXPORT_SYMBOL_GPL vmlinux 0x1dbe29b0 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x1dcff715 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x1dd72f8b noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x1de73153 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x1db682d2 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1dba6990 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1dd89e59 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1ddbb5b5 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1de0a1e0 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x1def9b29 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x1df3ba35 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1df6614d nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfa7f6a pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x1e02059e serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0x1e03c72f _RNvXs2_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator4last EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0826a8 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x1e0e320f kill_device +EXPORT_SYMBOL_GPL vmlinux 0x1e0e8fbb __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id EXPORT_SYMBOL_GPL vmlinux 0x1e1e5f10 _RNvXs3o_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_5folioNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x1e3817a3 sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x1e3dc2de ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x1e407042 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x1e408312 xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e44d8c2 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1e457e3e lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e569455 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e5c9b1e __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x1e605c98 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1e642f6f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x1e707b8a acpi_dev_ready_for_enumeration EXPORT_SYMBOL_GPL vmlinux 0x1e777264 _RNvXs36_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e83930e usb_root_hub_lost_power 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 0x1ea56319 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x1ead109c crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x1ead8fb8 _RNvXs39_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_4NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1eb481cb kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebab323 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecd91a8 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1edc58c5 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x1edc95b9 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x1eeb6b18 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1f1ad7ba phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1f155b4d pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x1f1d6ccb pci_device_group EXPORT_SYMBOL_GPL vmlinux 0x1f1e6be4 _RNvMs0_NtCs9WMcp1Hn5Bv_4core3numl14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x1f3196ce inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1f36819f task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f44a789 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f44ddc9 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x1f44ef1d _RNvXs10_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB8_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x1f48b0af _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1f4b1bcf set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x1f4b5c25 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x1f4bf0b5 _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_10DebugTuple5field +EXPORT_SYMBOL_GPL vmlinux 0x1f4f0014 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f5fd2dd pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x1f62606e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f649ede regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x1f6bf5f3 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x1f768998 _RNvXsJ_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_8___m512bhNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1f80fb25 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f94352c fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x1f9d1743 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x1f9d2442 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb8785a pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x1fbbc8b8 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x1fa73f27 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1fb21813 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x1fc6d8b3 _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo7message EXPORT_SYMBOL_GPL vmlinux 0x1fcc0934 _RNvXs2p_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8ma_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1fcc42af tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1fe016bc ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x1fe00af3 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x1fe5e950 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fe70bc3 _RNvXsd_NtCs9WMcp1Hn5Bv_4core3fmtbNtB5_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x1fe8fb16 _RNvXsU_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_11EmptyNeedleNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1ffe0979 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x2005c391 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x2009242e spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x20110118 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2023d2d2 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x2019870f devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2030be0b fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x203b5fda icc_put EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x20557901 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x205c4d76 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2060969d gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x2060bf28 _RNvNvMsx_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_12NonZeroUsize13new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x20740a27 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x20809970 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x2063c045 dax_inode EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x20857721 _RNvXs3S_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16x86_platform_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x20896208 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x2087ffea __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x20971c58 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x20922e9f usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x2097f8d9 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20ad71e5 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x20c6b32d rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x20d47ccb inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x20d97731 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x20e0589b dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x20e1e2ea spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x20b1841f devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x20b2167f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x20b325a3 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x20dcff5b pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x20e46867 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x20e8f669 _RNvXsw_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_16ddebug_class_mapNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x20e99c10 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x20f06399 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x20f51d8b ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x20f5c5de pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x2101fa9d regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x21094cfb smp_ops EXPORT_SYMBOL_GPL vmlinux 0x21147da4 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3cmp5implszNtB7_10PartialOrd11partial_cmp EXPORT_SYMBOL_GPL vmlinux 0x2123979e _RNvXs12_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x213311cb ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x213b0f7d device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x21417068 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x21591d44 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2161849e blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x21622cc8 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2129a96f udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x212b5032 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x213b8bde tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x21411318 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x214772af pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x214c3e3f wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x214ed0c3 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x215ab763 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x21647ad5 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg EXPORT_SYMBOL_GPL vmlinux 0x217b2c1a _RNvXs19_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x217c7930 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x217fbaef _RNvXs1U_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_11EscapeDebugNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x21a4784d ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21b120c9 _RNvXs5_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impyNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x21bc1963 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21c95f17 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d0609b bus_register -EXPORT_SYMBOL_GPL vmlinux 0x21d3e772 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x21da80d0 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x21df26ba phy_create EXPORT_SYMBOL_GPL vmlinux 0x21e337e5 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data10alphabetic6lookup -EXPORT_SYMBOL_GPL vmlinux 0x21ed6f82 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2203f328 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x221301dd clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x222061b7 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x2222285d devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x223946ac pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x223bc78b dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x223f78c8 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x22437ce7 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x2249c17e usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2250f012 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x22019841 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x221b230a platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x224124ab regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x22546021 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x226ab24b i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x226c394f _RNvXs4o_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_11NonZeroI128NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x227083b7 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x226d415d rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x226da869 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x22712c65 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x22731273 pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x2277aad4 _RNvMs_CsiTPnVqBGVaY_6kernelNtB4_10ThisModule8from_ptr -EXPORT_SYMBOL_GPL vmlinux 0x2285bfc6 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x228f1288 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x22900beb ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x2280e526 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x228ce298 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x2295d9c6 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x22a158a8 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock EXPORT_SYMBOL_GPL vmlinux 0x22abb826 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x22accfb4 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x22c68834 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x22ac071e folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x22b04359 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x22c0e182 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x22cd0ab6 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x22d2af98 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x22d38afe acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x22d3e1ee usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e0f09d __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x22fb3527 _RNvXs1l_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10saved_msrsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2305fd44 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x230d52a7 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x231e5301 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x23336c1a tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x2336cf4e serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x2339f1ef tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x230f4a30 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x231344b4 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x231ad617 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x2327668f ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x232acaa0 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x23360fec iomap_file_buffered_write_punch_delalloc EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23421c11 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x23433149 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x2349403a pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234d050b platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x235cb855 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x235dbec1 _RNvXs2_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3implNtB9_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x235f9089 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f32f7to_bits13ct_f32_to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x236ee14c fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x23722719 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9debug_set EXPORT_SYMBOL_GPL vmlinux 0x2379dfa7 _RNvXs2c_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_42maple_range_64__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x2392e2fa irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x23951120 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x238ae62c i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a66742 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23cd44a6 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x23cf7373 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x23eb87e6 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x2403dada __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x23b85d54 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x23bea7dd find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x23cda91f gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x23e0fdfb sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x23e48098 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x23e5f32d crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x24148396 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x24195a06 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2435ac63 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x2435c353 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24358a45 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x24368bf6 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x2442e6e6 i2c_acpi_new_device_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x245425d3 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x245eccf3 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x24478176 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x245fd62b scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x246e0788 _RNvXs13_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2473c09b l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x247858cb devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x2482ab59 pinctrl_find_gpio_range_from_pin 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 0x24a27b5b fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x2493c7f5 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24bd3cec xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x24c4ebb8 zone_device_page_init -EXPORT_SYMBOL_GPL vmlinux 0x24ca8703 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x24cf305f nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x24d4032f devres_add -EXPORT_SYMBOL_GPL vmlinux 0x24d472dc firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x24ae2c6b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x24b93ff6 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x24c2691c ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x24c9d718 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x24d5b298 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24eaec53 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x24dea21d fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x24e74ca7 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f846c7 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x24f3de24 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x24f71a8a i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24ff95e4 irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0x250432bd blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x250e5093 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x2517c74c devm_regulator_get_enable_optional -EXPORT_SYMBOL_GPL vmlinux 0x252fac2a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x250b246e br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x2516ce69 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2519c873 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x251b2e24 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x251e5747 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x251f0266 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25263dfd gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25375878 vcap_find_admin EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253bc9d4 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x254c4bfb irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x25389652 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x25465bf6 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x254afa14 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x254d07c9 _RNvXs2u_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10completionNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2561f913 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x2563437c _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x257f4b16 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x2577d402 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x257eb69d efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25852ed3 shake_page EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25983e8d regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x259f90a6 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x25b37235 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x25b47f0f __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x25b6b44f iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c4bfd6 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x25d0aa87 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x25d168a5 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x25d65d51 __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0x25d8104c _RNvXs7_NtCs8dagVACJQAP_5alloc11collectionsNtB5_15TryReserveErrorNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x25d84495 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x25e41b9a synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr EXPORT_SYMBOL_GPL vmlinux 0x25f1036b _RNvXs0_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith9AddAssign10add_assign EXPORT_SYMBOL_GPL vmlinux 0x25f3a67b _RNvNtNtCs9WMcp1Hn5Bv_4core5slice6memchr19memchr_general_case -EXPORT_SYMBOL_GPL vmlinux 0x25fbf254 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x260fac6b mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x25ffdb4d blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x2619258a gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x26197f06 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x26220964 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info EXPORT_SYMBOL_GPL vmlinux 0x262a9976 hv_vp_assist_page EXPORT_SYMBOL_GPL vmlinux 0x262e08b7 _RNvXs37_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6u16x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x262f3597 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x2642dabf pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x264a154e xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x264b4bb7 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x263622ab raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x264535fc devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265a537c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x26545c0b apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x265ac032 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter15debug_lower_hex EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265f64b1 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x2663e141 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2665fa8a ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x265c4d58 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x265ea42c wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x2668c10b __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266f26dd usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x2677e2b9 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x2683191d _RNvXsF_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_8pcpu_hotNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2686a7b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x268ad8e0 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x268cfe6b regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x26a705fe mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26a9871a _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings6NOTICE EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b6cdd0 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x26b72c1b phy_modify EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any EXPORT_SYMBOL_GPL vmlinux 0x26d9ccb6 _RNvXs6_NtCs9WMcp1Hn5Bv_4core3ffiNtB5_10VaListImplNtNtNtB7_3ops4drop4Drop4drop -EXPORT_SYMBOL_GPL vmlinux 0x26dde6eb regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x26e2a8b4 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x26e2ed91 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x26eaf751 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x26df1f65 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x26dfedcc rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x26e10949 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x26eb81dd __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26efb6a3 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x26f459dd dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x26f94e0c __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x27077bc8 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x270854d8 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x2710750d register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x26f3121e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x26fb095f devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2714781a serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0x27147821 _RNvXs4e_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_9NonZeroU8NtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x271c814b _RNvNtNtCs9WMcp1Hn5Bv_4core5slice6memchr7memrchr -EXPORT_SYMBOL_GPL vmlinux 0x2728d652 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x2729200b sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x27346b30 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x271e5272 input_class +EXPORT_SYMBOL_GPL vmlinux 0x272f138c proc_get_parent_data 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 0x27473a3b gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x27485516 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x27412a54 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x274eb3d4 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x27551b1a _RNvMsr_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_11StrSearcher3new -EXPORT_SYMBOL_GPL vmlinux 0x276f96cd usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x275b9093 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2768d170 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2771e2a3 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x27786d48 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x27b34f88 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x278b55ce xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x278d8124 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x27a3bcf0 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x27c04263 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x27eb1068 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fbb933 power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0x280a3174 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x27fc5cfe set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2803554e extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x28123dac devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281c72c0 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x28274180 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x2829d3d7 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x282c4a06 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x282c5637 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x28190722 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x283a238d dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x2850b1c9 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x285c039c ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x285cf974 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x284fc87b sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x285126ae device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x286e2364 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x2872408d posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2880d038 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x286d4af6 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x286e6c7f genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x2877371d regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x288147bd _RNvXsx_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_6___m512NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28a5bd1a crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x28a965b0 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x288dfe7c regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x288f1298 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2894f0a0 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x28a9c35a __traceiter_pelt_rt_tp 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 0x28b4fe71 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28bf15d8 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x28d1bb3f xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x28dd262a wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x28be60a2 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x28c15767 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28eb5d49 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x28ea5639 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x28f0840a iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x28fb123d pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x28fc0db8 _RNvXsl_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11Sip13RoundsNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x28ffd3e0 mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x2901e38a _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index22slice_index_order_fail -EXPORT_SYMBOL_GPL vmlinux 0x29081d50 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x29167427 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x2902b23b tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x29044456 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x290ad66d pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x2915cc30 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291e96d1 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x292f313d crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x293d0590 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x294b7c1c pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x295f3721 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x297106d4 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x29769bc9 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x29560eac pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x295e83ba power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x2973b6da devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x29782f7e _RNvMNtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB2_21FromBytesWithNulError13___description -EXPORT_SYMBOL_GPL vmlinux 0x2978664d cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x2991ba84 _RNvXsd_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impmNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2996ac93 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x299836b2 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x29a06420 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x2996e3e7 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x29a3471f _RNvXsx_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x29abbdbd int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x29b652cb usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x29bb7ab8 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x29cd6b08 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x29a5a7e4 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x29b05079 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x29b84823 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x29bdd97e usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x29c0d201 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x29c4df62 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x29e2ce1e skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x29e9e6ba tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x29d85f39 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x29de0346 acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a090fcd dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x2a09454a mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x2a2990f1 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x2a0dfc31 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x2a126824 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2a214fb1 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2a2e0dd0 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms EXPORT_SYMBOL_GPL vmlinux 0x2a36650e _RNvXsi_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m128dNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2a386696 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x2a3b2567 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2a3bb51f serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x2a46ad51 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x2a5bac9b unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x2a5dc065 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2a3bbbad ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x2a4dc74f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2a56b28a devres_release EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a9274bd strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x2a741b71 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x2a92dd98 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core5panic8locationNtB4_8Location20internal_constructor -EXPORT_SYMBOL_GPL vmlinux 0x2a9590b8 xfrm_unregister_translator EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aac7168 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2a9c2312 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x2aa8000d da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ac9f972 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2acfeabb iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x2ad443ac dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x2ae91ac6 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x2aea9a99 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x2af9110e usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x2afbd2af __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x2afeee46 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x2b021057 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x2b0b8eca ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ab431a7 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2abab4b3 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2add0cc0 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x2ae63a19 gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback EXPORT_SYMBOL_GPL vmlinux 0x2b1127d7 _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr13read_volatile8comptime -EXPORT_SYMBOL_GPL vmlinux 0x2b13b377 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x2b14e5da clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x2b18b530 _RNvXsr_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15static_key_trueNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2b2e6d8b skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2b395f63 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x2b319c23 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b43d4e4 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b45ca3a crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x2b491422 _RNvXss_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_22FromBytesUntilNulErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2b59f835 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x2b57901c ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b627c2b rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x2b652a7e _RNvXse_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_9SipHasherNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b6bebf5 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b70ac6d ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2b71aad1 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x2b7da2c2 _RNvXs4k_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_9NonZeroI8NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x2b8d8ee9 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x2b94a076 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x2b967880 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2b97456e sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b7ec6dd switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x2b80015b dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x2b93e722 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2bb4a1c3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x2bba040a pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x2bc2b32a __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2ba5973f kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x2ba6bf42 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2bae411c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x2bc5cfed __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x2bd6f66a devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2bda81c8 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2bde400f pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x2bdd084e mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2bebd82e irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x2beefe97 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x2bf109a1 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2c046fa5 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x2c07b1fb pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x2c09b293 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB4_15TryFromIntErrorNtNtB8_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2c15871b __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2c0d2cb1 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x2c0e0d0d tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x2c0e5596 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x2c0ff92c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x2c14269e kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2c1930f4 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x2c1f281c filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2c1fd24b devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2618a7 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family -EXPORT_SYMBOL_GPL vmlinux 0x2c303487 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c337e17 _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp15copy_from_slice17len_mismatch_fail -EXPORT_SYMBOL_GPL vmlinux 0x2c410d2f crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x2c3628c2 blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x2c415d53 _RNvXs3d_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_7NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2c489ca1 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x2c526ed0 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c5f1670 skb_copy_ubufs 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 0x2c6c1696 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x2c6ed997 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x2c7820a1 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2c66b2c4 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2c70bb8d wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x2c7c5a79 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt5to_u8 EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c818569 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x2c81a55c spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c8579f4 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x2c862a8c of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c9349ae __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x2ca595c4 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2c959b59 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2ca7a1a8 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request -EXPORT_SYMBOL_GPL vmlinux 0x2ca8ff52 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x2cace6bf synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x2cb36059 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x2cabf6a4 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0x2cb67855 _RNvXsa_NtCs9WMcp1Hn5Bv_4core3fmtzNtB5_5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2cb70932 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2cb6dd98 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2cb9139e gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x2cb9a9a8 __devm_clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x2cc1791c _RNvXs_NtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB4_9PanicInfoNtNtB8_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2cdc1045 devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x2ce7e6ad pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x2ceb94da ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x2cf1798a aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x2cf69721 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2cd6efc5 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x2cdcf725 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2d011a29 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x2d063aed dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2cfd5e34 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d14ee3a to_nd_region EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1da6b7 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x2d2c55ba mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d38efcc lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element -EXPORT_SYMBOL_GPL vmlinux 0x2d3b9ffb trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2d3bf0b4 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d43821e xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d4d1960 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d5567b6 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d6c57be thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2d6cefe0 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d7f8e03 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x2d7d0e3c debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x2d81a8a6 _RNvXs31_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u8x32NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2d862a1c uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2da0349a dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x2dab3a7c acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x2daeb908 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x2dafbcd4 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x2db43195 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x2dc523bb genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2dc651d8 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x2dcb2c4b _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2dcb6925 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x2dd53c2c _RNvXs3j_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u64x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2dd76df8 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x2dda249f __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x2dff9b35 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x2de1bc37 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e0d8d66 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e25d6dd __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2e27398b __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e368168 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2e4528be fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x2e5032a4 _RNvXs3K_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8zonelistNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2e5175ce dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2e5caf47 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x2e5d2a05 rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x2e68f3f3 _RNvNtCs9WMcp1Hn5Bv_4core3str19slice_error_fail_rt +EXPORT_SYMBOL_GPL vmlinux 0x2e754a96 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e8210a5 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x2e847ba5 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2e90544f xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x2e93a894 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e97ea13 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec96364 _RNvXs2b_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14rb_root_cachedNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2ed3c935 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x2ecd8f61 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2ed6fcc9 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2edeaa01 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eea6068 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x2f004d59 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x2f02ee8a do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1df3f7 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x2f26e3a6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2f18a3f4 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x2f1e471f xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x2f1fa25d vcap_keyfieldset EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f499611 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4ec360 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2f5df748 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2f5e7062 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x2f61d8a4 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2f638173 xenbus_dev_is_online EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f7364c0 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x2f78c07c _RNvMNtCs9WMcp1Hn5Bv_4core3stre14escape_default -EXPORT_SYMBOL_GPL vmlinux 0x2f82d787 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x2f87905b skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x2f9fcf8c devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x2fa81ac5 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2f7a3405 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2f87fc48 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x2fa45c0e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x2fb3b661 mmput +EXPORT_SYMBOL_GPL vmlinux 0x2fb5cec7 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x2fb864c5 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fcd2788 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2fc635cb crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2fc668ff handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2fc84124 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x2fcc9399 devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x2fd93a24 _RNvXsc_NtCs9WMcp1Hn5Bv_4core4timeNtB5_18FromFloatSecsErrorNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2fe79aa2 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2ff48810 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x2ff48be8 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x2ffc7179 put_device -EXPORT_SYMBOL_GPL vmlinux 0x300c3562 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x300c3f23 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x30295dff node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x30411a02 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x30472326 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x3050e238 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x30562d6c dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x305eb374 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x2fde9417 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2fe6e479 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x30012dba __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x30129b02 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x3012c1d6 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x301c5f8a fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x30323bdb crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x3034cc96 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30464939 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306b9f8e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x306b8e01 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x30711b40 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x307bbe80 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x30943909 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3098630e pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x30bbbeda skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x30c39167 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x30c8875c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x309ce994 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x30a4dc6e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x30a70a59 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x30ae6de6 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x30bbbd10 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x30c54030 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x30cad63c rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30d8440e bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x30dd7e5f kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e58ea8 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x30fd5597 finish_rcuwait -EXPORT_SYMBOL_GPL vmlinux 0x3101121a bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x30ec2858 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x30f29d52 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x30f49829 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3106d963 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x311021a4 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x31036ddb tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3115db86 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x31245259 fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312935b8 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x312b4f45 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x312cc63c find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x3133b2fa phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3130d139 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x31315a15 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi -EXPORT_SYMBOL_GPL vmlinux 0x3135fc2c mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0x313f1042 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x3154f635 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x315fa0b4 _RNvXs25_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15pcpu_alloc_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x316b8c00 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x3170f446 _RNvNtNtCs9WMcp1Hn5Bv_4core7unicode9printable12is_printable +EXPORT_SYMBOL_GPL vmlinux 0x3174f2b7 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31759c42 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3176b410 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x31878e65 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x319674d9 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt6to_u64 EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x319e6828 _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB5_5BytesNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x319ea757 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b488be devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x31c3d151 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x31a9de78 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d11281 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d6d78f sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x31dc37fa acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x31d8cd4a fb_deferred_io_release EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x3208beee devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x31e05002 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x3230d6ac platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x32448eec __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x32523f0f iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x32349899 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x3235a634 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x3240136d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x32530bf3 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x325586ff ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x325f3312 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x326f16a5 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x327165b4 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x3276d4c0 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x32772b89 _RNvXs1F_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u16x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328ac26b driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x328b3908 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set 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 0x32c4a483 _RNvXs3_NtCs9WMcp1Hn5Bv_4core5asciiNtB5_13EscapeDefaultNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x32c5a928 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x32cb0d24 dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x32cd0440 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x32ddebff sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x32dc8060 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x32ddccce dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x32dea403 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32ed165b blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x32f4e767 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32f8acdf nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3300352d platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x330c4d8e hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x330f7213 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x331f0bae __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x3329fc89 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x332fdfcc __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x3330208b pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x333e7037 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x33439c69 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3353e755 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x3331f5b6 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x33374712 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x333ab3de access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x3360926c ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x337be088 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x3382b084 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x3386c111 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x336b32cf sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x336e435f ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x3383ed5f sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x338599f9 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x338be58d usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x338c3ab4 _RNvNtCs9WMcp1Hn5Bv_4core3str19slice_error_fail_ct -EXPORT_SYMBOL_GPL vmlinux 0x339c02e3 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x33a682bf __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x33b99ff2 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x33bda7ff pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x339357f6 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33adfc78 vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery -EXPORT_SYMBOL_GPL vmlinux 0x33d2514a __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x33fb22f5 pci_free_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x34013cea ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x33ca4091 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x33cdbaf9 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x33cf2789 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x33cf2e40 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x33e6d359 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x33e97fb6 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x340584eb srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x3416d44b __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x341d5504 nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x341d5e3c _RNvXs1m_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17trace_print_flagsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x341f8bd4 _RNvXs1P_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_15SplitWhitespaceNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x34299c0a nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x3422cb90 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x343fffe0 pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344636eb reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3443a5d8 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3448a1ab pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3448d0be __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34573af1 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x345ad9b6 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid -EXPORT_SYMBOL_GPL vmlinux 0x346b7e3f usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x347221a7 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x34793d73 md_start -EXPORT_SYMBOL_GPL vmlinux 0x347a13f1 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x347e7424 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x34863d91 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x34897f12 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x34aebe9f ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x34a4d440 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x34b79536 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x34c1bf0a pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x34c79f5f __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x34cf2b17 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34db67ec irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x34db475d device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34e349b2 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x34dec4fa usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0x34e4ace6 __rg_realloc EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34efca56 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x34f0498d _RNvXsm_NtCs9WMcp1Hn5Bv_4core3numxNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x34fd024a crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x35102129 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x3510b2d3 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x3519d82e crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x351d1648 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x351e36f2 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x35286896 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x351ecf4e cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35302f89 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x3535dcd2 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x354c7789 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x354c67ae debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x3552a5c3 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355d0787 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x35691649 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x356eef29 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x357147e8 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x3572e1a6 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x35794580 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x357eb4aa gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x35861d31 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x35712c2b fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x3572dcd0 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x35897eaa sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x358e066c fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35ba62c5 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x359199a6 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x35aa4c7d pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x35b01410 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x35bc99ca ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x35d0f834 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d9c0f2 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x35e47346 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x35ee0b00 _RNvXs20_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16wait_queue_entryNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3606b670 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x360bbe69 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x3611c4c9 PageHeadHuge -EXPORT_SYMBOL_GPL vmlinux 0x3613d0f2 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x35ee1fb5 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x35ef519d crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x35f975a4 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x35fad539 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x3601041d edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x36050a9d io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x360ec064 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x361d97b8 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36409c93 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x3650846a dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x3654dab3 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x365ad9b8 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x365c2808 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3626c0b1 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x36404ca7 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x3649b8a8 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x366063f6 blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0x366598ca _RNvXsj_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imphNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x366a0567 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x366dde01 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x366f2b2f follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x3668609e usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x366f3bdf pwm_lpss_tng_info -EXPORT_SYMBOL_GPL vmlinux 0x36845862 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x3689d21c kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x368bb5b8 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x369cebc6 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x36976747 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x369a5a90 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36addee5 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x36b40493 _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntError13___description EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36d5777a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x36bf0562 icc_get EXPORT_SYMBOL_GPL vmlinux 0x36dc9820 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter19sign_aware_zero_pad -EXPORT_SYMBOL_GPL vmlinux 0x36e453c7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x36e6e9cf int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x36f6dc95 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x37091ee8 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x3712cffe pwm_put EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3717653f shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x371a6d29 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x371b3a5f pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x371f5fb0 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x372055db pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x372804e1 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x372960cd get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x3737398f __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x374706ff pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x3748d531 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x3750009a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x37275fd8 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x3741d161 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3744d224 devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read EXPORT_SYMBOL_GPL vmlinux 0x37523f15 _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index26slice_start_index_len_fail -EXPORT_SYMBOL_GPL vmlinux 0x37546f4e dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x3765d0ab blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x37717e14 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377fa038 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x37845b2b serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x378c3a38 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x378c77e9 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x3789dee0 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37947d1e gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x3799e41a _RNvXs1F_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_3fpuNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x379fe2cd _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings4CONT -EXPORT_SYMBOL_GPL vmlinux 0x37a0ee18 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x37a68503 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x37a8ed4b rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x37aea9af _RNvXs1_NtCs9WMcp1Hn5Bv_4core3anyDNtB5_3AnyNtNtB7_6marker4SyncNtBG_4SendEL_NtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x37b40f4a housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c2ec46 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0x37c61dbd unregister_ftrace_direct_multi -EXPORT_SYMBOL_GPL vmlinux 0x37cf17c8 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x37dddfcf pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x37e2be5b cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x37eadaeb sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x37f81298 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x37c97541 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x37ea047d devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38022dd7 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x38092dac cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x38098a36 max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x3816e5a5 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x381f5232 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3818f2dd pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x381af34b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x381dcec7 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3827ec71 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x382e785a tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x384e7984 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings5ALERT +EXPORT_SYMBOL_GPL vmlinux 0x38551bef __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x385e846b unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38686b8a regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3886475c regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x389b0ed8 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x387b1ff9 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x38918ef2 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b17255 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x38ac3fe1 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x38b39121 fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x38b6bb73 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x38c47021 _RNvXNtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impaNtB6_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x38d2bc2b regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x38d5688b fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x38db0a3c iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x38dc80cb dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38dfc28a ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38caef07 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x38d20b8e __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2cf56 acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x38e6b9d9 _RNvXs3c_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_6NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap -EXPORT_SYMBOL_GPL vmlinux 0x38eb34aa gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x38ffe6ec sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x39005326 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x3910039a pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x3913bba3 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x391b8ec0 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x392d4e68 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x39462c23 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0x3946db02 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x390491e7 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x390aed15 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3912c324 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x391c8aa2 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x391d8127 device_create +EXPORT_SYMBOL_GPL vmlinux 0x39212f71 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x392c84b3 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x393c2e88 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x39522d54 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x395661d9 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x3961f598 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x39683cfa pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x396c0b00 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x39897277 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x398b1d9b ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x3993dba3 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x39a2202e regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x39652aba __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x39975bc6 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39a879da clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x39a996a0 od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39af54bc device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x39be241f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x39b3f1da sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x39bf59a9 init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x39c8772c intel_pinctrl_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39e889ce phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x39f95e3c sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x39feada7 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x39ed35ff tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x39f7091a crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3a0c321b bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3a1f1bcb _RNvXs2T_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25arch_uprobe__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a2f3e66 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a349047 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x3a36a7b3 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3a36f055 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x3a2acc6e serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0x3a3f1e64 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3a4075c2 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x3a453dd8 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x3a4ea9c6 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a53b074 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x3a5dca4e _RNvXs1M_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13x86_io_bitmapNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3a6ab8cb regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a7fe294 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x3a82beca md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3a8480e2 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a849ae3 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a91a4e1 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x3a965d74 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x3a9770b9 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x3a8deff7 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x3a9995af strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9f3233 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x3aaa575e fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x3aaea5e2 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x3aa0b2a7 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x3ab19c5a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ab6c5b0 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x3ab7e256 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3abb3838 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location -EXPORT_SYMBOL_GPL vmlinux 0x3ac342fd dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3aca5375 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3ac6faae crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ae14885 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x3ae50092 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3af7c5d1 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x3afaedb0 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x3b00032d fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x3b016c32 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x3b193802 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3afd2e61 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x3b2a8f81 _RNvXs1L_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x3b37da4a kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x3b3ac07a _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3b3e3ee7 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b5865fd skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x3b61810a __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x3b5f57f8 isa_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 -EXPORT_SYMBOL_GPL vmlinux 0x3b7d2f9f pstore_register EXPORT_SYMBOL_GPL vmlinux 0x3b865767 _RNvXs18_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3b9a1871 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba82730 pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3bab3f58 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x3bab595c acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3bac40aa rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x3bb89c19 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x3bc3b483 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3bc7724e sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x3bc77aef kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x3bcc740a tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x3bce52b1 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x3bd90679 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x3bd7c560 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x3bdafc89 _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr7replace8comptime EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bde966c mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x3bdf21a1 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3be8de56 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x3bf131d3 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bf159a3 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf3e5c8 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x3bf79fb3 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_15TryFromIntErrorINtNtB9_7convert4FromzE4from -EXPORT_SYMBOL_GPL vmlinux 0x3bf809cd __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c10e605 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3c11be31 of_pwm_single_xlate EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c29f8e2 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x3c327abf hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x3c1fd92c wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x3c20e05c __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x3c2f5d0b wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x3c36ba45 _RNvXsO_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_17edd_device_paramsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3c416bf9 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c4a5266 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0x3c642974 __rust_dealloc -EXPORT_SYMBOL_GPL vmlinux 0x3c648813 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x3c666f5b cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c733664 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c77ef5b pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x3c807c50 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c87d039 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x3c8395da __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x3c83bebb inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x3c985b70 _RNvXs1L_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_5LinesNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x3cabaadc __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x3caff8ce xfrm_register_translator -EXPORT_SYMBOL_GPL vmlinux 0x3cba03a5 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x3c9a01ed dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3ca69b75 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd44f33 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x3cdaf92d trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3cedcb84 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x3cf164c2 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cfad198 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x3cfde8e5 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x3cd5f2bd acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x3cf3cab2 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3d10d65f netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d156311 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x3d1f78e1 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x3d32ef45 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3d050f99 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x3d12c0da regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3d1d0d0d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d344dd4 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3e8940 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d63945b pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d65ee13 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x3d69d04d tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x3d6cf822 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x3d512c4e pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d529ae1 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3d54e1b7 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x3d64d619 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3d67c4fc shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8dfced da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x3d9412f6 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3d9eeded _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data5cased6lookup EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daadd6e mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x3dbb1d7e dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3dab9e23 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x3dbdf379 _RNvXs13_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10pv_mmu_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3dbfca86 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3dc00745 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x3dc48266 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3ddcfefb dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x3de375f5 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df3823f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x3df46fcf regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3df81fcf cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3df86801 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3e0197a2 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x3e08b8e1 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3dfdd079 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x3e01cb1e ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e1e358b firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e1fd637 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x3e216685 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x3e232907 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x3e2a8666 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x3e327153 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e15b7ec hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x3e1a66f4 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x3e22f66c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e30ad13 phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e414d61 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x3e451686 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3e460536 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e47e36a blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x3e4a0d6b _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3e4a29e0 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x3e4e19f1 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x3e56540e devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3e5f0d70 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3e5a3689 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x3e6d2ce6 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7272f2 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x3e729656 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0x3e7917d9 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3e84fed9 _RNvXs27_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9page_fragNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3e861058 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x3e8af482 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x3e8b1ffa vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e8623aa pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e93bb09 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup EXPORT_SYMBOL_GPL vmlinux 0x3ea9a6fd _RNvXs1o_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15tracepoint_funcNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3ebb702f metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3eb28587 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x3eb483b0 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3eb81f60 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x3ec1acb6 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x3ec8bb31 blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type -EXPORT_SYMBOL_GPL vmlinux 0x3ecff10d bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x3ed988ad perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3ed3b4ca device_property_present EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3edc1dad xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x3ede5f83 sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x3ee3b948 _RNvNvMs_NtCs8dagVACJQAP_5alloc3vecINtB6_3VecppE11swap_remove13assert_failed EXPORT_SYMBOL_GPL vmlinux 0x3ee77cce _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp14swap_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efdd3ad sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x3f05f300 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x3f193385 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x3f2cc7c1 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x3f084803 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x3f0c0b70 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x3f1bd3cd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x3f1f323c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f25fa43 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3f276a0b usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x3f2ddf83 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f335dc2 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x3f3cd9c9 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f49603a blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x3f49e583 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x3f6c96dc iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x3f760a36 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3f7d6ea6 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x3f8087ec pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x3f80a5a6 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x3f4ff08b pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3f7c4355 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f895909 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x3f9703bd nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f8acdf3 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3f8f20e2 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x3fa39f63 _RNvMNtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB2_9Utf8Lossy6chunks -EXPORT_SYMBOL_GPL vmlinux 0x3fa85382 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fa7e113 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x3fabf517 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB4_19Utf8LossyChunksIterNtNtNtNtB8_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fc230f9 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fafb33a fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x3fb094a4 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3fc0dc74 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3fc32693 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x3fc61779 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3fd173f3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3fd78091 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x3fd8bfdb kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe77553 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fea1872 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x3ffb282d devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4000af1c netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400b4503 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x40142b75 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x4014e9be _RNvNvMs5_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroU1613new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x4025904c vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x40279e21 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x402d30cd verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x4035632f pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x403748a7 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x402fd828 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x40339d7c spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40404aa9 xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0x40429527 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x40466cf4 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x404cf989 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x404d9992 _RNvXsA_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_29static_call_key__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x404e220e pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x4060a525 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x40625ce3 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406713e2 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x406c1435 __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406e9342 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x406fa88a nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40734007 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x40763033 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout EXPORT_SYMBOL_GPL vmlinux 0x407c0442 _RNvXs2g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11maple_allocNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x407c9be1 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4082f2ce devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4092efa0 acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0x40936822 _RNvXs42_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25local_apic__bindgen_ty_20NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x409644f1 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409c70a3 __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a503bc dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x40b675b8 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x40c61aff __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x40a4df29 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x40a61ea9 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x40acf711 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x40af1ca7 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x40c7a6fe _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x864sse219__mm_srli_si128_impl4mask EXPORT_SYMBOL_GPL vmlinux 0x40cd6863 _RNvXs15_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x40da63ab scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x40dac1d9 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x40e30f80 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x40e95afb iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x40cdfbce __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x40d7f059 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x40daed76 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x40dcf23d crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put EXPORT_SYMBOL_GPL vmlinux 0x40f1b6a4 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB4_5CharsNtNtB8_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40f9be9f rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x41001d3c __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41074b1f debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x4113b52b usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x4114e1bd da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4118ea38 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x411b96a2 of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x411d0bea _RNvXs_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imphNtB8_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x412222fe led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41347479 hsu_dma_remove EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4159042e gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x41511fbf acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x4154690c pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x41551347 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x415e9531 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x4179f33d pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x417d8207 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4188ccef cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x418e315a sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x41951151 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x419a44b2 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x418f81bf blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x41947633 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x4195e1f0 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41ae66b5 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x41b0d919 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x419ef230 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x41b5bfb2 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41cff4f7 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x41e18d86 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x41cbc3e1 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x41d08595 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x41d1b906 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x41d5adaa debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x41ec35ac regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41fbf499 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x41f83a83 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4213fed9 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x42203add relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x4221a5c6 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4224530f platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x42341ce4 _RNvXs9_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imphNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x42344b28 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x4239118e start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x423b7e01 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x423d8e78 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x4242bb9f pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x4244b155 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x42459647 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x4245ed2c dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4246f18d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x424b2fe9 __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x4248c84b rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x424d0145 _RNvXsM_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_31edd_device_params__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x424d3de7 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x424d84c3 _RNvXs3L_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14deferred_splitNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x42599858 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4263e9c2 register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x426a0aff kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x426a4802 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x426fc4ba __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4271a233 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x42743cd4 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x4279de8d pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428a084d spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x428e5163 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x429f0408 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x42a3e1e6 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x42a4c6e3 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x429ee31b fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x429f29a5 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x42b3f453 _RNvXsv_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x42b543ae event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x42bc7754 component_release_of EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42d6fa71 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x42d71c60 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x42d1a728 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x42d4a91d led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x42d79768 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x42d93521 _RNvXs1N_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_8LinesAnyNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x42de5132 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x42e974ec fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x42ecb72e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x42ef1e69 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x42f1647e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x42f3c581 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x42f45c5c gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43039d6c skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430da61e __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x431fb137 _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_14ParseCharError13___description -EXPORT_SYMBOL_GPL vmlinux 0x433771f7 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x433c1bc6 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x433cd517 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x4346d7d7 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x43478f3f disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x434bd655 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component -EXPORT_SYMBOL_GPL vmlinux 0x435e441e genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x436d665d wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4382fcc8 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x43898960 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x437f9ddf attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438e2580 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x43977dc9 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x43a22341 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x43a4077d crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x43a7578a xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x438f5bf0 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x43919e7c __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x4394aa73 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x439964a7 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x439dc9d0 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43a66b29 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43bee1ff kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x43c86e7c fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x43c9fb17 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x43bc9b3c ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43d09510 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x43d22c85 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x43d5c892 _RNvXs1p_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10tracepointNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x43d64bad dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x43d74f4f power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x43f4ac54 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x43dd3c1b inet_csk_listen_stop 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 0x4403b61c regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x440ff43c _RNvNvMsS_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroI3213new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x441e6227 clk_hw_init_rate_request EXPORT_SYMBOL_GPL vmlinux 0x44241f44 _RNvXs2s_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16swait_queue_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x444e4a1e cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x44687b22 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x4472c179 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x442ff861 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x4435efc3 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x4435f924 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x44469a3a phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x444c0970 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x44608d7f dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x4481b505 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x448390a2 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448c8211 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x44944d6e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x449350eb devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x44943869 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x449e7851 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x449ed4bc _RNvXs30_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13uprobes_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x44ba3aff __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x44a0325d device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x44a6ea84 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x44acc944 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x44bac6bf pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c69ebf iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x44ce7260 __devm_clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d9a684 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x44dd66e1 iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e46233 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x44ece189 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450afbb9 __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x4511dd0d _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4512477c io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x45237b48 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x452fe6d5 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4517c68e inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x4520596c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x45258e5d firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x452c8b28 ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4536a2b6 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x453c6c41 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x453feaaa mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x454e14ff tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455792f2 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x456a5b5d phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x456aa0bf ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x456d7c63 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x456fcd82 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x45740212 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x456abb91 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x457fc243 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x4581d328 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x458ad02b __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 0x45c33ef8 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x45c76fe7 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x45aa16fa led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x45b44149 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x45bab030 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x45cc460e regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x45ccae3c br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d396be mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x45d7b412 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45efc3d9 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x45d5c108 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x45ef9071 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x45fdf810 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x4600f6db pci_load_and_free_saved_state 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 0x461b51c2 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x460e683f __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x461e3a63 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4621f926 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries EXPORT_SYMBOL_GPL vmlinux 0x46290890 _RNvXse_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_10hlist_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x462cc365 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x4630143e msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x46305c4c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x462f939a regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x4633e7eb _RNvXsB_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4635ef21 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x463e6c6a regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x4675e38e power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x46397a49 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x463db4e0 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x464c098f xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x464e4cce free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x466449d9 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x466614a4 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x46662ccc __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x46790fa1 _RNvXs2w_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14___kernel_timexNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x467a22a5 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x46837224 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x467a3ac7 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x46837f6e vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x4688ccc2 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f64d7to_bits13ct_f64_to_u64 EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46922c6c rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x4692ff18 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x4695755b i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x46a06040 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x46933339 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x469455fa kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x469d2ff7 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46a7aea7 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x46aee32d max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x46aeee91 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x46b1b3c3 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x46b63f1a sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x46d81c30 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x46b6b9df fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46ce27f8 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x46d5824d __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x46da532a intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x46dc5a5f pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x46ef7191 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x46f2b305 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x46f47dd2 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x46f6266a _RNvMs1_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_11DebugStruct5field +EXPORT_SYMBOL_GPL vmlinux 0x46fb9913 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x46fe24aa irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x46ff3ef1 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x470077e8 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x4700faf3 _RNvXs1t_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x47070537 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x4709329f tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x470a8d6d sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x470f0e26 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x471baff8 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x4707aa0e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x47159329 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47304b06 unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0x47504d88 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x4736ae98 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x47404b4e dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x47419698 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x4741f5dd debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x47424657 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x474690f6 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4776acce sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x47773aaf __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x477fde1e cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x476edeff tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq 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 0x479cf9a4 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x479dbda7 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47a418b8 _RNvXsh_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_12IntErrorKindNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x47aa62b0 class_unregister EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47bec922 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x47c8de53 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x47c9fdec pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0x47cb4a83 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt6to_u64 EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47dd060e pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47eef4e9 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x47defaaf rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x47ec54c0 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x47f7b19d __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x47f91422 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x47fe4b9f tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480bc4c6 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4812b68c tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x48152e92 _RNvXsm_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_12raw_spinlockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x481d63d9 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x481d008d iov_iter_is_aligned EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x48257918 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x4827f310 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x48246987 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x4825e083 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x485a5ece lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x4869c01c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x4832a6fc ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x483d4a72 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x48566068 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x486c524e ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x487e2d6d _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4i8x4NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x488bcd45 _RNvXs3G_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13per_cpu_pagesNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x4891ed25 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x489c7987 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x48a0e71b dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x489aef6b wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48ab767e _RNvXs3H_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16per_cpu_nodestatNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x48d2d77b crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x48cb47c1 __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x48d56b2b modify_ftrace_direct_multi_nolock -EXPORT_SYMBOL_GPL vmlinux 0x48de4797 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x48def6af crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x48e080b1 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x48e2045c scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x48eab138 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4900d2e0 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x49028d5d wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x48eeb3d4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x48f228de debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x48f93a1a __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x4905c0e2 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x491439ce device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x491bf766 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x491d16bb fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x491285d8 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x49178678 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x491a00d6 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4932dbf9 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x49336f54 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x492d7ef7 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4930b2e1 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x4930fdfc dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4939777e gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493deb3b acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x494c085a nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x49586bbc __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x493e7797 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x49507e20 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496c7cc9 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4982d134 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x498ed3cf pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x49698dc0 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x497465e5 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x4981d0b8 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x4988d928 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49938c53 scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x49a9f528 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x49b89fc1 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x49979a4a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x499cb422 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x499d9a03 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x49bb6b6d skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x49c6c4fc pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d61a6e bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x49df6801 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x49e46b1d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x49de4eef vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f2a40b devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x49f785f9 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x4a04615c md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x4a0e9c40 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a1028d9 vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a198f47 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a18cdbd proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x4a1d32f5 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x4a233d21 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4a28e1d3 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x4a340a2e _RNvXsX_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4a352978 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4a40476b netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a44dc71 intel_pmic_install_opregion_handler -EXPORT_SYMBOL_GPL vmlinux 0x4a56a3b7 sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0x4a5d7d2d raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x4a6619bd pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x4a673a95 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x4a6a6f2d __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x4a7e70c5 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a93c02a pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x4a94ddcb device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4a9cea85 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4a9efd84 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4ad34507 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x4b18cbfe class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b1a63c9 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x4b244ef5 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x4a55c1ec pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a5ba76c rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4a7bcc17 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4a88aadc debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x4aa49685 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4ac5f377 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x4afe811b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x4b004cb4 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4b0ce516 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x4b0f9cda pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4b18871f da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b1cfa14 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4b27e9cd acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x4b332df8 hv_get_tsc_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4b442dc8 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x4b47c56c tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4b48c57e gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4b3f6fb0 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b4cd691 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4b5115e5 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b6fe9d4 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b7e0fee crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b7a90fa ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b96257f rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x4b9c1074 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x4ba5d74b regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x4badeacc __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x4baf7ae5 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x4bbeb03a dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x4ba32288 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4baac2e7 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x4badf4da dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x4bc82708 mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcc0328 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x4bc877a1 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4bf76fbe clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x4bf82d20 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x4bf86e0b kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x4bfb04ad mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x4be58c6c xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c01ede9 disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4c0b9ab3 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x4c18aae6 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x4c19cf5d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x4c1faa53 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c030315 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x4c217881 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x4c2468fc _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_5OctalNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0x4c2a70e3 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted EXPORT_SYMBOL_GPL vmlinux 0x4c3100fe _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0x4c381946 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x4c3e0147 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4c519e4c blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4c527164 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x4c4cc789 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x4c4d2711 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x4c5437ca bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c553499 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x4c650b8c __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8eb384 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4c8fa5aa genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x4c8fb201 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4c9ceb1e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4ca224d3 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4cae76f7 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4cab3484 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cbf69e7 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x4cbf7312 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x4cc7ac25 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x4ccdb272 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x4cd56d1c usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x4cdcf2e2 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4ce5dda7 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4cf5c0d6 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x4cfb7ed5 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x4cb38e56 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4cd5cfc8 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x4cdd22ba vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x4cf885c4 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d023d27 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x4d0f57c0 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x4d1c96d1 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x4d203373 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x4d2a3c31 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x4d40e37d phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4d5b8085 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d5e411d pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d63a6b6 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x4d28e65c dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4d57904f i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x4d690dd3 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d704f01 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4d70b4da ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d77b2c8 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x4d815dd5 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4d9215d4 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x4da0592a inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x4d7e3fa2 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x4d8f3bc6 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4da58cf9 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x4da77e93 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db523fd xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0x4dc95f6c device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x4dcaf096 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4dd61af5 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4ddac73a irq_gc_mask_disable_reg EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de5c16b xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x4deca14e __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4de5ac87 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4de65f8e pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x4de9c421 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x4dea3a89 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4dff575d sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL vmlinux 0x4e07e6e8 _RNvMs4_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugSet6finish +EXPORT_SYMBOL_GPL vmlinux 0x4e096702 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x4e138b0c pci_epc_get_msix 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 0x4e1bcfb6 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x4e249cd3 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x4e3b1cee nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4e1cbb8b simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x4e1fe11a noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x4e21dbc8 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x4e37867d devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4e3a9686 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x4e447d5b devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4e48abc2 msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4e5da1 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x4e5819fa uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e669d32 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x4e68b768 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4e79da5f gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x4e927cf8 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x4e95db29 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x4e990984 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x4e9fa659 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x4ea4ff20 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4e7fc3ff sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x4e83ea04 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x4e86270a blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x4e87219b gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x4e955529 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb0b36b power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0x4eb5aca5 _RNvXs3F_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_6lruvecNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x4ebd59ee synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x4ec5daf7 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x4ece1073 pwm_request EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed5b0d3 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x4ee25c54 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x4eec8ddf _RNvXs6_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impjNtB9_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef8c316 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4ef95ff1 __unwind_start EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0a6f18 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x4f152f93 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4efea120 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4f1372a0 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c0b38 dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f383e14 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x4f38472c genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f3af1fe mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x4f3b9b10 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x4f42f347 _RNvNtCs9WMcp1Hn5Bv_4core9panicking5panic -EXPORT_SYMBOL_GPL vmlinux 0x4f450b76 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x4f4bdc00 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4f4e1840 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x4f5a6512 _RNvXs3h_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_61folio__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x4f61b46f unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x4f65c8b8 mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0x4f6778a7 _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f717ae6 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4f6fa994 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7e2267 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4f7e5053 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4f858b65 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x4f8e4863 _RNvXst_NtNtCs9WMcp1Hn5Bv_4core9core_simd5masksxNtNtB5_6sealed6Sealed2eq -EXPORT_SYMBOL_GPL vmlinux 0x4f984180 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x4f9e0042 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x4fa58f52 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax EXPORT_SYMBOL_GPL vmlinux 0x4fc6ff14 _RNvNtCsiTPnVqBGVaY_6kernel5print16call_printk_cont -EXPORT_SYMBOL_GPL vmlinux 0x4fc87c5f tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x4fcc94be fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x4fcaf03c blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x4fd0019b xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x4fd732b6 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x4fd9d5c2 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt6to_u64 EXPORT_SYMBOL_GPL vmlinux 0x4fda6854 _RNvXsY_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4feb6199 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x4ff43b04 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ffffc40 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x4fe1fe1f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4fe5d6ff skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500f8232 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x50138cc5 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x50146641 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x501c2c68 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x50207b6b devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x5022d8a1 _RNvXs1_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith3Sub3sub -EXPORT_SYMBOL_GPL vmlinux 0x50253bf7 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x504537b8 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x504d06cb acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x504d6947 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x5052e95f gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x502ac078 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x502fdba0 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x5051d4c3 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x505bd50d mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50641b3c usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x50712b9a _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp3Ord3cmp -EXPORT_SYMBOL_GPL vmlinux 0x5076f73d inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x507929f9 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x5080c86e iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x5082ddc0 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x508ff858 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x50912b7e fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50933862 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5094a74b sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x509a6a6d switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0x50a830de ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x50ac4448 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x50a13cf2 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x50a7450c pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x50a87af4 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x50acbc60 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb -EXPORT_SYMBOL_GPL vmlinux 0x50b88218 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x50c62606 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x50cb6289 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x50ccbb6b serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x50cf30e0 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x50cf9f09 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x50c05600 devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x50c89157 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x50d0e1e2 vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50df4e3a regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e539d5 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50ead6de acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x50f06524 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x50f16bd2 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x50f403ca nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510040db clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x5105d83c icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x511253f1 _RNvXsp_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_24static_key__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5112fb74 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x5115fef2 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x511f44c4 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x51204de2 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5129a2c8 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x5129e8ae _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStr20from_bytes_until_nul +EXPORT_SYMBOL_GPL vmlinux 0x512b0e98 nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513a1c29 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x513bb9f1 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x514561ce __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x5139d73b relay_close +EXPORT_SYMBOL_GPL vmlinux 0x513d56bc dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x514f396e _RNvNtNtCs9WMcp1Hn5Bv_4core3str8converts9from_utf8 -EXPORT_SYMBOL_GPL vmlinux 0x5169dfb6 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x516e8f15 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x517412c0 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x51636fd8 debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x519a32a7 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51c9f8ae pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x51aade59 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x51c03536 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x51cc222d component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51e08476 devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x51e6e07d vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x51e8469b spi_async -EXPORT_SYMBOL_GPL vmlinux 0x51ed9894 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x51f9a367 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x51fbb0e5 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x51ff4e6e usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x52049938 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x5217f25c isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5221261f usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x51f37eb8 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x51f8c777 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x52065362 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x521e8dff unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x521f9648 xhci_run EXPORT_SYMBOL_GPL vmlinux 0x522276de _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt7from_u8 EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522f0756 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x522ff438 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x52327473 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x522854d6 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5228db55 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x523890f3 dm_hold EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52551cb3 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x525cff1d usb_init_urb 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 0x526cf471 clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x52707d22 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5275f705 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x528e1e7f devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x528b6087 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x528dcb4f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x5297aa81 iov_iter_get_pages_alloc EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b75b3d devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x52c0109e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x52b996cd watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cb52c1 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x52cb5b65 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x52c8bb61 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x52cc2966 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x52cd52f6 acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52dc38c9 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x52e3dc0e _RNvXs2h_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13maple_topiaryNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x52e8b579 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52eead54 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x52fa7b30 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x52fcfa00 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x52fe5c53 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x52fed550 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x53128643 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x5317bb2f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x52f728bc pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x52f92926 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x5307081f sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x5310a47f acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x5318620c irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x531e5aa1 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x533a2686 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x533b9112 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x533cb6e2 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x534151f3 pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x53482031 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5353f41f acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x533bbadd xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x5343fab1 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53619b99 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x5367dd10 _RNvXs3_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtNtBO_5alloc6layout11LayoutErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0x536e91d7 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x537d842d pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x537ef1c0 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x53858566 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x538b6fe7 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x536ddb28 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x536f322e ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x538d1db9 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5397fcd6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x539b9f5e ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53a49c45 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x53b1709c _RNvXs4f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11physid_maskNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x53b5c7a3 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53c9a990 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x53ce4003 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x53d4b589 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x53c2f6e5 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x53cd4a68 xen_remap_pfn EXPORT_SYMBOL_GPL vmlinux 0x53d6b66a _RNvXsn_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_16CharTryFromErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e63ca8 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x53de0078 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x53ef7fa1 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x53f11547 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x54077362 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x5409b8cc agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x5414f2a7 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5403049e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x5403998f virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 EXPORT_SYMBOL_GPL vmlinux 0x5437c8f7 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0x543df6cb pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x544068b6 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x544cd7ae irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5439d7dd synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x543b0f8f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x544daad7 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x5450c7ba _RNvXsl_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m256iNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5463e9c9 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x545b046d hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x545feb9c __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5466b31f pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x546754f0 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x546d5808 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x5473d092 _RNvXsc_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_18ftrace_likely_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x54885093 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x5474108c evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x548f1057 _RNvXsq_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeUnicodeNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5493d400 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54bc47eb pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x54bc4ec9 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x54d5df0a pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x54d7fde4 __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x550c76eb devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x54a89eb1 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x54be5c42 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x54c38088 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x550d3394 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x55133277 of_hte_req_count -EXPORT_SYMBOL_GPL vmlinux 0x55178c18 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x55187521 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x5522f11a _RNvXsf_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impyNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x55300228 _RNvXs1r_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_26fxregs_state__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x5539ee9a device_match_any EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5540b04f clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55456d7c thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x55462474 fpu_copy_uabi_to_guest_fpstate EXPORT_SYMBOL_GPL vmlinux 0x55475073 _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x864avx219__mm256_bslli_epi1284mask -EXPORT_SYMBOL_GPL vmlinux 0x55532727 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x554e323a sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x5566ebae user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55673005 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x557360c1 _RNvXs7_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith9DivAssignmE10div_assign EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55988067 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x55a142c8 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x55a1dd57 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x55a273c8 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x55bf1656 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x55c3ab39 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x55c3ede4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x557928b6 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x557b4b19 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x55880477 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x5599da9a debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x55a291c7 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x55b2d06b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x55b6af1f vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x55bce478 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x55bf6cc7 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0x55c53375 _RNvXse_NtCs9WMcp1Hn5Bv_4core3fmteNtB5_5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55e16dec devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x55ea0d98 disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f62aa6 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x55fa82b8 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x55f5e3d4 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x55fbdb42 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560a14f6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x560ef9c0 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x5612cab2 register_fprobe_syms -EXPORT_SYMBOL_GPL vmlinux 0x5616faa7 pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561e9362 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562626eb governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x562879be devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5627bde0 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x5628dff3 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x562ed097 _RNvXsr_NtNtCs9WMcp1Hn5Bv_4core9core_simd5maskslNtNtB5_6sealed6Sealed2eq EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5634bdbb is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x56353053 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0x5637050d rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563d29ed yield_to EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564e8a43 vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x5652a754 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter3pad -EXPORT_SYMBOL_GPL vmlinux 0x565ebc04 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x56608d8a of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x566485f7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x565e6088 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x565fb032 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x56764440 _RNvXsT_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_20jailhouse_setup_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x56873d0e regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x568c07a3 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x568f227f blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x569aa01d sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x569cb416 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x56ac0571 _RNvXs23_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_5mutexNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x56b1462a _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x56b20be6 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x56b94ece xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x56bbedfa dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x56ad8e31 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x56b1421f ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x56b3903c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x56c5676a page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x56d4d233 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x56f551fe __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x56f66fcc devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x56f864d7 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5716ee0e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x5718a618 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5721e4aa vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x573a38e7 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x5761b61c devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x57629a67 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x574a1f2a wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x574dba18 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x574e25d3 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x576d4d3f pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5778e80b ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x5781b022 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x57884545 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x578ce295 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790bad2 vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5795959b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x57966516 acpi_device_fix_up_power_extended EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579e638c tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x57a1bac5 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x57a1ec8c of_led_get EXPORT_SYMBOL_GPL vmlinux 0x57a20719 _RNvXse_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint -EXPORT_SYMBOL_GPL vmlinux 0x57ab4a69 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x57ac4e1e pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x57b151e7 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x57b6943b blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x57a2b816 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x57a93b5f sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c81c7d transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x57cb2293 _RNvXsq_NtCs9WMcp1Hn5Bv_4core3numtNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x57cb8a64 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x57cd0584 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57e0b619 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x57e4e2a5 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x57f27884 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f9fe5a anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x580031e3 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x5812f412 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x57f78b1d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5803ce0f dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x580915e3 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x5810faa9 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x58123b7a devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x581cfd13 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x58264d55 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x58268030 task_cls_state 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 0x584e8b45 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x585bcfff debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5845a24b split_page +EXPORT_SYMBOL_GPL vmlinux 0x584c1531 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x58698e51 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x586a2d4b _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3cmp5implszNtB7_9PartialEq2eq EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x58725473 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x58723811 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x5872a786 _RNvNvNtNtCs9WMcp1Hn5Bv_4core5slice3raw14from_raw_parts8comptime +EXPORT_SYMBOL_GPL vmlinux 0x58774c96 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x5877b374 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt7from_u8 EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x5884a5eb debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x58a29562 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x587b7c86 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5893fc58 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x589550f8 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x58a0b724 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x58a5b107 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter11debug_tuple EXPORT_SYMBOL_GPL vmlinux 0x58ab0969 _RNvXs1g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17msr__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x58ab1d13 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x58af6158 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x58bcdc60 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x58b0dddd devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x58b30ccd pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x58caca7f icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x58dde48c acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e43351 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x58e83f4b __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x58eb15bb regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x58eeeef8 _RNvXsD_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_36pcpu_hot__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x59016668 _RNvNvNtCs9WMcp1Hn5Bv_4core10intrinsics11write_bytes8comptime -EXPORT_SYMBOL_GPL vmlinux 0x59083fbf nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x5912f2cb usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x5914df81 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5919bbb2 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x592c6c70 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x59470232 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5911fa8d tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x591fbf90 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x592a0d43 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x5932c353 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x59386463 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x5942b7b4 pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0x5949bc4b alloc_memory_type EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595bb35e crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x59673613 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5977c716 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x595acd9e __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x595ce332 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x59602d1f regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x596cd629 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x597f106d dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598bcc26 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x59903b3e sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x5993bb40 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x599846dc rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5994cc73 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x5996885c exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x599bef5d _RNvXs17_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13math_emu_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x59a9515c gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x59af6c70 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x59a00399 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x59ae655d devm_platform_ioremap_resource_byname 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 0x59b3b348 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x59baffa9 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x59bb7e7c __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x59bcecaa usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x59b7a2be devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x59b9d188 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x59bde211 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x59be74a2 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59d61f38 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x59e2bad4 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x59cd49ef clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f4b2de __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x59f61262 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x5a036dd9 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a180df7 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x59ff9147 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x5a181d2e make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff EXPORT_SYMBOL_GPL vmlinux 0x5a30131e _RNvXs14_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB8_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5a476a45 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5a30a34c acpi_dma_request_slave_chan_by_name EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4c2b5d ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x5a55d394 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0x5a60a679 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a62bf42 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x5a6aaa3b spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a70bb36 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a90bc91 pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x5a983710 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x5a9ba3c7 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5a831ec0 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5a8b0bd0 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5a985dc3 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x5a996f57 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5a9f4d40 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5ab01c49 __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5abd3310 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x5ae126c1 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x5ae41976 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x5af5fd3c strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x5b109d46 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5ad2ee6a wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5ad35fef blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x5adf7fcc inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x5ae28caa wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5b099c33 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x5b14e6af _RNvNvNtCs9WMcp1Hn5Bv_4core10intrinsics4copy8comptime +EXPORT_SYMBOL_GPL vmlinux 0x5b1e4fc4 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x5b20a1ce crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b40033e usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x5b48953a __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x5b53131d blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x5b2947bd ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x5b2c38b8 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x5b2dfe26 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x5b3bbd1b mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x5b46cd0f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x5b4753a2 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x5b555400 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x5b62327a _RNvXsh_NtCs9WMcp1Hn5Bv_4core4cellNtB5_14BorrowMutErrorNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5b65a52a fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b9437ea unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x5b7d3051 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x5b966d9a _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicU64NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5b9a0bb7 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x5b9feeb7 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5ba36722 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x5ba430d9 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x5b9a0dc7 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bc92736 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x5bb2728b crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bca0e65 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bce6520 rio_release_inb_dbell 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 0x5bde2775 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5be0d016 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x5be79107 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x5bf95ad7 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5bde3666 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x5beb1cee __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x5befb401 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x5bfe4158 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x5c0c24e3 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c15589a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5c224bb9 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x5c28a85e ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c2f2347 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x5c2f3766 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c332527 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5c52edd7 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x5c59f490 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x5c39b011 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x5c3b396c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x5c4005d4 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x5c472bf0 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x5c4d2e61 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5f0457 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x5c6b6921 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5c745ab7 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0x5c7908bb _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index31slice_start_index_overflow_fail -EXPORT_SYMBOL_GPL vmlinux 0x5c7a747d usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x5c80ff28 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5ca3b75a bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x5c7fdaeb blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x5c817323 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5ca7283c acpi_subsys_poweroff EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb37999 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x5cb4bf98 _RNvXs2N_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11srcu_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5cb595bc devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5cdedb45 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x5cc94ab1 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5cd3d0d2 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5cd601c7 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x5cd6e599 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf6e64c devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5cf8df42 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x5cf7b83a syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x5cfd11eb _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB6_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5d05b796 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x5d08ed8e pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x5cfd8ca7 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x5cfe0220 fscrypt_parse_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x5d0a84ca _RNvXs3B_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i32x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5d0c50d9 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d24707d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x5d2547f3 PageHuge EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2ff405 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x5d36cc6c extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x5d380d93 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings8generate -EXPORT_SYMBOL_GPL vmlinux 0x5d45add8 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x5d48cc2b regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d503051 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x5d5f1ffd regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5d43d8f8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x5d4c46ec inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x5d515073 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x5d5ff33c _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5d632b0e rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5d74de85 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x5d803543 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d6413b7 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5d6e228c acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x5d781ad3 __device_reset EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5da107b1 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact EXPORT_SYMBOL_GPL vmlinux 0x5db239a0 _RNvXs1b_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i32x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5db682c4 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x5dbbb4c2 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dc0be78 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5dc678e4 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x5dce836b devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5dc3434f gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x5dc85234 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x5dd391ea uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x5dd85cf4 _RNvXs1n_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_21trace_print_flags_u64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5de7e237 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x5e0b510c cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x5ddcf60d usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x5dde1490 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x5de2d654 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5df7bc9e scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e2980ef trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x5e2f8b68 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x5e3a38b9 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x5e3a3ced sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x5e4e5f8a nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x5e17e082 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x5e50e7fe sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e57ffa7 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x5e598375 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x5e5ba474 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x5e6ab049 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7b984f fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5e815ac6 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e884e25 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5e9a68ae dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x5ea02f71 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x5e89c3c2 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e97d284 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x5ea675de _RNvXsB_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15static_call_keyNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5ea6a593 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x5ea70e34 _RNvXNtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB2_15PadAdapterStateNtNtB6_7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5eacd737 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x5eaa14b3 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ec7fd4b blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x5eca6a79 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5ebbd8e2 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x5ebe241c espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x5ece6390 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x5ed5b2aa usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee75f21 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x5f01e866 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5f073681 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x5f18bda5 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x5f1e6c04 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x5eea07ad fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x5eeaebe5 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x5eedb692 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5ef0646f __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5ef32156 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x5ef7ce4c __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x5efb2827 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x5f014e00 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5f12e3b5 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5f1be092 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2657c5 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x5f2cb61d rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f3e2eb2 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x5f47e8c4 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5f5c40b9 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x5f6cc300 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x5f31b337 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x5f35e44e crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5f554c99 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x5f6d852c bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1b06 devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7a7e14 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x5f7ce420 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x5f8125b6 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5f82bc58 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5f88d6b1 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x5f8b5e75 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f965574 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f9b1b8d inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x5fa36901 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5faa95f0 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x5fb88bcb devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x5fbf033c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa955fc anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5fb41dc5 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5fb579fe pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5fc0f5bd devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0x5fc7bb87 _RNvNvMNtNtCs9WMcp1Hn5Bv_4core3ptr9const_ptrPp7sub_ptr8comptime -EXPORT_SYMBOL_GPL vmlinux 0x5fd8f007 __intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x5fdf2a71 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x5fcf635c devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe8540f uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x5fecef60 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x5ff0d419 dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0x5ff8b759 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x5feb3e84 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ff65735 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x5ffcc970 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x5fff66af ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x601eb035 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x6028725e skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x602c8689 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x603026ca trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x602e3b6e cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x602f3f1c clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x60357dcb perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x603c4f49 gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x603eeaf0 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x60407405 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x605645b7 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x605c6816 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x6056882a nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x606b437e acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x6075fda3 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x60780d40 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60736a0b led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6082fc4f tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x608c7432 intel_cpu_collect_info EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x60923c59 _RNvXs2f_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x609f812d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x60a0fedb fwnode_connection_find_matches EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60aaf4fd device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60c5841f ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x60c9cc88 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x60dca573 nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0x60dcc069 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x60e8ff89 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x60c03a96 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x60c04323 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x60e0a6b1 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x60e2fd75 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f02355 _RNvXs1d_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11__ymmh_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x60f4e484 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf EXPORT_SYMBOL_GPL vmlinux 0x610711b4 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x611514f5 intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL vmlinux 0x61178737 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x6117278c blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x611eff30 kobject_move EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612dde0b pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x613b7401 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x6145c218 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x61490d5a led_init_core EXPORT_SYMBOL_GPL vmlinux 0x614b689c _RNvXs1f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7cpumaskNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x614df4a5 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x615208aa usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x616bfb18 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6176cc79 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x614de0fb perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6157d35c crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6158262a attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x615b2f95 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x6160ba92 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x61689a7f dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x616e4361 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x617730bf srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x617f6b7d gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x6178cd11 cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x617f7e81 _RNvXs2D_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10timer_listNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61823bd2 __tracepoint_block_unplug 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 0x61b443f8 x86_spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x61bcb65b usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x61bcd6ec ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x61c701e5 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x61cb49af i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x61e0cfca nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x61e9b310 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x61ea60e3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x61bfa1fe filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x61c02292 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x61c4ea23 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x61c58e9e cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x61c70186 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x61cbfe15 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x61e5195f sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f6e8f0 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x61fde8c8 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x61fe14d1 dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x621c282d inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x62258e98 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x622c4e1f _RNvXs4j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13___va_list_tagNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62309f7e devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62378c4c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x6237e2ab tcp_twsk_destructor 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 0x62580323 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x62596c7c ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625a6ecf dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x625e8dc5 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x626a8903 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6283aeb3 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x628b3080 _RNvXs45_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6i16x32NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x628d94a9 pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0x62b41220 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x6292bdda regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x629bdb6f ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x62a39cab __class_register EXPORT_SYMBOL_GPL vmlinux 0x62b6072b _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings4INFO EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c794aa md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x62c7a97f __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x62d068da bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x62d4a7dd acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x62e38771 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x62e48d1c pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x62c5fda7 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x62c9de38 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x62dfad3b debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x62f48d19 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x62f991c4 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0x630a3018 _RNvXs1L_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16entry_stack_pageNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63165082 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631db1bd devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x631bd58d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x6326a0b8 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x633d86de dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x6347b33d fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x634e8c25 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6350a013 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x635b7202 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x634d1e13 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0x636f40e5 _RNvXs3Q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12cpu_topologyNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x637f4d75 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x6383ab71 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x639cf6b4 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6395fbbd devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x639d38cf _RNvNtCs9WMcp1Hn5Bv_4core9panicking18panic_bounds_check -EXPORT_SYMBOL_GPL vmlinux 0x63a10156 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x63ae5950 _RNvXsn_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impmNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x63aebd3c pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x63b5d543 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x63c07f83 __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d1de72 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x63c717ba ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x63c8a747 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x63dcdd67 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x63e91be4 __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x6400bc3e pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x6402f0de genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x63ede3bf register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x63f1312f bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x63faaf7d xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x63fe88dc pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x640e80ad tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x641cd630 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x641f9399 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6427cfea iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0x643291d5 _RNvXsn_NtCs9WMcp1Hn5Bv_4core6markerNtB5_13PhantomPinnedNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x64460f73 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x6449b224 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x6450aeaa __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x645c704d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x6437b76e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6439e3bf user_update +EXPORT_SYMBOL_GPL vmlinux 0x643d6d37 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x645cb5da crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x645cea06 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x64664099 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6471973a ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x6472884d _RNvXs1q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17bpf_raw_event_mapNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x6472d866 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x64740397 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x647cc0a0 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x647dc01e do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x648a06f1 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x648a19bc watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x649adfb2 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x64962397 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x64a051c0 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x64a1ed9c usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64ac16a0 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x64e191d9 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x64ae3d88 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x64b1fac7 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64cfc914 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64e6e3fe _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter5width EXPORT_SYMBOL_GPL vmlinux 0x64e985ac _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt7from_u8 EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f88f6d ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6504a0d8 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x6505dc7f pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x650b9ad6 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x65156b7f usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x65192138 _RNvXNtCs9WMcp1Hn5Bv_4core4charNtB2_13EscapeUnicodeNtNtNtNtB4_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup EXPORT_SYMBOL_GPL vmlinux 0x652a2446 _RNvXs2r_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x2NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6543d6aa devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x653d8776 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x6546cb1e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x6550ed09 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x656021e8 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x656d881e __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x655267f1 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6575713f irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x65811cf5 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x65728aa0 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x65841fbc _RNvXsZ_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x65880c17 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x65855609 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x658a09d8 _RNvXs1H_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25cpuinfo_x86__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x65a4f96f extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x65a5bec5 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x65b0ece2 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB4_9Formatted3len -EXPORT_SYMBOL_GPL vmlinux 0x65b98ecc blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0x65bf1572 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x65c529df power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d7ed5b dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x65d8c3c6 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x65e5f1f4 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x65eec97e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x65eed209 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x65f808e0 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x66055c2e ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x6606f943 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x6612a824 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x66115a5e dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661d82a2 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x662b06f9 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x66311940 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x661dbba3 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6639300c tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x663b2b8e task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x664493f5 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6646b278 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x66541477 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6674a40b folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x66676111 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x666bf265 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x6676e40e regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x66899515 _RNvXsG_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x66923823 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x66977473 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x669aabad ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x66a91952 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x668deecc dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x66929299 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x66a74a23 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x66abcee8 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x66b11a4f _RNvMs5_NtCs9WMcp1Hn5Bv_4core3numt14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bb4d00 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x66c70d4a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x66d09785 sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e2d9ca spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x66dc52c5 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x66f6e3e6 acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x671f214a cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x67230bcc pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x6725df45 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x6728183c of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x672e727c mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x67315c67 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x67333840 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x6722c340 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x6727ebcd blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x672a2c6b md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x6741285d md_run -EXPORT_SYMBOL_GPL vmlinux 0x67418a9c regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x675c219a reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x675f5d43 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x6762fe04 mnt_idmap_owner -EXPORT_SYMBOL_GPL vmlinux 0x676cc085 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x67614900 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6771a883 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x6773bdf9 _RNvXsY_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_11AtomicIsizeNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x677a51f4 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x677daf87 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0x67847104 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x67874644 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x6799a27a genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x67a18a9f mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x67a307dd syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x67ae4f76 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x67baa693 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x67bcf924 _RNvXs3z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12vma_iteratorNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67c8a236 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x67cb5667 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x67cc5ee8 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x67cde561 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x67d54d77 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x67d4cce6 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67df9850 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x67f08744 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x67ef7fb0 __bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x67f36b30 _RNvNvMsq_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_11NonZeroU12813new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x6808b7de driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x681082c1 acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0x68147c01 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x6816a650 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x681b4ffa dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x67fee707 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x6818c976 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6823b05b regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x682d6785 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x682dff5f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x682f0bc5 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x683386d9 _RNvXsy_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6837d120 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x6836ce32 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x6846e4db device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x684e173c tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0x685bd379 _RNvXs1h_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_3msrNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x685d3cf2 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x688099dc thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x686729da ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x686e5e32 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x68789292 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x6886f113 _RNvXs1U_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10llist_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x6887ad58 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a2e060 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x68b4cb08 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x68b58c63 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x689e23bf bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x68a5cace dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x68bebcb0 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x68bf4f3f _RNvXsQ_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_3eddNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x68f36656 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x68f9b744 msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0x690be109 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x68d9e01b i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x68ddbe79 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x68ee5b00 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x68f81379 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x690b9b6d devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x690e688e pci_p2pdma_enable_show EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691222e8 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x6913ce42 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x69152fa0 _RNvXs2Z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15return_instanceNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x69289c50 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x694da88d ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x691999c1 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x6926e47f ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6931d83a nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x69364bf7 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x693dd717 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x6954e8c9 _RNvXs4_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9ArgumentsNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x69559f79 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x695b04e5 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x69666a62 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x6963b9ff usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x69662f62 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x69718e3c balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x6971ae92 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6976a82b hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69845d40 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x6987e7a8 intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL vmlinux 0x698fde07 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x69985be0 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x698dc19c of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x6999858c _RNvXs1T_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10llist_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x699f514a hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69a3de3f iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x69a74e78 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x699c4970 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x69a283a3 devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x69a76095 _RNvXsP_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_8edd_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x69c224e2 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x69c8ff0c ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x69c94c7e of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x69cb5971 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x69af081b icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x69b14c9b devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x69b1d00e cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x69bf644a dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x69c778bd phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d53d51 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x69d5b810 pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL vmlinux 0x69df2687 relay_open EXPORT_SYMBOL_GPL vmlinux 0x69e65968 _RNvXs1w_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13reg_1024_byteNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69e8ff22 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f07e36 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x69f9e266 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x69f1bb48 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0e821d irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a169ab7 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x6a1d5648 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6a17080e pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x6a2226f2 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x6a26873b _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6a2e585a mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6a2cf7ef dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a414e21 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a424ef5 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a483d1b pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x6a499c27 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x6a4a1b5b _RNvXs1h_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x1NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5557f9 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x6a609c6d pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0x6a62eba9 _RNvXsy_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6a65a87b usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x6a6bdf4c _RNvXsu_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicI16NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6a7e64f7 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a9052aa driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6a8efa6a devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x6a8f9d76 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x6a914cf9 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aa9dc4c devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via EXPORT_SYMBOL_GPL vmlinux 0x6aae7b09 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6aae88da vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x6ac257c1 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x6ac43925 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x6aebf666 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x6aef2eef regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x6ab0fe31 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x6accb73a tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x6ae987a9 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6aec224c mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x6afad836 _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x865ssse315__mm_alignr_epi84mask -EXPORT_SYMBOL_GPL vmlinux 0x6afc9eac bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x6b005765 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x6b008ba7 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x6b01bc7f power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0x6b05d58d _RNvXs46_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25local_apic__bindgen_ty_29NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x6b0d9ef0 _RNvXsz_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicU16NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read -EXPORT_SYMBOL_GPL vmlinux 0x6b1421fd con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x6b18059d fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x6b21a892 _RNvXsS_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_15StrSearcherImplNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6b27710c tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b4dc724 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b4bf040 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x6b52d1ee _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6b5ca474 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6b5d26a1 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6b5e7bfb find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x6b6c215d virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x6b76137d mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x6b6cf98a crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81b626 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8231ef __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x6ba25b9b iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba43638 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x6bb119f5 _RNvNtCs9WMcp1Hn5Bv_4core3fmt5write EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcc5ce1 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x6bccae87 _RNvXsA_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bce66db genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdb6d16 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6bdce94e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x6bd933bc vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be1abde da903x_write EXPORT_SYMBOL_GPL vmlinux 0x6be1cfc1 _RNvXsW_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_14TwoWaySearcherNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6beaa882 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x6beac0bf __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x6c0c79ec devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x6bfac1c6 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x6c0369c2 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6c0bea4a ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x6c0dba1d _RNvNvMNtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB4_9NonZeroU813new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c20b1aa x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c3735ea class_destroy EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3d0f1a trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x6c3dc483 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4a21f1 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6c43486c __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c50314a shake_page +EXPORT_SYMBOL_GPL vmlinux 0x6c536c64 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6c583357 gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5c629c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x6c623267 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c688325 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c7db305 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x6c92e516 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x6c9a04b1 _RNvXso_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11Sip24RoundsNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6ca14946 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb429ed powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x6cb5f319 __rg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6cc5f1b8 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x6cce6383 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x6cdf12a6 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x6ce79193 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x6cdc33d5 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x6cf9d760 _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index24slice_end_index_len_fail -EXPORT_SYMBOL_GPL vmlinux 0x6d004490 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x6d01dc96 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x6cfdbe53 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x6cfe6ae1 da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ab776 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0bc6b3 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x6d1805b2 component_add +EXPORT_SYMBOL_GPL vmlinux 0x6d0d8b52 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d1772f9 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x6d1bad6e pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d20611c xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x6d22c83e gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6d2713b0 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x6d2cf990 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6d2d6e77 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3a65af sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6d3aa3d7 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x6d4f8f44 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x6d4258d3 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x6d433af2 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d476817 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6d48dc89 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x6d4e831b acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6d57d965 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x6d61d308 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x6d6475e5 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6d6a8bf2 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x6d51b64c led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x6d6e789d msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x6d6de4c2 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7ce49a iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x6d7b50f7 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8e2f8d regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6db23b0d regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x6db9efd7 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x6d9ebb36 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbab547 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x6dbd0f50 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x6dc83680 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6dd57957 _RNvXNvNtCs9WMcp1Hn5Bv_4core9panicking21assert_matches_failedNtB2_7PatternNtNtB6_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6de296c8 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x6de9f4c1 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x6dea0934 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x6dfd2ec4 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6df8f92e pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e1b0778 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x6e31db91 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e047a38 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x6e15c4ce PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x6e21a632 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x6e28aced pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x6e34416e skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e3ae96d devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e456ff5 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x6e4887c6 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6e589e9e device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x6e5d02ec udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x6e660180 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6e43a17a buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x6e4954b4 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e626fbb nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x6e6e7f88 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x6e6f276c _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index29slice_start_index_len_fail_ct EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e85d29b intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6e88c7d6 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8dc42c nf_queue EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e93c6de skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x6e9bec59 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e924b59 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x6ea395b8 virtio_reset_device EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ebbccfb cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6ebce751 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec5ff12 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x6ee33031 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x6ee91af9 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x6eef4ffd extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x6eda40a0 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6ee3787e sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6efa8fb9 _RNvXs17_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0x6f08e4c0 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f25da27 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6f372368 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x6f41057c ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x6f422bc7 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6f1d7652 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x6f23ac84 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x6f2ed26c devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x6f3598cd devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x6f49e452 rust_begin_unwind -EXPORT_SYMBOL_GPL vmlinux 0x6f59dc34 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x6f513fae dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0x6f62f048 _RNvXsG_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_8___m256bhNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f7a209a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6f76e2b5 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f800816 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x6f878ea8 _RNvMs_NtNtCs9WMcp1Hn5Bv_4core4char6decodeNtB4_16DecodeUtf16Error18unpaired_surrogate +EXPORT_SYMBOL_GPL vmlinux 0x6f996d04 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fabe0f5 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f9f7c27 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x6fa2e599 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x6fac1397 get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x6faf1115 _RNvXs2x_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6fb8dfbe vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6fbc4be4 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x6fc0f628 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x6fc2a53f devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x6fc3a990 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fdad597 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x6fdf1299 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x6fe3a592 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6fe508a7 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x6fe89ec3 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4i8x2NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6fe97408 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffcb36b xenbus_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x70038ae8 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x70063a33 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x700223da inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x70024356 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x70058032 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700cd243 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x700d1014 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x701295e1 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x702fc24c vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x70393fb5 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x7039cc46 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x7046ca2d blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x7057469a phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7010ddd0 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7012c7de regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x702336bd restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x702996bc serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x70308130 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7038ec61 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7074c941 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x708376d1 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x70895d6c fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x708e6b3b pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x70919343 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7076835d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x707904b5 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x709eabb5 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x70b03b41 __xenmem_reservation_va_mapping_reset EXPORT_SYMBOL_GPL vmlinux 0x70b23e84 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0x70b7032c _RNvXs16_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0x70b9bd74 gpiod_disable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x70ba163b hvc_instantiate 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 0x70d80ad9 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x70d88f84 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x70de343c ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x70df425a power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x70dfe692 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x70e636bd wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x70edd184 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70f51baa dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x70eb280d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70f0407f devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x70f0a947 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x70f0b27e hsu_dma_remove EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x710992a6 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x70fe0ea9 ip6_input EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711b0f63 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x7123565e phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x711fca9b pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x71324e0f msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x714ce812 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x714f51ef _RNvXs1c_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0x7160d6b9 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x715ee8cb sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x715ef684 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71683ecf led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x716c55a5 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x71711407 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x717abae4 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x717559d5 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x718be228 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x718c5d5d xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x718f18db cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71995ffe ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x71993d3c ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x719a6928 acpiphp_unregister_attention EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719f2dd4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x71ae9931 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x71b35fd3 fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c930c5 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x71ef3d19 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x7201a1eb fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x720c26d8 vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0x720fe3bb gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7212e13f scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x71d2a6c3 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71d722d0 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x71da2c17 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x71e3cb95 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x71e95dbc msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x71f152d8 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7214af42 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x721f0c6a _RNvXss_NtCs9WMcp1Hn5Bv_4core3numyNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x722e1754 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x72358d53 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7220f4df blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x7223d294 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7223f56c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x7226c946 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x722c81a5 sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x725e47bf debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x723b3e7d perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x7242f037 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x7243a722 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x724f801d devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x7255b421 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x7258feef phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7264d8c5 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72740772 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x726bb321 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x726edb34 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x72784bef fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x727ed304 _RNvXs1Q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13thread_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7297aba1 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x72ab83d7 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72bb1493 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x72bf0459 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x72b31c24 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x72b43bdd register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x72bf1eec _RNvXNtCs9WMcp1Hn5Bv_4core3ffiNtB2_6c_voidNtNtB4_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x72c29383 _RNvXs4t_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6f32x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x72d236b7 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x72cbfd10 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d9555f ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x72db57e0 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x72dc9538 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x72e2eba7 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x72e6565d kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x72ede42f usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x72e3de14 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x72ed5d85 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x73011204 _RNvXsg_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impjNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x730bcbeb fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x7310b9bd fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x73116c54 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7314437d fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x731fb68b bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7329157c get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0x732b123f alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x7339d7a8 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x733d41ac crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x734f23f4 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x73439fc4 device_del EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x735b5749 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x736390ad blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x7359f858 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x735fe230 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x73677d4b ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x736dcebe _RNvMNtCs9WMcp1Hn5Bv_4core3f32f13classify_bits EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return EXPORT_SYMBOL_GPL vmlinux 0x738bee2b _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index29slice_start_index_len_fail_rt EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x739811ea fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b841e5 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0x73bb8ed3 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x73a818af device_rename EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cb82b6 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x73cc28f1 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73cf7fd0 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x73d027a2 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x73e3ff0c sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x73d3e204 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x73f883a6 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x73fd78c7 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x7400bec6 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x741f388b user_read -EXPORT_SYMBOL_GPL vmlinux 0x742266ec __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x73eb37fd wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x73ed2f57 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x73f424ee usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x73fe20d7 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7438f32d clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x743a75a5 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x743c0c93 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7431b67c dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7437ab9f __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x74408752 _RNvXsa_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7449b39d devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x746c193b platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x7479323d sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x747fee87 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x748b0824 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x748ba064 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7460b432 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x747135ca pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7484efcd call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x749681d5 _RNvMNtCs9WMcp1Hn5Bv_4core3stre14escape_unicode -EXPORT_SYMBOL_GPL vmlinux 0x74a66262 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x74a88bfa acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x74aad1c6 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x74b42568 _RNvXsr_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_8UpperHexNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0x74b46772 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74c9e063 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x74ca461f crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x74d33434 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x74d2098a gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74d821c6 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x74d92b06 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x74d8591e vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0x74df4e71 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrINtNtNtB9_3ops5index5IndexINtNtBR_5range9RangeFromjEE5index EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ecdc85 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x74efae75 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x75032cf5 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x750d7b2d _RNvXsi_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impaNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x7510859a thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751a6683 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x751ae4c4 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x751dbc98 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7524cf37 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x7525f216 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x75273620 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x752a942d exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x7548a4da crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x754a42c7 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x752566a2 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x752d9fbd pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x754a8923 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x754c57b0 _RNvXsd_NtCsiTPnVqBGVaY_6kernel3strNtB5_7CStringNtNtNtCs9WMcp1Hn5Bv_4core3ops5deref5Deref5deref -EXPORT_SYMBOL_GPL vmlinux 0x7550a6fb __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x755299c5 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x755d6643 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x756a53ff extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7580b932 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x75909214 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7593cb71 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x7598f01d lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x757e55cc phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75ae7bf8 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x75b54791 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x75c308f7 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x75c6b589 devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x75c790e8 _RNvXs4z_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i64x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x75d29c1a phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x75dd11d4 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x75d6b34c tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x75d8e64b skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x75da3f51 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x75e00954 _RNvXs3_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits10exact_size17ExactSizeIterator3len -EXPORT_SYMBOL_GPL vmlinux 0x75e1dc2e nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75eb309b pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x75ecd5a5 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x75ee0f43 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x75ff3c03 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x7608afb4 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x7610e986 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x7615d37a tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x7617cf85 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x761cc3b9 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x75eeb161 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x760899a2 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x761b77a4 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x7623dbc9 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x7632c9a9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x763c26f2 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x763c5869 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x765b12e4 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x765aa2e0 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x765f9bf1 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x7660a42c __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x766dfd6e hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x767ba81a xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x7684bfdd _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh14trim_ascii_end -EXPORT_SYMBOL_GPL vmlinux 0x7699f4e3 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a30851 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x76a9afd6 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x76b61cc9 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0x76b8668a tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x76bfc64d __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x76b5b961 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x76b83faf ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x76bfdf97 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x76c42fbb _RNvXs2a_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7rb_rootNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist +EXPORT_SYMBOL_GPL vmlinux 0x76df3d7f devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76ea21a8 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x76eb544b usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f99d11 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x76ef08aa devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x76f9ffa5 _RNvXsj_NtCs9WMcp1Hn5Bv_4core3numaNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x76fc3e57 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x770f359b hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x771228e8 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7718ca33 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x7714cf32 replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x7732fef3 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x77330473 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x7734c402 percpu_is_read_locked -EXPORT_SYMBOL_GPL vmlinux 0x7736b555 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x77397706 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x773adff6 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x77451e26 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x774b91ec dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7745ef28 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x774acd69 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x774d36aa i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x774f1cb0 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x7753bc82 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775ae36c param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x775fb1d6 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x775a149a rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x776e1903 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x7778e25d _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9precision -EXPORT_SYMBOL_GPL vmlinux 0x778960e1 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x7789d5b2 iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x77a2bf59 _RNvXse_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits8iterator8Iterator4next -EXPORT_SYMBOL_GPL vmlinux 0x77a47959 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x77adb195 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x77a3a839 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77ae9894 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x77af5144 _RNvMNtCsiTPnVqBGVaY_6kernel5errorNtB2_5Error15to_kernel_errno -EXPORT_SYMBOL_GPL vmlinux 0x77b3c040 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x77be8259 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x77cb0bd9 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77afc1c4 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x77c3a208 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x77c3b0c1 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x77ceac50 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x77d0d273 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x77d1f37b gpiod_get_raw_value_cansleep 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 0x77f33de4 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter12pad_integral +EXPORT_SYMBOL_GPL vmlinux 0x77f4d0fe adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7800a3b1 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x780392b1 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x7807ec06 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x7808e28c virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x780bf721 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x780d5d29 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x780e25ed ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x781271b2 hsu_dma_get_status -EXPORT_SYMBOL_GPL vmlinux 0x781b2f9e fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x781ce09c device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x7824c73b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x780f28b3 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7810c711 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x7815bbf4 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x781c4662 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x78227610 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7829aab9 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x7829b2e6 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783a0aae blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x7844a2c0 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x7833f57b phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x7834d84b css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x7837e443 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x78450e70 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x7859a36a pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x784c47e8 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x784fde2f dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7856e950 ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78678caf crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x7863d288 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x786b8aa8 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x786ee683 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x786eff5e sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x786f9789 _RNvXNtNtCs9WMcp1Hn5Bv_4core3fmt7nofloatfNtB4_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x7874021f dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7875ca43 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x787a2b69 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788238c9 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x78949b36 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7890ce55 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x789ca77b acpi_dev_get_next_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0x78a0a1c5 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0x78a86032 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x78ac37ce crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x78aa64b6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x78ae84eb irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x78c7f579 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x78d4f4ba devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x78be7c66 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x78ccd466 device_add +EXPORT_SYMBOL_GPL vmlinux 0x78d5d6e8 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x78d62215 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e78446 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x7900b65a bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x78e68624 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x78f00d46 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x7910baeb acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0x7912fc4d _RNvXsw_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x79167b2b acpi_device_update_power EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x791abb15 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x7940561f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x7920f217 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x793991dc nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x793aaaa4 dma_resv_get_singleton EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794a3635 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796df5a8 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x79746ec7 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x7960f800 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x7979631e _RNvXsD_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x79817da0 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7989d0f5 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x797d5112 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x798908dd pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x798fbb6e led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x798d53f8 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x798e764f da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799cfb84 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x79a5ded8 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x799f5199 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x79a1ad5c crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x79b54e36 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x79bab9d9 led_put EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c0b55d mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x79c42ab1 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x79c79de8 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x79d64336 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x79d99437 virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x79de7f3a xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79e1353d _RNvXsK_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_27restart_block__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x79e63bcf fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x79ee1d96 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x79e477c4 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x79e964fc pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f861c4 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x7a0e834e xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x7a169936 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7a08e4f0 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x7a155cfa device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x7a19167a _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings3ERR -EXPORT_SYMBOL_GPL vmlinux 0x7a1c60b8 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x7a1c9d63 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x7a2d01b8 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x7a2f9f97 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7a3413f4 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x7a38c729 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x7a3b38cb devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7a3e59e9 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7a1d47be regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a25c4f3 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x7a2bcf5d spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x7a33415c dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x7a3d4cdc regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a4260f2 _RNvXsd_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9list_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7a4f8804 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7a48c23b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x7a4a3c3d tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x7a4f8acc nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x7a5c4093 acpi_subsys_freeze EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a6c751c devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7a90c8 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a895c6a ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x7a8c3a2e __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x7a92c4b2 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x7a892cd0 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7a8b5c99 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x7a8de811 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x7a95df5c regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9c9250 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa0aef3 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x7aa0fd3d tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7aa0ffd3 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x7ab93cc0 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7aad63d8 acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ab442fa sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac48eaf l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7aca2836 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ad63036 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x7af5fd98 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7ad43aff crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b0bd28d device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x7b0cf022 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x7b0f5a5d pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x7b11f7d2 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7b09464a extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7b1288b2 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x7b182c13 _RNvXs2Q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_22blocking_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7b185ba8 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x7b2bf174 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x7b35285e ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7b375bab irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x7b446533 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7b1db408 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b251da8 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x7b26ab6a bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x7b353105 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7b36a9db fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7b4638ba xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b499bc9 cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b5ad387 _RNvMNtCs9WMcp1Hn5Bv_4core3f32f16partial_classify +EXPORT_SYMBOL_GPL vmlinux 0x7b691c41 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b70d91b devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x7b71725e pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x7b737073 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x7b777066 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x7b8113bb dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7b716d15 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7b726b1b icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x7b7c2143 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x7b7e9ab0 genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b937754 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7b95aac1 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba0e61c devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc71a61 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7bdffc26 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x7be593fb acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x7be9cb1f device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x7beb1715 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x7bf0eb04 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x7bf1ccdb pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7c031913 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x7c08b209 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x7c1bb96d md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x7c1dd2f9 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7bb7e773 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x7bbd7f67 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x7bea1cf3 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7bed4bba __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7c062dac skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x7c0d6b38 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c228aec tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x7c23f9b4 _RNvNvXs0_NtNtCs9WMcp1Hn5Bv_4core5slice5indexjINtB7_10SliceIndexSpE17get_unchecked_mut8comptime -EXPORT_SYMBOL_GPL vmlinux 0x7c24a2a1 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x7c26ad54 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x7c270ee0 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x7c27e1b9 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7c26033d crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2d963b page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x7c320417 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c3627d3 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7c2e518c scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7c30ce89 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7c36ef0e thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4aa445 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x7c595f77 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x7c41c7af acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x7c4b02e2 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x7c52f41d bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c5cb458 gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c837f0c mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x7c8c5397 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x7c92a8b9 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x7c92d1a2 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7c60a695 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x7c6b6f9a iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7c7088b1 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7c8d6ce6 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x7c8fd0f3 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7c9683db tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca0e24a pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7ca0b797 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x7ca44b67 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca7dcbd irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x7cace480 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x7cb0e5dc serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb7fcb7 fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cca4f0e da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x7ccddecb dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7cbe8e64 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7cbf7e7b tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7ccef719 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x7cd2a007 _RNvXs4f_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroU16NtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7cdc1f9e iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x7ce75054 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7ce8b22b dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf7939f pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0738e3 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d0f6569 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d4e3cf6 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x7d55e6cc dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7d23e772 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x7d380012 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7d50459d platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d7969c6 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7d849333 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x7d9cbd0c devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x7dac672b fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x7dac9371 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x7db9b0b2 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x7d632ae3 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7d726722 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x7d7e421d dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7d7f2d52 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7daaaf41 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7db9a30a power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7dbeaf1f __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier 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 0x7de75743 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7dec24c5 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7e06afb2 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7e0073ec regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x7e06badd _RNvXsC_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_17cacheline_paddingNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7e1f2ab2 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x7e36d258 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x7e38cbf2 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x7e117085 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7e26a51b switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7e296bd3 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7e328b58 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4213f2 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x7e450922 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x7e4c5ce4 __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7e4f5f25 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7e4a506d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x7e4bbc49 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x7e5cd737 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e736125 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7e709dab usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e832c7b devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7e8289f7 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e9f26da acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7e95155d pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x7e9a1ac0 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7e9ea5dd cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eb03d61 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x7eb624dc crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7eaa2ffd regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x7eac2364 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7eb559a1 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebcc7f8 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x7ed1c054 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7ebfbeb9 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7ed53a36 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7ed736ea kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0x7ed806a4 _RNvXs3w_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_23mm_struct__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7efc154c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x7ef047e6 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f04b9c6 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x7f094106 _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x7f0cd579 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x7f11f106 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7f161eef __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x7f234ad9 user_update -EXPORT_SYMBOL_GPL vmlinux 0x7f392551 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x7f477560 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x7f5191ba screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x7f52016a ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x7f5bb2b8 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7f6bda97 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7f0a78bb msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7f174df9 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x7f1cf164 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7f36f016 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7f476a37 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7f49b753 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x7f5cadda relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x7f5d3208 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7f604996 __put_net EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f75739c wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x7f776b81 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x7f70b220 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x7f743f0b spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7f752ef7 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x7f7a2334 component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7d8cbc phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7f7ffdba badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x7f81ae27 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f8977a4 adp5520_write EXPORT_SYMBOL_GPL vmlinux 0x7f8ce0ff _RNvXsY_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_8idt_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7f94fe04 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x7f952d90 _RNvXss_NtCs9WMcp1Hn5Bv_4core4charNtB5_18EscapeUnicodeStateNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9fbe10 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fa1d6ec disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7faa6777 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x7faf7cc0 folio_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x7fc515d8 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x7fc88f22 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x7fc94123 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7fd78594 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x7ff2ba2c phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x80225f23 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fbe2bd6 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x7fc52d28 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fe434ca pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x7febd8e9 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x80119a58 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x80419172 devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x804eadd6 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x805b9484 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x8057dca3 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x805ccd22 _RNvXNtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB4_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x80629f21 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x806e88e3 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x805de95d spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x8068eb00 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8069a7ac crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x807140c5 _RNvXNvXss_NtCs9WMcp1Hn5Bv_4core3fmtINtNtBa_4cell7RefCellpENtB8_5Debug3fmtNtB2_19BorrowedPlaceholderBU_3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8071bacb xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x807aa385 srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x807c5014 _RNvXs21_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15wait_queue_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x807f122e sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x807f2286 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x807df939 ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8093f81b usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x809d8287 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x809deb7a inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x809fba36 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80978a9e rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80a42ad4 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x80acf90f __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x80b44518 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x80b50f36 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x80ba9dc0 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x80c46e57 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cbdf66 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0x80cf144e dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x80d3c06c firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x80ce1865 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80ce94d9 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d9a824 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x80e74b21 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x80e86102 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x80e967b1 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x80e48327 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x80ee0430 _RNvXs2P_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20atomic_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x80f0e393 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x80f524f7 switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x810324ac events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x80f6575a dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x81007894 __SCK__tp_func_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x8118fd2b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x81147136 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x81179621 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8119b062 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x811dc4c8 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x811dd633 _RNvXs1s_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB8_8UpperExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x81263bb3 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x81307bd7 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x814a7257 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x8130074d fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x813c3489 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x8142f027 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x8144f3b6 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x8150cae6 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816244b0 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x81631b99 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x816a17c0 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817508fd ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x817a71c6 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x817eaffe devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x817de158 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x817e5ca5 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8186ab7b regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8187e2fd blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x81888a70 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x818d8860 __traceiter_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x81913e45 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a0b729 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x81a0e4a6 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81c2e348 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x81beac40 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x81c6b1fb _RNvXs1Z_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_11EscapeDebugNtNtBa_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x81d0f0d1 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free -EXPORT_SYMBOL_GPL vmlinux 0x81d31a19 get_device EXPORT_SYMBOL_GPL vmlinux 0x81de4650 register_ftrace_direct_multi EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e47844 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x81e7e55a bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x81e56a44 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x81e6d536 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x81ed9c7f fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81f4117e pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x820592f8 input_class -EXPORT_SYMBOL_GPL vmlinux 0x82077a81 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820a7892 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x82126e2e _RNvXs1R_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u64x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x821f4a12 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822714ff usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x8232ac46 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x8228b4ca lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x822e2f0f fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x823e22fd led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8245ab26 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8246f1b8 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x825212b0 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x8257a110 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x8271c213 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x8275f110 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x8277e6be crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog EXPORT_SYMBOL_GPL vmlinux 0x82864f02 _RNvXs3A_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18vm_special_mappingNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82d35683 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x82a8bed8 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x82b0c7c3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x82b22bf2 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x82c070a7 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e7e851 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x82f0eaec __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x82ff4669 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x83122f42 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x82fde0b1 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x830a3a0e of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x830a5902 vcap_keyset_name EXPORT_SYMBOL_GPL vmlinux 0x83154b1b _RNvXso_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_6BinaryNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0x831a6747 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x831caab4 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x8324b35e _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8327e664 of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x83297868 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8347346b devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x833c96d8 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835d447b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x8357dc9e bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x8365dba5 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x83668b5a wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x83679383 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x836a22ff adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8379b340 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x83845429 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x83acf6f3 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x8371a6e9 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x8380c707 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x83a91a9e dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x83ae198c blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0x83b19be9 _RNvXsx_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9AlignmentNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x83b9431e genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x83bdc473 _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_13ParseIntError4kind -EXPORT_SYMBOL_GPL vmlinux 0x83ca3239 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x83cd6f6e pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x83d922ed dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0x83e43efe dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x83f21c3d dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x840bc62b __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8410516f usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x83d5b5af led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x83d850fa dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84194e4a ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x841ed3b5 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842ef64e crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84305b73 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8440ba9b msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x8440ea45 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x84453c03 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845256fe get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x84525741 _RNvXNtCs9WMcp1Hn5Bv_4core9panickingNtB2_10AssertKindNtNtB4_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x845deea9 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter15debug_upper_hex EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8463dccd balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8465cd50 device_move +EXPORT_SYMBOL_GPL vmlinux 0x8478c2d7 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x847d1a4d _RNvXsa_NtCsiTPnVqBGVaY_6kernel3strNtB5_9FormatterNtNtNtCs9WMcp1Hn5Bv_4core3ops5deref5Deref5deref -EXPORT_SYMBOL_GPL vmlinux 0x84822590 bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0x848c2105 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x849b2f0d proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x849ce828 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x849f856e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x84a86a29 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x849a8a2c bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x84a46958 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84b88d8b usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x84bc6035 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core5panic8locationNtB5_8LocationNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x84cb5998 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x84cf6d32 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x84d120ac gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x84d5a2d4 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x84cdd88c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x84d18905 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x84d21904 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x84db7b51 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x84ea4d8e debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x84ee4147 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x84f98b55 destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x84ff0589 iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850d282e irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x85100526 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8511f95b pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x8512fa67 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x852109ad device_set_node EXPORT_SYMBOL_GPL vmlinux 0x85219289 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f32f9from_bits13ct_u32_to_f32 -EXPORT_SYMBOL_GPL vmlinux 0x852fec4f usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x8537d264 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x852681f9 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x855340ab pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855ab7a7 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd -EXPORT_SYMBOL_GPL vmlinux 0x857f3951 xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x858364a6 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x8583f872 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x856da844 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x856e00ae blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x857c3682 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x8589d6b7 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x858b8f02 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x858d1d62 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x85923e65 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x85964ae7 _RNvXs2V_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m64x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x859ce665 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x859ec67c iov_iter_get_pages_alloc -EXPORT_SYMBOL_GPL vmlinux 0x859fac56 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x85a0e99c pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio -EXPORT_SYMBOL_GPL vmlinux 0x85b2d86f pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x85b4b249 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x85bd2f14 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x85b19fd0 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x85b9d089 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85bf67a1 vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85ccc2e9 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x85d6743f power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x85d05362 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x85d25dbe irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85d8085a gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x85e2686a iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x85e335e4 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x85e6f63c devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x85eadd61 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f2a6f5 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x85f6be58 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x8600ec0f ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x8615f5f4 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x85f05c72 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x85f099ed dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x85f17a9e virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x85f8857b phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85fc4d9d rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x86012b8c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x8603a280 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x8619fbf4 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86229606 acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862c868f ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x863dedde clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8640bf77 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865ad955 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x8660b5e7 _RNvXs4n_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6u32x16NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x866f323f sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x866574c1 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8668a09b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x866e7034 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x8671bea2 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x867fd1a9 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x867e1c8a __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868e20cb pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x8694fa9f __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x869756be _RNvMs2_NtCs9WMcp1Hn5Bv_4core3numn14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0x8698045d devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x86a0adf4 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x86a44b25 _RNvXs1b_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x86a98df5 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x86b011d8 __rust_realloc -EXPORT_SYMBOL_GPL vmlinux 0x86b026d7 events_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86b54b46 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x86b690cb iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x86bd3151 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86d14f9e uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x86dc53b0 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x86dea3a1 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x86ef7e49 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x86f4673c vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x86f634ec edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x86cc37df fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x86d0bf38 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x86d1fa58 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x86f08c31 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x86f34a20 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87008a76 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x87036ea6 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x870b9dbc acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x870d51ee fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871b363d pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x871c8617 pci_has_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x871f0b9c crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x87195867 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x87271271 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x8741b88f _RNvXs1Y_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeUnicodeNtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x87605168 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x877580f5 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x87782927 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x87609fd0 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x87660674 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x87809bc7 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x87830f9c sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x8787da54 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x87887ae3 _RNvXs4j_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_12NonZeroUsizeNtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x8795d98e platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87ad22a7 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x87af5367 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x8792ebbb device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x8798ff24 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x879a4d99 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x87b42ac8 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x87b889d5 _RNvXsQ_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_11StrSearcherNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x87bb5292 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x87c185e2 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x87c5d86f device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x87cb5333 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x87cd7058 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x87d222c1 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x87d7c9fa blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87e942ac acpi_subsys_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x87f8d3c3 _RNvXsh_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15callthunk_sitesNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x87fbf802 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x87fd2bb5 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x882270fe __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x882501e0 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x88041b07 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x88047a3b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x8806d50d rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x88219ecf filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x882a58b6 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x8837a833 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x8838a41d _RNvXsS_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x883d72c7 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x8839b518 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x883f3bc2 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x88419830 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter12debug_struct -EXPORT_SYMBOL_GPL vmlinux 0x884503ae uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x88451bf8 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock -EXPORT_SYMBOL_GPL vmlinux 0x88478d77 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x8850245a hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x884c4ad4 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x884d7520 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x886b3c1e gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x887448db bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x887bd17e static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x88822e59 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x888bd297 mnt_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x88952374 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x8898b480 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x88568527 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x8869068e ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x886dc096 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8870ddb5 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x88763a93 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x8879109b serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8891d392 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b44841 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x88b1aaf1 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b6fc09 _RNvXsc_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_8OrderingNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x88b77ad9 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x88c474b4 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x88bca25d xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x88c3461a mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x88c86976 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x88cbba54 devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88d4dc33 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x88d924f2 _RNvXsf_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3cmp10PartialOrd11partial_cmp -EXPORT_SYMBOL_GPL vmlinux 0x88e4232e regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x88ea132e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x88d9defd class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88e171e5 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x88eb7783 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8902831c wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88f2adcc pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x88f32e2b xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x88f4f43f blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x88ffbbbf __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8900b245 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x89029bc2 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x89085887 _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB4_9Utf8ErrorNtNtB8_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8909a941 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x890c8194 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x890d5208 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x8910e3f0 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x89156cd6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x89129773 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x89181a42 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892b6b5f regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x8932600c xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x89370a90 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x893a1314 debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x89432935 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8945120b __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x89495529 _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp19as_chunks_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x895fafac iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x8949debe regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x89574961 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x895cf0a5 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8960625b scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x89639e54 _RNvXsc_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3implNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x896608fe xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x8978188a usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x898e26e3 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x898ffe76 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x89762eab xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x89916141 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x899283e0 _RNvXs1W_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18___call_single_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x89973966 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x899d12bd devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x89a3dd0a fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x899aac2a crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x89aac57d _RNvMs_NtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB4_9Formatted5write EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b5b339 devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bcc768 pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0x89d7595f __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x89c998b4 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x89de46cd scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f2c005 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x89f90d67 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x8a0d2e7f lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8a151f34 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8a16582b bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a16df13 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x89fb3212 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x89fee0b1 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x8a000ae4 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x8a065a37 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8a0d7bbe regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8a14cf07 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x8a2aecf8 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x8a2b8a31 _RNvXNtNtCs9WMcp1Hn5Bv_4core3ops5rangeNtB2_9RangeFullNtNtB6_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8a337eaf msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x8a372d33 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x8a335726 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x8a38c11f gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP -EXPORT_SYMBOL_GPL vmlinux 0x8a5e65fa devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6e1c03 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8a7cabfe cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a7eacb5 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x8a814e5f pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x8a82f886 dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8cc8ae fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot -EXPORT_SYMBOL_GPL vmlinux 0x8aa19a1a devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x8aa1dddb crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x8aa69e6e tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x8ab00b38 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8aa95caf xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8ab3faa0 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8ab7a0bd tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ad003a7 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x8ac737da rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8ad911b0 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x8aee0b00 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x8ae74c3b pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x8af8beee clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x8afacd22 _RNvXs1s_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_26fxregs_state__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x8afe771c _RNvNtCs9WMcp1Hn5Bv_4core9panicking15const_panic_fmt +EXPORT_SYMBOL_GPL vmlinux 0x8b016107 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8b036d95 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1fc99c extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x8b28c6e3 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x8b2d2847 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x8b389c81 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8b38d8b9 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8b3d60cc vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b4393e3 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b4be669 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x8b4a0ecb dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x8b521e8e ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x8b5340fc ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0x8b60984b icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x8b7395fb xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x8b664d03 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x8b6dd737 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x8b774d39 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data9uppercase6lookup -EXPORT_SYMBOL_GPL vmlinux 0x8b7b509d __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x8b7b8129 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x8b7c56e2 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x8b8327e8 pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8a9f5c handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b90c0fa ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x8b91c44f _RNvXse_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impxNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8b9d5e23 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8baa0912 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x8bab7d7b devm_pwm_lpss_probe EXPORT_SYMBOL_GPL vmlinux 0x8bb09499 _RNvXs1y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16mpx_bndcsr_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8bb3a6ea dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x8bb96173 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x8be9a497 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x8bee3813 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8bcb73ce platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x8bccf6e0 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8bd15e8d __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x8becf74c __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x8bf3a8a2 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x8bf97ae8 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8bfb5206 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c0241d0 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x8c03c515 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0535f8 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0ca863 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8c04196e serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x8c072182 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c103f32 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x8c20bd39 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x8c254776 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8c12d99a devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x8c1cd808 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x8c206b4f phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x8c249571 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs EXPORT_SYMBOL_GPL vmlinux 0x8c364e2d pci_doe_submit_task EXPORT_SYMBOL_GPL vmlinux 0x8c4232b6 synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c49cb78 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c4a21cf devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8c4c7386 uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c4d50a4 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit EXPORT_SYMBOL_GPL vmlinux 0x8c5bdba8 _RNvXsg_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_13callback_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8c5dde4a rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x8c7250f4 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c821b03 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8c7f93e0 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x8c808c4d device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x8c83e0b0 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c90ecfc dev_pm_qos_hide_latency_tolerance 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 0x8ca9eaca _RNvXs3B_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9free_areaNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8cb02ab5 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x8cc2aff7 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8cca5f86 vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x8ccd7025 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x8cd6a396 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x8cf601f0 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x8d01ba22 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x8d055bb0 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x8d1acb67 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x8cc4e1bf md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x8cd25960 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8cd2e4b2 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8cdbbb7b vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x8d04acf5 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8d15843d device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8d170a8c platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d2ef056 _RNvXsz_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB7_8UpperHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0x8d32f13c sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x8d3cc6fb _RNvXs1X_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18___call_single_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8d48e768 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d5dffaf gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x8d6be8b5 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8d72f98c acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x8d69f530 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8d6be17c inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x8d7643b0 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d813930 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x8d81c9aa serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x8d82fe8f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8d80cfac pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d910291 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x8d936097 _RNvXsQ_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8d9401e8 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x8d95e638 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x8d96390c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8d9c6a29 pci_p2pdma_distance_many EXPORT_SYMBOL_GPL vmlinux 0x8d9dad66 _RNvXsk_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impsNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8da89bd1 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x8db6431f is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x8dc515f1 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x8db1c19b mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ddd6fe7 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8dd249e3 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x8ddbace9 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x8dde97db devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8dec5790 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x8defae36 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x8df5c0d3 _RNvXsr_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impiNtB9_8UpperExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x8e0d8485 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB5_4PartNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8e11ef48 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x8e14b4f5 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0x8e30944a __rg_dealloc -EXPORT_SYMBOL_GPL vmlinux 0x8e31a766 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x8e309933 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8e34f141 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e3bd02a debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8e3bd95e crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8e43b595 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x8e474224 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x8e4ab31e nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x8e4c35a8 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x8e4cf6da dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e506d97 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x8e5b708f __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8e5dc9d8 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x8e600b3d _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt7from_u8 EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6f8768 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e8a43b4 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x8e8dd45d sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x8e949801 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x8e96ef72 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x8eac7b66 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x8e73cd97 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8e7411e3 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8e74f80c class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8e92cd3e devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x8e941d6e fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x8ea16abf sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x8ea4c991 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x8ea7c33f tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8ebd94cb usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x8ed64067 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x8edcd821 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x8ee5236b crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x8ee7e8fc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x8eae2608 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x8eba54f9 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ec60373 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ec9c816 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x8ee66d27 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eefaab9 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ef57626 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x8f01c786 irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b2ccf devm_hte_register_chip EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches EXPORT_SYMBOL_GPL vmlinux 0x8f0f893b _RNvXsi_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_23qspinlock__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8f127bcf decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x8f1df19f blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8f24ec63 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f4049f4 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x8f55c0c0 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x8f5affaa hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x8f5b99a6 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x8f666cc6 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f3137b4 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x8f3a749e __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x8f3b515a fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x8f3e37c4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8f5eae40 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7171f5 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x8f7376cf gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8f6d2d3a acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f70ffd5 dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7ad95f iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x8f7b1b37 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x8f7b985a ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7bf3d6 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8f8730b8 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x8f8766ca mctp_unregister_netdev -EXPORT_SYMBOL_GPL vmlinux 0x8f8b6db9 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x8f94dc10 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x8f9ad14d bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x8fa3a820 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fa63f1d dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fb409b4 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x8fb535f0 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x8fb639c1 gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fcb95e6 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x8fd86227 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x8fc936fa serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8fd12247 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x8fda202f _RNvMs6_NtCs9WMcp1Hn5Bv_4core3numm14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0x8fe5dc04 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x8ff4534f devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8fdd099f usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8fe0f6b2 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x8fe18646 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8fe28a42 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x8ff17db9 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x900c755a wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x90161f94 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x90062750 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x900e3ddd device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x901172ac thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x9017ce5d irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x901bbd83 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x901c698a _RNvXs2B_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9debug_objNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x901d5f77 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x9022c104 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x901f677c fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x9021b5d3 acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x902722b8 of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903c0995 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x90435a45 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x906213b1 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x90669b43 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x903dbc9e skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x903eeb39 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x904060e5 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9053be0a ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x907313c1 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x90737d1d _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x90863f6b iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x908be7c4 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x9086787f usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0x90a37b0a _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings4CRIT +EXPORT_SYMBOL_GPL vmlinux 0x90a5f1a2 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x90a7c5d4 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x90a7e979 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90ab8dd9 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90b7b9d9 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x90b9b1ca gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x90ba8d6c usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x90c286d3 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x90b0f508 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x90b24183 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d47b9f pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x90d4beae get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90e2f2d3 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x90e5ce1c ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x91069b06 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x91030274 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x91072c99 _RNvXNtCs9WMcp1Hn5Bv_4core5asciiNtB2_13EscapeDefaultNtNtNtNtB4_4iter6traits8iterator8Iterator9size_hint EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x91225829 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x91252df0 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x912d0e65 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x911ec9d3 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91492762 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x915e97fa edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x915177a7 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x91582afa vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x91621dc1 _RNvXsg_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_13CharErrorKindNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9169511a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x91727e1d i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x916d76c3 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x9175549f wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x9193d5b5 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x9183d0ed fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919bc1af blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x91a01e84 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x91a93182 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x91aeef44 usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x91b4eafe _RNvXsk_NtCs9WMcp1Hn5Bv_4core3numsNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x91b5d879 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b84676 usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0x91bff512 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x91c048ac debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91cf2bef rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x91d28cec tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x91d84576 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x91dc167a _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0x91dea09d tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x91e10b99 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x91e80466 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x91dcbe2f __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x91dde396 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91f4316b kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x91fc0362 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x92024026 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x92031fe4 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9206fc26 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x92096c46 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x920e7568 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data11white_space6lookup -EXPORT_SYMBOL_GPL vmlinux 0x920f9448 blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x922f36d1 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x921f3a38 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x92265aa4 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x922d3014 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x922eae0a irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x9233e2c3 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x92398da6 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x92414cb5 virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924b37c0 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core5slice5asciiNtB5_11EscapeAsciiNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x927827c6 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x928d26d6 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x928f6c0c ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x929afd87 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x929e7d03 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x925c6263 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x926e5ee2 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x927e5731 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x9280dfee xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x9299e381 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x929c6b8f show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92af7d53 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x92b4da89 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c26094 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x92cdbe52 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x92cdcbdf __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d39f55 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x92d5d58d tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92ef1750 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x92ef6c27 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x92ec94b9 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x92f404bc devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x92f7a353 _RNvMs_NtCsiTPnVqBGVaY_6kernel3strNtB4_4CStr19from_bytes_with_nul -EXPORT_SYMBOL_GPL vmlinux 0x92fa9bb0 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x931561bc ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9303a2ce blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9329aae7 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array EXPORT_SYMBOL_GPL vmlinux 0x9334a695 _RNvXs2P_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x93364712 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9345a9f3 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x93465102 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x934872f2 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9351982c __SCK__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x9366aaf6 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x936ff3bd devres_find -EXPORT_SYMBOL_GPL vmlinux 0x937f8f5a transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x9385bafa __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x939511e5 iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x93a4d635 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x93b70697 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x93c3af3b ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x936148b0 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x936815d3 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x93a8c524 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x93b3aeb9 acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93c92c33 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x93cc33d5 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x93d05095 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d61202 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93d80a54 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x93d87d9e validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93ddb325 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x93dffb12 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f048ef filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x93f1bf3f __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x93ff8b90 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9403df5e rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x9419bf22 dev_pm_opp_sync_regulators EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94235551 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942dcede dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x942a41b9 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x942d85a4 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x942e4efc nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x9437fcc9 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x943fd43f sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9440ae76 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x944a400a debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x94556d0d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x945ea016 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x945f600c ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x9468d483 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x944040b5 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x94511718 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x94691fc2 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x946a01c3 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9474d85a key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x9476d668 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x94723a5f crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x94808fe1 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0x94869723 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x948a5a06 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x94902754 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x9492df9a ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x947bbc29 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x947f8eee serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x94849d11 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x948537f8 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x948f94c7 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949d6e6e _RNvNtCsiTPnVqBGVaY_6kernel5print11call_printk +EXPORT_SYMBOL_GPL vmlinux 0x949e463a xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a0b88a dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x94a6b14b _RNvXsa_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint -EXPORT_SYMBOL_GPL vmlinux 0x94b4e91f kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x94ba99ba xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x94aa9c19 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x94bccb02 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data11conversions8to_lower +EXPORT_SYMBOL_GPL vmlinux 0x94c84bfb mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x94d9f1b4 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x94e4b40b dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x94e4dae8 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x94ef070e gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f80da5 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95059b30 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x950cd097 da903x_write EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x9522e325 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x952860ab __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x95270109 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x9528d45d rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x952e90cd _RNvXs11_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7pv_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95436670 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9552e7a4 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x9542e86e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x9548a5ec ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x954a3f6d device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95675c91 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9568a000 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9571c52f __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x956b66ad wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x956d60fb devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x957343ef xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x957422c8 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x95868d2f _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter10debug_list +EXPORT_SYMBOL_GPL vmlinux 0x95887c5f is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958f7053 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x95901f36 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95bc280b __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x95b86129 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x95bbf9be smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bde394 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x95c16e6a xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x95c86c59 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x95e4e808 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x95e825a2 _RNvXse_NtCs9WMcp1Hn5Bv_4core3anyNtB5_6TypeIdNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x95ee53df do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x95e9211b ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x960140ac class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x960167f6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x9609db8e __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x960e789d __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x961c67ba __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x961c3a56 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962238d3 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x96229949 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x96252a9f iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x962f87d8 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x963547ca _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap5entry -EXPORT_SYMBOL_GPL vmlinux 0x964a1943 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x9654c24a sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x9654ec90 acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96566aa5 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x96568685 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x9666c334 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3fmt3numnNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x9667f6cc inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x96754365 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x968e1dad input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x9690504a dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0x9690fa86 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x96a37a55 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x968ea489 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x96a11ed7 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x96a48880 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96ab52b4 fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96d0268a mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x96d84280 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x96d8fe04 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x96e43179 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x96e6a234 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x96f559cb __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x96f704cf nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x97064090 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x9712d5bc pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x96ba0e8b pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x96d4f895 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x96fc8d71 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x970230a0 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9705419c dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x97098555 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x971b5d71 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3cmp5implszNtB7_3Ord3cmp -EXPORT_SYMBOL_GPL vmlinux 0x9725c49b udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x97313134 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x97328a94 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x9736f6a9 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x971c3722 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x9724ed91 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x972b311a scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x976919c0 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x976d76ca dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x97725a72 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x975fe39c uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x97656cff io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x976950c9 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9775dd83 iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977f6ad6 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x977f8e14 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x97851529 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x978b622a _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo10can_unwind EXPORT_SYMBOL_GPL vmlinux 0x978cd4f9 _RNvXs4i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10percpu_refNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x979346f9 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x97995ccb tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x979f1907 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x97923e1d netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x9798f6b5 led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x97a76f46 _RNvMNtCs9WMcp1Hn5Bv_4core3f64d13classify_bits -EXPORT_SYMBOL_GPL vmlinux 0x97ae4ef6 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x97c3edf5 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x97c517ed pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x97d1d156 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x97d52f0a edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x97d8a7d4 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x97a92983 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x97ab3ca7 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x97abfa0f dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x97ca47f0 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97d1f5a5 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x97d3c582 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97e25ce5 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x97ed692c pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x97f2e94b iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x98003ad6 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x98025068 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x97e88f20 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x980241d7 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x9804d857 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x980e07c6 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x980e8893 tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0x981da11e _RNvXs3j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_33folio__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9824e3ec phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x98337e8a wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x981f96f1 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x983081cd rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec +EXPORT_SYMBOL_GPL vmlinux 0x983990fa ping_hash EXPORT_SYMBOL_GPL vmlinux 0x983b2a3d _RNvXs3T_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i8x64NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9843336c devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x983eb526 pwm_free EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98482d8f __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x9848ad7f crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9851560b vcap_keyset_name EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9855a3fe edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x98577db0 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x98593e12 devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x9864108d dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x986cfa2f ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x986d6e2f crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x986e1e44 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x98702169 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x9876af73 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987f136c xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x987f2204 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x987e5c1f iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule EXPORT_SYMBOL_GPL vmlinux 0x98819de5 _RNvXsJ_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicU32NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x98876a94 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x98891598 efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98a1b455 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x98e42e1c rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x98a0691f pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x98a51ab4 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x98c97457 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x98d31972 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x98e6feec device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f3bdf1 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x991fd49d __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x98fcec0a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x990b5d8a pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9914c329 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x991fd689 _RNvXNtCsiTPnVqBGVaY_6kernel9allocatorNtB2_15KernelAllocatorNtNtNtCs9WMcp1Hn5Bv_4core5alloc6global11GlobalAlloc7dealloc -EXPORT_SYMBOL_GPL vmlinux 0x992e44a6 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x992cb233 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect EXPORT_SYMBOL_GPL vmlinux 0x99383ebe _RNvXsD_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x9951cf31 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x99560797 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9957de4a acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9961f078 unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x9963af8f ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x9966cd24 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x9968690b sis_info133_for_sata EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9970d176 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x99691276 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9974d98a fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x99754252 pci_ims_alloc_irq EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x9980739f pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x9983c8b6 _RNvMs1_NtCs9WMcp1Hn5Bv_4core3numx14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x9988830a _RNvXsq_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impjNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x998aefaa report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998dc024 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x99935104 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x99987521 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x999e088d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x999bfc3c fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a5fd0c irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x99aa69ac fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x99b2d8da simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x99c22b66 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x99c52982 _RNvXs2t_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11swait_queueNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x99da110f elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x99c78407 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x99d84440 xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0x99e7dc59 _RNvXsE_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicI32NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x99e81794 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x99efb71c __tracepoint_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f05c1c wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x99f179ac clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a06cac8 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1b3ec0 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9a143507 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x9a191307 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a262c72 iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x9a26b8b7 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x9a3be2cf gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x9a3d625a serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9a3208a7 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x9a40f442 _RNvXsb_NtCsiTPnVqBGVaY_6kernel3strNtB5_9FormatterNtNtCs9WMcp1Hn5Bv_4core3fmt5Write9write_str -EXPORT_SYMBOL_GPL vmlinux 0x9a51d47d vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a42f148 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x9a53fde7 _RNvXs15_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_23paravirt_patch_templateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9a568bfe debugfs_create_file_size 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 0x9a6159be __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x9a66f1ee usb_string -EXPORT_SYMBOL_GPL vmlinux 0x9a75f47c usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x9a7c7738 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9a793e7e modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x9a859aa5 _RNvXsM_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB5_11EncodeUtf16NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9a95b4f2 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x9aa3be45 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9aae6ae4 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acdd3d2 icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x9ac5eae6 genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x9adca046 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9ae2c424 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x9ad69bcb udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ad973a1 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9ada5442 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9afbb9e3 dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0x9b21d23f crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x9b26efed l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b2c0db2 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x9b35886b dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x9b392715 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9b3eb668 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b414e6f crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9af6388b __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9af81d26 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9afefdd9 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x9aff502b crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x9b279df6 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9b36f959 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9b36ff7d xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x9b4a6a72 pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x9b4f206a _RNvNtCs9WMcp1Hn5Bv_4core6result13unwrap_failed EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b55f8ef synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x9b5dce59 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x9b6142d5 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b768201 modify_ftrace_direct_multi -EXPORT_SYMBOL_GPL vmlinux 0x9b823c8a dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b890cde watchdog_notify_pretimeout 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 EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bab1f0b __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb1fc7d tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x9bb7bffc xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x9bc04249 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x9bbad1ae simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9bbd80d1 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x9bc2217b phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x9bc43c6d _RNvXs3P_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15scale_freq_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9bcbdaa9 pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0x9bcd9c4c __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9bdf2c11 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x9bcdb60c acpi_dev_gpio_irq_wake_get_by EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc -EXPORT_SYMBOL_GPL vmlinux 0x9be28723 dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf19638 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x9c1023af crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9c1532a2 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x9c1755ba _RNvXsk_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_21qrwlock__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9c379436 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x9c1cb952 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x9c275679 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9c4121b2 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x9c4302ea _RNvXsJ_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_3NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9c4b1942 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0x9c500087 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core5slice5asciiNtB5_11EscapeAsciiNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9c515056 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9c5a9c7d do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x9c5ed355 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9c54132f xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x9c5d0af0 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9c5f1e1b kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x9c6df40a tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c749077 _RNvXs2U_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25arch_uprobe__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9c787686 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c831696 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x9c9327ae __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid -EXPORT_SYMBOL_GPL vmlinux 0x9c99b700 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location EXPORT_SYMBOL_GPL vmlinux 0x9cc07974 _RNvXs2v_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15uprobe_consumerNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc700ac edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9cd17bd8 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x9cd53b23 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdb5f07 _RNvXs9_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_5ErrorNtB5_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ce447fc sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x9ce4e5e8 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings5DEBUG -EXPORT_SYMBOL_GPL vmlinux 0x9ce5c743 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x9ce51a2a usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0x9cee0aee _RNvXNtCs9WMcp1Hn5Bv_4core4charNtB2_13EscapeUnicodeNtNtNtNtB4_4iter6traits8iterator8Iterator4last +EXPORT_SYMBOL_GPL vmlinux 0x9cf1ad07 vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cfb476a blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x9cf5e6e7 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x9d054a16 _RNvXs1_NtCsiTPnVqBGVaY_6kernel3strNtB5_4CStrNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9d09e3b0 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x9d059df7 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d113ee0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9d12ab6b cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow -EXPORT_SYMBOL_GPL vmlinux 0x9d24f9af ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x9d296766 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x9d2bb96b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x9d2a91da inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9d2f6f37 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x9d31cd71 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x9d32b047 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x9d32e632 _RNvXsb_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imptNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register EXPORT_SYMBOL_GPL vmlinux 0x9d3ede65 _RNvXNtCs9WMcp1Hn5Bv_4core5allocNtB2_10AllocErrorNtNtB4_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d587046 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x9d591286 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x9d5a30d0 _RNvXsc_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_implmNtB5_11ReverseBits12reverse_bits +EXPORT_SYMBOL_GPL vmlinux 0x9d5aee1e mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x9d5dbe37 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x9d608607 _RNvXs0_NtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x865cpuidNtB5_11CpuidResultNtNtBb_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9d6bbf85 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x9d7beb68 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x9d828547 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9d61caf1 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x9d86d258 _RNvXs4g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15percpu_ref_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9d88c3fb __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8f62d8 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x9d939b7c devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x9d8d3c8f __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x9daf5b00 _RNvXs2m_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_24maple_node__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9db0db55 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x9dc1d898 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x9dc256aa dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0x9dccbd95 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x9de557c7 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x9de610b9 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x9df1b832 dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0x9df60972 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9dc2ac2f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x9dcc15d7 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x9de25bd7 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x9df07632 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e04bb2f rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9e10094a _RNvXsn_NtNtCs9WMcp1Hn5Bv_4core9core_simd5masksaNtNtB5_6sealed6Sealed2eq -EXPORT_SYMBOL_GPL vmlinux 0x9e100bb0 xen_unregister_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x9e125950 _RNvXsN_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_17CharSliceSearcherNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x9e151910 _RNvNvXsi_NtCs9WMcp1Hn5Bv_4core3fmtPpNtB7_7Pointer3fmt5inner +EXPORT_SYMBOL_GPL vmlinux 0x9e1e66c7 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2acb58 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x9e2ba14d dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x9e3a1a83 _RNvXsR_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9edid_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4e27e8 register_btf_fmodret_id_set -EXPORT_SYMBOL_GPL vmlinux 0x9e5f56a1 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x9e98e6ea zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x9e93866f kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9e942ac2 __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9e9d4579 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9e9ea421 _RNvXs13_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB6_11AtomicUsizeNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9eadef51 isa_register_driver EXPORT_SYMBOL_GPL vmlinux 0x9ebfa907 _RNvXs2i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_24maple_tree__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9ecd53f5 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x9ec646b2 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9ed07eaf pci_p2pdma_add_resource EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed87664 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x9ee0c1a8 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef0afa6 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x9ef13e07 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x9ef16323 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9ef3444e gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x9efc168e generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f2a7333 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x9f1fbbc0 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x9f2d8416 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9f482e02 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x9f628795 _RNvXs2y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11old_timex32NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9f6ab0e7 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x9f6f54fc disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x9f977f47 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9f73e326 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x9f793964 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x9f7d4ca3 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x9f854ea4 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9faa17b4 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x9facbdf0 dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x9fb6f74e genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x9fb89624 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x9fab9d4e dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc25fb6 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x9fc80684 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x9fcdfdbb sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fd33dbd _RNvXs7_NtCs9WMcp1Hn5Bv_4core3ffiNtB5_10VaListImplNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9fd35fa6 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x9fdcd361 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe29d5a vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x9fe34678 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff396a6 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9ff51619 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x9ff91ec2 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x9ffed43f pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xa0102f17 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ff47e05 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ffa8761 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa00003fa vcap_rule_iter EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01e9e56 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xa028da72 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa0305fb7 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xa034f686 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11SipHasher24NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa03560ff ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa045745b crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xa04ae3a3 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa04bd4f9 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06e5302 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xa0715d8f devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xa07b20d9 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa079b82a crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xa079de1f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xa07e09c5 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08d9901 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0a743ce fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xa0a05ee1 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0c0fcf0 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d4b14a crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0d93733 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa0d93666 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa0e05fc7 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0e7701c __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xa0f34ddc _RNvXsf_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_6___m128NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa0f5a696 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xa0fb9f15 _RNvXs3I_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_4zoneNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa1055239 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xa111b88f dm_put EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type EXPORT_SYMBOL_GPL vmlinux 0xa1183b10 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xa11a842c fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa11ec816 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xa1248341 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa125115b ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xa1273dc0 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa133c155 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xa138616b iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0xa13b2e0d _RNvXsn_NtCs9WMcp1Hn5Bv_4core3numnNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xa1426172 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa147ca2c kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15b2414 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0xa1607311 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xa168bc84 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xa16c4177 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xa170a0a3 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xa19c53ad pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xa1570f22 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa16e57e4 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xa16f794b fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xa1756436 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa17fabdf __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa18bbbff devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xa19b4ca4 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa19b5f41 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0xa19f075c _RNvXs2M_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9srcu_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa1c35224 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xa1a1b9fa usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xa1ad8e37 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xa1d466f7 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xa1c944c3 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xa1cf0d9e pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1d1305b netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1eeee18 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa1f7e596 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa1e6b00f xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xa1fea466 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa20d5376 _RNvNvMs1d_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB8_12NonZeroIsize13new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xa2171ba2 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xa2184085 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xa21bf2c8 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa2140f94 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xa21dbd3b usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa225437b ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xa229dc21 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa227e09a usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xa22dd42b _RNvXst_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_21__ddebug__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa23f099c nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xa2465383 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xa24cede4 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xa265601b ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xa269ebcc pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xa236e0c5 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xa2657b28 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26e4cf5 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa2933e9f devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xa29ef0ad vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa27ba087 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa28a38f3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa2950127 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xa2a1c32e _RNvXs3J_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7zonerefNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa2a8a80f blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa2abf175 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b3ea0d nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa2b64f48 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa2b150c8 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa2b3c43e scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xa2b86cc3 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2ba2ef6 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa2bb302b cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa2bec1dc devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xa2c0e009 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2c30fec __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear -EXPORT_SYMBOL_GPL vmlinux 0xa2d4222d da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2d89bf1 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e92bb2 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2f4bd9f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa2f58854 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa305aa13 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa310edb7 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa304668d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xa30d4699 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xa315fa7f _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0xa31a9ab5 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xa32b2aa5 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xa33f7b07 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xa3343f2c pci_msi_prepare EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xa34a4cd0 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xa35876fd __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xa345c69e dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xa35284d3 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa3536042 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa35996ed blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xa35d1f5e _RNvXs2S_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18srcu_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa3614768 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa36614ff mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa36a8d55 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa36d8e38 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xa372ae7a __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa373a349 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa381c4c0 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa3731678 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xa381ef10 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38d1fcd nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a9f576 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa3ac38c2 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xa3ac4e90 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xa3b9033c cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ba9249 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xa3bd2586 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xa3bb0dc5 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xa3c34ebe _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0xa3c4ebe6 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xa3c6b95f __SCK__tp_func_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xa3c7f4eb _RNvXs15_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i16x4NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa3c9d31a _RNvXsj_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint -EXPORT_SYMBOL_GPL vmlinux 0xa3e5d667 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xa3d3ef87 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa3d4113f bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xa3dae417 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xa3e7a8b7 _RNvXsN_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3fbd26e __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4032be2 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0xa407f176 _RNvXs1t_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12fxregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa40addf7 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy EXPORT_SYMBOL_GPL vmlinux 0xa41ee3e1 __rg_alloc_zeroed -EXPORT_SYMBOL_GPL vmlinux 0xa429135d __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa435606c devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0xa435f32c dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0xa43e4ba6 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xa443d966 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa443e0ac virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa446d44a spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44c575f cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xa45072ca regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa44a19e2 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa4519b45 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45e6d7d pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa46a4f52 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xa46c9300 irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xa46c9bdd _RNvXsc_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xa46ca285 _RNvMs4_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugSet5entry EXPORT_SYMBOL_GPL vmlinux 0xa472e3f4 _RNvXs2I_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12execute_workNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa473b33d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa4744edd regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48f9643 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4b6da0b _RNvXsZ_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4i8x8NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa4be416e vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa4b7d36c vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4df5b3a irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xa4e48820 acpi_quirk_skip_serdev_enumeration -EXPORT_SYMBOL_GPL vmlinux 0xa4e7d082 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xa4e8b6c7 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa4f76360 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xa4e6a262 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xa4e79806 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4e91bdb clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xa4ed555d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa4ee1e2c blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xa4f058c3 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xa4f2440a fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xa4fa1536 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xa4fc338c _RNvXsh_NtCs9WMcp1Hn5Bv_4core3fmtcNtB5_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa50e3cdd __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xa518be9d dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xa526fec8 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xa52c421c _RNvXs8_NtCsiTPnVqBGVaY_6kernel3strNtB5_12RawFormatterNtNtCs9WMcp1Hn5Bv_4core3fmt5Write9write_str EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa533fef4 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xa538518f iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xa543fbf2 icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa535cbcf dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xa536f532 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa55986ab phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xa554545e pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xa55eb19e i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xa5619776 _RNvXs0_NtCs9WMcp1Hn5Bv_4core6futureNtB5_8ResumeTyNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa561f112 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5655c54 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa56c2a03 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xa56dc792 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa5718633 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xa5751090 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev +EXPORT_SYMBOL_GPL vmlinux 0xa583739c static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa588302b iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xa5969fec set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xa5a0e582 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xa5ac19f5 _RNvXsg_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_21FromBytesWithNulErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa5b721f7 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cb971e dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa5d19d7d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xa5bf6257 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xa5c068df blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xa5cd574c sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d4b6cc tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa5d6846d pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e6c1e5 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xa5ed5f9c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xa5ebea0d sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f973bb crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xa5ffefac _RNvXsu_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa610e842 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa614acf0 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xa616a2f7 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xa62dd5a6 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xa6370b1c vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0xa63f809c xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa602af29 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0xa61d7f3f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xa6243d64 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xa639abbb regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xa64041ae _RNvXs4_NtCs9WMcp1Hn5Bv_4core4timemINtNtNtB7_3ops5arith3MulNtB5_8DurationE3mul -EXPORT_SYMBOL_GPL vmlinux 0xa6439c8e ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xa643875a compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa6529d3e iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xa656e392 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa64dbbeb intel_pinctrl_get_soc_data EXPORT_SYMBOL_GPL vmlinux 0xa65efb51 _RNvXsf_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_10hlist_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa6618e9c regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xa67c5576 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa68576e8 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xa65f0890 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa6655989 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xa689dbdf net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xa68c7a28 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core4char7convertNtB5_14ParseCharErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa68cd018 _RNvXs22_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeDefaultNtNtBa_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa69b134b devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa68cf5cb tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xa68dd3b0 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa6972e0f crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name EXPORT_SYMBOL_GPL vmlinux 0xa6a1f4b9 _RNvXsg_NtCs9WMcp1Hn5Bv_4core3fmtcNtB5_5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk EXPORT_SYMBOL_GPL vmlinux 0xa6a9aa77 _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0xa6b00fc2 perf_msr_probe EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b10a40 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b88e6f _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa6e1914f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa6c15139 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa6dab8fd fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e387c8 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6e320d2 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa6e8cd14 _RNvXs9_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa6e8d2ad of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xa6f085c3 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xa6f1f598 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa6fa85d6 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xa70752da acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xa6efa20e devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa708c685 serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu EXPORT_SYMBOL_GPL vmlinux 0xa70e8b9e _RNvXs7_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB5_9Utf8ErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa70edb67 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa70eee6b clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0xa712e557 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xa718f74f _RNvXso_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9va_formatNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa71cf428 pinctrl_dev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0xa723fd6a perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xa72631fe pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa7363a97 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xa74cb8cb _RNvXs31_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14percpu_counterNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa75dd5de dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xa76ebe68 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa7619e6a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa761f807 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa768677c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xa7696c37 irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xa7785c23 _RNvXs2X_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25uprobe_task__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa77d04e5 _RNvXs7_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impiNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa78a31c6 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xa78f89e6 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xa7995a37 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa7c5cb9d __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa7d44e81 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xa7ed2a19 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa7832007 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xa788193e mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xa789181b usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa78a83d9 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa793229b usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa79b11ce pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa79c9dd5 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xa7a125e8 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa7a2dfb2 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0xa7b2cf8e tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0xa7b72448 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa7b7cbb8 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xa7c3c672 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa7e66fc8 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xa7f91ac1 _RNvXsI_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa7f96746 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xa7fe502d rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xa81ec5d4 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xa821dac7 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa827af49 devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0xa834972a _RNvXsd_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4u8x4NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa839fea1 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xa849453f md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xa84c7295 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa8446620 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa851c7d0 _RNvXsu_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m512iNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa856e30c _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap6finish +EXPORT_SYMBOL_GPL vmlinux 0xa85a6fdb tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0xa85b7aac _RNvXss_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_16static_key_falseNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa85c51de _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa8636473 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa865a18d ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xa8691f15 _RNvXs1R_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_20SplitAsciiWhitespaceNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa86c2aae ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xa86e9971 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt4zero EXPORT_SYMBOL_GPL vmlinux 0xa87435b2 _RNvXs4h_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6i32x16NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa87ed865 _RNvMs5_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_9DebugList6finish -EXPORT_SYMBOL_GPL vmlinux 0xa8818535 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa880faaa devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xa8860877 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xa88c3eba dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xa890067a devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa89e6d17 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xa8a3315e ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xa8a421c3 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8b7cc46 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa8b656fb inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic -EXPORT_SYMBOL_GPL vmlinux 0xa8c83bde dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xa8c650f4 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa8cae2c2 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xa8cd3216 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0xa8d11a73 _RNvXs2C_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15debug_obj_descrNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa8d252a7 clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0xa8d4b531 _RNvXs3s_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18vm_userfaultfd_ctxNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa8d64da4 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa8d5e579 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xa8e07f1b regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0xa8eba942 _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa8ef3555 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xa8f11ebe crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa8fc1dd0 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa8fe10af crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xa90c5691 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xa90be570 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xa90c4017 blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa91464bf _RNvXs2F_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12delayed_workNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa931a61d pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94408b3 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xa94410fd gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa9326462 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xa94c1463 _RNvXsl_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imptNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa9522baf phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xa952792d _RNvXs2E_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11work_structNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa9559a85 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa954f655 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xa95662a2 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa95741b9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa9592e90 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa95f3ae8 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9887bdc irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xa9899d14 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa9955972 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0xa973aa7e platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xa9792d61 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xa9862bcb sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xa98a10c1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xa98d70c5 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xa99b94f9 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xa99cdc90 mmput_async EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a0958d dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa9a629c8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xa9acacea ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa9b0c164 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xa9b35595 _RNvXsu_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa9d6fa94 acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xa9bcee0d percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa9c81efc crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa9cdba2f __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa9d019fd subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xa9d67535 pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xa9da12fc _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_21FromBytesWithNulErrorNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xa9dac2e0 _RNvXs2A_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19system_counterval_tNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa9e05277 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa9e8a623 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xa9ef8284 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xa9f4b303 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xaa026402 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xaa09612d security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xaa09bd0d sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xaa1d40dc regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xaa1d74f6 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xaa1e35e1 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xaa298504 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xaa3299e9 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xa9ebebde wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xaa1e7992 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa2bb57e blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xaa34d734 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xaa358b39 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xaa36fcd6 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xaa3db5c5 _RNvXs14_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11pv_lock_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xaa42ca06 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xaa4ab7ae _RNvXsf_NtCs9WMcp1Hn5Bv_4core3fmteNtB5_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xaa4b1767 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa66df7b ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7bad8c usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xaa84398f regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xaa853e38 dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa9f4f5d devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0xaaa2c5e9 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xaa9a103c iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xaaa79d0d __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaad83ec led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xaab2a70f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xaaaaf21f xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xaab0b455 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0xaab6d11c _RNvNtCs9WMcp1Hn5Bv_4core3fmt12USIZE_MARKER -EXPORT_SYMBOL_GPL vmlinux 0xaab7f7b5 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xaab9bc50 xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0xaabdef37 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xaac8dfde crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xaad8e7e7 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xaae08880 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xab02021d devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xaac5b5cc crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xaaf56844 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xaaf7ce38 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0xab05071d _RNvMs1_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_11DebugStruct6finish -EXPORT_SYMBOL_GPL vmlinux 0xab0d8ed2 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xab05324b irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xab09c25e fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab258d32 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xab3a89b2 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xab3fbb6d _RNvXsn_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xab46d50b _RNvXs1j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_13msr_regs_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xab51b57e led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xab549c17 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0xab5a5b97 _RNvXsa_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_implhNtB5_11ReverseBits12reverse_bits -EXPORT_SYMBOL_GPL vmlinux 0xab7ae936 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xab896d84 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xab5d354b pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xab7f1fe6 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xab88be0f sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xab8d2e3b regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xab8ec951 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xab963ff1 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xab9c75d2 _RNvMNtCs9WMcp1Hn5Bv_4core3f64d8classify -EXPORT_SYMBOL_GPL vmlinux 0xab9dc82d sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xaba4f694 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xaba81069 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xabb7e762 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xabc06751 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabc3c6ef iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc70962 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xabd116d1 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xabde4787 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xabd30c50 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xabdf7126 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xabe4afef gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xac0fe8cd dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xac11fa38 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xac25021a __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xac12477f led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xac2b00e0 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xac2bd774 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0xac306cd7 _RNvXs2H_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15workqueue_attrsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xac334ed2 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xac3b6558 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xac3ce59d nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xac42466e bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xac42ac8b rust_helper_BUG +EXPORT_SYMBOL_GPL vmlinux 0xac430ac5 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0xac4ec613 _RNvNvMNtCs9WMcp1Hn5Bv_4core3f64d9from_bits13ct_u64_to_f64 -EXPORT_SYMBOL_GPL vmlinux 0xac6016de crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xac66dcbb mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac6da31a create_signature -EXPORT_SYMBOL_GPL vmlinux 0xac7926eb irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xac874d9b irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xac8c1670 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xac8cba47 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xac9c49a0 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xacb3c554 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xac5d1808 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xac775ec8 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xac7a040d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xac928231 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xaca0d505 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xacace238 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacc60acd _RNvNvNtNtCs9WMcp1Hn5Bv_4core5slice3raw18from_raw_parts_mut8comptime +EXPORT_SYMBOL_GPL vmlinux 0xacc77045 hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xacc91848 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacd16ee7 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xacda1fba usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xace19aa5 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xace21fea xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xacea1edc l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xacfcc27c devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xacfd4bdc devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xad03f46f i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xad098567 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xacf3af9a edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xacfd2ea3 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xad05af50 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xad09d8a4 _RNvXs1_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtNtBO_3str5error9Utf8ErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0xad0b44bd __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0xad100dbd devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xad12ee28 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0xad1b09b9 _RNvXs1b_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25__fpstate_64__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xad2257cf i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xad1bc736 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xad263357 _RNvXsm_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xad266cb3 _RNvXsN_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u32x2NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xad355cad nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4936e2 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad4fcf7c srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xad591c3b bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad651272 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xad7fab88 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad852eb9 clk_register_composite EXPORT_SYMBOL_GPL vmlinux 0xad91fdeb _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0xad929798 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xad95e4da addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xad92dddd rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xad9827ba _RNvXs2z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20system_time_snapshotNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xad9e00f9 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xadb6d3d8 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xadd6fa90 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xade12575 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xadc42b6e fsnotify EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xaded13db __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xadedf228 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xadf9cda9 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xadfaa0be __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xadfbacee class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xadfd0201 pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae039268 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xae04b8e4 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xae06b1cc mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xae12ae8a _RNvMs9_NtCs9WMcp1Hn5Bv_4core3numj14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xae2d22a8 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xae2f8500 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xae33cc11 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xae2a7718 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xae2ae214 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xae32e273 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4572d2 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xae4b76fa raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xae5746ae platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xae5cf56a devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xae5053e6 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xae5ee792 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xae60cb16 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xae61e97e irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6c8357 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xae6ca13a usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xae72e3d1 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae82bcf8 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xae883fc9 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0xae89ff33 _RNvXsl_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xae98e2b0 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0xae9f0145 _RNvNtNtCs9WMcp1Hn5Bv_4core3str6traits23str_index_overflow_fail -EXPORT_SYMBOL_GPL vmlinux 0xaea1dec3 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xaea73cd9 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaeb04397 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xaeb13b34 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xaebbe020 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xaecac6da device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xaed93375 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xaedc81cb rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xaee00c02 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaeadf795 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xaeaef434 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xaed107b4 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xaede2a1e nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xaeed3584 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xaef4b423 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0xaef5df38 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xaef7b92c sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xaefa413c led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf10f5b5 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xaf38da58 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf3e0e87 device_del -EXPORT_SYMBOL_GPL vmlinux 0xaf3f4f10 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf5a841d mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xaf679187 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xaf763154 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xaf4d3c98 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xaf4f90de nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xaf5026ee xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaf52e5e8 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xaf54a805 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xaf5d3403 __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf855309 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xaf8eb32c ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xafa2c7b7 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xafa593db ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xafb22802 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xafb35a02 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xaf86a502 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xafa0d4fd vga_default_device EXPORT_SYMBOL_GPL vmlinux 0xafb39d0b _RNvXs3_NtNtCs9WMcp1Hn5Bv_4core3fmt3numxNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0xafc6c5d9 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xafb3d5ee debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xafc26a64 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xafc9aa18 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xafd766aa regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe6aa79 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xafe27888 mddev_init EXPORT_SYMBOL_GPL vmlinux 0xafe76cb6 _RNvXsh_NtCs9WMcp1Hn5Bv_4core3numNtB5_10FpCategoryNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xaff45f82 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xaff1aa09 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xaff4c4f4 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter10sign_minus EXPORT_SYMBOL_GPL vmlinux 0xaffa6361 _RNvXsl_NtCs9WMcp1Hn5Bv_4core3numlNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xb00141f3 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xafff176a dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0063321 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xb0122d1b pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xb014b79b crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0xb019256f _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb01ab555 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb01df07e __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xb0229f1d intel_pinctrl_probe_by_hid EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xb02c0a93 _RNvXsS_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_34jailhouse_setup_data__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb02d7491 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xb0315dd4 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0xb033a08d _RNvXs3m_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_33folio__bindgen_ty_3__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb03862a3 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xb0391831 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xb03caab4 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xb045fead devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xb049f265 _RNvNvMsj_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroU6413new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xb059d05a blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xb062cfaa cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xb05cd10b vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xb0625729 __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xb0641384 _RNvXsp_NtNtCs9WMcp1Hn5Bv_4core9core_simd5maskssNtNtB5_6sealed6Sealed2eq EXPORT_SYMBOL_GPL vmlinux 0xb069bd8c _RNvXsf_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back -EXPORT_SYMBOL_GPL vmlinux 0xb06bb14c tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xb070cdac register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb080c796 pci_p2pdma_distance_many -EXPORT_SYMBOL_GPL vmlinux 0xb082c996 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xb0850f96 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xb0938c71 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb09f32b8 spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0xb0b80a87 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb07adbe5 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xb07e7163 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb08dd6a8 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c6f8c7 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb0cabcb2 __static_call_update -EXPORT_SYMBOL_GPL vmlinux 0xb0cb983e devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0cf21ef ping_err EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0daad8b __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb0e3b96b devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0ece15b __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xb1053645 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xb0f3d024 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb0f6edc6 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11bc319 skcipher_walk_aead_decrypt 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 0xb1373739 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0xb14af239 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xb14b0526 i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb15cdd72 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb12d41dc device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb134a031 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb139bc8b __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xb13dec0d iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb142722c blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xb1454ddb devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb15926cd wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb15d6f3f edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb1622b1c ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb17401f4 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xb17a1230 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xb17bfcc7 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xb18772ea blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xb18dbda9 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xb17cd95d regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb1a3cf22 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xb1ab88d2 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb1b9c023 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d440fe __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb1d5fcca fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xb1d8a29a __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xb1cf6579 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xb1e17786 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f45881 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xb1e3427e usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xb1ec85f8 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xb1ef6793 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb1fc104f blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1ff053b tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1ffce4d sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2150d3c regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb21930f8 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2355e6b blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2420636 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xb2425ebd regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb2441a47 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0xb247ee9e bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb24a21b0 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb24b0f73 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb251fbb7 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0xb255c1af _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo7payload -EXPORT_SYMBOL_GPL vmlinux 0xb258b1bc xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xb258408b switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26655df sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xb265bce4 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27b87a9 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xb285272b nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb2891006 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb294cdcb wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29cb2cd tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xb29ed38b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb29d00d1 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2b0d79c acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xb2b32e87 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0xb2b6cbd2 _RNvMNtCs9WMcp1Hn5Bv_4core3numa14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0xb2c03b56 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xb2ba8597 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb2c0818a iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c86b51 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb2d6629a __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xb2d715f2 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0xb2e038ed devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb2cf9604 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2d93c1f pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f03104 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xb2f32858 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xb2f70902 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb2fff1c9 pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb308b43a tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full -EXPORT_SYMBOL_GPL vmlinux 0xb30fc3cd xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb31a1876 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xb30fbf74 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb32c0813 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb33352ef bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xb335b9de vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xb360ca5e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb32e7e56 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb3324355 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb3439cda vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xb34af3e0 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb34c2a7a task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xb34fa2fe bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xb3571eb8 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb35c1992 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb35ea270 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xb360dfb0 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xb363e81a regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb3699d32 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0xb36e5f6a _RNvXs_NtNtCs9WMcp1Hn5Bv_4core3mem11valid_alignNtB4_10ValidAlignNtNtB8_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb36ebb23 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xb376c905 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xb3784cdb _RNvNvXs1_NtNtCs9WMcp1Hn5Bv_4core5slice5indexINtNtNtBb_3ops5range5RangejEINtB7_10SliceIndexSpE13get_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xb387054a dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xb3a44f32 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xb3a9b128 blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xb3bb2d92 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb37d027e blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xb3c5a47a mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xb3c94ac1 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_7ContextNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb3f01d9e device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb3d862a2 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb3f556c1 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xb3fba3b0 _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_11SipHasher13NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb3fbe9d6 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb3fdd5e2 subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0xb404fb7e _RNvXs1D_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7fpstateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb4141590 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xb420d866 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb426303b iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xb435be36 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xb43e58fc pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb443cb11 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb45e78a8 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0xb46331a2 _RNvXsb_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb4658f34 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xb466d74a pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xb4697e13 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb47321df crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb4772fbb spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb47f8faa __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xb4824b5f clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xb48d60fd ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb46462a2 get_device +EXPORT_SYMBOL_GPL vmlinux 0xb467c3f7 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb47c4337 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb484179c pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb491a159 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb4954462 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb4929c81 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xb4a15ab6 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xb4a54464 _RNvNtCs9WMcp1Hn5Bv_4core5ascii14escape_default -EXPORT_SYMBOL_GPL vmlinux 0xb4aa00f9 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xb4afbad8 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb4aebb9a rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cf12e3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb4c6588f dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xb4d88b49 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f7a92f pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb5076797 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xb5079a81 class_find_device EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb50b5713 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xb50b70de __xenbus_register_frontend EXPORT_SYMBOL_GPL vmlinux 0xb5185f0f _RNvXsi_NtCs9WMcp1Hn5Bv_4core3numiNtNtNtB7_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xb51ec5e9 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb52526ef usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xb533ec14 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb53db240 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xb53a4965 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xb5459c9a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xb54eb710 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb556f634 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb55e03ec dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb56dbdac lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xb5812a58 _RNvXsz_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb585d167 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xb59d8041 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xb5a30804 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5aa0d7c sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0xb5ad2c15 _RNvXsm_NtCs9WMcp1Hn5Bv_4core5arrayNtB5_17TryFromSliceErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb5ae4116 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xb5b3706b rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb5bbaa15 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xb5cec2e4 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xb5d6898e __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xb5e02b15 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xb5f55503 devm_regulator_bulk_get_enable -EXPORT_SYMBOL_GPL vmlinux 0xb600f96c buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xb5c61ee5 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb5d2ed6f crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xb5dc569b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb5e74f9e badblocks_init EXPORT_SYMBOL_GPL vmlinux 0xb6045fef _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index20into_range_unchecked +EXPORT_SYMBOL_GPL vmlinux 0xb606d22c create_signature +EXPORT_SYMBOL_GPL vmlinux 0xb60c6186 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xb6108d55 _RNvXs1d_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62cd855 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xb6317ecc iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xb6262f9c __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63688e8 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xb6401e47 _RNvXs4F_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u64x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64cc1b4 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb64690b2 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb650dae6 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb670de43 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xb6668532 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xb6784e39 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb68eedf3 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6b89fcb tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xb6bb7400 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xb6bc6564 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xb6bcb58b ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xb6a809df rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xb6b2d9fc bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0xb6bee92e _RNvMNtCs9WMcp1Hn5Bv_4core3stre12encode_utf16 +EXPORT_SYMBOL_GPL vmlinux 0xb6c11f6d regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst -EXPORT_SYMBOL_GPL vmlinux 0xb6d06764 __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0xb6d8b1ac __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xb6dfd342 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e7f13b bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xb6e96ae3 thermal_zone_device_register_with_trips EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6f02994 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xb6f39b2c __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xb6faa74d usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xb6fb9d7e netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xb6ff4f14 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb706cb6e iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb727f275 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xb72de5db tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xb6fb87b2 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6fe05c2 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xb71c7e51 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7281699 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xb731aa92 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb7368060 iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb7430438 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb7398e80 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xb74badff devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb74c99ca xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xb74eb32b extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xb74d11a2 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb76c639c __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xb77b8a14 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb754e5af agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb7555434 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb75a4f8c tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xb7692244 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xb778c67c fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0xb7827877 _RNvXs3l_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19folio__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb78a0c0c pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xb78c3a64 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7927808 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xb7a2d1ae phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xb7a31843 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xb78b78d1 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xb79945da blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7bfe55b devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7c50fd2 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb7c5fa05 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cd1887 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb7cf0c4a tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xb7d0c4c8 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7da7fdd ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xb7e85506 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xb7f61fd0 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb7f90ff1 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb7e73bf4 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb814d7bb dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xb820d855 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb80d6596 pci_intx EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb84182e0 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xb84ecefd bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xb82d391e tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xb83243f1 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb84a632a pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb850698a iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xb85732e0 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xb8605f35 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xb8609463 _RNvXs38_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb867593d ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87dcd6d xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8814a9e crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xb88bab1c gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xb88578ee device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb894121e trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0xb896dd12 _RNvXs1I_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11cpuinfo_x86NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb8981ed2 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a60bcb debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xb8ab68df intel_microcode_sanity_check -EXPORT_SYMBOL_GPL vmlinux 0xb8b1c6c8 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb8ae04bd netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8b6f9a1 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xb8c79b6e devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb8cc996e akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8dfa615 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xb8d697cb balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0xb8e6de74 _RNvXs1v_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11reg_512_bitNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f52ac9 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb8faef53 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb8fe4cdf xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xb8feeb9c iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0xb9067f1f __rust_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb90877f0 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb91262e8 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xb913d376 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xb939175c rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xb93e1d56 device_register +EXPORT_SYMBOL_GPL vmlinux 0xb9176240 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb91dc256 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xb931be2d usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xb932f555 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xb9337f39 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xb93746b0 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb965fb4f dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xb9591ef9 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xb966997c devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96dc23c mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xb97356eb devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb968b2b1 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb97fcda4 i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb987c08b strp_init +EXPORT_SYMBOL_GPL vmlinux 0xb9852f0a rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb98e6ab2 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xb9944971 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xb9958313 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xb99666bd crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xb9996bdd register_fprobe EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb99f0e18 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xb9a12e13 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xb9b1a7f2 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0xb9b243ed _RNvXs5_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9ArgumentsNtB5_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bde69f bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xb9bf6f18 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9c0eb11 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c60d09 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xb9c787c1 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xb9c94d9f _RNvXs3M_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11pglist_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb9cacdb1 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xb9cb6b13 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d2637a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xb9e8c13f rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xb9eee221 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xb9f04c7f pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb9d83b67 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xb9daa408 pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xb9f946bc _RNvNvNtNtNtCs9WMcp1Hn5Bv_4core9core_arch3x864sse219__mm_slli_si128_impl4mask +EXPORT_SYMBOL_GPL vmlinux 0xb9feae74 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba04128c dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xba1141c5 devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xba165172 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xba05e3a0 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xba0a1a1b __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xba0b398a __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xba10993b dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xba17ee55 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba2a84a3 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xba242062 __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2d9121 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0xba335e9a _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strRNtB5_4CStrNtNtB9_7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xba360c16 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xba4e0e36 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0xba555d7f bio_poll -EXPORT_SYMBOL_GPL vmlinux 0xba6dfc4f fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xba6fa260 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xba483e6d devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba4f3a40 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0xba4ffbd4 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xba5530a3 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0xba73e8a0 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB5_9Utf8LossyNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xba7425f1 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xba743868 do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0xba811bbf _RNvXsk_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_8AtomicI8NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba8f2498 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xba938d2d platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xba861abf extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0xba9507a4 _RNvNvMs16_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB8_11NonZeroI12813new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xba99f218 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xbab7633f regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xbab93e40 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xbaa91853 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xbaad9a18 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabeeee8 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xbac14aaf spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbac77ef1 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xbac921b0 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xbaca30f1 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xbae155f6 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xbac04314 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xbaea0d25 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafe3a92 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xbb01052d lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0a2484 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1b7219 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xbb210cfa sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xbb0ebb68 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xbb19c1f9 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xbb20aa7a subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb49ba95 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xbb49c596 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbb4a0bd9 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbb4e2e5b pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb64deaf fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xbb5ee00e inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6c9e7c iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb92d6a3 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xbb77f5e2 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xbb877c01 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc EXPORT_SYMBOL_GPL vmlinux 0xbb9b6c6a call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbb9f360a rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbbb1dfde bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbbeef54 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xbbc0761d blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xbbc4e7c8 _RNvXs3y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15lru_gen_mm_listNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xbbcfb649 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbbdaee76 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe9eb40 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbbfc3d3c xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xbc215103 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc281d84 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbc22fa3a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xbc26352c usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc2ac706 dax_add_host EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xbc2c0115 _RNvMNtNtCs9WMcp1Hn5Bv_4core3num3fmtNtB2_4Part5write EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc49f7f3 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xbc4898df pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel -EXPORT_SYMBOL_GPL vmlinux 0xbc4f5fc6 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xbc54c808 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xbc54fa30 _RNvXs1t_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x1NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbc5c4e54 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xbc5e5418 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xbc5f0513 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc62536a led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xbc6a8cce ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xbc6b95a6 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7b2ab1 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbc7c581f dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xbc84daf6 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xbc854b4f fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap EXPORT_SYMBOL_GPL vmlinux 0xbc94af02 _RNvXs4_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impxNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbc98d8d9 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca0eca2 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xbca3d8e5 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xbca7a7ab locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xbcb4f754 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xbcb26612 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features -EXPORT_SYMBOL_GPL vmlinux 0xbcbe55c3 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbcbf9fd9 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcca1852 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xbcd84267 ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0xbcdcb937 thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce0d7fa clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbcef6cdd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbce3e31c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xbcec29ce sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0xbcefdff8 _RNvXs4L_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f64x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf7f0eb dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbcfb38a8 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0xbcfc03cb _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbcfcce0b xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xbd01030d phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xbd0215ff _RNvXs4l_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroI16NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xbd043bc3 iommu_detach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1a4b31 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0xbd1d6c05 _RNvXsm_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3implNtB9_8UpperExp3fmt EXPORT_SYMBOL_GPL vmlinux 0xbd286276 _RNvXs26_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25arch_tlbflush_unmap_batchNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xbd30758e _RNvMs2_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_10DebugTuple6finish +EXPORT_SYMBOL_GPL vmlinux 0xbd33f891 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd469db3 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xbd4c5e9b subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xbd4c810f vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xbd57a529 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xbd58984f xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xbd409d1a gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xbd412fa8 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xbd483a25 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xbd4a9518 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xbd4d5b41 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0xbd5d6e94 _RNvXs_NtCsiTPnVqBGVaY_6kernel5errorNtB4_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtBN_5alloc10AllocErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0xbd6bc834 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xbd5eafe1 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xbd7751e9 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd809da7 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd80b76a dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbd832a57 gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbd9b50dc pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xbd9f2669 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xbdab08e4 _RNvXs6_NtCs9WMcp1Hn5Bv_4core4charNtB5_11EscapeDebugNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdb60b04 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbdba0aa8 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0xbdbc439e unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xbdc0210b pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbddeec9a serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xbdf8ebbe led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xbe0abffe pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xbddfbac3 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbdeeef3b pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xbe0459a4 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xbe0e2eca _RNvMs5_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_9DebugList5entry -EXPORT_SYMBOL_GPL vmlinux 0xbe192ea3 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xbe260377 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xbe22bcc4 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xbe2534d1 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xbe26bfa4 _RNvXsC_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0xbe2ba5e4 _RNvXs2W_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_39uprobe_task__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xbe3c1591 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xbe35ef3c dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xbe4a87f2 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xbe5194c1 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6e4c40 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe76e715 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0xbe78310a _RNvXs3_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impmNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbe7f0547 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xbe87b014 _RNvXs2D_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m8x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbe897189 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xbe8f8b01 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xbe918043 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb3f6c4 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xbeaab143 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xbeb736bd tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0xbec3c80a _RNvXs_NtCs9WMcp1Hn5Bv_4core5asciiNtB4_13EscapeDefaultNtNtNtNtB6_4iter6traits12double_ended19DoubleEndedIterator9next_back -EXPORT_SYMBOL_GPL vmlinux 0xbec45b39 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xbec508b4 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbedc944a xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xbedd8939 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xbeddbf58 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xbee5382a isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbee6bada debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xbeea55db nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xbec8397f usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbedeab51 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbee2000e virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0xbef58be6 _RNvXs3n_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19folio__bindgen_ty_3NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xbef77eb6 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xbef5cd1b dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf13307e fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf25c428 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xbf285462 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf1b1a66 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xbf1fac5f pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xbf29101f _RNvXs2o_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10ma_topiaryNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf4baa6a pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xbf53a76c sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xbf621ebd fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbf665900 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0xbf6f9e08 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xbf710442 vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0xbf7217ee dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xbf75801f pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xbf8873a0 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xbfa46912 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0xbf6c8722 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xbf6e474b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbf7a5f13 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xbf875ffc sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xbf878e27 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xbf89a563 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xbf9f1523 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbfa5a276 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0xbfab6014 _RNvXsp_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impyNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbfaf008e iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xbfb82205 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbfab6be3 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xbfb8636f _RNvMs_NtCs9WMcp1Hn5Bv_4core3fmtNtB4_9Formatter3new EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbebf02 ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0xbfcbd4e0 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xbfd4967c usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbfda0263 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6f298 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff9d27b fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc015d41b clk_register -EXPORT_SYMBOL_GPL vmlinux 0xc015e1de irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc03932e0 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xc03efea6 dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0xc0418bf0 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xc05ad33e scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc05bd3ff fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xc0651c5a virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc067c991 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xbfef2447 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xc0058410 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xc01c8a5b irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc01eb56e i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc0205182 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xc029b368 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc030983f mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xc045a615 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc0468e99 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xc06836fb _RNvXsG_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc06c844c srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xc06f64c5 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc08476c7 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xc089d36b __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xc071bb37 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc07fd7a0 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08f5d7c pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc090cc14 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xc096f837 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xc099886c rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xc0a0e114 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc096dc7a phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xc0a562e8 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0abed03 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0c2f869 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0xc0d9fcac gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xc0dcaf62 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc0c116b9 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0ce49a3 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0dde883 acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f6696c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xc10684a5 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10b5b75 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xc10c0594 amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1115f96 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xc112b387 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xc11d3d13 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xc12c4197 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xc13564ac __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xc135b01b irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xc147e100 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xc153ba0d tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc159214a usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xc1596144 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xc160b7e7 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xc172861f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc113d5fa of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc12fee2b xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1350923 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xc14d0472 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc15c29ff fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc165e4f5 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc176965c crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc18fb5b4 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xc1944d57 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xc186d170 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xc1904721 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xc19887f0 _RNvXs2O_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14notifier_blockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc1a4ce28 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xc1a941f9 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xc1ad5dd5 _RNvXsh_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleINtB5_4FromzE4from EXPORT_SYMBOL_GPL vmlinux 0xc1ae279b _RNvXso_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impxNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc1b29f9c thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xc1c12615 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc1c6e6b6 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xc1cfe0ee debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xc1d4b59b fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xc1d6f89e param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xc1ba69ab devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc1be2301 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc1bff228 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc1c43a3b fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1f1943f handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xc1fbc512 cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc200dcfd irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc20ab168 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0xc20b7288 __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xc214295b crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xc21c779c klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xc2234a9c evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xc21405b7 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc21d0f48 switchdev_port_obj_add 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 0xc23aea79 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xc2497feb crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc2572ca6 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xc24fc43a gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xc258fe44 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26c4e41 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xc27ab54b _RNvXs_NtCs9WMcp1Hn5Bv_4core3anyDNtB4_3AnyEL_NtNtB6_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc2816107 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc28925f1 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28a7d79 devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc29954ae subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2a01e2d blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc28b7d02 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc28bfaad nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc294df23 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2c180b3 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc2a9dee5 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2bc22d8 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d6cc4c regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc2c225c3 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xc2d75d2c attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2daa81a _RNvXs3e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_18page__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e918e6 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc2e9af8f irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xc2f47bbd da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xc2f62f9b _RNvXs8_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9FormatterNtB5_5Write9write_fmt EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc303f8c2 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xc3113677 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xc317428c __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xc318e98e devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc319abce devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc302aca4 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc307b2d1 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xc325468f led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0xc3308056 _RNvMs_NtCs9WMcp1Hn5Bv_4core3nums14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0xc3337b7d _RNvXsv_NtNtCs9WMcp1Hn5Bv_4core9core_simd5masksiNtNtB5_6sealed6Sealed2eq EXPORT_SYMBOL_GPL vmlinux 0xc3374127 _RNvNtCs9WMcp1Hn5Bv_4core9panicking19assert_failed_inner -EXPORT_SYMBOL_GPL vmlinux 0xc33834f0 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc33df36c xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xc33ef0b5 subsys_find_device_by_id EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc34ba34a _RNvXs1c_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11__fpstate_64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc35115ba dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xc35383da acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0xc35e6f86 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc35f6906 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xc3675d38 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc36ab23a iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc37a7a49 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc37c13e2 fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc3824b6d _RNvXsa_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_32ftrace_branch_data__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc38add72 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xc38f3a14 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc389459b platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xc3980367 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc3b3c3f9 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc39ead38 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xc3a79005 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xc3acbb56 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc3b0ba7d irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xc3b548f2 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc3c1053e led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xc3c1aa9c fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3d3e798 icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0xc3d9ef7a _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter5align -EXPORT_SYMBOL_GPL vmlinux 0xc3da4e1b mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc3e6f24b __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc3e992d5 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xc3e9a0cf _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core3str5lossyNtB5_9Utf8LossyNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough EXPORT_SYMBOL_GPL vmlinux 0xc4008d55 xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xc424d851 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc414ae73 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc421cd26 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc4263440 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc429917a thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc42bfb44 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xc42f7496 _RNvMs3_NtCs9WMcp1Hn5Bv_4core3numi14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0xc437f5a4 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xc439609f _RNvXs5_NtCs8dagVACJQAP_5alloc5allocNtB5_6GlobalNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc43a3e9d vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xc43d75d6 xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0xc441e41c _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0xc44377e1 _RNvXs3v_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_37mm_struct__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc443c206 __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get 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 0xc4578339 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45fe016 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47407f5 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xc475642a inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc4794ce1 xenbus_setup_ring EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xc47df063 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xc47ea0f4 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xc4852127 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc4859fa7 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xc49f5bfd get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xc4a06278 _RNvXsq_NtNtCs9WMcp1Hn5Bv_4core3fmt3numNtB5_8LowerHexNtB5_12GenericRadix5digit +EXPORT_SYMBOL_GPL vmlinux 0xc4a142ae __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a5d2a4 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4c24984 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xc4cc3a99 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xc4c211c3 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xc4c6699e crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc4d5c576 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xc4d462dc device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4d96cee tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc4dbc766 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xc4ee2900 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xc4ef84a4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc4f05824 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f35fdd l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xc4f52d47 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc4fe5054 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xc506bb02 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xc5080eb5 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc4ff1493 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xc50f3f59 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask EXPORT_SYMBOL_GPL vmlinux 0xc51941cc _RNvXs0_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtNtBO_3num5error15TryFromIntErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0xc532627d bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xc51ddd60 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc5258424 hte_ts_get EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc554deee component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xc559c785 devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0xc55f5b37 _RNvXs2V_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11arch_uprobeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc56267d5 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc572f928 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xc57357a7 acpi_dev_resume 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 0xc58ab72f _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh12escape_ascii -EXPORT_SYMBOL_GPL vmlinux 0xc5949034 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xc59a6b2b cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xc59de508 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5ad7a85 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc5af30e2 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xc5b59078 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc5db6763 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xc5dfd26d device_create -EXPORT_SYMBOL_GPL vmlinux 0xc5e610b8 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xc5e80bb9 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xc5eb89ad __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc5f19c31 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xc6009846 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xc5be9f0e iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc5c754b5 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0xc6011122 _RNvXsU_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_11boot_paramsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc6012313 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc601f0cf ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6024657 acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc60bd92c ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xc6093792 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc6098c75 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61fb33d xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc624951b gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62f9b2f __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xc634132b fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xc6321f7a nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc6380961 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc63edc59 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xc643df9a usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc64b7c01 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc6550c51 sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65c59e5 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6606018 spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0xc6622435 pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xc6629f1d vcap_addr_keysets -EXPORT_SYMBOL_GPL vmlinux 0xc668c518 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc668410b __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc670552f rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xc66ee761 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc6734329 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc67d8794 bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc6862a2b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xc690cb8e virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xc6879ca1 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xc68f7c93 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0xc69211c5 _RNvXs5_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith9MulAssignmE10mul_assign EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a40c59 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a6dfb7 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xc6b9c445 filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0xc6d3c911 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc6b8a84f __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc6ba4578 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xc6c9944f vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xc6dd46dd edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6ea63e0 _RNvXs1a_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc6f50d00 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xc6fd26d1 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xc6fee245 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6fee345 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xc6ff9c0d pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xc7014c45 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xc6ee8e98 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc6ef5f0c pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6fecaef device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xc6ff4ab9 sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70669a5 __intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0xc70b21dc _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index16into_slice_range -EXPORT_SYMBOL_GPL vmlinux 0xc70c3b1e iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xc70e32c3 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0xc7151b29 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_8RawWakerNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc71bde56 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xc7195df2 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xc71c2879 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7360b22 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc7379dec regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc73f5558 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xc7473e47 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xc74dc62d tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xc752ca2b blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xc76324af blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xc767d7ae regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0xc7807fab irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xc72bc6b7 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xc7306481 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xc7438239 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc74b222f regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc7586cc1 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc75ae151 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc7609ce2 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xc7609e68 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc76f125a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7722a08 cros_ec_cmd EXPORT_SYMBOL_GPL vmlinux 0xc7812a60 _RNvXsn_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_15ratelimit_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xc782cbc7 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78e0c99 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xc79024dc ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xc790e3c9 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc7952b3d usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xc7973a87 _RNvXs1x_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_30mpx_bndcsr_state__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a24eb2 _RNvXsa_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impsNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b2b177 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xc7bdfb25 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xc7bf36cb serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xc7ab8d58 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7c16b75 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c368cd ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc7cb0b39 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xc7e16a4f _RNvXsB_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB7_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f0693f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xc7f166ad pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xc7f34c8e vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7f61c1b mmc_switch EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc803843b serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xc8058a66 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec -EXPORT_SYMBOL_GPL vmlinux 0xc821aee2 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc8252b69 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8365a04 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xc836ae8c vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83dce71 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xc8455491 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xc846be10 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0xc8511d80 _RNvNvMNtCs9WMcp1Hn5Bv_4core5sliceSp22split_at_mut_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xc853b3b4 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc863fb32 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xc86d05b5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc8737ab6 vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc87dccd8 dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc88e3241 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xc8811343 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xc88c6420 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc88d7e8f phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0xc89fad74 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xc8a1fff7 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc8a408be of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xc8af9ba6 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8cc5670 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0xc8ce8143 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0xc8d73b8f __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xc8d9395e extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8dae8d6 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc8b0ef2a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xc8b34a4e ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc8b85ea5 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xc8cdc7de crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8f31ee5 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xc8ffd95b fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xc904a21b iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0xc90a12d6 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xc9162261 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xc8de8246 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc8e995b3 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc8f4c206 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xc90add51 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xc91ca549 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc91cd84a acpi_pci_find_root EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc922d828 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xc933b5f1 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc9373273 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xc93a2854 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xc936cfd5 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xc93d41d2 samsung_sdi_battery_get_info EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc93f42c7 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xc94420c4 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xc952327c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc9447802 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc94dc7ae md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xc952df43 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xc9555595 _RNvXs6_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith3DivmE3div EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9598312 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xc959f8bb ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xc95e4c32 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 EXPORT_SYMBOL_GPL vmlinux 0xc9661c57 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp9PartialEq2eq -EXPORT_SYMBOL_GPL vmlinux 0xc9699ab5 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xc97d70a3 mmput_async -EXPORT_SYMBOL_GPL vmlinux 0xc97e1eb2 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc96f4a20 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9932f98 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xc9992606 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xc99a434a crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xc990b216 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0xc99341ee hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xc9b39227 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xc9b53ce4 _RNvXs4m_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroI32NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0xc9bd529c ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9c7e1eb da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xc9cd7734 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xc9c5004e cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xc9ca295e cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9da03d2 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xc9dc0c1a inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xc9ea5225 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xc9e8b8e0 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f1dcb7 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xc9fdbe45 pwm_lpss_byt_info -EXPORT_SYMBOL_GPL vmlinux 0xca02208e sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xca0592da hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xca080ea1 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xca12a1da lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xca1773f8 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xca21c9fc ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xca2ce1d8 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xca2edb3d adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xca2f87dd xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xca41e64e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xca11e402 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xca1521e4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xca2a9f56 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xca2c6962 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca3bf6c7 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops EXPORT_SYMBOL_GPL vmlinux 0xca4ac80b _RNvXs1C_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12fpregs_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca5547bf pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xca5a784d blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xca5f792c dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xca667e8e i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xca5c0b2b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xca694450 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xca6a1053 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xca6fc2c6 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xca702ff0 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81f9d3 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xca906f12 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xca824115 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xca8b3249 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xca90a80f dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xca914c37 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xca92c8db _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index25slice_index_order_fail_ct EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures EXPORT_SYMBOL_GPL vmlinux 0xcaab1ce3 _RNvXs2_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator3nth -EXPORT_SYMBOL_GPL vmlinux 0xcaad96f7 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xcabb8e1c irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcaccf662 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcaeba767 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcac8ba26 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xcad31f16 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcad50a04 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xcadc8c1d cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xcadd599d rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf3d82a sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xcaf7bee0 unregister_fprobe -EXPORT_SYMBOL_GPL vmlinux 0xcaf97f56 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcb006a7f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xcafc2aa4 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xcb21bff7 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb2c12a5 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcb2eefe8 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xcb30872e crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0xcb3367dc _RNvXsV_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_19paravirt_patch_siteNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb3b2224 vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0xcb4aa00c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xcb415f90 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xcb419e1d clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xcb441278 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcb4565d9 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb5dab37 unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0xcb73ffe0 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xcb87b55a dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xcb5a6d26 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xcb67ad92 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xcb701d73 acpi_device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcba2e9a3 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xcbaa29af __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xcbab9f9c tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xcbb08773 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0xcbbdabdd irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xcbbe7665 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xcbd55157 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcbd70ff8 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xcbe25b30 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xcbe3d1e7 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcbc1a7d3 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xcbccf302 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xcbd46bb8 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xcbd7ec76 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbee2f96 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xcbfb6378 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xcc20580e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcbf3b0bf dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc026a9c spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xcc057720 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xcc088c67 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xcc18b437 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc332a0b max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xcc33db21 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xcc38ea1c scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xcc394b92 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc5366a8 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xcc3da7b8 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xcc432216 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xcc44b8d5 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xcc4ec270 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xcc51d384 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xcc5477b2 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xcc5545ca xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc5cf9ab trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xcc5dd177 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0xcc5f9c2d _RNvXs19_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_25__fpstate_32__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xcc61e3c4 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xcc62c46a platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xcc65104d fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xcc78dc65 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcc659008 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xcc6e1937 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc742888 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xcc7c7684 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xcc92191d fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xcc8a464a espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc9281f4 _RNvNvNtCs9WMcp1Hn5Bv_4core10intrinsics19copy_nonoverlapping8comptime EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9af1fc usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xcca2b4f3 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xcca13ac9 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xcca80044 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xcca98c3e phy_modify EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccad55af dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xccb40bb6 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xccb7d96b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xccaf5907 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0xccc49087 _RNvXs1Z_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8rwlock_tNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xccc66661 devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xccc79817 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd3f2f7 _RNvXsj_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccdf1582 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xcce03fc4 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xcce97563 mnt_idmap_owner EXPORT_SYMBOL_GPL vmlinux 0xcce9bd20 _RNvXsw_NtCs9WMcp1Hn5Bv_4core4charNtB5_18EscapeDefaultStateNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xccedf384 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf7c212 clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xccfca52b tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xcd16cd21 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xccf6dfb8 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xcd111f6d __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd3a364d regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xcd4009c8 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xcd422997 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xcd439cfc dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xcd4c581e _RNvXsW_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xcd54cfd5 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xcd4ff9d5 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xcd53976d __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xcd66124c platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd70e011 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xcd7ed4cf nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8c78fe xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda9c2b0 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xcd9ed619 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xcda76994 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xcdae490d ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcdb1a507 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdde4dc0 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xcddb00a3 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcdf2b3bc set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0xcdf5c64b _RNvNvMsL_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroI1613new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xcdff28ea cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce033f7b dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xce08d53a cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xce010b47 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0f4bbb vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xce108b65 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xce13e4d1 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_15TryFromIntErrorINtNtB9_7convert4FromNtB11_10InfallibleE4from -EXPORT_SYMBOL_GPL vmlinux 0xce18bc24 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xce19bc40 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xce1a91e9 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xce1cf794 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xce216cbf udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xce240a1c bio_blkcg_css -EXPORT_SYMBOL_GPL vmlinux 0xce3767e7 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xce1475b3 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xce17e2ba bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xce201f40 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xce2539cf crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xce3d9906 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core5alloc6layoutNtB5_6LayoutNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xce53d281 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xce543415 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xce5cecbb rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xce6d92b1 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7d3f92 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xce9ca3c2 hte_ts_get -EXPORT_SYMBOL_GPL vmlinux 0xce9f84df regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xcea0ba53 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xceab7325 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xce721336 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xce733e1f skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xce8216ea crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xce9a5f23 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xcea9c329 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb28405 _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStr19from_bytes_with_nul +EXPORT_SYMBOL_GPL vmlinux 0xceb3dc4d nd_tbl EXPORT_SYMBOL_GPL vmlinux 0xceb577e7 _RNvXs2L_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9srcu_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcec58997 pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0xcec9122d _RNvXNtCs9WMcp1Hn5Bv_4core5asciiNtB2_13EscapeDefaultNtNtNtNtB4_4iter6traits8iterator8Iterator4last -EXPORT_SYMBOL_GPL vmlinux 0xcecb2223 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xcecdae4a _RNvXsF_NtCs9WMcp1Hn5Bv_4core4charNtB5_16TryFromCharErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xced21618 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xced014bb synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xced78be1 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xced90f6f _RNvMNtNtCs9WMcp1Hn5Bv_4core5panic10panic_infoNtB2_9PanicInfo8location -EXPORT_SYMBOL_GPL vmlinux 0xcede0e40 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xcede84a5 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xcedece7e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xcedfcb3b crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xcee07e55 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee444ef class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xcee882dc pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcee3b603 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcee6b20b dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0xcef0cbc0 _RNvXsb_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_impltNtB5_11ReverseBits12reverse_bits -EXPORT_SYMBOL_GPL vmlinux 0xcef39de3 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xcef5cef9 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcf018828 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xcef812b9 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xcf02a0bb _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data11conversions8to_upper EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf11f711 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xcf18a37a crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xcf2392c9 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xcf2500f9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcf131fde fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xcf3ead5a compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcf4486f1 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xcf4b022e crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xcf4cc425 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xcf64ca11 dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xcf6649f0 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xcf6d1321 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcf2b9c2a __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xcf34f0e4 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xcf3f25af regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xcf5d1fb4 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xcf6c4b4b ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xcf709db4 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xcf713ae6 _RNvXsy_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_32ddebug_class_param__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xcf76d00f devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xcf7313b9 component_add +EXPORT_SYMBOL_GPL vmlinux 0xcf7bf7cd virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xcf858939 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9alternate -EXPORT_SYMBOL_GPL vmlinux 0xcf883b43 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xcf991dba __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xcfad3a37 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xcf871ff8 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xcf900253 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xcfa01f29 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xcfa9852e subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcfa9f32e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xcfbd4d27 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfcac39a get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcfd166af regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd48e12 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xcfde9210 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xcfe93893 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xcfea22ee hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcfff1bd7 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xd0045817 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xcfde652a thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xcfe34490 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xcffd313d crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd015d613 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd01b6cbd watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xd023b3b8 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xd036006e i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xd03acc89 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xd0180b2f tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xd01d19f3 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xd0242f27 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd0256b34 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xd02b8089 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd03e6a36 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd04535d5 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd044b88b pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd0511875 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xd04af902 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd05c8d2d xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd094c8aa gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd097d7f1 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xd098acf5 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd07173c8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd0736178 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd091722a pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09ffa81 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xd0bf0c6c serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c0fea2 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xd0c636b7 con_debug_enter 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 0xd0de1ce4 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xd0de6075 _RNvXs2R_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17raw_notifier_headNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0f891fd uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd0e069aa devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e0d8b3 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xd0f94f66 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd10c2e1a rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xd10e909c genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xd117a4bb rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xd11dd9bf acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xd132352b device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xd135fcc8 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd108f795 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xd1346e0c fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a6e92 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0xd13e8c34 pinctrl_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xd14755aa _RNvXsR_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB5_11CharIndicesNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd147f487 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14833ba pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xd154a238 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15a103e nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xd15facfc __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xd1704878 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xd17e6deb evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xd19974bb xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xd1c00e2b __put_net -EXPORT_SYMBOL_GPL vmlinux 0xd1c0a357 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xd1792548 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xd17946ce ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd1950914 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd1ad55eb debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd1b8d298 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xd1c98d72 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cc1f00 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd1cdeabf proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd1cfc9f6 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd1ece2ac dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f660d2 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xd1f71d66 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xd2096d6a __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd1f37673 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xd1faf2ea netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xd20467d3 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xd20a0ce8 __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd2132ead acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0xd21015c7 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd210a3fa scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b332e spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd220f4e8 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xd228030e _RNvXs2e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_14maple_range_64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd22929f9 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd231e5e3 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xd2328f89 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xd233a9cb dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd229feec pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xd22c5e6c usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd236bb08 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24dbcb2 spi_sync EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd257a27c _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd25a7cdf gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd265801d edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd26f8a1c pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0xd27bf8cf _RNvXsj_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u16x2NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd28e4c56 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2834767 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xd28c2c51 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xd28d738c hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd28d9382 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xd2931f43 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2a085db crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xd2a4955b xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd2a63eed rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bd0ddf __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xd2bf0b13 _RNvXs2J_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10rcu_cblistNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd2cb4c0d fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xd2cc583e inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2e13dd1 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xd2ea0189 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xd2f5dcd4 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd2deb195 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd2e4c042 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd309f6ef phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xd30da88e rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0xd315e250 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xd319909c mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31a9a3e __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd322959a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xd3249315 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xd3254012 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0xd328e2e5 _RNvXs2Y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11uprobe_taskNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd34a596a regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xd34b335a dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xd3622748 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd328fb10 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd357613d i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xd357c246 of_css +EXPORT_SYMBOL_GPL vmlinux 0xd36189eb dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36d86f6 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xd374f0a6 _RNvXsD_NtNtCs9WMcp1Hn5Bv_4core3str7patternNtB5_10SearchStepNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37a9857 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd3769120 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd37dc853 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xd38ff8b8 _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xd39c261e dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b47ca6 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd3a9dbb1 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xd3b5d633 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b6b6bf sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xd3b738a5 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xd3b7e3d5 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd3bdbe3e crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xd3c0944f _RNvXse_NtCsiTPnVqBGVaY_6kernel3strNtB5_16CStrConvertErrorNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xd3c4f4e1 _RNvXs8_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impaNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd3d26585 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xd3d8d485 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xd3e9d878 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3e1e7ec pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f58446 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xd4020624 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq EXPORT_SYMBOL_GPL vmlinux 0xd409ec87 _RNvXsK_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd4135a17 usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0xd416cfec perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0xd4174e94 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd41b5b3f __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42906bf pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4326dbc dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xd43cd74a blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xd43e9981 _RNvXs1_NtCs8dagVACJQAP_5alloc11collectionsNtB5_15TryReserveErrorNtNtCs9WMcp1Hn5Bv_4core3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd4417381 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xd443b8d2 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xd44916cd _RNvXs22_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_20optimistic_spin_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44ab017 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xd44f058a _RNvXs33_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_60page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd450d9e2 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0xd4670eb8 acpi_unregister_lps0_dev EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46ec007 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xd47076ac devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xd4761450 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xd46e4a60 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xd473febe dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xd48104c1 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xd48aafb7 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xd48b9305 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xd48d9cab rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xd49dfe18 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xd4a6d119 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd4a7aabb of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xd4b45c94 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd49e8cfb devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xd4a2a46d lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd4a6748f xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xd4a7d6fe wwan_create_port EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bf18ad disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd4bc11e5 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bcf9fb vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c4ab02 pci_p2pmem_free_sgl EXPORT_SYMBOL_GPL vmlinux 0xd4c92d28 _RNvXs3_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith3MulmE3mul +EXPORT_SYMBOL_GPL vmlinux 0xd4cbc258 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xd4ceb749 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xd4d1508e kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ecac57 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xd4ebfc0c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd4ec6c4e __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xd4ede215 _RNvXs4b_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_6u16x32NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd4f4b51b ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fab3de phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xd506583e devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd50f6772 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xd5186e42 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4fd71b9 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd4ff8fd5 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xd51a5ff4 _RNvXsp_NtCs9WMcp1Hn5Bv_4core3numhNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xd51fb62e phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xd52a3826 acpi_device_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5306e75 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd5319b72 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xd536d5bf sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xd5383b6f _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data2cc6lookup EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd5450375 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5516d2f regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd553961a hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd55a54fd devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56872e5 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xd56194e5 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xd574739d usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xd58ac072 _RNvXNtCsiTPnVqBGVaY_6kernel9allocatorNtB2_15KernelAllocatorNtNtNtCs9WMcp1Hn5Bv_4core5alloc6global11GlobalAlloc5alloc +EXPORT_SYMBOL_GPL vmlinux 0xd58e01b0 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xd58e6d65 _RNvXsb_NtNtCs9WMcp1Hn5Bv_4core3fmt3numjNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0xd593c493 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xd5980f11 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a94b12 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xd5ad193e pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xd5b403c3 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xd5b672aa regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xd5c713c0 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xd5c8975d dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xd59a64ac get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5f7bc38 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xd61551ea is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xd61cfbbf unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd60653d9 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xd609684e trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd60b7fbb component_del +EXPORT_SYMBOL_GPL vmlinux 0xd6118a61 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xd61d4978 _RNvXs4_NtNtCs9WMcp1Hn5Bv_4core3num5errorNtB5_15TryFromIntErrorNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xd6248c44 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xd6249e99 _RNvXs4_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtBO_3fmt5ErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0xd634e530 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xd640b9c0 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xd626c03f umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xd634c644 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xd63dc229 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd669ca3e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xd66927a2 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd670a3cf ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd673ee17 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xd6757bb1 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xd67e1477 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd6850949 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xd68c9ab7 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd6855d3b platform_bus EXPORT_SYMBOL_GPL vmlinux 0xd69c0ac7 _RNvXsN_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_31edd_device_params__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd6a868f7 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd6a3f7f4 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xd6a588b9 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6b30ff5 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xd6b503ab ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd6b7d8e7 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0xd6b8dc1c _RNvXs2l_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_38maple_node__bindgen_ty_1__bindgen_ty_2NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd6ba81dc devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xd6c8ce1b __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xd6c967a7 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xd6def359 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xd6be4b7c virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xd6c39265 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xd6cae4f4 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xd6df01f7 perf_get_hw_event_config -EXPORT_SYMBOL_GPL vmlinux 0xd6e172f5 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd6e2b1a6 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0xd6e46e6f _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp10PartialOrd11partial_cmp -EXPORT_SYMBOL_GPL vmlinux 0xd6e4d004 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xd6e9108a pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd6ecaaf3 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xd6ed25f0 acpi_register_lps0_dev -EXPORT_SYMBOL_GPL vmlinux 0xd6f9244c pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7064707 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xd7066540 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd70c43b1 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd70e5769 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd712233b kill_device -EXPORT_SYMBOL_GPL vmlinux 0xd7224014 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xd7134e28 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xd71534ec iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72aa5c3 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7362416 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd736e464 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xd73b4325 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd7548799 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd7655ae6 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xd75d423e usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd75dbfec acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76a2af9 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xd76ba55a sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xd7700789 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xd776019c _RNvNtNtCs9WMcp1Hn5Bv_4core5slice5index25slice_index_order_fail_rt -EXPORT_SYMBOL_GPL vmlinux 0xd776b0f5 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xd77fa6a8 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xd780d953 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xd79c9e5e fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xd7776957 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd787f896 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd7918db6 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xd7930c03 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xd79cd71f __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd79cec4b locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xd79d11c0 _RNvNtNtCs9WMcp1Hn5Bv_4core3str8converts13from_utf8_mut -EXPORT_SYMBOL_GPL vmlinux 0xd7a127bd dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7a8508d perf_msr_probe EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7acc4e6 vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xd7af5e70 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0xd7b6f08d srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xd7b95a86 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xd7cdbb5a crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7da7125 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xd7db4470 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xd7f01dc6 usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xd7f13405 _RNvXs6_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd80423ce usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd81e132b pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xd83403c7 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd7f47be2 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd808dedf fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xd80bb36e vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xd8231dfd regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xd8243f17 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd8320956 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xd839f093 _RNvXsa_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd83e3ae9 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd84ace5c devm_clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd860f10f xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xd86e6bcc rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd87d9561 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd84d5a2b pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd86b561a cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xd86dbb1d dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd86dfab1 serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd885958c _RNvXs29_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7rb_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd8865ab4 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xd8975cf3 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd8bd8358 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xd8c6ffaa iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xd8ad0934 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xd8b5a490 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd8bdbc41 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd8bf6b8f __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8cdd1ab pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xd8ced26b _RNvXsM_NtNtCs9WMcp1Hn5Bv_4core3fmt3numtNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8e71319 __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xd8e75158 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xd8f71746 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8f75f17 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90321cc fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xd9189986 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xd908f943 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xd91596c8 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd91dc422 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd9277a78 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd95ebbb0 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9315513 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xd93b9ffe rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xd9413a32 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd9596ad9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd95b23b0 __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd98a2ccd sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd98424fa tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd98f0dba tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd99a654b regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xd99f9eba dw8250_do_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xd9ad0ff6 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xd9c2d965 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xd9cb97c1 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xd99c6e4c device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd9adf130 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd9c3ea8c bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xd9cc6e45 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt3numaNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0xd9cd77f2 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xd9d598d8 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9da4568 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd9e00400 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd9d6fc4f rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd9d73114 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e59802 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xd9ef3756 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xd9ed96d7 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd9f1fddc nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xd9f95b0f _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0xd9fc0aef gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xd9fe9bad skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xd9fd33b4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xd9febee8 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0xd9ff204b spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda048441 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xda015aed __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xda070195 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda09ce0f _RNvXs1z_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u8x16NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0xda19cc9b inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0xda14b84f dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda200416 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0xda21ea62 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9write_str EXPORT_SYMBOL_GPL vmlinux 0xda24161a _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_10PadAdapterNtB7_5Write9write_str -EXPORT_SYMBOL_GPL vmlinux 0xda258721 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xda2a3564 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xda2df893 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xda3012af irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xda3102ae l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xda2eba02 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda34864b folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xda379684 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xda42fad5 _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap3key -EXPORT_SYMBOL_GPL vmlinux 0xda57d906 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xda76b4f2 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xda5684ac reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda6799be iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xda6adf3e pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xda6b9930 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xda70b78c __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda79b1fa rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xda8c5f03 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda8fae3e regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xda91a26a devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xda9ce413 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xda992df4 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaab6baf acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdacd5ff7 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xdad94d57 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xdadaa09a pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xdae497cb bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xdae5beb5 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xdaef319a tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xdaefb693 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xdaf32d95 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdabc3bd4 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdac66f7f dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xdac764b3 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xdacee1d1 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xdadcf502 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xdae31154 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf5ccf5 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xdafb1b2d _RNvXs2_NtCsiTPnVqBGVaY_6kernel5errorNtB5_5ErrorINtNtCs9WMcp1Hn5Bv_4core7convert4FromNtNtCs8dagVACJQAP_5alloc11collections15TryReserveErrorE4from +EXPORT_SYMBOL_GPL vmlinux 0xdafe5306 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0xdb008395 _RNvXsF_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdb0c0014 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xdb12b225 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page -EXPORT_SYMBOL_GPL vmlinux 0xdb285a9c regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdb2fa867 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xdb468afd dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xdb5908ba irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xdb5f06db ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xdb614f00 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xdb1c7647 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xdb23544a ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb3b51cd trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xdb4440fd dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xdb4cb0cd tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xdb5124f5 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xdb7a07d1 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0xdb87f300 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xdb8848d5 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xdb88e3ab cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdb7bb9f2 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb996415 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xdba05195 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdb91422c mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdba9202a devm_regulator_get_enable -EXPORT_SYMBOL_GPL vmlinux 0xdba9d8ab pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xdba9f9ec _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdbb4fc04 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xdbc1fa07 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xdbd234c3 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xdbb1b6f3 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xdbb44325 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xdbb5b4d2 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xdbb8874d ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdbbae2fd regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdbcbf6a1 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe22251 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xdbe286d6 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbfabd87 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc087242 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xdc09464b xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xdc108cd9 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xdc12bd5b devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xdc12c5e9 _RNvXs2l_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f32x4NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall EXPORT_SYMBOL_GPL vmlinux 0xdc229dab _RNvXsz_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_18ddebug_class_paramNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xdc230636 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xdc29692a irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xdc2aa97c rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdc2c780b bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xdc3546cd uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc3733f4 _RNvMsc_NtCsiTPnVqBGVaY_6kernel3strNtB5_7CString12try_from_fmt +EXPORT_SYMBOL_GPL vmlinux 0xdc3c6479 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc4ac92b usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xdc4c060a ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xdc5a1f5a xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xdc5af4ad ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xdc5b62a5 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xdc517e90 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdc59575e __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xdc5c2c3a gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xdc5c6a9b __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc738d04 filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0xdc75d916 _RNvXsc_NtNtCs9WMcp1Hn5Bv_4core5alloc6layoutNtB5_11LayoutErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdc79ad04 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc8088f8 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc85811c crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xdc8ba893 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xdc9336a6 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9c8e68 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdc9b68c3 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xdc9db66a housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xdc9e96c1 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdc9fe58c call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xdca8bb99 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xdcafc602 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xdcb48c94 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xdcb9e87d serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0xdcc25097 _RNvMs3_NtNtCs9WMcp1Hn5Bv_4core3ffi5c_strNtB5_4CStr6to_str -EXPORT_SYMBOL_GPL vmlinux 0xdcc28199 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xdcc3d48c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xdcc5870f lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xdcce2b7d pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xdcd954f8 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xdce654c7 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdcc48f9d serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xdce35f6b devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdce9bded da903x_reads EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdd015021 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdcf30abe pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xdcfd47a1 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0bd827 pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd251b04 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xdd08614b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdd0cd14c rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xdd0fd439 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdd150193 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xdd18cfef irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xdd2487b3 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xdd32ad56 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xdd34ef9f ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0xdd48cbbe _RNvXs8_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0xdd52cd31 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd5b46d1 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd5cf6b5 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd90c328 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd97460b crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xdd97bc80 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xdd6b5b57 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xdd8fd6cc ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xdd96dd0b usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh -EXPORT_SYMBOL_GPL vmlinux 0xdda4b50c spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xdda4f631 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdda7f100 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xdda8c7a7 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9sign_plus -EXPORT_SYMBOL_GPL vmlinux 0xddad3ce8 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xddb5badf devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xddbd8368 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcf35e9 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xddd35725 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xdde41612 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xddd8b9f6 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xdddbc152 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdde37eda nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xdde80b53 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xddeaf837 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xddf4d465 _RNvXsd_NtNtNtCs9WMcp1Hn5Bv_4core9core_simd5masks9mask_implyNtB5_11ReverseBits12reverse_bits -EXPORT_SYMBOL_GPL vmlinux 0xddf8baa2 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xddfb7026 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0xde0d61f7 _RNvXs2n_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10maple_nodeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xde0de266 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xde1014a8 genphy_c45_pma_baset1_read_master_slave EXPORT_SYMBOL_GPL vmlinux 0xde154aee _RNvNvMsE_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_9NonZeroI813new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xde17620e __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xde39ffc0 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xde473ad4 _RNvXso_NtCs9WMcp1Hn5Bv_4core4charNtB5_16TryFromCharErrorNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xde592219 _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data1n6lookup EXPORT_SYMBOL_GPL vmlinux 0xde5b8270 _RNvXsO_NtNtCs9WMcp1Hn5Bv_4core4sync6atomicNtB5_9AtomicI64NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xde65aa5c set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xde619ec3 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7cf618 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xde83b857 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xde9049e0 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xde7f007e usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea46055 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xdea91c1b acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xdea998bc __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeb3fd5a pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdeb47214 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xdeb9c1be _RNvXsd_NtCs8dagVACJQAP_5alloc11collectionsNtB5_19TryReserveErrorKindNtNtCs9WMcp1Hn5Bv_4core3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xdec07267 _RNvXsb_NtCs9WMcp1Hn5Bv_4core3fmtzNtB5_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdeccc6e0 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xded227fe rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xded3cb06 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xdee92410 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xdeed4956 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xdee84100 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xdef47d55 unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf003122 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xdf01e457 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdf084222 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xdf0908e6 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0xdf0c7db3 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xdf0dbfd1 disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1367cc tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0xdf211bda __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf25874d udp_abort EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2e54be register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf3ec9f8 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf32aba4 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf35c1da led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf456552 md_run +EXPORT_SYMBOL_GPL vmlinux 0xdf47fa96 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xdf4d687b __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xdf509f89 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xdf76b57d tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xdf7e693c pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xdf54037e pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xdf5cfc33 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xdf6a836f cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf90dfe7 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xdf97eff3 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xdfae96c0 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xdfc8bcd3 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xdf90775a pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xdfa84199 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xdfb3bec7 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xdfb64ff1 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xdfc5cfa4 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd4d6cf devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0xdfda2bae _RNvNtNtCs9WMcp1Hn5Bv_4core3str5count14do_count_chars -EXPORT_SYMBOL_GPL vmlinux 0xdfe672cd kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xdff61218 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdfe77d09 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xdfe8c614 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xdff63464 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xdff6885d devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xdfff87ab devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xe0100dad _RNvXsA_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m512dNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe02e0530 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe02f625a gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xe028d7c7 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xe029e368 acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0328619 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xe03d21a8 of_css -EXPORT_SYMBOL_GPL vmlinux 0xe03d7a99 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe036329d ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xe03a80a5 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe05321a7 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe059fc27 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe05d7723 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe064a8a5 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xe06be694 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe06dffe9 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe0782a24 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xe06b85c3 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0935869 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xe08e7663 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xe0950e7e __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xe09cb74f _RNvXs8_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9FormatterNtB5_5Write9write_str +EXPORT_SYMBOL_GPL vmlinux 0xe09f43b9 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0xe0a6db33 _RNvXsk_NtCs9WMcp1Hn5Bv_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back +EXPORT_SYMBOL_GPL vmlinux 0xe0afc730 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0b1df3d _RNvXsj_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_9qspinlockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe0b5210e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0bdb36d pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c6fd76 vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c85c01 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xe0d2e37f __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0d84e56 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xe0d58a15 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xe0def840 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xe0e32070 irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xe0e6ef02 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xe0eaf291 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xe0eb71a7 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xe0f223cb _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter4fill -EXPORT_SYMBOL_GPL vmlinux 0xe0f97d9c skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe105e529 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xe0f41b2c sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xe0fb6d2c __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe10f3cad sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xe129ba41 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe1308c19 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xe1408829 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xe143bd82 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xe1467e4c edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0xe14c9d7a usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe112383b usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xe1262c1b __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe12d8cc6 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xe13d12da xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xe1442679 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xe1454f4a ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xe14fabb8 _RNvXsB_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4u8x8NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe15036d8 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0xe155c449 _RNvXs1k_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_9saved_msrNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe1574d8f serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xe1575aee device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe166b5a0 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xe1a7124a skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xe164f674 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe1669ee0 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xe170582f strp_done +EXPORT_SYMBOL_GPL vmlinux 0xe18d3bc7 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe18d61ff usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xe19f133c gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xe1a6c35e icc_disable EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb EXPORT_SYMBOL_GPL vmlinux 0xe1b43c23 _RNvXsr_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_7___m256dNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe1bcf26f fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c336db fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1f17454 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe1e5959c pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0xe1f1c725 _RNvXsH_NtNtCs9WMcp1Hn5Bv_4core3fmt3numhNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe1f72070 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe1f98444 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe202b85b fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xe21925e2 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe21f154e scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xe228ae1f bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe1f66c40 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xe2303b69 key_type_user EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23a4527 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xe24aed7e irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xe25b88a1 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe2684f3a spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe26bb09d i2c_acpi_new_device_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe274af34 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xe27bacf3 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xe285b635 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe279fe69 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe27ad47e __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xe27d7184 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xe285c08a _RNvXsa_NtCs9WMcp1Hn5Bv_4core4timeNtB5_8DurationNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe28e0da1 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe28e6b07 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe28be148 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29b51c6 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe29f7bef pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xe2b08146 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b7d871 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2dc583b crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2ffde47 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe30d7792 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xe316c1c9 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xe317890c kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xe31d6d90 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xe31f575e debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xe3233642 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xe327307a devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xe328c2f8 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xe32c282d pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xe32caac4 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe33621b9 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xe344c668 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xe3470338 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xe351109c sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe35c799a __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe35eaa62 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xe362837d encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xe362b779 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xe36ce9b3 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xe36fdbb6 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xe371e59f i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xe3754977 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe377f136 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xe37ee6de bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xe2fc0959 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe310365b spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xe32314f9 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe323722b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xe3268d3e sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xe36d45f2 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xe36f7fbf pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3843dc1 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xe38cc4ae cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xe38f4da3 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xe3908577 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39cea94 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xe39caa8a iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a85c0e virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b224ad genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe3b560f9 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xe3b8673b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xe3b0fd31 __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d2a951 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xe3d83116 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xe3d9742e led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe3d68333 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3dc59cc irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3ec6da4 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3f50ea9 devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xe4049b31 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter5flags -EXPORT_SYMBOL_GPL vmlinux 0xe404b8f8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe406f5bf crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40d87f3 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe41d50e5 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe423035b devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe430083a gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44a93b7 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xe4501fd9 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xe462d0b7 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xe465873b dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe466c30a device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xe46b08e5 _RNvXs2j_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10maple_treeNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe46d73fb register_fprobe_ips -EXPORT_SYMBOL_GPL vmlinux 0xe46e42ff put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe4767de2 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xe47c7e33 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xe47a56aa wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe485dbc8 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe48f50b2 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49a93d1 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe4a27620 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xe4ae64a0 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xe4a5eb7b generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe4b05d8f pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b9c68f pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0xe4ba50cd _RNvXsL_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_13restart_blockNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe4bbf821 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c5107e vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0xe4cb8344 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe4c47967 dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0xe4cca234 _RNvXs2_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0xe4ccfd20 _RNvXs1S_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_16preempt_notifierNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe4d5d405 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xe4d7358f get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xe4e05c93 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xe4e0c577 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xe4e1489a _RNvXsb_NtCs9WMcp1Hn5Bv_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ec2886 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xe4ee5873 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xe4fe164b fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xe501c2de clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xe52e937d fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xe52e9435 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xe53877c5 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xe53f93f4 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xe545372b blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5478afe pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xe54a0fdc raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xe54f490b perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xe572acd8 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xe5754b07 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xe58601b7 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xe4eaf9d8 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xe50e1b1b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xe528e450 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe53ba5e1 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xe53e0fab nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xe53e188a dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe53e9b9b fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xe53f1e41 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe5531b9a wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe56b3d24 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xe5828954 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xe5864849 _RNvNvMs_NtCs8dagVACJQAP_5alloc3vecINtB6_3VecppE6remove13assert_failed EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58de287 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe593450e serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xe5a0f441 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xe5b9a103 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xe5bbabd8 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5a2a7fe metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe5b14c69 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5baade8 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xe5bf6352 _RNvXsh_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impiNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c97817 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe5c14928 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5c3be99 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5ed5af1 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe5f352eb clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xe5f51dcd vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5e0e9ae __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe5f2e47d dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xe5f94aa7 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe606d38c set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe60d7025 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xe60e0c23 _RNvXs0_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3impsNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe60eed59 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe61092d7 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe629b8d1 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xe62c6ade fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe62f4a94 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xe631a756 _RNvXs5_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtB7_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe6372d2f __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe638530d led_blink_set EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe64c9103 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xe655f634 _RNvXs2J_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5m16x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe65b930d power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xe66fd5b5 xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xe67fc49d __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xe682aa78 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe68a4c53 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xe696730c ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xe6ae1563 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe660c581 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xe67270fc switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xe67c8f02 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xe682e926 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe6866147 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xe696956b pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xe6981e48 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe6a03862 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe6a9146c dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0xe6c486f4 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xe6d461ce mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xe6d6ce2e unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe6d9034d pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xe6da664c nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0xe6b9e650 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe6cc3975 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xe6d2a9b1 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xe6d53c66 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xe6deba8f vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0xe6e2bae1 _RNvXsT_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u64x1NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e5ecd6 paste_selection EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6f1fb8d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6edf291 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f54cb5 of_phy_put EXPORT_SYMBOL_GPL vmlinux 0xe6f788fb _RNvXs1_NtNtNtCs9WMcp1Hn5Bv_4core3fmt3num3imptNtB9_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fa2bf6 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xe700184d virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe71e327f mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xe7227964 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe728f480 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xe7291f47 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xe73d8322 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xe74c6d0a xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75af991 _RNvXs4e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10local_apicNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe75b5075 gnttab_pages_clear_private EXPORT_SYMBOL_GPL vmlinux 0xe762451c _RNvXso_NtCs9WMcp1Hn5Bv_4core4timeNtB5_18FromFloatSecsErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe767a2db __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset EXPORT_SYMBOL_GPL vmlinux 0xe769eb1c _RNvXs1i_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_8msr_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe76ee223 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xe7750a54 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe775590c kernfs_put EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0xe78247dc pm_relax EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe79bad63 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe786fb4d pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe78d550c hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7974629 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7a63a08 component_compare_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xe7aee054 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe79dc9f6 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe7a38889 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xe7b29486 _RNvMs6_NtNtCs9WMcp1Hn5Bv_4core3fmt8buildersNtB5_8DebugMap5value -EXPORT_SYMBOL_GPL vmlinux 0xe7b8c455 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xe7b733bf md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 -EXPORT_SYMBOL_GPL vmlinux 0xe7bb0ae0 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe7c141a6 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xe7cafb1a regulator_register EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7d816b2 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe7da9372 wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xe7e19e5e fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xe7ed3a70 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xe7dc6548 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe7ddc734 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe7e82b0e sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xe7f08758 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7f2df3b acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7f33847 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xe7f3c961 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xe7f4ecf9 _RNvXs2_NtCs9WMcp1Hn5Bv_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator4next -EXPORT_SYMBOL_GPL vmlinux 0xe7fe54f5 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xe802380d devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xe8161fad pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe8145d58 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe83807ce dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xe83be151 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe83ecb5c iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xe846526a mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xe848b785 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe84b05be acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xe84e7f98 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xe83fa1b6 __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports EXPORT_SYMBOL_GPL vmlinux 0xe8513917 __rust_alloc_zeroed +EXPORT_SYMBOL_GPL vmlinux 0xe854be18 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xe85b903b __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe864e3dd acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xe87211e1 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe879405c attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe884da4b skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe8983468 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xe8ae5988 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xe8baab38 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe8848cd0 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xe888ffd5 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe8891c96 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe88da5f4 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xe891bfb3 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe8954bdb acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe8ab16d1 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xe8ace225 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xe8b935d6 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xe8be8706 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xe8bc502d sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c30036 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xe8c0915b fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xe8de9b23 _RNvXs1_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_4u8x2NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8f633b2 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe8f09a76 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read EXPORT_SYMBOL_GPL vmlinux 0xe9152686 _RNvXsr_NtCs9WMcp1Hn5Bv_4core3nummNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xe9166081 _RNvXsb_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_18ftrace_branch_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe91ae7d4 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xe91a6086 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe91b3845 xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0xe92263f7 _RNvXsd_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3cmp9PartialEq2eq -EXPORT_SYMBOL_GPL vmlinux 0xe9257eee bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xe92e65f5 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe93135a1 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe9360f94 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xe937d5e5 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe940109b pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe940471f pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe941f1da bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xe94ee5e7 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xe951728f devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xe95ff4f6 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xe9637054 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xe9767638 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe97d8c12 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xe94758f9 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xe94a03e7 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xe94fa131 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xe95417df driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe96343b9 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe96fb71e mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe971fd6d __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0xe97ee721 _RNvMs8_NtCs9WMcp1Hn5Bv_4core3numo14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xe9800a2e ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0xe9859f32 _RNvXsv_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5i16x2NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe99c3542 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xe9a0ba48 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xe9a24e91 led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xe9aa4490 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe9ab2418 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xe9cafe31 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xe9cbc97f regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xe9b1e19b ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe9c03e9a i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d07bf5 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d83c42 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe9f2422f serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xe9f405fa perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xe9e7924a wp_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0xe9f6bc21 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9fa944b trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe9fe8d5c rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea03abf8 __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0xea0c5f1f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xea0306c4 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xea0a2eb4 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xea0b599d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xea10a3e5 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1a3f87 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xea2fc644 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xea2133a5 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea38b304 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea511f45 io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0xea52cb63 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xea59e5d7 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xea622814 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xea68e271 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xea87574b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xea3afe03 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xea446f63 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0xea541130 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xea790c4b pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xea883650 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xea899d3f firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0xea8bbe33 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xea8c163d clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xea8eabe0 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xeac833c9 bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0xeac9e1a8 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xead31650 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xea8dbd58 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xea906a73 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xeaa01f67 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xeaa639ad gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xeab05f39 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xeab24e2a devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeab60a73 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xeabfe9e1 dev_pm_domain_start 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 0xead71976 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xead83c6f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xeada31a7 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush EXPORT_SYMBOL_GPL vmlinux 0xeae67a4d _RNvXsg_NtNtCs9WMcp1Hn5Bv_4core4task4wakeNtB5_14RawWakerVTableNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xeaef593d dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xeaef1022 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf2fa41 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeafa1f33 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0xeafa7527 _RNvXsa_NtCs9WMcp1Hn5Bv_4core3cmpNtB5_8OrderingNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xeafe0ea8 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xeb03ffed clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xeb100734 _RNvXs3Z_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5u8x64NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xeb10dfda l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xeb161c7e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xeb28e90c evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0xeb2e8f9a _RNvXs1X_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5i8x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xeb30d8ac i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xeb336dbd phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xeb50f455 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xeb66039e __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xeb6d1050 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xeb76a1b2 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb3b1fe8 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xeb54f691 device_move +EXPORT_SYMBOL_GPL vmlinux 0xeb58d3e7 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xeb62c288 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xeb693b9c devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xeb6ea730 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xeb748981 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb86b235 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xeb8832c5 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xeba816f1 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xebac1163 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xeb83de43 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb8471ca driver_find +EXPORT_SYMBOL_GPL vmlinux 0xeb8a67de tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xeb8ebbe7 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xeb8fc4cd bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xeb92ee13 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xebacc06f sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xebb1f830 acpi_quirk_skip_gpio_event_handlers -EXPORT_SYMBOL_GPL vmlinux 0xebc8497c xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xebb2eb84 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xebb40208 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xebbe62fa badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xebce8ad8 _RNvNtCs9WMcp1Hn5Bv_4core9panicking9panic_fmt EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebdfd8c9 _RNvXs1V_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_32___call_single_node__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xebf2a650 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xebe8efbe usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xebf9b110 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xebfbcb98 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xec034d95 _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr19swap_nonoverlapping8comptime -EXPORT_SYMBOL_GPL vmlinux 0xec0cdea3 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xec12d19a pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xec2c0b09 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xec349d8c __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xec43f8d5 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xec44363a tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec55a129 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xec091b83 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xec30ed05 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xec349e3b cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xec3ad500 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xec452037 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xec490a4a mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ab6f9 finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec61780d __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xec62967a regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xec645ddb crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xec767e2c acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xec627f43 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec800da9 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xec8bfe12 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xec9545fd nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec7da707 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xec89eb16 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xec9c3b0e icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xecaa3dc6 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xecba092b usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbd55d6 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xecd08deb _RNvXs5_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0xecd0940d _RNvXs2d_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_28maple_range_64__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xecd351a6 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece07fb8 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xecedd82a attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeceffa2a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xecf0db22 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xecf3247c extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xed010c90 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xed03b1c6 d_same_name -EXPORT_SYMBOL_GPL vmlinux 0xed24abce gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xed26a4f9 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xece1cfa1 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xece2281e mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xece469d7 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xece554e4 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xecf047a7 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xecf4d915 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xecf5eb01 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xed1603c5 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed2f9bf9 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xed36eea2 rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed50eefc sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xed56efe0 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xed57b5eb pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xed61cad6 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xed73f251 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xed3fd68d ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xed49ca94 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xed5e02d2 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xed62e5e9 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xed6d8cab genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xed707b2b __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xed70f864 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed90b2ca platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xed8c46d8 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xed8d45dd usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xed901bcc led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed92d434 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xed9cf0c3 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xedb3c4ef nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xedbd8f72 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xedc92134 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xed95d76b pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xed99ca84 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xedb2e81d sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd2f0ff da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xede4a285 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xede4efa4 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeddb8c20 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xede8043c __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedecc283 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xedf50006 mmput -EXPORT_SYMBOL_GPL vmlinux 0xedf98835 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xedeeffbb acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xee13e3b3 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee1ba0e7 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xee27fddf ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xee25d080 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xee2884fd _RNvXs0_NtCs9WMcp1Hn5Bv_4core5arrayNtB5_17TryFromSliceErrorINtNtB7_7convert4FromNtBX_10InfallibleE4from -EXPORT_SYMBOL_GPL vmlinux 0xee32164f device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xee2b8a56 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xee3694b2 dw_pcie_ep_raise_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3bdbfa linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xee3ef79e devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xee4673b7 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xee44e533 ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee5fc040 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xee5d5432 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xee6127fa _RNvXs4i_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_11NonZeroU128NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xee699d89 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xee6ae822 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xee6b3274 tpm_send EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6be33b thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee7c6e98 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xee72b300 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xee7b30ce dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0xee8363a9 _RNvXsu_NtCs9WMcp1Hn5Bv_4core4timeNtB5_22FromFloatSecsErrorKindNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xee8a1531 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xee836da6 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xeeabef15 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xeed47ba1 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xeeda32d2 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xeeb3ef05 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xeeb5da2b serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedeb5ee i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xeee56198 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeeec4c66 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xef0079e3 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xef013e6d __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xef099521 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xef0d8285 _RNvXs3k_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_19folio__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xef11e08f pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xef1ee39d fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef228dbe device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2a12dd device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xef33f451 dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef3db78c exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xef3e9b20 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xef42c1d8 __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xef4528eb _RNvXs3O_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11mem_sectionNtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xef45a9a6 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4a5aec bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xef512f5d node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xef530596 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0xef5c97a7 acpi_fetch_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef670da2 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xef68db63 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xef6703da regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6f8897 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef758521 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xef89b596 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xef8b370d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xef71a0c3 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xef831b9d crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xef88d1e2 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xef8be482 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef96d127 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xef9eedfc regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa9d2e0 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xefaa1c91 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xefad156b clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0xefb4bfe6 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xefb762db ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xefb9e06f iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefc26ee1 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefc6c466 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xefc775ec gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xefcd6dd1 _RNvXs6_NtCs9WMcp1Hn5Bv_4core5allocNtB5_10AllocErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xefd63f39 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xefe1ff6f devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0xefeac8df pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefefdd46 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xeff2d37e split_page EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xf00d8bcc crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xf014844e nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf01711c3 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xf02181da page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xf03706c6 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xf03c3693 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xf03ce9f6 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf00340aa pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf0061d3d pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0131f89 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf014e98a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xf0391026 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xf040ba5e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xf0440030 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0489971 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xf04faa7d devm_phy_get 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 0xf07ae1ac edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf08b78e5 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf06a487c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf07b32c7 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xf07be0d3 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf091da2e wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xf0a90085 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xf0aa2ea3 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf0bbd4b7 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xf0c3f695 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xf0936730 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xf09c5a44 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf09f7f85 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xf0a6d7cc devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xf0a84055 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xf0b38491 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xf0b460c7 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0xf0d16a6d _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9debug_map -EXPORT_SYMBOL_GPL vmlinux 0xf0dc9375 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xf0e3eedc led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0e90b85 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf0f02ca5 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xf0f40908 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xf0fcc80d crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf0d76111 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf0e74980 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf0eaff45 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b61 x86_perf_get_lbr -EXPORT_SYMBOL_GPL vmlinux 0xf10bdfc0 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xf11737a0 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xf129e316 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xf110ed04 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xf117c408 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf11ad892 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf11bbc22 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xf11f04c1 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf1206a31 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xf12e9d1f phy_reset EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf1477e6b ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf1456513 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf14f3b50 dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0xf15160c8 _RNvXs2_NtCs9WMcp1Hn5Bv_4core5asciiNtB5_13EscapeDefaultNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf15ce9e1 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf16a4fca hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xf16e1922 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf178fbab spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf17b7ce5 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf18bf40b devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf1a0e507 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xf1c276bb clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf193f1d8 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xf1a60532 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xf1b7a200 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1d5616c serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0xf1d6acf4 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xf1e31246 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xf1ce5e8c xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xf1d00323 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xf1dd1c25 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1fe4e0b skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0xf204353a _RNvNvNtCs9WMcp1Hn5Bv_4core3ptr14write_volatile8comptime -EXPORT_SYMBOL_GPL vmlinux 0xf20ecef4 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xf2066469 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xf20e7dd9 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0xf2140c4f _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data15grapheme_extend6lookup +EXPORT_SYMBOL_GPL vmlinux 0xf21a3094 gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2309681 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xf2332a33 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xf23affa4 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0xf2507745 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xf261e1af cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xf26beed6 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xf2482f39 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf2899722 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xf2860ebc gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xf286cc4f __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xf29111da crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29e72ec icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf2a23825 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2aaf7e5 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf29f54c6 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf2a1dfff regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xf2b0861a ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bf21c5 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xf2c039e6 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xf2c35d0f __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf2bb712e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2c0e286 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xf2cc79dd shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xf2dd51ad platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xf2c94581 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xf2dd4c10 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xf2e350c4 _RNvXs_NtNtNtCs9WMcp1Hn5Bv_4core4iter6traits7collectuINtB4_6ExtenduE10extend_one +EXPORT_SYMBOL_GPL vmlinux 0xf2ef7d4d usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xf2f5b72d __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf3019c92 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xf3048d51 ohci_resume 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 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf321017e posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0xf321ddba _RNvXsH_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB5_5u16x4NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf32780ba dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf324df9e tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf330f49b crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 EXPORT_SYMBOL_GPL vmlinux 0xf338901b _RNvXs9_NtNtCs9WMcp1Hn5Bv_4core3fmt3numyNtB5_10DisplayInt6to_u64 EXPORT_SYMBOL_GPL vmlinux 0xf33c2f36 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xf33f3b5c apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xf346c196 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf341e792 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xf351cf9a pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf353a76a da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf3522a35 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf36de992 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38217f4 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xf386691c ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xf39178e8 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xf3977fe4 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xf39c2e56 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf39cdf94 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf38ec1e0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xf3916bb0 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3a4517c uprobe_register EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b6a08f thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf3b5231d sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xf3b70047 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bfb55b usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0xf3cc1ed4 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xf3d88076 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf3bd9bb8 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf3db3710 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf3e234d1 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xf3eb863d ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf3eca86c ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0xf3ed8313 _RNvXs3t_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_28vm_area_struct__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf3f355db spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xf3fa8358 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xf40d05a1 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xf40f9073 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf42b5255 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xf430c1fb pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xf4311cfb vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf443293b iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xf446018f power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xf44fd1b2 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xf45e64f7 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xf45eb03d irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xf463b27f __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xf4097ee5 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf40bfb20 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf4171d5c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xf4180125 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf41ea257 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf421468c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xf43d2762 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xf44abbec sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46a7b38 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xf46bc2bf fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf46c707e unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf47d7c61 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xf499683b gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xf4a17176 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf4a2b296 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xf4a3300f pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xf4acfe3b synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xf48d44dd ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf4a3d38e kthread_park EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bc4fd5 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf4bc6820 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf4c5a7fd fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xf4b3b3cc clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d53126 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf4d5f438 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf4d7797f sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system -EXPORT_SYMBOL_GPL vmlinux 0xf4e26249 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf4f35921 ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0xf4f75eb9 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xf4fbfe69 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0xf50ee278 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf51c1916 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xf52aa5e1 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf53c1b53 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xf4f51263 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xf50726ba get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf512400f ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xf514769c da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf52c0dcf crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf52d5936 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xf52e34df clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xf52fe02f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xf540cced put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf547edc4 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf562f003 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xf573b1cb inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xf59119ac regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf56755ab __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xf58457d8 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xf59fb907 _RNvXs0_NtNtCs9WMcp1Hn5Bv_4core5panic8locationNtB5_8LocationNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a4a366 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xf5a56679 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b5e09f css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xf5bdf96b __SCK__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf5d47f65 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5bb5a0c __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xf5db4dac rust_fmt_argument -EXPORT_SYMBOL_GPL vmlinux 0xf5e6198d syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf5dee46d balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0xf5f214b9 thermal_clear_package_intr_status EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf5f59043 _RNvXs1Y_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_22spinlock__bindgen_ty_1NtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf5fa63ca event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xf619f82a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf5fe6996 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xf61b3101 _RNvXs12_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_10pv_irq_opsNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf61ecb24 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xf6217359 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf64af477 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xf653e81e balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xf65d92ff crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6655626 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xf671bdff alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xf675e0c6 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xf6801b47 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xf69aeb60 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xf6698e86 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xf67871a3 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf68d3ad3 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf69ea363 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xf6a10394 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a2e30c __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xf6ab1d9a crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf6ad40d9 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf6b3b2b4 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf6b46f0a __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf6b7f017 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xf6a6c47a da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf6aee371 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xf6b690a7 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xf6bfe0a4 _RNvXs1P_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_17fixed_percpu_dataNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf6c1ebf0 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d15677 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6d7b74c __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xf6dd946b gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf6e712a6 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6eaf121 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf6eca850 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf6ed10cb call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f3a333 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf6f76c48 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0xf6fb7841 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf6fdb036 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xf6fe6dec _RNvNtNtNtCs9WMcp1Hn5Bv_4core7unicode12unicode_data14case_ignorable6lookup -EXPORT_SYMBOL_GPL vmlinux 0xf6fe8879 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xf7049b64 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf715338a fscrypt_add_test_dummy_key -EXPORT_SYMBOL_GPL vmlinux 0xf717dd2d nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xf7222d26 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf7115b35 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf71658ae pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xf717c3d7 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf7180726 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xf72725c6 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xf7289108 _RNvXs3N_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f32x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72c3db9 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0xf7346d67 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7444a06 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf748c7ca __traceiter_detach_device_from_domain 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 0xf761293a switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xf7522c22 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf75a9df0 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xf75f4013 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf7665de1 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf76a62b9 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xf7693b4e memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf76bd4f8 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf76d2651 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf76dd482 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf7777833 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xf77d1711 _RNvMs4_NtCs9WMcp1Hn5Bv_4core3numh14from_str_radix 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 0xf7902c62 _RNvXs1n_NtNtCs9WMcp1Hn5Bv_4core9core_arch4simdNtB6_5f32x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf799d1d7 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xf7957887 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xf7a993a1 __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7b142ad dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf7b2d4e6 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf7b72cd2 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c69d0d mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xf7d8b1c6 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xf7f261d8 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xf7f5eafd dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xf809eb9f hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf8100ab6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf7d8d750 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xf7fe327d inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf80f8988 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xf8104870 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xf8133193 phy_create EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf826e37e usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf831dd11 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf837c8b2 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xf8402ac7 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xf836b500 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xf83b2f30 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xf8459e0e devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xf84b72b6 _RNvMs7_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9Formatter9write_fmt -EXPORT_SYMBOL_GPL vmlinux 0xf8522e81 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf84c53a7 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xf850e060 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf85da5ba ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0xf8645729 _RNvXs8_NtCs9WMcp1Hn5Bv_4core3fmtNtB5_9FormatterNtB5_5Write10write_char -EXPORT_SYMBOL_GPL vmlinux 0xf881581f hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xf86a2c75 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf88b61f6 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xf88e5017 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xf8a5ee77 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf8a9e2c0 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf8ab31a1 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xf8b0d9f9 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf895c98d seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xf8a192da __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xf8a2609e sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8b30291 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf8b99d72 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xf8bc0beb clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xf8c5771e irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xf8d7f58a ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xf8dbbad6 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xf8c15907 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf8c2ba79 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xf8d3a270 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xf8d8dfe2 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xf8e0f781 pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f57378 ohci_resume EXPORT_SYMBOL_GPL vmlinux 0xf8f6b27e _RNvXs2r_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_12rw_semaphoreNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xf8fbbe65 _RNvXs1a_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11__fpstate_32NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf8fd8a06 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf8fdc54c pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf8ffa367 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xf909affd devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf9199b87 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf923c273 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xf9265bf1 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf8ffa01f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xf90268bf dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xf90b3748 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf9122de0 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf919ac2f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xf920de63 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xf927daf2 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xf92fcd3b __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xf9348164 _RNvXs2q_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11ma_wr_stateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf943a3e0 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xf946b14d shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xf94e55b5 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xf9350892 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xf951073a regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95bf2e5 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xf95ee469 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xf96a3ed9 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xf96f2972 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9618c63 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xf9673f64 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xf96ae8f6 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf96d3892 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xf9810f23 _RNvXso_NtNtCs9WMcp1Hn5Bv_4core9core_arch3x86NtB5_6___m256NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf9876d24 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf996cd74 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xf997b57e pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9b03687 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xf9a0a990 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b90ffc __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xf9b5bbd4 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf9bb2709 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xf9bc8c19 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0xf9be9fa9 _RNvXs24_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15pcpu_group_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf9d56b85 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf9dfbd46 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0xf9e3e165 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf9cc756f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf9cedcf8 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf9e04623 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf9e04c8f mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xf9e0fb80 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xf9e62cd6 _RNvXsg_NtCs9WMcp1Hn5Bv_4core4cellNtB5_14BorrowMutErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf9ea1439 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xf9f107e3 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xf9f35f74 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xf9e8c45b bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xf9f4d84e clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xf9f8f630 _RNvXsx_NtCs796HB7yPNRt_8bindings12bindings_rawNtB5_12__ddebug_infoNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf9fb72f7 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xf9fb98ca _RNvNvMsc_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB7_10NonZeroU3213new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xfa1261df ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa060aba iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xfa070139 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xfa0a73c3 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xfa19b798 _RNvXs4n_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroI64NtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa1f3739 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa2cd400 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xfa2bbd22 i2c_dw_prepare_clk 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 0xfa41f246 usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xfa583237 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xfa5ca1e7 _RNvXs3g_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_4pageNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa7c94ea regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xfa85d06e __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xfa86fbc2 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfa8cf95b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xfaa03ebd fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xfa902cae blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xfa95999d scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xfaac300b blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xfaae4291 __tracepoint_add_device_to_group 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 0xfac956ab ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xfacff08c fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xfacc9c4f fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xfacca6b6 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xfad2f285 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadb7ac9 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0xfae2d2df tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xfae2db56 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xfae4c0e5 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xfaea96a1 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xfaf9216a misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0xfafef352 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xfae027f4 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xfaf099a8 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xfaf916c9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xfaf9b173 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xfb0794c8 _RNvXsi_NtNtCs9WMcp1Hn5Bv_4core4hash3sipNtB5_5StateNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfb2b58c6 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xfb2b64a1 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfb301eae dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xfb247ae9 nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb49e6ad dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xfb406ad8 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xfb4661a5 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xfb518873 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb531a60 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb6e3b18 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb70972c _RNvXs4h_NtNtCs9WMcp1Hn5Bv_4core3num7nonzeroNtB6_10NonZeroU64NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xfb728e9f scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xfb737b00 _RNvXsR_NtNtCs9WMcp1Hn5Bv_4core3fmt3numlNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfb7a2892 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xfb804331 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfb83d841 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xfb9423d7 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xfba7e456 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xfbaa0002 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfb73da65 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xfb968cb4 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xfba6282e pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xfba8abe5 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc1117e rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xfbc23deb wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfbc85f30 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfbd4c662 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xfbeeea2e led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xfbf4bdd3 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xfbbfed56 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xfbd8d247 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xfbd9205b dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xfbde0714 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xfbe8780e crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xfbf756f8 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xfbfe3704 __traceiter_block_split 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 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc1b0177 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfc1c95bd ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xfc1e4527 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc28cacd crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xfc339059 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfc25e2aa blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xfc26cbd6 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power EXPORT_SYMBOL_GPL vmlinux 0xfc41e2c4 _RNvMNtNtCs9WMcp1Hn5Bv_4core5slice5asciiSh16trim_ascii_start -EXPORT_SYMBOL_GPL vmlinux 0xfc5daaa9 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xfc4e03d8 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0xfc545a7f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xfc5fba6a __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0xfc60ea42 _RNvXs1K_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_11entry_stackNtNtCs9WMcp1Hn5Bv_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xfc61fa37 _RNvXsg_NtCs9WMcp1Hn5Bv_4core7convertNtB5_10InfallibleNtNtB7_3cmp3Ord3cmp -EXPORT_SYMBOL_GPL vmlinux 0xfc63bf83 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xfc6709e3 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xfc6cece0 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xfc7ecb8a tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xfc8686ba devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc93c4e4 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xfc98c8dc xen_percpu_upcall -EXPORT_SYMBOL_GPL vmlinux 0xfcacb3df debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xfcb8dcd2 gnttab_unmap_refs_sync EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcd1404c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xfcce1d2d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xfcd524b7 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xfcd814b8 _RNvXsU_NtNtCs9WMcp1Hn5Bv_4core3fmt3nummNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfcf07753 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xfcf1d143 vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0xfcf7ca4b crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd0cd5cf smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xfd0cfc63 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xfd1b8ba4 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfcfd26ce __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xfcfef0e6 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xfd03957a uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xfd2094cf shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfd31a5d9 kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xfd34fba5 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0xfd5b7788 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd5e4e1f pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xfd6aadc9 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xfd382710 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xfd475d71 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfd4ee766 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xfd5bf1f2 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xfd5f15b5 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xfd655cf6 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xfd6f9f09 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd9a2821 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xfd9ba817 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xfda0c79d pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xfda724d0 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xfdac383c gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xfdae2f9f synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xfdbb7773 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfd924623 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xfdbc95bf sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type EXPORT_SYMBOL_GPL vmlinux 0xfdc0ab92 _RNvXst_NtNtCs9WMcp1Hn5Bv_4core3fmt3numiNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfdc3138a fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xfdd65509 thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0xfde30761 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xfde6f3d1 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xfdc862a8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfdd98240 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xfddbab9f netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xfde55b69 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdec77c6 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xfdf130ae serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xfe0167d1 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfe0550ee pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfe0c4478 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe0d2e52 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe14e85d acpiphp_register_attention 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 0xfe1e4293 _RNvXs1e_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_7__xstateNtNtCs9WMcp1Hn5Bv_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xfe1eb462 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xfe202707 register_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xfe22b9fb _RNvXsJ_NtNtCs9WMcp1Hn5Bv_4core3fmt3numsNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfe2334ef kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3e1d68 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe3c9e34 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xfe453b31 spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe54515d devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xfe5b152b gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xfe486ac9 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe4bac04 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xfe50c8ed device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xfe528af9 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xfe5e47b7 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xfe60b12e clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe629617 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe7964b2 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xfe7cf87e fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xfe76fc86 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xfe879608 _RNvXs1r_NtNtCs9WMcp1Hn5Bv_4core3fmt3numoNtB8_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe945cbd regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfe94a32d regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfe98d32b ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea54f7d input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfea5dd05 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xfea8766c bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xfeacf2cd blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec77a66 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xfec9b3f9 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xfeca0fcd gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfeaf4e85 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfeaf8a3b vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xfeb1c53d edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xfeb3da24 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xfebb13fa kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xfec278a3 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xfec37ebb __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xfec8bc55 intel_pmic_install_opregion_handler EXPORT_SYMBOL_GPL vmlinux 0xfeca2cd0 _RNvXs1W_NtNtCs9WMcp1Hn5Bv_4core3str4iterNtB6_13EscapeDefaultNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfecdb620 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfeda8877 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xfed52acf genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xfee374f3 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfee81518 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfee8a8eb mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfeefe845 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xfef10902 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xfef25837 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xfef1c0c7 vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff149de2 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xff06b751 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xff0f8bce bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xff1555ed p2sb_bar +EXPORT_SYMBOL_GPL vmlinux 0xff155f60 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff19daee hv_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0xff1f4f6f tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xff1f990a irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xff274473 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2ab5a1 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xff297627 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4aec17 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xff4599d2 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xff4a7414 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0xff5053b0 _RNvNtNtCsiTPnVqBGVaY_6kernel5print14format_strings5EMERG -EXPORT_SYMBOL_GPL vmlinux 0xff68bb67 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xff518df2 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xff51e6ed tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xff5f62ad __class_create +EXPORT_SYMBOL_GPL vmlinux 0xff6953bb dma_resv_describe EXPORT_SYMBOL_GPL vmlinux 0xff6e16aa _RNvXs2f_NtCs796HB7yPNRt_8bindings12bindings_rawNtB6_15maple_arange_64NtNtCs9WMcp1Hn5Bv_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xff78462f tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff836af9 __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff87203f __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xff8b4c74 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff8f6708 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa7ed9b __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb31018 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0xffb398b6 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xffc2daa2 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xffb24bf7 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0xffb25317 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xffb8f654 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xffbe85bb crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc61132 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xffeebb48 devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xffefabba relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xfff5a955 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xfffd2b79 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xffdfcc1e device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xffef063a input_ff_event 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 0x0b0e890e cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0ab568ed cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0f7544de cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x130fb680 cs_dsp_halo_bus_error 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 0x29210c24 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x2ec3553f cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x341eec50 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x386892a6 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x19a8f95a cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x22b57db9 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e3d89b7 cs_dsp_stop 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 0x54d95369 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5549a42c cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5c14aaa8 cs_dsp_run drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5efb0a3c cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x6af9061d cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x57848aff cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x596ea6cd cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5ab60836 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5c5ccb8d cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5f6bb537 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x69e3250c cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6aad9d80 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 0x6ff2dc57 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x8da6df8b cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x9936d55a cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x9a73c851 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6ffa7479 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x74b0a3d0 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x863cc533 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x99dbc777 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9afc871d cs_dsp_remove 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 0xa35482f8 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xa54ac77a cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xac36eb6e cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb538281a cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa2ed841c cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb21ed6a6 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb23ea555 cs_dsp_read_raw_data_block 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 0xce10e5b3 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xce8ccb24 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdbf25f37 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe6d4de78 cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf692d0a4 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xffe1219c cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0xf5bf2b49 hwmon_device_register_for_thermal vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc4b6645c cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf7c32cc4 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xffa696d5 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x5dd62bcc 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 @@ -27854,661 +27857,661 @@ -I915_GVT EXPORT_SYMBOL_GPL 0x007adc97 __intel_context_do_pin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x0095c6ef i915_gem_prime_export drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x017cb1e7 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x03fa42d7 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x06d27f6c __intel_context_do_unpin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x092c7b9a i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x1ae79332 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x10e9521e __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x14c15d8f i915_reserve_fence drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3516232b i915_unreserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3ad0fed5 i915_request_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3d1fa8d0 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4c74cd21 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4c7dc44d intel_gvt_set_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4e2dd7c7 shmem_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4f47b44c intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x5223b48b i915_gem_object_alloc drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x5f9d4494 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x68fa2261 i915_request_wait drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x77f4c458 __px_dma drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x7b171623 i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1f8604fb shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2c073c1f __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2cc85cef i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x35499586 i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x53cd1715 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x559a65f8 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7672a3fc intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7ba9a71b i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8171c16c __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8241bf23 i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x83d70f5c i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x87fc569e intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x88e7409b i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x8f90e228 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x91f5dc4f shmem_unpin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x93842acf i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x98b60bb8 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xa8275989 i915_ppgtt_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xad055dfe intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb86469a2 intel_context_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xba365c39 i915_request_add drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbd8d05aa intel_ring_begin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xc23af4d4 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd076454d _i915_vma_move_to_active drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd08c074f intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd3520fdc i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd705ed74 i915_gem_object_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xeb61cde2 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xee4941e4 intel_runtime_pm_get drivers/gpu/drm/i915/i915 -IDXD EXPORT_SYMBOL_GPL 0x1be458d4 idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x20546f7e __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x2575d9a0 idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x52d5d29c dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x77fb6bc3 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xc9535682 idxd_dmaengine_drv drivers/dma/idxd/idxd -IIO_AD5592R EXPORT_SYMBOL_GPL 0x04ed8264 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0x24b344f0 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x78d2af8d ad5686_remove drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0xf2cbb042 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x628c8bf9 ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0x743c7fee ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x1b6820af ad7606_probe drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0x1d4facae ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x14d73963 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x3b5979fc __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x26a65570 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2f67220f __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3c5c219e adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9fcf120d adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xae158687 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb3aec783 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb6dd1f1b __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xba15e931 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xce51e85f __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xed57f338 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x906a0540 __adis_reset drivers/iio/imu/adis_lib -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x04728783 adxl313_core_probe drivers/iio/accel/adxl313_core +I915_GVT EXPORT_SYMBOL_GPL 0x935a33b5 intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x9936013d __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb25801e9 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb6ee479f i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xbe24be35 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xbefb57f2 i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc1630def intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc32ba06a __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc5f713c2 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xcafa2525 i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xcfc16b9f intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd2b5dd4c i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd5deba14 i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd9bf8835 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd9fd4e64 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdc1b1c55 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe4ce2c63 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xeb6c7050 intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xfddbb9cc i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xffda02de intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +IDXD EXPORT_SYMBOL_GPL 0x3901bf02 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x6d5a258e idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x8e5c1856 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xa5128940 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xbb7e27cb __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xc11622d6 idxd_user_drv drivers/dma/idxd/idxd +IIO_AD5592R EXPORT_SYMBOL_GPL 0x8306402b ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x926a28fd ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x9358077c ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xd2836d55 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x31ed585e ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xd32b9ec4 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x94517b57 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xea57d7f7 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x65d3be34 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xdd3cecf8 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3682d261 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x40f1d405 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4d6765e5 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x690419e8 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7f28e3db adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x84c8d57a devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9512cbd3 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd0540a92 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf411fd17 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfa959df4 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xa057c3d1 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x178df040 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 0xc06c3114 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xbf30d50b 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 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6f2b4ee6 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 0x717e2308 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 0x7ff5aaa3 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x789f9ea9 adxl372_probe drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0xd9393b8f adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0136b3e4 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x163fb406 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x357926b9 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x36f48e74 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5c37ad2a ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6f6cf8f9 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8c142d6d ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe666339a devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf8bb46cc ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfab42bf1 ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x0f68737a bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0x8f50b4f3 bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x35f7e160 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xbb90485c bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xbca83f5c bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xe426e181 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x394b3277 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x999c9844 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xd90db102 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xe9d83f0c bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0x188b6965 bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0x79180158 bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x09f0dafe bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x1be8d8f6 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x37c94e44 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x549f6d1c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x58a3c9a8 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xec710be8 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x18829638 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xaded30a0 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x06608857 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x14ba5017 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x81a9e95c devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x93f2d328 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9551a0e1 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x97febfa3 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb7ff9cda ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc11b5144 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xcbb50b37 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf2ff07f7 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x9a6ebf92 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xdd28e488 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3125263a bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3dcd5697 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc4d8d33e bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xe2b7ee01 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x082b9431 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x5d0753c1 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x6b490d48 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7b9f4d81 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x5e0012a1 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x9b39b01f bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x4313ecf4 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x85974849 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xa403d17a bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xe7936123 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x4b7fa7b8 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 0x9493a715 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x017ca6aa bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x1e5656ad bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf104e04c bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf4d08bcf bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x172534b2 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x58dc82b2 bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x1674b113 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x8e445eaa fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xbe0fb9d5 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x1451c51d fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x5fff11e3 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xb68f51d8 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xcdef3ffb fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_HID EXPORT_SYMBOL 0x2762d204 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x2f243b55 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x30bc4cb8 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x4f795903 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x5d735b5e hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x6d3fb192 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6d6817b7 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_BMI160 EXPORT_SYMBOL_GPL 0xcf314364 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x681a64a1 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x829cb9c3 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x8748d240 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xbee4bf7e bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x13538937 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x46eded62 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x5917896c fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x6e2f153b fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x94c6968c fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x00bb7eda fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x1e8fddb5 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x4c7db425 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa265ea1f fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x346df5ee hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3c8a4a8a hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5b0e6e20 hid_sensor_write_samp_freq_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 0xa8f966f6 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb5ce6627 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd5ceaa19 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd9d0ec7d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf44b107e hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x5b2547f2 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9a7506b3 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdc26288e hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf655c82e hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x8e6d2fdc hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xa12c6112 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xab20f333 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x977a82f2 hts221_pm_ops drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xd95cc224 hts221_probe drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x21810d08 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x92b15f00 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb06e089b inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x87b7a2e6 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0x9cdb428e kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x70174728 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x9bf35bfb kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xb7c85820 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x086255c0 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xbf74285e st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0x8db3aac3 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x8dee9819 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x8fba100d hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x91ab6267 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9c242908 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa061d7a7 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xceb363fd hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xddff4fdb hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xff57a553 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x236558a8 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x61784dbe hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc136d0c6 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xff22efa3 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x23da5ba4 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x82ea7e69 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xfabf712f hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x24e0dbe9 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0x72f81c5c hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x30cb9a5f inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x76b7ddb7 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xad96a150 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x1783a867 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x3639e4bf kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0xae9a77f5 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xefd058b3 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xf0238b9e kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0xceab36e9 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xf0171021 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 0x120e01ab ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x1e2ef841 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 0x3c317255 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 0x46827aa9 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x716ade50 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb283c093 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbd69ce0d ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbdabd6a0 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe2d82ade ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xeb2e8177 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfe305c03 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x39c15590 mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xb542811d mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xf40c0781 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x171dbb8e mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x281d38e2 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x69221392 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x83200e55 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xacaf93e0 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb7f64636 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xca2ccd07 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe4bd91f2 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xffadfb0b ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x47c2772b mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x4a678d24 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfd8c8d3c mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x04b040be mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0cc75d94 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0cfe29e9 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x183ce656 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x257587be mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2bc1053a 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 0x4f8141d8 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x675639da mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6c87f70f mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7cfc67d6 mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x84120a1c mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x85bad509 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa0227b04 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa2d6742b mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x54e77a67 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x551586d0 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6e7d2c9d mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x74559644 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7d0e426b mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb0baa8c8 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb1b5a2b1 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb2987cd1 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb57fb1b0 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbc311e23 mma9551_gpio_config drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xc3e0731b mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xc43b5de3 mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xc4621a8e mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xcd5fca11 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xd9bb102f mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf75ef6bf mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0x52de73e2 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0xc1a84452 mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x26fed26f inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x89d78064 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x61aa59f7 ms5611_remove drivers/iio/pressure/ms5611_core -IIO_MS5611 EXPORT_SYMBOL 0xd59f067d ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0xd64c871e rescale_process_scale drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0xe46340f7 rescale_process_offset drivers/iio/afe/iio-rescale +IIO_MPL115 EXPORT_SYMBOL 0x7791c410 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x616f562a mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x8af87567 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xea4e993c inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x4fd01584 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x912bff2d ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x6211f2dc rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x63036d15 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 0x3ccd4d7c 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 0xaf8d075c rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x6ca5cbc9 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xe41dacdd scd30_probe drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0x7542a8a9 sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x202ec864 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x5efcfdb3 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x9ff05b77 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa014c4e3 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xaffec97d ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xb6caf021 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xbb41c65c ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xe0f87737 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SCD30 EXPORT_SYMBOL 0x9086fe31 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xad4085c1 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x60eae660 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x45b867e4 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4dd54ec8 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x542985f8 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5f35212c ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x70758501 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x772d27b4 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb98d190d ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe10335d8 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x03a76e3b st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x03ffb76d st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x06e895ef 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 0x1dad494f st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2a94b1fc st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2b409342 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2d1fc27a st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x314d74e2 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x345c806a st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x5eb64365 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x7c0057bf st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x897f1dab st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0xa0790efb st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa0b9bf43 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xa16dfb29 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb040db15 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb08c4934 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb0c2969c st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb318dde3 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xba78fee2 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0xc41427b9 st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xceda80d1 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xd8bad8b6 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xdedef2f8 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xe04bab41 st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xe606bcf0 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xeb593903 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfac02dbb st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xffd242cb st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xb04980e3 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x2929fc14 st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x68540e72 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1444a34c zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x19f0ed10 zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4a1984f4 zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5051afdc zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x749fe64d zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf441b19b zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x3e564de5 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x98e8927e processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x0f1e6c07 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common -INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x8a90d58f uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IIO_ST_SENSORS EXPORT_SYMBOL 0x16e2a821 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x1dfb1b45 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x23b851e5 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x26c1d2a6 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3d5c2a47 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4d6b8833 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x4deb1868 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5b9af63f st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6de43cb0 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6ff02417 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x71d3b375 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8c0fd0e4 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x8ffd2ce7 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x90245892 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x964072dc st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xb5c47cd0 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc3798805 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc392ec51 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xc6e8db75 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xca9828e2 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xcfb9de51 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf07d96a9 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf0f98391 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x360adee0 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x0a068002 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x2997807c st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x30f3ffc3 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x68271722 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x947dcf72 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9e92f0f9 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xd99b829f zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xe7d88e74 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x4aabf928 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x4b08aec4 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 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 0xdf95ff69 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common -IOMMUFD EXPORT_SYMBOL_GPL 0x0533665d iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x25bb08e2 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x2966c802 iommufd_access_destroy drivers/iommu/iommufd/iommufd +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xc9f4f2b4 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xd498b077 uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xf0e6898f uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3712e59a iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3ec286bb iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x40429629 iommufd_ctx_put drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x6118921a iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x78c6db85 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xb3c7ca94 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xc5215243 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xed2a995b iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xed8332df iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x588ade48 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6dc94658 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa40663e6 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc3d029c0 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xe6584bcb iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xea75bfb6 iommufd_access_rw drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x5217f46b iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x03caca5b iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0754afe3 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0aff5981 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0b102af8 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0e9b48e1 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x900344f6 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x00ca8f7c iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0231b072 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0779608a __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x09d7dd30 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0c53cae0 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x10cd0352 iwl_fw_runtime_suspend 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 0x1d9e6a24 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1f2a6742 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x206085b7 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x20dacf48 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x229a1662 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x23b9c72b iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x24160f31 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1363804a __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x14863925 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x167f41b3 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1a4f3483 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1acacd9c iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1d33a17d iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1f10573c iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x203c1bb0 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20e101cd iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x222affb0 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x26944659 iwl_init_paging 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 0x2acba44e iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2df6c4e5 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2fc62be4 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x285c4924 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x287d820a iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2bcf6345 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2f83221a iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3308e6c3 iwl_sar_select_profile 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 0x356a577b iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36a320b7 iwl_acpi_get_tas 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 0x392a744f iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3ac8fcd2 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3d529a04 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3ec66234 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x44bec57e iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x469562d8 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x46c446ce iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x499fb804 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x39c415af iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3a0bd5c4 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3a7d713b __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3bf78ab1 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x423ace5c iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x44e94be7 iwl_read32 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 0x4c238216 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4fe8befc iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x57b888b8 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x58f510c9 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x593d8577 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5311e3f2 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x56d8656b iwl_poll_direct_bit 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 0x5a3f9989 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c24d306 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6f2fd903 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x75122538 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x758e78de iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f9d17c0 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x669089f3 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x66e0e619 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6807d230 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x70171851 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x74e3b66a 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 0x785af540 iwl_fw_runtime_resume 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 0x78981a65 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7d6a7b8a iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ffe9fa6 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8009c95f iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8220b838 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x79aa692f iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ab43c54 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7c9b1444 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7e93d0e1 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x843bfda9 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8459e803 iwl_sar_geo_support 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 0x872cfb4b iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x872dad02 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 0x899eb5f5 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8ca35ef4 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8d4241ef iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8e8ebbe6 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8eef5f82 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8fa9f3a8 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88ce62d9 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8cd0abcf iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x93adcd7e iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x951b3e57 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x97d952bb iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9d010bb5 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9d0b3d08 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa39e8d6f iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaa4c9ae5 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xab2a8f53 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaea60f86 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaec0c6c2 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x931224d3 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x941f3da1 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x97a19519 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x99f59599 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa97fb759 iwl_fw_runtime_init 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 0xb71fcb42 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb7f1dedf iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xba3842bd iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbcb8ae88 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc0b0b9eb iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc6421e2a iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc7ac81e1 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc941ceeb iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcd778fd7 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbf58c7af iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbfa0c4ae iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc14cb137 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2d450be iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2ea3890 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc368b506 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc777a483 iwl_write8 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 0xd1f826a8 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd8650b0f __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdac627a4 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd4a93100 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd9a1a922 iwl_fw_start_dbg_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 0xe1a5e80e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe1c842b9 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe45c873d iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe604283a iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe68aefd2 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe159abbd iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe8958703 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe89b2943 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea12af3d iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xedb8f65b iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xef8ff272 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf38a8219 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xecb802d9 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xee92aad1 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef2a27ee iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf786fca8 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfb18a30d iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfc9603ac iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x2dd4fe23 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x8b5274fc ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x049a2ebf mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x11c11a5b mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2356fe07 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x262ca1f7 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4491b249 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6152c449 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7bb1c653 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x83700843 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8826631b mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9152385f mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9a8f912e mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa56ee8bb mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdaedbdb5 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe8a0f047 mcb_bus_put drivers/mcb/mcb +IWLWIFI EXPORT_SYMBOL_GPL 0xfcd6b292 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfe38ed6f iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xff035cbb iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0xb0720093 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xb5446347 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0ab88aef mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2cab970c mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x46d9f581 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a8109fc mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x678cef37 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6bdbea48 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6eef246d __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8f896536 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x94f91441 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa08040fd mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd21b7819 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdc33328f mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe33fce96 mcb_request_mem drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x420f9eb6 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x634872a7 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xdcf31e86 ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NET_MANA EXPORT_SYMBOL 0x0f07ebf7 mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x278c1b7d mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x48f92e81 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x4e47954d mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x51eb7fce mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xe66b3c14 mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x26d3e949 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x61d126b7 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x702b173c nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x72d05da7 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb78cfc21 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd08bb2b9 nvme_put_ns drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x05ebfdee peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x0ce20fd7 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x13aa632c peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2797a6f6 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2f285b87 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x31f4140f peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x3fbba2de peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4f582fe7 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x511eb3c6 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x60e1b451 peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x671550a3 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6c2918da peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x72f55752 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x7f670faf peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x84add87f peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9f4fa3a9 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa2f16507 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa60b8405 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xac713d42 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb17843a6 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb3fe59f1 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc5bd22ef peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc66b2abf peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdbbbbe38 peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe6f0a552 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf1ac3197 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf6b55290 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xfcc5506d peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xffd44c4a peci_request_dib_read drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x24e699c9 peci_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x333572e3 peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xca643c70 peci_ep_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xce64aec1 peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xee318752 peci_pcs_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x009f982a pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x045e39c9 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x32023ea9 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x32701776 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3a9b9f0a pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3d5f49f3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x49e3da3e pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4a852604 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7bea3210 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7c8474a8 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x887478e5 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa7aa0ab2 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xaac2a209 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xab56235f pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xadb4fb0b pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc6fe3bab pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe870f727 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfa67e007 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfb96ed27 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1b078357 sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x647c717c sx_common_write_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x8500a7f2 sx_common_read_proximity drivers/iio/proximity/sx_common +MCB EXPORT_SYMBOL_GPL 0xf9e12397 chameleon_parse_cells drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x22b48441 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x55835d29 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x0da39f8b ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NET_MANA EXPORT_SYMBOL 0x54fb0666 mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x8120e972 mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x8aab5774 mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x99cf96b7 mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x9d16145c mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xb3c89e5f mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1e4629ad nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4849f5a3 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x79127d51 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa5aff732 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe4604180 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf8ff4afc nvme_execute_passthru_rq drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0150fd9d peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0f698042 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x12b914c5 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x19eccd70 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1b9c3bf7 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x29242ac6 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2fc3414a peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3b602146 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4251bec0 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x56d7c4ec peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5a43bdcd peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x63b98778 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7a663eb4 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x823ccdbe peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x969e11c5 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x972f8f48 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa207155a peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa6e5080b peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa833e2f5 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa9e31eac peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb43cb2a9 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb9eb73b8 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd88be71b peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdfd4978d peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe237539a peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe32f88a4 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe5e44b56 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe8df4ca6 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfcbf10a2 __peci_driver_register drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x2a87a0b9 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x2bdc64c7 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x62260857 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xa60fc486 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xd9fa4681 peci_mmio_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x1592a35f pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2413c9a4 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2d666b39 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2f463f00 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x31fc9e59 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5d9cbe33 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x97150697 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb59c5ea8 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb6ce0581 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb8b8f915 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbf0572e5 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc86f2761 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xce5d305d pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcf442c1b pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd0f3ef05 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd214a274 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd3fbf318 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xed98b0ef pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf636fea7 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x2b0f1917 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x59b7b714 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x82ae46fa sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x91d83e8a 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 0xc6523965 sx_common_read_event_config drivers/iio/proximity/sx_common -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x26af26bf hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x047dafb9 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x1feb0f37 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 0x5702cf47 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x840bccc2 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x92997374 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x07fe7f8f cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x80afbac5 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xa006d914 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x45bffbd3 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x759c4c28 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x4b14abf6 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x520289e2 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xd0a3ec3b cs35l41_hda_probe 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 0x0c7e2b12 acp_machine_select sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x3fcf5794 acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x4791ef1f acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x4c5ae90e acp_platform_register sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x98e0bcfc asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe95538c2 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s -SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x9ec2dc78 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach -SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xed0e3153 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x07498041 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbf36fb66 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd3a5f15a cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x0d5e90ce acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x2e502a52 asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x2ece20e5 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x3d4a29a8 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x78195c46 acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xdc7c0cad acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x5987fa99 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x76398f7d acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x023b6cdd cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x6f3e22b3 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc3e68f86 cs35l45_pm_ops 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 0x528823e0 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xa8121c27 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xeb2add6b cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x04fa5233 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0ee838c5 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x18369ae9 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3bf255f4 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4529806e cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4ef7a1d2 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x615acecb cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6d67373a cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7822ccc0 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb84d54fa cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x92a183b1 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xacc0f9c2 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xeff8388e cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3ffcf169 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4cbb07b8 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4ce501bd cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6ea79b74 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7d9f5a16 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x93bc5b6b cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x949238b9 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb111d8c7 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb83732d1 cs42l42_resume 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 0xeab51a8b cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x898ce2a4 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x237cf764 cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common -SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x94652e19 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0897a6e8 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x27d55e45 max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x2eacadb1 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x56105ccd max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5eccb4b5 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7e3ba177 max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x859269cd max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8a4fa3b2 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa912375b max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc4956cb9 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xcc545dd2 max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe06a6ef3 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xf348ed18 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x276be8e8 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x2eea8d19 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x9e1a02b3 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x9fa6cb7e sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xa749efee sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xafd987d4 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xb649b15c sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xec1cef92 sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x217c3d36 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xd9b87375 sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xe0a18349 sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x07d60bc7 acp_dai_probe sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x08d012ef acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x120a22e5 acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x12476fb2 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x17a928b4 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x22c0b441 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2fcfc2c6 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x335313e0 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdbae0b07 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xea2b83ab cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x47396633 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x9bbb90f4 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0xa745e020 cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x01a55334 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1420f8e0 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1af70c16 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1bee0c23 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x32892807 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x3a57a21f max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x687142e5 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x89d87f7f max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa0d9c613 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xae8e352e max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xbd5631e0 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xbd68a7ae max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xee65e1f4 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x06d8df6d sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x1d30005e sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x5142fbec sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6598fff3 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xc5745b68 sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xccef2130 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xfa4474b1 sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xfd2875f6 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x17f59f2a sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x50737fd5 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x939eec0e sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x02b2d39e acp_dai_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x02e2ddfe acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x13394065 acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x13a2957b acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x13efe6f0 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1462604e amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1ec70626 amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2962fdb6 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2d872745 acp_set_stream_data_offset 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 0x3f4c34c2 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4a1bcdfe acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5b978c35 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5f1524de amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7112ed15 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x77d0b9ed acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x843e14db acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x90097647 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x903c068c acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x94a4322b acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x95679073 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9f85563e amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa194fa61 acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa3a07ce4 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb42ba33d amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xcdffa321 acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd445472e acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd846a38d acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdf664aaf sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xff4201de acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0a769256 sof_client_ipc_set_get_data sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x2e5c739e sof_client_get_fw_state sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3819ab2d sof_resume_clients sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3b81a93a sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4948255d sof_client_get_ipc_type sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4f0afeff sof_client_dev_unregister sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x603d9181 sof_client_get_dma_dev sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7091ca9d sof_client_ipc4_find_module sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7e0bcf1b sof_client_dev_register sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8f0cfd81 sof_suspend_clients sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9508ca47 sof_client_core_module_get sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9ae32618 sof_client_get_debugfs_root sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9c987cf2 sof_client_core_module_put sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9d6e594d sof_client_get_fw_version sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb6864956 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbd0dcbe6 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd434472a sof_client_ipc_tx_message sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xdd5a4487 sof_client_register_fw_state_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe3f660cf sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x189c17c8 hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x1f598491 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x2d64b8bc hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x35c776c6 hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x5dccc7cb hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x6a27b8a3 hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x8a94e948 hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x96e362c6 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xb4ff2db3 hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xc2c25618 hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xc7aec857 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xce18f9b1 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf22984bb hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x2b3df13d hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x305d817b hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xdc82f4a2 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x16bc84dc atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x338ecdfb atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x3c1f89bb acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5185daf9 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x62193c42 amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x6472acc4 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x669c0d78 acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x6b681655 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x86f249a5 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x8cad3bd5 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x92ea664a acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa81a87ef acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb422a2fc acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb908ece5 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc7c7ddb3 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd33ffde3 amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd830ab24 sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdd92b5d0 acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdf05760e acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe122b492 acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe55fe06a acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x148fe252 sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3b18161c sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3bae6c97 sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7a5d07b7 sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x832e4665 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x914029d0 sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x933a3f41 sof_client_ipc4_find_module sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa874cabf sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xba9ec4ba sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbbdb11c5 sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xc9f714ba sof_client_ipc_set_get_data sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcd93d588 sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcda02de9 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd1e9ff63 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd6ae9116 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xdbe26379 sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf636ca5d sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfab26446 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfdb69494 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x03e351a0 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x41b867d4 hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x447384a9 hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x4643278b hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x73de2271 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x7b8fe9f9 hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x7d9f1a9e hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x87ad82eb hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x917dd557 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xb87315c7 hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xbbb61488 hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xc2290be6 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf3b4ea93 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x5ee9d035 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x680ae973 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x6941e465 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x101be4aa atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x1046e093 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x31fcbd94 atom_reset 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 0x3953d8dc atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3d9668fb atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xa830f189 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb95131d0 atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc4028e08 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x4ecb2c6e atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x53c397fd atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x924c4ac6 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb4f78f94 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd0043bb8 atom_set_mach_params 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 0xf48ab535 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xfed971e9 atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0351eda5 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0cda6469 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x12a0cb04 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x13c4503b cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1455df3b sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2279e77c sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x22d76fae skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x268d5dc3 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2c122608 hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x32a84b19 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x39c53987 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4e241dcf sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4eb969df jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x892a5b14 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x97973a9c sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa35ec025 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xadf523b6 sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb0afc0cc sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb2c114e1 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc4cf590c tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xce6dc32b ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe201e4a4 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe72613c5 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf894bf3f sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x795a29ae sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xafe2fe38 sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xc609b214 sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xdaee5bff sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x7b887ae5 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x4415bdca sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x08f50b05 sdw_intel_exit drivers/soundwire/soundwire-intel +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf4303243 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x037c5be4 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0db12766 skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0f629665 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x104ed08c tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x221612a4 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2819a967 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x387d20b9 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x39e88fc6 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x423a54d9 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x46393c06 sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x66409d61 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x673d8138 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7f6b2b40 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x975df815 hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9c85cf35 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xae5fbdb6 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb991d56c sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xba365394 sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbaa52b97 sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbbcd08df mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbdaebd5f sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe691c663 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf4d4a148 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfcb1d86e sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x2f2e622e sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x9f085828 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xc46d0c6e sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xe5cfb260 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x7aed1d9c sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x776154ba sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x155f2e5b 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 0xad92d9fe sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc3397c35 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xfdd1346a sdw_intel_probe drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x43e1848c dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4ffe6634 dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8270c091 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8b9683d0 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8bccba23 dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc7241a9b dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd3cc4e7f dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe54bd1f0 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfc5a09ae dw_spi_remove_host drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xb253f811 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc5e2cdb1 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xdc534bf8 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x25f94d2a dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5c9ffe9e dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5f3ffbd9 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6b68deb9 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x84f94945 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb1ab6748 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xca714d43 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdce23419 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf329ff52 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 0x1931ad3c usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0e428c48 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 0x58e8e73d usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6bac016a usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6d11051a usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x70311d5b usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x725f713f usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x745e8538 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7802e6d8 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x78f92051 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8122a0e2 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8a754559 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8ed021b9 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8f4a27dd usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x908aa4b9 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9c53e6ec usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa2857e8c usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa34b8e58 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa5db5521 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb666bcad usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbcb30a84 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc585d76d usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb0ed3e4 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xebc6ab69 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfd828486 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x278e6ea8 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x28d3b419 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x328416e2 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3aa5745f usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x418205a9 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x43185de6 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x48d11658 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x491e1a90 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x496da0b6 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x551aebfd usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x64712db5 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6834e91c usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x703cc390 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a138444 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9449530b usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x951be2e4 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9521fb55 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9eeb0efa usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa3701957 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaf87a5d4 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe3e8da57 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xed31f7e6 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf6bca70c usb_stor_resume drivers/usb/storage/usb-storage diff -u linux-6.2.0/debian.master/abi/arm64/generic linux-6.2.0/debian.master/abi/arm64/generic --- linux-6.2.0/debian.master/abi/arm64/generic +++ linux-6.2.0/debian.master/abi/arm64/generic @@ -1,121 +1,121 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x9910b126 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0xc61a8aac brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x5153fa8b counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x8b0dc6bb counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xa24c883b counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xa38d968a counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xbac18c20 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xbac82229 counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xcba6f886 counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xde730670 devm_counter_alloc drivers/counter/counter -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x09d753bb otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x1f5e1833 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3602fac4 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x37365754 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3c53cf3c otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x53d511c0 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x558d8e74 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x67346f0f otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x6f88e561 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8fc7548e otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa96fa23a cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb6160324 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb8437634 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd7deaaef otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xda2668b6 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe8c9e4ef otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf2b14c3b cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcdf1da99 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd689ae15 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe002f197 crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x00c19d60 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x00ca91b9 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x04d3450a to_cxl_pmem_region drivers/cxl/core/cxl_core +BRCMFMAC EXPORT_SYMBOL_GPL 0x1127b94b brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x3cdd0d02 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x0c980aca counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x36bcac98 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x3a538f86 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x5d81440c counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xcc827497 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xcccc19b0 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xcd90d67f counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf9e00ba8 counter_priv drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x03944863 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x17581202 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x454e60f7 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x4a4f9343 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x58d47657 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5d1fb627 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x631e18a9 otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x67e4f6ff otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7ccbbdc1 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9377cfe8 otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9847a7cc cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xce14c1f2 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd5d599b9 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe427efcf otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe6791809 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf13cd219 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf2cc923a cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x6f9cb1c5 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7bb9fe12 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe0f263af crypto_cipher_setkey vmlinux CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x24423db4 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2ba4ae24 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2bc2de8d cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2bcc47df cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x30cfeda8 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0eb729dc to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1f24e09a cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x212048de to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2483a253 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2ccee8ea devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2d643003 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33770dd3 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x339aca33 find_cxl_root drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x34fe910d devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3cc49864 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3fb1a377 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4886be6d cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4e47cb42 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x51716d50 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x586e0b4b to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x59e75271 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5b545d0b cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5da54ce6 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5f77b0ce cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x62611b2d cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x651d6392 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x658d89bf cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x67db80a2 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6a272515 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6c1bdee2 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x34a7ca52 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x36137636 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x46048bd6 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x56c3f42b devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5bd8bd80 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5cc4df1a cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5de5df85 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5fdd7864 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6310da36 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x65f6cba4 cxl_dev_state_create drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x70da13db read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x764a5dc0 cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7c577731 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x771a779f cxl_mem_create_range_info drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x8171954b is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x846bf74d cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x82c89975 devm_cxl_setup_hdm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x870206ed cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x89aac4ec to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8eb70e8d devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x96e10aa9 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x85590421 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8b88a31a cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9091441f cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x92d5535a cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x935a2a96 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9536ce87 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x984b5e7c is_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9b0da37e to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9d71054c cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9e09f315 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xacb52c2a to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xad48e111 to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xafe12bd9 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb427aeeb schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb49e352f cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba302ff2 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbaafb97f cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbc4157ab devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbca25b69 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc2eaa2d1 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcb155205 cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd16f3da5 cxl_rcrb_to_component drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd38ebc76 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd52fd8cc devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xda2e0e8f cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdaa441cd devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xde32d350 cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xefada1ea cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf123bf4d devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf2cd2c87 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf4577e9a cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf464bf00 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf4df38fb cxl_port_to_pci_bus drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x03233cd0 dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0cc5e6f8 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x184696d2 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x2ef1e2f7 dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x40965a2d dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x48c434e3 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5b4b7019 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5e22fdf0 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x67ff11ad dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8b7b970a dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9005c84d dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9bf3f138 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc0509505 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc28e91ae dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd68c8c77 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdf4c50f0 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdf4f2d4a dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe8b74091 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xebbb6d0c dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xeda1e5ba dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xfd6afbd3 dma_buf_unpin vmlinux +CXL EXPORT_SYMBOL_GPL 0x99cf4787 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b032a77 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b33f9e5 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9bf47c1c devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9cff1c33 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa007784c cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa5ba61ee devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa99a61d7 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb17d75ed set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb1dd15b7 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb6e5cc57 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb75ccd6c cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb91b201b clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbd16c8d7 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbfbb20dc is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbff88a3d devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc56143fc cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcaac7709 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xccfc73b7 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcef26a65 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1d621ca cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd69399ce cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd85f7205 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd877c2e5 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd8e30105 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdaeb9cd1 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb816ae5 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd91d314 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xde96a77c is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe56cfd40 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xea26013f devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xedf2df57 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf0b121f8 cxl_await_media_ready drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x08c54ab6 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0ab6c16a dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x16308bc7 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1ed51002 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x235b170d dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2e877bdd dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3920ed11 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4bd22cf2 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5107f350 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x54b8b17a dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6de2098b dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7117d422 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7dd3b3ef dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x852daa7e dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x960f3b05 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa22448c1 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xac0863d5 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb2481c98 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc35f6cad dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd4a2e37e dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xee8eae18 dma_buf_mmap 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 @@ -125,7 +125,7 @@ EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock 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 0xb1d6d33c ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x9440402c 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 @@ -165,58 +165,60 @@ 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 0x07b8d040 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x8eee4ed5 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x9b6c642b crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xb54e3ee6 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xc87e348f crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xecc9a1d3 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/sha3_generic 0x5d92c11f crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0x6d0f9d6c crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xa5cc2173 crypto_sha3_final -EXPORT_SYMBOL crypto/sm2_generic 0xa2ec6c1a sm2_compute_z_digest +EXPORT_SYMBOL crypto/nhpoly1305 0x0212c347 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x22256907 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x33dd1a96 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x6fbe8375 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xac85083b crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xcdb777c3 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x35ddc1e0 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x9dc2054f crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xa25fe570 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x87503796 sm2_compute_z_digest 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 0x0451dad5 acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x103735ba acpi_video_report_nolcd +EXPORT_SYMBOL drivers/acpi/video 0x22ace397 acpi_video_get_edid 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 0x83b6f0c7 acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xbde2ab1e acpi_video_get_levels -EXPORT_SYMBOL drivers/atm/suni 0x6a2b079a suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x8f2fdbbb bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xc2e2dc30 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0xe7704334 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x02a70561 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x144afae5 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 0x15e5b6ff paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x3a3df871 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x3e9e5229 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x0244189d paride_register EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x5ad5f6ea pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x83aeb921 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x8abdc9b5 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x93234220 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xa9e7ef16 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xacee145c pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb082c1ab pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5443a2e4 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x8acd6c08 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8b49cdaf pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8cf41dbb pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x9a37755d pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x9ce72d29 pi_read_regr EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbe87b714 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xe9fb40e5 paride_unregister -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x16fe24a8 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xdf51012f rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x92dc8d6c mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xb4aa367b pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xc2f3cb35 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc462bfd8 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xe0ddc077 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xef2edd49 pi_do_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xada75901 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xab9eafe2 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x623af653 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 0x37d201c5 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x48744247 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 @@ -224,67 +226,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 0x8ee28aaf ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x917cb45d ipmi_add_smi 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 0xc393458a ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdf2bcc2b ipmi_get_smi_info 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 0xe9a5adc6 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec3ecf1d ipmi_get_smi_info 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/ipmi/kcs_bmc 0x01ccaa46 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0cf47055 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x12e9c38e kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1915dfbb kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27e269ef kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x34ed9dc9 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x470e913a kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb6d86355 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd2258c18 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd8bd7659 kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdfe2d7c8 kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe78227ce kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xfdd0e264 kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x40a89bdf st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4948ffc8 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x93a298bb st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa9e53dc6 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0877659f xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0da3ebda xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6e7f6483 xillybus_find_inode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x11287ce2 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27b75a67 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x306d44f5 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3cd18607 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3ddf82b5 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3e4453fe kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa5010428 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xab1d6810 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xbdcbd3ec kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xcf84e47e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf10b396c kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf3339461 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xffa25386 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3baa6760 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x82eb1db2 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf1443005 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf6d1d2f1 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x82242d36 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xaec7d21f xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xcdbc6367 xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x34ffadd9 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4eae12f3 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc7f69ef4 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x39bcb23f atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x44f85ad5 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x58f4f474 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x88573b20 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8a47764a xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1d065858 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5c668bba atmel_i2c_send_receive 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 0xba653201 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 0xdfb6b759 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/caam/caam 0x023b90da caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0x0a348b52 caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x19d290ba caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x3ccfdc6f caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x97b542a9 caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam 0xb76bc744 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0x8f269e19 caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x12fabe4d caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x338d9235 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5d900788 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe188bd1d caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf71ca27b split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam 0xd19536bb caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x300fb850 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x470bc823 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6cc4fc99 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa2d91929 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb40b3f59 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 @@ -303,684 +303,684 @@ 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 0x7a5dd8d3 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x58c6ce89 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x1b5d89e2 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 0xa1954289 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 0xe2575ad8 xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05b37b10 fw_iso_buffer_init +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x1b70114a xilinx_vdma_channel_set_config EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x27add7d8 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0cd7987c fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x39ad4cde fw_card_initialize EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3bc66c05 fw_card_add EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x420d406f fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45e9a437 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5247cd82 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x649534fd fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x405c4a95 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dd5f9cf fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ddb72c7 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x50ffa020 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5236b9ed fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x52acd193 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x57ff7dbc fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x82e97f5d fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x70d59a3b fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7265f558 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d7fc889 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x920080a5 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9aa46e3d fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b7ab545 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa135219a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3fbcbb3 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xacc22a49 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xae14dae2 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x93b86412 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95c4b7bb fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a5871be fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa78d83b6 fw_iso_context_flush_completions EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xafae77c5 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2eaa001 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8d4642a fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd02ca5a9 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2a87602 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdbcabb25 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdbf11ae4 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb0536ab5 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd52de54 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1f15246 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc2ebe37a fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc30a5a1b fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1998ccf fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb6f5b88 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdd608d83 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3dc87a8 fw_iso_context_queue_flush EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe56d42ce fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe586e102 fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf47fa76f fw_core_handle_request -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x66b27756 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa4b02a93 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb149f6d9 imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x9523f318 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xe571bfb5 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x583d83de sysconfig_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0xea43cca3 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5807165 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x357f1dbe imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x39d28032 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7a6feab8 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0xa4e78b5e dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xfbb52659 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x39f6d4fc sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x007888ef drm_scdc_set_high_tmds_clock_ratio 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 0x037f4c43 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05a4e369 drm_scdc_set_scrambling 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 0x09f8a56f drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f80a392 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x102cf874 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13d6be3d drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14ef98f6 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b5cd478 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f71eb1f drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x10efda2b drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1271fa88 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13831667 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x149ae281 drm_dp_read_desc 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 0x1605feb7 drm_dp_mst_connector_late_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 0x1a10145a drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19392773 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a11d55e drm_dp_pcon_hdmi_frl_link_error_count 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 0x1b39c1ab drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21d1546e drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22c4d4da drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2040264f drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21130ba9 drm_dp_get_vc_payload_bw EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2485baee drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25788586 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24a1fb7b drm_dp_set_subconnector_property 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 0x277f849c drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x278baac2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ac59c02 drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d334568 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2df9bb6f drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e2f26b9 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e498bcf drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f704f37 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26d7e218 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2bd4fdb2 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2db3ab26 drm_dp_send_query_stream_enc_status 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 0x31eeb45f drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3411ee71 drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x35b0cc66 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3317edfa drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3598dc7c drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x366b3596 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x388326e3 drm_dp_pcon_reset_frl_config EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39579728 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a7f3c5d drm_dp_add_payload_part2 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 0x3fdf1571 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41c524c4 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42e54cf9 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44889279 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c53d107 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c8120f3 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4037f1a4 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41f2efde drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43011457 drm_dp_read_sink_count 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 0x48d29b32 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a232dd3 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e4f6a0d drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x47f4ad33 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b3c421d drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4c1991f2 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d2a355e drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4fd7340b drm_dp_cec_unset_edid 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 0x54f925be drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5642e396 drm_atomic_get_mst_payload_state 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 0x59cba5e2 drm_hdmi_avi_infoframe_colorimetry 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 0x5ab0022f drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b8ef8ba drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c9affd9 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f57d013 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ff7f05e drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c2bca98 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fcf9ed7 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fea99fc drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x620122be drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x622c0a06 drm_dp_mst_dump_topology 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 0x657c7698 drm_dp_pcon_pps_default 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 0x68af17ef drm_dp_dpcd_read_link_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds 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 0x6a606bc7 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a72a7eb drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a72f319 drm_dp_check_act_status 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 0x6ce11602 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ce48d29 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d81b18a drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6db70208 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e1f3e53 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c828c82 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6dd570ee drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ec787ea drm_dp_downstream_id 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 0x71c40e05 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71ce89c1 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71d6076c drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7181e625 drm_dp_pcon_hdmi_link_active 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 0x742ad8b3 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7534af25 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x760b07ea drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ee7906 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x747073fd drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76822fa9 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 0x770851a5 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7810a0e4 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7a460e95 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7b7a1859 drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81c87d5e drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82be0329 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86d17dab drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x877a7848 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87f8133b drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a6bdb81 drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b9d3bc1 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7738d031 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x777f7072 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79072f9a drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7b84a568 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7de5c67f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f6835d2 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84816f83 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87b72154 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x88fd5dea drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b312b9a drm_dp_cec_unregister_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 0x8d99bb2e drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8df2de35 drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ff073b9 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9275933f drm_dp_mst_put_port_malloc 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 0x95a61352 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x963eac67 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9879f55c drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a77174c drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bc379ca drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa10341b8 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92bb4b28 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9365aa9f drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9961788d drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bfeca5c drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9c118ced drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa085700d drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xacd6745e drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa473a00c drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa76b3779 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac06dc67 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaeabd5a3 drm_dp_mst_root_conn_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb025f554 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb20bc394 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7fffe2b drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbb44d33a drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc25d537 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf99da09 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0fcfde2 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb1ec55f1 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb45711bc drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7503f76 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc2ad451 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbdb285f0 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbde71a9e drm_dp_mst_update_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 0xc0934735 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1eff023 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc32eb166 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc381ab5b 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 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7d7b9c8 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8800898 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7ca6b61 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc845970e drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8902476 drm_dp_read_channel_eq_delay 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 0xcb1ebb9a drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb31afdf drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9704f0c drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb72e0a7 drm_dp_dual_mode_write 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 0xcdb2420e drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4270f6d drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcda53799 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf577711 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd01d3a8d drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd22c54a3 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd23725e0 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd49d0a77 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd57971ca drm_dp_read_downstream_info 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 0xd64988fd drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd6fc0db5 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd900b1f4 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc12777c drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdcf6e388 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3aff48c drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd600d435 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7a76778 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8344f27 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd926cc4a drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9575cc9 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda578f11 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbd92382 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc54e213 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde38de1b drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe053c449 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1ba0f31 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2ccab30 drm_dp_mst_atomic_setup_commit 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 0xe5514b8b drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7fae422 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe80268b7 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeccb0372 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xecddb178 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed01d4a4 drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeee9a5b8 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xef3b28e2 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf012253c drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4a1f8df drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf53a814b drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf59518e6 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5c83f5c drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf02f802d drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf1659c36 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf307b544 drm_dp_mst_atomic_enable_dsc 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 0xf97c191e drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfaa0b518 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf6d2aa45 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf842d64e drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb04fefc drm_dp_link_train_clock_recovery_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 0xfc24aebe drm_dp_dual_mode_get_tmds_output EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe32269f drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff5523f8 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff8f83cc drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0025515a drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00adcd56 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x027aa750 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x029c205f drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a668ae drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x038828ff drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x038d4ba1 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a3003c drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfefb2400 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x002a20dc drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x003afe97 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013957e8 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0391f85d drm_set_preferred_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ef4fd0 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f32cec drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0533550c drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05655e92 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0581d3bd drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06bfd0cf drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ed6966 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0702004f drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0758a541 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e88c49 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x042ab4a9 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04337c3d drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0436e2cd drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x045b651e drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f2ef36 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0562d506 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05714bd1 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058944ff drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f8b6d2 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d1c6b2 drm_connector_set_path_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c68f95 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ef1cbe drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07ffed4b drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x080536b4 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x087ab544 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0997e631 drm_mode_crtc_set_gamma_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0af29f7f drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6caef4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bad33e5 drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf59331 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c649cf2 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a88704f drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b060aba drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b2a6bf3 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b910d85 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c2eede6 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c89069f drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca88c57 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb43664 drm_atomic_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec155ad drm_atomic_print_new_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f941988 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0faac18f drm_mode_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10076b30 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10660b72 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10732bd8 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff58fc4 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1055843b drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10af7327 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x123e8983 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1300176c drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14237976 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1450a119 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1566cb20 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f4a496 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f87e04 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x108e3186 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109b1f9f drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1155eecc drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1179b3c2 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f15929 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127f818a drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f5ab5b drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x155b2eb4 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15cf3203 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x160ed2cf drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16342819 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16572f63 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17414662 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1760aa99 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e36cca drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18bf6659 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19835a68 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d80a3e drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f4fb01 drm_connector_has_possible_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b976025 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfca136 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d40e363 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6a3d0b drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e17ea50 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e64728f drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2099f8e5 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20ab6dce drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21519ae1 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab7bcae drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b69f893 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bff904a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c8ecb4b drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d475310 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d579a4a drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dacabc3 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcdadf2 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e323c7f drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f0d4ebe drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217805fc drm_property_blob_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a58ccd drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21eb1b52 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x227686a3 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d63c42 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e145e9 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23440f2c devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2355afc6 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23dcaa73 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e12dc6 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x246aa05b drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22505a08 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ec4e81 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x230c20e2 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23448376 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b5b2b2 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ba96cf drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c5b0d7 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f13966 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24308be2 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2455a856 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247eec7f drm_connector_attach_vrr_capable_property 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 0x24e35e8f drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x251d3b02 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2557b9a6 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25997840 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25cfabb4 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25dff980 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25fa9597 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x260e804a drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26784b2f drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a48f03 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d66aa2 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26dd59b8 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a9626a drm_compat_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x278fe632 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27946ce5 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2795f44a drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f015ff drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f1382f drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f3e157 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x277378c7 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2825311f drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28751783 drm_connector_list_iter_end EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c3a4af __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f003c4 drm_syncobj_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a663529 drm_mode_config_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa28800 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ab2eb67 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae9d1fa drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c977f1b drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2aaca7 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d34e6cb drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d754b3d drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1dc7f9 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c275112 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da03e1f devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dc0b439 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1ab38d drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e89dc61 drm_gem_handle_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f22e16f drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3785ac drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f38e15e drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f7ffe96 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3030b77f drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e73f30 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd4f0f6 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31180312 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31717e4b drm_atomic_state_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3285ad69 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32082863 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3212a5c5 drm_connector_set_panel_orientation_with_quirk EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3301e79d drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33158c4e drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333cca67 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34559eb6 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d79bb5 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x355c0058 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c12222 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38229515 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3381a8b7 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34b9e873 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34bd0993 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3546647d drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3631f241 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36325a4c drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37366d00 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3748ce00 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37f41354 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x384fc165 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38567432 devm_aperture_acquire_from_firmware EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3889a367 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x392ee3f9 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392565d3 drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39890e81 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c4cb46 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39ca6ee0 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39d08301 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aae7322 drm_mode_config_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad452a5 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b05602d drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ad56f54 drm_modeset_unlock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be50d06 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3beedafc drm_crtc_check_viewport EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c25f5de devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c31784b drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c81eae4 drm_property_replace_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf7dcdf drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1c3d38 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d925dde drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e03e577 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea06e0b drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x413b1b89 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41abc67d drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41de6df8 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x420be30f drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42267cfc drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42a59f2f drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43de8f65 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x406649b7 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e265f8 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40efdfda drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4135561b drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41725537 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4204928c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42391552 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d6c172 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437db986 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44688ff9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440d3b3b drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4462b311 drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a1f6f5 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d1703c drm_edid_read_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c3eb50 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x469842ae drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a56eaf drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c2d240 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475b4523 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48031afb drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4822b62f drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45feb449 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x460e82a4 drm_gem_handle_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48775c65 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4912898b drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49178187 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a31efe drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f107a5 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49fe5c34 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49041033 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4972b31b drm_object_property_get_default_value EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2429a4 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aea8385 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aebe278 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1be37f __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ba967b9 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c169535 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d460a23 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0c36a7 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bbbc84f drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c707fc9 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d557eb2 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73e29f drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8f6e1d drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e64fdba drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f64554c drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x503d45c4 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x504822af drm_mode_create_dvi_i_properties 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 0x51387949 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51728ec6 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f6233e drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f85de6 drm_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53190132 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x539b2a26 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53adc332 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b30eb6 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e35249 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5538d4f8 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x528578f0 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c11953 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5486a4c1 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5543ca75 drm_atomic_set_mode_prop_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c0371f drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56476f4f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5734e93b drm_mode_put_tile_group 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 0x5875cae3 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x588b5389 drmm_mutex_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58dc8357 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d86bd4 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5839d0b0 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x583fb031 drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a29761f of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bee48ee drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d40f51c drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df0a1c7 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590bc99e drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3ec447 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab21657 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b7673af drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c426f2a drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c427966 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d30b40e drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e01ac1d drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e531cdd drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f3cb586 drm_gem_objects_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9457c3 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb4b072 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b5a90c drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60faf44a drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x614729eb drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a58da8 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62304a72 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6315d8be drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x633cc7d0 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63893a18 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ed6e85 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61239af6 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x620370bc drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x625925db drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x625b4aab drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634fb5e8 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6486a266 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ad449f drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ba4419 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64eef10e drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6531d10f drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65598d22 drm_property_replace_global_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a1fbcf drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ccd738 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x662670bd drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66892f20 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x674360a9 drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67984e91 drm_privacy_screen_set_sw_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c3632e drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68429831 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6871541e drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68cf81b4 drm_gem_lru_remove 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 0x6993db61 drm_atomic_add_encoder_bridges EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f43584 drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3f051d drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a00a0c6 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8c4504 drm_privacy_screen_call_notifier_chain EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c02a2f1 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce578d4 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d4cfce3 drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da46bda drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e201c11 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6128a8 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8ff323 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9dea9a drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x702e1c4d drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f44d7b drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72790749 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b85d9db drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be6991a drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c4c7e21 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca0f73e drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd9dfa9 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f2f43b2 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f474247 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f2dc1a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ff09c8 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d72001 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x730bb3ec drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7543f0bb drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7555fa13 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75733473 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76f60204 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77860fde __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7884a4f1 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78960dd1 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78feda55 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7533540c drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75616abd drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76921779 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76aaeb0b drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b47b3b drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d5a44f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77fc2607 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780a8d86 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x782dc31d drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x787d2e87 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x789c7474 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796713a5 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x798ceb6b drm_connector_list_iter_next EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a77c9d0 drm_connector_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bbc9d14 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1a53e1 drm_edid_read EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c688515 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c70f311 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0f3d70 __drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7c1ded drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dac5011 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdba5c3 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d762a03 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dcc7911 drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6aae08 drm_edid_override_connector_update EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eeb366c drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fdd67a6 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80654e7f drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x809049cf drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e9aa19 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d74b2b drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x814cdd5a drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81927de8 drm_framebuffer_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e6c17b drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f06a65 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853884f1 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x854151e5 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x859bf3d7 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85e5f66a drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871d2f50 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87752dc0 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87fee519 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x880ca1bc drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8889789d drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fa4009 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x893afff9 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89825fe1 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8990a2d5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89cf8b3a drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a87a0ce drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2e5535 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8496bbca drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x863a23f1 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865e3bab drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86cf9f1a drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86fd6936 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a48aff drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87fbde38 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88094035 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88d770cb drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88e95de3 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89004c6c drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x896d32ee __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x898ecf3c drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89979d0f drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89dd957c drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8abc5939 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8acf09ab drm_warn_on_modeset_not_all_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d93f9cb drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1fb323 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8a3e93 __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fb010bf drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fe8f2de drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x909b01c4 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90bf3892 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92130e44 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9226edcd drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a813bd drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d944af drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9712b74b drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e01344e drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fdd7663 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9001db88 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x907b1ed9 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90893478 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93d50d4d drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947eeb00 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x955d38d8 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b676c9 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98203392 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98216062 drm_event_cancel_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98310df8 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98abdd7e drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f47365 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a676872 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a865c97 drm_gem_vmap_unlocked 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 0x9c574e25 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6f78b7 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c195277 drm_privacy_screen_set_sw_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1eb31d drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d4c9a4b drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8760be drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7cc049 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9d50f9 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dccdbbc drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2b3b25 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f3a08dc drm_object_property_get_value EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc9e9c4 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ad17d0 drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f48dbe drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13ef79c drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13f1354 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1827855 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0915fed drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1073311 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1115fc6 drm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b57229 drm_release_noglobal EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa392d55a drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3bee8b9 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa427fcce drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5baa4e5 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e24400 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5eec2b4 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a307b7 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c2f093 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8161193 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa818c537 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa924caa0 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa92767c5 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa49ab920 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d62754 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa58b93a4 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa59f2f6c drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa65059ba drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67b7f1e drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6cc6e86 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7976164 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82c540e drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ae4747 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b634f8 drm_atomic_get_crtc_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9aa5646 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa85673d drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacfa3bc9 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa0d94bf drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa92c132 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab31a6c1 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab4ba6a9 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabfb4649 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad420155 drm_mode_create_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc82640 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadca01ea drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf78bd7 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad833f88 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadddcd65 drm_panel_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae61a713 drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f43a63 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedc046f __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee4b62c drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf24c96a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf86a01b drm_atomic_get_old_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb14100ed drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18fd816 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b8bf50 drm_mode_object_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb266710c drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e9dbd7 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3216df8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a7a010 drm_gem_lru_scan EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f312ac drm_connector_update_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e60388 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59ee3f4 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb600eb4a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a8a571 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ec9a42 drm_atomic_get_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e128f3 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72ac2f6 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb751afbd drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7fb1a2e drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb88ab5f6 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69364d0 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79662d5 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7f6d1fe drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb867e4b2 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90225c5 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9669906 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96addb6 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c8f664 __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba168f78 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbebef90 drm_hdmi_avi_infoframe_from_display_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf87e1f8 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfada047 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfade974 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04ec11a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc150e18c drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19b7684 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19e8e19 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc302cf62 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31cdd67 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc324ecb5 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d9f271 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f552f3 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc465d155 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc46d4d0e drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b1d2de __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f1152d drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc538a2d2 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6600b32 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc751f1ab drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75f5ac4 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb8e2d4 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfb176c drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0fba71 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe98c9cc drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1394066 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c06618 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f499d6 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31b65b1 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc54f2e67 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b75b6c drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e8b3f2 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ec0dc4 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6533604 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc742ad85 drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b97d78 drm_gem_lock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8574f6b drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc86c1ff3 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a8f67c drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d2a1aa drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91c1806 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b65216 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa48cc1 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb0806b1 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc611990 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce82793 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3b46cb drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7e43f63 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc808379d drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8aa2df9 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc989c78b drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc997ceee drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6241a2 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb8be548 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb2a0fb drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbea2b78 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbf38564 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca0ac5a drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd272354 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce569ff5 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce57d474 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9eb54a drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcee9fd98 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf658af5 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf840547 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd030875c drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e8b9e0 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13af540 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf37cc9b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9140e3 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbe6706 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdaecd5 drm_gem_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14639b3 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd19c09af drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd19f208e drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21b234c drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a79772 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d83b02 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd572de85 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ce3147 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fae3a4 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd294ce09 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c93768 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3206a16 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3922850 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44dace9 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ad72e1 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5dec18d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5fc8557 drm_crtc_vblank_restore EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6994350 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70f7327 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd700edb4 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd704b6a7 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd746da10 drm_get_format_info EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd861cf37 drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab6b427 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c21ded drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd81b3b83 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86e3e4a drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97ce75c drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c8555b drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda518617 drm_gem_prime_export EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5d2834 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8ae9cb __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1ea09d drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2f4363 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec4a774 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb17ee63 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcce8082 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd048df drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde83aeeb drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeeaafcc drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeec8b21 drm_hdmi_vendor_infoframe_from_display_mode 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 0xe056b1ea drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14817c9 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe202c9d9 drm_privacy_screen_register_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe242a922 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a9e110 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06cb287 drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe335027b drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e03993 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e55668 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fbba9a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fca0dc drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a354c3 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59025c9 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe39445cb drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe42b8ff6 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47c2e97 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f14820 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5296ee7 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe611ab68 drm_bridge_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe694a7b2 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7db0be5 drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f1a3f8 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c3f175 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe724077f drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7caf57c drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe811f459 drm_gem_dmabuf_vmap 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 0xe99aa1cf drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c0db4b drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe92ea7df drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9fc0521 drm_writeback_queue_job EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5fcc93 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec825f37 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec85c9c3 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2a1607 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed35910d drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1e3fd3 drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef7652c3 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef913009 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb2beca drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeadf5613 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec97fe2c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7756a2 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed90c5a0 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc9a96f drmm_mutex_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init 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 0xf391d1d3 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1c1c433 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2410844 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf268cb3c drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b8a823 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2f1f246 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2fb7b81 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3be0d4b drm_connector_set_vrr_capable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44d90a3 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49491f1 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4e208c9 drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6147583 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65eed4d drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e2e4ec drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ef9d02 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf411f31e drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58a6392 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f920ca drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65c6a2f drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70e1566 drm_property_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8dbe5d2 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c8b634 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa9d6e0b drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfae2d5b5 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4a4d04 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb604f56 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfebc8c drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe105424 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe47a6af drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe73d773 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8268fcf drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf904716a drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93bf7bc drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9876e2c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f03f69 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0c6a90 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd798434 drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffaffd52 drm_client_modeset_commit 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 @@ -990,434 +990,434 @@ 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 0x5b21545c drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xf38202bb drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f9fa56 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02191b07 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038bbc3c drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07e9aa6f drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091bb7fd __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b13da74 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ddad017 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ddce022 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f0c3059 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ffce182 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1057dd45 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x317b2c1e drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xafa20cea drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c06e5b drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01ebcac3 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02fa95c3 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0371b59f __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04812013 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x089cfbfd drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08f0b383 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aee3c2b drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cc1394f drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1eda59 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1054274e drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108b3e3a drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11ee1153 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x125b0b13 drm_simple_display_pipe_attach_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134d22f4 drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x150c8f5f drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1594d562 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15aef7ef drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c39430 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a591e15 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a876337 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b82a928 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c21c83c __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1de61438 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e903008 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea3a9fa drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207fbcea drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x215a3d5f drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12b262ef drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14475dbd drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15da6ba3 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x165520b6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16f16a30 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17477d6b drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x195f76cf drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b65515f drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c125b5a drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d1ee6bf drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd98450 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f24c31f drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20ab049f __drm_atomic_helper_plane_state_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23176bdd drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24be65ef drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2830e25d drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x292020aa drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2926dba2 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2961ce8e drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299d6943 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c1ad3f3 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cebb9f1 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x223c6b12 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22892df0 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x229343a2 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25769de9 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2605ec3e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285c9c6b drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2abf3260 drm_atomic_helper_page_flip_target EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d7adb3f drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30461b51 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x353d1777 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3843e137 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x384546dc drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x386a65ef drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3adfd884 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b1ac34e drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e232fdf drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f54d7ea drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4112d7fb drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4254d3cd drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42d073bf drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b24141 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45731e1f drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46aac6e1 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ea901cb drm_fb_helper_cfb_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7637cd drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53dd0efa drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e4bc54f drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x318a46d7 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x328cf801 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x343f71e6 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39430b71 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3af50a0e drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b8f6dbf drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bd1aef4 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf81d95 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e9ece80 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4229ef42 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42de9e3e __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43472863 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x495cbd81 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49f81daf drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a006df1 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c5ac773 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c70446c drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb47eea drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x515ce1b3 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52e412f8 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53159f5d drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5317432a __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5352715c drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54946a2a drm_gem_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x578604d0 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x579b1a1b drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58a4ad0e __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5948a873 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1ab3da drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d705ac drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5630cc7b drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574ebeca drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5930bd51 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59b1562a drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a32bc0f drm_i2c_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aac1c86 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b02449 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c5544f drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65035a8f drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x669b3ed9 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682fddb4 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684a7136 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x690c7982 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a3ee82a drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2b832e drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ce59cd8 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d79355f drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6f686d __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5edf7842 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f6068b6 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60821de3 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x630a6666 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632fd690 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ce234a drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64f9428d __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x652ca943 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ba6362 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c3ab79 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684acc6a devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x698921fa drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b409054 drm_fb_helper_blank EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d933e86 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ca0b526 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dc0cd57 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6df09e94 drm_self_refresh_helper_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec54171 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71875569 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x722babcd drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7240f8ee __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x747c93b3 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775ae646 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7befbd30 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c4a5ce4 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cfa111d drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e72a5e9 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80669eaf drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fb7eb3 drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x830dee63 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83b35eb4 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e312bdc drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f1ac3ae drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f9667d6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70e98595 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x727a672f drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7402baf3 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75b2ac0f drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76aa4c8a drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79b9f480 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ac48b50 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd52a8a drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cfe456f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cffde0d __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80556145 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x815569ce __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82ff77d1 drm_atomic_helper_dirtyfb EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x849420c4 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85383ffc drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8599064b devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8697b27d drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ee243a drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8692ce13 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86b4e180 drm_gem_fb_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8744bc45 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8989004b drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bd0eac9 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cede08e drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e799d4 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8769f471 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a2a59b4 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b93d31a drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e55fc99 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff10176 drm_atomic_helper_crtc_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ec231d drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95b98e24 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9866d777 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98e0cd38 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99456bdd drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96cfc5b7 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ecb040 drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bfc3919 drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4daaf1 drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4f7aee drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cb0204d drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cfb79d3 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d493cad drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e2b4eb4 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ee1aee1 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f2afba6 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27e3bd4 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7106397 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77fc45b drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab525e49 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabeaab54 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad152094 drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadf6aaf3 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec1d303 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf0dedca drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaff8e939 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a10d0c0 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c5cd7d6 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e7531bf drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c71eab drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa10fa958 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47378fa drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47e9ce8 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4d14d71 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5258fa4 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa902c7f4 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa514cad drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab5542c4 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad441fb2 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadfe25a1 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb00ca26e drm_panel_bridge_set_orientation EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb066955f __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0e14fb4 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb191e20c __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1d280da drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e35240 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27c8822 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2cdf986 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb34ebc80 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3e94a93 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb46cd0ef __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4e5ea67 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5b8b46f drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5f145f1 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb070cdb2 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb17d5f59 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3761ba2 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f1223c drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb54d61a9 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5eb37d6 drm_fb_helper_cfb_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6b7b1f5 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6fb41e6 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0ac016 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc027e511 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc05f9c81 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc304db07 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3f34eac drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb81df2a9 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8859234 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9a55abd drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb803ed6 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc0fcc39 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdb8eb13 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4b82c2 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfae8fd7 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfc6eb2f __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1075c68 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17b8d2d drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3eded02 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40dfdc1 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc63057c2 drm_connector_helper_get_modes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79e008b drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc861ddf7 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8dfbdb5 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc986681a __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9ef877e __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabaf229 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6e2e4c1 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7162f57 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc871eadc __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9b5ce8b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9ddf30c drm_crtc_helper_set_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb3fcec2 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbe088e5 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbb81769 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc052235 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc17a9a7 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce300829 __drm_atomic_helper_crtc_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0132e7d drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd06530ea drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2dbd8aa drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2eff33b drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3563195 drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd498a9c7 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5ddec85 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6a46ddf drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7a184a2 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7e6a341 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd94e0c68 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda14f7f5 drm_fb_helper_cfb_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc2e480a drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc524ee9 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf49a7b2 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfddc988 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c15ab6 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1f5a5f5 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2217200 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3ad6f2b drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe446c84c drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe588cefd devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe871ac88 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98b71b6 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaca632b drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeafc46af drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecde90e6 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4f0354 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeddfe1e6 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee13199c drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef2c06f2 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf06c84cd drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0b7974b drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf18b9737 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d64abb drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f310d0 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2634f3c drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf327c838 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b0dc12 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3c4a0c1 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4082768 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf425d317 drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf448f4c4 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf48a1c3f drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d581dc drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4df0650 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf59c4bc9 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e425ee drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bc3f61 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9838b43 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfadc5040 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb5d3e49 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc80c3fd drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca8c8d2 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x009e6d0b mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x010bfe64 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1fc409d0 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x43788b16 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6405296b mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x64d763a0 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a39441b mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b265244 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x72713c7c mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78c3ad95 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f403f98 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fa487e8 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8cb70b55 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x975243c8 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x980af06a mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaa28ebac mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb053fc4a mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb64165a mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x091aea2a drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x159ea99a drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3af69cbf drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7c6e2e2e drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb099afde drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc266828a drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcc72b584 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xce603e70 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd5a7a612 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf27cba51 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1d48844b drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4a3ef99c drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa7df3142 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb8a64adb drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb930df05 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2b1ff3f1 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2ddafe8a drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x372e8763 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4c1c8491 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x521d7ae7 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x547464c5 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73b7be46 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x76a01668 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x85068e39 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x941ec415 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8d440c4 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbaed3c02 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc20e3696 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd14eb0d4 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd3c948ba drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdece3315 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xbb6b3d0c rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06c9ae5f drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08c25042 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e62bb0b drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ec4248e drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x17daf198 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x234be4cc drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d357370 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30a70d4d drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x347821b4 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43e7d42b drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4992a6b2 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a8d49ce drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aa5307b drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7de3cdc0 drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x849b6cb6 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d2e354e drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96502189 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9844ac21 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa31cb2a7 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb4488fa5 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe128f159 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe6685a35 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec2e954e drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4d8c35d drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x083c21f5 sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x1ee7cdca sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x27420b3d sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2d43d9ad sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd07152c8 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0e617a8 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d3df1f drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6fcbc9d drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73571b2 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7f55a43 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8c0b421 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9ad4d18 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbde4f89 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc8030ee drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc972f34 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcc6bfda drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd17dce7 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddbf56a8 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8b4d73 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe067a315 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe29e95b3 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2c23f87 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe515aefe drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59cac7a drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe86a46e0 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe971155a drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec84a0e4 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedd0c8ea drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee4d8b9f drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf08ad653 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf18b1f72 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf233a5a8 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf326cac3 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d16153 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf47696ea drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bb6178 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7e8c0a7 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf823452c drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf926455a drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa4c1a06 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd14d97f drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdef2089 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe40c992 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9901fa drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeaf14f3 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffdb7c30 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x011a27ec mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x17e0fd33 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1f731e4a mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2195ae56 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x22ddc927 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x28aef580 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2abfbd31 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2bc80dfe mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x38faf1f1 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5f5762f3 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x680d0f3a mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x70505d8c mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x98482ea6 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa5e0db9f mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xab5e3381 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xac8804ee mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb66f6c99 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe9a7f63a mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x010cd5c6 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x01f0855a drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0bcf5233 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2a2a1338 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3e22e5d8 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x46ebed55 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6d5d9839 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xaa9f470e drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb583462e drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf9351aeb drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x38f725d7 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb07f2100 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb591e3af drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf282484b drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xff52dd01 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x086c2941 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0903e51a drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3404145c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3f27f6b0 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5132484c drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x615311fe drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6c00d023 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x82615cf1 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8a76172d drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x93895a2e drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x94840fac drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb11215a2 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbe0a8c8e drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca9b3154 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdfae01b0 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xeed34b7c drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x592d26c5 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x05756dbf drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ccb3c90 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12fc40b9 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x20d818fb drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x260385db drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2f0d15ac drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36feaef9 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4681205c drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b455ce9 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x68e28688 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6cadb7a1 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72794d2d drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x73fde68a drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8b975504 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9d770025 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa2705334 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa793111c drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf04a420 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb90490fa drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd92fb1b drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc06eef65 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc5faa179 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca7b870c drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdee696fc drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x59488016 sun4i_lvds_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8de7f2d3 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe5e6419d sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x1ff65cd5 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x9179771d sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa3065047 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa40e1a7c sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb70c1e66 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xc31e4316 sun4i_dclk_free EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x67a13229 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02a8a744 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x82e62590 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x9d6fa043 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x003aae9d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02f6fb19 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a3336b7 ttm_device_swapout EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16aa7c4f ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a453d86 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13ce7809 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1425695c ttm_resource_free EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ddfaa77 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21b6774e ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x280a3885 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aee3c01 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f377b0b ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30ae29fe ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38270dab ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38b86d84 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3980b3d6 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ef406e2 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x478b8a4b ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x566e49c2 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58616d49 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a1880f2 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c3ac744 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x635a18ca ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6435934f ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b5a0b0a ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c1cafe2 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70ca1231 ttm_resource_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x759aba8e ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79b24a9a ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83db1ba0 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84d7f509 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8887f6f9 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89715d7c ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9101a7c6 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91026a93 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96017c87 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa30f7f67 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3cbefd6 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa45ac2fe ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5594fbc ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa85b9350 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad9aafab ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2057abe ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7a0e8fa ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba43c1ee ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaebb84d ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbc8c3c5 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcfa538e ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2934887 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc911133d ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb3992b1 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdad7dcd ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd24dceea ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3447f47 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57d2815 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd915edc5 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdce9421a ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd8eb814 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe934da1a ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xecb57f84 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef4156bc ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf48b3b2f ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6f0f92d ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8d15285 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0a80804f host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0a92d10f __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0b2b6d29 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f54846a host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x11961534 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x395e4c96 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x41f9a2de host1x_channel_stop -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43a8fd99 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x45cbf9e6 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x49262c48 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c4f2404 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22488d8b ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28a6df21 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29b25071 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a61063c ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f65c4f0 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fc31bfb ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31816de9 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37cc4525 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c133db6 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3de42125 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x400f42e6 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x444d73f2 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a1fcc84 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b498a3f ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4eb7511f ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51ce8269 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5670e5e0 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x588a2377 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x677feb88 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x684f8258 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6996edda ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c7cf653 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e289b4c ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x704dc3c1 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72515090 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7761a6be ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77d3a8be ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x790bc206 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x825db92b ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85913dbe ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f0f3f48 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a3ac644 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c608ad0 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d4e9593 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6882f84 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf5ce9cb ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaff58e4f ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1110960 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb739f5b1 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7f8fa80 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0c8c551 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2c2b4ca ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3ffd96e ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5875f80 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca0d0ff9 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdde062b ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfc320fe ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5196cc0 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd975378 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe079828a ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe857b2a2 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3aaf59c ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8951fce ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd1c23a1 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x04530649 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x06f7b35a host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0d2961ae host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f882e6a host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x121fe687 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x13452026 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1e61d1b7 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1f79cc3d host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x250045a1 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27338e6d tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2b32ae96 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2b44a3f4 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x323489ac host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40f0c49d host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x41131f9b host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x453f944b host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x462c9191 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4a737de8 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bdb0eec host1x_client_resume EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x50530957 host1x_syncpt_incr_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53e8561a host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c0cc867 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6030d98f host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x673a8e21 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6d0ef4dd host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x631ad9d7 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x67a14d8f host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6da4d642 host1x_syncpt_alloc EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x763f0e68 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x792d03c2 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x794f1df1 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7a8ff9f2 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7d0fa968 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x85d294b2 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x76dfa2e6 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fca2ee8 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x84b0cbc9 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x911d63a6 host1x_channel_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x998af3e5 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9d8d3cfc host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e946d73 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9f64599e host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa4f1ccb3 host1x_channel_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xadca2fce host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2f82e09 host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb3d3f57f host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb586182e host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbafa6660 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xac4c37ea host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb59abde0 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb7f163ec host1x_driver_unregister EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbd06f4ec host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbe394dab host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4d9a3c2 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xceaab8f0 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd10681d3 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd79e378b host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdfad6a36 host1x_bo_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13a595d host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13c282f host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xea5f4718 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc24f5d26 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4e83047 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd03a33c host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd17d858 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd8fab0c host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd4359c4f host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xda5e49f4 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6b4f1ea host1x_syncpt_read EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfad6cdea host1x_bo_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb286ad5 host1x_client_resume -EXPORT_SYMBOL drivers/hid/hid 0x578c7e8b hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x2cfe7155 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xacfd3a8e vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb284cd8f vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/adt7x10 0x6003bd9f adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8eb152f host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/hid/hid 0x2218366d hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xad0e7981 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe99f6831 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xee2f6bc1 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x48141f84 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 0x2ea71122 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x8a84c55f 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 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb296c153 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa09a7c39 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb808cb83 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd3a08fcf i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x30ea4687 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc800759b i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8b093d0a amd756_smbus +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe700c7eb sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2005b1a2 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x37d2b22e i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd602aac3 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x06e9d390 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd34fff88 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xd08b6080 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 @@ -1427,1140 +1427,1140 @@ 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 0x8f6c5c08 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe1b25fca iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1892e71f iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x69d36738 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xcc6ca1f5 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x0cc6e44d __iio_device_register +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x435bc002 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5475821d iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x896afd46 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xed7be572 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x08f64749 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x02986d09 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x1b50b08f iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x257b3f41 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x2cd9aa22 __iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x36155dc2 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x496e3d68 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x4dbfccf0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x51da361d __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5831b718 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x5870ceff iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5991b550 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x63b83eb8 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x6ab045fa iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x73a5db55 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x7e3c6576 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x91c79d7a iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x93c3e951 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xbcd3042e iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xc39709f4 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xc6b8b9de iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xc6f040a1 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xce7f687f iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xd8669500 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5526282a __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x56c54328 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x6896f0c4 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x68c99169 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x908ddadf iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x94c037ac iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x9bd0d702 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xa2839f3c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa4ff275e iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xaa117f05 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb141b8a9 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xb664c01d iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xbfa06fec iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc7be1bb3 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xd761670f iio_trigger_using_own EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe9ffdacc iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xef395bbc iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x65efce2a iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x07308897 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x35144c79 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x46c12d8a iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x97e57b4d iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31ae8ce1 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x624c2c07 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2006bd9 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2e6be41 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4d7656d3 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xabff5234 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xebfbe8de bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x000ad5cd ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x060c28f8 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x255e48ac ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a0390e4 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x396403f1 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x501fa129 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x54e4e187 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x605b1f54 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60791076 ib_destroy_cm_id +EXPORT_SYMBOL drivers/iio/industrialio 0xf02311c9 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xf3ad3f71 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xfd7f59aa iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xcd5bec1e iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x124b423c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x818dd5f5 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8c59f33f iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbc8e71cf iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x131bbacc iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x42e4c3d1 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa1e06586 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xbca19bbb iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x90c00ce0 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x947635ec iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x42f938cf bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08ce6b19 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0c520332 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2923a852 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5688150c ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x572b6120 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f1f2efd ib_cm_notify EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72989349 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77ac5129 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bfd9e1c ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9240424e ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c9268aa ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3e45b7c ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00827067 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7cfac852 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7dd77e9f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fd6786c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x915ea0cf ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x92a532b8 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa605bc4e ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6cb2ae5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb61a331 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf15eb357 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x001b6ef8 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00757b6c ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00a462ca rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00ad9e81 ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x010e22ae ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x014c779a ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07be42ae ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09ed5854 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a833314 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c6e1c62 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01a7dd9e ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02221af1 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02be6a8c rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04d9efc3 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e6ccf0 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07b97e3d ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x082fe848 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d21258 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d629a9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ab38622 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b7509e7 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c3ff196 ib_dealloc_pd_user 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 0x0ef57862 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f8a4dc3 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1085fcde ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113e870f ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1414eca3 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15caaac8 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x174087fd rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x185c8d61 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d624791 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db98a84 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x108fe301 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14823952 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x160d49f1 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16d62208 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1732ae81 rdma_read_gid_hw_context EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c07986e rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eb3aba4 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f070ece ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f924d40 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2092bedf ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b9a7a8 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1b29f9 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dfe4fe8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eb4c3e3 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ec62f74 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3da4f1 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fd13900 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x211fb078 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21d03db5 ib_create_ah_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x243832b9 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25650342 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25e1bfda rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273042ba ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28110dff ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb5ef1f rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d77e4f6 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8569d4 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e1a15e0 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304572b2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24ae05d3 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27aa3dba ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27be380b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x287dce31 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2897df3c rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x299d1a13 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8dc1a1 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e82d6ca ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ee0e1bd rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4dde4f ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fde0360 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3053fa61 rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30d12699 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34400e41 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x358ecb39 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35b1a6bb __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3650835e ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x387105b7 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bbde122 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cf66044 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d128ac9 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d49d054 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc71af4 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x321250c4 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331f2569 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34223712 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x388152f7 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x392d7f93 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a389e20 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b2220e9 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bbb2380 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d37cb4e ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d7ebff7 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8aa26a ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc1ac84 rdma_put_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4014d44f ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4142a92a ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x416832c8 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4013e5bb ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42753c87 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42a977a6 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434424ab __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x438a18f0 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434ffd63 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43556b0c rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44598102 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dc784d6 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471512c8 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d145e0 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a53903f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b402dd1 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cea093c rdma_rw_mr_factor 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 0x4ecc85a4 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ed4003d ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d06ece rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x551ea567 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5533b550 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f201ca5 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7faac2 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50cf0bb8 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5135bd9d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51e63a65 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x530aa72d ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x538d2888 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f6263f ib_query_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x565ee74d rdma_rw_ctx_signature_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5869697d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5795a6d3 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58313895 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x592d32dc ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x595048c6 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ac40134 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b3efba4 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5db2428b rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0e521d rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f970c36 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb9b3a3 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x590fb5aa ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5916546a __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59198b0f rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a807ac5 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b810709 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b9073cd ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be4dec1 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c9c7897 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ca41e7f ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d48bc12 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d5ef86e ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d83c5de ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fcc9b56 rdma_restrack_get_byid 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 0x62c47d2e ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6350a04c rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63813faf ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6404c9d3 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x658c7778 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677e4657 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6970013b ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6975ea57 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b59c8c7 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63a5db2d ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x682cc708 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69672b5f ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b1bd1c3 ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d5ac602 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e3d9c97 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e51809d rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c9495d7 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ca06503 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f1961c4 ib_unregister_event_handler 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 0x72b85b20 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72f82972 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72fcea68 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72788572 rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x750310e8 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7565c264 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7455858b rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7503b07a ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x756e9e6c rdma_user_mmap_entry_get_pgoff EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75d8c82d rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x766a6080 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76b4b7e0 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7776d963 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77788ae1 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ba646c ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d9d8ed ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a802a0 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a9f3a45 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c6ff2cd ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de75b5c rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7edc4d31 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fd165a3 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80148479 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80253c80 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82b71c33 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84447d3d ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x848dc5e5 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x852d4f0d ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88cd961f ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa29124 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b1452b8 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d986317 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fd08e2e ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7be38457 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e1002f5 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e22126e rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8107c26e ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ef0d26 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8393cbc4 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83cf8bc9 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8452a37e ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89a7ead5 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89cec480 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a0f9dad ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b6f408d ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c777de4 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e76a2e1 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ebb009c ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f4b884c ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ff65be0 ib_query_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9107bc85 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9230f7bf __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f3ddc2 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93883515 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94dbe0ef rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95219ac7 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95994bb3 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x980bdb43 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989f9f20 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9957e48c ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99a0cbbe ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e188811 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ef85153 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa09d7257 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1958840 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1ad8e3b rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2d156b8 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9475f2c6 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95dddb4b rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9915fdd6 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9979b9d6 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x997dc3f2 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99caa9dd ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1982ec ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b6b71d8 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ca17608 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eda6537 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fe9d3d6 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa008083c ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa16a5ce8 roce_gid_type_mask_support EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa45fbf7c ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69438b2 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6c8b0ae ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa78ec40e rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0657a3 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e8093a ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6225721 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c372ff ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaf14ad2 ib_mr_pool_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaebb261d rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1cef105 rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d9daf3 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb56bbf95 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e0496e rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6714798 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6b8915c ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f65ab8 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb77a0c24 ib_free_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82b9a88 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8bf5de4 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba5c42fe ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc2f62a7 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc02951a0 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc06f26c4 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc11e1a79 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc125a197 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc249ca19 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ef62f6 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d6afa6 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc83ad479 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc842e3b5 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb79f48e7 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd053e84 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbda6d31d rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdadc102 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf2d917d rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc18d1331 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc18f7bc3 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b4d5fb rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2fbf45d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36bca63 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc39bab04 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc532efd5 rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca92b328 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc03ee57 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcca67135 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdb0f5e8 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce62db7f ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7a3140 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd03cc791 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb584731 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb60b10c ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccba04b9 rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd08cd438 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0cded50 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd117e041 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0b52a19 ib_open_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2837827 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2a66a33 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b99ed5 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd32ff781 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5fc9957 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd61776a9 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd29e09db ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd349af05 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd404e456 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd541ce06 rdma_query_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7aced89 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91064fc rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9635965 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd706bde3 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd79d4bca ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde2f6a33 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf4d491f ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfdd1705 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe127878f rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe17c8a84 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2a0a638 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd5f57bd rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1a1fad8 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3c451f5 rdma_rw_ctx_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5883458 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5acaf66 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe69821da ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe897490e rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a4dffc ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8bf3648 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c073b1 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9097d69 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a59b60 rdma_nl_unicast_wait EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef64875f ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef85fe69 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0cc2956 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2e8a200 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf336fe6d rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a2390d ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf52a6d12 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf562fe35 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecbab9b5 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef510a78 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0145671 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0749b0b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf09b6038 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf13200aa ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf263a5f9 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2f0502c ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3268702 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3d0fe2f ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4f0ca2e ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf58638d7 ib_drain_sq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf659a5c4 ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6f1f5fa rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74c12ec rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8ae10fc _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf94dd151 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff9b04b6 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06951d5b ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07005830 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15fe0215 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1734b3ad ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x176879a6 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1bd7596c ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c8bfa70 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23a928df _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2567116e uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26ffc9b9 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf79133d2 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9ffa165 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac13b93 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb3a22dd ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff7ca2ee rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00a5c42c ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0529d56a ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ebc49e3 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18650832 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 0x384e9f78 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x458d20a3 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e8e8903 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6345b94c ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68792252 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7093cf24 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7119dac6 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x716e8205 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x726a25dc flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72e603c3 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37c3a7ed ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3fd79ed6 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40f0ca41 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x429ed81a uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4341ce5f uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4767fc47 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f177ded _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7382f9c2 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x74bf040c ib_umem_dmabuf_unmap_pages EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86fab0a2 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f7acb50 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90c35eca ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x913a18ba uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96e3ce1d uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9909d72d flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa025f7a9 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a886bf0 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8125eea5 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x825a3bde uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8323564b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x89575f91 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8da05985 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92bdb1a9 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95cb51a7 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ae23880 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6ac8cd4 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb44093db uverbs_get_flags32 EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe69e2de ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc82cd8d3 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce68c64e ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcfab346a ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde14e592 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9bb5b5f ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1b9d3c8 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf29a8274 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf685c4d8 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6ade635 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x188e783e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1b5ac7f8 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2cbf6a4e iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ef233f9 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc0b7995f iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9d1b093 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd75cf076 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf0df618 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd54ae7e ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd697c7bd ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7523306 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd85e9de9 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd99843dd ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdfcbe4d7 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0891481 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4e03dc9 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe69863ac ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6614f05 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf96dad22 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa48bfe2 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x00f60d80 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d9cde2a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x277db2d3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4c128511 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5517043c iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6526db31 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xda579d30 iw_cm_connect EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfcffdba3 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11ea0cbc __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18ca3f24 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a2e55da rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24973f14 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e837891 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33bc9e7d rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bd4906a rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45fd5853 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bb8499d rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d4df9b0 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f0726a5 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59749350 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62adbb7e rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x643b229a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x692a3993 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f3a3fc4 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78a3a07b rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b89cbb1 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8eb48172 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f17ec2c rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf734ba8b iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02b0708c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06358c3e rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a7917c2 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f1918a9 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1277e9ea rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x130fdf4a rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b927446 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28325b84 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ac8fb27 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a18f7ae rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d16180f rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5192ae8d rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5322c4c5 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x579d82f8 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x583f641f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ab8f87b __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c7af87a rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76e0b9c3 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x785d486f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ca10fa1 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e1b3acb rdma_destroy_id EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ac7edae rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf24ad97 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2b60c56 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb558eba0 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc21b2196 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcadb5b8b rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe57055ab rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed47cec1 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xefa61dad rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0b14df9 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1249b72 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf71bc5ad rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8e41a58 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb307aef rdma_notify -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1655f2b9 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3cd9ff55 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7bc2facb rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa22aa5ea rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xace36467 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdf346904 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xed7b4e1b rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0722cae8 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9852a7c2 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99f4acd5 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4a7979f rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1626f35 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbcb5f5c3 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4d48602 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5d96c6f rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce1e5655 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda808888 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed991752 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xedc9e488 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfbd6b93d rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfea9c9cd rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0050ed03 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2fbc322c rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4f9c0011 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x95b74507 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbd5fcaf1 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc18c3d75 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xceaef56a rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x194fa3a2 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 0x2eba43eb 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 0xb438fd14 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc99759cf rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa1b50845 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc9c2c77d rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xecd25f0a rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6799945f rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8f47934a rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9cc82443 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaa49de02 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xea445738 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfc6e27b0 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/input/gameport/gameport 0x00f98b1a gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x04b9acb7 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x43435d23 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d71b3ca gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4f00ed70 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x56e0c029 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6cb8865c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4504587 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfaec352d gameport_start_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8695cd89 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x947fdc8f iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe0c4bcf4 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xc61cfca4 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x17a54692 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xaf527cde ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7a0d226 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x87bb3649 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1c62e56f rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x45158dfa rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x55da46d2 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x67ae7f81 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x868dfd28 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x90eb4017 rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1cd2db34 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5b44eb11 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x786d347f gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xac31087b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf6377f5 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb0d175dd gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb90afb21 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc0e8dcb1 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc9874884 gameport_stop_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x064823af iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x62a29813 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf24cb1b6 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x12292a16 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0753d9cf ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0ba89c6b ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc239f479 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 0x440cf452 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0c5b28c9 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x197e3297 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x59b82e7a sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x972a2f89 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xfd1124e2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3e53b777 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x98365bc4 ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xb79cdb92 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd9418efe qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x693ba293 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc3793cd8 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcbb2d1ce capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd78c1437 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9c3a879 capi_ctr_down +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xe5680bc7 cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x1624f05f rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3c9f7cc4 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5441ac91 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x89c20888 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x93d7af6a sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf5db26af sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa9ade81b ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc737adba ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x237e6d34 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7182745f qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1ddae0ff attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e2c6320 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fa028cf capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb041b000 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd0cf712 capi_ctr_ready 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 0x8370971c mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8e849b6c mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x98e17f53 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xba3e2897 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x82ec8804 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcfd62b26 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x07e2149d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x408e7bb5 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x925ad51f mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb17353cd mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x357a889a mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd923af85 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ac54aa9 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09ba2c4d recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0eb88185 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f82bdff mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2032a0b2 create_l1 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 0x274e952c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27c095b4 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2ddb5385 bchannel_get_rxbuf 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 0x3c25e769 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ff4c79b mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4886a7d1 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ba7e68c dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50604cfb queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31eef69d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4002e3c0 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5827829b recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56b96d71 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57706d3a recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5a6a4b02 bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6b573395 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70611d43 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f6e03d3 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8373a45b mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cf8061e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f8a26a0 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x60a5d296 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x686af814 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7144baf1 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78345fc9 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x787702ed get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ea99b22 queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb959ece9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae0c719e mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc7a7eed recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc64dddc7 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc7c604c5 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd0f97623 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd270d841 bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4cb4d32 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdbc8ab12 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9d998e0 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8a60456 mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeda91905 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4c8ecf8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9d9af9f get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xedbcce33 mISDN_freebchannel 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 0x1fc82659 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2cff0ee0 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 0xbf6e3f94 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8862edd6 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 0x9cfe02cb cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x236b433a omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x8738da08 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa6e7e313 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x3d9f215d dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x60f31031 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x8bc0474a dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xc281541c dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x23bc925e dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7e7987c6 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x989fea15 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc48b7f62 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe0e27f02 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe7c3a2b3 dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0x267943ed raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x4c9ce802 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0695cd81 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1c348b2d flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3845ef50 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5cd36b63 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x62732c33 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b352920 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x974719ad flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c0fbf33 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xabfb8875 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdcac973d flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe74573c6 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xedaf3e0f flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf411a0fc flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0767720d cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x09b97f31 cx2341x_handler_init +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xc3df3b11 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xcfe568a2 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xdcd9d1a2 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xedbb706c omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0xaa6923fb dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc64a4c81 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xcad5e903 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xdb924847 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3a0cbfbd dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6e0f82a8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x93512230 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa46a2df2 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc453eb19 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf7dd1c82 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x13742a3f raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x86fbc5a4 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x015fb380 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1631edca flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1687f75a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1e7d88e1 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cbc81d8 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46cee197 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5366c1cd flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5abea8f3 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x62c11bfe flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x75e1ca45 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa533511e flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd3074ced flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd658357 flexcop_pid_feed_control EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x26fb928b cx2341x_handler_set_busy 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 0x55b740b5 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8d6bd803 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7c9ef1e4 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8f0b1d4b cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb45797bb 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 0x68e3bb16 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x0b01f090 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x98a3cc18 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xb062e5c8 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x5e3f29d4 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xbfab90be 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 0x751150d5 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x6f1d49c6 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 0xce29abb9 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 0x44455027 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ac90437 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x78188b54 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc9620065 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdfcc64fd vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfe7a5438 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf5a10c34 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x570fab07 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x780f6d22 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8cd77e2e vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa58ae63d vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc87e256d vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc94cea2d 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 0x0e13dc78 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x071a00fc dvb_generic_release +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6f40c56 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x026d1c1c dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08b392a1 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a32ac68 dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2535da9e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2129489b dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28437306 dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cb249a8 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41c99cb2 dvb_unregister_device 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 0x63a35684 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65b1e9d2 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69bf4d3f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x62ee283a dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7370398b dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7458e9ff dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b93bab8 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x853c3f1c dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c98d86c dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d09fca7 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ebc16b1 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70b502f0 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89390f3d dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c5fff72 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x90e8835b dvb_unregister_adapter 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 0xa1bb9617 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2d4af17 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9339778d dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9939253b dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1027874 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2768e32 dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa477befd dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf20b996 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb1facc05 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0a8a3f9 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe0b7990 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8e95b1e dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbe64c58 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc9d0ec5 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc24ff67 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd57c3f6 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc68ee9d4 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xca58fa22 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcbdcdf10 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8035ebb dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xecd3beb3 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedb6f7b9 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf18fcc5f dvb_frontend_detach 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 0xfc35d228 dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x8cc6b05a ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x501d43a4 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x12a5d044 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x33e6a03c au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3fa7bc1a au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x43c95615 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x85e27626 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8a65ded2 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe051383c au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4f648dd au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf7fc1a99 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x378ee3ad au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xac57386b bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbc7ed19e cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x9e6d3059 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xa76e9bf1 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1fac4077 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x78233b90 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd9f2cbf3 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x36999c84 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x380af1a3 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3c9fa432 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x219ea3ee cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x278fdd17 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x670c480e cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x66b0c206 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x09c09bc5 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0f05b9fe dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5a586c2e dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x71c3ffa5 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfde28129 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c2a3583 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15174c21 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x173435c2 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x24c9625f dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x51bad5d5 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9552cdfb dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x96167093 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa92c3a30 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce647353 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe11c0c79 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe6c3f555 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8234958 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeca62663 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf093f1c3 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf5b07fa4 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x754f0520 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x06500887 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0b4eb599 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x25c74ca2 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3263cea6 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x36c5666b dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f72a0f9 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbba339da dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd8b850dd dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xeffa8e1a dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf89ca23e dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7c8bf0aa dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xa28f75a2 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x170c9075 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x262a10ba dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x29d9e4a8 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2a663279 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2c3704a7 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5811fa70 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7ffb6ef9 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8b56d7ae dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xce373702 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd6ef8c43 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xeb8b3d1c dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xecd2de94 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf1018804 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1066e013 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7ab5a513 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd7f867a7 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdadad699 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe64bf0db dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb894d184 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xd5aa39ff drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x3e461d62 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xb4be2a84 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x8c478294 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3ffc166d dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x5d1d26c8 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf6d302a0 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x761198f8 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x208fc336 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x597e8c5d helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x3354da51 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb830e022 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xdc6bd44c isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x38162af9 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x40156ce6 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x88688067 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe5606877 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x06ec97fc lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xec9dce28 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x3c43bd45 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x04d282be lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xe586cd12 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2cfe1a7a lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x8ac3a85f lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x73aea173 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x31337093 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x537d3888 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xeb655d7a lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x097d0535 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x6385c9b4 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9ff4e22e m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xcd48ddf2 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x6c3e7870 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3e664393 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x101dbb60 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd80b5149 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x66d77bae nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x3ab82195 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0fe60626 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x98402858 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x792b1e06 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x26913c9d s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8eaf881f s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x779a33da s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x549d7aad s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x9086fcd3 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x0805a787 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x5d7f4106 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x6ff421bb stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3f3f85be stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xad87b0d0 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xcd4f96ad stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7a06e630 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x58e411d9 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x68140fe3 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe926f58e stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2b23bb8e stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xe3b6c7ae stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x657118f0 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x8f053b27 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe7f25bca tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x0f385644 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x278e1de0 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1bc9bfc5 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2044a0b1 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x7531b656 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xa1b0bfbc tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd37f25d8 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x0d5a134a tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe94317b0 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xbcdd9cf0 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xfd38115f tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xaea9dcf3 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x79814337 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x130f1a55 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x47b0c3e0 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x09a33c62 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x36837ecd zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x816d8984 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0dbc3fc5 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1dc6ccf1 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44eeae64 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9dd758ea flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbdbde2bf flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc29da836 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe5b19077 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x04e17525 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5f2fb20f bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbf6c29cf bt878 +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x99dc4a7f ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xef982058 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1847e978 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1d1720d1 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x237a745c au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x63a2daa7 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x65d71627 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x73832ef0 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7bf1690d au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x81a42ea3 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc1bd0af3 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xac9524ca au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xfc4e16db bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3fbe3fb6 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x688e9a1a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x24ae75d9 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x221b9a92 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xff956921 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd01fdd92 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xe26e52ba cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc16ce411 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc915db22 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd367e114 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x13cba21a cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc340ce57 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x8d0485ff cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x27966124 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2afc9632 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2bbac50e dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9d968346 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb7e088d2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c3dad99 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c531d1d dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x19177479 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x247f2918 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3d905d78 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3f36b4c5 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x56657c5b dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5c0fdcf0 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x99f12728 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa0c98209 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2caee5e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc08ec740 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc282eef4 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca146cda dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfeaf4ecb dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x319635fd dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5bfd18e9 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8836cd85 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8a23c6ca dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8b7a8967 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9c1bb04e dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf732752d dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5b66a958 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xddb83142 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xef277017 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfe3bf1c6 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x257c23a4 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x283a9c42 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x18314866 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ca65e4f dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3644fc18 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3b4a3e32 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x52d6c7cd dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a1b2e18 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x83788a6a dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x850b62ac dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x86667522 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xae019a94 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd3305db9 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe7116f3c dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec400a0a dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2a6c3d7f dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8ae95eb6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9946efa7 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcfef46c3 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd68e74f1 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5ee0cac4 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x08f6c363 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x225c9ea6 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xe4366e90 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x029f53dc dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3f341d56 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x47d8238f dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xec1607e7 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x29c4e1ec ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9533a68f helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xf563dc09 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x264e2074 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xb16c5925 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xa4e2c53f isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x5da62d60 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x1a997433 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x423b5b7d ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe217296f l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x25a2f384 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x23386724 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x53373477 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x9be789b5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x6646233a lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x05acebad lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x75862c89 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x394007aa lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6a1b8818 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xb9881484 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xd94d1eda lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa9b06fc1 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xed4c7590 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x855af1b9 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb3f597e1 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x5d3de014 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xc123c745 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xcb0974a5 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x3839782d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x75bafe51 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xda8a08f1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xbc99da3d or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xcc1f604b s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x752378af s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7b25f70f s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8e4c5d8f s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7b925573 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xc597b448 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x66655690 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x3be8b5d6 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x84864154 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x0a00def8 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3c1b34c7 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd9405ac4 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2a8feca7 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xdf1e1c94 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x16a945f0 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x26595bca stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x979bbf9d stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xbcb1b46c stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xde66d247 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x1d2615fe stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x266cbf44 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x0aa5fb19 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x159645d3 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xfca9c12a tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xdfcb3e92 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe44621e6 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xbf626d4c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x4a3cccb4 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x50bfcbf0 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x28cca7ff tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xedf320c5 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa0c71f34 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x98ccee1c tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x40292fac ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x4882db53 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4ad833cc zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xfb8f97c4 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x253fc7ff zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x72a5fb95 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x47931f81 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x184eb78a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4df809b3 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7cca4938 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8f2f186f flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x95e9e346 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa8ed5578 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb6effc9f flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6c05bcec bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x74890395 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x79800810 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xabd5c01d bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xea1e2408 bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x841cb00b bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9198da56 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9fd4a4ce bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x92c6976e bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xba88fe4a bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd69715a3 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x055cd24e dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0acec806 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0c46c12a dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x15125a50 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3ece811e write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x40297368 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1ad03efd dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x88793412 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb0f47a49 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xee70b48a dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x225c4716 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x479e12ae dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4cfae241 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x778830a2 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7a3eb24f dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7a9e9d52 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9711bf3c read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd505561e dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdf63824c dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xca1d4277 dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9afb43af cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa2705336 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb8573388 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd7cccfda cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf02172fd cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3e036b51 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4b51b1bd cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56595ebf cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb051611c cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xebe64c46 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 0x2b24b783 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x14aeaac7 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x59b7d7f0 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5fbcd688 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9115519f cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x97fac97f cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9855f460 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa23209b3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x45be870e cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5364a2af cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x591af764 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x594b03dc cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8d301c12 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x915bd301 cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x8957e32e vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xbe74718c vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x77528c5c cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa7ddcdda cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd12bbae0 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf3b3083a cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1f72be65 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x38766b69 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x410b1485 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fcf782d cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xeeaa0d71 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf2ac87a0 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe323ee8 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17a33874 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a09c799 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x37b5f81b cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x433d3081 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x25ad62f8 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x32f2588a vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0f23f43a cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa8e2191a cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd44adb95 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe6be53c2 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4187ed4b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x52cbda6f cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x72010cdb cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x941df270 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xad53b8d6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe3ec4716 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfe3c8ac0 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d5a0ca1 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e20485d cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x206a26a6 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55d72308 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5988fc1a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59898e4d 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 0x698abd3a cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e1cede4 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81a078b4 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8459d049 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7920bd11 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a187363 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c761797 cx88_reset 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 0x97e80243 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9bba3603 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d17c5e3 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d444bd5 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1993bc6 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa972f730 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb63c15d6 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbddd8d18 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc64233b1 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd238062c cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd9f81872 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd1d78c8 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe70c9b52 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0b6b361e ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x140760bf ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97be9ec5 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa5636b58 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbdf77829 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc61b0eb2 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6be02b3 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc71bc377 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc98340b1 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xce35f17c cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd76591c0 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf15d3004 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfda68a49 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x7940523c ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x08201b68 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c2bdc9d ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0cb9e0d2 ivtv_set_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x22ce04a6 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32e6e6a7 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4154b4aa ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50710528 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x540a1671 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64c4515d ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7148b3d8 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1b125cd ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa3977e14 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xac32a01a ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd926fcf7 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe620648f ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe85f74d3 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf163db5f ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf939d3cd ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3139bfee ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4725b770 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49154490 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x673ea04d ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x808f5855 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85aa4a79 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85b19b5a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1639d9d ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1c6431b ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa7049c67 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf4c8b6b ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc48b41be ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc66aa383 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee09a69b ivtv_udma_unmap EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x14c17bd3 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1df0af3d saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x261af2a9 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x26d0781c saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x40deb18a saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59491f2f saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x693d32dd saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x15d7e498 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x345135a4 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39359d49 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3de6db52 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5760327a saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x78c6ae12 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7a5fca83 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a7ad6cb saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x90dc2263 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbf68251a saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc0918538 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfad1f055 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x940af131 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcd14d21b saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe2a882e5 saa_dsp_writel EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0b86df4e snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x36283c07 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x45394e9f snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x84ef672f snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x98b2bc05 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xce47ba7f snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd17c5cb4 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x00c19879 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x15e39238 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2b1e1343 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x50542a67 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x55cf8acd snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xaa668cf8 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcdec5f8d 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 0x0abdaaf0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x133db1c3 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2d0731ce ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0x32166933 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 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xe163e63d fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x357fc4c9 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6b04e756 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9fd920d4 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcb6610a2 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x7cc02850 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xabf91661 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x9d99387a mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8005aa72 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa58b68b3 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0071e423 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x089d3bb7 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x205ad782 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xfe5432f3 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x158b4a64 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0a9cb664 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x885f5313 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdcfaf629 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x11d6a3fe max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xe117b0b8 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x4dc49957 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x50580b5f mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb16e762a mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x1c6b67e7 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1c78252e qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x580dda8c tda18218_attach 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 0x7a1d581b xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xf30da7ed xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x73cf195a xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x1ce310d5 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x221c85bc cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f4baaa2 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x13f9057f dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x32e74926 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7041ce40 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8c47f325 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x97e72367 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaeadbe7e dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd7a737ba dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0e1c191 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x41ab0ef6 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6af02660 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x942f8547 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xff05c144 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xdb127848 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0ff0f35e cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbdc43380 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4a32aff3 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6040159d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x632858d0 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6ec6d0a7 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa2e4c296 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa5b63226 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcfbad210 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe1866a58 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf59d9c37 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x040046df usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4a8a4dc8 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x59cf24f0 dvb_usb_device_init EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x92d812b3 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc67bdb95 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd7be2508 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xea1d2509 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa12185c5 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa5654ad0 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc969f321 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 0x9b386537 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-af9005-remote 0xea90a819 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1861f7d9 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3a43026c dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4f023fd4 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x733e340e dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7ad6d2bc dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x91f6b083 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9320b8af dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x08861cf3 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x08c7f1a5 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x447f599c dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5b709a72 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b9a42f4 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8cb2f2de dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8ef329ba dibusb2_0_streaming_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 0x9802f94c dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaaf140ee dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x48c42fc1 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xbec0dbbb dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x274ca4c3 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb5b3730b em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x07afa25e go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4baad0df go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x82f66281 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x87da7154 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8e3264c5 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9498745a go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb436ec43 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc2ab4424 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc85b1e0 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x04cdd3ad gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5dfb71a1 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8b826a04 gspca_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe9163b96 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe8857ac dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x7a7f2d4c dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xf94d6c61 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7a46139e em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe2311984 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x23781ceb go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3dc8d87c go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x47851385 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x77ad86a7 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x89411637 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x955f0be8 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb3f10f8b go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdb601c67 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfe8bb448 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x56cd0937 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x624d1791 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x706831a7 gspca_dev_probe EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa39fa325 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa9032d15 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc104b6dc gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7b0b91c gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xff0e4ab7 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdacb203f ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf10c21f5 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1b2429d1 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6101d8f9 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6b707931 v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7670a95f v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc33aa13a v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfb3dee38 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x29a6359b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9cd7c9ef gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa15984e5 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xabb23ae9 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3456270 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf3a3cfd1 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x45561bdf ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6e911a15 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0f29a6d6 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5d5fc4fd v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x685b4f69 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x82b3e22a v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8ba14814 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8d017530 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3e44244a 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x72088bae v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8e258174 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8f55c395 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9f8ecd70 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd6d85b76 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe3be977e v4l2_m2m_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00c37edc v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x025f535f video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0459725e v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0250ad95 v4l2_s_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x070793aa v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x075bacb1 v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x099b2f89 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0aef7b74 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d236d8c v4l2_query_ext_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1302426a v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x152807e0 v4l2_ctrl_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d41f9d3 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1dfc53fa v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18b467ba __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25d16593 v4l2_ctrl_subdev_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bdd3398 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30150c79 video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32c56a85 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32caf44b v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x358097ef v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35a9e79c video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x374177dd video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b44e863 video_device_alloc EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42e70eaf __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46d75011 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bff64e4 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e5f0abb v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5376efc8 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5450d4c9 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5647bcb3 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x585c1c33 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d6f1987 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f64fa16 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f6af73c __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60eb81b7 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d233c9e __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78515a1e v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x790b960c v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7be1d9ec v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3dca0017 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42157195 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5249c7d2 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56077342 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x568ef606 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5921a377 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d95a58c v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x613b5bb5 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x619c0e21 v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x694d44b2 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b77b57d __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x767d1a5e v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78e50c49 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cae385e v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ddf3266 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8034e11d v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85418f39 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85fcbabf v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8993fd32 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83328808 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x878641e0 v4l2_ctrl_handler_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ca523e9 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x912edc42 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x981d456b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b5b39df v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1215b62 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa96fe825 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacbf4997 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadc9bea4 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a1165f7 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95c049c4 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96b19fab v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9addb3a9 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c5f294a v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d9f8ccd video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f9e299e __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa819a49f v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaaeb5bbd v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaea174ed __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb28a1458 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb971975 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbd8a43f v4l2_ctrl_new_std EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd4b5448 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc31eb7d7 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc44facc3 v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc72422f7 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd091205e v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd00c4c5c v4l2_ctrl_subdev_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd42771ff v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd79df1a1 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde02c68c v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1772e2d v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2eac3ec v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd836b244 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8e4b073 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd53e5a3 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde54006b video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde811d4e __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde9b1b5c __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdef6c64b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfb5af62 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfcb5bce v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe30f28d0 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6d4321b v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeae24d49 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe42c7967 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4fd64e2 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8188304 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea3a0e08 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf085c354 v4l2_ctrl_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3b1d019 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5380731 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb540eff v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x297254c8 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x38e674ae rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa28c1f72 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb22bc23c rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd0c2664c rpcif_manual_xfer -EXPORT_SYMBOL drivers/memstick/core/memstick 0x00edf7c6 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x032525cb memstick_detect_change +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x1bdac13b rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2b62a927 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x62cb2c26 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc6877ef1 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc84526be rpcif_hw_init EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a325c93 memstick_remove_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5f80b1f4 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x67fcead4 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8456716d memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9e9d19f4 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc08a479d memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1a58a6a memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd1dd2aeb memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdbb3cc50 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xde24b8cb memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d2c9e9a memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2e4fc6f1 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4edc9857 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x520e60d9 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x53311c24 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5cbbf315 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x71640837 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xabc0ecc5 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaf13fe95 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcd7476e6 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd197d1f6 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda8cbb12 memstick_alloc_host EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0041968b mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0743413f mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11c67b75 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16797952 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30e03637 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d51b551 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x496eb260 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b4b86f2 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x144e2af4 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15231e4a mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1922e155 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x193d4789 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c8f0d0a mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1fc01a3c mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d74fdca mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fe2b0a9 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4261b862 mpt_device_driver_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5341a47e mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x565e16be mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57fd9c0d mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58e266d5 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c5f76a8 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60b71ea8 mpt_halt_firmware EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x639b12c4 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x64e8009f mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6cd3191b mpt_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x863fca9d mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84d1b638 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8729932a mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x971b96ed mpt_suspend EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9afe5022 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa14832a5 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb026b498 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb19d6119 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb431ded7 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5507220 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8bf2c92 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb14978c mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbcd5a491 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc17631e3 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd298058d mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5352ffe mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbe396192 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf332d6e mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc2fe402b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc3f05ba1 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9f49071 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca04ae8d mpt_verify_adapter EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3c24191 mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9064882 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed688c53 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8b44880 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc003bdd mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x019f2d6c mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x036b732f mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05820442 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c720a84 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x378ce1aa mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d48bc52 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5870229e mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e37ea66 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6af10bb3 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7672c961 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76b1626d mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x781197d1 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b9f5c2e mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d5d5d13 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f6a147c mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ff3f7b0 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb5f5d26e mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba60990d mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2b262e1 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc392cfdd mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9d3948f mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd98970d4 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda10dbb9 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf6a09fc mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb83f231 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf461eb5b mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5e390f2 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/mfd/axp20x 0x098997bb axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x71c71fdf axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xee96c3a3 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x02c64e71 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x6f074ee9 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x87bbed0d dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa85ed2ba pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0f4207a pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b113583 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c515133 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a68f139 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44eb676e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4be89832 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f017917 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x918975ae mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa07676b0 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaa8c68fa mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdda4d7fd mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xecf7cf6e mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x68da10a0 qcom_pmic_get +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe85d174b mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeaa187b6 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc811c1e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe0803fb mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe74bfe8 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x007be995 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03a0c86f mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fc3af55 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16435d7b mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2106c190 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x260ef379 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2bf93471 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37ce984f mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d91ea37 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f603b70 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4829a280 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d853a05 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e977978 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f4e5c36 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x78f3bae6 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bfbab3e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84a80683 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa54146c4 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbe4fe6d mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc593011e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc4d6b8f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe02eb853 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe39bcb09 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4b9b070 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe94463a9 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2e4b55c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf41f3bb1 mptscsih_host_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0x77899596 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x7a1fe717 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xf73faf60 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0xad9873b4 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xe27c88f2 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xea70296a dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa4323612 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd39a0044 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x133557da mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x155ba3c8 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a2eb9b0 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x43a10293 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5170d37b mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7d37d9ca mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x801f5573 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f45b34a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa53dcbf2 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xadc26f5b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xebf8b0c2 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x99547f8c 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 @@ -2570,59 +2570,58 @@ 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 0x0f5051d0 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x1546853b wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x277c3ea2 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x29097c78 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9380e247 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xb81e3c8f wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd1e7cb9b ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe05e1af4 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x510e7cf9 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6334c760 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x93955572 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xab2ec897 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe52d664c wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xfc56c54d wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5104c3eb ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa3b33160 ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x2ef78ebb c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xffc09b71 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0aae2c26 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/c2port/core 0x30bbfd45 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xf7aadc48 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0e53e4ea tifm_add_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x10870d86 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x36f4c4c9 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5eea9e2f tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x88acf6a6 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x8c47c034 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x9309bcfa tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x946083da tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa9bb93ea tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xaa238041 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xaf80413d tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xb17cd1dc tifm_alloc_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x51edb36e cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x92c541b8 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa424c463 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa6015fcb cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaacb23ab cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2ade9ad5 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x55c0a8fe dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x60fa8226 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xad3f950e dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x87d1d995 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xaf64c84f mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a51fabf cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3b457189 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x571442ff cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x751f567c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9252ff67 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xad04e930 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe7e51294 cfi_read_pri +EXPORT_SYMBOL drivers/misc/tifm_core 0x19138345 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x26e28c37 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x27df582a tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x4ccc63f7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x864e2564 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x9d6ad247 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb7409d1f tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd3885bd6 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd498b938 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe20fdd8c tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf8b13189 tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x087a41f8 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0bea8a7a cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2d830bd4 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8fbf462d cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe3133f0b cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3931eca4 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x8a59dc6d dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xbe36c52c dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xf1c00a66 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x019922c7 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x390bbb59 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x27408c9c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x344f3eab cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4c38a5cf cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52a55704 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab5c78c3 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb5a44fb8 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd521f724 cfi_fixup EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x26034faa map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdc9261b8 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xddb76de6 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xeb36bc26 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x86aa7d01 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9f1caaa0 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x694dba7d simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xa8efe882 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xe13a84d5 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x0494d690 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0952989c do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0d0056f4 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3e5aa158 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6830d553 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xd3219b93 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1aff2175 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x230055fa simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x7ff684c4 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x865510aa 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 @@ -2630,155 +2629,156 @@ 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 0xdab8001a of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0832c255 nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0a17c07c nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x102f854d nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2e29cb33 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x38f983f1 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x450b004a nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c3ae4fd nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x56eee172 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x645e955b nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6a2d865f nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79fb7bd1 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8739b863 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9cec72a9 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa46061fd nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaa780b11 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb48a868e nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb734a562 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb9cb7aac nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbce803d8 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd187ec5c nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd937ce89 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x06c3c333 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1d541976 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x211ef6d0 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2578b3de nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x29bd40da nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4701496b nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a77848f nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5ccf5da0 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6d49ba28 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7ab71199 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x81243c23 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa6b52d77 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb23f11d2 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb4f2c789 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb5f9e095 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcacbf0f9 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcba5529b of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xce947529 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdb40ec02 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf8a81121 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xebb3322d nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xee8426de nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf495845f nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x02f5f765 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x3e97acf2 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x822a976d flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x93a93e28 onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x77314527 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb2ff86ef denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x24b57c20 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2e356646 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3afadae4 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x42ec1722 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x48b307d8 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x57d6cb57 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5fb07244 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x605d5a40 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x79319575 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7c97578d rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7cb07c1a rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7e619350 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x4c3013a0 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xed48b29c denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0e966f4d rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x244ed215 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x245160da rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3a606dc5 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x724ac20d rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7cd89bf0 nand_write_oob_std EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x90c743ce rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9671c19e nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x99f34138 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xafc41363 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0b51be7 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x9c489204 elm_config -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xa9fd8250 elm_decode_bch_error_page -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x070140e0 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0af17fcf arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x167b261a arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2dd7af39 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x316ecb70 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x42a21b81 arc_raw_proto +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x941556bd rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x96135dd1 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaae57dfc rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb83a1074 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbae02deb nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc459ece5 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc6bfd383 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdb4ec8ea nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe387a3c6 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfafd6087 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfb6780a1 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x49722f09 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xc4be6269 elm_config +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3052a2f0 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x48e1d1b9 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7428936c arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f94c82c alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x92c44ca2 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe0b474a7 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6abb2dd0 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8032f215 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x909e6167 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xae8f386e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbdda7b1f arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe55fc76b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe9030bfd free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeb5115dc arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfc3cade2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x12b64b41 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x625afc29 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdd3c67d6 com20020_check -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x46d27cb5 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xadaaa577 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb6421ac6 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x6de3a50c can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xa6db6223 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x002c3d25 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08421fe5 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1365eecb b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x169cbb11 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29df89fd b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30e138c3 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x368aa786 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ade69b7 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c0c8a72 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x429fdac8 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4576e745 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b268a0f b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f43d840 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ff6a3fe b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62aa4f7a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69a7266a b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d08b61b b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90a11ea6 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97fd42dd b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99db4c2e b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d29a153 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9db19ead b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1869c18 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6b756da b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7bf6631 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad9bff7f b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8f0c271 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbadd4399 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc412cefa b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6318241 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcd5ab8cc b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7465bc3 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd00f765 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeacbb70c b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf212b4d7 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6474c44 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf76561c9 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8f8b586 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4467c535 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa5fec87f b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcf0a9d13 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd442e7f4 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf902db00 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x09b33ea8 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2f92f409 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb7b2cb20 com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb752a8b5 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xc63cd1b1 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xd8759a58 ctucan_resume +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x74d96463 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xd9a8e614 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00bc9bca b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05f9dcf9 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0951aba8 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0de25155 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1167c124 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18ca3ea6 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e6562ff b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2cda7c74 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31018ed2 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x344eb598 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42ac9dd1 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4ab3a151 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c355f64 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50d48e9d b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x71c69519 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7bb11fb9 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x89d414d3 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x93415721 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97099760 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x990e6635 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b490083 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa77ecaa6 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8f9a60f b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa89e7ac b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab6517d1 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb841bb2e b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbcdf8d18 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2ab893f b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4f7a738 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcede66b8 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd06f9efd b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd90461f6 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdfb1f6ca b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea268e5a b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec2ff3cb b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef0e8996 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa838e29 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe3b1348 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6b219e9a b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8b704270 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcf01bf5e b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf14c104f b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x03900216 lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc41e8d62 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdcc5efc1 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xefd14cdc lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x1dea6588 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x2cd4d2ba ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbcd908e2 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x18d42080 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x61ea53d3 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6c4b1e8a vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe920d642 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf327c936 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x842af680 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbfc6e1c9 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd2f59866 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1865f473 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4e996649 vsc73xx_shutdown EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2cdbc3f2 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3a040628 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc07a6fa9 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3cd017ab 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 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe67e0ed5 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xef6daafb xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x073a5842 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x09698f7f ei_get_stats +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd9a8ab20 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe713f43c xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfbb994f1 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x06e369cd __alloc_ei_netdev EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74948c40 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7c595cfa ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9991a5cc ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9bd34f45 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9ddd8b3 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf1f3ac7 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe213a969 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf69739d1 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x20e2d857 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x787ce2e9 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7d7b33a0 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x933cde6c ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x96407cb5 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa460f31a ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc7bcda7f ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf0459f7d ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf68f4f2d NS8390_init EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x54a705e1 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x39378c7b bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd07d0fec cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x5243a47b cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xc20a399d cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x7a094318 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x42056b28 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x50a78962 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 @@ -2796,410 +2796,410 @@ 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 0x136ea252 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x278b23de t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b43d7eb t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41041454 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f9dcf6d dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6be92fcb cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d8a551d cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa28fceee cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa700f0e6 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6d14a0d cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcde7c573 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcfd346e1 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd03f154c t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe20d7c32 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0628301 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf7571f56 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0086f1e6 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00bf7593 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0200376a cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04337147 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0437c731 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0aa4c4a3 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c1c500d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f5ce914 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24220b01 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29dbc75d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ff5d6d6 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4168240f cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x475594a7 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5a70bd2c cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61231708 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x72871d7f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90724e3b t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xba592eb1 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbbe9d1d3 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf3fae03 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a4a5509 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e11a57a cxgb4_map_skb EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b745be7 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e479086 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22899f02 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3be2ed63 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43698419 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46405c72 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x469c6778 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b265323 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ed0810b cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1121f09a cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x125ab8eb cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1341cdfa cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1879fcc9 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a85d613 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f504c80 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2998de5b cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d487817 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3523ed90 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37ae7d07 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37c6e6ec cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46a95402 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50e83b3b 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 0x543272e8 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60e6cfdb cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61e85eaf cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64db0fa1 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6968efff cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x696b25a9 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f2fca39 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7da9bfcb cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x804fb64d cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8220060b cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x833c236e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90f2254d cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9875a3fc cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99049240 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c0573ce cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e5b52e0 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa73a5b83 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa821e4be cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5279de6f cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55f07065 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56dbb414 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6053ce19 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x621b59fd cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x638475fe cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ffc107b cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70c5b397 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a26fe1c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cc4ca23 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82b0afed cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83027efb cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92b4dc84 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99eeb272 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ecebbf0 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2f58cfb cxgb4_read_sge_timestamp EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb473a23d cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6cf0389 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc32fd045 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc674c334 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb18ac4a cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd0df4c0 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd150b7dd cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab3fa446 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf8bbec5 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8b0c0b7 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdfa3210 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcec5aaa4 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0a1b70b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd58e7274 cxgb4_remove_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1899abd cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1f6cd1b cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe77f1db1 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe82da4f3 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecea4a2e cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef7d6f2c cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefaef691 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfeb89ecd cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd824e256 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd865e4d7 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeac0f608 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3290158 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf88894b3 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc93b5d2 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc9a3c05 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfee0e952 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0042a4b1 cxgbi_ppm_make_ppod_hdr EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2452e024 cxgbi_ppm_init EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x274bdc09 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3661b9b4 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x71a9c1f4 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbd32ff22 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc30470f0 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xeec591b0 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfc8e2c61 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3ef8f49f vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6366cd62 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6d5d6387 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xab1e54ea vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd3a32cb6 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe57c0355 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2b3606c6 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4097c34b cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x442e9465 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8db796c7 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa5e54427 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdd394ec4 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x07786eb9 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2708c61f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7120cc25 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7e5becc5 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9564e7fb vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd716adbc vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0bf100ea 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 0xad966070 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x0be10624 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5dc9401a be_roce_unregister_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 0x37e17ad3 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x5f581887 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x47dd8051 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 0x1d8b520d fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x2b182b75 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x6bb288cc fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7a23a250 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x08f27a11 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4128ca3f hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95ad0b98 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x0419965f fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x1089594e fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x2a15fe29 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7d54a16f fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x16dfd7ab hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x31570da9 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x880ba608 hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf4de2e6e hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfc0a3c98 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x3b4ed6af hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0d5170eb hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x19261a62 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5373f25d hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5448de9b hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x60cea2d7 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8487a14c hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xda933c09 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe92e6c83 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2b99b36c iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc9855886 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf22d3291 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfc19090b hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x73fbafbd hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1b44fadf hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1b9cefba hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1c3d6d33 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1d21af13 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x76e18368 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x925bf023 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf8871e78 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfa504918 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3c7937ec iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x66e1d8fb 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 0x031530c3 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x32ceedab otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x13409601 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1a1e0afd __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x326191f3 __traceiter_otx2_msg_interrupt 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 0x3defcd37 otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4385b598 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4846f3e5 __traceiter_otx2_msg_process 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 0x4d90631b __tracepoint_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5be21dd8 __traceiter_otx2_msg_interrupt 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 0x7ac9ac94 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x86188cac __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x86607a31 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x87270dfc otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8a280ef5 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x65cc05bd otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x885a0a16 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8e1637f7 otx2_mbox_nonempty EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9d213760 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa835f837 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaef52fd6 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x94ae38e3 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x96d14ff3 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x975dc142 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x99bf0410 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa2cad477 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa8f3ee22 otx2_mbox_get_rsp 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 0xba2e2172 __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 0xfa174658 __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfbc11afa otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x01680d93 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x047df7c9 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xea472d02 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf06b189f otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfca7fcd6 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x044d3793 otx2_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x09454c39 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1c4ba9c5 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1df99cc9 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1fbf9523 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x26268ce3 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2c38aa84 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3e1a9f6f mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4b1f266a otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x53d49061 otx2_shutdown_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5cf763f5 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x64b63f5d otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x674071c3 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x899cbb25 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x97ac0e43 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaf106f9a mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb555524a otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb992e242 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc466bfc9 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc53dac16 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb9db5bf otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd11ea88 otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcf67ef6e otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd33c2ae7 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd3489db7 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd58db0c2 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd800b203 otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe18b627d otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe74e6ccd otx2_config_pause_frm -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeb2b47d7 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeb8a5331 otx2_config_hwtstamp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf06ce841 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf37359ec otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x4265e470 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe9a2efc1 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00521bb8 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ddf9e0 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13228599 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19da0616 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x265f420b mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x267c59e4 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a6b7152 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d6de37b mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3680081c mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x413e29a4 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a115d27 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52971988 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x540f4bbc mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56214d02 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58ed9c09 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6818f1e9 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a0331df mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b74433 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x071b8b7b otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x10a6252c otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x159ccd79 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x160534f0 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2ed238a1 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x364a2632 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3aaebd2b otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3bb0eee8 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x40694422 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x523196ea otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5ee87ecf otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5f0d9eaa mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5fcc29a4 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6360a392 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6853706a otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x73791807 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7613c474 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7d766551 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7fdd93dd otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x856e8ca7 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8a8f9a58 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x95a89dc3 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa29fffb3 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa51042ad otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb465cff0 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb537df4f otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd9cd4af otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd2afe7e5 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd79dece8 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xea0d9d9f mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xee046a40 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfdabb8d0 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xffd7dd42 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x2aa720fa prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xfa4d0067 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b423e1 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e54f3f6 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e964c9a mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1050ce35 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x185fb2e3 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fc52ae4 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x216c2a74 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22187480 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b8eb7c1 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32615d8b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ce831d1 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dfe9ea0 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45116086 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x488b1aed mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c73c5f7 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ee0ca5 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66e7aa4b mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cb473ac mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ebd854c mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73584a0e mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x760c9989 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7633815b mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78e8e7d0 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e0347f mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7abcd58a mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d0a704c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa1a5bb mlx4_SET_VPORT_QOS_set 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 0x80c32cdc mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83035a00 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x869ae839 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90292715 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9139f97c mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1e196ff mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa86b675 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb306395b mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb19ae7 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf4e0d34 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfd596f8 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc372dcdc mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce041536 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd104d7 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd870199e mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd954acf4 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe40ce6 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfcfe743 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe105d4c6 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4ad943f mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe826a3df mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50f794b mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a51268 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5fa9c52 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8b2f70f mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf97bb858 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0479a1f5 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e13aea mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07efa0d9 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0864ca00 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd4bebe mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f8edf44 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x110c0087 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x125e06f2 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8074c9ce mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82dc603c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85f328db mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d01224d mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9491edb3 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97292543 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98cc7bf3 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37c26d7 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8283199 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac60265e mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb67f350e set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3454e92 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf06370a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe71f1da2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8613415 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee02a79c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeabaea1 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00fd4563 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0513f2ea mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x053851e0 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0686dc7b mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0739f116 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c81bd64 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12a64beb mlx5_core_destroy_rq 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 0x15ffd813 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b680ce mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19d7ca62 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19556dba mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x197477cc mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19be8061 __traceiter_mlx5_fw 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 0x1c6b3ad0 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d8589e1 mlx5_eswitch_get_encap_mode 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 0x1e41038f mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f302e9d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f922565 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20be8402 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20c27d6e mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21e175b6 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x220bdd45 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4ce24e mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x201eed42 mlx5_lag_mode_is_hash 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 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b72da5 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2843d2d8 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328bd947 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24aa8d9d mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x257d35d4 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x261d823b mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28699a76 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x296a28d8 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a5517d1 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ae0f21c mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b66e26a mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c4dd770 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32547bf9 mlx5_core_destroy_cq 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 0x34602239 mlx5_notifier_register 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 0x3691b67f mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39000f7b mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a819bea mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b5b55d3 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cedf03a mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d01956d mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ebd7704 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef61fc2 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433ded96 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43f07d79 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ba55145 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bc9021c mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e048c98 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f8fbe80 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40ea5b2e mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4210e1d9 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43ba521e mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x444f7bd0 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4522e50b mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f80831 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4725027a mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4acf12fe mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c2f22b5 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c5b3e3f mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ce054c7 mlx5_core_query_mkey 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 0x4fbb63e3 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54ca5da1 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x555592d0 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e4336de mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e674ea0 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ebd53b6 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5051823d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x526bcf54 mlx5_core_roce_gid_set 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 0x561c6585 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56ab6313 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fc9601 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x596f2109 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5abc910c __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5af53148 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5a0414 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5784b9c0 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59b62553 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a83e1f7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5abbbf9e mlx5_core_create_tir 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 0x5cca4ecd mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6045ce mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f436a02 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f8a433e mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d04b3c7 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5edb4383 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee6f556 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6668bd mlx5_core_create_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 0x6296e883 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d94a69 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d26f9d mlx5_nic_vport_disable_roce 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 0x659cd2c6 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660c403d mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67bbf50c mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67f022ad mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6907bbc9 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a458b62 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d988048 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f03cd15 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71563c83 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6640ecf8 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d18c26 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6924a0e2 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a6d4fa8 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6acb545e mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dd85e1c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e867bee mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x723a26ac mlx5_eswitch_register_vport_reps 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 0x737aaf38 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x752a36e7 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f80969 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79ae7908 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae88ac7 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7669aaae mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7770bff4 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d48f97 mlx5_debugfs_root 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 0x7cfed789 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d0a2c01 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e3cee7a mlx5_eq_destroy_generic 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 0x80c38ab4 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85970d1b mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86d6fabd mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8103a7f4 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8681c3b0 mlx5_cmd_exec 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 0x879f44f4 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87b63839 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87c4b8ef mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87fabd12 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 0x8981456f mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a517466 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c9d9580 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d19fad2 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dd574c2 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ea243d8 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x914400ab mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92137c88 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f5f041 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8921f5e1 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e1fb6f mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b35d74d mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d90ffff mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e693d08 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f6efab6 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f8b9161 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fb7bff6 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x923b36f0 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c91b1a mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x954865b6 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x958af804 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a5ce83 mlx5_debug_qp_add EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985d2f45 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ad461a9 mlx5_create_cq 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 0x9e569336 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f426298 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f51a085 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3094181 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4603115 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66d872e mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9aa1aa mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e7093c6 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ea30c04 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffe99ad mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa51e3866 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa723726a mlx5_comp_vectors_count 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 0xaab23d9f mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad419bf mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa871828f mlx5_rl_remove_rate_raw 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 0xac4cca30 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac8f0e09 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad3b3f3f mlx5_fs_add_rx_underlay_qpn 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 0xaeb14713 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaee893be mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb172651a mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2822f4c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0c9f65a mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1fec57a mlx5_eq_notifier_unregister 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 0xb2ac4eb2 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4324ff9 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb530e63a mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6c75fc3 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb34e1499 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb525a588 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb62ae873 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64adf2e mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6bc65ab mlx5_lag_is_master 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 0xb847ceea mlx5_fpga_get_sbu_caps 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 0xbc9689a7 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd5add43 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe6d0c95 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc17209fa __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc75594c4 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf1f08c1 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc000dda1 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc107be5c mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc774fd20 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca370e0b mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7bcbdd mlx5_core_create_psv 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 0xcf34cf41 mlx5_core_query_cq 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 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd08427af mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d37f09 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd273459a __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd656626e mlx5_eq_enable 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 0xd6c8f65c mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd724bf27 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7527939 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd774bbed mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd79d74b5 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8c09ca1 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda72aa8f mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9386e5 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded7f163 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe183a254 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe24ab91e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7d56457 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddb785ea mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0fca337 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe177b7c1 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe403ad7a mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe41cd805 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54fee47 mlx5_core_destroy_tis 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 0xeb26bbeb mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe929ab00 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 0xec4e7cad mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefcad5ea mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf29220d6 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d89cba mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88c856d mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeef09723 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13115f4 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ff431b mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a8b365 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf812b24b mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf82c60a8 mlx5_vf_put_core_dev 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 0xfa50d900 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb7b9950 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8f21f59 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8fa8d6b mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9f78bc1 mlx5_qp_debugfs_cleanup 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 0xfebe540b mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3a568a mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcd75218 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb40ade mlx5_core_modify_tis 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 0x04f5e33f mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x09384f65 mlxsw_afa_create 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 0x0fbb0b07 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14346262 mlxsw_core_ptp_transmitted 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 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 0x1faeec37 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1d6239cb mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21d691d3 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 0x2477dc0c mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d3e9be1 mlxsw_core_rx_listener_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 0x3302199d mlxsw_core_rx_listener_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 0x3d8270ea mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c6b3188 mlxsw_core_traps_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 0x47041e4e mlxsw_afk_key_info_blocks_count_get @@ -3208,22 +3208,23 @@ 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 0x4e3f13f6 mlxsw_env_get_module_eeprom 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 0x5132f185 mlxsw_core_trap_unregister 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 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 0x5e091b91 mlxsw_core_trap_register 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 0x64d32b0d mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6501e2d2 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65181ccf mlxsw_core_bus_device_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 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6755f896 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x68c26c51 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b6a3f4e mlxsw_core_skb_receive 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 @@ -3236,18 +3237,16 @@ 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 0x8b3a077e mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92c7651b mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x94a95a57 mlxsw_core_bus_device_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 0x9e41f494 mlxsw_afk_encode 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 0xaaa3d992 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaba8bc54 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaf5f5882 mlxsw_core_trap_state_set 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 @@ -3255,9 +3254,11 @@ 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 0xc5b1e690 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb355fc6 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca2d0eb6 mlxsw_core_traps_register 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 0xcc3456fa mlxsw_core_trap_state_set 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 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter @@ -3265,150 +3266,149 @@ 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 0xda4ad89b mlxsw_core_rx_listener_unregister 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 0xe0f72c42 mlxsw_env_get_module_info 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 0xe7dd4020 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe9a86a91 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeb6ed9da mlxsw_core_driver_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 0xf02d8e51 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9894afe mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd7f6e41 mlxsw_core_driver_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_core 0xff2a391e mlxsw_env_reset_module -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4bcda022 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xca83f8e6 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x112d8de7 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x5e5319f5 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x074a1523 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x143db563 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7082a822 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x74800b94 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x690440d4 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa3bf30bd mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x006a43a0 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03c4c5c1 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05dbc2d4 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c3e8dce ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fe966c9 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14aedcb6 ocelot_sb_pool_get 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 0x1c69d7c3 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2342f13d ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2614f658 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29627855 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2aaa32a0 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1aef534e ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21846ffd ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21a112c9 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cee2207 ocelot_port_lag_join 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 0x2ef50d6a ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x356a67d9 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x396b3b11 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f6043d9 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x369e7f15 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39133127 ocelot_init_timestamp 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 0x437820bd ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x437db294 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45947db8 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46115261 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46d70c0c ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a375068 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x542fa352 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55005bc4 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x557c77fb ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x579e521c ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e44e516 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e6e024f ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61bb8445 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6694df2d ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b8d2fd8 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x702d5905 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x710691b9 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7390dbaa ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x747d32e0 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e429f5b ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46e4ec88 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c360575 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b2135a1 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f7f8563 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6590e97a ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x672c43c3 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69d706ef ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e7fe6c9 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a36f7ac ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fae6090 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ff055ab ocelot_port_bridge_flags 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 0x81666713 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x835fab9c ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88c63c1c ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c4e793e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86b59b55 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8829f01e ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d36dae7 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 0x9115d127 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x926d74b7 ocelot_vcap_filter_replace EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9698621a ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98235e7d ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99cf4dc9 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a944926 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93e80d0f ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95e6d479 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95fb2ccf ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96861088 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98cfab15 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a10e305 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b7e3792 ocelot_port_get_stats64 EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa13c6723 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3c98ba4 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa50aaa5e ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa50d4453 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9dc54c5f ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0d8d3e1 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa13a55c3 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa34b0ef0 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3e90a80 ocelot_port_mdb_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 0xa873801e ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8c5e5e5 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa90b589b ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8990bfc ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9ce5e3b ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1b8b98e ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb27cd0eb ocelot_sb_port_pool_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb333403e ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb33e8fd8 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5948413 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba1f7fb5 ocelot_vlan_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbe2260c ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc51fcf7 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbedd451 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe9a33ab ocelot_port_mdb_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0fc39cd ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc307cdbc ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a3fb79 ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb5164aa ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5fa4be3 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7632367 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd4190e8 ocelot_set_ageing_time 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 0xcf5f854b ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0a8fccb ocelot_port_lag_leave 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 0xd20c106a ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd38fbed9 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd39c0725 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3733aae ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4185a8d ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd451d2db ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4bf4335 ocelot_deinit_port 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 0xd8e7d4a5 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8fdb223 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9e4cf88 ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbaff698 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc7e985f ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2c8614f ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe777a3e1 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8c5e936 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6f91895 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd765b4d5 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd890d075 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb0c0636 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb4650c4 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd1bf5e6 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde0b23de ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf896666 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0310135 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe04d1e3b ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0c3b1c0 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe18d8b1d ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8226d98 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe97aa5ac ocelot_port_pre_bridge_flags EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb5ed930 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebf29776 ocelot_vcap_filter_add 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 0xee4d96db ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf06bc685 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf281a884 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3d61df5 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc2d0332 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x15cf6ef5 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee178253 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfba505da ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbadf28d ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfef9de05 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffb936e8 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0bece88d qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x32d489b1 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 0x7d4819d7 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8b97339d 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/qed/qed 0xf82e431e qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9e933e67 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa92ec321 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0ab1614a wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0e76ecb8 wx_set_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2107aae0 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x23d7ea47 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x276df544 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x27c90c7f wx_clear_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3ab8458e wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4c58da71 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x679219ad wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7043389d wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x73aae0a0 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x788c32c7 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9905f1fb wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa2e97548 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb2a53c4d wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbcfe761e wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcf9eeca5 wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdbb9f51b wx_disable_rx -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x92d18faa hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa228e70e hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaac250ef hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd2de99cd hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xde242e82 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb8fa37c3 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf71ea237 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x09852e04 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9f6f0a8c qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x20034d3a wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4179da55 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x476f7913 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x47bf204a wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5663b9e6 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5a8b450b wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6f1f43cc wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8efd6f9d wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaaced6be wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xac391053 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcd31ee0c wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd63745d1 wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdbd54464 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe266f92a wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe605f8ec wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xebd71adc wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf6c9522a wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfbd6e356 wx_control_hw +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0229e283 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x15c50b56 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb2d311b4 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc36719fa hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe09e2779 hdlcdrv_transmitter EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok @@ -3416,1074 +3416,1074 @@ 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 0x225c6d30 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x57e5a794 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xa97cbbeb mscc_miim_setup -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x263b6842 xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6bdfc02e xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x798814e8 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x9e0c76e8 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xf8dab4bf xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x28cbed87 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x54629cef pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6b92068e pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc504ad46 pppox_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x2fefbf12 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x95e57796 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xe1c2c241 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x26f6e201 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x725f99da xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x918bd05a xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x91cb75bd xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd09c3f0f xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x25c4ae65 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x172a616c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x19cdb310 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb56d267e pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd2f841e0 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe1fe7c82 register_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xb8584d1c sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0317e47d team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x1c5f1998 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x4d9fa2cb team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x6f128dee team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x87251b48 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xa3ae6d15 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xbf6ab86b team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xfff141c3 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x73b9bb2b usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xbbc05b94 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc55f12df usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a4db408 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x508c460c hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6998e1bc hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x70414cd9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x92d2db05 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa52c780c unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xaffda1f2 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd28e6bf0 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdfdbe76e register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xecb3b807 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/sungem_phy 0x5695b093 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x1006f2a4 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x38ae3ff2 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x6d5d7f4d team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa2ca680e team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xb4029b31 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xbeb5c616 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xd1ab2eff team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xe6acfdfa team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x87d82e29 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd435c0f3 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xebca0338 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0a7e5e49 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2992365d detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2b0a5a39 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x41cb9324 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4282c2b2 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x663c4d3b attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x75d96dc7 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa12e052b unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa16df0f4 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf584020d 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 0x1d626e7f ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x22aec611 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x45386093 ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x54226251 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x66677dd1 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x723d4d7b ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x79df1438 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x835cded9 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f3f260a ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f37ae80 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x506348ea ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5ea3a958 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7a64332e ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x96c45fc8 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x96da373e ath_key_delete EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3fd56f5 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xae468807 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb1623135 ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc815f39 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed112d49 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf71d6bbe ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf8a177dc ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd7de5962 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe76823b9 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe7724838 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfcdca6f2 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x026243ef ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04b2ec1c ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0706ebda __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09261e2c ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c349316 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d7ab984 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x155e370d ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18ab5855 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e661287 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ed1a791 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ed4d378 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22bcc0a0 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c3d055f ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3886f005 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3dc33d28 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x402a4ab8 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c1d7e03 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d1870e7 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d6edf87 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x589300c7 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x592f60c9 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5eef3a40 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x643f06a6 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d1b4fd4 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d31e0bc ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72170b37 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7439cb0c ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c93df46 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e59e7c9 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80799a1f ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x809ae52c ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83f533b0 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8dd9fdad ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9640e6e6 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05f86a81 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1392375e ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16977d27 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b99a125 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e4ca34e ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x239a8306 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a8c7b65 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b7596e6 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x335ade54 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x356fb291 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b36f832 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e399b75 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43c31dab ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4899f0bb ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4df175ab ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52aa5a30 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x579f7df4 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6072728e __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61d308ac ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6bd876eb ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x747ccc47 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7492f418 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a8c8321 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7aac1205 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f49eb8a ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x830f5a08 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84ad2c98 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89702cd1 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e1153c2 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x929dbf72 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9526d892 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fa372fc ath10k_core_free_board_files EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa36338dd ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa38ee1b0 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa390132e ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8103b62 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac1d7012 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacca999e ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafd0da87 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5c28f23 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7841a02 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb97bc598 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd64058e ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc260f710 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3cf9092 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceb1e1fc ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceeda765 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0a2948c ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2a795aa ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde5d26c8 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1d2db92 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeecfb132 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3d155c3 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffc72747 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x010fc2e0 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0745679d ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x100344d9 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10b07951 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1974ebe4 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1dc908ab ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x35e69c0c ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3a18343e ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3bc130f2 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x449dd699 ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x452e7e9e ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x55433141 ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x55570dec ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa313802f ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7406bac ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad955bb8 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf642411 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaffb98b6 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbca1ba45 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0552dbe ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2c207c5 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8f9a132 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf90a4c1 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd55a1f09 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7327c26 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9bf8ad9 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdac0953c ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc924ba4 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdfe1b7c4 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed408f6b ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeee4da6e ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef9c9d71 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf129935b ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3a37746 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6e60b69 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf767b2b2 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfec5d4fa ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0125d022 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x01479c54 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x136c1328 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x14be8de7 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b3d896c ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20b9aa35 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22381eb3 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2569dd9b ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ef7255d ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3064e2ad ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x37299c10 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x382f035a ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3f0c016d ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x479704eb ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x48cfd434 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4fc851e0 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x50e46217 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b011fa4 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c48e38e ath11k_pcic_register_pci_ops EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6095aec8 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x650bcd99 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6950de3f ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8891abde ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x918e0f8e ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x639201cc ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x705c7de6 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7939b020 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9409240e ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x94977f56 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x96c32329 ath11k_pcic_map_service_to_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1d84538 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa5cede03 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xacbcfbed ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf2d3e50 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0b9170f ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb521f1d6 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7e357da ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb82b4f7c ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc12679e8 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcacca477 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcb913407 ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcd8d0f81 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xce1af6c5 ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0f64164 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd73927e9 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf901e6d ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe10fed12 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe20f67cc ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe344a9c1 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe3ae62f1 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6bb7900 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4e05b08 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa7b30f53 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5b52438 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6bf2809 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd8af22f ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd966834 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbdb84a9e ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc1daf1f3 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc213c307 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc2eab4cd ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc3c980c3 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc60f8ff3 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc7884d16 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdff52f9c ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xea3f7ca5 ath11k_pcic_get_user_msi_assignment EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf90f5978 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd0f3de9 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd4ca982 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x07708e06 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0869a562 ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x137a2866 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2f707dc5 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x320e1b96 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x18285d67 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1b84e3eb ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x28ae0ba1 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2d4a1a79 ath6kl_core_rx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81c421fd ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x83fc46ac ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x625a229d ath6kl_core_tx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9d2130b3 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb272a557 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa923d407 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 0xd737306a ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdc364c31 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe74cd873 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xffc89c3e ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x06b7d63b ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09cc0556 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cd19841 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12ce00e2 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22d8b8af ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc66dc37f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf349a92b ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfaf193c0 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10f9eae8 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1585f04b ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x378b99f5 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bc48215 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3dd91b1a ath9k_cmn_setup_ht_cap EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e5a3c18 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x50a139d6 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5381d57e ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59b7e484 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59e60f0e ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bd26a8d ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x747685d5 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7914d971 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x846b1d65 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8f39caaf ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9696c0a6 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a8d46e9 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c21b320 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c85014b ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbeb48321 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc22c1067 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48380306 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e48bd58 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60672c25 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x638e26ef ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e61cd28 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x852de3cf ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89b6cdab ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8f097158 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98314548 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x99035756 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7c285d2 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbdd53acd ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc128f7f1 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc47ef3fe 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 0xd4603a06 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd9a8485c ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00dc786b ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03a1fdf2 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x041ca8d8 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0edbc7df ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf079732e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf1ac75a0 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5d89adb ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf60ef020 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0085afd7 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02a826ad ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x073c67d0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bd8afdf ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f3dff52 ath9k_hw_resettxqueue EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15ddb699 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1671dbdf ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1739ecc0 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1804b39b ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ba100f4 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e76509d ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f6213cd ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fa30efe ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20f0a9e3 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x213e2011 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23f6c92d ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25840a90 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a371172 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ef4a19d ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x368ecbd6 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37660b27 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a0b5f62 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d677ca4 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3df2d133 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4179a822 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42346a1e ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x443fe98a ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4526305c ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x486bc6ad ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aec937e ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c55da95 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ce3b3ec ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d80b885 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f5820e1 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f952ff3 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x511f60fd ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54779c72 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56256883 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x578124b3 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5afc874d ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eb6e1ed ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fcb5ce6 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60598b47 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60d991af ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69a55b11 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ce2bc84 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e23fe12 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x700faf62 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70d0adb7 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74799f98 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7513fff5 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ac1cf23 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c0eac28 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dfc58ff ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7eb45374 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f85b4d5 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84014ba3 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8adacf3f ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92cec87a ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9315ed62 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x950bea3f ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b8a517c ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d6e0b63 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d741f0d ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9df45b79 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa377486 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf23ad35 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf7c541c ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb064ef01 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb16e15f1 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb18f0fa5 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3f0f64c ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb55da12b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba7e307f ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd2640ad ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe51893c ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc55aa1bb ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5acfff3 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc64e8178 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7f173b6 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8c4723e ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc917d8b1 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd08e5fd ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce40fe46 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1e71033 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd28a44b2 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd47ea015 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd502d32a ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd61dffb8 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd702e832 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdda05ff2 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdda77f7c ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe02a0819 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe10896c0 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe11f59bd ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5db8661 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6615c1c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb9fdc98 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed5923cd ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf54d7b75 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5825ab9 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf72f27e7 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7e9ee67 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaefea67 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb2ca1d1 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfde1bb70 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff7940a6 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffb5d811 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x10197cf6 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x92d611e7 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbed9d9f5 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13c7ba84 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13efd8a9 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14e870d1 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1756ac60 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17789110 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a0519e1 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ce489db ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x209c440c ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20d0cb82 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x217bebbe ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x236ed96c ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x237636f7 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25e70b46 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2854ebe0 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28fad9cb ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d28d405 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d783558 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2debbc32 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fa36ad7 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31751d6a ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3289878f ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x345ce369 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35887b6b ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3609d736 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ef25d4 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39129e9c ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a31b920 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cbff5e2 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45106327 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x482c7f03 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x484a24f6 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48580793 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a6dfc13 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ba1de4b ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e56131d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e98f8c0 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f7c3aff ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51442ef8 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5579fd11 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64804a9a ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x648d0505 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64dbbd5c ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6646d544 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68520c87 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68b39553 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69907a64 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cbd87c4 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cc79de1 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d7dd17e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d824402 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6db3643c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f36ad5e ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f6ef35a ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7058e672 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70e75cfc ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f46f44 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x726f8d6e ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73bea6bf ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x769da4d0 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76a24d9c ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83dad679 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8409832d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88bb5d7c ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89244e0a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a184cdc ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c6f0122 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x927a4aa6 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94a835be ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9619b1a1 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a5cc18c ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a60e7d3 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d67cab3 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e6ffa71 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f217166 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f391c02 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa11b2c67 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa70c81c1 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8a44839 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9647e28 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3167e3e ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb87a5514 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc33e79d ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd65ae29 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc222a79a ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7a2fae8 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc93b1aca ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccad39a3 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce8a2b9d ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce8fbcf5 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd12f9189 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3ec7b8d ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4ad60aa ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7a7e328 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda0ed050 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe00aca4d ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1e7bd1a ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe298d344 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe36a3211 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeba078da ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed9e69f3 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee04728 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf49387b6 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9b70d949 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe922913f atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf2adcc29 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x18cfc4bd brcmu_pktq_pflush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c14b7db brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x33f654ca brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x351234dd brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x38e0d003 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e145f90 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x628f4a72 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x85f951ab brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1b785704 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x832ea1ec brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x91f74a9a brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x96e1e850 brcmu_pktq_init EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xae35bf2b brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb57a74d5 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbc4a1939 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc15ae6bd brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcd828a98 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb30fcd2e brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xba23d66a brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc93d6354 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd1aba59b brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd35b6590 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd560c0d2 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 0xe9d5db01 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0198e8aa libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0af2ec42 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0d29b6bc libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x249c099f free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2a2e8b00 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2cef7c7e libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3549d93b libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x40c9189c libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x436a6fea libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x50c500ee libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x53f42212 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b80fd26 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9637de46 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9e570e8f libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb70acfe6 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbbedbdef libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd304e9e1 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd5bf177a libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd96997fb alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfba045b5 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04dbdc00 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x074f85a4 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ac77c68 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0baafab3 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1210a941 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13114743 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13412bc9 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13b7f484 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19982cf9 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d16623b il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dc24a1c il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24e07aae il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2808f9d0 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b7b1bf2 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd8a0733b brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe63c01f1 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0de25467 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d9ab669 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x316939f0 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3ae9f74e libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5604dfcd libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x599f4086 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62c81a7f libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x660ff6ca libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6e42bfe1 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xabddd066 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaffaaa32 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb7c41349 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe2aae6b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd4958ea9 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe06be001 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4e4ffb9 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeb14f1bb libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecae53eb libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfc2e4756 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfcbb8085 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x044f057d il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06cf3094 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0bd1b08b il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x101a8135 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1701b69c il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18c3e6c5 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19629d7e il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1980b32d il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e1fdcf1 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f10de78 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1faae2a4 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20716fb7 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27ed75d3 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2984d5b3 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29e9da0e il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2aa44bc2 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2aa6dd5c il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2adb4c0b il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2af93948 il_apm_stop EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30986a37 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x316c5556 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x347a662a il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36932619 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3723d36d il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b08bddf _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bc8f2a4 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ef19ca6 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fed6428 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40956a1a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c7b2d43 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d555314 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e495ebd il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ebd642c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3022c0a2 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x306952fc il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30e2a27c il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3107e57f il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3293e029 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x364d4b80 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36a52837 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ae3e162 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc6449e il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ebf2142 il_eeprom_query16 EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42d318a4 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46edc378 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb083fb il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x524d72a7 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53296839 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5414d72d il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59c397cb il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bfc3f1d il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ce34233 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d949c8a il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63b422f9 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x641af99a il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67c7e2cf il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68e529ca il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a0efe4f il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b0b4f93 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cf0e934 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ec52ca7 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70f7c55a il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77e51c52 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78e44e97 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e9eda34 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x815406a2 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87cb4a3c il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87f28c1e il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x885a4ebf il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89c40bec il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89e2b950 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d390da5 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x924ee3a2 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93486b13 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96667fb2 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x982b2655 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98caa2eb il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x417da86f il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42176558 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42d77def il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4472e34e il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x447a6dbe il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x495ba032 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a19fbcd il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dc61811 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ff7be99 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51237e3b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x522a53ae il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x580848dd il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d49f5bf il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ebc73b0 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f100835 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f72a292 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6130d900 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61ea661b il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x672122f1 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ca5ee89 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ef20aa1 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f47f49f il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x708b3a97 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71d103e4 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a203fed il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f40eb50 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84367950 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88bc568e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b8eecea il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8df39d17 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e7d3253 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f3760c1 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9395f4a4 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9729f986 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97bd74bf il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99e1c6cc il_mac_reset_tsf EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f5ca4c9 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f63d941 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa15bb903 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2ed4aa6 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa30c8320 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa50b9657 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa99ef93e il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaafe624c il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacf85332 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad4aac4d il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2051468 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb261b264 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb26836c6 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3a6db99 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3b0fd5d il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4fc2d59 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb58d94fb il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5d591cc il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f2522d3 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa088e80b il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1751377 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4c9d198 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa5bfc07 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1e63d1b il_write_targ_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7a3720f il_eeprom_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba9503b8 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaae8c29 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc374380 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf959c81 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc496dac2 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc783923c il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc83b33ea il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbd653b0 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcedf6cb5 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcff88994 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1a815f0 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5440404 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7924e3f il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd79f4ced il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda3e4d6f il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd7ee59c il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1da2716 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4aa6fb5 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9e82488 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4671963 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6cfaec9 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf75ba4a il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0d41b46 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5323fba _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6bbd5a9 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdf075ef il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfdeeec5 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc80e221 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd4ee341 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde2d68a4 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf43e566 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf9407b0 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0dea255 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe55c3661 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5640f2f il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7259884 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf10b65df il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf15bcb2d il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4508de6 il_add_beacon_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcd79c0e il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf89bb56d il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb0af4c5 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe2fd4c3 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe3927c2 il_get_free_ucode_key_idx 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/iwlwifi/iwlwifi 0x42701740 iwl_trans_pcie_remove 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 0x73e0bf1e __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54c81ae7 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6064b3eb __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88aeffb8 __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 0xa43a66b9 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4b58a5e iwl_trans_pcie_remove 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 0xdc668f6c __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0390c811 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c88498e hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0f43e774 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b305db7 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x24c285f0 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x373c429e hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3acb93ec hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x436575ca hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a8f7f6e hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x59b4fc03 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fe2accc hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x663753c3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x09b9fe7e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ff18022 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x40e88d74 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45a20751 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x47d0c178 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ebb153d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6229c6a9 hostap_init_ap_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78f62d48 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7af68225 hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f4c963e hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa196a20c hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8d6ccc6 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x88311f18 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e37f8f5 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9e939527 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaf12c903 hostap_setup_dev EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbfacf9aa hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcafab48f hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcd55bca6 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xceb66354 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5621b83 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xebee651a hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8521eca hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf8984621 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb5613f45 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9e7e4be hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc1f35a1e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3fde5be hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3c95ac3 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd93a01de hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5c6e247 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe8b01075 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xede158ea hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf65b0470 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf72e0047 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf7d4ff21 hostap_check_sta_fw_version EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0ca04989 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x18431789 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d41016a __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x264eb299 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x315dc9b1 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3e3f9faa orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4bfee44e orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x52e0c1a5 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x585b9f9e orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5991af8d orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x954554b7 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf971d52d hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfc0b5972 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x063dbfc7 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x097de2f8 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x396ee5c9 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5497506d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x629f10ee orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x682297a5 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7e8f7225 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x82aa95b9 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8d30aa22 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9110f53e orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa1e829f0 __orinoco_ev_rx EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xad285177 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb23e460d orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc059f965 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc6fa55ec orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc7f582db orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd791b1fe orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdf04bc3f orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffa2bb34 __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 0xef6f7941 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x1b4bff41 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x090855b2 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f304aab rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x155d5101 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16a6bcff rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x172bf4b6 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e4af79c _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xe675baea mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x9cd4189b rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x059d1f3d rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0934eeb2 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0983d17b _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ac6c47d _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c68ec5b _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0cb4945f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1eb9adf9 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20751445 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x224cf9a5 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 0x37d98cb3 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ebdd1e2 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50fcfd4c rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x513c0ba1 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c5add93 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cceb3f3 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7152ecbd rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x718363c3 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79bdae33 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e7b4e42 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ea2f0a1 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x813012c0 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8aecde85 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e3fab46 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b9b9cf5 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c5f02ec _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e528efb rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa46ee0a7 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4b0f2a8 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4f19262 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7b352b1 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb806ec2b rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc539e741 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc70101a4 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0c8738a rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3396586 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd74693cb rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4b33762 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf00f4040 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf28f9e08 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf296bc89 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7b092d1 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf80c218f rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcdb06e8 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff91dbfe rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0f256bdb rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3e823e01 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7311ab17 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb3618e46 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2740f47b rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6e4a9e4b rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc911f949 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf2d142bd rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x062fb215 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25dfb2d3 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2cafc60a rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39399e9d rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cc555dc rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ef9fe73 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40aea2f1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4760726f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c061579 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55ad5c88 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e44250f _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x636cb7d1 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7537d401 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7abf5bd5 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82db5551 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x855074e8 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c6ba39a rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d2a6385 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fcde19c rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9371e20e rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9387e9a7 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9755f6e7 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0a253e8 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa18fb3a9 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6700dee rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaccf34c2 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6c5079c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc780041f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce961273 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2cab44a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5c3959b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd9930f7 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf01ff1c8 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1a6da576 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x288120db rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4c64282a rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8eeeb0c0 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0002c64d rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2e901241 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x793e38f5 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb50477dd rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0837c478 rtl_cam_reset_all_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12b58a81 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a935ac4 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1526db62 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x189ed804 rtl_cam_delete_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24354dc4 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3016513c rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c61efea rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x245e2b97 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2699c90e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27754805 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 0x38cb28b1 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a2e6e46 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e9296a1 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52a778bc rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x428e388b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b68aa4b efuse_power_switch EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x551115b8 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d06f694 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67900fda rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8254d2e5 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c7afecc rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d190b55 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x616c332d rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65d0ecea rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b00bd0d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x795d64cd rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7be1b0c3 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x811cb535 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 0x933bd7f0 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa866fc90 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5235af2 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2c1d707 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6162932 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc98e7698 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd119fa55 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd23b1fc8 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5abe8f1 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd67f3d10 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb55b2d0 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe12b7c08 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe90e9b90 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95617cc2 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d755a20 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2218fa6 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5c1921b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa64969e1 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa93569d2 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa9d73aa rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac1a7bd7 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4f5726d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9828c61 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9c58740 rtl_cam_mark_invalid 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 0xf14da37d rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xface92c3 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x758bd37d rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xe84ba4f0 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x9e6ba9cf rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x71a9c2f1 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06f8c9c2 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d54858e rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f3b4ecd rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x120f11d2 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1227cfc4 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1247be41 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x145aa75c rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1642e55d rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17faa6c7 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e31bc69 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25ffcd38 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2684604f rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28a63097 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a2f1d6e rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d0b2279 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d68d0f3 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x324bc697 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee5d43d3 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeefd78ee rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5666086 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf947e6df rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x0fed3f44 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x922d48c9 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xe40d45f6 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x0bcf2ec8 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0eaf8aea rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ff6b6f6 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1024dd76 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x144c8b14 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18795da7 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19089d1e rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24ba2b76 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x26d009e1 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2756c3af rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2902c6b9 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f1d22de rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f335acf check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x333f94a5 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 0x346013cc rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x348ca316 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x34fd1570 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x361c2f28 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36ae190e rtw_phy_read_rf_sipi EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x374fc5eb rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37fd9f6c rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38b33a9c rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b4b1709 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4214e1f3 rtw_phy_write_rf_reg_mix 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 0x45da7491 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c2d3416 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4cfdaa3a rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51380640 rtw_ops 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 0x5a3093b0 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d4b2755 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60e0a3e3 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67709200 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6cd425ad rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d369873 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fcb00db rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81aed77a rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e3abcdc rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9003df18 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3fbabe5 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6e5c73b rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8224534 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8d77363 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab73e689 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2ef8788 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6917e40 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb88f8fe6 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9088251 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba5c96d0 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbda2d992 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbefae693 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf31ce9b rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9dc9961 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf0fb8cd rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd073b2e4 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8d7cfe7 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde09ee7e rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde16ddc4 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe094be11 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1b86228 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe31c04c8 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecdf4838 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2f301b2 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf73cd9c5 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf76ff9a4 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf881770a rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9e954ed rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa88d3ee rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa8bbe74 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x52a885d3 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6ca1c02e rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc927c67f rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xefc200ad rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x5a5881dc rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xc9ec3a57 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x53a45596 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x243a8766 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xbf9fcb09 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02fcd292 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04afb2b8 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1216f605 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c05a885 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c8b9ee2 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x234a73d0 rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x281fcb83 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2dc99883 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30f9c161 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3494732d rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37bc38f2 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x388afe6d rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3923bc9e rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ef3cc19 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45cca93a rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46ef7c54 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4937767e __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a3c1a8e rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a76e6cd rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50df1511 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5290a55f rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x54cbc5c8 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55f39e51 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5889b579 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a27600d rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5eaeb4ca rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ec610a2 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x60401925 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59f1c04c rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b7a9584 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bb5bb19 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x618afc36 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x619bfd36 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61b8629f rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63f40c45 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x669df1ed rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x704844e6 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x730d92a9 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x739a4e39 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76f5a825 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7daf1d30 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82de380b rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96c29d05 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8d28556 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf006a67 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb447dc3d rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba8f68f0 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc40f06ea rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc581d995 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc93843ea rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9c536ae rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca3734fd rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcce1bc84 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce7c5cb6 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf22c2b1 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf43b3d0 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf78686a rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf833b43 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe28a00d0 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe687c343 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9d6f9c7 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb083371 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed2e2b2b rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee6c1ce9 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3d9cf8ed rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x70059af5 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xed29c4ad rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf3c030b9 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x4223fc06 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xea6ce433 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x854d9961 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xf2d34b91 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x697607fe rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03dcda21 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06bac97c rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0afc8a95 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0dc91a27 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1246ef37 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12bc6f25 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x146c6b1c rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x165d5f9e rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2494d9a8 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x27588a6e rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x305cd647 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33894377 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33fe99f0 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36335a04 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x368fbdba rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c1e1484 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41a8df16 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5251ef40 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ae59e8e rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c588fd2 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x602a2041 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x609d4c7c rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c1ef66c rtw89_alloc_ieee80211_hw EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75fa6dbb rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x79743223 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7aac09b9 rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ca930fd rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7dba9e9b rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x83221207 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x84fc7cce rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8816fa63 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x989f3dbd rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9a456cdf rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ed9fdc4 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa5dba6f8 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac5db555 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad4b17c7 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc64143a rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc04712bc rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8f3d2c2 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcfe40a5a rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdfdbe47c rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0d8da1f rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f5e3259 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75470309 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7dc4033e rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x829cb457 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x857ce97f rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f860cb7 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91127e8b rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94e85075 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x96d26111 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x994b4382 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9e73c72f rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9f99dca0 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa8858aa7 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaabcd31f rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4e19614 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8b7701c rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc0cdbf8 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc10177b4 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc1e11d41 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc69b44c9 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf5b96bc rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0c05836 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2e877b9 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd75a7663 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb489f0e __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc014206 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc83595d rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0780544 rtw89_phy_write_rf_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe49e05ad rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6760110 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe713546c rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7ca8f60 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7e6f30e rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe8b55f37 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe956857f rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeaf836c1 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xefad74a8 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf13ffa84 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf248ce32 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x04cf756a rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x18e70166 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x22404125 rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x250a7a3c rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6338bbf0 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe618aecd rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe61e1344 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe70d8efb rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb47bee8 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeef67015 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf1c2cb6f rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf2f15535 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf34fbbe9 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x02da09b0 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x139b62e0 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1400abc7 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3e38594f rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x43acaf70 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x68b5dbcc rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x69e495f5 rtw89_pci_config_intr_mask_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 0x7a8d5b4a rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8234c217 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x82c9e206 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x990b9899 rtw89_pci_config_intr_mask 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 0xae646ead rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd4408627 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd6ff4a6b rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xda38e2b0 rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xde9b64d0 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdf548561 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe034fc91 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe6c21120 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa8e147fc rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc7f286e6 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe3169f8c rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe3fa5d35 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf5c1d022 rtw89_pci_enable_intr 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 0xab594252 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x230543b0 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2b06d21b wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x64961fd7 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbb7e0a38 wlcore_tx_complete -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x449ffbfe fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe2f67875 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x11d9e7e4 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x3133aa79 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x55f051a7 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6f876ca3 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe354be74 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x60283240 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4b2dc246 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xaba50f18 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2425d3b0 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3068ad32 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3f4f1367 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xffd54b0d rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe92ef809 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x10337edd wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9e47bc38 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc3add2c0 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc7f521f3 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0d8a3410 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa9c0b878 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8c38d512 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8da5a79b microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x70cec2a0 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7be4cb8d nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xaeef999d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x0fa586ed pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2f6f2f4d pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf3914575 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x125178ad s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5ca2f3c3 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x707cbb5d s3fwrn5_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xca96798a s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc75a0f15 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 0x042286aa st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x12446408 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cb297c8 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2678c24b ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5efbbbf5 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x82a3f033 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8cd57ded ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x94e96355 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9aa2df57 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6551986 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23b09d6c st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x45f367bd st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72c00f9e st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x73b9b896 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x748bb436 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d14ad21 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x868aaa16 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x88fe31f4 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa2abf623 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4a0bd19 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa7687fa st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab161b7e st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac618172 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd2f3b47b st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda5c096e st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4a925d8 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf669b41e st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfb8027a2 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/ntb/ntb 0x0ebb5c71 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x1cd628ec ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1dacc725 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x37e797e0 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x4497182d ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x47a82c32 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x4c2c8be5 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x4f481f1c ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x631a89dd ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x7facb2bf ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x82622384 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa8507441 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xa85216e9 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xb091697f ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc0f68ae3 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xc265ceb2 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc77fa901 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd98440e4 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xdadd7ff6 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xe5174125 __ntb_register_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x708aa94c nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xccf375ab nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x2398f68e __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x23db14a7 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x2e576042 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x470f3ff8 parport_unregister_driver +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x15fdf1e2 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x25e6a71b ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4979cabb st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c073265 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5092c5ce ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5a38fadb ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8d97be07 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb7688e8d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe47460b6 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfb3639c0 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3cd8a356 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5b1e8875 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62961ece st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62b29305 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62f76e83 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b3d7a19 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76ad4abd st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8a93ff43 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8ab3c4f8 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f76ca0d st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1397c89 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa5237c9c st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8c2f97b st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb4e6aa98 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbbc7836c st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc89064b st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe1952703 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed663f8f st21nfca_se_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x03767046 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1ccf80ff ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x1d87e05f ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1ee72080 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2928d046 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x2cfc9264 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x338b0357 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x43940b0b ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x533b32b2 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x5fe80158 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x6bbe4929 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x9bddebe4 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xab42e14e ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb2331ba8 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb47a2769 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xb4a7d898 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xbf0716bf ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xe2358b45 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xe867c190 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf9a0dd2f ntb_msg_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x341f54db nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x6a965507 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x01cdebe8 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0228af12 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x07388b57 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x0806868f parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x10301058 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x25fa7777 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x29c9e10d parport_release +EXPORT_SYMBOL drivers/parport/parport 0x2e51e5a4 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x392668f2 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3ac1931e parport_wait_event EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x53a56769 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x55558e0e parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x5831e3b0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4de1d690 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4dffa13a parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4ebec632 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x50a85956 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x582b6f77 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x59b690b9 parport_negotiate EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5f462213 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x661403a0 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x6aea66e2 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x7a59a7e4 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7dcb121c parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x8ad6e278 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x914d1fd4 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x99c7da4f parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xa1d8461f parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xa2adccdd parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xa609bba1 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xa7eaa159 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc3818aa3 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xc63c83a6 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xdc53a4c6 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xe4a1c1b9 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xe51bb591 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe69e0f54 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe8e49e09 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xf13801ed parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xf40ae724 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xf55973af parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xf77ea529 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf96f5908 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport_pc 0xb2fac895 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xc2ce27de parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport 0x5ef4615d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x712eecb1 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x844f2ddc parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8b53c86f parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8d1305f1 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x93031d28 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x943d432c parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x9762538e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xaa6ce893 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xadd65792 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xafa52c27 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb1c3f663 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc014a123 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf9652e93 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xfec91377 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x6a8cd59a parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x99a296bb parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x187b94cc pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x36b4ea3c pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x39a0d96b pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x697a0e3e pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x702befc6 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x89910586 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x93385140 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2d4771c0 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x70c53e6f pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x75b3f253 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8784c820 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x93efa8d3 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9f82298c pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa8796f65 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa87b363e pcmcia_parse_uevents EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xde836247 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe484406f pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xee169196 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefc70efe pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe8b63bf4 pcmcia_parse_events EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7710b2c4 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x14de6c84 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x32007677 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6ae2a9ee cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7706e46e cros_ec_register +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf0cbcd0f pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x17eb0468 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x630ce30d cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x64751b7d cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb1da68b2 cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xcea841eb rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xe730d699 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xdbe80dc7 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x3b5bebb5 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x79781d87 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15eb6c01 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25e6e17f rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x316de1a5 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fa0b5a7 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51286c38 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7099f4d7 rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7760eab5 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7cc80af3 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84cfe61b rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x913bf504 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x93c8d931 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d0751ad rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb62f3c9e rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5737e28 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde0ec681 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdea27921 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb93d512 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeeb0dcf6 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfd3231a9 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xdabff852 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2f75f1cf ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xc7e20e4a qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x24245b29 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x7cfec908 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11d30e56 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x22fd753e rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2df425a5 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3424cea8 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3667f7e4 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x39094f87 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x58b97b84 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x716f4fcf rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x717a11ac rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7276ed15 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa70a84fc rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad306617 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb65c4b1e rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd24e9856 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde94d085 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe36db132 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe4e466e6 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf107e768 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf5442537 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x40332cc9 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xce2f5a17 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1da9b7b4 scsi_esp_template EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x89f72359 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x91da776c scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb1285ddc scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xee3f50a5 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a5a9429 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6723ed13 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d32ca12 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x77b3d90a fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x82fb7e65 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97134f17 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2635fb8 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd84590e fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbef29546 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc85bf15e fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd8a9fd60 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03387aa1 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07f08ef0 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x105ba330 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10d87f53 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18ae2115 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b8b9a57 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x558fcdd0 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbc9781e5 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd4cc1ce0 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d9a8d24 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2aaefc5a fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35d4f29b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x51c9d77b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6316aa46 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67b191d7 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ce63960 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf567ee4 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd0fa407c fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe04694ab fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe818b510 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06261b81 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x092e9c7a fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1defb8e0 fc_lport_flogi_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c599d39 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d0b86b1 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f374639 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3125f0e4 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31e9ac58 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x406b5e43 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bf53aaa fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ce2f2a9 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dabf295 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34339142 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d98a429 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f518bda fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41915851 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x436c71c8 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43cbc2aa libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47d6b4ce fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48ca4ebd fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c6225df fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cd0d3e5 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cea3ea3 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52d22f0f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5375ce4b fc_fabric_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569dd730 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x579c9862 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f117606 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61763a1b fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63d2d206 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65b07cf1 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66062c12 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c2f1548 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fb0a7cc fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7677d66c fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76b5e141 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77b76f80 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c387c80 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e2bc585 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c6a0945 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6cbf0106 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74ecdc4f fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bb0536a fc_exch_mgr_reset 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 0x826927ff fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c80a449 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x955fcc54 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bde678a fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9526f964 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98d17d50 fc_queuecommand EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c88ac43 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ca069d2 fc_lport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9de51b6f fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2180277 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa22449f4 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4700d24 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa63214af fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6e1c627 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa948c0ba fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabeca7a7 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad4ad080 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae9ef4f6 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaeab4a80 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaef8e90a fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb08beeac fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9170818 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab1027b5 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac323fc4 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad243622 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae0d7226 fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6fe506a fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9929529 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbe93531 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc069cde fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbb4ad86 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1daa7e3 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc522d3ce fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc60d1c7b fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc4b15a2 fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf1bb7f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce3fa43c fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfd92049 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8cb0123 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd914224f fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2879bf8 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcebf6f1c fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd60a94b8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaac659d fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc702a63 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd5c25a5 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4500415 fc_fcp_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9c58524 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea9e05f7 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe813eb2d fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebae667f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecfd5b38 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2867ba6 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf47213b2 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf15a54ef fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9ac09de fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe909f77 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd539037 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3053bea2 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x50e8dfd2 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc5e4c3c0 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf637adcc sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfa2bb2d4 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x6fd314c0 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7d066db2 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe2a1a259 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf42fc988 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 0x09656b3f qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1cfa7669 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c82a914 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x39d8ea5d qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3a5b40b7 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x68882cb5 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x79ca368c qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x802a3644 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f64f82e qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x976317aa qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xddb94c4b qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xea6aeba1 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x076f768f raid_component_add -EXPORT_SYMBOL drivers/scsi/raid_class 0x6d6edfc6 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x776f6678 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x109f415c fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x302a5bb9 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x305c8a56 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x31d980fd fc_vport_create +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xc81b3b8c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x050b7c31 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x12b91803 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x480a9440 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4950ca68 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x51f2b818 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73b38cd1 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80d8ece9 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96df1e6c qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d5806b5 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa2e89b74 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbabc374f qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe35b8b6 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/raid_class 0x580bf8da raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xebabf47e raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xf957245c raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04b45492 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x33fd5cc1 scsi_is_fc_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41bf64c1 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4547fb18 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x50399899 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x516f5103 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6302d93d fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x630b8aa6 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6393f211 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6cd86409 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94f0e621 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8935682 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3e669d6 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xddd7922d fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xede2f0c3 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1115ecb4 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a4ac934 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cf973ef sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d0e3bf7 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22765196 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2734d983 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f3e9235 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x328054d1 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3fc6ee8b sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f025700 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x684bbd32 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x696d5217 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6978c1d8 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7afd944b sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c89c20c sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a000b4e sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1a223ba sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaafbf6d9 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3512232 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4865460 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc308a119 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcaaea803 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc7278a1 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe38acced sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec199681 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeef05c12 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefc378ed sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf115a039 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfce45560 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39492c3f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f31bfed fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d1a2cd3 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7018dc33 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x704c4e3c fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x71b4bed6 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x731c33b1 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x73e91de8 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x84108344 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa2a26101 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa4e404ee fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca6fb3d5 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe562879c fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf43a40e8 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfab8d682 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x073d6348 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12e4e81f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b6bc55d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f4020ba sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x271e2b1d scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cd39f93 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e03ae09 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f0da43a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58f753d9 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a688edb sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6079ac7d sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64d55366 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6734b454 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6aa1e6de sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f26765d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73acae13 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e123059 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90cbc5bb sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90d5e426 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa5c76567 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5d836bd sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbac706ad sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc82818e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc70bb15f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbeb3936 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7193b78 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe95a284f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee0a77b7 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf551c11a sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x13084ee7 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x143a75e0 spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x394924b3 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4eb9281f spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa2731169 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc41762a9 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcecdfaf8 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x19b15740 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5a45a7a2 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x678b71f4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7997fdb2 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2b8d3fe2 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x44f0ebcb srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5b0d9473 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x62b51fe6 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb824edaf srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5b7ad8ca srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6eebbaf8 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x88b7c7f6 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfdaf5e27 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 @@ -4496,456 +4496,456 @@ 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 0x1bbf6242 cmdq_mbox_create 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 0x413eebc3 cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll 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 0x64306deb cmdq_pkt_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 0xa40c93c8 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xabe35a8a cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xb8490607 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xbed9f8b2 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 0xe6c0c276 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfc46df58 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x88919fb1 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf45b8726 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 0x008d7f59 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x11bcb523 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1baeaf03 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3c67c0c3 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x530722f8 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5946c060 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5d4778e6 geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6254155e geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7c124396 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x896b67a9 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x93a23890 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb7300bf1 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbf51afe2 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc2b88764 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xda9bed8a geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf39c789e geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf6775009 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x45b41cae geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4f95784b geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x647f3385 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x65a0e04c geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6fd82397 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7322878c geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x76bcd242 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x81ee6eed geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8dafbfb9 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa612fcdc geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa9680fb3 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb133e376 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb2c65e57 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbe0f70ab geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc1a4546e geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcf32ae5c geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xeb67a61c geni_se_resources_off EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x3dfe0c72 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7cee1ce8 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 0x2edd0175 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b0e716b qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x53e5e911 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5680e47b qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x52714189 qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x61b3f5bf qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x820b666e qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x840d730a qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x87c0a236 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9015feab qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbd6bbcb8 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd7eff288 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd813148d qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6672cce0 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9ee71039 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xabc8a3b4 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb146e203 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbe98451a qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc06b5d48 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfaa33bc9 qmi_send_request 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 0x9e1b2a12 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x07b8923a sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15444623 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x6fe8a0b4 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x06c64c39 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x07825057 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0da817cc sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b835cbe sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c9cbcbb sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c66977c sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2056bdc0 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1eb941a7 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x202c076f sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x211aaeb0 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x29800920 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x374502fc sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x397b6f35 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3fd6445d sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4146e18c sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x44fac1d7 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x46c46ea9 sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x53ce6246 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5452202e sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x56d976ab sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e0b9d77 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ecdb5d5 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x66302ce4 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x693347b5 sdw_show_ping_status 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 0x72384f07 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7851c210 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8137672d sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f32c207 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76953b88 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x808209a1 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x84071833 sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa2b08596 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa5d1f3b sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb24bf94d sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa53efc16 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa57c97aa sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa675ebc sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa960aa7 sdw_slave_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbb70dc18 sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbf0971e7 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc282e6c9 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd860214a sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd9073c26 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd9d641d4 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc52c4d0d sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcfd5bda7 sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdfa4142b sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec9d58de sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xecb742de sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf3d5f371 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdacac421 sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x08ba9495 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0b3c0f5f sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x12c151b1 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x14d8e7d7 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1cedf817 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2f083777 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf729a4af sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x29743b35 sdw_cdns_clock_restart EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3c45c072 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3e48a103 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x496b55a9 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6b1acf99 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x78782a9c sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9bab95c5 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbade159c cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc0e1e9fc sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc7c18c68 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcfe38959 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdeab239a sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xa6ce7e27 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x00c21c3b ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x2c1a6c49 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x3240e54d ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x3b47c0c3 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5e69142e ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x67480559 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x67bdddbd ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x7270d0af ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x85f4a24c ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x89c5878c ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x953b998a ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x994d7c77 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x9ed54887 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xa9410f43 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xace53a3a ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xafa1811c ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc3c08076 __ssb_driver_register +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x387a7d22 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3efbfd9a cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x42f1c971 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4c8e05ae sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5a0e56ab sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6719488b cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x77469f21 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7abbfce4 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8f4b6db5 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9c5aee18 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa25b5d6b sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa9299d56 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc50a634c cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc7302bb7 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe9dee791 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfd211742 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xbae93ced sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x0dd0d1cb ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x0e59ad52 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x1f1571e5 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x27803cf3 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x28b98374 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x4fbec0c7 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x5174f0ad __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x51c79b0a ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5268ad7a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x52dd66bf ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x5d173a89 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x6c6e2ff3 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xabfe2339 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xb4d141cf ssb_bus_resume EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xde95d671 ssb_driver_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe403c7b6 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xecd9469f ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xf75808bb ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01a30403 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ba601a7 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f34b718 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x194573de fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x220481b8 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x228d1fc0 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22c522a0 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2332d724 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25d9a719 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c2ffb94 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x402065f2 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4fc9fc18 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51149ec2 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x53b15019 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5bde33bf fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5dd5fd2d fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a275872 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94a3a5e0 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9eb71aa4 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaaf5e1b8 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc90ef208 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc940d7a0 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf486516 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd3c8cc79 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe4d5fc41 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7b56b95c gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x81b8b11c gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc646be82 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x608671d2 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe2ea36fb ade7854_probe -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1151644c nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x88c49b1f nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x059c5c2e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0643c069 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08eaa358 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cc4d533 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11b0a447 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x175cee5f rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19ad41d1 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c110179 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/ssb/ssb 0xe05fb746 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xe1e199f8 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe4d7c371 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf356f517 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf90b0457 ssb_clockspeed +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c2a8946 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c9f7fff fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b128028 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b4682f1 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fe544df fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x512a51d5 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x553b1115 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x565cd1a3 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66fb26f0 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6e7756ae fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b45a007 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e243be7 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83b536b4 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x871d434a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8bcd927a fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ec96254 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a1a7c28 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa183e3d1 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba0aea54 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba2b987d fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd16c1882 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd843b2f9 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe19cb718 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe771ccf9 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec649bb5 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x536e8b19 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x62c1977a gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa8686d33 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8c57f675 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x5184ca5d ade7854_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x9b3929f1 nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xf106ad4f nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0289f105 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c19b8ca rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0fb38929 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x130583b5 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x147caeaf rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x272529f4 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x297c57c2 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32741a88 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3739a22b rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x399aa20e rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3dad8110 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46afcc67 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4768e72c rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a3724a1 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d63bded rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53486547 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x545faafb rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56ef7d8e rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c83eb86 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6183b601 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x650fe2d3 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x658df2ae dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67e11b29 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69b85a94 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6df3ead0 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71d2b88a rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7af3b284 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8eb567ac rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x906297b3 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92d4aad1 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94fdb5da rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9da3745a free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ea9ec73 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f4f9efc rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0d098b4 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4d1e3b2 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5755d81 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc27fabbc rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc425e6ec dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6f5c1a4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x256835ef rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26bc7abd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x291ae336 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3603e919 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x445e3dcb rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44bf3b49 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x478110b4 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a3a82f5 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ac06506 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cb6a4fd rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d50b3f6 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4fb15e7a rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59aa0fc7 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b84882d rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64babd71 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64e3ae28 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67868bde rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6991f588 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70d425d7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x730b08a8 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80222112 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83476bb7 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8797cc18 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88403bae rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b3faea5 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9218f829 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93a21a4f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a874996 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c7af9c4 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3bbee84 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd5877c0 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd073c46e rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd263da42 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9675f03 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb2b15dd rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd9d49da RemovePeerTS EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeef8a974 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf24a61df rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfad82b1f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd718a07 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfdf949b9 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffd4ce67 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x003403e4 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01ae6fd7 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0314c775 ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03b6e2fa ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a0e8ae0 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x176116f6 ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e01265f ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2259dee8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe259a11f rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8da001a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefa10dc1 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1577112 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf27d3217 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf332a992 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7c463dc rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfca00042 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01d18826 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05523db2 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x194572ce ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22e27fa4 HTUpdateSelfAndPeerSetting EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x248a867f ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x304e929b ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33bd9360 ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b999968 ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d6b50ed ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e9d3ea3 ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x414ded5f ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49031610 ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a23e238 ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57360312 ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x573cc8f7 ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e560302 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x257e917a ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30429124 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31aec97b is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46826114 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49759fa0 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d61b146 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54992db5 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54ffb600 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56f03ff3 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b532a2f ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x627121cf ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x651c4459 ieee80211_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68b9763d ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d2b6048 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70184518 ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7384a4e4 ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x806f2421 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81a4c7e9 ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x836f36c9 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85a486ae ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91997dac ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa95a5d4b ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae3f39f0 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf339d18 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2846d0d ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4ec95ed dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb549473f ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc599802 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbff1c699 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc39b58cd to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc57bafd9 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc718c645 ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc761def3 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e83b3b ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8ae58e1 ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8c0f436 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72b264a3 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x731e3364 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x774795c0 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78e18c48 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x799a4b63 ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84ec0722 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89324e06 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8da3055b ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fa848aa ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x901355bf ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96cd108b dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97cd582d ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a18ed96 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b359f11 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ee9f129 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2698e93 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa6dc076 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab7e9ff5 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadc06347 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf084100 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb040e000 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb64e0f25 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb83f572b ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbeaa1777 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc023b8d1 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5708291 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb4a79cf ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xced91c47 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0ca30d4 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3671153 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc9772ab dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1ccc72e ieee80211_stop_scan EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5251da1 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe768d270 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7a0640f is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe86a9848 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed0117a9 ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9b56b51 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb3b7805 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc3ef007 ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc7e6272 ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x002d0de6 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ca949dc iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ec22013 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c8702f2 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21c0206f __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21cb65a3 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x328c7b6c iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35ff3ce2 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37c2c881 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3896aff2 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38c57f02 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3930d3c3 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x441d283a iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4af3bafe iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x514b645e iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52d00efd iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54429f19 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5de27f12 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d0d219c iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71292328 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74fdd8d9 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x757422ea iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cfb6859 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80e190a4 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b6a0f4c iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8daa3048 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x903b2add iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x964b093e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa635f35a iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbba8e134 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc09408c5 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0e2760c iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1bbcde5 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc95d2a3e iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd6ef658 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd78db4d iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9bed9d3 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbb6bda1 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdcb3f340 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe58dd79a iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeafa3cb8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf38efccd SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3eb6795 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb789f4a ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfde1d61c ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdf08e29 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05d4eb33 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0749cda0 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c48d83f iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x128f0e7a iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17025236 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x190c132e iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21b1ffa6 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2afb66af iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b6c74fa iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ca1c350 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d033500 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2edb767a iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x36264547 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bd99698 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40dd11fa iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57324fcd iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5782781e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6dbad547 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76b25df8 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x787662f8 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85324643 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b82f8df iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cf9aa1b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x901ec969 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x921bed92 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9409166a iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e0515b5 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e3bea62 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa76fb036 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae19b399 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb053c1a1 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb13f5d23 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb339a10c iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6e603e9 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbeb04fb5 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc43f04c3 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc830820c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcda64d38 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3705f84 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf99fca1 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefabf8c4 iscsit_sequence_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5171ee1 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf73feb94 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf90b9e46 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfed156ca iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x02812dea transport_register_session +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf518a035 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa98a1be iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfec1669c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffc95444 iscsit_response_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x00ff53df transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x058fa3fa target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0733b3a2 target_configure_unmap_from_queue EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ad69d6d spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c5bba06 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ea9ffd6 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f304e39 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x099965cf sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a89e09e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f9bbff5 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fea5f15 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x12a1f6f4 target_lun_is_rdonly EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x159417e4 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x16837c19 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x170aaddd target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x174b194e __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1850026c core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ad2083f target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d4ccf92 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e648203 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x26415d26 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2786be6e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x29467867 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a57cec3 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fdb2c75 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x178f0be4 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x18d24119 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dc6dcb0 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f93160b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x21984c11 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x29b3a75c transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b5788b4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bf89b43 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ceec5e4 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x32740e39 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x34daba13 core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b0398c0 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c5911f7 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ca1efa4 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f110190 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f14950a transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x4397d2ad target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x456710bc spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x45fd7f57 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x46422d88 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x46725aae transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x489f9ba5 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x57d3d762 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x57e76b69 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ec6a2be transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x40182455 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x405912ea transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x425f0e54 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x43959294 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x479f3522 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ee4fb9c target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x5299a795 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x54cc2b6d spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x57ace296 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x58ba4332 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x59bcc979 transport_lookup_cmd_lun EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x62f75a82 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6776b05f transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a029ad5 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b6d0e25 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x6df7b734 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f953bbe target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c8d7f7b target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x82818e1f target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x848577ca target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x88f13c15 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b5754b1 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x90fe4949 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x98d82163 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3fc1f34 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9c3ee04 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xae5dab9d sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x679d7db5 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x6eda5a76 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x722776fb passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x76bc6954 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x76e22c74 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7938adb9 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c50d97a transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e3a2642 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ea92286 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x824c48b3 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x84a91017 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8806e733 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x88f30fcc sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x8908fba9 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x89ce9e77 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b697372 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x913a3bfd transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9705c00f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x98895893 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a3ae7b4 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa97b8a42 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa4f5c20 core_tpg_set_initiator_node_queue_depth EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf05977c target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1ae7e2d target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xb83a09c7 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc715d0a7 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xc861115a transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0fb0f60 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd108fc27 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1a84ecc transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xd22da8f5 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xd69a74ab target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9731920 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf53c234 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3606038 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe975f9ac transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xec729a64 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xed8ad027 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xee3bacef core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xef0f8f3b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xf044a60f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbed302b7 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1ec5b93 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2f14ab9 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc44dbf8b passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc97d6102 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb605be1 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcea6035d target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd14ba503 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xd15a7ef0 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xd62d1497 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb30fee5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd4cdce1 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xddc5835d sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1e4fed2 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6c74504 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xed108a91 target_to_linux_sector EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3da5303 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xf66717a3 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7121d0b spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa973a0e sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xfea02831 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xffcf1b56 target_depend_item -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3e8fb228 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x44c6155c ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x54c3b870 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x773e64fb ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9a3487b4 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc063b392 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc298643d ufshcd_shutdown -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xec80d41e ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x1e1f15c1 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x22a11aef tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x2391509b ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb41da4a8 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x62c7095a usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x6c252e4f usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x04e368af sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x03b07475 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x16416456 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e683781 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x279d135f usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2bf17a3c usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x339c0767 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3e9e5866 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4610e951 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6539dc41 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89eede43 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe913fd01 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x06cd61fa usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb7cb4dff usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0x912d4e52 vdpa_set_status -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8c091d15 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb7a0413e mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbe2d4b43 mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc863e875 mdev_register_parent +EXPORT_SYMBOL drivers/target/target_core_mod 0xf60a583e sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6a21e2c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xf71bde1a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfedb16fd target_show_cmd +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x09252b2c ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1e61d677 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6006c440 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x69d7394a ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7df33abe ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8b0cd1b2 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9b1f9750 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe647669b ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x1782713c tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x7bac368f tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x206e43bc ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xf2ec86c5 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x002b651e usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xcc1e145d usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xd6fbfc0e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1d344bdd usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2a57f093 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x60f1b646 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x78558b68 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x910e1723 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaa11a32b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad811852 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc5aa3c3b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcbe8cfb5 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd11314cf usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe3b29a80 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd1e8424a usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xe6966fb6 usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x994201cf vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1134a2ef mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x26cdfab7 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x32fc9ea5 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x38cb784e mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/vfio 0x15c418d3 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x4eedcad6 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x6dc7b3fa vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x960e889c vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xcd874cf9 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xcee5036c vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x0d3afd69 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x626dad1e vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x998f4f39 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xba2d4bd7 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 @@ -4976,134 +4976,134 @@ 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 0x48131ebe devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5ea5f562 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc5d3ceb4 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf7f0ab86 lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0a3e7e8c svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0decd789 svga_settile +EXPORT_SYMBOL drivers/video/backlight/lcd 0x12c9be0d lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9d2f5b2c devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xaed5a968 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe76fdb9b devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x154851d3 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3723e300 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3bd15654 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x381bb33a svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x58a9bf5e svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x723cf63a svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7919f730 svga_tilefill 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 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb442ec33 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb5af8ea4 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcba9bf2e svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd40bbe1b svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd60d8c17 svga_tilecopy 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/syscopyarea 0x34945b7e sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x4fe4f894 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x0e49b828 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xef6334bf sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe918816f sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xf8991ee8 sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x33f47ccd cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x8c654afb 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 0xd9fba9d2 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x6110bf1a mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x408f89bf matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xea279557 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfecfe728 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x418bf1f2 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x62f3b573 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xad357e3d matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xda4d052d matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x8e8997f1 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x1151b2ab matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0198895c matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x14ff8f7f matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x21eb4c46 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xed565f27 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xe660b1bc matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xff50b89c matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0d702b0c matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x151c1bc0 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x89f5fffd matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9af1bd30 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x022b085a matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x078112d3 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x17529e40 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1839d869 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x1d531186 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x748e9df9 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4133d4c7 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5da93824 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6e5796c4 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xed4980a2 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4cedf282 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc0ff3345 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1e94d0be matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x371bff2c matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x61b6c9c1 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8a266d80 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcbf858e6 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x540bb66d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5829a8e8 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x75c570d8 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x882a631a matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my 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 0x2e05553d is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x320f86f4 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x621633ff virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdaaf7c80 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x36267ef8 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3681273d w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb4590469 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf7d470de w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x2611e56e w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x2a64fd07 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xca6a2bea w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xcbbcf9c0 w1_remove_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x0b836a87 fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0x115a7a05 __fscache_unuse_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x124582f0 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x1471254e fscache_wait_for_operation +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3979e1df virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7abf656d virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe7f57422 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xea11b40b virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc8549ccb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xcbf9e1f0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb5153862 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdd86a825 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x1ce3a617 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x9d332273 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xace5a360 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xfc38f993 w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x07d4596b fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x0da06c37 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x178f5bd4 __fscache_resize_cookie EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x2f313ecd __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2e502343 fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x31624e6f __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3666ad82 fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x386e6cff fscache_resume_after_invalidation EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3facfb9b fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x43d3915c fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space -EXPORT_SYMBOL fs/fscache/fscache 0x458c295f fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x4745de5a 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 0x4de74b02 __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x57938d70 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5a1c79d3 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5c37ab64 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x618fd5e8 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x66feb0a1 fscache_add_cache 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 0x7457df68 fscache_acquire_cache -EXPORT_SYMBOL fs/fscache/fscache 0x750707c9 fscache_caching_failed -EXPORT_SYMBOL fs/fscache/fscache 0x88529b56 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x710ade48 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x71dc3840 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x84025ed6 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x86b78e45 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x8f521ac2 __fscache_clear_page_bits EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x91962af1 __fscache_clear_page_bits EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa9005751 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xac356e70 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaab32c1a fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb1fa8b50 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb60ac67f __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb99e918b fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc92958ce __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbcf88c73 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcc5ab896 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd4a6c2e7 __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0xd5d94139 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0xdc105150 fscache_end_cookie_access EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xe1019a4b __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe336546d fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf600a241 fscache_relinquish_cache -EXPORT_SYMBOL fs/fscache/fscache 0xfa9c4b62 fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xfc0e339f fscache_withdraw_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xff922555 __fscache_begin_write_operation -EXPORT_SYMBOL fs/netfs/netfs 0xa94fc37c netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xb01fd20c netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xd7c0d691 netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0xde2c95a4 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xfa2b98f0 netfs_readahead +EXPORT_SYMBOL fs/fscache/fscache 0xdefe3862 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf19fdc87 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf27a48fb fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf2ff2412 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xf9143a89 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xfcda63b0 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfe007c47 fscache_get_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x2c91eb45 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x63a3ecae netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x6feaa2f8 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xa5be7b18 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xdb0d1c1c netfs_subreq_terminated EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x920471fa qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9cb953a2 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x9ce16dea qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb15bdfa0 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xe8b9d8ad qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf4550220 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x09651289 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x152762a9 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1d552faa qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x4591ed61 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa74b4bf4 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb2001eeb 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 @@ -5130,14 +5130,14 @@ EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x77ff614f 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 0xabf5881a lc_seq_dump_details 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 0xeb947a2f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xea29373f 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 @@ -5176,848 +5176,848 @@ 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 0x274bfb13 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa7366140 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe97e8d8 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xed9f7ef3 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf41691fc lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf8e4535c lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x608b1ec2 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xe38b2166 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x81d7d8db unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xa6339fe9 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0d2cd4b7 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x0f0a8121 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x1564ba03 do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x1755cf1f p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x17c81135 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x19e83092 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x1a794a49 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x247ce92c p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x2a6a620a p9_client_begin_disconnect +EXPORT_SYMBOL net/6lowpan/6lowpan 0x509fddaf lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x56769227 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5bcfbb6e lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x80805039 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc7273396 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xeb9007da lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x5c978024 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x5e19d06e register_8022_client +EXPORT_SYMBOL net/802/psnap 0x0f26cedc register_snap_client +EXPORT_SYMBOL net/802/psnap 0x6f003aba unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0080da53 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x0ed31a37 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x137f0f80 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x1f78d1b8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x23f2141c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x27ff3901 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x299a46b1 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x2ba39b3e p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x2ed7f7c3 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x314dc2c3 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3717f05a __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x3a369299 p9_client_remove EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3f840c0e p9_client_unlinkat EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x47be7165 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x49e16563 p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x56e2cdb5 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x59dd24fe p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x6b5d5f9b p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x6e37b2fc p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6fcd1b79 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x75225503 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5430cb7c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5bde3d0d v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x5c963aae p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x696c2a88 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x6f1ed338 p9_client_readdir EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x7e0cb12e p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x8ad2e361 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x8f269d5e p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x943af319 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7fd1ba7b p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x836185e8 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x897ed56d p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8a88e97d p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8afd19e8 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x8c539d31 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x8d552df3 p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9786c393 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xa51c7c87 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xac4ccd25 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xb2c9b0f5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x975c1667 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xa1c69734 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa7069a26 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa9428952 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa9bc28e8 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xabcc4c8f do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xad0da390 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xad5dde7f p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xbb2bc05a p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc0271777 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xc2cd09b8 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xc4a5153b v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xc646b569 do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0xc8829397 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xc9818334 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xccd79e3c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb7bbcd71 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xbb1a602b p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xbb9a74fb v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xbcc26b2d p9_req_put EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd66cd65f p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdb10411d p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xdeca0d75 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xe54a9a5e v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe81655c8 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xeebc5cc6 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xf0f3d655 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf19c904c p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xf624f621 p9_client_clunk -EXPORT_SYMBOL net/appletalk/appletalk 0x460789ff atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x6d35b0e1 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x85876453 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x95791c2a aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x083ad919 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x16b1e8e3 atm_init_aal5 +EXPORT_SYMBOL net/9p/9pnet 0xe9b0a7fb p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xea958761 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xee5524ef p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf28b18cf p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xf43c54c0 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xf7a11f45 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xf7bf3bf2 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xf846c9e4 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xf91be864 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xfadfc450 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xfcf24dff p9_client_renameat +EXPORT_SYMBOL net/appletalk/appletalk 0x4de0d17c atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7591fe1e alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xafe79ec0 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xcada43cd aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x147c5d30 atm_charge +EXPORT_SYMBOL net/atm/atm 0x168a51b7 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2c465e2c atm_dev_register EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x375cde25 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 0x457e7f8e atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x5b214271 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x648851bd atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x66f2d453 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x6b8468b4 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x6ff2c2ca register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa06e6547 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb331e183 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xc5d8437f vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xd4bd6461 atm_charge -EXPORT_SYMBOL net/atm/atm 0xe32462f5 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xe8073e40 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xb4269e0e atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xc2875fec atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xd2aa72ca deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xd9411a2b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf33ff334 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf4ec44ad register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xfb1f4a1a vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xfa65cf09 vcc_release_async +EXPORT_SYMBOL net/ax25/ax25 0x148e1498 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 0x3466d1da ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4e415c1e ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x55dd131d ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x77f4aaf3 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x7f471df6 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x54e775b6 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x990af612 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xb963cbde ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8f1c1f91 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x9fb9f766 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xaf4a2f75 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd0a79f47 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd794ef20 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xe4d36539 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf94e19cb ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06665e8d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x000a5d98 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x038fda5d hci_cmd_sync_cancel EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x08d22357 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a935683 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b54c171 __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e1f7cef bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20916e2d bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20cba89c hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e41c3bf bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fffed49 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x184416fe __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cb43604 bt_sock_recvmsg EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a040784 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bb28271 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x318dfb6c __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35774cce bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x37cc90f3 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ae7c704 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x573a3cdc __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b7211c3 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x60aacaf6 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e2547c4 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x76bb69c1 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a4fd185 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a8457e5 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x216fb861 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e96e836 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x377cdfac hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4be98e3e __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c3ccd41 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d538237 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ff7280a hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x622715e9 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68cfc614 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a43c962 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7580e018 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77df6232 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79f6a68d __hci_cmd_sync 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 0x7d303ea0 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dae5b05 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7daf98f8 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x852a76d1 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88b83f77 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c1ae7ac bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cf24389 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81d74292 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x848e9e7e hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b71fca4 l2cap_register_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x95fd83d0 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d3f5135 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f2898ac l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa12d4251 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa32b28f9 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa64a2019 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8351f7d hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xacc315c9 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf1d142c bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb01e583b hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0e1a721 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbca40f74 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfb015c7 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5383420 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7ef413f bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca482916 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd010857e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x926569e8 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x928320f2 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x989c510f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f6d7116 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0bb540f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa33fe584 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab300e6f bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xac67a992 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad27e998 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadac318a bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae2a9981 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb214a4d0 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3383585 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb447ef04 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe944fe9 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2e2f0ba bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8735b58 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf20ce8d l2cap_chan_close EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7934e28 bt_sock_reclassify_lock EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe088a386 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7b97a7b __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeddf6266 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1243de7 __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf31f124b hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfec596b3 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xff4cac3b bt_accept_dequeue -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x782f7995 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8e25ff6f ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa63b553b ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xca10dbef ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd339780e ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xff14f5ef ebt_register_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8203467 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedd46a84 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2ce9ea3 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3d7835c bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa258787 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb69cb37 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe9622c7 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffb02945 hci_alloc_dev_priv +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3e2b396e ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4605df62 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x46bc715f ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x618ef91d ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8e38a55a ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbeffe300 ebt_do_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x21bdfd0f caif_connect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 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 0x7307d1c1 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x7936cc2f get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x4f9ffcf8 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x77c14f7e caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x7edda96b get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xadf1950e caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xafa63dd6 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xb2c84f83 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xab4df177 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x4860fedc can_proto_unregister -EXPORT_SYMBOL net/can/can 0x7c733232 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x962dcdb1 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xbadd5e68 can_proto_register -EXPORT_SYMBOL net/can/can 0xf7a8a57d can_send -EXPORT_SYMBOL net/can/can 0xfa008a9d can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x033fd35f osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/can/can 0x3efd338a can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5bfcb68c can_sock_destruct +EXPORT_SYMBOL net/can/can 0xc3306a63 can_rx_register +EXPORT_SYMBOL net/can/can 0xceb5ac45 can_proto_register +EXPORT_SYMBOL net/can/can 0xd73c59ed can_send +EXPORT_SYMBOL net/can/can 0xdfe60bcc can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0103072d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x0277add9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x034bd9c4 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x09119b7a ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x0ae71a7c ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x0c8c835e ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x0df69720 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x1303d89a ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x07850532 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x08b838c4 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x092c9bd7 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x0b018bcc ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x0bb1cf24 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x0bebeea5 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0daed248 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x0e2ebd54 ceph_alloc_page_vector 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 0x166b82f8 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x17670b76 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x18d718ff osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x1b6204e8 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x201fb0cc osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x185fd58d osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x1a62f080 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x1aef871f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x1b1574c2 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1f532d64 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x24653185 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x26b7dd75 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x27dd7c85 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x22e59ff2 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x27aebd7e ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x27b21383 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c32f003 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x2f2bb87c osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x3353247f ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x33db68cd ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x36b488bb ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x377e9e03 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x2ad9a2c0 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x32a6b5b1 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x3532ef8d ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x3664b762 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x37298243 ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a65d440 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x3a9b8f59 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x3b850a44 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3cbdf556 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x3f6338b3 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3d0083fa ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x403ec2c6 ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x41958e6a ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x42cdd4a9 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x43d0d21a ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x460f5d5d ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x44b78112 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x478c0080 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x49732d70 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x49b7bc66 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4a3bedc8 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4ab63e11 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x47296277 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4d77aa36 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x4e98a40f ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x4fec6956 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x4ffeea9d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4d752e70 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x4ed87e7f ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x4fd6b2e7 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x50476029 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50e5f2a4 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x5160db69 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x5412b77e ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x557a2703 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x557d9f67 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x506eb5ef ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x535f07f3 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x53e5bbe3 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x548d6f46 osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x58e63763 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x59229760 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x5a547934 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5a14a2ca ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5bf6dfff ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5c2c5978 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x5d044f36 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x5e48edee ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66a7dc61 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x680c3124 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x64147967 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x66ca7677 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x68685337 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x6962ab22 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x696664d8 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6ae94448 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x6d42c32a ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x6f86beae osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x75461a85 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x7b0e993c ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x8294720d ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x6c222641 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x6c5ec5e2 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6ce2c31e ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x6f01231d ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x6fe7dfe6 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x72d7adc0 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x77cc3d31 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x7944481c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x7c006534 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x820b80c5 ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87c4d7e1 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0x8a12ee1b ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x8a21b4ba ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x8e01f4d5 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x8fbe5d0b ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x901f3bc2 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x969d22ea ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x987881a8 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9957e871 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x9b61d345 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x98ac90bd ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x9984e651 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x9a0d0fdf ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c991afe ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9eecd057 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x9fa33b96 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x9ebd1f0d osd_req_op_extent_osd_data 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 0xa448d906 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xa301770a osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xa468cd98 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa4844986 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa52de7a1 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xacd24745 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xad498d68 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xa881d5e5 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xaaa70b1c ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb00ce1ff ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xb2ac26c0 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xb31eeae7 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xb0d52392 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xb3050507 osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb5e49f4e ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xb5f72a81 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xb71aa235 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe1bd96a ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbee48be6 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xbff10b7c ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc2d9640a ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xc2fc6912 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc52bad0f osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xc5cd335d ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xc7af3535 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xc8467a25 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0xca727b1f ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc5cbecd0 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcb34b4ed ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0xcbe5d733 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xcd04c7e9 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xd3a9195b ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xcbe84c03 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xcce9f8c1 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xcdeddc1d ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xce5bea0f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xcfaa97ba ceph_monc_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 0xd989c860 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdd469515 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xdd6e66dd ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xde51c13e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xd65dad0b osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd7337c7c ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xd91cf88a osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe012f50a ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xe0d323c5 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe6fc9703 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xe3ea51ca ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xe63ab0d2 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe830c391 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xe934f7d2 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xe9febde2 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xea2a3393 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0xea37da16 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xed4eea4b ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xec83734d ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee5df614 osd_req_op_cls_request_data_pagelist 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 0xefd5199c osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf1758433 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xf33c6b48 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xf381a0d0 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xf3dd53bd ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xf4ab40b3 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xfef75cb0 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xffb8fc0d __ceph_auth_get_authorizer -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x57785b4a dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xddc70b3f dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x07657595 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x5e594eca hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x180fd637 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x227d547f wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3e515452 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x57bcefc6 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x60a54168 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbd39ffad wpan_phy_free +EXPORT_SYMBOL net/ceph/libceph 0xf2195ea1 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf22ee140 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf4b85251 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf58bffe5 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf60209a8 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xfaf10d64 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xfb7e0f34 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xfc7baf03 ceph_msg_put +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8b7c9595 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd8330c62 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x6ed3ee62 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xba8c9c12 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x483a599c wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x69ed5fae wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x90d8ce4a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9a2070e0 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xadd61a7c wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0e0ee3b wpan_phy_unregister EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x68034fcb __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd0f7b1be __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc3cccf7a __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xde6ce5b6 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x5109cc82 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x04e795a5 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb8c24f7e ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd43de7a ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf63b2336 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2b5501a8 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbe09a19b arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xddf0ffd7 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe7c7d9c7 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x08736c91 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1bd5e9b8 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3b93d8f8 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5a3c801f ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x3ef3cad9 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x94b27930 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc2e76187 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x02068e38 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x02fb20ba ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18e93a00 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x430e1ee4 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaaa83d98 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc2b5a6e8 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd0ee9682 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdaa09dd5 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe825f039 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2887c054 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x567bf43d ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x779565b2 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf5a33011 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x2df8f793 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x331501bf xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x94562516 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xefdc754d xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x21e0d4e9 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x36cc04ed lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x37e69535 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x40f962b5 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7ea2874e lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x8919e1b9 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xc8ca24a8 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xe1565996 lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x2fa9d817 llc_sap_find +EXPORT_SYMBOL net/ipv4/gre 0x4638e3a8 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x04cfc149 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0775a288 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x189fcaf0 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2234bc8d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x25f0065f arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3402b393 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8c92c1de arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb43424e6 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5ab668a4 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6e2c4448 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa5e7b391 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf72d7114 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x4db37b4b xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x69c76d19 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xad8a4774 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x35b154ba ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7a895dd3 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7f0330c7 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x85636426 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8d6a338b ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x90f60c27 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x95be1990 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb2621b38 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xec5e02d2 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x055dba10 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6c8e673e ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xad2a7712 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xba13f0c0 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x9f8757f1 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xa29ef918 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2753ab02 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa02a8e17 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x09ea0f7c lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x1a839c74 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x27466e56 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x631ced76 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x9d00d21f lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x9e416349 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x9fe1be86 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xa6343081 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x08d4e736 llc_sap_close EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3f44c98f llc_mac_hdr_init EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xa666eb00 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xbce2628e llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xc036ff5b llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xd47c0afc llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xdbe2c2d9 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xf1c0fdae llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/mac80211/mac80211 0x00e685b4 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x0573ec57 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x0ff71b27 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x118336d6 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x123d5e6e ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x13e5c8a6 ieee80211_unreserve_tid +EXPORT_SYMBOL net/llc/llc 0x70773d11 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xb18f2967 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xb7ab06a1 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xedac7ba8 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xf6ecca2e llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x030cd0e6 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x0474ca3c ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x059d0a8d ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x05adaff1 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x063489d6 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x090c35bb ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x0b302552 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0b525514 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0bf24bc7 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x0ce35dde ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0ed33f35 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1280b82a ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x15f20033 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x16efe7b0 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x17f2bff4 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x19d162ce ieee80211_iter_keys EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1b559982 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1cde7be3 ieee80211_tx_status EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1dbc472c ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x1ec0f90d ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x20744056 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x268e57fc ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2941932a ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x2af5e649 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x2d764cb0 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x332f0d57 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x1d4ec349 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1efb12da rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2512ac83 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x28a21efd ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x29325c1e ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2e073c4d ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3069f3ce ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x30c18f9e ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3285e962 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x32f129fd ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x332cbac4 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x33fb7fb3 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x39030cde ieee80211_alloc_hw_nm EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3a634a44 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x3fbecfea ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x434276e9 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x46ba45ac ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x48f36615 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4979dc02 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x49e921cb ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x4b508823 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4f33a19d ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x501ec85f ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x52fbd4e5 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x551302e1 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x58c36bb1 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x593c23cb ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x5aa3f56f ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x5c9e4ad2 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x5e0a67bc ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x6238d675 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x62812c0b ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x64192bb9 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x6692f3dc ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x6720284f ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6a17ac3b ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x6d5e9083 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x70721707 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x754f0fc3 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x78832efa ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x79f0b96e ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x814c54da ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x81a31fe3 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x8323f226 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x86adb682 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x893e64d5 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8c7ae109 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x91b65bce ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x93bcfa2f ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x946b79eb ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x95e48a09 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x392a0fe2 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x3d0716da ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x3e9f7568 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x42dc2426 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4501c03b ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x45256070 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x476a733e wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x50c4ceda ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x520d19ef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x5438cac7 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x5a02d5ba ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x5bbbc602 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x5fd7c152 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x60b2b79e __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x62d12325 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x65acec13 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x67de534d ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x6873d3f4 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6e196998 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x6e542f67 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x710f3571 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x74d348e8 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x74e51317 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x75805953 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x7c2e931a ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7c58c9e1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7ed610a1 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7f892939 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x812d3d1a ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x82284481 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x828401f9 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x86232c86 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8d28fb1d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8e3b4d45 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x91ec0f69 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x92385d8d ieee80211_get_tkip_p2k EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9baca0a7 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x9dd9d11a ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xa11ce5a7 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa242fac1 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xa2a9e526 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xa2b78bb9 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xa4b3f6ad ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xa5841238 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa73a1174 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa76c897c ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xac6e103d ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xacddeee1 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9c74fb89 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9d85648a __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa053635a ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xa08ec5fb ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa102cc46 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xa3380917 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xa7c4b4e4 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa7e22eea ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xacf4496e ieee80211_stop_queues EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb17da4a4 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xb2f54202 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb4454040 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb4df9f03 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xbb849861 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xbfb153e4 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc1ff0e30 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xc304a890 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xc5d4c6f1 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc5e23563 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xc604d96a ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc7c94b0c ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xcaf9abd8 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd3850327 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd598ef4c ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xd6850df2 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xd779bed4 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xd77a022c ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xd8b89eb2 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xd90d21c3 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xda13f1d7 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xda6bd9b2 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xdf13b576 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdf87c585 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xe2b4bc5d ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe4d86728 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xe8976dee __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xef223e61 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf412b319 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xf604c920 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xf6875462 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xf9a6d140 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf9e22eb5 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xfb78f424 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xfed078e4 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xffc9cae1 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac802154/mac802154 0x0bb2da91 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x0cc5f743 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x52036b54 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x899418c1 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9f067144 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb75011ff ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb8f5dfd7 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0xde5f94bd ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0xf0b3fdb7 ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ae0ab97 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14568dde ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c9d1d5d ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x41d96594 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b941b47 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5baa2345 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x618b6d16 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78450228 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9912a633 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaea2e1a3 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc16f8d4c register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc666d870 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xced74d9a unregister_ip_vs_app +EXPORT_SYMBOL net/mac80211/mac80211 0xaf328b2b ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xaf90af36 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xb146cd5b ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb998b86a ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xc010b054 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc4567a27 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xc9607b4b ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xcf226426 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd170ad3f ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xd1f98a4e ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xd42a8673 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd5639e0d ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xd5cb1906 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd8b52c64 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe1b884e2 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe31ae638 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xe758c1bb ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe789419d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xea711d4f ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xec511022 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xf022b765 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0xf143a34a ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xf40b7539 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf5e39025 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xfa0383c3 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfeb74bbc ieee80211_rts_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x02d548f6 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x702afa94 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x73fe5289 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x75f92eb2 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x76c019cd ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x826d2693 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x96fe41de ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd3b96309 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xd5d92f73 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x21590c7c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24b1b041 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31706a61 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x330056f2 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49860335 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x501bdb9a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69eedaa6 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x903fe60d register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9a82b2c9 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2b45b12 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc150262 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcb5a73b7 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc1f0057 ip_vs_proto_get EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb905425 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfaf5d40a ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9a284cb unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa62e4a2 ip_vs_conn_put EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x72559aea nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xae4149fe nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x84b59f45 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xc2c3b480 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xc315be79 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xf0c242d2 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x6fc00fe6 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa5543623 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc6725784 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xe8659fa8 __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x025bd2df xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x012fe9d9 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1fe46081 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0e44c403 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x229579f2 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x2ca0e20e xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3d4ad4a5 xt_unregister_targets 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 0x580df660 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x72976653 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x7a267c71 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x7a609ba8 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7b70e0e5 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x9a8a272f xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xae18101b xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb564ff99 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc7f6cea9 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd6bc8346 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd2b14442 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdd7768fd xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xe6118209 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x046c2436 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x326a815e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x3d91827b nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x49637cfc nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x4b1352aa nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x56c2ea80 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x59fba007 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x6a28e5ed nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x6cc1675e nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x0656a980 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0a2a2bad nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x10f7b245 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1e9159ca nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x31235e7b nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x3ad236b2 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x4f94d925 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x6cd4db11 nfc_hci_disconnect_gate EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x80e0372d nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x99667d9c nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xa7618ba2 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xae538eea nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xb3f33b1f nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xb58da30a nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xb8341fb2 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc55d9e6a nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xd315194a nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7f6a2652 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x864eeaa5 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8ad866be nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x98c2ce64 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x9b287fab nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x9bb6faa8 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xa1f1c755 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xae7d545a nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xb27f5fa1 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb80b0698 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xd69bd412 nfc_hci_get_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe267b052 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfe816ca8 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfeb25a07 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x278ee4b3 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x2e0679ce nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x476f3752 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x53bda47b nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x54970bc1 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x5f089105 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x687877e6 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x6b88b611 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x7879a6a5 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x7eea8c0c nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x87e76e00 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9854b5f6 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x99b8f22b nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xa3a082db nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xa50293e4 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa8893ba6 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xafa5e390 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xb01b7308 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb3214b9a nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xb3e7329b nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xb7f4e712 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xec5057b5 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xf3849d6b nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0d5a2227 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0eaa5472 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x2a1b5ba9 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x48f0babf nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x57aa9233 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x59030713 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x5fc266ed nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6a540d45 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x6c1eb747 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x70fdc5e9 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x72c02877 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x78cf0c90 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9d6ee965 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x9df7d2b4 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9e49e080 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa81d7210 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xb1ca756f nci_hci_connect_gate EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc7d2c469 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xd564cbd2 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd809b78e nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xdde18356 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xe764ee35 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xeb3cf8c0 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xf6934e15 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf95b9d8b nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nfc 0x03552a81 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x049177c6 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x1523c498 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x20cc522d nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x32b9fb97 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x36493be8 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x37ecf733 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x69aae580 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x753fb4cd nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x83e6e0d0 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x8801ef38 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x8f53e682 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x930dd8fc nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x9ad3821f nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xa29db6c1 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xa67a921c nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xb4f17879 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xcab64726 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xcefd6b9e nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xddf01cfd nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xec855403 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xf1315efb __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xf74995d3 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xfba7714f nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xfbbc0558 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc_digital 0x013491fa nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x44afc989 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa898f727 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xed3431f0 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x26aa68e4 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x435df0d8 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x9849c7a1 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x9d73af58 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xa98b93fa phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xc4a0a852 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xee644c5b pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xf4b44406 phonet_proto_register -EXPORT_SYMBOL net/rxrpc/rxrpc 0x084a621e rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d41a587 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/nfc/nci/nci 0xbe18b600 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xc51a521d nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xc69d83a7 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcd4a5a7b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xcd5f5325 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xd4e2eb2d nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd9e81340 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe8ee2531 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xece73113 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xf91eda6e nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xfbfb96fe nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xfe3cfb02 nci_req_complete +EXPORT_SYMBOL net/nfc/nfc 0x055ce352 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x0c7af933 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x13833314 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1a67f660 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x265e96f2 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x2a7db675 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x361ceadc nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x3c3c6c70 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x4c08b41b nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x5ac4cb0a nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x638049d1 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x86605947 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x9b90af31 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xa7af6992 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xaeffa604 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xaf13cb8b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xb0e7bf20 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb4367078 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xc9ae9973 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xd51023ff nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd8627f0a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xf009b760 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xf44885fd nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xf5546209 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfa602672 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x0611d83a nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3a414e97 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc783f4b8 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe37397cd nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x251a62a8 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x2dd422d7 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x7d48c9e3 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x95a5a997 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xa0fee27f pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xd1fca719 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xf01e67ff pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xf50dc25b pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0bc2e296 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c43ee66 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x126ca168 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1848d311 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ad8b6f8 rxrpc_get_server_data_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x33456d80 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x39e852d7 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4251121c rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x521177c1 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x60f2ed2b rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6286258b rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7f8e6f7c rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ec8c23c key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x95571f09 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa77c7cb3 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8e242ae rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1a0e1f4 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc6b67697 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc91d2faa rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf9cdf87 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xee9e0530 rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0xc86e7fa5 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x08c0e02c __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/rxrpc/rxrpc 0x35030585 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x352e03d2 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d62831d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3ea3a0f8 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x459116bc rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x50d8ac38 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x56e9ed53 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5716a40e rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c85c954 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d7dbcf2 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb08c45f2 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdb4f3506 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xed42e982 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/sctp/sctp 0xb3c99d16 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x3103c08d __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x37960eb3 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x560df588 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x58791e20 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x765b0810 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x8f5318c3 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg 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 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xfd21d4c5 __traceiter_smcr_link_down -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x23c69b0d gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8466253d gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9ce3d047 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x02d97527 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa5c8248c xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc178be8a xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x4c623c84 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xac296d61 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xc164dd69 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xf4fd8dcf tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xb2533337 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x064b90af gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x374f50c1 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc7edd651 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa04b8a11 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa7b753d6 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfcc2fbde xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x1b1d9d0f tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x62ad69bb tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x8091e920 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xdc5543a9 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0xbd9e53a4 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0510d528 cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x07cdc182 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x08109420 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x08d5fe8a cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x0971ac77 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x0aca50dc cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0d990f57 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0da69fa3 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x108c6f9e wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x0d73c4fb cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x0d952b75 cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x14a10c90 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x12e2ca17 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x13c65aec wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x15b4a883 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x18188723 cfg80211_get_drvinfo EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19792e15 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1a289b76 wiphy_apply_custom_regulatory EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x1be3bacb cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d817ca4 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x200ebf81 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x224d37aa cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x24371838 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x25c9456e cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1deeb08d cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x21eba1ce cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x2315bd2d cfg80211_ready_on_channel 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 0x2b57b457 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2c637927 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x3163b736 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x28b24c4b cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x2acf1fda cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x2f50958a ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x2f6766ae cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x34522362 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x35408dc2 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x39a7538f cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3b89198c cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x3bfa668b cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3cfd5d2d wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x414332ce wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x418e0583 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x3dc9dd8e cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x4154fdff freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x41be4c31 cfg80211_stop_iface EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x436b41c5 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x47dfad9b wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x48a6a48d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x48e26839 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x49517742 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x4c0c9be8 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x473154e7 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x48154c0e cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x4884bd59 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x488a158f regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x4bc725bd wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x4c1dc31a cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4e617671 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x4f753511 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x5136e8f6 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x557ed8a8 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x4de7bdee cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x525d0ad7 cfg80211_check_station_change EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x5640c863 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x58787983 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x5948dc11 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x5fd5714b cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x650440a4 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6809aef7 cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x68e9b9ba regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x578cb2a1 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x60d298d8 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x634ebcce cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x63e1845c cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x66c34cf8 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x678d7d75 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x6839888e wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a0841d3 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x6a81841c __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6cbf1ee2 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x6d1a2918 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x6dd7b49b cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x734d9990 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x76e165a1 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x78d26153 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x6c4d4639 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x6d0140c1 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6e5b83e6 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x70b29fe9 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x72718ba1 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x730f5480 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x740c2443 cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a1cb5ea cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7a2fbeb4 cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7adc0252 cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x7b0a21ee wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x7ad65226 cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7e99cd61 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7d2251bb regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x7d79f18e __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7e1756a6 cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f8e8e36 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x800fc481 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x82620233 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x829ac3ba cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x830a779a ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x83b6cd5a cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x862358ce cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x806c9aae cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x819f1827 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x843bbe6e cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x85230b7e ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x85e14888 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x87749b1c cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x8d2a67dc wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9034b4f8 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x927c9b5d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x94cc8444 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x95aa101b cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0x95e909d4 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x90b96528 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x930df61a ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9777db46 __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x97f44fc5 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x98448597 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x9cb231af cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x99b0cbfa cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa4a32125 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xae8ee736 cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xaf5689bf cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xb0e5b8e9 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xb26528a3 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xb2ec6311 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xbb42ceaf cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xbc7a0c5f cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xbfcceb3f cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xc0388caf regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xc08e6796 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xc45a5f13 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xa209021b cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xab6b91c7 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xae30ba3a cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xae7c4600 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xafa71124 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xb84a4213 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb8c9820c cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xbc3f1594 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc0886bc1 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xc0b467bb cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc25bf365 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc2a5b6e5 wiphy_read_of_freq_limits EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc7669284 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xc9060d75 cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xccae9c81 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xcd3217ca cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xce9f32be cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xceb9aae7 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xcf88663e regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xd003bfb1 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xd0202897 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xd39c4e0b cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xd41994bd cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd5519398 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xcc2dc095 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xcc2fe101 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xce096fa4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd1b59648 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xd2f6b163 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xd48b0b3d wiphy_unregister EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd684af30 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd81f14c4 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xd866690f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd8b2fba0 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd907dba5 cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0xdb57f331 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xdb312948 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xdb540c30 cfg80211_inform_bss_frame_data EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd58c1f1 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xde10ac47 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xe22bbd5e cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xe2a2d7d5 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xe3b5a966 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe4f0b094 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xe7823e49 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xe8a2dccc cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xe34d15a2 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe7817ced ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xeb411cdf cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xebe9742e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee434fd4 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xefd074ee cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf02aa6db cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xf1ff3eb5 wiphy_register 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 0xf77e8fdd cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xf7a0e738 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xfb98dcd8 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xfbd0e58a cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/lib80211 0x051bdfeb lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x0b4e1958 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3a298a1a lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x5354a720 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x59738740 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb61898c6 lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x28b883d5 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x378b4262 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x119e1d3e snd_seq_create_kernel_client +EXPORT_SYMBOL net/wireless/cfg80211 0xf7dad5f3 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfc0e4f38 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xfd5772f5 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfd87fa0d cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xff7b0970 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/lib80211 0x204640ff lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x54b92814 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x64043813 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9492853f lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xa26dc7ba lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc636c820 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x1b272840 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x4f1383c8 snd_mixer_oss_ioctl_card EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x60fd4798 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5220ce16 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 0x7109147e snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcc521541 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd3ca088a snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf07f752c snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xff385320 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 0x833a3e07 snd_midi_channel_set_clear EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set @@ -6029,434 +6029,434 @@ 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 0x4d019272 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x02601760 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x05e06922 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x071889d0 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x079bf416 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x0e4417d5 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x151057b3 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x17751897 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x75204c87 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0165a039 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x088ef0b7 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x0a03280e snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x10f05297 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x18ec8f21 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x1905e986 snd_ctl_replace EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1d65171d snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x217d8cf4 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x22f5fa0f snd_info_register -EXPORT_SYMBOL sound/core/snd 0x239c659a snd_device_register EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x24d35483 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x2fc38386 snd_ctl_boolean_stereo_info EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x390af9dd snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x45d253c6 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x419e368b snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x444d906d snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x4a3ad6e5 snd_jack_set_parent EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4ab2a257 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x4baeb1c9 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x4f8a3f17 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x4fdf9d85 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x582d83fb snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x5f17c6a8 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x5f5e2648 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x61d5b189 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x69a7de8d snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x6ab32868 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x6e450951 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x729055b2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x4ff90679 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x52338201 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x5e83d5ff snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x67400c44 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x6a716227 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x6af16c97 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x6bb22654 snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x76893c5d snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x7a6956db snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x7ae66b10 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7de33745 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x8370bad7 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x84fb1143 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x88ef9f70 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x89d3129f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x7611ace2 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x78b18a92 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x7be2d30c snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7c75c11e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x84c2e2fd snd_card_file_add EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e80756f _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x8e8492cb snd_jack_set_key EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x949dbce5 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x96950c91 snd_card_file_remove EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0b63573 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xaa391235 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0xaf5f142e snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xa21ef7d8 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xa274a1fa snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa3afcacf snd_info_register +EXPORT_SYMBOL sound/core/snd 0xa46d4309 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xa8578e72 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xae790c1c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xaefc2340 snd_card_free EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb39ecd04 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xb5d14e23 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xbac3dbb5 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xbc2d7589 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xbc7584e3 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xbf2fcdbc snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xc1998671 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xb614a728 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xba929b71 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xbb4fb2ee snd_power_wait EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc68c9da0 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xc7b79917 snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xdbeb1164 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xf42bcefa snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xf8c7d6e3 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xf9d33451 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xd3b4be42 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xd5c85143 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xdb4181fa snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xe232fbd2 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xe6ca34d1 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xeb387f0f snd_device_new +EXPORT_SYMBOL sound/core/snd 0xef56de5f snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xf390dae8 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf472a658 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf6a3bf53 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xfa197a0a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xffd008de snd_ctl_rename_id EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x0efce800 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x48ab68cc snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xf98262d6 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x2de6b25b snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xac52d5e2 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x38d17f2d snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x043b9e26 snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x069f9f13 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x04ebae05 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x05f50f12 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x09334eee snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x0ca3ff99 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x0d0354ba snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x0d7ce4ba snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x11a0f577 snd_pcm_open_substream EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1a0a23a3 snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1f91f380 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x2387713b _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x23d5f313 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x2e4015d0 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x339d10b1 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x1df77460 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x21ee6415 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x227972c1 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x2e13c8fd snd_pcm_new EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3cd6ed26 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x43636723 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x489f8b34 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x4a106588 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x4b0c627d snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x4b886a01 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4d0c7ade snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x4e7e6855 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x42e96eb7 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x457ed3e1 __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x4fa3678e snd_dma_alloc_pages_fallback EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x514965cb snd_pcm_lib_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x56b6e8ad snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x5b50f0c2 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x53eaa363 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x57aefe30 snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x648d2719 snd_pcm_new_stream EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x67311cd3 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x678c9215 snd_pcm_lib_ioctl 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 0x6c7a7da0 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x696a2a59 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6e586557 snd_pcm_suspend_all EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6fbdf9f7 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x7090cb55 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x73a51c18 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x760461c8 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x77694142 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x7b759c95 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x821980af snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x72dccb5c snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x78338c54 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x79438a21 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x7e00560e snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x809ad233 snd_pcm_set_ops EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x84e1052b snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x9345d28c snd_dma_alloc_dir_pages EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x972a9894 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x9a44d735 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x9b434b19 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x9bd116a0 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xa1968f8f snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xa4f42afe snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x9bfe2c8a snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa13714b8 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa4ffd20c snd_pcm_lib_preallocate_pages EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac2a3089 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa9068372 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa9de41b6 snd_pcm_hw_rule_noresample EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb17a6e90 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xb45fb729 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xacb363b1 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb835e864 snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xd0616f73 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xdcedfec6 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xdf46aa30 snd_dma_alloc_dir_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe19a372f snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xbf258d79 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xc3110006 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xc9529214 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xcce8272f snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd09c75e7 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xd191ed91 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xd62d9754 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe0737b43 snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe5f4090e snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe71bbcc7 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xebbf051b snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf312da1c snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xf313409a snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xf40843f1 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf52f2d77 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xfde03996 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xec7a5a99 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xece5bd9d snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xf2ff7fbd snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xf725229e snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xfcc9b127 snd_dma_buffer_mmap EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1123725b snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1316169a snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1335c920 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x245da768 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x57feedd1 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5da22587 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x72f39b5f snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x79682d4c snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b400b43 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b7d495b snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa51d5fbc snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbce58bec snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbffc8292 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc1d722af snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0d2a992 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe7fedd5c snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf93e3912 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xffba9f07 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c05fe82 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e1b198b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2231abc0 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45ec3afe snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4d5874d2 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5ad318c1 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e5f3c60 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x603fdf97 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8cc61077 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8d560847 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x94334c85 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6cbe482 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb2d8c64e snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3cdf3fc snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd9d33db snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe568c2bc snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf39e6001 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd5277d7 snd_rawmidi_info_select 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 0x513d74d7 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xdb61910f snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x117afafb snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x1f52701f snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x57c90958 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x584018a3 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x8cd019bd snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x97621619 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x99e2d8f7 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xbf4039ee snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xc3585776 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xc3baeafa snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xec1640b2 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xf6dcd187 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xf8629a3f snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xfbfea5ed snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xfc80b209 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x00b94268 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x03d141f4 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x0936cdc9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x245f1753 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x2d3616b6 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x33e1b665 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x4ed0d699 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6badfa7d snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x70267117 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xa32bcb9c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa3885e8d snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xd72d184b snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xebb01ec9 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xfcc5d22a snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xfe36986b snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x4232a313 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 0x74615ded 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 0x52df8e2e snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x57685244 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73fae120 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c7e1f41 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6cb6f53 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc33bd2b8 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc58cf8df snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd553a45c snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf4f88bca snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0f6a5d77 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0fbdd876 snd_vx_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05fae13b snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1ba7a317 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x310bf65d snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x37eacc95 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6fd95524 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb41c7d66 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xddf39c9f snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe1e13c91 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf0798ff9 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x04d1f2b9 snd_vx_check_reg_bit EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x85acbcac snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8aaa54ef snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa61b626e snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad5f8d76 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddc0d43a snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe95cb119 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2497a6fd snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa1eddaba snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc22c17a3 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xccec75cd snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcde75e8d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec749be7 snd_vx_resume EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf2466748 snd_vx_dsp_boot -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0677b8b2 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18041e89 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x197e4948 iso_packets_buffer_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf78f3a32 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xff7298d1 snd_vx_dsp_load +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x003c1fc7 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x007dd3d9 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f0d64da amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ce15140 cmp_connection_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26dc4d43 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x27344383 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b67692b cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2dafda18 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32c4d675 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x447759ca fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22bde760 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24b28a27 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32e7706e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3eede798 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ccbaa3b avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d9e0fec fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5944db83 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c6695b8 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61826316 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6855aeff cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ec74d6a cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7668a588 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f989e19 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98c76cd2 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa31acf22 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa744652d avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb327415c cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0528031 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9246ee7 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2e3b0ec fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5b67950 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5c3c79a iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe42919bb fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe55e66de cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9a0e7f3 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec3c400d amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e857e73 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a2d7b05 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x746c3648 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x801f2abb snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x825b4dca fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8973c5cb fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8cb660df fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d60a611 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x929fa02c cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa172e0a4 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc61a4160 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc84f3ca8 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd41fc63 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcfc96d90 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1317fd8 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd25be886 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xddb51927 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6ead8b3 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcf82629 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 0xeba705f4 intel_nhlt_get_endpoint_blob -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x91e2afd9 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb4cc7e3c snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b2e1d93 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x21fb0269 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x23e87c81 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59c2f3e3 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x662bb658 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb783cd38 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd3b5736b snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf5d38e8a snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc0515355 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc616a00b snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd37ddf0a snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfa526d04 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x579b093a snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x70bdba5b snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1bbc6d11 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa82a5894 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb4e9bad0 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xba4849f9 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xef851af2 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf4539484 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0d017362 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0fa67796 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x21f8702b snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x862084f7 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xae614fae snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd910f405 snd_i2c_device_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01b6a5dd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04e594d1 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a1dd02d snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f0f6e2c snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11f5341d snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15a63e98 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22459ce2 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3297d5d4 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4614af18 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4dea5a27 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x887aa99a snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa47b2f37 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4769821 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde01e25c snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xde687e5d snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef706f3d snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcf48695 snd_ac97_update -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x01bd44e4 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05714a12 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x07b4804e snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x51310b93 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x54c97eec snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x70671b0b snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb3a5cc25 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe26572e7 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf1cd2f90 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x24333dde snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x27fcfb98 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6fb6c558 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x015dfbe3 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07282956 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08eddc66 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x179eb564 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d3e853d oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a40f2dc oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ea28cdf oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bf82390 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48880dbc oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a43fce7 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c20fb73 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70099583 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75a39ed6 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9b616e5e oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9cd10952 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3fa1b7a oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa92fca2a oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xabc9e014 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xadcbebd5 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf17a8094 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0708f7d4 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x881718eb snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xaf258c12 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd2927960 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe04675d6 snd_trident_start_voice +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xea6ae986 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xd32fb243 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xdf7b09e0 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3707997e snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x53c4635d snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5a8f648c snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7b763f6f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa070cdc6 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa71d92bb snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb08fa838 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb61168c1 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0b038c1c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa682d445 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc9b3c114 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xeddef176 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3cde0819 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf97fda35 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0130e384 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x08a89b46 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6629e610 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x68b98004 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xad71198b snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf709690d snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x075bc1a5 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x29e0a2e5 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3e3a78c6 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x55565340 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9ffd339f snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb6abdac5 snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0883743d snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a23fe3b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2b73eef9 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x56d99f0d snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x65fa5ae8 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x688f473c snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80449758 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x81454442 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9dc049a1 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa64f07ea snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb76f0ae8 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb92fe6e9 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd81cd33e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdbc2d2b7 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd54e48e snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee499db0 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcf9dcb7 snd_ac97_update +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1ccd9ae3 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x45370f54 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4bd4f314 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4cf3dc12 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x765f097f snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x78904e5f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7d064c41 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb0ac3661 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc181f418 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x269ae5f8 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7360a2dc snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd596e8d0 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b63cacd oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0bb62188 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x104390f2 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16f1ae84 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1af33c69 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1b988706 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26fd426d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4128864b oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a4983a4 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5adbd2d8 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x609e52ce oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x78345939 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7cb08635 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa68d6b90 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbdf0ac3b oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0a01e46 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd27cf7ef oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd389f323 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee1675e1 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xffe30e41 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1dd04c89 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3687750a snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6b410375 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x961de22d snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfbd71cf4 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 0x998bb7b3 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x9ee484a6 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xb4afc389 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xbd39fed8 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5ee926c8 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9dbb3373 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xfa851ce4 pcm3060_regmap +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x284fc40e snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xcd05cf9e snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xdb20d19a snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x292b2f08 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x39bc8c3a wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x6733362d pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xf7fa168f pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x13690324 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x89999602 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x39964066 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6ead7ced aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe8c20c8d aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x33a1abf9 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xce140b56 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x11d78759 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe32dfeaf tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x836d3698 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb4302e5f aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd1ff6b63 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x26585b50 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x92333d75 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x15781f44 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 0x70f9c330 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 0xb5f3012e wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xbaf2902e wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xbc67add3 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xc6173efc 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 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x1e8d92da fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x44b2f3a0 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc9f57cf0 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xafe73bea mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xe0910bf9 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xbe229e84 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xc32aa193 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/snd-soc-core 0x9942aff8 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x2f7ffce3 imx8_disable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x5fad7ce4 imx8_enable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xc2e14544 imx8_parse_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xffdb8460 imx8_dump -EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x0214a0de mtk_adsp_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06040dd1 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a05f65a snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0edaee3d snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x103abb9a sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cc4170a sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2551edc3 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26345a69 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x271dedff sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c759042 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f5f6af6 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x89713fe0 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc07401b4 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc0a31109 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x6cc0b16f mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xc9126910 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x54f00e10 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x569c6921 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x9559924a snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x8c71d847 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x94e42ffd imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x962a53de imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xedbb0861 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xe51edaa6 mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d53079f snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x113757c8 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16b3ead4 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1abe80a1 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b2b951e sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20d92807 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25c86cd8 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2666b9dc snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2b196fd2 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2fe8e9d6 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33ca710d snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34f5c53e snd_sof_ipc_get_reply EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36b44a20 sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3bcfc6d2 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d285402 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40293c4d snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40e91a91 sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48b420b4 sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c862222 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4fc2cd5f sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5332c8b6 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x56c0c016 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x68f967e1 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70277bd9 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8019e93c snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a296526 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c8f5e2b snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90b9e41d sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x934bac5e sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9416e00d snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x95e5a2ab snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9857e909 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98e99826 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafe3c839 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb43a0584 sof_compressed_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4ba7dc9 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb925907e sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbcf7ab5d sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbeea476d snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca317318 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcae2de30 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd00b281c snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4b96a6c sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6e720c7 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9b84d20 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda1f71bb sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda285a7e snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc045383 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe36e9e00 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3d03d8f snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6204cab sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6b7f83e snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea504c19 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb612ff9 sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xecdd578c sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2fa58d0 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa19d014 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb06adba snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfdd39d97 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x0caf96ca sof_of_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x1c9f0e6a sof_of_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xcea31660 sof_of_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xde85ad6d sof_of_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x827296ec snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x69bec998 register_sound_special_device +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38ec9314 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a4e6e16 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40dab2ff sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41e495f1 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46b7d21b snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4aa80974 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x57fee887 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60227ea0 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x627681bc snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x658dd90d snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6770c7c4 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c2c9b6b snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76b41821 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x774caf4a snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c36645e snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c9a09b8 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f7636c4 sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80280d3c sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80707815 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x87f4ff2c snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8cb34825 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97211944 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x978fa93c sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e9d4094 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f1642e6 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa1daa9a9 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2fd5d19 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc25a183 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1a9c7c1 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4c25c2d snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf51cacb snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd20196a4 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd52f650c snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe00021ef sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5c71866 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xecc7612a sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee765e7e snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xefed99f5 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1f66d59 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfaaa1aaf sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb02e6f1 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb20b1cf snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfda10a9d snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe06fc1e snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff57eb0c snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x104153e5 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x7095c18a sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xbe18da85 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xd867554c sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xc49dbcaf snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x366894c4 sound_class EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa8c9b488 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xb6ba4428 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xbeee5fe1 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xdd5c2e9a sound_class -EXPORT_SYMBOL sound/soundcore 0xe2d480c2 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfefdf6c0 register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2c72f0e9 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x621f735e snd_emux_free +EXPORT_SYMBOL sound/soundcore 0xd6371dfd register_sound_special +EXPORT_SYMBOL sound/soundcore 0xdb5656aa register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1e782a0e snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4fba956c snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5b30e64b 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 0x92c88e49 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb54e3c55 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd468930d snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfd1a761a snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7d9ca459 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x833b4a94 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x92712531 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 @@ -6466,5847 +6466,5847 @@ 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 0x6140b48f __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 0xd3fdaca6 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x0011e6e0 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x00149c00 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x002a49b1 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x0037cb86 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x00437264 dentry_open -EXPORT_SYMBOL vmlinux 0x006e772b textsearch_destroy -EXPORT_SYMBOL vmlinux 0x00748467 scsi_device_get -EXPORT_SYMBOL vmlinux 0x009bd981 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x001d752f tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x002cea3c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x00455ebc config_item_set_name +EXPORT_SYMBOL vmlinux 0x005a50fe __folio_put +EXPORT_SYMBOL vmlinux 0x0063fbfa bio_init_clone +EXPORT_SYMBOL vmlinux 0x0096cd47 rtc_add_group +EXPORT_SYMBOL vmlinux 0x00b26948 rproc_da_to_va EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c32898 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x00cb76b0 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x00d5ae2d pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x00b9fb65 param_set_short +EXPORT_SYMBOL vmlinux 0x00c65733 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x00c68f20 inode_permission EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00dd5a06 kmalloc_trace -EXPORT_SYMBOL vmlinux 0x00ee1a75 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x00f4a1ce folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x00e51ea8 clkdev_drop +EXPORT_SYMBOL vmlinux 0x00e76a07 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0104478c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x0105352c __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x0107347c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x01076814 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x0127a0ae km_policy_notify EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x01308151 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0130db2f __module_get EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x01413ff2 update_region EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x01560f7b dst_init -EXPORT_SYMBOL vmlinux 0x016d4680 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x01569dcd dm_table_get_md +EXPORT_SYMBOL vmlinux 0x016dde4e of_node_get 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 0x018ef856 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x01960876 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x01ac8b15 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x01b0c268 mntget +EXPORT_SYMBOL vmlinux 0x0188f9c2 input_grab_device EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d1d99a tcp_parse_options EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe -EXPORT_SYMBOL vmlinux 0x01e30c10 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x01e71fea gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x01f614c9 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x020005eb devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x0209228e pnp_device_attach EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020b5947 tso_build_data EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02119fa4 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x0211f1e2 eth_type_trans -EXPORT_SYMBOL vmlinux 0x02208e9d page_pool_destroy EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x024173c3 param_set_bint +EXPORT_SYMBOL vmlinux 0x0233db51 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x023c4899 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x0242a9cc put_watch_queue EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x025ac137 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x0265bf7d simple_link -EXPORT_SYMBOL vmlinux 0x0270234b tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x0259c242 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x0260b8f1 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x026b6f61 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0277445c device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0x027d448e cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x027e7ed5 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x0283e534 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x02863488 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x0295ce8c pci_get_slot EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02af32c1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x02979078 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x02996e07 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x029eaf41 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x02af5760 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c16c99 param_get_hexint -EXPORT_SYMBOL vmlinux 0x02e45cec register_cdrom -EXPORT_SYMBOL vmlinux 0x02ee8b16 __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x02eecae2 param_ops_int -EXPORT_SYMBOL vmlinux 0x02efc4b2 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x02f21d3d register_netdev -EXPORT_SYMBOL vmlinux 0x031b332e rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x0324d6eb configfs_register_group -EXPORT_SYMBOL vmlinux 0x03252dce tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x0331ea64 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x02c2ff70 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x02eeadf0 __sock_create +EXPORT_SYMBOL vmlinux 0x02f37541 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x0303d4bf of_find_compatible_node EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0343fd44 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0336e65d remove_proc_entry +EXPORT_SYMBOL vmlinux 0x0339fdb5 amba_device_unregister EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror 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 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0394de7b key_reject_and_link -EXPORT_SYMBOL vmlinux 0x03975991 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x0384fb0d dst_alloc EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039dda84 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x03a20fc2 irq_set_chip -EXPORT_SYMBOL vmlinux 0x03af2616 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x03b3b0b1 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03bf21eb iget_locked -EXPORT_SYMBOL vmlinux 0x03bf278a fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x03c84935 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x03cbeb9c __nlmsg_put -EXPORT_SYMBOL vmlinux 0x03d6774d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x03eb0d4b fiemap_prep +EXPORT_SYMBOL vmlinux 0x03c60e4e tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x03ca821e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x03d80499 to_nd_dax +EXPORT_SYMBOL vmlinux 0x03da3676 inode_init_owner +EXPORT_SYMBOL vmlinux 0x03df302a msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x03f4aa12 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x03fa9d2e simple_write_begin EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0400c9d0 __napi_schedule -EXPORT_SYMBOL vmlinux 0x0403d8aa mdio_device_remove -EXPORT_SYMBOL vmlinux 0x04084cb4 phy_device_create -EXPORT_SYMBOL vmlinux 0x040aef96 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x04055964 touch_atime +EXPORT_SYMBOL vmlinux 0x040769fc filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x040859bb file_remove_privs +EXPORT_SYMBOL vmlinux 0x04110196 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x041b5a6a __netif_rx +EXPORT_SYMBOL vmlinux 0x041b95b7 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x0445562c d_alloc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0449fa24 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x0453715e register_md_personality EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x04740e0e jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x04795667 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047b772f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x04818c92 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048ad4ff blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x04ab48a0 i2c_transfer -EXPORT_SYMBOL vmlinux 0x04b2e189 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x04b41442 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x04882f8b kern_unmount +EXPORT_SYMBOL vmlinux 0x048e39ad pmem_sector_size +EXPORT_SYMBOL vmlinux 0x04afdd13 param_get_ullong +EXPORT_SYMBOL vmlinux 0x04bcc462 jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04d5651d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x04e26a58 uart_resume_port EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050d64c1 param_set_ulong -EXPORT_SYMBOL vmlinux 0x05109746 put_cmsg -EXPORT_SYMBOL vmlinux 0x05140901 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x05184e91 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05211bbf fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052df91d pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x053e81d3 __folio_put +EXPORT_SYMBOL vmlinux 0x053b5a9c security_d_instantiate EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x0572079e pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x058a35fd inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x059103e2 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x0599ce70 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x0578a454 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x057f30ee pci_select_bars +EXPORT_SYMBOL vmlinux 0x059b7045 dev_uc_add EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05abc7c2 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x05abd6e1 phy_start -EXPORT_SYMBOL vmlinux 0x05b9e263 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x05dc619b __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x05e33efc __brelse -EXPORT_SYMBOL vmlinux 0x05ecc4e6 rproc_boot -EXPORT_SYMBOL vmlinux 0x05f648b1 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x05fe314b audit_log_start +EXPORT_SYMBOL vmlinux 0x05bc109a phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x05f5781d generic_file_read_iter EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060eb2f4 console_stop -EXPORT_SYMBOL vmlinux 0x06127456 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062e4af8 mmc_release_host -EXPORT_SYMBOL vmlinux 0x0631abaa sock_i_ino +EXPORT_SYMBOL vmlinux 0x061b10e7 dev_trans_start +EXPORT_SYMBOL vmlinux 0x06273c53 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x0627fcc9 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x062ee12c mdio_find_bus EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063c9a28 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x0646db2b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x0665a395 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x0647ede4 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x0652126e simple_dir_operations +EXPORT_SYMBOL vmlinux 0x0659de95 blk_rq_map_user EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06754760 xp_alloc -EXPORT_SYMBOL vmlinux 0x06827356 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x0685cdbf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x068540bf splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x068d6659 edac_mc_find +EXPORT_SYMBOL vmlinux 0x0692a757 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x06ae1b3c vme_irq_generate EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d66bdb bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x07082b7f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x06ee5945 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x06fa5f9f file_update_time EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x070c08e6 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x0713d208 get_tree_bdev EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073e3cdd __do_once_done -EXPORT_SYMBOL vmlinux 0x0740cc99 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x07423620 open_exec EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0746eca3 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x07793609 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x07805d9d acpi_notifier_call_chain EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x07827806 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x079809b0 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x07a76ec2 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x07a8828d mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07adbcba devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x07b805ed con_is_bound -EXPORT_SYMBOL vmlinux 0x07c86c6e fb_set_var +EXPORT_SYMBOL vmlinux 0x07b28dca follow_down_one +EXPORT_SYMBOL vmlinux 0x07b756c3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x07caf739 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d8d02a of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x07d97677 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x07d7bb3d input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07e08a16 mntput -EXPORT_SYMBOL vmlinux 0x07f1c133 dquot_operations EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f82f44 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x07f8f8ad input_register_handler EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080c0e19 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082c5184 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x0839fb99 dst_dev_put EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084620dc netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x084b65c0 flush_dcache_folio -EXPORT_SYMBOL vmlinux 0x084c9722 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x086c1c15 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x08a47a77 dev_change_flags -EXPORT_SYMBOL vmlinux 0x08b1406d lock_sock_nested -EXPORT_SYMBOL vmlinux 0x08cfbdcd mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x08d221d0 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x08e0531f sock_i_uid +EXPORT_SYMBOL vmlinux 0x08619394 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x08739e9a vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x0879bdb2 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x0886d72d folio_unlock +EXPORT_SYMBOL vmlinux 0x089b72dc kern_unmount_array +EXPORT_SYMBOL vmlinux 0x08a98e9f kobject_put +EXPORT_SYMBOL vmlinux 0x08af1fe5 open_exec +EXPORT_SYMBOL vmlinux 0x08c56e6c __devm_release_region +EXPORT_SYMBOL vmlinux 0x08cad996 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x08df4234 dump_align EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08ff9cd0 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x09159cde inode_add_bytes EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093200b7 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093ed402 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x09465b97 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x0957f814 seq_vprintf +EXPORT_SYMBOL vmlinux 0x094250ef tcp_splice_read +EXPORT_SYMBOL vmlinux 0x096257fc arp_send +EXPORT_SYMBOL vmlinux 0x096de4d4 register_mii_timestamper EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097fca72 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0991a8da scsi_host_busy +EXPORT_SYMBOL vmlinux 0x098de461 netdev_crit +EXPORT_SYMBOL vmlinux 0x099521af fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09b5a204 key_revoke -EXPORT_SYMBOL vmlinux 0x09b9a1c2 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x099f9342 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x09a3021e of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x09ae07a8 mii_check_link +EXPORT_SYMBOL vmlinux 0x09aee124 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09dca168 devm_iounmap -EXPORT_SYMBOL vmlinux 0x09dd84a3 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x09ed783f phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x09f8126e super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1c9e08 kill_litter_super EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a2b8623 udp_seq_next -EXPORT_SYMBOL vmlinux 0x0a458798 param_set_ushort -EXPORT_SYMBOL vmlinux 0x0a5bd9bf input_release_device -EXPORT_SYMBOL vmlinux 0x0a5ed5b9 init_special_inode -EXPORT_SYMBOL vmlinux 0x0a7174bd xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0a20e13e dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x0a28c687 xp_free +EXPORT_SYMBOL vmlinux 0x0a457911 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x0a55913c kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0a659b12 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x0a65e1b0 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x0a6a7ec8 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x0a71e6f7 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a78a2e0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x0a7c12f7 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0a7fcab3 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a926e53 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x0a98723c skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x0a9e8e2c device_get_mac_address -EXPORT_SYMBOL vmlinux 0x0a9f861e iget_failed +EXPORT_SYMBOL vmlinux 0x0a89e30f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0a9cfcf8 ps2_begin_command EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa5a2ca input_inject_event EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad8843e qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x0ae0a275 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x0ae6e39b jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x0aed1bf9 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x0afe4e19 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x0b09dcb1 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x0b0b8ecc xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x0b1206de scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x0ad33572 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0aed44e7 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x0afb1e81 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x0aff9acc devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0b01b26e ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x0b16ae32 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b224014 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x0b1c8f7a inet6_ioctl EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b26feb6 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b35ea41 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x0b4a9c32 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x0b4ed6d8 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x0b57aeb6 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x0b3db5ed pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x0b4677a4 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x0b5e8604 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x0b637467 nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b852f5a devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x0b7507d9 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x0b8556dd audit_log_start EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba81a45 console_start -EXPORT_SYMBOL vmlinux 0x0bac63f0 ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0x0bae606b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0bb2d2de scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x0bbea2b4 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc63513 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x0bc9bc6c try_module_get EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0bdee656 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x0bdb8354 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf1dc7d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0bf6c196 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x0bf99eb7 register_console EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c045ee0 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x0c0da4cc pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x0c0e471f pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x0c25ce18 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x0c021ffe regset_get +EXPORT_SYMBOL vmlinux 0x0c150c55 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x0c181e5c __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3a5703 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x0c47c605 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x0c4f6b4b scsi_remove_target -EXPORT_SYMBOL vmlinux 0x0c4ff6c8 lookup_one -EXPORT_SYMBOL vmlinux 0x0c507901 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0c4cc590 sock_setsockopt EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c65e78f __ip_dev_find -EXPORT_SYMBOL vmlinux 0x0c6632a6 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c820f9d config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x0c8840c4 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x0c97191c register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x0c9e6f78 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x0c9f6f28 key_alloc -EXPORT_SYMBOL vmlinux 0x0ca72e3a build_skb_around -EXPORT_SYMBOL vmlinux 0x0caaf2ee dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x0cac1fa0 simple_setattr +EXPORT_SYMBOL vmlinux 0x0c84331f dev_remove_offload +EXPORT_SYMBOL vmlinux 0x0c8be1ac jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x0c8cde1b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x0ca308a9 dquot_commit EXPORT_SYMBOL vmlinux 0x0cad3e7a lynx_pcs_destroy +EXPORT_SYMBOL vmlinux 0x0caebaa8 i2c_get_adapter EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb57df2 pci_iomap_range EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc72cda mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x0cd085ff tty_register_ldisc EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd6f1e0 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0ce290cf sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0ce82759 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x0d04ecc2 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x0ce5cad3 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x0cea3ef7 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x0cebda9e mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0e03d2 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0d14a917 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x0d153061 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x0d1c3c1d skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x0d1d8dff d_alloc_anon +EXPORT_SYMBOL vmlinux 0x0d238f82 tty_do_resize +EXPORT_SYMBOL vmlinux 0x0d2b28ab seq_vprintf +EXPORT_SYMBOL vmlinux 0x0d2c51cc xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d334843 __register_nls -EXPORT_SYMBOL vmlinux 0x0d345f6d user_path_create EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d46c5ef clk_bulk_get +EXPORT_SYMBOL vmlinux 0x0d509ac1 fc_mount +EXPORT_SYMBOL vmlinux 0x0d522697 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d697411 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x0d6f04c9 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x0d729e1d security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x0d774d7a register_key_type -EXPORT_SYMBOL vmlinux 0x0d82dbbb get_user_pages -EXPORT_SYMBOL vmlinux 0x0d882f6e netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x0d9722e4 mpage_read_folio -EXPORT_SYMBOL vmlinux 0x0d98e12f processors +EXPORT_SYMBOL vmlinux 0x0d54b5e4 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x0d71e6fe generic_file_mmap EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0dac835c xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x0db98cc4 tcp_req_err -EXPORT_SYMBOL vmlinux 0x0dba8cc9 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x0de603f9 pci_bus_type -EXPORT_SYMBOL vmlinux 0x0def62ab proc_create -EXPORT_SYMBOL vmlinux 0x0df755ce generic_write_end -EXPORT_SYMBOL vmlinux 0x0e008d4e __serio_register_port -EXPORT_SYMBOL vmlinux 0x0e063306 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x0d9b4e55 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x0db7966c generic_setlease +EXPORT_SYMBOL vmlinux 0x0dc18c42 cdev_device_del +EXPORT_SYMBOL vmlinux 0x0dc247c8 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x0dc38f23 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x0dc7ac12 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x0dd14727 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x0dd7e9e2 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x0ddb0c0b reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e26f0b1 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x0e276551 fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x0e28a276 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x0e4029a8 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x0e417a2c acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x0e18a7bb __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x0e2fb153 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x0e3cbb29 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x0e413c64 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e42a82e __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0e4ad57e param_ops_ullong -EXPORT_SYMBOL vmlinux 0x0e557614 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x0e5c5776 generic_writepages -EXPORT_SYMBOL vmlinux 0x0e6a87cf __register_binfmt -EXPORT_SYMBOL vmlinux 0x0e6c2b25 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x0e70d255 file_open_root -EXPORT_SYMBOL vmlinux 0x0e784d76 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x0e7aa47b find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x0e7cfa36 single_release -EXPORT_SYMBOL vmlinux 0x0e9faf75 fget_raw +EXPORT_SYMBOL vmlinux 0x0e4c9848 send_sig_info +EXPORT_SYMBOL vmlinux 0x0e5e877d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x0e6e8131 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x0e928c7b bprm_change_interp +EXPORT_SYMBOL vmlinux 0x0e9d4de8 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0ea97f13 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x0eaf1c8f tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x0eb4954e xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebae7a5 dquot_release EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed15f0a pci_find_resource -EXPORT_SYMBOL vmlinux 0x0ee29c73 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x0ef18f6c rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x0ef38245 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x0ece0b9d alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x0ed94ba2 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0ef42e83 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x0f064b58 dma_unmap_resource EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0f05d3 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x0f18feb5 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0f14e911 md_finish_reshape EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1b22da lookup_one_len +EXPORT_SYMBOL vmlinux 0x0f1e9444 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x0f225c7d tty_write_room +EXPORT_SYMBOL vmlinux 0x0f32fd89 flush_dcache_folio EXPORT_SYMBOL vmlinux 0x0f365835 nla_put_64bit EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f54f0d0 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x0f560490 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0f3f7740 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x0f4876d2 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x0f553271 eth_mac_addr EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f649eb5 set_page_writeback EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f8bd777 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x0f97e0a5 napi_disable +EXPORT_SYMBOL vmlinux 0x0f930bc9 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x0f9cfecd secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb07064 config_item_put EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff581cd phy_connect_direct -EXPORT_SYMBOL vmlinux 0x0ffcf61a tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100140dc ps2_init EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x101155fe tso_build_data -EXPORT_SYMBOL vmlinux 0x10153bd2 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x10026fbb xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x10037e4e folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x100b9eb0 __skb_pad +EXPORT_SYMBOL vmlinux 0x10210e8f mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x1035624a netdev_notify_peers EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10399980 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x10416420 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x104fa86e __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x10532d63 follow_up +EXPORT_SYMBOL vmlinux 0x10566172 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1059c8ea qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x105a517d unix_get_socket +EXPORT_SYMBOL vmlinux 0x10630bd2 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x10713efe of_find_all_nodes EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107e5c0f devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x1099763a backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x10a0c0fb alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x10a1cce5 inet_put_port -EXPORT_SYMBOL vmlinux 0x10a449e2 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x10aa0960 tty_hangup -EXPORT_SYMBOL vmlinux 0x10c1e696 dev_addr_del -EXPORT_SYMBOL vmlinux 0x10c66189 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x10b658c1 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x10bbbe77 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x10c6f607 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x10c7ea82 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x10d0c0aa rio_query_mport +EXPORT_SYMBOL vmlinux 0x10d418e1 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10dc1cf7 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x10dfd977 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x10e43d14 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10eeec96 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x10f4e7ef md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x1100ca60 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11092559 dm_table_event -EXPORT_SYMBOL vmlinux 0x110f060f netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0x11114459 rproc_free -EXPORT_SYMBOL vmlinux 0x11210078 ps2_end_command -EXPORT_SYMBOL vmlinux 0x112832d5 security_sk_clone -EXPORT_SYMBOL vmlinux 0x1129b8ab fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x112a2988 blkdev_put -EXPORT_SYMBOL vmlinux 0x112eb868 pci_dev_get -EXPORT_SYMBOL vmlinux 0x1132ea62 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x11569f76 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x11592b1e cdrom_release -EXPORT_SYMBOL vmlinux 0x116b3ddc dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x1145bce2 _dev_crit +EXPORT_SYMBOL vmlinux 0x114e1a41 tcp_check_req +EXPORT_SYMBOL vmlinux 0x116052a8 alloc_pages +EXPORT_SYMBOL vmlinux 0x1165328d scsi_remove_device EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117a8464 param_get_invbool -EXPORT_SYMBOL vmlinux 0x1181821b qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0x118f9e20 param_get_int -EXPORT_SYMBOL vmlinux 0x119434be register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x1194ac6e __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x1199f5b9 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x11a5cd98 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x11b18aa5 bio_add_page -EXPORT_SYMBOL vmlinux 0x11c08f3a simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x11d10c80 napi_enable +EXPORT_SYMBOL vmlinux 0x118e40c7 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x118ffe84 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x11aa1cab netdev_emerg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e3641b blk_rq_init -EXPORT_SYMBOL vmlinux 0x11fc6cb7 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x11f3621a handle_edge_irq EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x12048b64 inode_init_once +EXPORT_SYMBOL vmlinux 0x1209193c page_pool_destroy EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x1223deb7 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x124297f9 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x12434a07 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x1249fe66 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x121af7ed configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x1226cd66 fb_find_mode +EXPORT_SYMBOL vmlinux 0x122830c1 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x122dc3c8 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x123a20ef dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x123d13f8 neigh_table_init +EXPORT_SYMBOL vmlinux 0x124a70ec sock_no_shutdown EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124ebdb9 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x125cdd0d cont_write_begin -EXPORT_SYMBOL vmlinux 0x125d887d con_copy_unimap +EXPORT_SYMBOL vmlinux 0x124ed950 scsi_print_result +EXPORT_SYMBOL vmlinux 0x12588e22 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x12701fad jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x1287eb12 set_anon_super -EXPORT_SYMBOL vmlinux 0x1292cdda qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x127ea5e7 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x128b01a4 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x129d26d8 d_prune_aliases EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12b6e990 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d2ccff jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x12d94b19 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x12e1ebf8 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13024b1a ip_local_deliver +EXPORT_SYMBOL vmlinux 0x130586c7 input_open_device EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x130b0145 unlock_rename +EXPORT_SYMBOL vmlinux 0x130ce922 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x130eb43a netdev_info EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1311b453 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x131a1e0f skb_expand_head +EXPORT_SYMBOL vmlinux 0x1311b8ba neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x1346bef5 read_cache_page -EXPORT_SYMBOL vmlinux 0x134a3919 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x134ed8f4 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x134f6fd3 pci_request_regions -EXPORT_SYMBOL vmlinux 0x135a8f90 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0x135b397f tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x1360c7b4 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x13725201 cdev_device_add -EXPORT_SYMBOL vmlinux 0x137fb500 netlink_capable -EXPORT_SYMBOL vmlinux 0x1385bf81 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x138e6c52 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x1333561a module_layout +EXPORT_SYMBOL vmlinux 0x1333b55c neigh_direct_output +EXPORT_SYMBOL vmlinux 0x133ed09d vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x1343d36d inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1364c74f mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x1394dd39 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x139e2b95 input_reset_device EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b89466 xattr_full_name -EXPORT_SYMBOL vmlinux 0x13c2deaa tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x13c2172d freeze_super EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d2cb11 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x13d64b29 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x13d833b8 dquot_drop +EXPORT_SYMBOL vmlinux 0x13d90835 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x140e36ca vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x140f5aac fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x13e39b21 iunique +EXPORT_SYMBOL vmlinux 0x13fe555a __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14423bb1 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x1426ff2f kmem_cache_size +EXPORT_SYMBOL vmlinux 0x143b1cc7 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x144155ea shmem_aops +EXPORT_SYMBOL vmlinux 0x145b9bec __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x149d902b simple_lookup EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14acdeb2 clkdev_add -EXPORT_SYMBOL vmlinux 0x14b19ed8 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x14b655ef vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x14c3e58d tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0x14c4b663 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x14aa0100 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x14adaeb5 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x14c16e98 genphy_update_link EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cdd795 tcf_block_put EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14d76839 setup_new_exec -EXPORT_SYMBOL vmlinux 0x14d7c493 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x14e6d3f1 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x14dfcfb1 d_drop +EXPORT_SYMBOL vmlinux 0x14e68241 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x14e70128 input_flush_device EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x151c746f sock_rfree +EXPORT_SYMBOL vmlinux 0x15037456 skb_put +EXPORT_SYMBOL vmlinux 0x15065938 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x15198bfc __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1521f62b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x15226d61 __of_mdiobus_register EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152caf8f xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15a1a6fa vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x15a4a38b mmc_can_trim -EXPORT_SYMBOL vmlinux 0x15b49760 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x15b49ce5 rw_verify_area -EXPORT_SYMBOL vmlinux 0x15b5d2e0 elv_rb_del +EXPORT_SYMBOL vmlinux 0x15653808 sk_capable +EXPORT_SYMBOL vmlinux 0x156f3a99 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x157066f4 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x15742e26 param_get_hexint +EXPORT_SYMBOL vmlinux 0x1580f12c dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x15987acb xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x15af201f configfs_register_group +EXPORT_SYMBOL vmlinux 0x15b14e66 block_truncate_page +EXPORT_SYMBOL vmlinux 0x15b59c23 key_type_keyring +EXPORT_SYMBOL vmlinux 0x15b8830b pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bbee14 ethtool_notify EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15bf2f42 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x15c3a815 irq_domain_set_info EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15e2125c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x15d159cd page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x15d35f1a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x15e59b7e __phy_write_mmd EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16048590 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x1608d04d peernet2id -EXPORT_SYMBOL vmlinux 0x1617f04c blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x161f01fd kill_block_super +EXPORT_SYMBOL vmlinux 0x15facadb cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x1616fde4 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162ce70e blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163ba3c1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x163caff8 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16539ed5 __fs_parse -EXPORT_SYMBOL vmlinux 0x165aacb0 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x166dfbe9 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x1676e028 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x1678e420 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x164771a8 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x1664ccd1 register_cdrom +EXPORT_SYMBOL vmlinux 0x1665cfbc phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x16669d93 user_revoke +EXPORT_SYMBOL vmlinux 0x167c0b11 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16855b47 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x168afc0c phy_error +EXPORT_SYMBOL vmlinux 0x168760ee generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x1688ded4 ps2_command +EXPORT_SYMBOL vmlinux 0x16954ccd path_get EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a35783 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16b0a3dd tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x16cd3aa7 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x16a7f9c9 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x16b4a64d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x16b53839 set_cached_acl EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d9b45b cdev_device_del +EXPORT_SYMBOL vmlinux 0x16d6bf2c sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x16ddc8f1 skb_store_bits EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16f95bd3 bdev_check_media_change EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x170e11d3 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x171401dd mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x173c453e request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x173e4ae6 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x17600b80 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x176cc4ac dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x1773d2d6 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x1775092d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1716578b __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x172790e9 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x173a30fc nd_device_notify +EXPORT_SYMBOL vmlinux 0x1769ad82 noop_llseek +EXPORT_SYMBOL vmlinux 0x177a0c2c devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x177f6dd3 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17855ec4 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x178699dc blk_integrity_register EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1790d286 of_device_alloc -EXPORT_SYMBOL vmlinux 0x17e83d83 register_netdevice -EXPORT_SYMBOL vmlinux 0x1801b663 unlock_page -EXPORT_SYMBOL vmlinux 0x18096093 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x180bd45b vga_client_register -EXPORT_SYMBOL vmlinux 0x1822f1f6 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x17ad93d2 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x17c7504b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x17dc3991 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x17e5a30c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x17e9f6a1 mount_single +EXPORT_SYMBOL vmlinux 0x17fbca15 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1807d9f1 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x182192a3 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x182d5049 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1834c050 param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x18474d35 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x18507a4a ppp_input_error -EXPORT_SYMBOL vmlinux 0x185b56b8 locks_init_lock -EXPORT_SYMBOL vmlinux 0x185e9ffc ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x186cf08b seq_release_private EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187be7bf send_sig_info -EXPORT_SYMBOL vmlinux 0x187ce4b5 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x187f6f24 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x187b0fe5 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x1888f60b blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18b341f2 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x18b3b0e8 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x18a43147 kill_litter_super EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18ce1bb6 kobject_add -EXPORT_SYMBOL vmlinux 0x18cf0771 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x18e4de74 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x18c86e95 xp_alloc +EXPORT_SYMBOL vmlinux 0x18e47d95 inode_init_always EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18fc74e9 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x19052fc3 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x1911d00f xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x191c596e inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x192b3133 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x18fb0c88 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x19094e3c backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x190a3fee blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x190bb173 dev_get_stats +EXPORT_SYMBOL vmlinux 0x19108048 udp_set_csum +EXPORT_SYMBOL vmlinux 0x192019ce sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x196ac44d kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x196eb648 udp_prot +EXPORT_SYMBOL vmlinux 0x195b23a1 iov_iter_init +EXPORT_SYMBOL vmlinux 0x195c848d datagram_poll EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x19979aad __mdiobus_read EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a60b0b param_array_ops -EXPORT_SYMBOL vmlinux 0x19add3a2 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x19a071c8 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x19a08068 vlan_for_each +EXPORT_SYMBOL vmlinux 0x19a6a970 bio_init +EXPORT_SYMBOL vmlinux 0x19aed097 pnp_release_card_device EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ca6ac1 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x19f5754b devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x1a09bda5 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x1a200411 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x1a22a109 skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x1a2914cc unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x1a2d34fc sk_ns_capable -EXPORT_SYMBOL vmlinux 0x1a40eb65 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x19ca8e67 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x19e16dc1 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x19fd1c78 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x1a10f47a tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x1a1d7465 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1a2982e6 dev_deactivate +EXPORT_SYMBOL vmlinux 0x1a4119e0 param_set_uint EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a47220f flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x1a58cd64 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0x1a602605 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x1a7e90ee gro_cells_receive -EXPORT_SYMBOL vmlinux 0x1a86b601 bdi_unregister -EXPORT_SYMBOL vmlinux 0x1a9146d7 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x1a4b3f28 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x1a50f971 kobject_get +EXPORT_SYMBOL vmlinux 0x1a65bab7 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x1a7a4ce4 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x1a7e0066 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x1a8e0277 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1ab7efee mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x1ab53534 init_task EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac75a91 netif_tx_lock -EXPORT_SYMBOL vmlinux 0x1adaf7ba vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x1adf97c7 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x1ae13d47 inet_frag_find -EXPORT_SYMBOL vmlinux 0x1ae15103 ping_prot +EXPORT_SYMBOL vmlinux 0x1aca94a7 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b2835a3 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x1b311f48 netdev_state_change -EXPORT_SYMBOL vmlinux 0x1b4a122d write_cache_pages +EXPORT_SYMBOL vmlinux 0x1b24353d shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5c428f mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b5ed55b of_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b69ef2f napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1b6967f4 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7c8f1d __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x1b8066f6 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x1b8e71c8 pci_select_bars EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1b9625f5 proc_create_mount_point EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb49664 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x1bad047e ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bcf3fd9 folio_mapping EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bdc8a33 km_state_expired -EXPORT_SYMBOL vmlinux 0x1be6ed0c kernel_sendpage +EXPORT_SYMBOL vmlinux 0x1be693d5 dev_add_pack +EXPORT_SYMBOL vmlinux 0x1bf9ed4e qdisc_reset EXPORT_SYMBOL vmlinux 0x1bfff46a nla_append -EXPORT_SYMBOL vmlinux 0x1c209bd8 finish_no_open -EXPORT_SYMBOL vmlinux 0x1c27eafb sk_reset_timer -EXPORT_SYMBOL vmlinux 0x1c29b567 _dev_info -EXPORT_SYMBOL vmlinux 0x1c393222 __scm_send -EXPORT_SYMBOL vmlinux 0x1c3d66bd sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x1c544792 pci_get_device +EXPORT_SYMBOL vmlinux 0x1c1827be xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x1c242deb path_put +EXPORT_SYMBOL vmlinux 0x1c34f5af input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x1c460488 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x1c50c644 rproc_free +EXPORT_SYMBOL vmlinux 0x1c55d128 tcp_make_synack EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c62a41e inode_set_flags -EXPORT_SYMBOL vmlinux 0x1c9d3677 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x1caf28b6 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x1cb05bc2 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x1c968826 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x1c970509 skb_clone +EXPORT_SYMBOL vmlinux 0x1c9ca640 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb78619 framebuffer_release +EXPORT_SYMBOL vmlinux 0x1cb8c530 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd41ee8 of_chosen +EXPORT_SYMBOL vmlinux 0x1cce038f fb_validate_mode +EXPORT_SYMBOL vmlinux 0x1cd6c6e6 tty_register_driver EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cf358fe sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1d03f226 set_binfmt +EXPORT_SYMBOL vmlinux 0x1cf6dfa7 current_in_userns EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0ae206 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x1d0ae923 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x1d189a91 kset_unregister EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2af602 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x1d2c5b16 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1d317a5c ip_options_compile +EXPORT_SYMBOL vmlinux 0x1d32536e ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1d355ca6 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x1d3ebaaa locks_delete_block EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d5b4568 secpath_set EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d6b2370 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x1d76af81 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1d5f06d9 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1da079d6 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x1dae4a90 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x1db1a745 generic_fadvise -EXPORT_SYMBOL vmlinux 0x1db8f066 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x1da1e209 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x1da87c90 igrab +EXPORT_SYMBOL vmlinux 0x1db2ddc9 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x1dc1c31c input_unregister_handle +EXPORT_SYMBOL vmlinux 0x1dc53e0a kobject_init EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de10b83 param_ops_ulong 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 0x1df2cf76 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x1dfa24c2 ndisc_send_skb 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 0x1e430005 posix_test_lock -EXPORT_SYMBOL vmlinux 0x1e563c8a tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x1e611d3f unregister_filesystem +EXPORT_SYMBOL vmlinux 0x1e228e24 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x1e29a322 rproc_detach +EXPORT_SYMBOL vmlinux 0x1e2beb93 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x1e328b67 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x1e3e0117 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x1e486645 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x1e584e3b __folio_alloc +EXPORT_SYMBOL vmlinux 0x1e5c47e0 inet6_add_offload EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6b7222 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x1e6bf1c5 cad_pid EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7eb117 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x1e710de9 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x1e7dd4ba thread_group_exited +EXPORT_SYMBOL vmlinux 0x1e8cc846 param_ops_long +EXPORT_SYMBOL vmlinux 0x1e94f5fd get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea3a15b devm_of_iomap -EXPORT_SYMBOL vmlinux 0x1eb0853b phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x1ec53c15 zap_page_range -EXPORT_SYMBOL vmlinux 0x1ed10415 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x1e9fdf8e phy_detach +EXPORT_SYMBOL vmlinux 0x1eb07b80 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x1eb7a6c7 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x1eb8dff1 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x1ec15281 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee2b067 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x1ee2f550 devm_iounmap +EXPORT_SYMBOL vmlinux 0x1ef1c7e0 unregister_binfmt EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format -EXPORT_SYMBOL vmlinux 0x1eff7c84 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x1f24ee52 amba_device_register -EXPORT_SYMBOL vmlinux 0x1f2a1ac5 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x1f366b11 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x1f495027 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x1f069740 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x1f088038 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x1f0ed686 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x1f2d0a5d proto_register +EXPORT_SYMBOL vmlinux 0x1f2db4f9 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x1f538589 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f662d39 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x1f7d797e d_find_alias -EXPORT_SYMBOL vmlinux 0x1f8169e2 inet6_release -EXPORT_SYMBOL vmlinux 0x1f89a449 sock_from_file -EXPORT_SYMBOL vmlinux 0x1f90ed40 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x1f98d946 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x1fa1f71d ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x1fa603fc phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1f836c2b dma_pool_create +EXPORT_SYMBOL vmlinux 0x1f841243 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x1f856a0e mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x1f8fd795 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x1fa8f063 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x1fab30ac begin_new_exec EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc02e9e tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x1fc0af80 of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe4be4d follow_down +EXPORT_SYMBOL vmlinux 0x1fd1fa02 vmap +EXPORT_SYMBOL vmlinux 0x1fe614e2 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x1feb67a4 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1ff9976c page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x1ffdeed9 devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200e2343 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x201c138e mark_info_dirty -EXPORT_SYMBOL vmlinux 0x203ea537 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x200cf3ad vga_put +EXPORT_SYMBOL vmlinux 0x200d4eb9 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x20339b3e touch_buffer +EXPORT_SYMBOL vmlinux 0x203e04ea seq_escape_mem 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 0x20507160 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x205ddb20 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x20663d85 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x207d20dc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x205a2c27 would_dump +EXPORT_SYMBOL vmlinux 0x2070b875 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x207fc7af dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x2080cbd8 param_get_short +EXPORT_SYMBOL vmlinux 0x2091102a tcp_close +EXPORT_SYMBOL vmlinux 0x2091607a __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20bdbc98 pci_save_state +EXPORT_SYMBOL vmlinux 0x20b2cb70 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d30175 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x20cc1c87 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e0620a file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x20e21572 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ef6234 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x20f8ceee unregister_netdev -EXPORT_SYMBOL vmlinux 0x20fb01ab ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x20ff49a7 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x21008b0d serio_open -EXPORT_SYMBOL vmlinux 0x21074395 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x210c0b23 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x212647ef pskb_expand_head +EXPORT_SYMBOL vmlinux 0x20ee6a48 input_get_keycode +EXPORT_SYMBOL vmlinux 0x20f58c27 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x20f883ba crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x20fd113e skb_ext_add +EXPORT_SYMBOL vmlinux 0x20fdaec1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x212da61a vma_set_file EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2148a1c9 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x214b0fc5 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x216ad0d7 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x218a69a6 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x213e607a __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x214848a5 drop_nlink +EXPORT_SYMBOL vmlinux 0x214ac398 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x2150ab99 pci_request_irq +EXPORT_SYMBOL vmlinux 0x216f9550 inet_shutdown +EXPORT_SYMBOL vmlinux 0x217ddcf5 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x2182bca6 __dev_remove_pack EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219fed41 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x21a42962 filp_close +EXPORT_SYMBOL vmlinux 0x21a58f54 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c5e949 xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x21cbfc7b __inet_hash -EXPORT_SYMBOL vmlinux 0x21d8c8d1 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x21c18596 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ed9a97 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f3277c pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x21fdd499 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x2207f727 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x220d1ea0 done_path_create -EXPORT_SYMBOL vmlinux 0x222e4f39 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x21f36c81 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x220ec633 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x2222deda new_inode EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2230db95 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22379723 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x22383bbf rtnl_configure_link EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x224dfe36 inet_bind -EXPORT_SYMBOL vmlinux 0x2261b24d ip_frag_next -EXPORT_SYMBOL vmlinux 0x2282c331 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x2261b936 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x226329c5 param_set_byte +EXPORT_SYMBOL vmlinux 0x2263abaf processors +EXPORT_SYMBOL vmlinux 0x2277d492 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x2277e3fe sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x227ced6c __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x22a9eca8 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x22ae7040 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c4d56f pps_event -EXPORT_SYMBOL vmlinux 0x22c9b15d qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x22dd804a skb_clone -EXPORT_SYMBOL vmlinux 0x230caf4e vlan_vid_add -EXPORT_SYMBOL vmlinux 0x231737ac __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x231e2488 __destroy_inode -EXPORT_SYMBOL vmlinux 0x2320bbf5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x233cf07a free_netdev +EXPORT_SYMBOL vmlinux 0x22c044c8 vfs_llseek +EXPORT_SYMBOL vmlinux 0x22d780e6 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x22d799e2 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x22e3b965 task_work_add +EXPORT_SYMBOL vmlinux 0x22e436cc fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x22f000d2 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x23299cc1 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x234b7cc2 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x2351729c vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x236060b1 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236b4585 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x236b12d4 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x23730394 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237c6f0a fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x237d4878 vm_insert_page +EXPORT_SYMBOL vmlinux 0x2389e209 ppp_input EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x2398c993 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x23a23159 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x23aed13e xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x23b6b66f blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x23a79446 tcf_register_action EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c285a0 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x23bb0452 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23d6219c xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23e624fb pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x23f189f1 tcp_recv_skb EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count -EXPORT_SYMBOL vmlinux 0x23f21096 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x23f74a28 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x23f36218 has_capability_noaudit EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240b9ba1 dup_iter -EXPORT_SYMBOL vmlinux 0x24146429 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x2423cc61 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x23feac00 __neigh_create +EXPORT_SYMBOL vmlinux 0x24192c28 phy_attach EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24539467 dst_destroy +EXPORT_SYMBOL vmlinux 0x24558c3e md_integrity_register EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245d1f73 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x245fceba lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x248320a4 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2471978c phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x24789feb mdio_device_reset EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24b9b837 param_ops_bool -EXPORT_SYMBOL vmlinux 0x24c5d149 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x248adbc4 inc_nlink +EXPORT_SYMBOL vmlinux 0x248b8fab netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x24906a50 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x2498788e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x24accc9e of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x24ad04e3 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x24b957f3 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x24bc615c readahead_expand EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d4570c acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x24d74f96 pci_find_capability -EXPORT_SYMBOL vmlinux 0x24df4ed9 sk_wait_data EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24fd57aa fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x25023ff3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x24ec411c udp_poll EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2507c401 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x250777de netlink_capable +EXPORT_SYMBOL vmlinux 0x250d61c3 end_page_writeback +EXPORT_SYMBOL vmlinux 0x251dc92e twl6040_set_bits EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x255def58 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x2560815c generic_listxattr +EXPORT_SYMBOL vmlinux 0x252ab891 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x25347ff6 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x254e1630 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x256c65ae unregister_md_personality -EXPORT_SYMBOL vmlinux 0x257c9043 __seq_open_private -EXPORT_SYMBOL vmlinux 0x257fb919 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x2569edfd remap_pfn_range +EXPORT_SYMBOL vmlinux 0x257e2c6a input_release_device EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258a6a71 bio_copy_data EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25921488 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25978823 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x25a1236a netdev_change_features -EXPORT_SYMBOL vmlinux 0x25b8c4a4 dquot_release -EXPORT_SYMBOL vmlinux 0x25cab774 scsi_add_device -EXPORT_SYMBOL vmlinux 0x25ce1487 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x25d560bc generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x259754bd may_setattr +EXPORT_SYMBOL vmlinux 0x25aba399 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x25be13ae mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x25d4c196 rproc_boot EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e68187 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x25e9c734 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f5fef5 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x2602e75b udp_read_skb +EXPORT_SYMBOL vmlinux 0x260608fc backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x261d302f xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x26297d64 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x262efe2f iput +EXPORT_SYMBOL vmlinux 0x2617a8c8 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x262aa7d6 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x26486ca6 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x26496521 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x265e5d38 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x265f73f4 get_cached_acl -EXPORT_SYMBOL vmlinux 0x266447af __quota_error -EXPORT_SYMBOL vmlinux 0x26654331 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x266a1237 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x26742455 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x2678e63d backlight_device_register -EXPORT_SYMBOL vmlinux 0x2679aba9 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x2679cde6 dquot_resume +EXPORT_SYMBOL vmlinux 0x264f66f3 d_splice_alias +EXPORT_SYMBOL vmlinux 0x265b1f41 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x26825a5d forget_cached_acl EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x268968ae alloc_fddidev EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2698e0e4 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x26a09557 ps2_init -EXPORT_SYMBOL vmlinux 0x26a26e68 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x26b7a297 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x26d31037 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x26d9c018 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x26dd07e8 build_skb +EXPORT_SYMBOL vmlinux 0x26997f1c vc_cons +EXPORT_SYMBOL vmlinux 0x26a997fd md_flush_request +EXPORT_SYMBOL vmlinux 0x26d8f53e neigh_destroy +EXPORT_SYMBOL vmlinux 0x26db40f8 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e472b6 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x26f4fbc8 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x2700491f sock_kmalloc +EXPORT_SYMBOL vmlinux 0x26ea37cd dec_node_page_state +EXPORT_SYMBOL vmlinux 0x26f21b4a ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x26f37798 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x2706f3d3 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x270cd92a devm_release_resource EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271163a4 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2721a0f0 md_integrity_register +EXPORT_SYMBOL vmlinux 0x27230cef proc_symlink EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272c3d2e pneigh_lookup EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273509c5 vme_init_bridge EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d4fb3 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x2756daea __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x274a6144 ptp_clock_event EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x2764c019 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x276d3fbb drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x2770b49e sk_common_release EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277dda19 super_setup_bdi 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 0x27872783 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x27a87d97 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x27b34d20 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bd6385 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x27c2fd61 sg_miter_next +EXPORT_SYMBOL vmlinux 0x27befba3 folio_alloc +EXPORT_SYMBOL vmlinux 0x27bfec20 __skb_flow_get_ports 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 0x27e17f94 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x27e898d2 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x27e95d7f page_pool_release_page +EXPORT_SYMBOL vmlinux 0x27e18eee pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x27e36002 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x27edf9ed inet6_offloads +EXPORT_SYMBOL vmlinux 0x27f39482 vfs_symlink +EXPORT_SYMBOL vmlinux 0x280247e3 kern_path +EXPORT_SYMBOL vmlinux 0x280b90a2 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x283525f3 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x283d944f d_obtain_root -EXPORT_SYMBOL vmlinux 0x2846a4a6 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x284a5850 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x2850b424 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x281cca3d acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x282156af seq_putc +EXPORT_SYMBOL vmlinux 0x2848c40f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x284d3e2c tcp_connect EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2886945c pipe_lock -EXPORT_SYMBOL vmlinux 0x288de7f9 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x28956a0a qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x288f0608 __register_nls EXPORT_SYMBOL vmlinux 0x289771bb commit_creds -EXPORT_SYMBOL vmlinux 0x289cf825 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x28b63784 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x28bba386 set_nlink -EXPORT_SYMBOL vmlinux 0x28c01714 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x28c2d294 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x28d137f4 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x28d62ffd pci_write_vpd -EXPORT_SYMBOL vmlinux 0x28dc71a0 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x28e4a925 elv_rb_find -EXPORT_SYMBOL vmlinux 0x28f05aaf textsearch_register +EXPORT_SYMBOL vmlinux 0x289ff25b __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x28aa869e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x28be3c73 cdev_add +EXPORT_SYMBOL vmlinux 0x28dc0348 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x28f53cf9 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x28f65705 neigh_for_each EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28fbaff0 blk_get_queue -EXPORT_SYMBOL vmlinux 0x2912abe8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x29040088 sock_no_getname +EXPORT_SYMBOL vmlinux 0x2909f078 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x29165604 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x292e0751 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x29222b8e nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x293c0392 bdi_alloc EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296628a2 begin_new_exec +EXPORT_SYMBOL vmlinux 0x29604ab5 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x29666dba fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x296cfa29 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x297fa6e6 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x2987843e ip6_frag_init -EXPORT_SYMBOL vmlinux 0x29ac11a1 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x29b10b01 clear_inode -EXPORT_SYMBOL vmlinux 0x29c2d914 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x29d217a7 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2981222d nd_dax_probe +EXPORT_SYMBOL vmlinux 0x29894ec7 nonseekable_open +EXPORT_SYMBOL vmlinux 0x298b0bf7 page_pool_create +EXPORT_SYMBOL vmlinux 0x29906d14 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x29afa6da neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x29b8ed0b devm_clk_put +EXPORT_SYMBOL vmlinux 0x29d29e4f nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x29ddce89 dma_find_channel EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x2a088ff1 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x2a2abd08 pci_iounmap +EXPORT_SYMBOL vmlinux 0x29eb2032 param_get_uint +EXPORT_SYMBOL vmlinux 0x29f192e5 set_disk_ro +EXPORT_SYMBOL vmlinux 0x29ff45b5 single_open_size +EXPORT_SYMBOL vmlinux 0x2a2a2487 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x2a2e55d2 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a4569e8 key_unlink -EXPORT_SYMBOL vmlinux 0x2a477638 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x2a5ddca4 blk_put_queue +EXPORT_SYMBOL vmlinux 0x2a39871b make_bad_inode +EXPORT_SYMBOL vmlinux 0x2a68bf7b blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a73e418 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x2a8dde4e xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x2a704aaf nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x2a7b30a7 pm860x_page_bulk_read 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 0x2aa65ebc make_kuid EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab2b5c7 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ab3cd26 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x2ae2b5cd max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x2af5f3fd netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x2af7a732 vfs_fsync +EXPORT_SYMBOL vmlinux 0x2ab4b125 of_chosen +EXPORT_SYMBOL vmlinux 0x2abba5a0 tty_vhangup +EXPORT_SYMBOL vmlinux 0x2acc265e i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2ad64e18 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x2af41f1e dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x2afafc29 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x2afc91f4 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x2b178959 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b31b9bb fasync_helper -EXPORT_SYMBOL vmlinux 0x2b3450e5 ip_output +EXPORT_SYMBOL vmlinux 0x2b1db8e2 __alloc_skb +EXPORT_SYMBOL vmlinux 0x2b4547b5 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x2b4c36cf locks_copy_lock EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b61374a mmc_add_host -EXPORT_SYMBOL vmlinux 0x2b637524 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x2b88279e dev_addr_mod -EXPORT_SYMBOL vmlinux 0x2b8c4148 ip6_output -EXPORT_SYMBOL vmlinux 0x2b9ce8c2 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x2b5d3670 vme_irq_free +EXPORT_SYMBOL vmlinux 0x2b621d5c skb_vlan_push +EXPORT_SYMBOL vmlinux 0x2b71c7ca pps_event EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba18fc9 pps_register_source +EXPORT_SYMBOL vmlinux 0x2ba252d1 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x2baad7e3 key_invalidate +EXPORT_SYMBOL vmlinux 0x2bab77f5 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x2badc77b mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x2bae204e mt_find EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb9b4c7 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2bd352f1 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x2bd5ecdc jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bf44261 skb_copy_header -EXPORT_SYMBOL vmlinux 0x2bf96ed4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x2bd75ea3 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2bea6899 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2befe615 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c17eb12 register_shrinker -EXPORT_SYMBOL vmlinux 0x2c1ab535 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x2c1bb29e skb_dump -EXPORT_SYMBOL vmlinux 0x2c1e3cb3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x2c00e08b mdiobb_read +EXPORT_SYMBOL vmlinux 0x2c0cf8cd of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x2c22b924 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c38f302 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x2c49ae65 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x2c4fdb68 inet_add_offload EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c5748c0 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x2c69ca45 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x2c6e509e xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c86eb62 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c91e6dc tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x2cb7b22c pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x2cb3804b blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2cb856a9 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd6590d filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x2cd63aee __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table -EXPORT_SYMBOL vmlinux 0x2cf1fd60 tty_register_device EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2d01b2d9 d_splice_alias -EXPORT_SYMBOL vmlinux 0x2d0b116d devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x2cfc42cc tcf_action_exec EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d257608 init_task +EXPORT_SYMBOL vmlinux 0x2d159586 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2d293a82 km_new_mapping EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d3953c6 import_iovec +EXPORT_SYMBOL vmlinux 0x2d339671 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3fed7a vme_register_driver +EXPORT_SYMBOL vmlinux 0x2d3d412c iget_failed EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d4f272a md_finish_reshape -EXPORT_SYMBOL vmlinux 0x2d568110 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x2d67c0b9 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x2d72c820 pci_get_class -EXPORT_SYMBOL vmlinux 0x2d738826 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x2d8e5bd0 rtc_add_group -EXPORT_SYMBOL vmlinux 0x2d8f9b56 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x2d6333f7 pci_disable_device +EXPORT_SYMBOL vmlinux 0x2d835189 phy_attached_info +EXPORT_SYMBOL vmlinux 0x2d8eb4bd I_BDEV EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9af47d deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x2da1742d unregister_cdrom -EXPORT_SYMBOL vmlinux 0x2dad27d9 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x2db23b39 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x2d9e4774 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x2da5ca38 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x2dada214 sock_create_lite +EXPORT_SYMBOL vmlinux 0x2db8c37a flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x2dbc096d netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd39f84 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2deb5940 generic_perform_write -EXPORT_SYMBOL vmlinux 0x2df78571 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x2e06eed6 dump_skip_to -EXPORT_SYMBOL vmlinux 0x2e08d3cd skb_find_text EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e12a966 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2e0b5429 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x2e192ce5 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1e4b2f tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2c2e64 md_update_sb EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2d0063 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3e9de0 _dev_alert EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4d1252 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e6cb965 of_root -EXPORT_SYMBOL vmlinux 0x2e6d2f2e lynx_pcs_create -EXPORT_SYMBOL vmlinux 0x2e76e2ac tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x2e814940 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x2e837bf9 scsi_host_get -EXPORT_SYMBOL vmlinux 0x2e85dbe5 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x2e901c6d phy_init_hw -EXPORT_SYMBOL vmlinux 0x2e94c5f4 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x2eb792e4 copy_highpage +EXPORT_SYMBOL vmlinux 0x2e5fa5ec rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x2e718b65 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x2e88b09c blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2e90d887 file_ns_capable +EXPORT_SYMBOL vmlinux 0x2ea11c78 netif_device_detach +EXPORT_SYMBOL vmlinux 0x2ec39b8d bio_integrity_prep EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed663d1 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2ed80b5c unregister_console EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eee0dcb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x2f02d4d1 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2eec9bfc simple_statfs +EXPORT_SYMBOL vmlinux 0x2ef3e7aa poll_freewait +EXPORT_SYMBOL vmlinux 0x2efa4988 retire_super EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f10dd54 input_register_device EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f145a61 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x2f22a278 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x2f172d9f sock_init_data +EXPORT_SYMBOL vmlinux 0x2f290898 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x2f2bf726 pcim_iomap EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f338ade inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x2f373b8c rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f430284 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x2f53fe87 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x2f3f1942 get_cached_acl +EXPORT_SYMBOL vmlinux 0x2f4e5800 lynx_pcs_create +EXPORT_SYMBOL vmlinux 0x2f599a07 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x2f6157bc io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x2f67ce71 rt_dst_clone EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f915946 fb_class -EXPORT_SYMBOL vmlinux 0x2f9e9c6c ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x2f9eba2a input_grab_device -EXPORT_SYMBOL vmlinux 0x2fab8ebc qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0x2fb596f6 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x2fda5805 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x2f77d050 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x2f8a38d0 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x2f8dc16e sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x2fd04f62 param_set_bool +EXPORT_SYMBOL vmlinux 0x2fde72e6 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2ff0ad17 vma_set_file -EXPORT_SYMBOL vmlinux 0x3024568a mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x3036f513 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x3043795a pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x30438d0d scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x3078c62d pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x30798354 trace_event_printf -EXPORT_SYMBOL vmlinux 0x308641a5 __bread_gfp +EXPORT_SYMBOL vmlinux 0x2fe92025 key_move +EXPORT_SYMBOL vmlinux 0x2ff025d6 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x2ff9039e mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x30194851 phy_connect +EXPORT_SYMBOL vmlinux 0x302d6054 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x303a1fcd da903x_query_status +EXPORT_SYMBOL vmlinux 0x304bc693 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x3084a398 devfreq_update_status EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309c04bd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x309bfb05 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b86f23 unregister_key_type -EXPORT_SYMBOL vmlinux 0x30c631a8 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x30c8e5ce filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x30f61ce7 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x30faa24f generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x31179656 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x30b191a2 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x30b20018 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x30c4034c simple_pin_fs +EXPORT_SYMBOL vmlinux 0x30c78df8 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x30d64a68 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x30da2220 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x30dac288 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x30fe71e2 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x3100a0da pci_enable_msi +EXPORT_SYMBOL vmlinux 0x3101ba84 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x31098c9a xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x310ae1a5 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x312501fb reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x31250c5a reuseport_add_sock EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3129757a ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x31561ed2 config_group_find_item -EXPORT_SYMBOL vmlinux 0x317f1ced __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x318607f0 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x319857a7 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x312f1724 ip_frag_init +EXPORT_SYMBOL vmlinux 0x3132ba04 keyring_alloc +EXPORT_SYMBOL vmlinux 0x31420bbd dquot_operations +EXPORT_SYMBOL vmlinux 0x314772aa phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x314a107f md_done_sync +EXPORT_SYMBOL vmlinux 0x314c3f94 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3153617b __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x31544683 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x316e3d7f skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x318f90a9 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b54175 single_open_size -EXPORT_SYMBOL vmlinux 0x31b5903c fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x31d074e2 proc_create_data -EXPORT_SYMBOL vmlinux 0x31d7e20d sock_no_connect -EXPORT_SYMBOL vmlinux 0x31dd3a6c dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x31e42ee6 register_quota_format -EXPORT_SYMBOL vmlinux 0x32008bd1 phy_attached_print -EXPORT_SYMBOL vmlinux 0x32118fb5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x31b4b0dd msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x31c0f9ab param_set_hexint +EXPORT_SYMBOL vmlinux 0x31cdb0ff acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x31d1f59f blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x31e72677 simple_setattr +EXPORT_SYMBOL vmlinux 0x31f32a19 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x31f439f2 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x320220a4 make_kuid +EXPORT_SYMBOL vmlinux 0x32044cb4 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x32057bf2 security_sb_remount EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322e4c7a vfs_rename EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x323c4711 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x3242bcde security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x3253416b __alloc_skb -EXPORT_SYMBOL vmlinux 0x32657e26 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x327537be input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x323a43f9 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x323a89cd iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x3245941a rproc_shutdown +EXPORT_SYMBOL vmlinux 0x3255ece6 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x32611b65 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x326e1805 param_get_int +EXPORT_SYMBOL vmlinux 0x3277f1d1 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32be810c pci_set_master -EXPORT_SYMBOL vmlinux 0x32cc2060 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x32886aaa padata_free_shell +EXPORT_SYMBOL vmlinux 0x328a1e1f ip_getsockopt +EXPORT_SYMBOL vmlinux 0x32a7efc1 __register_binfmt +EXPORT_SYMBOL vmlinux 0x32accc11 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x32ae5af7 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x32beaf8e neigh_event_ns +EXPORT_SYMBOL vmlinux 0x32cc46bc xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d4b790 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x32dda48b pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x32e42585 param_set_charp EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32ea52e7 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x32eeff8b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x32f0ab67 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x32fa9948 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x32fbf2df configfs_undepend_item EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x33252894 netdev_alert -EXPORT_SYMBOL vmlinux 0x334a4a4a simple_getattr -EXPORT_SYMBOL vmlinux 0x3356482f __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x335b798a page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x330e9461 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x3337b519 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x333e8b17 make_kprojid +EXPORT_SYMBOL vmlinux 0x3346fa75 ilookup5 +EXPORT_SYMBOL vmlinux 0x3346fe2f proc_set_size +EXPORT_SYMBOL vmlinux 0x334bfdc5 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x33506b75 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range +EXPORT_SYMBOL vmlinux 0x336f8cc4 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33769be3 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x337bf65b tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x33830305 crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0x33838afb udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x338d7133 input_setup_polling -EXPORT_SYMBOL vmlinux 0x338fb1aa iov_iter_advance -EXPORT_SYMBOL vmlinux 0x339b5469 mdiobb_read -EXPORT_SYMBOL vmlinux 0x33a35c56 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x33be69cc __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x33e80011 seq_puts +EXPORT_SYMBOL vmlinux 0x3378ac1c folio_account_redirty +EXPORT_SYMBOL vmlinux 0x3380c2fd rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x33909407 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x339b0ae4 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x339c63e2 ping_prot +EXPORT_SYMBOL vmlinux 0x339fec8f load_nls_default +EXPORT_SYMBOL vmlinux 0x33c740bf blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x33cc55f8 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x33ecc568 rpmh_write +EXPORT_SYMBOL vmlinux 0x33ecf2a8 qman_start_using_portal EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fc501c phy_drivers_register EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x34013fdc sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x34092cba netlink_set_err +EXPORT_SYMBOL vmlinux 0x341aca12 seq_open_private EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x3433e9ad vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x343494bb md_done_sync -EXPORT_SYMBOL vmlinux 0x3440ab38 bdi_register -EXPORT_SYMBOL vmlinux 0x3450088d i2c_verify_client -EXPORT_SYMBOL vmlinux 0x34629a2c d_drop -EXPORT_SYMBOL vmlinux 0x3478c2fb inode_init_once -EXPORT_SYMBOL vmlinux 0x3480ac5d netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x34903299 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x3498a9ad tcp_peek_len +EXPORT_SYMBOL vmlinux 0x34288fad blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x34329b56 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x3442d3e3 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x3462dc59 _dev_info +EXPORT_SYMBOL vmlinux 0x34723968 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x347aaf03 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x347d13e4 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349e1be1 of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34acbc24 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x34c41cba pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x34c4f30c dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x34ae31e1 genlmsg_put EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cd1b6a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x34d145bb pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34eb8321 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x3515c7fc blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x35160acc amba_device_unregister +EXPORT_SYMBOL vmlinux 0x35114cb3 file_modified EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3521f7e4 retire_super -EXPORT_SYMBOL vmlinux 0x35251f72 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3522a625 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x353252ae set_page_writeback EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3551f368 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x3540284e pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x354ca259 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x354e4110 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x358e7ad2 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x3592a38a __pagevec_release +EXPORT_SYMBOL vmlinux 0x3594ed86 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x359e0b31 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c0ab4f rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x35e9ae28 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x35a9ed3e tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x35ab097a udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x35c60231 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x35d0722b phy_loopback +EXPORT_SYMBOL vmlinux 0x35dc7878 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x35e6e62c sock_register EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360ff95f gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x3619c990 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x361bb4da genl_notify -EXPORT_SYMBOL vmlinux 0x36306364 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x36397c0d show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x363c5f34 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x36428931 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0x3642c2c8 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x3643df5a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x36151af0 block_write_end +EXPORT_SYMBOL vmlinux 0x3617e968 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x361a1b47 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x361af053 md_reload_sb +EXPORT_SYMBOL vmlinux 0x3622343d dput +EXPORT_SYMBOL vmlinux 0x3634c840 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x36355079 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x363fc0a2 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3644c301 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x3649eaf4 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36617485 set_create_files_as -EXPORT_SYMBOL vmlinux 0x36650397 scsi_partsize -EXPORT_SYMBOL vmlinux 0x367b2103 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x36939758 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x367be33f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x367d6911 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x368798e6 vfs_statfs +EXPORT_SYMBOL vmlinux 0x369282d2 clk_add_alias +EXPORT_SYMBOL vmlinux 0x36930173 fman_port_get_device +EXPORT_SYMBOL vmlinux 0x36a2cc69 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x36ae5a7b sock_no_accept EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36b9f2e8 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x36bad82f sock_wake_async -EXPORT_SYMBOL vmlinux 0x36c4a561 filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0x36d634a5 scsi_print_command -EXPORT_SYMBOL vmlinux 0x36e667f7 nf_log_register -EXPORT_SYMBOL vmlinux 0x36f8d8de __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x36fa3d3d __bforget -EXPORT_SYMBOL vmlinux 0x3701b361 sk_capable -EXPORT_SYMBOL vmlinux 0x370820f3 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x36bae310 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x36d245c0 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x36d68e57 d_find_alias +EXPORT_SYMBOL vmlinux 0x36ead2ec blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x36eb59de iov_iter_advance +EXPORT_SYMBOL vmlinux 0x36f08304 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3710a030 elv_rb_find EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37134516 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x37153e77 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37294d5c tcp_splice_read -EXPORT_SYMBOL vmlinux 0x3729d668 unpin_user_page +EXPORT_SYMBOL vmlinux 0x3723b4a9 clk_get +EXPORT_SYMBOL vmlinux 0x37271e51 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x372c0c70 dev_mc_init +EXPORT_SYMBOL vmlinux 0x3739d91f ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x374312a2 dev_get_mac_address EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37509097 mount_bdev EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37586ee8 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x375f8ee2 __of_get_address +EXPORT_SYMBOL vmlinux 0x37697235 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x376a77b2 folio_write_one +EXPORT_SYMBOL vmlinux 0x376d34f1 generic_perform_write +EXPORT_SYMBOL vmlinux 0x3775a002 __mdiobus_register EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37ab57cb request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x377e117b pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x377e8f75 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x377fd61d qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x3785b4be mmc_release_host +EXPORT_SYMBOL vmlinux 0x378da944 d_instantiate +EXPORT_SYMBOL vmlinux 0x37aecf7a __post_watch_notification +EXPORT_SYMBOL vmlinux 0x37b4c3ac d_move EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37bb73ef cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x37bd45e3 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x37bb0e82 __netif_napi_del EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d86c81 folio_migrate_copy EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f68470 unregister_nls -EXPORT_SYMBOL vmlinux 0x37f7fba5 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x380f3e27 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x37f823fb param_ops_uint +EXPORT_SYMBOL vmlinux 0x380f4058 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x3813a98f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x3814fe2b sock_alloc_file EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381bc551 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x38748f26 __break_lease +EXPORT_SYMBOL vmlinux 0x385f5a4f poll_initwait EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3889bd96 __dquot_transfer EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x388ac583 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3895d33f dquot_destroy EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389c66fe wake_up_process EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b2b75f __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x38bf8d4e i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x38cefb32 tty_lock -EXPORT_SYMBOL vmlinux 0x38dc3377 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x38c667d0 find_vma +EXPORT_SYMBOL vmlinux 0x38c7a07f to_nd_pfn +EXPORT_SYMBOL vmlinux 0x38ce6307 register_qdisc +EXPORT_SYMBOL vmlinux 0x38e0d207 pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38ee895c xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x38fb0f82 skb_ext_add -EXPORT_SYMBOL vmlinux 0x3911d70e jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x39123755 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x38f2f8a6 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x38fc08de flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x39289ba0 rproc_report_crash EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3938715e truncate_setsize EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393ff434 follow_down EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x39528ab4 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x394b6ad1 pci_release_regions +EXPORT_SYMBOL vmlinux 0x394cdb33 param_get_byte +EXPORT_SYMBOL vmlinux 0x394f4a3f jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395ca4be backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x39661374 dev_load -EXPORT_SYMBOL vmlinux 0x396949b0 param_set_charp -EXPORT_SYMBOL vmlinux 0x396c8cb0 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x397f22fd pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x398e67b4 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x3993046a inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x396ee204 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x3976e28a find_inode_nowait EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b10ee9 key_invalidate +EXPORT_SYMBOL vmlinux 0x39a3b4c2 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x39abcbd4 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c05092 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x39c35003 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39c74d4a skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39ff9cce ip_setsockopt -EXPORT_SYMBOL vmlinux 0x3a114cc9 vme_slave_request -EXPORT_SYMBOL vmlinux 0x3a11b2c9 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x3a24cbf1 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x3a37ae22 import_single_range -EXPORT_SYMBOL vmlinux 0x3a3c6bfc netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x39da9978 rproc_del +EXPORT_SYMBOL vmlinux 0x3a19a15e page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x3a1f713f get_watch_queue +EXPORT_SYMBOL vmlinux 0x3a429c90 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a504b9a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x3a56392d scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x3aa71245 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x3a5b1d97 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x3a6246e3 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3a631653 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x3a73478a vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x3a7deae5 locks_init_lock EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock -EXPORT_SYMBOL vmlinux 0x3ab6bd93 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x3ab72d51 from_kgid_munged EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aba92e7 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad65d35 seq_write EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae33c58 skb_push EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3afaeb24 is_acpi_device_node EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b030b2c of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x3b05d56b vfs_getattr +EXPORT_SYMBOL vmlinux 0x3aff7032 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x3b02f656 scsi_block_requests EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b180d85 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x3b192ed6 register_md_personality +EXPORT_SYMBOL vmlinux 0x3b1ad6c6 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b212af2 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x3b256f74 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3b287cd3 noop_dirty_folio EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b44ea6d alloc_fcdev -EXPORT_SYMBOL vmlinux 0x3b4d35fb blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x3b35864a kill_fasync +EXPORT_SYMBOL vmlinux 0x3b3c6797 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x3b3f4e58 pci_scan_single_device EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b6e0810 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b7299b1 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x3b79e8f1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3b8fe79f tcp_sync_mss EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b93b6b3 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x3b9b87c8 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x3bb8cb26 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x3bba71b4 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x3bce0295 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x3bcf8fab vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x3bd41258 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x3bdee417 dcache_readdir -EXPORT_SYMBOL vmlinux 0x3be0f626 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x3bf0a183 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x3bf4f90d blackhole_netdev -EXPORT_SYMBOL vmlinux 0x3bf81985 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x3baaa516 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x3bb9dbcf of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3bc42899 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x3be72427 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3be9d038 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x3bfdcdee __nla_put -EXPORT_SYMBOL vmlinux 0x3c00ad80 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3bfff1c6 sock_set_priority +EXPORT_SYMBOL vmlinux 0x3c0600b0 mmc_free_host EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c221e0d neigh_xmit -EXPORT_SYMBOL vmlinux 0x3c25b3b5 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x3c19149e eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c39505f __kfree_skb EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c558be7 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x3c813935 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x3c4c11e0 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x3c62ba2a scsi_host_busy +EXPORT_SYMBOL vmlinux 0x3c641e7a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x3c83029e kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x3ca8e3ca generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x3cae5bf3 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cb7686a tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cd38245 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x3cd1b063 sk_mc_loop EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3cde7387 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x3cdde89c fb_pan_display +EXPORT_SYMBOL vmlinux 0x3ce2e8f3 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce6883a free_task -EXPORT_SYMBOL vmlinux 0x3cecdf7e ilookup -EXPORT_SYMBOL vmlinux 0x3cf1c9d9 filp_open +EXPORT_SYMBOL vmlinux 0x3ce5a1d4 is_nd_dax +EXPORT_SYMBOL vmlinux 0x3ce69ec2 bio_reset +EXPORT_SYMBOL vmlinux 0x3cfe7c3c dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d204930 framebuffer_release EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d47a119 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x3d57bf25 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x3d5f4466 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x3d890291 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x3d21972f nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3d23ecb4 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x3d2eb56e netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3d4a3a60 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3d4cd0b4 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x3d50269b jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3d54b7d0 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x3d58efe1 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x3d63ea2c kernel_param_lock EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d96333a serio_rescan EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da22adb request_firmware -EXPORT_SYMBOL vmlinux 0x3da5447b input_get_keycode +EXPORT_SYMBOL vmlinux 0x3da5179c inet_addr_type_table 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 0x3dafeef1 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x3dbc22c9 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd32653 get_vm_area EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd724a0 dev_trans_start EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddd7757 bioset_exit -EXPORT_SYMBOL vmlinux 0x3df24f09 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x3df63291 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x3de8f0f2 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e043849 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x3e19c39e tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x3e1a6fbd mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x3e088b5f scsi_done_direct +EXPORT_SYMBOL vmlinux 0x3e238aee __fput_sync +EXPORT_SYMBOL vmlinux 0x3e360b52 free_task EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e70e46e dquot_file_open +EXPORT_SYMBOL vmlinux 0x3e3fcc13 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x3e5f247a config_group_init +EXPORT_SYMBOL vmlinux 0x3e6f3490 block_write_full_page EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3ea1ec92 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x3ea1fa78 tcf_register_action +EXPORT_SYMBOL vmlinux 0x3e7a65c4 mmc_request_done +EXPORT_SYMBOL vmlinux 0x3e8d7b4c posix_lock_file +EXPORT_SYMBOL vmlinux 0x3e975042 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x3e9b2607 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ee6d01f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3edd2e08 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x3ee35162 dst_discard_out +EXPORT_SYMBOL vmlinux 0x3efc732b devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f02b1a2 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x3f0cdf5b aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0x3f041c61 free_netdev +EXPORT_SYMBOL vmlinux 0x3f073c2b blk_get_queue EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1f9c64 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x3f11aa79 phy_device_create +EXPORT_SYMBOL vmlinux 0x3f1f74b3 register_quota_format 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 0x3f682131 kobject_put -EXPORT_SYMBOL vmlinux 0x3f7102e9 task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0x3f7a2b28 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x3f87c303 kobject_set_name +EXPORT_SYMBOL vmlinux 0x3f6648ae devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f92b9d5 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x3f94a4ea jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x3fabe6f2 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd625d1 blk_start_plug +EXPORT_SYMBOL vmlinux 0x3fc7dabb keyring_search +EXPORT_SYMBOL vmlinux 0x3fceabf2 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x4020f107 input_open_device +EXPORT_SYMBOL vmlinux 0x3ff50b31 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x3ff56039 inet_offloads +EXPORT_SYMBOL vmlinux 0x3fff6f5b xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x400d535f phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x405b84f5 of_get_next_child -EXPORT_SYMBOL vmlinux 0x4064672e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x402b0795 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x4075630d serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot -EXPORT_SYMBOL vmlinux 0x40871378 clk_get -EXPORT_SYMBOL vmlinux 0x4092a6da md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x408dbdae __bio_advance +EXPORT_SYMBOL vmlinux 0x408ef542 page_pool_release_page EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40975666 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x40a49d7b rt6_lookup EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b0e6b9 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x40b7862f dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x40be2dc5 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x40c43da1 bio_free_pages EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d36fad netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dccfe1 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x40e07b1d tcf_idr_search +EXPORT_SYMBOL vmlinux 0x40e2fd79 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x40e62f00 input_close_device EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x411d2c76 xudma_get_device +EXPORT_SYMBOL vmlinux 0x4102060d blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x410511d4 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x410990a5 rproc_report_crash EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41341792 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x41336c9c scsi_target_resume +EXPORT_SYMBOL vmlinux 0x413fc04b __mmc_claim_host EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414b9ae6 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x4155ee27 __d_drop -EXPORT_SYMBOL vmlinux 0x4161cd19 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x417726f5 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x41861896 input_free_device +EXPORT_SYMBOL vmlinux 0x414eee95 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x4154bcf6 __napi_schedule EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4193a283 blk_sync_queue EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41b11125 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x41ec03da xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x41acc4a2 km_report +EXPORT_SYMBOL vmlinux 0x41b84cda filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x41bca23f cdev_device_add +EXPORT_SYMBOL vmlinux 0x41e6064c __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x41eca9a7 dquot_acquire EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41fa2e65 phy_print_status -EXPORT_SYMBOL vmlinux 0x42208cdc __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x41f7591e tcp_child_process +EXPORT_SYMBOL vmlinux 0x42065a27 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x42209392 dump_skip +EXPORT_SYMBOL vmlinux 0x423f017b genl_register_family +EXPORT_SYMBOL vmlinux 0x42446057 pnp_device_detach EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4253b814 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x4254cfd2 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x42572fb6 misc_register EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42597e13 thaw_bdev -EXPORT_SYMBOL vmlinux 0x425b2738 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x425fcd50 unlock_rename -EXPORT_SYMBOL vmlinux 0x4260a0b2 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x4272a446 md_reload_sb -EXPORT_SYMBOL vmlinux 0x428370ce mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x42660c17 request_key_tag +EXPORT_SYMBOL vmlinux 0x426d60ac security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x4275752b tcf_block_put +EXPORT_SYMBOL vmlinux 0x427ddf39 netif_device_attach +EXPORT_SYMBOL vmlinux 0x42809557 pci_find_resource +EXPORT_SYMBOL vmlinux 0x428582c1 ip6_output +EXPORT_SYMBOL vmlinux 0x4290ac81 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c65773 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x42cac7e3 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x42c380e0 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x42c63dde ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x42e1de3f seq_read_iter EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4301c21e neigh_lookup -EXPORT_SYMBOL vmlinux 0x430272b3 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x42f22b15 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4307ccfe config_item_set_name -EXPORT_SYMBOL vmlinux 0x431035b6 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x4310c64a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x43294a66 _dev_crit +EXPORT_SYMBOL vmlinux 0x43147f61 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x4315cfc6 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x4325aa65 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43394cb8 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x433e2288 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x433e5ac8 sock_no_linger +EXPORT_SYMBOL vmlinux 0x434f944e tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4356387d __devm_request_region -EXPORT_SYMBOL vmlinux 0x436d04cb of_phy_connect -EXPORT_SYMBOL vmlinux 0x43756b35 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x4362c165 bdi_register EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43971a44 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x438ac5db param_ops_bool +EXPORT_SYMBOL vmlinux 0x438ee6d4 pci_release_resource +EXPORT_SYMBOL vmlinux 0x4397b500 get_fs_type EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b8e27d __breadahead +EXPORT_SYMBOL vmlinux 0x43b7c4ff mmc_run_bkops EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one -EXPORT_SYMBOL vmlinux 0x43c34de1 xp_dma_map -EXPORT_SYMBOL vmlinux 0x43ca81fa security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x43bac44b xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43dd0761 dcb_getapp -EXPORT_SYMBOL vmlinux 0x43e041fe flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x43efa20d generic_write_checks -EXPORT_SYMBOL vmlinux 0x43f09eb1 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x43f1aea3 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x440999b9 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x4420818c dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0x442d66c8 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x44354089 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x4439d969 param_get_ulong +EXPORT_SYMBOL vmlinux 0x442c9bd6 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x442fe4fe skb_dequeue EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4455641c xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x445fb713 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x4460c338 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4449df2d scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x444ef222 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x445f180e dump_skip_to EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x448b85a5 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x448c7902 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44ac70be vme_slot_num -EXPORT_SYMBOL vmlinux 0x44c87e1c genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x44d24fdd inode_nohighmem -EXPORT_SYMBOL vmlinux 0x44db3504 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x44b81409 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x44bddd38 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x44d62b7f dev_get_by_name EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ec7263 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x44f41901 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x44f6773f ps2_drain -EXPORT_SYMBOL vmlinux 0x44f6a3ab of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x44ede7f9 simple_getattr +EXPORT_SYMBOL vmlinux 0x44eec059 sock_edemux 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 0x451b536b iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0x451f1399 of_device_register EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x4528334f phy_get_pause -EXPORT_SYMBOL vmlinux 0x45299702 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x4527fe01 pci_iomap_range EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454138a2 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x45520f2e ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455c27ac blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x45557f0f blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x456668cc d_set_fallthru EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x45753ae3 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45b4393f softnet_data -EXPORT_SYMBOL vmlinux 0x45c00439 of_match_node -EXPORT_SYMBOL vmlinux 0x45c07341 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x45cdba05 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x45e0e544 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x45e61fac dst_dev_put -EXPORT_SYMBOL vmlinux 0x45fb42e1 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x460dddf1 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x460e76bb dev_mc_flush +EXPORT_SYMBOL vmlinux 0x458d31a0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x459e42a1 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x45a49dea tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x45a73408 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x45ae5316 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x45cc8e26 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x45cd12b5 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x45d588a4 skb_append +EXPORT_SYMBOL vmlinux 0x45d93b9d fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x45e214a5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x45e2e416 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x45ec95ee input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x460c27f3 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x462388e1 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x46438345 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x461f517a tty_lock EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0x46475d26 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x464cf7ec __netif_rx -EXPORT_SYMBOL vmlinux 0x46556364 mdiobb_write -EXPORT_SYMBOL vmlinux 0x465790e1 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x46525757 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4653866d tty_port_init +EXPORT_SYMBOL vmlinux 0x4656afc0 padata_free EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466085cc __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x46624972 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4667858d scsi_device_lookup EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4677b7e8 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x467fea62 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x46891f1c mntput +EXPORT_SYMBOL vmlinux 0x469347f9 set_binfmt EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46ad1d4a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x46b0b09f jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46da53e7 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x46d847c5 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x46dff022 of_match_node +EXPORT_SYMBOL vmlinux 0x46e5dd35 vfs_getattr +EXPORT_SYMBOL vmlinux 0x46ec3dab pci_get_class 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 0x4709c765 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x470d1b89 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x470f3803 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x4713e0f2 rproc_set_firmware EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4728bcdb path_is_under -EXPORT_SYMBOL vmlinux 0x47444124 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x471dd5b0 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x473579f5 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x47474601 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x474dd968 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x476772de ppp_input -EXPORT_SYMBOL vmlinux 0x4769118e I_BDEV EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x47781cb4 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x47881a63 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47928000 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479b96cb gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x47a0a646 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x47a81366 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x47b318a9 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x47c1c48f netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x479645ff make_kgid +EXPORT_SYMBOL vmlinux 0x47aca13e sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x47b11450 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x47ba7542 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x47bf27a0 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47ccdc76 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x47cd8db5 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x47c7c6d4 generic_file_open +EXPORT_SYMBOL vmlinux 0x47c7d198 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d05072 can_nice EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47deacef kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x47e387c1 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x47e898ac sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x47f8b83c dev_open -EXPORT_SYMBOL vmlinux 0x47fa1fdb notify_change EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x48186da3 generic_permission EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481eebd4 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x4820ef01 netlink_set_err EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x48362430 inet6_bind +EXPORT_SYMBOL vmlinux 0x482f6ecc dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x4831a790 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x48360db6 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48420061 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x4845eaef dm_put_device 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 0x48605f36 brioctl_set EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4866cb10 seq_path -EXPORT_SYMBOL vmlinux 0x48800112 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x48843b29 redraw_screen -EXPORT_SYMBOL vmlinux 0x488dbd36 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x4890146f fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x489520fa vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x48975811 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x489bcc82 module_refcount +EXPORT_SYMBOL vmlinux 0x488ba214 skb_copy +EXPORT_SYMBOL vmlinux 0x488cf020 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x4890ac9b scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x4896acd1 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x489d65a1 of_device_register EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48afa23f pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x48b4bb14 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c949a0 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x48c9449a qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48d79fc1 tcp_connect EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x48f369af devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x48f74d1f sk_alloc -EXPORT_SYMBOL vmlinux 0x48f96a82 key_task_permission +EXPORT_SYMBOL vmlinux 0x48e18136 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x48e5d943 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x48f7440a md_update_sb EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0x4900f5a6 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4912634d scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x4912f7c3 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x49134dff i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x4913c0f8 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x4920cf29 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x493257b9 empty_aops -EXPORT_SYMBOL vmlinux 0x494fc855 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x490d05f4 dev_add_offload EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x49688dfa tty_port_hangup EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x497d9cca inet_sendpage +EXPORT_SYMBOL vmlinux 0x4992c189 sk_reset_timer EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a94844 dm_table_event +EXPORT_SYMBOL vmlinux 0x49aad859 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x49ac45b5 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b38af8 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x49bc3ee5 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x49bc64e5 key_put -EXPORT_SYMBOL vmlinux 0x49cd030a __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x49d22d93 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x49e2a756 param_set_hexint -EXPORT_SYMBOL vmlinux 0x49ec5d4b pagecache_get_page +EXPORT_SYMBOL vmlinux 0x49b61064 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x49ce338a bio_split +EXPORT_SYMBOL vmlinux 0x49ff2a80 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x4a0c944e security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x4a125da8 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x4a2763fd tcf_em_register EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a40918c phy_stop -EXPORT_SYMBOL vmlinux 0x4a4da2ac rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x4a934f52 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4a6ec46a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x4a8c2dd1 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x4a8d0d85 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a99f9e2 cdev_alloc -EXPORT_SYMBOL vmlinux 0x4aa60dbd skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x4ac3b9e9 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x4a9f9d7b mmc_get_card +EXPORT_SYMBOL vmlinux 0x4ab51cd5 kernel_read +EXPORT_SYMBOL vmlinux 0x4ad66385 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x4ad7a94a nla_put_nohdr EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af14127 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x4aeb55d8 param_ops_short +EXPORT_SYMBOL vmlinux 0x4af48810 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4afb413b ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x4b061c33 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b1c714c page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x4b25bda4 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b41beb1 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x4b532815 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x4b569223 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x4b592165 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b72c8c9 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x4b737dec dm_unregister_target EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b7d945e md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x4b9ff768 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x4b845e87 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x4ba5e463 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4bbd87e5 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x4bc54d41 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x4bc8ef8a sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcff7bb pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x4be6eb8e netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x4bec1e63 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x4be82d04 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4befc956 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4bf3ae51 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bf5726a vm_insert_page -EXPORT_SYMBOL vmlinux 0x4bfa4e2d mmc_can_discard +EXPORT_SYMBOL vmlinux 0x4bffc1b1 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x4c000594 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c15d543 xen_free_ballooned_pages -EXPORT_SYMBOL vmlinux 0x4c1fcc9d clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x4c213282 seq_read_iter -EXPORT_SYMBOL vmlinux 0x4c393e7d tcp_release_cb +EXPORT_SYMBOL vmlinux 0x4c12f1bb mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x4c3c7cfb kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c47c55f ip_getsockopt -EXPORT_SYMBOL vmlinux 0x4c59655d skb_put -EXPORT_SYMBOL vmlinux 0x4c59d082 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x4c64411b proc_create_single_data -EXPORT_SYMBOL vmlinux 0x4c73fb6e __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x4c97df81 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x4c9c2272 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x4ca23936 invalidate_disk -EXPORT_SYMBOL vmlinux 0x4cc90a07 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x4cd0be9e blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x4ce1787e security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x4cfa521f device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x4cfaa2ef is_nd_dax -EXPORT_SYMBOL vmlinux 0x4d046586 _dev_alert +EXPORT_SYMBOL vmlinux 0x4c68214b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x4c684711 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x4c7833ba kthread_stop +EXPORT_SYMBOL vmlinux 0x4ca6600e iput +EXPORT_SYMBOL vmlinux 0x4ca78230 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x4cb50d23 key_validate +EXPORT_SYMBOL vmlinux 0x4cd7fc90 generic_listxattr +EXPORT_SYMBOL vmlinux 0x4ce66e65 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x4cf37898 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x4cf582b4 set_page_dirty +EXPORT_SYMBOL vmlinux 0x4cf66d0d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x4cfec149 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d0d6c9f lease_modify -EXPORT_SYMBOL vmlinux 0x4d1598cc d_instantiate_anon EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d42fb48 mii_check_media -EXPORT_SYMBOL vmlinux 0x4d4bf8ce unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x4d5782e3 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x4d58775a inode_get_bytes -EXPORT_SYMBOL vmlinux 0x4d61f0d8 skb_unlink +EXPORT_SYMBOL vmlinux 0x4d504a5e ip6_xmit +EXPORT_SYMBOL vmlinux 0x4d57b8ca rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x4d5b82bc uart_get_divisor +EXPORT_SYMBOL vmlinux 0x4d5d305c ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d75d43b skb_copy_expand -EXPORT_SYMBOL vmlinux 0x4d773d48 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x4d69f40c __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x4d7e43e5 inet_addr_type +EXPORT_SYMBOL vmlinux 0x4d8d0cb1 PageMovable EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4da90c94 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd3dc19 tcp_read_done +EXPORT_SYMBOL vmlinux 0x4dd3029d nf_log_set +EXPORT_SYMBOL vmlinux 0x4ddfe473 empty_aops +EXPORT_SYMBOL vmlinux 0x4de79da3 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df121bd xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e059af2 kset_unregister +EXPORT_SYMBOL vmlinux 0x4e10bce4 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x4e1d0a77 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e2ee75d phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x4e306118 scsi_device_put EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e362067 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e4e4d7f folio_unlock 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 0x4e787fab seq_pad -EXPORT_SYMBOL vmlinux 0x4e9762f1 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4e733a40 netdev_update_features +EXPORT_SYMBOL vmlinux 0x4e7ddff7 phy_write_paged +EXPORT_SYMBOL vmlinux 0x4e83903c pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4e8eefb5 dump_page EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb443ac tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x4eb5a592 vme_master_request +EXPORT_SYMBOL vmlinux 0x4eb7ba91 set_anon_super +EXPORT_SYMBOL vmlinux 0x4ebc2b9b skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee629f8 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x4f0f77d8 input_match_device_id -EXPORT_SYMBOL vmlinux 0x4f17bf3f from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x4f1a7b93 bio_endio +EXPORT_SYMBOL vmlinux 0x4ec5a57b tty_kref_put +EXPORT_SYMBOL vmlinux 0x4ec6bfc7 fasync_helper +EXPORT_SYMBOL vmlinux 0x4ee7bc76 security_path_unlink +EXPORT_SYMBOL vmlinux 0x4ee898aa fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x4efd2e0d phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x4f13b2e6 xfrm_state_alloc 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 0x4f28230d __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x4f307074 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x4f3c9ca8 get_watch_queue +EXPORT_SYMBOL vmlinux 0x4f2fb37f config_group_find_item +EXPORT_SYMBOL vmlinux 0x4f3e1bc8 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x4f491352 __nla_reserve -EXPORT_SYMBOL vmlinux 0x4f505c77 genphy_update_link EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f600879 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x4f7c9987 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x4f804e19 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x4f717aec sock_bind_add EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x4f9b932c tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x4fa7d85d cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x4fa9b77c imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x4facbc3a xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x4fafb329 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x4fb7fde0 d_delete -EXPORT_SYMBOL vmlinux 0x4fc00cb3 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4fc2734f __lock_buffer -EXPORT_SYMBOL vmlinux 0x4fccaa0f skb_trim -EXPORT_SYMBOL vmlinux 0x4fdf33fb bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x4fe380b5 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x4fc3bb35 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x4fd17c0a bio_add_page EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid +EXPORT_SYMBOL vmlinux 0x4ff2ae4f tcp_mmap EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50009109 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x50016691 netdev_err -EXPORT_SYMBOL vmlinux 0x5003f726 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x5008217f mii_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500d05c8 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x500fe974 tty_write_room +EXPORT_SYMBOL vmlinux 0x5019a231 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x5021746f tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x503b7064 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x503bb27e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x5036f475 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x5068a968 dput -EXPORT_SYMBOL vmlinux 0x506ad99b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x506d563a uart_write_wakeup EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5083b82e neigh_parms_release 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 0x5095504d backlight_force_update EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x50a2251b ether_setup EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b16b9c ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50b87e95 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x50bcb438 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50ca0d36 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x50cb5e17 param_ops_uint EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50cfd34b fb_blank EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d8ab9f dev_deactivate +EXPORT_SYMBOL vmlinux 0x50d0b834 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x50d5dc4b filp_open +EXPORT_SYMBOL vmlinux 0x50f4c6ea dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50fad57e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x50f9bd50 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51076d1b fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x51077edb lease_get_mtime -EXPORT_SYMBOL vmlinux 0x51105624 ilookup5 -EXPORT_SYMBOL vmlinux 0x51144f7a __check_sticky -EXPORT_SYMBOL vmlinux 0x511b06a8 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x5137fb0a vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x510a0a5b skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5114f7fc mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x5124e97b vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5127ffa2 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x512f46dd jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x5138a033 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x51465340 page_symlink EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51584a0f jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51750c0a kernel_getsockname -EXPORT_SYMBOL vmlinux 0x51832f49 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x5187b419 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x518cd5fb gpiochip_irq_reqres -EXPORT_SYMBOL vmlinux 0x51925f08 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x5196a929 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5174cdda md_write_start +EXPORT_SYMBOL vmlinux 0x517b27db ip_defrag +EXPORT_SYMBOL vmlinux 0x5186533b __fs_parse +EXPORT_SYMBOL vmlinux 0x51971677 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x519935e9 blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51bef05f register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x51a96c58 sync_filesystem +EXPORT_SYMBOL vmlinux 0x51c3f929 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51f0acd2 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x51da010a from_kuid +EXPORT_SYMBOL vmlinux 0x51ff5cd0 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x5218a444 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x522fb429 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x524ca7b7 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x525679ec netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x52622a6c param_get_long +EXPORT_SYMBOL vmlinux 0x52624c7b __break_lease EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x526f00ec cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x527635a9 thaw_super -EXPORT_SYMBOL vmlinux 0x5289a002 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x529606f3 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x5280fd8e inet_register_protosw +EXPORT_SYMBOL vmlinux 0x52893f39 dquot_initialize +EXPORT_SYMBOL vmlinux 0x5291971c config_group_init_type_name EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529c5e50 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x52a23e8a skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x52b65ad3 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x529ae436 dma_map_resource +EXPORT_SYMBOL vmlinux 0x52b3f623 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x52b73adf bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x52b7a6af bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e59e5e rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x52e90785 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x52ea3f7e param_ops_invbool +EXPORT_SYMBOL vmlinux 0x52d94874 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x52e70049 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x52e8dd25 get_vm_area EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52f41edf netif_rx -EXPORT_SYMBOL vmlinux 0x52f60bda inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x52f8e306 ptp_find_pin EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53106e36 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5318a2b3 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x531eb2bd keyring_clear +EXPORT_SYMBOL vmlinux 0x53155295 unlock_page EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x5346420a simple_rename -EXPORT_SYMBOL vmlinux 0x53749122 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x5388c763 rtnl_offload_xstats_notify -EXPORT_SYMBOL vmlinux 0x5390c76c d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x539f1907 set_capacity +EXPORT_SYMBOL vmlinux 0x53574094 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x53583624 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x537935e5 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x5399089e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x539e3d19 scsi_device_resume EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53a59e94 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x53ae5dbc is_acpi_device_node EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53bcab31 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x53cace84 vfs_setpos -EXPORT_SYMBOL vmlinux 0x53d1de28 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x53d2d638 param_set_byte -EXPORT_SYMBOL vmlinux 0x53dc4b74 dev_get_stats -EXPORT_SYMBOL vmlinux 0x53df1cdc sock_efree -EXPORT_SYMBOL vmlinux 0x53e7f624 generic_setlease -EXPORT_SYMBOL vmlinux 0x53e89cfc sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x53eb10b5 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x53ef200a xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x53d2a02a rpmh_write_async +EXPORT_SYMBOL vmlinux 0x53de4834 neigh_lookup +EXPORT_SYMBOL vmlinux 0x53efb57a tegra_ivc_init EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53f0eb65 of_device_unregister -EXPORT_SYMBOL vmlinux 0x53f18f7f ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x53f3a26d proc_create_mount_point EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x53fdb8f2 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x54020351 vfs_mkdir EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x541214ed security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x5424e0bf kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x542f9239 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x5407bcef phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x541f5cdc xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x5435ff75 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x543c199f devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5440ec9f __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x5449876f param_set_ullong -EXPORT_SYMBOL vmlinux 0x54602a07 md_handle_request -EXPORT_SYMBOL vmlinux 0x5464bc62 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x5480bd85 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x548b2769 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x54b17613 path_has_submounts +EXPORT_SYMBOL vmlinux 0x54662ab9 filemap_flush +EXPORT_SYMBOL vmlinux 0x546c2747 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x547b94e8 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x547f7d1c input_get_timestamp +EXPORT_SYMBOL vmlinux 0x54883bcc dm_table_get_size +EXPORT_SYMBOL vmlinux 0x54900e0e lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54c73920 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x54cb2d61 dm_put_device -EXPORT_SYMBOL vmlinux 0x54daf862 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x54b9e118 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x54bb3313 tty_unthrottle EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x5505246e rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x54fa6685 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x55053430 udp_disconnect EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550955ec input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x550b6f18 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5529de25 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x552a597a _copy_from_iter +EXPORT_SYMBOL vmlinux 0x552d5b5d mmc_can_trim EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x552ece8e input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x5530a830 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x55398727 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x55406577 tcp_poll EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x556adb10 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x557bbf8c mmc_detect_change +EXPORT_SYMBOL vmlinux 0x554bc276 phy_device_register +EXPORT_SYMBOL vmlinux 0x55543418 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x557083b5 mmc_start_request EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55c1f35f md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x559e653f of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x55b3750e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x55e23f3a pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e693ef tty_check_change -EXPORT_SYMBOL vmlinux 0x55f1cf8b mod_node_page_state -EXPORT_SYMBOL vmlinux 0x5612e1c7 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x55ed1351 rproc_add +EXPORT_SYMBOL vmlinux 0x55ef0dfc block_commit_write +EXPORT_SYMBOL vmlinux 0x55fd29b5 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x56018075 uart_match_port +EXPORT_SYMBOL vmlinux 0x5609cf4a d_add EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x562533b8 bio_reset +EXPORT_SYMBOL vmlinux 0x56164c35 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5642266d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x563b3ded tty_hangup +EXPORT_SYMBOL vmlinux 0x5645d4d5 __scm_send EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x5657ad45 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x567f9ed4 page_readlink +EXPORT_SYMBOL vmlinux 0x565b7e04 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5680d742 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x569ba7a9 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x569f2f73 arp_create +EXPORT_SYMBOL vmlinux 0x569fe409 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x56ab9a78 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x56b76af7 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cbed70 bio_split_to_limits -EXPORT_SYMBOL vmlinux 0x56d09008 arp_create -EXPORT_SYMBOL vmlinux 0x56e48b3a compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x56f01250 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x56f202fd dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x56f71452 napi_get_frags -EXPORT_SYMBOL vmlinux 0x5709a9c1 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x571fdf3b ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x57486b44 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x56d2c1eb kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x56d55b45 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x56e8f490 brioctl_set +EXPORT_SYMBOL vmlinux 0x56ed4924 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x5713fe65 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x571703b8 __ps2_command +EXPORT_SYMBOL vmlinux 0x571e0c7d fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x57406f4a i2c_verify_client EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5756b6f1 vme_lm_request EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576ec50a uart_get_divisor -EXPORT_SYMBOL vmlinux 0x5771e5ed bpf_map_get -EXPORT_SYMBOL vmlinux 0x577466e9 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x5775e4cd mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0x577c4843 register_qdisc -EXPORT_SYMBOL vmlinux 0x577f61c1 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x5785b182 tcp_read_skb -EXPORT_SYMBOL vmlinux 0x578a11a7 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x578d0bb5 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x5772e9cf key_link EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579b59ef unlock_buffer -EXPORT_SYMBOL vmlinux 0x57a282b1 serio_interrupt -EXPORT_SYMBOL vmlinux 0x57a8bed7 d_instantiate -EXPORT_SYMBOL vmlinux 0x57b4d7a0 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x579942b5 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57cf1b32 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x57db2274 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57df532c fddi_type_trans -EXPORT_SYMBOL vmlinux 0x57e90f16 pci_choose_state EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f7637a rproc_put -EXPORT_SYMBOL vmlinux 0x58133ae5 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0x5814e031 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x580cda3a touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x580ea806 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5823d6dd md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582ab7c7 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582de112 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584266cf of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x58418f00 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x5854e854 devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587d43cf ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588b0254 amba_driver_register +EXPORT_SYMBOL vmlinux 0x589426f1 fsync_bdev EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x58a2f2c0 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x58a1b6de tty_unlock EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58af4b11 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x58b2b4f7 ps2_handle_response EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bf5c39 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x58d6a130 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x58b9351d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x58d189ab sock_no_mmap +EXPORT_SYMBOL vmlinux 0x58d1c69d seq_dentry EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e183f5 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58fc3acd pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x590c029a rtnl_notify -EXPORT_SYMBOL vmlinux 0x592b1209 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x5905506d tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x591191c6 dev_activate +EXPORT_SYMBOL vmlinux 0x591c8e4e serio_reconnect +EXPORT_SYMBOL vmlinux 0x591f94ff tcp_time_wait +EXPORT_SYMBOL vmlinux 0x59324897 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x5937087e inet_protos -EXPORT_SYMBOL vmlinux 0x59471730 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x594a9a50 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x5951e1ca dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x5956124b forget_cached_acl +EXPORT_SYMBOL vmlinux 0x59468fb2 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x5954bce9 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596f5259 rproc_del -EXPORT_SYMBOL vmlinux 0x597126c8 skb_store_bits -EXPORT_SYMBOL vmlinux 0x59796ade pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x59839912 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x598babe3 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x59682e46 pci_choose_state +EXPORT_SYMBOL vmlinux 0x596d62b9 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x59774a1f rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x598b3cfa twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x599f308e sb_set_blocksize EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59ac00c9 pcie_print_link_status EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b8980c arp_send -EXPORT_SYMBOL vmlinux 0x59fe1ed5 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x5a0031bd xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x59cddd91 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x59d90973 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x59da80ef pci_set_master +EXPORT_SYMBOL vmlinux 0x59ea61b8 vme_register_bridge EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a1b12ee read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x5a13f3c6 key_alloc +EXPORT_SYMBOL vmlinux 0x5a16ded0 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x5a184ff7 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a30a7b5 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x5a3140ae of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x5a417c94 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x5a42b4f5 unregister_shrinker EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5c8a76 _dev_err EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a675ab1 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x5a78c6d3 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x5a8ac287 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x5a64764c invalidate_bdev +EXPORT_SYMBOL vmlinux 0x5a83b9b0 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x5a8ac0a5 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa64c4d get_unmapped_area -EXPORT_SYMBOL vmlinux 0x5adba915 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x5ab55362 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x5abfd5e4 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5ac15b01 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5b1af3a5 finish_swait -EXPORT_SYMBOL vmlinux 0x5b27d608 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x5ae8e670 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x5afe2d0d ip6_frag_init +EXPORT_SYMBOL vmlinux 0x5b057cd7 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x5b07ff56 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x5b119527 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x5b157a1c mmc_retune_pause EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b314686 udplite_prot EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b4409f9 nf_log_unset -EXPORT_SYMBOL vmlinux 0x5b4a9ab4 read_cache_folio +EXPORT_SYMBOL vmlinux 0x5b43fcd5 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x5b4aba73 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b65cf6f msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x5b791a08 freeze_super -EXPORT_SYMBOL vmlinux 0x5b9eac05 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x5ba2eb48 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x5bba23f6 sk_stream_error +EXPORT_SYMBOL vmlinux 0x5b5ad97c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x5b6fccca reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x5b85b5bb pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x5b86685f tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x5bd391d2 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd5b272 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x5bda86fc xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be2cd0f proc_mkdir EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c01c11b tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x5c07c30b skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x5c0d08cf fb_blank +EXPORT_SYMBOL vmlinux 0x5c085fb9 block_write_begin +EXPORT_SYMBOL vmlinux 0x5c0cc0b0 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x5c136721 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5c25ddaf tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2a42a7 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x5c2c9b20 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x5c38b8b6 sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c5e3f5b vm_map_ram -EXPORT_SYMBOL vmlinux 0x5c833b6e of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x5c88ee08 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x5cb00a42 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x5cb61cb8 finish_open -EXPORT_SYMBOL vmlinux 0x5cbbc270 folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0x5cef7c3d devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x5c3e615f mdio_device_free +EXPORT_SYMBOL vmlinux 0x5c43b254 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5c57170a page_get_link +EXPORT_SYMBOL vmlinux 0x5c602475 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x5c63d6d1 file_open_root +EXPORT_SYMBOL vmlinux 0x5c7b06ad __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x5c8202e8 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5c915a7f put_disk +EXPORT_SYMBOL vmlinux 0x5c9984e6 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x5cb27f75 config_item_put +EXPORT_SYMBOL vmlinux 0x5cb86f19 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d080f35 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x5d08b695 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x5d10c80f component_match_add_typed EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d1a4b67 vme_irq_free -EXPORT_SYMBOL vmlinux 0x5d406e09 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5d41e6ba blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x5d15fab9 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x5d17ea9b ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x5d368cb9 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5d487cd4 qman_get_qm_portal_config EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4f8362 follow_down_one -EXPORT_SYMBOL vmlinux 0x5d709eca mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x5d805e98 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x5d956ed6 module_put -EXPORT_SYMBOL vmlinux 0x5d9632c0 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x5d9acdcb udp6_csum_init -EXPORT_SYMBOL vmlinux 0x5d9b1e14 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x5d5d855a __bforget +EXPORT_SYMBOL vmlinux 0x5d70a078 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5d9aa5a8 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x5d9bbb45 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x5da5e3dd tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x5da976f0 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5ddcc277 bio_init -EXPORT_SYMBOL vmlinux 0x5de4fc54 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x5ded94d6 phy_driver_register -EXPORT_SYMBOL vmlinux 0x5dfbb314 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5dc1cef6 cont_write_begin +EXPORT_SYMBOL vmlinux 0x5dc1d41b security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x5dc98872 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x5dcc60be of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x5dda54b5 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x5defdac8 __scsi_add_device EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e1dc682 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5e2793b4 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x5e2bbaa8 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e4eb336 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x5e69e2f5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x5e45333a crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e714b38 get_fs_type -EXPORT_SYMBOL vmlinux 0x5e7e67eb dma_map_resource -EXPORT_SYMBOL vmlinux 0x5e8055c8 __skb_pad EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8c6261 igrab +EXPORT_SYMBOL vmlinux 0x5e85e66b skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e96c074 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5e9a57aa __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x5eaf3e0f blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x5eb11f71 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x5ebc1a8d fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x5ec35a86 udp_read_skb +EXPORT_SYMBOL vmlinux 0x5ea45136 vfs_iter_write EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec4fe95 to_nd_dax +EXPORT_SYMBOL vmlinux 0x5ecc8e1f rw_verify_area EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed33d3f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5ed32e05 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edb7bec of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x5eeaa8d2 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5ef9447c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x5ef6a768 of_find_property EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5efec491 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x5f0809d9 vfs_mknod EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1e147c folio_write_one +EXPORT_SYMBOL vmlinux 0x5f2791f5 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x5f32c355 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x5f49143c page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x5f51ceeb copy_string_kernel EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f58f792 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x5f5b9bf3 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x5f5e57f2 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x5f67d7e6 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x5f6990b3 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f7fe69e dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x5f934af2 dst_discard_out +EXPORT_SYMBOL vmlinux 0x5f8b1827 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5fbcadd6 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x5fa00d04 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x5fa2352c fqdir_exit EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fd3024d udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x5fd4d6b7 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x5fca460c dm_register_target +EXPORT_SYMBOL vmlinux 0x5fd488c7 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x5fd75462 vm_map_pages +EXPORT_SYMBOL vmlinux 0x5fe68e9a pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call -EXPORT_SYMBOL vmlinux 0x5fed75df of_translate_address EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffe0e44 devfreq_remove_governor 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 0x600dc666 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x600f211f __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x6013b0d7 finish_open +EXPORT_SYMBOL vmlinux 0x601b0ae5 rproc_alloc EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602f8d56 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x6034d84d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x603462c5 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604fa321 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x604f5c4b md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608ac207 netif_device_detach EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x608e9047 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60998da9 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x609afe68 vif_device_init +EXPORT_SYMBOL vmlinux 0x60926544 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a3cc02 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x60a53bfb _dev_warn EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60ac1deb security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60c00b8a ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0x60d49e7a vm_map_pages +EXPORT_SYMBOL vmlinux 0x60c693df iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60dce3de update_region -EXPORT_SYMBOL vmlinux 0x60dd7c19 skb_dequeue +EXPORT_SYMBOL vmlinux 0x60dea70b simple_link +EXPORT_SYMBOL vmlinux 0x60eedfb4 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x60f6a2d9 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x611f9f63 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x612010fe xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x610be295 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x61204dd0 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x612339ec is_subdir EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6129c930 pci_remove_bus EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614a32a6 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x6154755b __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x61413bdb netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x6145448e kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x61579b38 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6164ba33 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x615bd1d0 generic_write_checks +EXPORT_SYMBOL vmlinux 0x6169eaa8 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x616b466e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x61753f3c tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x618160d2 posix_lock_file +EXPORT_SYMBOL vmlinux 0x617df300 release_sock +EXPORT_SYMBOL vmlinux 0x61806373 param_set_invbool +EXPORT_SYMBOL vmlinux 0x618355b1 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x61943bef dquot_quota_off EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a7c7fb scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x61aee8d0 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x61afd67f security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x61b49db8 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x61b72e9e mount_nodev +EXPORT_SYMBOL vmlinux 0x61ae20be mmc_can_erase EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8af2e napi_disable +EXPORT_SYMBOL vmlinux 0x61bdea3f take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x61d72a37 pcie_print_link_status EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e858ee __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x61e3e219 __register_chrdev EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x6213f781 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x61f405f0 component_match_add_typed EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621db8aa kernel_getpeername -EXPORT_SYMBOL vmlinux 0x622814e5 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62292dce bdi_put -EXPORT_SYMBOL vmlinux 0x6234c5ef mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x623b48b0 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x62446c51 __bio_advance -EXPORT_SYMBOL vmlinux 0x624b8d48 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x622cdc41 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x62424dc0 dentry_open +EXPORT_SYMBOL vmlinux 0x62499fd4 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6250d7c2 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6252b91b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x62708f72 follow_pfn EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62852f4c ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x629d420a neigh_update -EXPORT_SYMBOL vmlinux 0x62a7c40a mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x62b6ac8e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x62a5aa5d ppp_unit_number +EXPORT_SYMBOL vmlinux 0x62c686d3 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x62c9bec4 blk_rq_init +EXPORT_SYMBOL vmlinux 0x62cc09bc dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x62cc4a3c tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62e58012 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x62f3e2d5 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x62f63012 tcf_em_register +EXPORT_SYMBOL vmlinux 0x62e2b74c insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62f988af nd_btt_version -EXPORT_SYMBOL vmlinux 0x63013235 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x630a3dae iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x630550d0 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x63152bd1 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x631b4c55 dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x632f902a tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x633a2ce6 sk_net_capable -EXPORT_SYMBOL vmlinux 0x635c78ac d_set_d_op -EXPORT_SYMBOL vmlinux 0x636b8570 mmc_command_done -EXPORT_SYMBOL vmlinux 0x638192ae send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x632e15db acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x6336b8ba udp_seq_start +EXPORT_SYMBOL vmlinux 0x6341c31b devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x634e3ddb __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x634fa2f9 serio_bus +EXPORT_SYMBOL vmlinux 0x6379b270 submit_bio EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63d425fd md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x63aad407 i2c_transfer +EXPORT_SYMBOL vmlinux 0x63c7bc9e kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x63cb6378 from_kgid +EXPORT_SYMBOL vmlinux 0x63d6b07c dev_get_flags +EXPORT_SYMBOL vmlinux 0x63d93d76 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x63e8018f pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x63eb0918 pci_clear_master EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f823a5 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x64068042 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x63ef5a0d cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x63f6d409 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x63f743c7 page_readlink +EXPORT_SYMBOL vmlinux 0x63f9f544 dcache_dir_open EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6420a14b inet6_offloads +EXPORT_SYMBOL vmlinux 0x641380af of_n_addr_cells EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x64326000 fman_port_bind +EXPORT_SYMBOL vmlinux 0x643df5d3 vlan_vid_del EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x644a1862 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x64408e8f __alloc_pages EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x64527041 neigh_seq_next EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x6455785a param_ops_charp -EXPORT_SYMBOL vmlinux 0x64569907 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x6455fb59 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x64591015 seq_puts +EXPORT_SYMBOL vmlinux 0x6462b4ff ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x646b9500 phy_start_aneg EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648e3cec vfs_rmdir EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x648f228a param_get_byte -EXPORT_SYMBOL vmlinux 0x649f06c6 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x64a3babc tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x64a92542 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x649b601f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x649f0845 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ae8083 give_up_console EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cb8bd8 of_iomap -EXPORT_SYMBOL vmlinux 0x64f2edd2 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x64f6700b vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x64bffa76 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x64c43f8e iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x64e1bf4e of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x64fab58a serio_close EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x6516c4e8 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x6518a298 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651d5c92 ata_print_version -EXPORT_SYMBOL vmlinux 0x651daf86 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x651f0ea4 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x651f64fa genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x6520ea5f from_kuid_munged -EXPORT_SYMBOL vmlinux 0x652457a0 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x652cc60d page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6535b231 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6541118d scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x6546c27a input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x65527ee0 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x655ee8a3 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x65606053 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x6565e1a6 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x656728ed xp_dma_map +EXPORT_SYMBOL vmlinux 0x656b4566 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657b28c6 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6575b58b fb_get_mode +EXPORT_SYMBOL vmlinux 0x657b0620 input_free_device +EXPORT_SYMBOL vmlinux 0x657df332 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x6588adfd kernel_sendmsg EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65aa0182 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x65aab688 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x65af52a7 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x65b56c45 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x65b32cfa tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x65bcbdb4 fb_pan_display -EXPORT_SYMBOL vmlinux 0x65be82c7 proto_unregister -EXPORT_SYMBOL vmlinux 0x65c77fb7 phy_register_fixup EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d5668f d_instantiate_new EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dd3881 __insert_inode_hash EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65ef196b tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x65f10e9d tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x6615d8af tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x6619e5d1 netlink_ack -EXPORT_SYMBOL vmlinux 0x661ac9cc flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0x66243f8f pci_pme_active +EXPORT_SYMBOL vmlinux 0x65ec575f kill_pid +EXPORT_SYMBOL vmlinux 0x6619ed31 tcp_filter EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x6645137f misc_deregister +EXPORT_SYMBOL vmlinux 0x6627471e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x663b325e from_kuid_munged EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664ef8bb blkdev_compat_ptr_ioctl 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 0x667997ee ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x6686e9a3 generic_file_mmap EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668e7815 fwnode_irq_get EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b7c769 skb_tx_error -EXPORT_SYMBOL vmlinux 0x66b8579a inet_select_addr -EXPORT_SYMBOL vmlinux 0x66d1f25c mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x66f776da __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x66f78c7f md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x6705cf36 folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x6722ad81 inet_sendpage -EXPORT_SYMBOL vmlinux 0x673a4210 send_sig -EXPORT_SYMBOL vmlinux 0x673a5ef3 kernel_connect +EXPORT_SYMBOL vmlinux 0x66d1e147 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x66eafc8c __devm_request_region +EXPORT_SYMBOL vmlinux 0x6717baea vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x6733508b md_check_recovery EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6770f5f1 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x6774497c eth_mac_addr -EXPORT_SYMBOL vmlinux 0x67755002 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x678a92c6 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x67581d34 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x6770916f pci_dev_driver +EXPORT_SYMBOL vmlinux 0x6783c165 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67a0f1a9 d_exact_alias -EXPORT_SYMBOL vmlinux 0x67a76e2b param_get_short -EXPORT_SYMBOL vmlinux 0x67aacea5 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x67b1e701 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x67972da6 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x679c2661 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x67a28bbc ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67ba85dc devfreq_update_target +EXPORT_SYMBOL vmlinux 0x67ba8bb2 seq_file_path EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c87ca5 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x67e8383e security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x67f92a4d blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x68153412 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x6829d9fb napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x6830c9c0 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x6836c297 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x684368fb fb_find_mode -EXPORT_SYMBOL vmlinux 0x6855e430 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x685fcf2b param_get_uint -EXPORT_SYMBOL vmlinux 0x686d5b6d input_register_handle -EXPORT_SYMBOL vmlinux 0x68743839 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x67e5404c phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x67e86ccf dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x67f82e37 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x68018184 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x680b049e netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x680efb37 bpf_link_put +EXPORT_SYMBOL vmlinux 0x6812423d __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x6816339c of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x6838473b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x6875257d mpage_read_folio EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687e5a3c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x687f8df4 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x689816bf serio_bus -EXPORT_SYMBOL vmlinux 0x689bd370 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x68b343c6 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x68bb9ac8 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x68d0eb9f qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x687c6334 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x688639b1 page_symlink +EXPORT_SYMBOL vmlinux 0x68a04f99 __check_sticky +EXPORT_SYMBOL vmlinux 0x68a23ff2 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x68a44a76 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x68add4ed __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6901e82b sg_miter_next EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x6929a459 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x692cb634 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x69362290 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x6944f7be rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x691e056d __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x691f7c89 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x692efd6e phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x69359fb4 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x6937aa9f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x693a7282 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x694376c2 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x694f253d mdiobus_unregister EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696c36c6 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x6970f8c9 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x6975eba0 of_graph_is_present EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69838970 netpoll_setup -EXPORT_SYMBOL vmlinux 0x6983b6d1 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x6998523a devfreq_update_status -EXPORT_SYMBOL vmlinux 0x699f1eda ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x69b7f6e3 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x69c64d34 input_set_keycode -EXPORT_SYMBOL vmlinux 0x69d1f237 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x69db5b3a starget_for_each_device +EXPORT_SYMBOL vmlinux 0x69a2cded locks_remove_posix +EXPORT_SYMBOL vmlinux 0x69a85463 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x69b5ff27 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x69c2912f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x69cb7292 tcp_seq_next EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e16fc4 fman_port_bind -EXPORT_SYMBOL vmlinux 0x69e865a8 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x69edfe56 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x69e4a811 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x69e91358 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0416a4 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x6a175db2 kobject_init -EXPORT_SYMBOL vmlinux 0x6a17e266 noop_llseek -EXPORT_SYMBOL vmlinux 0x6a1fee8c dma_find_channel -EXPORT_SYMBOL vmlinux 0x6a24565e vfs_mkobj -EXPORT_SYMBOL vmlinux 0x6a322f40 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6a10dfc1 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6a12be9f napi_get_frags +EXPORT_SYMBOL vmlinux 0x6a28f4c8 config_item_get EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a3b6a7d mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6afb82 param_set_int EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a72e787 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x6a752a29 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6acd611e fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x6ad8e78e udp_pre_connect +EXPORT_SYMBOL vmlinux 0x6a97e9cf console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x6aa6a7d4 d_obtain_root +EXPORT_SYMBOL vmlinux 0x6aae7e4f simple_transaction_read +EXPORT_SYMBOL vmlinux 0x6ab7abce init_pseudo +EXPORT_SYMBOL vmlinux 0x6ad22690 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae5b075 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6ae5377e generic_file_fsync EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b031454 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x6b079231 alt_cb_patch_nops -EXPORT_SYMBOL vmlinux 0x6b0ac316 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x6b17d1a6 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x6b0c2723 vfs_readlink +EXPORT_SYMBOL vmlinux 0x6b231c2d udplite_prot EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b30833f dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6b31d22d tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x6b44b338 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x6b38585a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x6b3b1798 do_splice_direct +EXPORT_SYMBOL vmlinux 0x6b480d83 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x6b4e5bad input_allocate_device EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b64837f __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x6b7aaaed inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x6b82faa2 devm_request_resource -EXPORT_SYMBOL vmlinux 0x6b8442a4 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x6b5d4c52 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x6b657637 skb_trim +EXPORT_SYMBOL vmlinux 0x6b83b9b0 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b89e547 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b8cda5b disk_stack_limits -EXPORT_SYMBOL vmlinux 0x6b9dac60 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x6ba1ad91 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x6bbb2b2f dcb_setapp -EXPORT_SYMBOL vmlinux 0x6bbd6633 genphy_resume -EXPORT_SYMBOL vmlinux 0x6bc29512 dma_set_mask +EXPORT_SYMBOL vmlinux 0x6b918920 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x6bac1576 dev_mc_add +EXPORT_SYMBOL vmlinux 0x6bb511d1 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x6bb7ec90 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc7dda1 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6bcea66c neigh_parms_release EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bde6441 remove_watch_from_object EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bec59e2 mr_table_alloc EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6c017050 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x6c03713c cfb_copyarea -EXPORT_SYMBOL vmlinux 0x6c09e923 fb_show_logo -EXPORT_SYMBOL vmlinux 0x6c0b3e47 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x6bf94a89 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x6c1f5063 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c270355 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x6c2be2cd security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x6c3a8954 mpage_readahead +EXPORT_SYMBOL vmlinux 0x6c3abcf1 nf_log_unset +EXPORT_SYMBOL vmlinux 0x6c44f87d alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c73ca37 pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c841799 add_to_pipe -EXPORT_SYMBOL vmlinux 0x6c98ab8e tcf_exts_change -EXPORT_SYMBOL vmlinux 0x6caaac7c pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x6c863255 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x6c8fa105 to_ndd +EXPORT_SYMBOL vmlinux 0x6c99b247 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6ca798b4 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x6caa14c9 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cd41b2a xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x6cdb1738 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x6cc6530b mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x6ccbc41c unpin_user_pages EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d01752a vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x6d072480 __module_get -EXPORT_SYMBOL vmlinux 0x6d1094c6 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x6d1464fa pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6cf47e85 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x6d0a7fde devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x6d0f7a64 param_set_bint EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d16ca6e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6d283a5d tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2e765b input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x6d335335 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x6d4a5b79 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x6d4e0639 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x6d576995 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6e6dd9 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d73d7a3 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x6d7a4713 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d886172 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6db6c77d key_link +EXPORT_SYMBOL vmlinux 0x6da728c5 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbbf720 security_sock_graft +EXPORT_SYMBOL vmlinux 0x6dbe6abf phy_device_remove EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc5d777 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6dce9212 netpoll_print_options EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd970de register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x6de7779b configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x6dd64f81 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df517d5 neigh_destroy -EXPORT_SYMBOL vmlinux 0x6e025f7e km_query -EXPORT_SYMBOL vmlinux 0x6e0e6d42 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x6e1daa99 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x6e2b78f5 freeze_bdev -EXPORT_SYMBOL vmlinux 0x6e4f6f5d xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x6df5eab4 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x6e00bfc4 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x6e180c47 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x6e1fd1e8 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x6e3e4fbd dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6e4ac5db skb_queue_head EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5d47c2 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x6e6af702 dev_addr_add -EXPORT_SYMBOL vmlinux 0x6e709b0c tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x6e656ec4 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7ba1bd scsi_ioctl -EXPORT_SYMBOL vmlinux 0x6e7e247b rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x6e7371e8 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x6e813d43 dquot_get_state EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea5aacb devfreq_add_device -EXPORT_SYMBOL vmlinux 0x6ea5c01b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6e9e7548 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x6ea5605c sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eaa3dca xen_alloc_ballooned_pages -EXPORT_SYMBOL vmlinux 0x6eae20ed skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x6eb2d31e inode_update_time -EXPORT_SYMBOL vmlinux 0x6eb5a314 serio_close -EXPORT_SYMBOL vmlinux 0x6ebeb7d3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x6ec410be nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x6ee24c3e tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x6ee445a7 __skb_ext_del EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6ef166f8 blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x6f032aa2 rpmh_write -EXPORT_SYMBOL vmlinux 0x6f109944 md_write_end +EXPORT_SYMBOL vmlinux 0x6ef0caad inet_listen +EXPORT_SYMBOL vmlinux 0x6ef2d42b xattr_full_name +EXPORT_SYMBOL vmlinux 0x6ef879ca pci_pme_active +EXPORT_SYMBOL vmlinux 0x6f025968 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6f03b310 setattr_copy +EXPORT_SYMBOL vmlinux 0x6f147857 pci_read_vpd EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f2604b3 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x6f19145f pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x6f1d56ba udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x6f23cbaf kthread_create_worker +EXPORT_SYMBOL vmlinux 0x6f38c64a __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6f3da539 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x6f3f167b of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4286d6 address_space_init_once +EXPORT_SYMBOL vmlinux 0x6f447762 sk_stream_error EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f6029fd set_blocksize -EXPORT_SYMBOL vmlinux 0x6f696c32 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6f63184c block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6f6489a2 done_path_create EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9dafc9 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x6fb3ef3e sg_miter_start +EXPORT_SYMBOL vmlinux 0x6fa07440 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6fa2d494 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6fa4ad8b skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x6fadb139 scsi_scan_host EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb83e73 tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched -EXPORT_SYMBOL vmlinux 0x6fc940e9 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x6fc90125 iterate_fd +EXPORT_SYMBOL vmlinux 0x6fca9b98 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdcb884 make_kprojid +EXPORT_SYMBOL vmlinux 0x6fe2a583 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6fedbb59 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7000b870 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x700ca44f tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x70178758 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x7022c686 input_allocate_device +EXPORT_SYMBOL vmlinux 0x70102948 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x70388c82 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x704c7ab9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x704da640 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x7051b81d padata_free -EXPORT_SYMBOL vmlinux 0x7054c1f2 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x70786bfd sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x707a6ddd of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0x707f28d8 do_SAK +EXPORT_SYMBOL vmlinux 0x7036a20a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x70481764 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x707b19dc pci_remove_bus +EXPORT_SYMBOL vmlinux 0x70813c0c skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x70849e67 fqdir_init +EXPORT_SYMBOL vmlinux 0x70884f43 netif_rx EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70bad1f3 filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0x70bf1163 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x70ae7f28 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70d887ff dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x70d93738 dev_set_alias -EXPORT_SYMBOL vmlinux 0x70db7a6c dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x711d85ea sock_i_ino EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712fd1aa put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x71571bfd pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715abc1e seq_printf -EXPORT_SYMBOL vmlinux 0x7161c873 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x7163ee68 set_disk_ro -EXPORT_SYMBOL vmlinux 0x7170c9ac kern_unmount_array +EXPORT_SYMBOL vmlinux 0x717040b6 cdev_alloc EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7172742d consume_skb -EXPORT_SYMBOL vmlinux 0x717b2570 pci_find_bus -EXPORT_SYMBOL vmlinux 0x718c55ba folio_mark_accessed -EXPORT_SYMBOL vmlinux 0x719dfcea mdio_find_bus +EXPORT_SYMBOL vmlinux 0x719095b6 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x719c43ef uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x719d9bb5 mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bbb430 neigh_for_each +EXPORT_SYMBOL vmlinux 0x71a6dc59 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x71b28030 generic_read_dir +EXPORT_SYMBOL vmlinux 0x71cf0791 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x71d04030 vme_register_driver +EXPORT_SYMBOL vmlinux 0x71df2137 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71eec79b load_nls -EXPORT_SYMBOL vmlinux 0x71f74e68 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x71fc29d1 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x7203528b pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x71f9dff4 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x722a008b nf_getsockopt -EXPORT_SYMBOL vmlinux 0x7242be77 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x72487b7c vfs_rmdir -EXPORT_SYMBOL vmlinux 0x724b53ed inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x7255f7a6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x72573778 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x7259b033 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x725b09dc xfrm_lookup -EXPORT_SYMBOL vmlinux 0x725c7442 dst_alloc -EXPORT_SYMBOL vmlinux 0x725f0c67 input_register_handler +EXPORT_SYMBOL vmlinux 0x7211d39f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x721dd8d1 ether_setup +EXPORT_SYMBOL vmlinux 0x723705af tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x723932c5 inet6_protos +EXPORT_SYMBOL vmlinux 0x726b7c3c scm_fp_dup EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x7276258c register_framebuffer -EXPORT_SYMBOL vmlinux 0x727d8da7 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x7284385e mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x728611aa phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x7286a76c dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x7291af59 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x729230ce inet_stream_connect +EXPORT_SYMBOL vmlinux 0x727553a1 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x7276177e napi_consume_skb +EXPORT_SYMBOL vmlinux 0x727a845b proc_create +EXPORT_SYMBOL vmlinux 0x727c8649 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x72931360 ip_frag_next +EXPORT_SYMBOL vmlinux 0x7294f2c4 xen_free_ballooned_pages EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a5c60f skb_seq_read +EXPORT_SYMBOL vmlinux 0x72b259bb phy_stop +EXPORT_SYMBOL vmlinux 0x72b9cb56 mii_link_ok EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72b9e978 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x72bd94e6 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x72c2c17d xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x72cae082 blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0x72e164a2 genphy_suspend +EXPORT_SYMBOL vmlinux 0x72bb6699 __put_user_ns +EXPORT_SYMBOL vmlinux 0x72be8dc2 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x72c1b788 tty_name +EXPORT_SYMBOL vmlinux 0x72c1ec79 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x72cd6b28 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x72d07769 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x72dce2ab dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f11bf0 pskb_extract EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f1e847 vfs_mknod -EXPORT_SYMBOL vmlinux 0x730c72df dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x730f0a27 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x72f421b4 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x72f49aa0 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x72fdfc22 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x73033a1f inet_frag_reasm_prepare 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 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7334625d qdisc_reset -EXPORT_SYMBOL vmlinux 0x73563275 kernel_accept +EXPORT_SYMBOL vmlinux 0x73411a9c mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x735ab419 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7367e492 end_page_writeback -EXPORT_SYMBOL vmlinux 0x737a1416 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x73622192 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x7366cd76 sock_alloc +EXPORT_SYMBOL vmlinux 0x7367f28e phy_connect_direct +EXPORT_SYMBOL vmlinux 0x736d5b36 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x737080a7 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x7371d166 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x7372c130 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73860264 seq_file_path +EXPORT_SYMBOL vmlinux 0x738dcc87 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x739140e4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x73923f06 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a39c67 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x73a45c8d imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x73aa3e0d cdev_del EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73af61fa blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x73be6446 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x73d31f72 write_inode_now -EXPORT_SYMBOL vmlinux 0x7409e88f dev_uc_sync -EXPORT_SYMBOL vmlinux 0x740d67c7 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x73cc7a0c security_path_mknod +EXPORT_SYMBOL vmlinux 0x73d0544b devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x73f885a0 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x740da357 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x74203839 param_set_copystring +EXPORT_SYMBOL vmlinux 0x741af3d1 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x74228d47 build_skb EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7426a65c serial8250_do_pm EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x7446e6f4 devm_free_irq +EXPORT_SYMBOL vmlinux 0x744ab8ff blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7453a1df phy_read_paged EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74543ed9 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x74639022 simple_get_link +EXPORT_SYMBOL vmlinux 0x74685b7b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x746b9ea0 phy_init_hw EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7481923f dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x7482333a input_get_poll_interval EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749a9506 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x74a77e35 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x74a855fb d_add -EXPORT_SYMBOL vmlinux 0x74ad5157 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x74afc27c __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x74b7a7b6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x7495afec blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x74ad076f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x74b12862 _dev_emerg +EXPORT_SYMBOL vmlinux 0x74b60f14 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bbf7b7 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74dd5282 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x74e41993 ip_options_compile +EXPORT_SYMBOL vmlinux 0x74c89424 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x74d3352c zap_page_range +EXPORT_SYMBOL vmlinux 0x74daebd9 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x74e02815 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x74e38196 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f4c371 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x74faca6b pnp_get_resource -EXPORT_SYMBOL vmlinux 0x7516bc4f noop_dirty_folio -EXPORT_SYMBOL vmlinux 0x75201f31 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x75215e12 kernel_write -EXPORT_SYMBOL vmlinux 0x7526e6e4 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x752db8bb tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x75411aeb jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x754184fa may_umount_tree -EXPORT_SYMBOL vmlinux 0x754ac67a unix_detach_fds -EXPORT_SYMBOL vmlinux 0x7555be12 vme_bus_num -EXPORT_SYMBOL vmlinux 0x7558f8f4 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x74f20500 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x751b60e8 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x75203c95 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7530d8a0 vfs_get_link +EXPORT_SYMBOL vmlinux 0x7540eaed generic_mii_ioctl EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755c5284 dev_get_by_index EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7562930f __put_user_ns -EXPORT_SYMBOL vmlinux 0x75635030 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x75642533 page_get_link -EXPORT_SYMBOL vmlinux 0x756a967a set_cached_acl -EXPORT_SYMBOL vmlinux 0x756abba6 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x756eda6e inet_sendmsg -EXPORT_SYMBOL vmlinux 0x7582de67 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x75727109 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7583f616 flow_block_cb_free EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7588ea50 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x758dc3d2 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x75b75200 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x75bd680f __bh_read_batch +EXPORT_SYMBOL vmlinux 0x7587be42 netif_skb_features +EXPORT_SYMBOL vmlinux 0x758f3741 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x75902bdc netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x759cae0d register_fib_notifier +EXPORT_SYMBOL vmlinux 0x75b695c3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x75b87982 skb_tx_error EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bdfddd security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x75bf3de8 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x75caa428 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x75d0641f pcie_get_readrq EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e3cb7a inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0x75e58085 get_tree_single -EXPORT_SYMBOL vmlinux 0x75e80829 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x75feb78f clk_add_alias -EXPORT_SYMBOL vmlinux 0x75ff2881 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x760928ab phy_validate_pause +EXPORT_SYMBOL vmlinux 0x75f7f521 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763537de ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x7638aef1 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x763d9f43 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x763e6d97 mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765ce239 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x7647ccff kernel_accept +EXPORT_SYMBOL vmlinux 0x765915dc import_single_range EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766d6fc0 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x767e00cc __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x769ccec7 vme_master_request EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76aa78cf pcim_enable_device -EXPORT_SYMBOL vmlinux 0x76bb3aa4 simple_get_link -EXPORT_SYMBOL vmlinux 0x76c99a63 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x76a75cd5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x76c443b7 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e17798 bio_uninit -EXPORT_SYMBOL vmlinux 0x76e9fc7b dev_get_by_name -EXPORT_SYMBOL vmlinux 0x76eb03ea page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76de4794 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x76e0d21d __nd_driver_register +EXPORT_SYMBOL vmlinux 0x76e1a136 fman_register_intr +EXPORT_SYMBOL vmlinux 0x76e6bf56 of_mdio_find_device EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x7701acf3 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x77055494 dm_get_device -EXPORT_SYMBOL vmlinux 0x7716e115 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x7717bf74 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x772b67ee vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x76f800af cdrom_release +EXPORT_SYMBOL vmlinux 0x7708f2f8 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x770deff5 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7714b88e vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x7717169a pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7733bc40 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x7739eace registered_fb +EXPORT_SYMBOL vmlinux 0x77392b2f pci_iomap EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x775054b9 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x77510294 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x77694b15 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x7776e2bd nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x7783d752 page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0x778661b4 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x774af6d6 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7750ff3c vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x775240e8 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x775eeb1e of_get_property +EXPORT_SYMBOL vmlinux 0x77618040 input_set_keycode +EXPORT_SYMBOL vmlinux 0x7764206c tcp_read_skb +EXPORT_SYMBOL vmlinux 0x77839169 tegra_ivc_write_advance EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779f0d38 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x77a16c20 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x77a274ae __ip_options_compile -EXPORT_SYMBOL vmlinux 0x77a59122 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x7796ff5a vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x779e4335 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x77ad52dc configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x77ae406f devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d932d9 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x77e30d9e devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x77e4d1af tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x77c010a0 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f7350b sock_no_linger +EXPORT_SYMBOL vmlinux 0x77ee9557 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x77f50d0e of_iomap EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78153fc0 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x7817ae19 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x7825a54f genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x7841f711 napi_complete_done +EXPORT_SYMBOL vmlinux 0x7809c146 mmc_add_host +EXPORT_SYMBOL vmlinux 0x781e53a6 finish_swait +EXPORT_SYMBOL vmlinux 0x782e2930 eth_header +EXPORT_SYMBOL vmlinux 0x78336b90 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x783a7d75 gro_cells_init +EXPORT_SYMBOL vmlinux 0x783b15ef pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7858ac37 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x7864108f of_node_get -EXPORT_SYMBOL vmlinux 0x7868a083 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x786c3690 iptun_encaps -EXPORT_SYMBOL vmlinux 0x788f379a add_watch_to_object -EXPORT_SYMBOL vmlinux 0x7895c961 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x786be024 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a4168d param_ops_string +EXPORT_SYMBOL vmlinux 0x78ab4c72 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x78ab7538 tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bc3e09 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x78c8c2b5 dquot_acquire -EXPORT_SYMBOL vmlinux 0x78cec973 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x78bfb630 skb_pull_data +EXPORT_SYMBOL vmlinux 0x78c8d465 simple_dentry_operations EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e988a3 release_sock -EXPORT_SYMBOL vmlinux 0x78f47587 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x7905d779 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x7907b860 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x7915d550 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x79218ca0 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x794ff017 sget_fc +EXPORT_SYMBOL vmlinux 0x78e0a3b3 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x78e1f54c request_key_rcu +EXPORT_SYMBOL vmlinux 0x790d24c7 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7914fca1 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7924e3fd seq_lseek +EXPORT_SYMBOL vmlinux 0x79376012 ip_output +EXPORT_SYMBOL vmlinux 0x793c96ef fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x7945241c sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x795ac3ca dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x797b5ee4 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79b62b30 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x79bfb5aa param_ops_long -EXPORT_SYMBOL vmlinux 0x79c7f0e4 __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0x79f077cb simple_lookup -EXPORT_SYMBOL vmlinux 0x79fd39a3 d_path -EXPORT_SYMBOL vmlinux 0x7a0ce59f file_modified -EXPORT_SYMBOL vmlinux 0x7a0d94bb __free_pages +EXPORT_SYMBOL vmlinux 0x79e09428 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x79f7b8ed security_path_rename +EXPORT_SYMBOL vmlinux 0x79f8488d get_inode_acl +EXPORT_SYMBOL vmlinux 0x7a05b6c8 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x7a06bb15 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a29d51b unix_detach_fds EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3498ba __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x7a3a4ee7 csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5cb627 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x7a5da126 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x7a73dc11 nf_reinject -EXPORT_SYMBOL vmlinux 0x7a87f2e7 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7a556df8 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x7a559cf1 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x7a57dfa9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x7a58a8de blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7a60b134 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x7a7164ca add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x7a80335a pnp_start_dev +EXPORT_SYMBOL vmlinux 0x7a8c9f64 iov_iter_pipe EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a99da53 migrate_folio -EXPORT_SYMBOL vmlinux 0x7a9b542e mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x7a99c42c pm860x_reg_read EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ac70dcc pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x7ac809c6 seq_open_private +EXPORT_SYMBOL vmlinux 0x7abc1bf8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7ac70a71 iov_iter_zero EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ada20e2 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7ad7f8fa from_kprojid +EXPORT_SYMBOL vmlinux 0x7adad6c4 truncate_pagecache EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7adf3128 ethtool_notify -EXPORT_SYMBOL vmlinux 0x7ae26a45 fqdir_exit EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af4dd05 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x7afb8a0c mount_single -EXPORT_SYMBOL vmlinux 0x7b04e888 mii_nway_restart EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b23c51c blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x7b2e5358 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x7b25dc1d ppp_input_error EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3e3834 dm_register_target -EXPORT_SYMBOL vmlinux 0x7b4341c0 dquot_disable +EXPORT_SYMBOL vmlinux 0x7b4b0ddc mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b6899a9 cdev_init -EXPORT_SYMBOL vmlinux 0x7b6a1395 dump_skip -EXPORT_SYMBOL vmlinux 0x7b6b2540 key_type_keyring -EXPORT_SYMBOL vmlinux 0x7b7928b6 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7b81dd92 set_nlink EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b850844 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7b8a5b47 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x7b8d0a1c inet_sendmsg EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb91dd2 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc38aa4 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x7bc3b44b get_task_cred -EXPORT_SYMBOL vmlinux 0x7bd1780a d_genocide -EXPORT_SYMBOL vmlinux 0x7bdb05a3 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7bc120e9 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7bd6862c md_register_thread +EXPORT_SYMBOL vmlinux 0x7c03df59 textsearch_register +EXPORT_SYMBOL vmlinux 0x7c0df9e1 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x7c0f8b08 pin_user_pages EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1f29f8 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x7c322782 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x7c21fd27 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x7c2de9b3 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7c30ca62 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7c3bad78 unregister_key_type EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4a76b4 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x7c4d2b28 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x7c6bf9d6 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x7c70b2ed dm_kobject_release -EXPORT_SYMBOL vmlinux 0x7c99b7ac netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x7cc8e585 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x7ccdaa13 set_bh_page +EXPORT_SYMBOL vmlinux 0x7c5d6778 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x7ca5ae2d pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x7ca6a58b textsearch_unregister +EXPORT_SYMBOL vmlinux 0x7ca8b9be import_iovec +EXPORT_SYMBOL vmlinux 0x7cb43090 mdiobus_write +EXPORT_SYMBOL vmlinux 0x7cbe06d6 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7cd0daa7 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x7cd51239 user_path_create EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages -EXPORT_SYMBOL vmlinux 0x7ce17358 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x7cdbcf9c serio_interrupt EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce1b584 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ceb7a52 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7ced9830 dcache_dir_close EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf7311a __scsi_execute EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d04ed1c scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7d063645 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d117636 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d23044b mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x7d1798a0 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x7d24217a mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x7d27b3f4 dma_resv_fini EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d2a74ae truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x7d3c264f register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x7d3fc653 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7d2ad68f mmc_command_done +EXPORT_SYMBOL vmlinux 0x7d4058e2 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x7d46090a __scm_destroy EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5c62da flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6f88af blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x7d6c628c ihold +EXPORT_SYMBOL vmlinux 0x7d73915a reuseport_alloc EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d7d3aaa blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x7d8b5ab3 input_flush_device -EXPORT_SYMBOL vmlinux 0x7d992352 __ps2_command -EXPORT_SYMBOL vmlinux 0x7d99d876 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x7d9b6174 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dbd267b proc_symlink -EXPORT_SYMBOL vmlinux 0x7dc5406e mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7de471d6 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x7defc56b platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x7defc6b1 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7dea8a31 security_sk_clone +EXPORT_SYMBOL vmlinux 0x7e00a8ef dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e101066 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x7e1cc73e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7e30406b bio_chain EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3c6016 kernel_read -EXPORT_SYMBOL vmlinux 0x7e44d42e jbd2_journal_invalidate_folio -EXPORT_SYMBOL vmlinux 0x7e5c92d8 mr_dump EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e5d9ac3 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x7e7a21e0 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x7e7a7475 node_data -EXPORT_SYMBOL vmlinux 0x7e7c5c55 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x7e8574b1 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x7e8671fd d_lookup -EXPORT_SYMBOL vmlinux 0x7e9857e0 param_set_uint +EXPORT_SYMBOL vmlinux 0x7e626c24 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7e63da26 dqput +EXPORT_SYMBOL vmlinux 0x7e7615e1 blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7ec04839 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x7ed650dd gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x7ea67494 filemap_fault +EXPORT_SYMBOL vmlinux 0x7ebdee5c irq_set_chip EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ef689b4 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x7ef6dc1e ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x7f007784 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7ef721ea sock_create_kern +EXPORT_SYMBOL vmlinux 0x7efcfa59 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7efefd93 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f1741c8 config_item_get -EXPORT_SYMBOL vmlinux 0x7f1bc21d page_pool_create EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f41856d kset_register +EXPORT_SYMBOL vmlinux 0x7f28a139 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x7f2c5b9e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7f3dfd14 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5dc213 sock_create -EXPORT_SYMBOL vmlinux 0x7f62ba74 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x7f52a48d ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f6829ef genphy_loopback EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f9159a9 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x7f989786 kthread_bind -EXPORT_SYMBOL vmlinux 0x7faafb8e jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x7fbb6bc4 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x7fc044f1 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7f92f553 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x7f9f1d7d acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x7fa84f7d inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff0fd57 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x7ff13945 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x7ffb72fd bioset_init -EXPORT_SYMBOL vmlinux 0x80036bf1 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x80136370 ihold -EXPORT_SYMBOL vmlinux 0x80221c7b fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x8002198b default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x80034898 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x80106e30 ipv4_specific +EXPORT_SYMBOL vmlinux 0x801648c9 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x8020b997 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x804ee9e1 kern_path -EXPORT_SYMBOL vmlinux 0x80584f6e unix_attach_fds -EXPORT_SYMBOL vmlinux 0x806f7b34 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x8043b54a pci_map_rom +EXPORT_SYMBOL vmlinux 0x80586def dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x805c3214 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x805c3d68 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x807066dd max8998_read_reg EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock -EXPORT_SYMBOL vmlinux 0x807ee5ea dquot_scan_active EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x808e682e __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x8096ae35 __folio_alloc +EXPORT_SYMBOL vmlinux 0x8088a949 of_clk_get +EXPORT_SYMBOL vmlinux 0x808f2f5e rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809fe3ec mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x80a38d51 tty_port_destroy EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d15bcd fman_port_get_device EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80db1611 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e8d36a ipv6_dev_find EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x81024df3 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x80ec509c fman_reset_mac +EXPORT_SYMBOL vmlinux 0x80eefa54 finish_no_open +EXPORT_SYMBOL vmlinux 0x80f551df xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x80f6d10b __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x81054b84 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x810a1b3c tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811f3675 fman_bind -EXPORT_SYMBOL vmlinux 0x812b865e tty_port_close -EXPORT_SYMBOL vmlinux 0x812ed137 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x8140e0ef phy_write_paged -EXPORT_SYMBOL vmlinux 0x814a786c pnp_device_attach -EXPORT_SYMBOL vmlinux 0x814c1e35 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x81230f44 send_sig EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x81567743 skb_unlink +EXPORT_SYMBOL vmlinux 0x81599f29 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x81629e96 sock_set_mark -EXPORT_SYMBOL vmlinux 0x817ae21e file_update_time +EXPORT_SYMBOL vmlinux 0x8169232b kthread_bind +EXPORT_SYMBOL vmlinux 0x8180d949 pci_disable_link_state 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 0x81a05f56 tegra_ivc_reset 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 0x81b9851b seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x81b49a91 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x81b93c5c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x81bbbcf2 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x81beb6b0 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x81cd5bc9 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x81d7430f netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x81d96ec3 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dfec4c mii_link_ok -EXPORT_SYMBOL vmlinux 0x81e1fa80 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x81e37f69 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x81e4641d unregister_netdev EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81eae177 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x81f929f1 mpage_writepages -EXPORT_SYMBOL vmlinux 0x82065a19 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x820b1585 param_ops_bint -EXPORT_SYMBOL vmlinux 0x820c1559 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x81ecb66e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x81f765db dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x8207115f unload_nls EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x8241c9d1 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x8241fa17 inet_release -EXPORT_SYMBOL vmlinux 0x8242b626 regset_get_alloc -EXPORT_SYMBOL vmlinux 0x8243015d pnp_device_detach -EXPORT_SYMBOL vmlinux 0x824a6091 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x824b727c blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0x825088df locks_copy_lock +EXPORT_SYMBOL vmlinux 0x824ca0a1 scsi_register_driver EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x82900471 of_match_device -EXPORT_SYMBOL vmlinux 0x82a29835 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x82a315ba pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x82af88db xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x82bde7a7 user_revoke +EXPORT_SYMBOL vmlinux 0x8263dede devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x826c5615 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x826f0417 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x8271ae54 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x82827441 d_invalidate +EXPORT_SYMBOL vmlinux 0x82882c55 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x829e8a91 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x82a39cac dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82c8cb4c genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x82c8e127 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0x82ce5603 ps2_command -EXPORT_SYMBOL vmlinux 0x82d9ae40 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x82ee758c param_set_short +EXPORT_SYMBOL vmlinux 0x82ed1770 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x82ed45d7 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x8300ab52 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x8313051a ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x831c343a ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x831fa043 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x83347c6e get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x833bbb03 pci_free_irq -EXPORT_SYMBOL vmlinux 0x8345bd3f sock_wfree +EXPORT_SYMBOL vmlinux 0x82fbed17 generic_permission +EXPORT_SYMBOL vmlinux 0x833c4b6f flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x833e3aab blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x83466e8c tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8364e2ae dev_activate EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override -EXPORT_SYMBOL vmlinux 0x8378b76a __block_write_full_page -EXPORT_SYMBOL vmlinux 0x837eaab9 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x8375e993 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x8377385e ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83a9f069 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x83b19d94 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x83ba34e8 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x83ba91c6 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x83c206a7 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x84052281 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x841fc47c genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x84226fc5 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x83a4ddd0 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x83ae25e9 sock_no_listen +EXPORT_SYMBOL vmlinux 0x83b5dc34 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x83b9d13a param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x83ce96ac vfs_mkdir +EXPORT_SYMBOL vmlinux 0x83d5dedb hmm_range_fault +EXPORT_SYMBOL vmlinux 0x83d9b30a drop_super +EXPORT_SYMBOL vmlinux 0x83e5f522 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x83eea31e __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x83f392bf serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x8400a911 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x84053f3a bio_uninit +EXPORT_SYMBOL vmlinux 0x8409034b dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x84132612 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x843ab0db netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x844b0236 of_phy_connect +EXPORT_SYMBOL vmlinux 0x84534a2c ip_route_me_harder EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x84595678 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x8458f680 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x846f2379 netdev_alert +EXPORT_SYMBOL vmlinux 0x8478c194 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84819ce6 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84848607 keyring_clear EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x84954a23 key_task_permission +EXPORT_SYMBOL vmlinux 0x84988450 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84b6a99f of_n_size_cells -EXPORT_SYMBOL vmlinux 0x84b92add security_unix_may_send +EXPORT_SYMBOL vmlinux 0x84a200c2 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x84c0128d param_get_string EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c9b61f xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x84de85ba tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x84ee12c7 page_pool_get_stats -EXPORT_SYMBOL vmlinux 0x84efcf06 edac_mc_find -EXPORT_SYMBOL vmlinux 0x84fc6255 init_pseudo -EXPORT_SYMBOL vmlinux 0x850dea56 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x84c94afd flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x84d8f6ab inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x84fdb510 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x851135d8 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8516b111 dget_parent EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851937a2 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x852a2b42 add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0x852c518f tcp_child_process -EXPORT_SYMBOL vmlinux 0x855054d8 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x853f9fa8 mr_dump +EXPORT_SYMBOL vmlinux 0x8563d267 dquot_scan_active EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856aeacc tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8571e0de __phy_read_mmd EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8592eabf inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x8595a340 tegra_dfll_register EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85ba85d4 napi_gro_receive EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85ceb88f flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x85cdf35e tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85eaddbc skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x85e30199 simple_rename EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f95880 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x862377a9 phy_device_register +EXPORT_SYMBOL vmlinux 0x8610e108 of_get_mac_address EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x862d5b37 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863b5a80 _dev_printk -EXPORT_SYMBOL vmlinux 0x864baefb ip_frag_init -EXPORT_SYMBOL vmlinux 0x864ffa38 vfs_readlink +EXPORT_SYMBOL vmlinux 0x863d8a36 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x8652b2e7 param_set_ullong EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x86738178 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x86794f7f sock_setsockopt EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869cb4b7 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x86aae04e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x869222d9 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x86a48d1b d_path +EXPORT_SYMBOL vmlinux 0x86bc0760 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x86c48b74 sunxi_sram_release EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d71b31 pci_read_config_byte EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred -EXPORT_SYMBOL vmlinux 0x86f7c9cf fsync_bdev EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8707b355 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x87154c78 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x872e9829 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x8743c539 __find_get_block -EXPORT_SYMBOL vmlinux 0x875424ca __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x86ffe5ea serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x87344b56 d_add_ci +EXPORT_SYMBOL vmlinux 0x873a8a43 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x874d0b81 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x874f7084 file_path +EXPORT_SYMBOL vmlinux 0x8750618d qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x87540b43 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x8757dd83 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87634a20 filemap_fault -EXPORT_SYMBOL vmlinux 0x876fd454 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x87710312 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x87725635 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x8793c414 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x87a05654 filemap_flush +EXPORT_SYMBOL vmlinux 0x8798c098 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x87997cc7 write_cache_pages EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87af7527 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x87b5ca71 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x87bb7c52 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x87c25998 do_splice_direct -EXPORT_SYMBOL vmlinux 0x87e00d5f dev_get_iflink -EXPORT_SYMBOL vmlinux 0x87e3d168 param_get_bool +EXPORT_SYMBOL vmlinux 0x87a585b1 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x87aaf257 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x87b3ee55 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x87d58d82 xfrm_state_add EXPORT_SYMBOL vmlinux 0x87e484a5 nla_put -EXPORT_SYMBOL vmlinux 0x87ef83f7 finalize_exec +EXPORT_SYMBOL vmlinux 0x880d3cd1 inet_del_offload EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x8815a885 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x8827eb01 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8830ce80 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x883e8c98 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x8857da6e phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x885aebb8 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x88642923 of_get_parent +EXPORT_SYMBOL vmlinux 0x88258f96 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x8830c6c4 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x887cb579 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x887d6a63 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888b08b5 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x8899dd5f acpi_match_device_ids EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88d070b7 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x88a1e458 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x88b159ae __icmp_send +EXPORT_SYMBOL vmlinux 0x88b23de3 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x890083d3 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x88f87298 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x890b5c6e folio_wait_bit +EXPORT_SYMBOL vmlinux 0x8910fc2a phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x892831b6 cdev_add -EXPORT_SYMBOL vmlinux 0x89285746 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x893cd93c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x89328b36 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x893e06b2 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8944139b folio_mapping EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy EXPORT_SYMBOL vmlinux 0x8948cdcc cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x894da4a8 dquot_alloc -EXPORT_SYMBOL vmlinux 0x89557b3d fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x8956aadb pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x896f6486 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x897dde2a jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x89933715 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8957ca96 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x895abf0c unregister_qdisc +EXPORT_SYMBOL vmlinux 0x896e1ef2 sget_fc +EXPORT_SYMBOL vmlinux 0x896ee241 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x898472c4 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x898ebe8b tty_devnum +EXPORT_SYMBOL vmlinux 0x8992e46b dquot_file_open EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x8995ce45 param_get_charp -EXPORT_SYMBOL vmlinux 0x899cc5c0 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x899fb260 phy_device_free -EXPORT_SYMBOL vmlinux 0x89bc4fcb acpi_dev_uid_to_integer -EXPORT_SYMBOL vmlinux 0x89d888b9 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x89da7dea sock_no_listen -EXPORT_SYMBOL vmlinux 0x89f30487 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x8a1145e1 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x8a17211c ip6_frag_next -EXPORT_SYMBOL vmlinux 0x8a1a0344 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x899dad08 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x89a29c8b rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x89e26636 __serio_register_port +EXPORT_SYMBOL vmlinux 0x8a118240 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x8a37459b mdiobus_free +EXPORT_SYMBOL vmlinux 0x8a39cdac set_create_files_as +EXPORT_SYMBOL vmlinux 0x8a3ba78f devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a498915 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x8a5782e3 fget +EXPORT_SYMBOL vmlinux 0x8a59eb87 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x8a5e4166 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x8a6ff53b blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a733d4b configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x8a77c6b7 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x8a7c69c6 free_buffer_head EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8818ad tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x8a84f9ea xp_can_alloc +EXPORT_SYMBOL vmlinux 0x8a90c64c devfreq_add_device EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aab65a4 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8aab13b6 arp_xmit +EXPORT_SYMBOL vmlinux 0x8aac2f55 seq_bprintf +EXPORT_SYMBOL vmlinux 0x8abb01e0 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x8ac071c5 mdio_driver_register EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac28d27 sock_rfree EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ada3899 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x8ae9fca3 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x8af7f9f0 qdisc_put -EXPORT_SYMBOL vmlinux 0x8afcde54 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x8ada315d __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x8af5e319 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b1d949c netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x8b1db1e3 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b40b0c8 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x8b5b7ac1 nf_log_set EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b66239f write_inode_now +EXPORT_SYMBOL vmlinux 0x8b78b357 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81a297 tty_port_close_start EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8ba6f4cc padata_do_serial -EXPORT_SYMBOL vmlinux 0x8bab9d5a sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x8bd63146 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x8b9ff596 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x8ba21871 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x8bada53f pci_irq_vector +EXPORT_SYMBOL vmlinux 0x8bce384a genphy_suspend EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bec97e5 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x8bffa2ad ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x8c0dac74 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x8c1ef246 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x8c043b79 nd_device_register +EXPORT_SYMBOL vmlinux 0x8c1d57da flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2f2af6 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c31afca scsi_print_result -EXPORT_SYMBOL vmlinux 0x8c39b41e md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x8c6bd80d devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x8c710c40 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x8c7e2b52 ip_defrag -EXPORT_SYMBOL vmlinux 0x8c80186b generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x8c400402 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8c51f5a3 dev_open +EXPORT_SYMBOL vmlinux 0x8c53f14e fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x8c699a92 devm_request_resource EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca1325a fman_get_revision -EXPORT_SYMBOL vmlinux 0x8cab656e rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x8caeafc1 fb_get_mode +EXPORT_SYMBOL vmlinux 0x8ca3539f ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cbab70d tty_port_init -EXPORT_SYMBOL vmlinux 0x8cbe92f7 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x8cb550a0 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cd1b9de mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8cc92d9d complete_request_key +EXPORT_SYMBOL vmlinux 0x8cd3183f xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf68be5 get_phy_device -EXPORT_SYMBOL vmlinux 0x8cfc478f mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x8cfcb120 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8d07d406 udp_ioctl -EXPORT_SYMBOL vmlinux 0x8d0d5c80 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8d10868e lynx_get_mdio_device -EXPORT_SYMBOL vmlinux 0x8d16f3ae devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x8d182bea netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x8d1d8428 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x8d222279 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x8d335d7a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x8ce439ae mdio_device_register +EXPORT_SYMBOL vmlinux 0x8ceaaad8 __bh_read +EXPORT_SYMBOL vmlinux 0x8cee4d32 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x8ceea0e8 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x8cef88a3 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x8cf58c86 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x8cf7a9f1 param_set_int +EXPORT_SYMBOL vmlinux 0x8d02c1aa napi_complete_done +EXPORT_SYMBOL vmlinux 0x8d08181d vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x8d1c6014 device_add_disk EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d3ec149 sk_dst_check +EXPORT_SYMBOL vmlinux 0x8d3cb6de bioset_exit EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d4149b1 fb_show_logo EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d56237e backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x8d6d3779 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x8d5f0977 dm_io EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d824494 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x8d8f30c0 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x8d881e3d md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x8d88ef8f blk_put_queue EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8da61372 par_io_of_config -EXPORT_SYMBOL vmlinux 0x8db3df70 sync_filesystem -EXPORT_SYMBOL vmlinux 0x8db430f7 bpf_link_put +EXPORT_SYMBOL vmlinux 0x8da5270c netdev_state_change +EXPORT_SYMBOL vmlinux 0x8da932e6 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x8db436c2 start_tty EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de1e185 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x8debedda dma_resv_init EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x8df188a6 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8df471a3 sockfd_lookup EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e0e67a5 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x8dff18c5 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x8e171b5f nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1f904a devm_ioport_map +EXPORT_SYMBOL vmlinux 0x8e183f0d blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e28a914 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x8e31cafc __folio_lock -EXPORT_SYMBOL vmlinux 0x8e358f67 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x8e3d784d vfs_symlink +EXPORT_SYMBOL vmlinux 0x8e3be609 of_device_alloc EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e42876c redraw_screen +EXPORT_SYMBOL vmlinux 0x8e42ae23 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x8e4bc31f vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8e4c19a8 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e6e2484 lock_rename -EXPORT_SYMBOL vmlinux 0x8e818ed3 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x8e8bca46 pci_release_resource +EXPORT_SYMBOL vmlinux 0x8e801977 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8e85ccc4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x8e8a5d9e mfd_remove_devices EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e951bfc kill_anon_super -EXPORT_SYMBOL vmlinux 0x8ea523ef xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x8ec08434 skb_push -EXPORT_SYMBOL vmlinux 0x8ec6ac8f inet_add_offload +EXPORT_SYMBOL vmlinux 0x8e9daf2e ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x8ea57f92 rtnl_notify +EXPORT_SYMBOL vmlinux 0x8ea6805f scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x8eae6084 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x8eb14828 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x8ebb5298 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ee83670 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x8eef22b2 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x8edc59a7 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x8edf47c6 tcp_release_cb EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0c7af3 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x8f2156f7 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x8f4a44e5 netdev_crit -EXPORT_SYMBOL vmlinux 0x8f65294f tcp_parse_options -EXPORT_SYMBOL vmlinux 0x8f6b6145 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x8f71c4e1 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x8f979e60 shmem_aops +EXPORT_SYMBOL vmlinux 0x8f23267f default_llseek +EXPORT_SYMBOL vmlinux 0x8f2ef23f sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x8f6add75 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9d04e6 thread_group_exited EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fac73a6 sock_set_mark +EXPORT_SYMBOL vmlinux 0x8fbe7097 serio_unregister_driver EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds -EXPORT_SYMBOL vmlinux 0x8fe22b29 simple_fill_super +EXPORT_SYMBOL vmlinux 0x8fd8bfc3 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x8fdc1a96 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8ff05234 dma_resv_init +EXPORT_SYMBOL vmlinux 0x8ff82c7b elv_rb_former_request EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ff9258d devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90060dda phy_connect -EXPORT_SYMBOL vmlinux 0x90095eb3 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x900d86c9 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x90291b1d bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x902c1e3d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x9008e02a dentry_path_raw +EXPORT_SYMBOL vmlinux 0x9016a45e i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x90192a0e km_policy_expired EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9043953b phy_loopback +EXPORT_SYMBOL vmlinux 0x904ec823 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x9050040f ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x907a47ac param_ops_byte -EXPORT_SYMBOL vmlinux 0x90890feb scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x909ee4ec sg_miter_stop -EXPORT_SYMBOL vmlinux 0x90aba0b4 mount_bdev -EXPORT_SYMBOL vmlinux 0x90afdae9 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x90578d55 fman_get_revision +EXPORT_SYMBOL vmlinux 0x906c6093 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x907289ce request_firmware +EXPORT_SYMBOL vmlinux 0x908c9a29 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x9094ea4c dst_init +EXPORT_SYMBOL vmlinux 0x90991743 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x909a81ab rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90ba262d of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x90c4694f clocksource_unregister -EXPORT_SYMBOL vmlinux 0x90fa10b4 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x90fb2dad prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x90fe0d03 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0x90ffae94 inode_init_always -EXPORT_SYMBOL vmlinux 0x91012746 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x91068d27 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x90b85d48 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x90bb5f8f neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x90c81114 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x90cf6ffd of_match_device +EXPORT_SYMBOL vmlinux 0x90f2c41b dcache_readdir +EXPORT_SYMBOL vmlinux 0x90f8e2af prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x9113eea1 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x91196621 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x911a45cf of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x9133e387 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x913ddc43 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x9164dc87 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x9117c304 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x911c40dc rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x914630ca security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x914e01a9 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x915cf21a ps2_drain EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x917b4aff of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x918303f3 pci_map_rom -EXPORT_SYMBOL vmlinux 0x9188d40d flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x918a372c xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x916dbb42 phy_write_mmd EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919ed807 fman_get_bmi_max_fifo_size EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91ad3e83 vfs_ioctl EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91db696e nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x91ccf530 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x91d2176a tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x91deb343 register_shrinker +EXPORT_SYMBOL vmlinux 0x91e69aeb devm_ioport_map EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92058024 scsi_done -EXPORT_SYMBOL vmlinux 0x920813d5 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x9209c564 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x92203f9b flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x92216b48 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x91f8221a blkdev_put +EXPORT_SYMBOL vmlinux 0x9200a367 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x9222dcad md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x922c97e9 vme_master_mmap EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9238ce59 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925e8a34 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x925c1580 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x92624af3 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states -EXPORT_SYMBOL vmlinux 0x926fe4eb mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x92721a47 generic_file_llseek EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927d2885 netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x928b9a8f rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x928deb0f uart_resume_port -EXPORT_SYMBOL vmlinux 0x928f5893 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x928c20a2 napi_gro_receive EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929723cc __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x92997ed8 _printk EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92bc2935 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x92c35afc param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92ddd351 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92eb7f1c jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f9e39e generic_delete_inode +EXPORT_SYMBOL vmlinux 0x92f1e4c5 pci_release_region EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93012d5e pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x93018be2 dqget EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930fb42a inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x93272f3f dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x9330cbbb param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x933a3880 vfs_rename -EXPORT_SYMBOL vmlinux 0x9350b6b0 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x930720a0 update_devfreq +EXPORT_SYMBOL vmlinux 0x930d50f8 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x93156ec8 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x933a171a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x93454c9b iget_locked +EXPORT_SYMBOL vmlinux 0x934d2e5f netlink_unicast +EXPORT_SYMBOL vmlinux 0x93518615 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x935951f7 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x935d46f8 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x9364be75 pci_fixup_device EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93781fd4 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x9398642c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x93a213bb napi_gro_frags EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b1ee4b dump_align EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b564e7 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x93cb233c filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x93d2da6a fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x93bb0b7a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x93c926f1 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x93ccb8c0 netdev_warn EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93fb8022 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x9401184d simple_transaction_get -EXPORT_SYMBOL vmlinux 0x9408e534 md_error -EXPORT_SYMBOL vmlinux 0x94276c18 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x93edd214 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x93efc494 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x93ff893d migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x94090cde __ip_select_ident +EXPORT_SYMBOL vmlinux 0x940ea89f sock_kzfree_s EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9437e843 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x942de599 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x942dfa58 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x943b1fbc misc_deregister EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9480281c sock_release -EXPORT_SYMBOL vmlinux 0x94924d4e filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9458dfeb read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x94818c76 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x948c1ea5 skb_condense +EXPORT_SYMBOL vmlinux 0x948fe599 napi_build_skb EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a3068c dcache_dir_close -EXPORT_SYMBOL vmlinux 0x94ba3a94 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x94bafcf6 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x94a41595 softnet_data +EXPORT_SYMBOL vmlinux 0x94b0748d vme_irq_request EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94be7ce1 md_write_start EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c9da39 free_buffer_head +EXPORT_SYMBOL vmlinux 0x94e15add sk_ns_capable +EXPORT_SYMBOL vmlinux 0x94eb38bc skb_checksum EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9511c92c security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x95262f03 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x952b149c tty_vhangup -EXPORT_SYMBOL vmlinux 0x9530b7b2 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x951705a5 simple_fill_super +EXPORT_SYMBOL vmlinux 0x951c56f7 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x951ce07b of_translate_address +EXPORT_SYMBOL vmlinux 0x95245004 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x9530c9f3 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x95383ca5 tcp_req_err EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954d27e2 md_write_end +EXPORT_SYMBOL vmlinux 0x954f0729 send_sig_mceerr EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x954fcdc1 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x955d1e87 start_tty -EXPORT_SYMBOL vmlinux 0x957712e9 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x95885512 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x9598262b uart_update_timeout +EXPORT_SYMBOL vmlinux 0x956c312f netdev_notice EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods -EXPORT_SYMBOL vmlinux 0x95a270c8 skb_eth_push EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95e1953b vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x95e510c3 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x95e7be70 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x960271a5 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x96097ed4 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x960de3fe ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x96128133 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x961f5b2d would_dump -EXPORT_SYMBOL vmlinux 0x96227d7b kernel_listen -EXPORT_SYMBOL vmlinux 0x9622e679 fs_bio_set +EXPORT_SYMBOL vmlinux 0x95b02c79 sock_no_connect +EXPORT_SYMBOL vmlinux 0x95b8af3d address_space_init_once +EXPORT_SYMBOL vmlinux 0x95d610c5 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x95d7ee93 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x95ff2aab vfs_create_mount +EXPORT_SYMBOL vmlinux 0x96039d5f kobject_set_name +EXPORT_SYMBOL vmlinux 0x960470d7 vfs_fsync +EXPORT_SYMBOL vmlinux 0x9606d0ac generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x96133f3b phy_disconnect +EXPORT_SYMBOL vmlinux 0x961de537 set_anon_super_fc EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x9635f5bd xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x96782d32 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x96825ce6 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x962c1ee5 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x96415704 pid_task +EXPORT_SYMBOL vmlinux 0x96759dad xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x9679af9d ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x9680b236 xen_alloc_unpopulated_pages EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96949bae sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x969e14b8 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x969f522b netdev_printk -EXPORT_SYMBOL vmlinux 0x96a43251 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x968ad943 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x96aaaeb9 pci_set_power_state EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bee0ec sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cbc688 tcf_block_get +EXPORT_SYMBOL vmlinux 0x96c360d1 nd_pfn_probe EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d43f9a rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x96d47f6c qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96f3b1b0 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fadd9c kill_fasync -EXPORT_SYMBOL vmlinux 0x9715b523 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x971e4963 current_time -EXPORT_SYMBOL vmlinux 0x97390603 sk_common_release +EXPORT_SYMBOL vmlinux 0x96fd819b cdrom_open +EXPORT_SYMBOL vmlinux 0x971c41c1 dev_close EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9759e8fa of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0x977d861a qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x9789e084 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x979b6a5f inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x97a40e80 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x97a547b6 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x974422de sk_free +EXPORT_SYMBOL vmlinux 0x97602d82 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x97948f93 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x9796382a folio_add_lru +EXPORT_SYMBOL vmlinux 0x97991bff iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x97a370d4 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a833ec mmc_request_done EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97adbda1 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x97b32565 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x97b7956d phy_resume +EXPORT_SYMBOL vmlinux 0x97bc315e request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cb6479 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x97d5b125 pci_dev_put -EXPORT_SYMBOL vmlinux 0x97df3ebb copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x97e8d016 sync_blockdev +EXPORT_SYMBOL vmlinux 0x97bee9ef pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x97ceb7aa scsi_partsize +EXPORT_SYMBOL vmlinux 0x97d919c9 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97fbaec3 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x97fb533f xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x9801fd4f param_set_ushort EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x98381169 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x98394dc7 file_remove_privs -EXPORT_SYMBOL vmlinux 0x983a3b91 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x983faf52 param_get_ushort +EXPORT_SYMBOL vmlinux 0x9844b434 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x98643cf1 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x9889c03e inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x9890689c kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x98b45fba dev_driver_string +EXPORT_SYMBOL vmlinux 0x98764972 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x987b7f21 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x9885c8f7 param_get_ushort +EXPORT_SYMBOL vmlinux 0x98881efe tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x988bf763 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x989b7546 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x98ae9498 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x98b42e26 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x98bc71bf ata_print_version EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d79a65 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e5edcb __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x98e7e804 netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x98ecf9dd mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x98fcb06a pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x98e97901 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x98ea3a03 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x98f38fa6 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x98f4cf0f of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x98fd63f4 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x99120a77 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x991aee76 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x992d44ac udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x99107b83 km_query +EXPORT_SYMBOL vmlinux 0x991a86e1 amba_device_register +EXPORT_SYMBOL vmlinux 0x9928d51e seq_read +EXPORT_SYMBOL vmlinux 0x9929566f mmc_retune_release +EXPORT_SYMBOL vmlinux 0x993094bd of_get_parent +EXPORT_SYMBOL vmlinux 0x99309a3c __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994780dd dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995df256 tty_unregister_device EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997cb8b9 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x99922e1d vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x99939e3f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x9976c7bf __d_drop +EXPORT_SYMBOL vmlinux 0x997ad647 phy_start +EXPORT_SYMBOL vmlinux 0x997bccce generic_block_bmap +EXPORT_SYMBOL vmlinux 0x999324a1 of_device_is_available EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999f1381 cad_pid -EXPORT_SYMBOL vmlinux 0x99a4a0ed d_make_root -EXPORT_SYMBOL vmlinux 0x99ab5c6e vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x99c3c258 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x99c7f62d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x99a32fc4 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x99a58105 md_set_array_sectors EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d66097 inet_shutdown -EXPORT_SYMBOL vmlinux 0x99d6eee4 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99ecf81b give_up_console -EXPORT_SYMBOL vmlinux 0x99ef8dd9 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a06eecc device_add_disk +EXPORT_SYMBOL vmlinux 0x99fa6567 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a106bcb copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a4439b3 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x9a4d745e ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x9a47f9ad get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x9a4d00b9 pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a642cc5 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a702abc tty_port_destroy -EXPORT_SYMBOL vmlinux 0x9a7590ec inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x9a76e3dc phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x9a99c937 scmd_printk +EXPORT_SYMBOL vmlinux 0x9aa8eda0 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac396e1 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x9ac6fc45 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x9acb5884 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x9ab8de3e mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x9abbb8b6 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9ad14d58 passthru_features_check +EXPORT_SYMBOL vmlinux 0x9adb6cef netdev_features_change EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aedec09 rproc_detach -EXPORT_SYMBOL vmlinux 0x9b022c28 __netif_schedule -EXPORT_SYMBOL vmlinux 0x9b10f90a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x9aea7e25 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x9af38e7a key_put +EXPORT_SYMBOL vmlinux 0x9b059ce9 pci_assign_resource EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2abafb arp_tbl EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b447967 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x9b44ac51 inet_offloads +EXPORT_SYMBOL vmlinux 0x9b3aab6e __phy_resume +EXPORT_SYMBOL vmlinux 0x9b3cbd40 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4a9bc8 con_is_visible -EXPORT_SYMBOL vmlinux 0x9b569810 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x9b637145 gro_cells_init -EXPORT_SYMBOL vmlinux 0x9b6ae091 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x9b513ca6 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x9b589ef2 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x9b5b89f4 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9b5ff998 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b79c67b memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x9b8978cc mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x9b8ec3eb file_path -EXPORT_SYMBOL vmlinux 0x9b95bc65 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x9bbb59de devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x9bec06c7 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x9bfd5fb2 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x9c09e811 kthread_stop +EXPORT_SYMBOL vmlinux 0x9b7ddaec netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x9b880ccc seq_printf +EXPORT_SYMBOL vmlinux 0x9ba7fae2 input_setup_polling +EXPORT_SYMBOL vmlinux 0x9bbbc0b9 elv_rb_add +EXPORT_SYMBOL vmlinux 0x9bc3b836 console_start +EXPORT_SYMBOL vmlinux 0x9bc88067 scmd_printk +EXPORT_SYMBOL vmlinux 0x9bcd3876 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x9bdc4df6 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x9bdf7ae1 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x9bfe6b77 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x9c04393d _copy_from_iter EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c181db7 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c395e46 d_rehash +EXPORT_SYMBOL vmlinux 0x9c3ef239 pci_bus_type +EXPORT_SYMBOL vmlinux 0x9c4eafce dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x9c5144ec generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c63fb83 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x9c6afb20 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x9c71029d xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x9c71e5b9 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x9c7531d8 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x9c654325 generic_fillattr +EXPORT_SYMBOL vmlinux 0x9c6f9490 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9c72728e mfd_cell_disable EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8b02af rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x9c8c88df __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9c971b2c cdrom_mode_sense EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cada19e filemap_check_errors -EXPORT_SYMBOL vmlinux 0x9cae5d0c dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x9cb342e5 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x9cae22ac sock_i_uid +EXPORT_SYMBOL vmlinux 0x9cbde1b2 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd07651 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x9cd83a25 iterate_dir EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce5e396 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x9cf1ce1d d_obtain_alias -EXPORT_SYMBOL vmlinux 0x9d0c915d xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x9ce8bdd2 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x9cff027b nf_log_trace EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d187f47 pci_iounmap +EXPORT_SYMBOL vmlinux 0x9d198d51 from_kprojid_munged EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d20d082 update_devfreq EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d29535f skb_checksum_help EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d5deb6a iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x9d2fdafd lock_rename +EXPORT_SYMBOL vmlinux 0x9d3c4af5 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x9d3f4271 kset_register +EXPORT_SYMBOL vmlinux 0x9d5630b7 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d712bbb __kfree_skb -EXPORT_SYMBOL vmlinux 0x9d76e1ce of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x9d628b6e udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x9d665592 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x9d7783da mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x9d7bae11 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d9b4a76 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x9da60ca5 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x9dbaff37 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x9dc3e32a i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x9dd05481 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9d9687bf iov_iter_revert +EXPORT_SYMBOL vmlinux 0x9d97c6ef mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x9da1b414 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x9da9c2ec ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9dab739c tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9dab9821 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x9dadf49d unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9dbaee8f jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9dc249fe __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x9dd8191c nd_btt_version EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de48b14 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x9dde71c3 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x9de90a20 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x9df0327d tcf_block_get EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df566ff tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x9e033b78 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x9df7dd26 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x9dfab2ce netdev_err +EXPORT_SYMBOL vmlinux 0x9e056747 of_platform_device_create EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0e1bed neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e1305cc blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2290dd __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x9e21d146 bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e3b5244 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x9e2b7deb may_umount_tree +EXPORT_SYMBOL vmlinux 0x9e315a3b sk_wait_data +EXPORT_SYMBOL vmlinux 0x9e36a6b0 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x9e4e35f0 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5a904f alloc_buffer_head EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e659296 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x9e6e5673 da903x_query_status -EXPORT_SYMBOL vmlinux 0x9e6faefe __of_get_address -EXPORT_SYMBOL vmlinux 0x9e728cd8 of_get_mac_address -EXPORT_SYMBOL vmlinux 0x9e7b60bd twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9e63372f gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x9e6fb6e8 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e8649c4 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x9e9976e9 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x9e8421bd twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x9e99ecbc blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea13854 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x9eacd518 qman_start_using_portal EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eadb4e0 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec1ffad bio_integrity_trim EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecb674c pci_enable_wake EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edbb326 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x9ee1187b rfkill_alloc -EXPORT_SYMBOL vmlinux 0x9f110977 vfs_statfs -EXPORT_SYMBOL vmlinux 0x9f2f8ca9 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x9f41521c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x9eda2d92 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9ee5f444 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x9ee6ee96 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x9ef2f20e sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x9f0eb435 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x9f15f077 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x9f1856ad pnp_possible_config +EXPORT_SYMBOL vmlinux 0x9f2b412d lynx_get_mdio_device +EXPORT_SYMBOL vmlinux 0x9f2b8f45 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x9f42b128 phy_attached_print EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4d2057 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f8183ec vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x9f889605 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x9f95f841 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x9f96df30 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9c0f70 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x9f9f72c0 md_register_thread -EXPORT_SYMBOL vmlinux 0x9fa2b4b0 twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fadfdce i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fcd896a complete_request_key +EXPORT_SYMBOL vmlinux 0x9fb7469a twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x9fc191dc dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x9fce9c0e configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x9fd5be9c device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x9fd63ea0 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff1e9ed noop_fsync +EXPORT_SYMBOL vmlinux 0x9ff132aa scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x9ff24fa9 mii_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0141040 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xa01a3a69 dm_get_device EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa025aed2 devfreq_remove_device EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04a4498 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xa04d1043 proc_set_user EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa0627f59 icmp6_send +EXPORT_SYMBOL vmlinux 0xa05e7802 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xa0621d63 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa0722fe0 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa082189d pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0a1d3db sock_bind_add -EXPORT_SYMBOL vmlinux 0xa0a75308 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xa0aa1a17 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xa0a135f2 of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0be0a8b xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa0d5950f xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e83dff skb_append +EXPORT_SYMBOL vmlinux 0xa0def59d skb_recv_datagram 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 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11cfb5b ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xa155668c pci_disable_msix -EXPORT_SYMBOL vmlinux 0xa15c30e9 __icmp_send -EXPORT_SYMBOL vmlinux 0xa18ccea5 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xa1bbeb06 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xa1d511f1 inet_ioctl -EXPORT_SYMBOL vmlinux 0xa1dc10bf mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa12afa54 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa12cba3e copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xa1352173 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa137b25d vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xa1418e7f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xa14c6c45 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xa14d85f5 sock_no_bind +EXPORT_SYMBOL vmlinux 0xa15dacac devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa15e270f inet_put_port +EXPORT_SYMBOL vmlinux 0xa167bd76 napi_enable +EXPORT_SYMBOL vmlinux 0xa1730b67 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xa178de3c unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa18bf4b2 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xa1a4f25c unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa1c10d80 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xa1d112cf tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa1e60e24 param_ops_ushort EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa214ae1f sock_alloc -EXPORT_SYMBOL vmlinux 0xa219e378 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xa22987c1 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa239f8ac devm_register_netdev +EXPORT_SYMBOL vmlinux 0xa23679e7 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xa23befac pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xa23f3e33 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24bee76 request_key_tag +EXPORT_SYMBOL vmlinux 0xa24a58da xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xa24d7c80 sock_gettstamp EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25a97f7 inet_addr_type -EXPORT_SYMBOL vmlinux 0xa25ad3d8 skb_pull +EXPORT_SYMBOL vmlinux 0xa25ce1c7 copy_highpage +EXPORT_SYMBOL vmlinux 0xa2606cbe blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa263e91a cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa273fb74 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xa282bf26 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa2818e6b devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28fc24d tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xa298e3df of_find_property +EXPORT_SYMBOL vmlinux 0xa2b05239 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa2c411f6 icmp_ndo_send EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d00b76 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xa2d2e5f6 input_unregister_device EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size -EXPORT_SYMBOL vmlinux 0xa2d6c06c udpv6_sendmsg EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2f296e4 phy_device_remove -EXPORT_SYMBOL vmlinux 0xa2f698e9 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xa2fef724 seq_putc -EXPORT_SYMBOL vmlinux 0xa3268ddf genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xa33542cc tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xa2e8ee4d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa2f850d5 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xa32a8387 posix_test_lock +EXPORT_SYMBOL vmlinux 0xa32db572 sock_release EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa33c00da __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xa342632b scsi_scan_target +EXPORT_SYMBOL vmlinux 0xa34defbc sock_wmalloc EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa36dbd57 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xa37b5a13 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xa389a539 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xa389ccdf kobject_del -EXPORT_SYMBOL vmlinux 0xa38c180c vme_irq_generate -EXPORT_SYMBOL vmlinux 0xa397011f adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xa3a8652d poll_freewait +EXPORT_SYMBOL vmlinux 0xa356b4bd pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xa3875e9d md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xa3941882 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xa395ca49 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xa3b5d9ac end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa3ba5f70 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c2f73e of_get_property -EXPORT_SYMBOL vmlinux 0xa3caa08a audit_log EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3eaf239 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xa3f14d1a tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xa3d09403 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4198f02 vc_cons -EXPORT_SYMBOL vmlinux 0xa41da146 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xa41f3ab7 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xa4251d33 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xa4277ec0 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xa4299581 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xa43d1152 dev_mc_del +EXPORT_SYMBOL vmlinux 0xa418a195 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xa41c45ba security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xa439277b ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xa447791e devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa453cd05 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xa46bb5e5 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xa4795d5d folio_add_lru -EXPORT_SYMBOL vmlinux 0xa479c726 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xa482cec1 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa4851248 put_watch_queue -EXPORT_SYMBOL vmlinux 0xa497aaf9 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xa4987302 d_tmpfile -EXPORT_SYMBOL vmlinux 0xa4b5624a vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xa4c44296 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xa4d1171d flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0xa4d6a323 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xa4de7d74 tcp_time_wait -EXPORT_SYMBOL vmlinux 0xa4e4a10f unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xa4f06a55 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xa44981e9 neigh_xmit +EXPORT_SYMBOL vmlinux 0xa44b1841 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xa4664eba kernel_bind +EXPORT_SYMBOL vmlinux 0xa4764183 vme_slave_request +EXPORT_SYMBOL vmlinux 0xa499c46b setattr_prepare +EXPORT_SYMBOL vmlinux 0xa49b7796 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xa4a86591 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xa4b25e19 __free_pages +EXPORT_SYMBOL vmlinux 0xa4bce93c fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xa4cf67c0 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xa4dbc0df param_ops_string +EXPORT_SYMBOL vmlinux 0xa4e7805f module_put +EXPORT_SYMBOL vmlinux 0xa4e8f2b8 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xa4f51872 kernel_listen EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa5062473 d_invalidate -EXPORT_SYMBOL vmlinux 0xa50d8c09 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xa52a49ba vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xa5000d26 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa50c86c5 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xa52abea3 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa54dfefe pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xa5427792 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa568f96d dev_uc_add -EXPORT_SYMBOL vmlinux 0xa56c6f25 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xa57eefea mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xa58002e5 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa55839f3 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xa55a9b79 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xa55d46d8 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xa565b38f tcp_peek_len +EXPORT_SYMBOL vmlinux 0xa581b0c9 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5b0bbf9 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xa5b84b75 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xa5bf7ad8 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xa5c333fe mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xa5c7be70 security_sock_graft -EXPORT_SYMBOL vmlinux 0xa5e1de48 xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0xa5f58ba2 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xa5f5fca7 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xa5996a82 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xa59e3977 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa5ae8d06 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xa5c6cd75 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xa5c8e960 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xa5caf14d folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0xa5dc0d70 skb_copy_bits EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa6002629 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xa60bebdd dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xa6021901 trace_event_printf +EXPORT_SYMBOL vmlinux 0xa60e81e8 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa638e6d2 component_match_add_release -EXPORT_SYMBOL vmlinux 0xa643afc1 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xa626fcf8 pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa64ef6b4 pci_get_device +EXPORT_SYMBOL vmlinux 0xa675bc92 put_cmsg EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa690b7ad pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa68a9fec md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xa6926a84 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xa6931a8f file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa6a59619 param_set_long -EXPORT_SYMBOL vmlinux 0xa6acbf8b blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xa6b3c731 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xa6d05281 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xa6ec21c9 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xa6ec558b rt6_lookup +EXPORT_SYMBOL vmlinux 0xa6ac19db mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xa6ad9377 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa6b9cc83 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xa6cb0e0b genphy_read_status +EXPORT_SYMBOL vmlinux 0xa6d4fd74 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa6e15ed4 unpin_user_page +EXPORT_SYMBOL vmlinux 0xa6e43883 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa6fdf32f lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xa702b3ec eth_type_trans EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa70ff06c __put_devmap_managed_page_refs -EXPORT_SYMBOL vmlinux 0xa70ff8c9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xa711bfab tegra_ivc_cleanup EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7331b2a mpage_readahead -EXPORT_SYMBOL vmlinux 0xa735d9ee iov_iter_discard -EXPORT_SYMBOL vmlinux 0xa7471d83 devm_ioremap -EXPORT_SYMBOL vmlinux 0xa748b228 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa727b2c6 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xa7363cd7 input_register_handle EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7630943 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa755bca0 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa77399de seq_write +EXPORT_SYMBOL vmlinux 0xa77bdf46 dev_lstats_read EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77d55b7 inet_getname -EXPORT_SYMBOL vmlinux 0xa782ead9 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xa7854354 pci_match_id -EXPORT_SYMBOL vmlinux 0xa7885efd dma_free_attrs -EXPORT_SYMBOL vmlinux 0xa790880e vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xa792c88d trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xa7b1f211 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xa7baae3d folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xa77e70e5 _dev_warn +EXPORT_SYMBOL vmlinux 0xa78825de dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xa79d8a8a dev_alloc_name +EXPORT_SYMBOL vmlinux 0xa7ac466c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xa7bc0f07 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xa7be68e1 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xa7cb4c34 sock_create EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7e0a450 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xa7eeacce __pagevec_release -EXPORT_SYMBOL vmlinux 0xa7eed25b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xa7e3a2ad tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xa7e3ee74 migrate_folio EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa81326a9 serio_reconnect -EXPORT_SYMBOL vmlinux 0xa816e1ed __bh_read +EXPORT_SYMBOL vmlinux 0xa7f97e31 xfrm_input +EXPORT_SYMBOL vmlinux 0xa7fe06e8 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa80013d0 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa823acc4 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xa823d31d in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xa825e033 phy_find_first -EXPORT_SYMBOL vmlinux 0xa8264349 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xa82ff065 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xa8325b8a pin_user_pages -EXPORT_SYMBOL vmlinux 0xa834ec1a tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa83e6d55 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ab918 bio_integrity_trim EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa85556f0 generic_fillattr EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8607adb pci_set_mwi EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa86e0d53 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xa874d738 kern_unmount -EXPORT_SYMBOL vmlinux 0xa87dd414 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xa8874c18 __neigh_create +EXPORT_SYMBOL vmlinux 0xa8730570 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xa873ec42 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa8769c6d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa8828a3c pnp_get_resource +EXPORT_SYMBOL vmlinux 0xa894a7aa ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89d0ec2 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa8a316ec dma_fence_describe +EXPORT_SYMBOL vmlinux 0xa8a6a5d0 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8b04c5f d_add_ci -EXPORT_SYMBOL vmlinux 0xa8b30a30 input_event -EXPORT_SYMBOL vmlinux 0xa8b45f34 security_path_unlink +EXPORT_SYMBOL vmlinux 0xa8bef373 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xa8c1059e pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xa8c4c3b4 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xa8c6cc0a pci_request_region EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cacdc6 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xa8cbbbf7 generic_write_end +EXPORT_SYMBOL vmlinux 0xa8dc89a8 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xa8e20509 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8ed403a generic_mii_ioctl EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa93c2d75 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xa9183b10 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xa921cde0 nf_log_register +EXPORT_SYMBOL vmlinux 0xa9262230 pci_match_id +EXPORT_SYMBOL vmlinux 0xa92d6d1d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xa9449c6b xp_raw_get_data EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa95ba881 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xa9617911 pipe_unlock EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9801ac9 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xa984201f mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xa99be63b acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0xa9a15d8d nonseekable_open -EXPORT_SYMBOL vmlinux 0xa9a634a7 single_open -EXPORT_SYMBOL vmlinux 0xa9ab307a blk_integrity_register -EXPORT_SYMBOL vmlinux 0xa9c102a0 clkdev_drop +EXPORT_SYMBOL vmlinux 0xa9a5d019 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xa9b25563 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xa9c1608f sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xa9cb2d58 mdiobb_write +EXPORT_SYMBOL vmlinux 0xa9e4087a skb_expand_head EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f13a67 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xa9facba4 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0bb7df xsk_tx_release EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa0e4f41 bio_free_pages +EXPORT_SYMBOL vmlinux 0xaa12149a sk_net_capable EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2c333b simple_statfs -EXPORT_SYMBOL vmlinux 0xaa2d3ea6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xaa1dfbdd elv_rb_del +EXPORT_SYMBOL vmlinux 0xaa287aeb get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa3cb87b param_set_invbool -EXPORT_SYMBOL vmlinux 0xaa3d96d2 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xaa4df2fd bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xaa591672 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xaa4d2b06 read_cache_folio +EXPORT_SYMBOL vmlinux 0xaa5b981f nf_log_unregister +EXPORT_SYMBOL vmlinux 0xaa5d1244 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xaa6bcfbb __put_devmap_managed_page_refs EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa739bfb fqdir_init -EXPORT_SYMBOL vmlinux 0xaa78bbcb phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xaa7dfa09 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa8b8e57 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa974ab1 __getblk_gfp EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaab0f2de padata_alloc -EXPORT_SYMBOL vmlinux 0xaac7b31a phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xaaa840da md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xaaad2d43 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xaab3685b peernet2id +EXPORT_SYMBOL vmlinux 0xaac5b369 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad0d412 d_set_d_op EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad856bc __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaadee93d netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xaae77e06 devm_memunmap +EXPORT_SYMBOL vmlinux 0xaad90c25 tcp_sendpage EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab059666 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xab07818e netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xab149c5f wireless_spy_update -EXPORT_SYMBOL vmlinux 0xab21380f netif_set_tso_max_size -EXPORT_SYMBOL vmlinux 0xab34cc76 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xab2b6299 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xab2ffcae path_is_under EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab504a1f in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xab5bc364 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xab3c5839 mdiobus_read EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab6331a4 __skb_checksum EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab7150af crypto_sha256_update EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7b6637 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xab81e178 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xabaacedc phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xab80c35f inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xaba1afc1 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xabb3d234 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xabb42425 set_groups -EXPORT_SYMBOL vmlinux 0xabb43f18 pci_request_irq EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabc29044 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xabd5b565 simple_rmdir +EXPORT_SYMBOL vmlinux 0xabd1ef44 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xabd1fbca qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xabe146c8 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac05ff3c sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xac16330d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xac03a089 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xac12f5d5 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2df167 phy_get_pause EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac403a59 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xac52b8aa phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xac4663b1 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xac4dbd5d __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xac4ddec8 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5a5f72 km_state_notify +EXPORT_SYMBOL vmlinux 0xac5bee76 bio_put EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac7a7ee8 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xac7e3ac5 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xac7eac3f ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xac84d785 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xac9e36bb seq_release -EXPORT_SYMBOL vmlinux 0xaca9060f tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xac7cc268 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xac893698 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xac972bdf dentry_create +EXPORT_SYMBOL vmlinux 0xac97b194 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xac98934c set_bh_page +EXPORT_SYMBOL vmlinux 0xac9b3566 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xac9f1f61 genl_unregister_family EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacbd4638 dget_parent -EXPORT_SYMBOL vmlinux 0xacc2ed4f set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xacb1a36b key_payload_reserve EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdb9c5a simple_transaction_release EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace8dcb8 phy_suspend -EXPORT_SYMBOL vmlinux 0xacec1e7a seq_dentry +EXPORT_SYMBOL vmlinux 0xacebb842 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0b51c5 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad2aced3 km_policy_expired -EXPORT_SYMBOL vmlinux 0xad38a96d skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xad3d66ee proc_mkdir +EXPORT_SYMBOL vmlinux 0xad1cb9cd inet6_getname +EXPORT_SYMBOL vmlinux 0xad292796 dev_uc_del +EXPORT_SYMBOL vmlinux 0xad2af808 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad510b9f __splice_from_pipe EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad6f729b tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad95f7df pci_request_region EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad9c554e fs_param_is_path +EXPORT_SYMBOL vmlinux 0xad9ce46a dev_printk_emit EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada396c8 block_read_full_folio -EXPORT_SYMBOL vmlinux 0xada66d9d mmc_put_card +EXPORT_SYMBOL vmlinux 0xada99133 of_node_put +EXPORT_SYMBOL vmlinux 0xadaa2d8c devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb2b9ee jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xadb5ea1d __serio_register_driver EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc6fcc0 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xadc8d335 phy_modify_paged EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade726f6 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xadf74f25 input_inject_event +EXPORT_SYMBOL vmlinux 0xadf94d8b build_skb_around +EXPORT_SYMBOL vmlinux 0xae0370ee i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0aa7cd dquot_get_state +EXPORT_SYMBOL vmlinux 0xae0cbcef phy_request_interrupt EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae2fe71b rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xae1d7cfd inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xae240b48 lookup_one +EXPORT_SYMBOL vmlinux 0xae2f688b mount_nodev EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae49c6ad folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0xae4b90cb iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xae44aea6 inet_frags_init EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xae6e8be5 invalidate_disk +EXPORT_SYMBOL vmlinux 0xae71a0c5 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xae8016c6 param_set_long +EXPORT_SYMBOL vmlinux 0xae834fd8 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xaea81539 padata_do_parallel 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 0xaed2efb0 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xaeee7445 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xaef7d3f0 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xaefb2547 pci_iomap -EXPORT_SYMBOL vmlinux 0xaf05376e xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xaf1f204c locks_remove_posix -EXPORT_SYMBOL vmlinux 0xaf29b0e1 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xaf31e91b pci_clear_master -EXPORT_SYMBOL vmlinux 0xaf3baac8 __alloc_pages +EXPORT_SYMBOL vmlinux 0xaebe758c phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xaee0ba2b uart_suspend_port +EXPORT_SYMBOL vmlinux 0xaeec5d76 is_nd_btt +EXPORT_SYMBOL vmlinux 0xaf255bd5 sk_dst_check +EXPORT_SYMBOL vmlinux 0xaf380e77 eth_validate_addr EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf47503e blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xaf43666e pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xaf4aed6a fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xaf54d24b cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf5776cc udp_disconnect -EXPORT_SYMBOL vmlinux 0xaf5ed0fe logfc -EXPORT_SYMBOL vmlinux 0xaf5fffcc try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xaf63fe8a nd_device_notify -EXPORT_SYMBOL vmlinux 0xaf71ad86 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xaf9116b5 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xaf9b2b54 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xaf9e311b pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xaf587c0a __dquot_free_space +EXPORT_SYMBOL vmlinux 0xaf5f9fda security_unix_may_send +EXPORT_SYMBOL vmlinux 0xaf604b2a sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xaf7a122c sock_kmalloc +EXPORT_SYMBOL vmlinux 0xaf8298db security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xaf9da595 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xafa0596d xfrm_policy_delete 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 0xafc11cde mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xb0041be4 d_alloc +EXPORT_SYMBOL vmlinux 0xafd27d67 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xafdcb08f in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xafeb00f2 param_get_bool +EXPORT_SYMBOL vmlinux 0xb0022d68 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xb018d6de __scsi_execute EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb023fe0e __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb03a9cbe phy_read_paged -EXPORT_SYMBOL vmlinux 0xb048a8ac nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xb04a19de reuseport_alloc +EXPORT_SYMBOL vmlinux 0xb01e540a kern_path_create +EXPORT_SYMBOL vmlinux 0xb0397059 simple_unlink +EXPORT_SYMBOL vmlinux 0xb03f844c set_posix_acl EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04cfbde xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xb056cfb8 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb058c9ad __lock_buffer EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xb06acc08 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xb07d9625 param_array_ops EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a3c208 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xb0b5e9b3 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb0b12c84 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xb0b3c650 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb0bebc8c clkdev_add +EXPORT_SYMBOL vmlinux 0xb0c34253 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0ca8e05 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xb0d7c73e input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb0d7c82d xfrm_input EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f6a5e3 km_new_mapping -EXPORT_SYMBOL vmlinux 0xb10f0ae9 vme_bus_type -EXPORT_SYMBOL vmlinux 0xb1150db7 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb1046acf alloc_fcdev EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12643f8 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1326633 sockopt_lock_sock EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb138cef6 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xb148ef90 kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14d4753 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb155bea7 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xb171a3d6 new_inode -EXPORT_SYMBOL vmlinux 0xb1760880 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xb197d5ef skb_copy -EXPORT_SYMBOL vmlinux 0xb19a30f7 elv_rb_add -EXPORT_SYMBOL vmlinux 0xb1a71325 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xb1bbd470 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xb1c1b462 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb15bd3c8 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb18a4504 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb1a5a3fe read_cache_page EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c7f219 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xb1cc63e7 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xb1c936a3 kill_anon_super +EXPORT_SYMBOL vmlinux 0xb1d41580 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb1d5f791 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e1537d simple_empty -EXPORT_SYMBOL vmlinux 0xb1e6f4df rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xb1f229b3 mmc_retune_release -EXPORT_SYMBOL vmlinux 0xb20223ae padata_free_shell -EXPORT_SYMBOL vmlinux 0xb2142aaf pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xb2289ba3 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb1e1e851 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb1e7aa69 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xb1f9a81e jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xb203ab9c of_xudma_dev_get EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2354edd key_validate -EXPORT_SYMBOL vmlinux 0xb2384764 validate_slab_cache -EXPORT_SYMBOL vmlinux 0xb2467d0c mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xb25ca9b9 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb2753661 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb2880389 phy_attached_info -EXPORT_SYMBOL vmlinux 0xb2accdca prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xb252e846 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb256f12a flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0xb287935e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb2a0b976 eth_header_cache +EXPORT_SYMBOL vmlinux 0xb2bca81e netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c82f96 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xb2cfc424 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xb2d2ee99 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb2d63921 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2ee007e uart_add_one_port EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f8e403 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fe8020 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xb3016cc2 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xb2fd800e scsi_dma_map +EXPORT_SYMBOL vmlinux 0xb2ffc97a pcie_get_mps EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb318097c bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xb31aa2e8 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xb322b648 md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb3476193 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xb33824fd tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xb33ab9d0 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xb34952e4 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xb34a4d88 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb35cd3f4 security_sb_remount +EXPORT_SYMBOL vmlinux 0xb3547fdf pagecache_isize_extended EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xb3715e0a keyring_search +EXPORT_SYMBOL vmlinux 0xb3790059 tcp_seq_start EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb38afae5 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xb3a4c4ba inetdev_by_index +EXPORT_SYMBOL vmlinux 0xb3a5e3ce dev_mc_sync EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3ce0321 uart_match_port +EXPORT_SYMBOL vmlinux 0xb3a86451 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d9a141 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb3e18cd0 fscrypt_decrypt_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 0xb3fbaf39 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xb3fc5e57 vme_bus_num EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb40efd41 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xb4123b47 is_bad_inode +EXPORT_SYMBOL vmlinux 0xb41937af fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4314da2 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb43a96ad param_ops_ulong +EXPORT_SYMBOL vmlinux 0xb42ab788 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xb4318523 may_umount +EXPORT_SYMBOL vmlinux 0xb4480d4a con_is_bound +EXPORT_SYMBOL vmlinux 0xb44bb733 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45b8d5d pmem_sector_size -EXPORT_SYMBOL vmlinux 0xb481978b rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xb45f65b0 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xb46422c4 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xb47a048e pci_restore_state EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xb499e0b6 phy_init_eee EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xb4cb49eb drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xb4eed27e pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xb4d820bc sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xb4df7b4c genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xb4eee17f sock_wfree EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4ffe7b9 has_capability_noaudit -EXPORT_SYMBOL vmlinux 0xb51146b6 blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0xb5125d75 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xb517373b writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xb5176e16 config_group_init -EXPORT_SYMBOL vmlinux 0xb5267c18 backlight_force_update -EXPORT_SYMBOL vmlinux 0xb52c8b5d serio_rescan -EXPORT_SYMBOL vmlinux 0xb5306ca9 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xb4faca6c vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xb50208a0 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb51d55d0 serio_open +EXPORT_SYMBOL vmlinux 0xb5288a37 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xb52b358c rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xb537ea95 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xb53b0ea5 seq_release EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb54f6edd ram_aops -EXPORT_SYMBOL vmlinux 0xb54fe7ed phy_init_eee -EXPORT_SYMBOL vmlinux 0xb558f162 fs_param_is_path -EXPORT_SYMBOL vmlinux 0xb563d88f block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xb548e803 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xb55a1aba elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xb57a0cb2 __do_once_done +EXPORT_SYMBOL vmlinux 0xb57d9ec0 wake_up_process EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb580e787 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xb5886913 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0xb595b59a t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xb59ed638 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb59f1a37 fman_register_intr +EXPORT_SYMBOL vmlinux 0xb5913839 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xb5928c4a filemap_dirty_folio EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa63d1 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b6a65e to_nd_pfn -EXPORT_SYMBOL vmlinux 0xb5c792c3 mdiobus_free -EXPORT_SYMBOL vmlinux 0xb5cc323c copy_string_kernel -EXPORT_SYMBOL vmlinux 0xb5d7d3e2 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xb5c17f5d skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xb5c45fa5 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xb5dd921c fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb60915eb mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xb5e840e1 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xb5f4acd7 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xb5ffade4 validate_slab_cache EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb62ed387 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb654585e pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb6583fec pcie_set_mps -EXPORT_SYMBOL vmlinux 0xb66b41eb submit_bh +EXPORT_SYMBOL vmlinux 0xb66c3aef rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0xb66fb52c mdiobus_write +EXPORT_SYMBOL vmlinux 0xb675e48c register_framebuffer EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb692e53c pps_unregister_source EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6973ad7 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xb6a5f1da touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xb6a5ef93 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6bea80d of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xb6beefc2 from_kuid -EXPORT_SYMBOL vmlinux 0xb6c1b826 from_kgid -EXPORT_SYMBOL vmlinux 0xb6c56e29 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xb6c6a56a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xb6aefd3e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb6b45840 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xb6b8d4ef elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xb6b9bd04 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb6bf1140 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d75198 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xb6d9e247 follow_pfn -EXPORT_SYMBOL vmlinux 0xb6da42f5 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e69b71 __block_write_begin +EXPORT_SYMBOL vmlinux 0xb6e51843 d_rehash EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb708e813 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xb70937b6 devm_ioremap EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb725d187 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xb7292169 tty_port_open +EXPORT_SYMBOL vmlinux 0xb725c35a udp_lib_unhash EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73bdc24 generic_file_write_iter EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds -EXPORT_SYMBOL vmlinux 0xb7555014 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xb766f869 tcf_idr_release EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb7707109 skb_find_text +EXPORT_SYMBOL vmlinux 0xb775b630 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e4946 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xb7a6975a linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xb7ac69c5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xb79b7f1f scsi_done +EXPORT_SYMBOL vmlinux 0xb7b07807 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7baa594 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xb7bf4d87 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7f69613 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xb8074e38 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb7cdf156 tcp_read_done +EXPORT_SYMBOL vmlinux 0xb7cf4908 vme_dma_request +EXPORT_SYMBOL vmlinux 0xb7dcc88c vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xb7f87cd7 notify_change EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb80e3958 block_commit_write -EXPORT_SYMBOL vmlinux 0xb8183549 folio_end_writeback -EXPORT_SYMBOL vmlinux 0xb8271ce1 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xb82bcc02 default_llseek +EXPORT_SYMBOL vmlinux 0xb80db43a mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb83b2d10 vga_client_register EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb850b736 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xb855cc72 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xb85d8e2e inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb88bb82c ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xb898b2b8 md_write_inc +EXPORT_SYMBOL vmlinux 0xb875d73f of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb886599e padata_alloc EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89d5c94 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xb8a10421 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b8a67a locks_delete_block -EXPORT_SYMBOL vmlinux 0xb8f59ab2 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xb8f85e3c blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xb9057740 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xb8d1eda4 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xb8dc99f5 __destroy_inode +EXPORT_SYMBOL vmlinux 0xb8de7b47 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb8e3f07b cfb_imageblit +EXPORT_SYMBOL vmlinux 0xb8e671ba phy_config_aneg +EXPORT_SYMBOL vmlinux 0xb8ea440c mfd_add_devices EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb909597c pipe_lock EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb923504a try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xb929e897 fd_install -EXPORT_SYMBOL vmlinux 0xb9325407 find_vma +EXPORT_SYMBOL vmlinux 0xb94296ac __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94e9dbc tso_start -EXPORT_SYMBOL vmlinux 0xb94f5b8e inet6_add_offload -EXPORT_SYMBOL vmlinux 0xb9509de5 pcim_iomap -EXPORT_SYMBOL vmlinux 0xb954786a readahead_expand -EXPORT_SYMBOL vmlinux 0xb9627f1f dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xb96a0133 iunique +EXPORT_SYMBOL vmlinux 0xb962af8a ip_check_defrag +EXPORT_SYMBOL vmlinux 0xb968904c inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context -EXPORT_SYMBOL vmlinux 0xb96cb4dd phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9767da3 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xb981510c set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xb9924a25 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0xb9981d44 unix_get_socket -EXPORT_SYMBOL vmlinux 0xb99925d6 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xb9a87187 __skb_checksum -EXPORT_SYMBOL vmlinux 0xb9aa345e __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xb98108e8 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb98c4c2c buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xb98f33e4 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b8dd9d devm_rproc_add -EXPORT_SYMBOL vmlinux 0xb9bd27c8 proto_register -EXPORT_SYMBOL vmlinux 0xb9bdaa6d folio_account_redirty -EXPORT_SYMBOL vmlinux 0xb9bdfeba nd_device_register -EXPORT_SYMBOL vmlinux 0xb9bfb4fa dm_io -EXPORT_SYMBOL vmlinux 0xb9c55817 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xb9cb518f pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0xb9d93e5f security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xb9b4704e tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xb9c99ab9 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xb9dbb223 audit_log +EXPORT_SYMBOL vmlinux 0xb9e53ff1 elevator_alloc EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba0797f0 scsi_host_put -EXPORT_SYMBOL vmlinux 0xba0c2d5e netif_schedule_queue EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba15b188 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xba1cc94e generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xba26124b remap_pfn_range -EXPORT_SYMBOL vmlinux 0xba463d5e pci_write_config_word +EXPORT_SYMBOL vmlinux 0xba1de307 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xba1ea059 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xba280dd3 __netif_schedule EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6604cd mmc_register_driver EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba8520dd blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xba7208fc ram_aops +EXPORT_SYMBOL vmlinux 0xba730a6a inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xba82c3f9 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xba86ef29 devm_register_netdev EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbaa6421a skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xbaa7cb63 sock_create_kern +EXPORT_SYMBOL vmlinux 0xbaa35cdd jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xbab4a80d cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbacd5fd4 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xbace9f49 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xbadba6ec current_time +EXPORT_SYMBOL vmlinux 0xbae144e0 __skb_get_hash EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start -EXPORT_SYMBOL vmlinux 0xbb039ff7 sget EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0654c4 genl_register_family -EXPORT_SYMBOL vmlinux 0xbb106ac8 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xbb12dbf5 input_copy_abs -EXPORT_SYMBOL vmlinux 0xbb177371 d_move EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2eae48 cdrom_open -EXPORT_SYMBOL vmlinux 0xbb46198a fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0xbb47785a mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xbb4ec50a flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xbb2f356b sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xbb4bcf0e locks_free_lock EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb51412f to_nd_btt -EXPORT_SYMBOL vmlinux 0xbb59994e con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xbb50c347 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xbb5643b0 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xbb62eefd d_genocide +EXPORT_SYMBOL vmlinux 0xbb6747df genphy_restart_aneg EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb70e1a4 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xbb80348b flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xbb92e91e pci_reenable_device +EXPORT_SYMBOL vmlinux 0xbb7f419e km_policy_notify EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbe348ff mmc_start_request -EXPORT_SYMBOL vmlinux 0xbbe555d8 twl6040_power -EXPORT_SYMBOL vmlinux 0xbc0b2320 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xbbab5391 clear_inode +EXPORT_SYMBOL vmlinux 0xbbb1b360 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xbbcbb5b7 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xbbd292be noop_qdisc +EXPORT_SYMBOL vmlinux 0xbbe34391 phy_driver_register +EXPORT_SYMBOL vmlinux 0xbbeb988b _dev_notice +EXPORT_SYMBOL vmlinux 0xbbfb46c2 fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc419b2f bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0xbc5407b2 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xbc590e8a tty_devnum -EXPORT_SYMBOL vmlinux 0xbc5b42e6 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xbc6568c7 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xbc6907c8 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xbc6e487a vme_dma_request -EXPORT_SYMBOL vmlinux 0xbc6ff3a4 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xbc73ca70 netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0xbc80291a pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xbc90c7e2 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xbc91a56c arp_xmit +EXPORT_SYMBOL vmlinux 0xbc2f19e2 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xbc404b5c cdev_del +EXPORT_SYMBOL vmlinux 0xbc6de1e2 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xbc84d7f7 pcie_set_mps EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcc5ffc9 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xbcc959f3 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xbcde0c54 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xbcf99462 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xbcff2e88 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xbd03b7d1 __fput_sync -EXPORT_SYMBOL vmlinux 0xbd050e27 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xbd21f0ad __scm_destroy -EXPORT_SYMBOL vmlinux 0xbd3a3106 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xbcb3297f vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xbcf4f57e dma_set_mask +EXPORT_SYMBOL vmlinux 0xbd0062f7 tty_port_put +EXPORT_SYMBOL vmlinux 0xbd02bfa0 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xbd05759f devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xbd0af61e skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xbd15f007 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xbd171d4e pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xbd2082ca dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xbd2905bd __bread_gfp +EXPORT_SYMBOL vmlinux 0xbd2aca43 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xbd2b3b48 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbd363ac4 fiemap_prep +EXPORT_SYMBOL vmlinux 0xbd3db264 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xbd447d21 devm_rproc_add EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd5c03b0 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xbd5eb070 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xbd590aae dquot_transfer +EXPORT_SYMBOL vmlinux 0xbd5c4ba8 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd648d05 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd691187 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xbd6df691 devm_release_resource -EXPORT_SYMBOL vmlinux 0xbd7a9763 register_filesystem -EXPORT_SYMBOL vmlinux 0xbd86c762 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xbd92465b folio_alloc -EXPORT_SYMBOL vmlinux 0xbda04367 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xbdc07e14 inet_del_offload -EXPORT_SYMBOL vmlinux 0xbdc6ca57 PageMovable -EXPORT_SYMBOL vmlinux 0xbde4ce86 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xbd786758 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xbd895a77 register_netdevice +EXPORT_SYMBOL vmlinux 0xbd942942 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xbdbd2adf of_graph_is_present +EXPORT_SYMBOL vmlinux 0xbdce6334 dev_set_alias +EXPORT_SYMBOL vmlinux 0xbde34d78 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xbdecd77f register_key_type +EXPORT_SYMBOL vmlinux 0xbdedc014 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp -EXPORT_SYMBOL vmlinux 0xbe304d74 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xbe322518 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xbe34ec19 nf_log_trace -EXPORT_SYMBOL vmlinux 0xbe3550e1 __devm_release_region +EXPORT_SYMBOL vmlinux 0xbe2f2dd8 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xbe325611 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xbe4145b3 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbe439c81 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4dc6ea jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe4f6973 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xbe52e891 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xbe54a274 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe61c34a fs_context_for_submount EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe7d78e8 netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0xbea2ca9c kernel_bind -EXPORT_SYMBOL vmlinux 0xbef01634 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbe6bb628 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xbe71683b mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xbe76e4a3 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xbe880265 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xbe9e9ba6 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xbeb171a9 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xbeb6dafe generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xbecadf5b configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xbece8366 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0xbed1460a jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa403a scsi_ioctl EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf0f0fbc mdio_device_free -EXPORT_SYMBOL vmlinux 0xbf16b0e1 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xbf294c32 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xbf2b94df vfs_get_link -EXPORT_SYMBOL vmlinux 0xbf2f1253 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xbf411467 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xbf57772b genlmsg_put +EXPORT_SYMBOL vmlinux 0xbefcf0b8 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xbf20dd82 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xbf33219d i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbf38eb5b netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xbf434d99 scsi_print_command EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6997be capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xbf6f5099 md_flush_request -EXPORT_SYMBOL vmlinux 0xbf7872d2 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xbf8196b7 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xbf83486f block_write_begin +EXPORT_SYMBOL vmlinux 0xbf76a200 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xbf7f5455 km_state_expired +EXPORT_SYMBOL vmlinux 0xbf8a5862 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xbf97bf36 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xbf9aa315 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa67acc may_umount +EXPORT_SYMBOL vmlinux 0xbfac2b5d find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfaf1f45 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xbfb9ecbd mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xbfba9cee is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xbfbbe2af vfs_link EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfdab99d blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xbff02bef set_page_dirty -EXPORT_SYMBOL vmlinux 0xc0296bf3 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xc029b94e km_report +EXPORT_SYMBOL vmlinux 0xbfcc3d46 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xbfe7d653 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xbfeb6a91 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xbff0ae88 param_get_invbool +EXPORT_SYMBOL vmlinux 0xc007d0f4 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc02989b8 cdev_init EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc041525b make_kgid +EXPORT_SYMBOL vmlinux 0xc0491640 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xc0493233 dev_driver_string EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc068fbc3 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xc0713c6e udp_poll +EXPORT_SYMBOL vmlinux 0xc06980aa 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 0xc086e668 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xc08e7a05 nla_reserve -EXPORT_SYMBOL vmlinux 0xc0adc34b mode_strip_sgid -EXPORT_SYMBOL vmlinux 0xc0c31e70 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xc0e13016 nd_dax_probe -EXPORT_SYMBOL vmlinux 0xc0eead71 sock_no_bind +EXPORT_SYMBOL vmlinux 0xc0947bd9 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc0961584 proto_unregister +EXPORT_SYMBOL vmlinux 0xc097d0ff __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xc0993f93 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xc0a06a7e finalize_exec +EXPORT_SYMBOL vmlinux 0xc0b511d5 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xc0d6d3d2 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc0eaba07 pskb_expand_head 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 0xc113ff91 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xc1019be1 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xc105adf9 vm_map_ram +EXPORT_SYMBOL vmlinux 0xc10f104e dev_uc_init EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc13afb1e end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xc1409e33 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xc1460bbb set_user_nice +EXPORT_SYMBOL vmlinux 0xc13e2d11 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc156c494 genphy_read_master_slave EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc159e3c4 free_cgroup_ns EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc166b812 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xc16946ae __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc18d72de is_nd_btt -EXPORT_SYMBOL vmlinux 0xc1bfe28f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xc19d87ba __filemap_get_folio +EXPORT_SYMBOL vmlinux 0xc19fed26 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xc1bf01ee netdev_change_features +EXPORT_SYMBOL vmlinux 0xc1ce2d76 _dev_printk +EXPORT_SYMBOL vmlinux 0xc1d4c2b4 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d6b95a dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dec337 inc_nlink EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1f57b44 sock_register -EXPORT_SYMBOL vmlinux 0xc1f6c31b fc_mount -EXPORT_SYMBOL vmlinux 0xc1ff195e kern_path_create -EXPORT_SYMBOL vmlinux 0xc20252b3 pci_enable_device +EXPORT_SYMBOL vmlinux 0xc1ecd946 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc2183d4f pci_fixup_device -EXPORT_SYMBOL vmlinux 0xc21f9ead rpmh_write_async +EXPORT_SYMBOL vmlinux 0xc205fe4e cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xc210c612 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xc216c09e kobject_del +EXPORT_SYMBOL vmlinux 0xc22b5463 pci_enable_device +EXPORT_SYMBOL vmlinux 0xc22d2d12 find_vma_intersection +EXPORT_SYMBOL vmlinux 0xc22e8223 fput EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc2394c4e iterate_fd -EXPORT_SYMBOL vmlinux 0xc25c403b xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xc26c3b99 dev_get_flags -EXPORT_SYMBOL vmlinux 0xc270e61e skb_pull_data -EXPORT_SYMBOL vmlinux 0xc2786ce5 vfs_create -EXPORT_SYMBOL vmlinux 0xc27999d2 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xc27a122a rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xc27add9d scsi_scan_target +EXPORT_SYMBOL vmlinux 0xc231159d neigh_seq_start +EXPORT_SYMBOL vmlinux 0xc257ec0b sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xc25ed5e4 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xc2829248 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xc28ac5cd __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29e42ea max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xc2ac2a86 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xc2be7b0c xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0xc2bee0fb mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xc2c97d6b genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xc2ca80a0 netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xc2d45662 of_get_ethdev_address EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e518bd netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ea9263 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xc2ec9795 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xc2e840aa vfs_mkobj +EXPORT_SYMBOL vmlinux 0xc2efc716 scm_detach_fds EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2fc4a94 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xc2fcd73e del_gendisk +EXPORT_SYMBOL vmlinux 0xc3033ca3 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc314ed7b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xc31910bf netlink_broadcast EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31e42a5 dev_mc_del +EXPORT_SYMBOL vmlinux 0xc32528c8 dup_iter EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc343480e tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xc348cc9a inet_recvmsg -EXPORT_SYMBOL vmlinux 0xc36066ec __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xc3676293 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xc36e1e1e release_pages +EXPORT_SYMBOL vmlinux 0xc334cad9 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xc337176b blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xc35c5faa sk_alloc EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37beb43 __sk_dst_check EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3915ca2 dev_add_pack -EXPORT_SYMBOL vmlinux 0xc39a9d99 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xc3b3758f skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xc3b6dc0c gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xc3973d8e inet_protos +EXPORT_SYMBOL vmlinux 0xc3a2923f inet_dgram_connect EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3bd7db5 vga_put -EXPORT_SYMBOL vmlinux 0xc3c105bc dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xc3c7924e netpoll_setup EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d677e7 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xc3ee2374 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xc3f50124 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xc3dd0145 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xc3e5ea6e pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xc3f7fc29 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xc3f89b88 vif_device_init EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc419c9f3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xc400911d bmap +EXPORT_SYMBOL vmlinux 0xc415e70f shrink_dcache_parent EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42c2c17 pci_free_irq EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc434a702 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xc44a8ce3 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xc44b9b74 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc436bfa4 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xc4374800 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xc448bca2 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xc44cb77e pneigh_lookup EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc460efc0 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc461298d of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4749349 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xc4776f41 clear_nlink EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc495b64e __post_watch_notification -EXPORT_SYMBOL vmlinux 0xc4a70f59 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xc4af1219 path_get +EXPORT_SYMBOL vmlinux 0xc4a68084 param_set_ulong EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4f5a7fb nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xc500ad2f get_tree_bdev +EXPORT_SYMBOL vmlinux 0xc4c9282c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xc4e0e2d2 nf_reinject +EXPORT_SYMBOL vmlinux 0xc4e2cf17 pci_request_regions +EXPORT_SYMBOL vmlinux 0xc4eb1869 twl6040_power +EXPORT_SYMBOL vmlinux 0xc4ebd763 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xc4f82a97 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc4f902f4 slab_build_skb +EXPORT_SYMBOL vmlinux 0xc515d1a7 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc5179223 truncate_setsize EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc52bb8d2 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xc5394590 inet_accept -EXPORT_SYMBOL vmlinux 0xc53bbdb4 sock_init_data -EXPORT_SYMBOL vmlinux 0xc55a4383 pci_disable_device -EXPORT_SYMBOL vmlinux 0xc55b2451 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xc5606407 task_work_add -EXPORT_SYMBOL vmlinux 0xc564c382 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xc5311197 d_lookup +EXPORT_SYMBOL vmlinux 0xc53ad98a jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc546c569 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xc549f35f pci_find_bus +EXPORT_SYMBOL vmlinux 0xc55efa97 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc575cf47 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xc577cf18 inet_del_protocol EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc58ba182 discard_new_inode +EXPORT_SYMBOL vmlinux 0xc57fa5e1 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0xc5863f21 dev_mc_flush EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59cb1b0 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xc5a041a2 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a52c75 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xc5b693e1 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5bad193 seq_open -EXPORT_SYMBOL vmlinux 0xc5bc5e49 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xc5cad340 tcp_init_sock -EXPORT_SYMBOL vmlinux 0xc5cb8547 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xc5d01ee8 regset_get -EXPORT_SYMBOL vmlinux 0xc5d71676 to_ndd +EXPORT_SYMBOL vmlinux 0xc5e5a07c clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc60ab8c7 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xc60c897e inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc5f02641 folio_migrate_flags EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6203bbb stream_open +EXPORT_SYMBOL vmlinux 0xc61eef4c pcie_set_readrq EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc62f6185 pci_find_capability EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6326c14 ps2_begin_command EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63a648a pci_get_subsys -EXPORT_SYMBOL vmlinux 0xc644cfa5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xc6372f1d security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xc640d036 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xc644c1bb skb_free_datagram +EXPORT_SYMBOL vmlinux 0xc656f6ce vme_slot_num EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc668f368 simple_open EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc6729135 netif_device_attach -EXPORT_SYMBOL vmlinux 0xc6777177 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xc6882c59 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xc6940b5c tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0xc69b0216 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xc678f62c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc67c691f dcb_getapp +EXPORT_SYMBOL vmlinux 0xc67d083c inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xc68cf1c2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc691358a dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc69bf6ee scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a022d2 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc6a4f348 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xc6a505d5 pnp_is_active -EXPORT_SYMBOL vmlinux 0xc6acfa9c phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xc6c21c62 __f_setown EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cf0cf8 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6ec5fc9 cdev_set_parent EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc746bf40 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xc77c6110 tty_kref_put +EXPORT_SYMBOL vmlinux 0xc7252a21 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc7410d67 release_pages +EXPORT_SYMBOL vmlinux 0xc7460b9c sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xc74b227e dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xc74c1749 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xc76e41fa unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc77020c7 con_copy_unimap EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc78243e3 may_setattr EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc791500e set_blocksize EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7addcea blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xc7ab8daa xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xc7ac5b40 __scsi_print_sense EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7bf9cf0 folio_migrate_flags EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7db889f pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc7f086b5 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xc7f4ac0d skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xc7f54660 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xc805bbc1 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc7debda8 f_setown +EXPORT_SYMBOL vmlinux 0xc7e072a2 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xc7e9a43d migrate_vma_setup EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc8170d0e seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xc81bd51f d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xc820de0d fs_lookup_param +EXPORT_SYMBOL vmlinux 0xc838b5dc netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84a3a83 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xc84d6ee9 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xc84ea38f tty_unregister_device -EXPORT_SYMBOL vmlinux 0xc85a7ae5 udp_seq_start -EXPORT_SYMBOL vmlinux 0xc86727b8 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xc86f061c kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xc870adee dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xc854430d devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xc85d88e4 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87b1e95 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xc88107db pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88cacd7 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xc88f2134 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a44a00 timestamp_truncate EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8aed983 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xc8be391b sock_edemux +EXPORT_SYMBOL vmlinux 0xc8ad709c phy_print_status +EXPORT_SYMBOL vmlinux 0xc8b231ad unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xc8c621c2 kthread_create_on_node EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table -EXPORT_SYMBOL vmlinux 0xc8ccb12a generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0xc8d84d51 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xc8da00ac dm_unregister_target +EXPORT_SYMBOL vmlinux 0xc8d61863 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e6184a init_net -EXPORT_SYMBOL vmlinux 0xc8e7a865 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xc8f66175 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xc9091a9b ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xc8df2db8 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0xc8e84dea genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc8efa8fc netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xc906a153 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xc90d7c0d netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc92b6db6 scsi_report_opcode EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc945ab5b skb_checksum_help -EXPORT_SYMBOL vmlinux 0xc9555b00 dquot_transfer +EXPORT_SYMBOL vmlinux 0xc942458b blk_start_plug +EXPORT_SYMBOL vmlinux 0xc94d7b14 lease_modify EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc967566b netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xc96f0f5d simple_open +EXPORT_SYMBOL vmlinux 0xc9653aa9 dst_release +EXPORT_SYMBOL vmlinux 0xc96dfc09 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc972d25d sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc97a1284 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc98297a9 set_posix_acl +EXPORT_SYMBOL vmlinux 0xc98da7db inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xc994fd79 discard_new_inode EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a25f24 devm_memremap -EXPORT_SYMBOL vmlinux 0xc9a9b367 elevator_alloc -EXPORT_SYMBOL vmlinux 0xc9ccd193 blk_rq_map_user EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e0cbdc sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xc9e5dc8a __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc9eb0302 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xc9e3abba noop_fsync +EXPORT_SYMBOL vmlinux 0xc9e84869 sock_recvmsg EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f19cc5 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xca079942 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xca0a1d34 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xca1213f2 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xc9f329d4 ps2_end_command +EXPORT_SYMBOL vmlinux 0xca09d027 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xca1197cb bio_endio +EXPORT_SYMBOL vmlinux 0xca159b45 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca1fd8d6 sync_inodes_sb EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca4288cb flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4409e4 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xca556bad blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xca58c0ba dcb_setapp +EXPORT_SYMBOL vmlinux 0xca5f703b ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca6574c4 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xca79b63a unregister_nls +EXPORT_SYMBOL vmlinux 0xca8a272d simple_recursive_removal EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca940f49 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xca994ab8 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab2963a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xcaa381af blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xcab79cce param_set_copystring +EXPORT_SYMBOL vmlinux 0xcabb951c tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xcace56fb kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad377ef filemap_get_folios -EXPORT_SYMBOL vmlinux 0xcadb7342 neigh_table_init -EXPORT_SYMBOL vmlinux 0xcaec2be9 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xcaeedcbe tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xcad354c1 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xcad713db phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xcad94002 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xcae024dc pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xcae5cb16 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xcaf8a172 submit_bh +EXPORT_SYMBOL vmlinux 0xcafc63f2 max8998_update_reg EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb051e16 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xcb1a92b3 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xcb03a747 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xcb11bdde dev_addr_add +EXPORT_SYMBOL vmlinux 0xcb1728ec of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb410642 freeze_bdev +EXPORT_SYMBOL vmlinux 0xcb6a18a3 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb7e3fea phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xcb969744 is_free_buddy_page -EXPORT_SYMBOL vmlinux 0xcb9b7b65 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xcb9c76ea __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xcb9200cd tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xcbacfaa4 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xcbaddfa3 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc8b4fc config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xcbcf75ef netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xcbcc4a33 inet_accept EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd94b28 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xcbe3fbe0 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xcbe6b372 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc00f50f tcp_check_req -EXPORT_SYMBOL vmlinux 0xcc0ed466 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xcc15223b devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0xcc156ea8 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xcc0ee7e7 dev_change_flags EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc209b07 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc370ddd mdiobus_register_device EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0xcc49426b amba_release_regions +EXPORT_SYMBOL vmlinux 0xcc4ee5a2 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc507bd8 get_user_pages_remote EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc8543e7 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xcc8659b2 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xcc9a5a6c del_gendisk +EXPORT_SYMBOL vmlinux 0xcc64006a mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xcc8fd802 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcce50f39 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xccbfef63 tty_port_open +EXPORT_SYMBOL vmlinux 0xcccf36c2 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xcce90a27 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfba50a skb_vlan_pop EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd1682c7 input_close_device -EXPORT_SYMBOL vmlinux 0xcd176c9c rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xcd0b30b2 sg_miter_start +EXPORT_SYMBOL vmlinux 0xcd229340 folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd517d22 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd5966b4 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xcd6dab86 rproc_alloc -EXPORT_SYMBOL vmlinux 0xcd81fa24 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xcd2fae76 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xcd3bc584 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xcd3bca78 of_root +EXPORT_SYMBOL vmlinux 0xcd549551 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0xcd6cb451 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xcd6e1db7 fwnode_iomap EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd9eb8d5 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xcdb42145 touch_buffer +EXPORT_SYMBOL vmlinux 0xcd8ee574 param_ops_charp +EXPORT_SYMBOL vmlinux 0xcd93f216 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xcd9a8509 input_copy_abs EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcb2e38 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xcdcf709d inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce19ad8c tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xce03e3d4 has_capability +EXPORT_SYMBOL vmlinux 0xce1074de devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xce1640f2 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xce1c376a pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xce22180b sb_min_blocksize EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce54ca56 block_truncate_page EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5f49bb blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xce6bdc05 xp_dma_unmap 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 0xce799921 proc_remove +EXPORT_SYMBOL vmlinux 0xce7eba95 configfs_depend_item EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce81f39f acpi_device_hid -EXPORT_SYMBOL vmlinux 0xcea25e28 bio_put +EXPORT_SYMBOL vmlinux 0xce9fe2e8 simple_transaction_release EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebef80f sunxi_sram_release -EXPORT_SYMBOL vmlinux 0xcec4e24d seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xcec73c23 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xceb90454 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xcec30bd5 init_net EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced58f9c netlink_net_capable -EXPORT_SYMBOL vmlinux 0xceeb1864 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xcedd7693 of_device_unregister +EXPORT_SYMBOL vmlinux 0xceeba46e pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xcef1136b cros_ec_query_all EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf11575c dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xcf27c60c dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xcf165be8 proc_create_data +EXPORT_SYMBOL vmlinux 0xcf1da033 blk_integrity_compare EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2ce306 alloc_pages -EXPORT_SYMBOL vmlinux 0xcf307db7 dev_mc_init -EXPORT_SYMBOL vmlinux 0xcf3a32d4 phy_attach +EXPORT_SYMBOL vmlinux 0xcf37f22b fd_install +EXPORT_SYMBOL vmlinux 0xcf3a7e94 d_tmpfile EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf43ca31 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xcf4f9f83 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5a9e9b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xcf85c7c1 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xcf8c33b9 block_write_full_page -EXPORT_SYMBOL vmlinux 0xcf94668d dqget +EXPORT_SYMBOL vmlinux 0xcf683083 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xcf6ff8c2 node_data +EXPORT_SYMBOL vmlinux 0xcf9905d4 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfbf61f6 of_clk_get -EXPORT_SYMBOL vmlinux 0xcfc22e07 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xcfac0b35 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xcfaec1a7 genphy_resume +EXPORT_SYMBOL vmlinux 0xcfbe2b74 scsi_host_put EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfcf95be md_bitmap_free EXPORT_SYMBOL vmlinux 0xcfd4978f __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xcfd7a62c tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdd6044 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xcfdbd7cd nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xcfeaa97b __dev_get_by_index EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfeccb16 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xd01b4506 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xd02225cb phy_read_mmd -EXPORT_SYMBOL vmlinux 0xd035efda inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xd038c6e9 vlan_for_each -EXPORT_SYMBOL vmlinux 0xd049a066 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xcff8a0b4 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xcfff4960 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xd00c8752 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xd00d3ea5 filp_close +EXPORT_SYMBOL vmlinux 0xd00e2d06 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xd00fd980 add_to_pipe +EXPORT_SYMBOL vmlinux 0xd010cab9 inet_frag_find +EXPORT_SYMBOL vmlinux 0xd049faba xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd052781a inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xd056f091 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xd064d32c neigh_event_ns +EXPORT_SYMBOL vmlinux 0xd05b0447 sb_set_blocksize EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0681f29 eth_header -EXPORT_SYMBOL vmlinux 0xd074c1f8 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd08a1e16 pci_restore_state +EXPORT_SYMBOL vmlinux 0xd087611a jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd09cf25d phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd0997395 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd0a20b93 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd0a51f65 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b773a0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xd0bcd8de keyring_alloc -EXPORT_SYMBOL vmlinux 0xd0bcf0f1 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xd0c0d829 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xd0d91055 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xd111f4e6 bio_chain -EXPORT_SYMBOL vmlinux 0xd112c0b7 has_capability -EXPORT_SYMBOL vmlinux 0xd12f3376 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xd0c53bce nf_getsockopt +EXPORT_SYMBOL vmlinux 0xd0cbeb54 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xd0e69ffc netdev_printk +EXPORT_SYMBOL vmlinux 0xd0f08d79 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd0f4fe49 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xd0f5e7c4 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xd1004273 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd1112295 sock_wake_async +EXPORT_SYMBOL vmlinux 0xd11342df request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xd1184ed4 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xd11990c1 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xd1276bb3 i2c_put_adapter EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1685bba fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xd147e5b0 sock_efree +EXPORT_SYMBOL vmlinux 0xd16aff26 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd16cd4e8 mii_check_media +EXPORT_SYMBOL vmlinux 0xd1926d34 bio_split_to_limits EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19ad662 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xd1ac33cd udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd1a0c9f8 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xd1b6b12b single_release +EXPORT_SYMBOL vmlinux 0xd1ca46ea tso_start +EXPORT_SYMBOL vmlinux 0xd1ce8f34 kmem_cache_free EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1eaa9c8 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xd1f4a71c generic_file_llseek -EXPORT_SYMBOL vmlinux 0xd1fb5286 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd1d93f2e key_unlink EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd209b0ba napi_build_skb -EXPORT_SYMBOL vmlinux 0xd218ee9b phy_detach -EXPORT_SYMBOL vmlinux 0xd2213aad secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xd20677d0 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd215df14 phy_find_first EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22aea98 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xd23855af _dev_err -EXPORT_SYMBOL vmlinux 0xd239c0f3 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xd235032c param_ops_ullong EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd248dbb0 mdio_driver_unregister 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 0xd2707e56 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xd2734643 mdio_device_create -EXPORT_SYMBOL vmlinux 0xd279e0b5 deactivate_super EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27f0516 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xd27f5df0 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28c95f4 security_path_rename -EXPORT_SYMBOL vmlinux 0xd2a3bb66 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xd2a4af66 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xd2bc0d5e mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xd2c98a89 vfs_llseek +EXPORT_SYMBOL vmlinux 0xd282a39d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xd2ca680d task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0xd2caab6e fb_firmware_edid EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2da6b9e path_put EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2ebdbd6 tcp_mmap -EXPORT_SYMBOL vmlinux 0xd2f1524f inode_io_list_del -EXPORT_SYMBOL vmlinux 0xd2fd3f4b dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xd308c541 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xd30a7ae5 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xd2f72a2b inet_bind +EXPORT_SYMBOL vmlinux 0xd30088a3 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd3099e4d fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xd30bb4d9 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd3152dbc mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd3171763 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xd317b9d6 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3352841 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xd335e2d3 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd336737a __register_chrdev -EXPORT_SYMBOL vmlinux 0xd3416eda get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xd350743d input_set_capability +EXPORT_SYMBOL vmlinux 0xd327ed42 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xd34d4099 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd34f03ef md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xd34fc43e inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xd3505ab1 dst_release_immediate EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3550be6 udp_sendmsg EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd360a64d generic_update_time +EXPORT_SYMBOL vmlinux 0xd368afd7 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd370ea6f ptp_clock_register +EXPORT_SYMBOL vmlinux 0xd37246fa netpoll_send_udp EXPORT_SYMBOL vmlinux 0xd378fae9 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd3822368 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xd38e127d rproc_put EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd392d0b0 param_get_long -EXPORT_SYMBOL vmlinux 0xd3dcaffb sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xd3df8b98 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xd3e6313f scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xd3a1aed7 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xd3bc9146 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xd3e57d77 scsi_device_put +EXPORT_SYMBOL vmlinux 0xd4002dce pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd401dbd9 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd409d202 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xd40d9c98 vme_irq_request -EXPORT_SYMBOL vmlinux 0xd41242a7 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0xd4365476 skb_queue_head -EXPORT_SYMBOL vmlinux 0xd447f30a fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xd4484350 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xd44f87a8 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd412c7d9 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0xd458c9c3 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xd4593606 pci_unmap_rom EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4609976 generic_file_open -EXPORT_SYMBOL vmlinux 0xd46d99ec pskb_extract -EXPORT_SYMBOL vmlinux 0xd4736c98 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xd46bc5f4 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xd46d80d0 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xd473e09f blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xd47c5c25 filemap_alloc_folio EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd484118a sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xd48b1799 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xd4847e13 posix_acl_chmod EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4a855cb ip6_xmit +EXPORT_SYMBOL vmlinux 0xd4a98cb3 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd4b23d16 console_stop EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c16465 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xd4cdb99d single_open EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4db762d param_get_ullong -EXPORT_SYMBOL vmlinux 0xd4dd76b5 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xd51caa8e dma_pool_create +EXPORT_SYMBOL vmlinux 0xd4d86c8a acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd51a4d99 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5303866 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xd5346208 truncate_inode_pages EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd5522ef2 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xd596e85b alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xd59ac0ae xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xd53d2d9a generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xd53fb56d tcf_idr_search +EXPORT_SYMBOL vmlinux 0xd5473801 kernel_connect +EXPORT_SYMBOL vmlinux 0xd5604b58 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xd5995dae scsi_rescan_device EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5d4bec8 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0xd5e84bb1 tty_name -EXPORT_SYMBOL vmlinux 0xd5f3171f nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xd5bec481 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xd5e359bf consume_skb +EXPORT_SYMBOL vmlinux 0xd5e42efb scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd5ec9fd9 vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xd5edd4c3 netlink_kernel_release EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd6062e75 vm_mmap +EXPORT_SYMBOL vmlinux 0xd602cada par_io_of_config EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6190871 of_get_next_cpu_node EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd62f4899 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd63da58e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd63e655d mmc_put_card EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd647c15a uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xd647c6b1 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xd652dbdd xfrm_input_resume EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd6794937 drop_nlink -EXPORT_SYMBOL vmlinux 0xd6876911 genphy_read_status +EXPORT_SYMBOL vmlinux 0xd6763e67 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xd676b60f kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd6935810 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xd6956fcd jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xd697bf72 locks_free_lock -EXPORT_SYMBOL vmlinux 0xd69df357 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xd6a5667e pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xd6a848b6 mii_ethtool_gset EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b22cf2 netdev_notice -EXPORT_SYMBOL vmlinux 0xd6baa17b vm_insert_pages -EXPORT_SYMBOL vmlinux 0xd6baefba __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd6c0276d __invalidate_device -EXPORT_SYMBOL vmlinux 0xd6c8084a xfrm_state_free -EXPORT_SYMBOL vmlinux 0xd6d25153 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xd6dd235b devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xd6dfbf6a udp_set_csum EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd6ff4b24 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd6fe65c6 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70dc65c scsi_is_host_device EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat -EXPORT_SYMBOL vmlinux 0xd717b0e6 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xd72454f7 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xd716b398 dquot_alloc EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd739ad1b blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd7395166 init_special_inode EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase -EXPORT_SYMBOL vmlinux 0xd73c0888 of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7620624 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xd7537070 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd78a57de tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xd797da26 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7acb716 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xd7c2806d stop_tty -EXPORT_SYMBOL vmlinux 0xd7ca91af mmc_free_host +EXPORT_SYMBOL vmlinux 0xd7b55897 udp_prot +EXPORT_SYMBOL vmlinux 0xd7cb9bf5 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d3f90f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xd7df58fc scsi_dma_map +EXPORT_SYMBOL vmlinux 0xd7d7e995 pnp_register_driver EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ee19dc uart_register_driver +EXPORT_SYMBOL vmlinux 0xd7f63c7f tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd7ffdbfe devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xd807d5ba input_register_device EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd81642c6 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xd8285cac seq_path EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd833d1a5 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xd8380d48 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd85f0b18 ndisc_ns_create -EXPORT_SYMBOL vmlinux 0xd8867865 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd83fed8a inode_set_flags +EXPORT_SYMBOL vmlinux 0xd84c5d77 fb_set_var +EXPORT_SYMBOL vmlinux 0xd85588d7 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xd878b3f0 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xd87b5c91 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd8961bc4 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ab0132 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xd8b2e1ae pci_pme_capable +EXPORT_SYMBOL vmlinux 0xd8b202da i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8c002a8 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xd8cca730 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xd8d52624 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xd8ddb942 setattr_prepare +EXPORT_SYMBOL vmlinux 0xd8c9f635 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xd8db1b47 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd901b68b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xd8e61e1f scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd8f7492b mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xd8fda1f4 skb_eth_push +EXPORT_SYMBOL vmlinux 0xd90aeeb0 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xd91d83c0 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd925642a __invalidate_device +EXPORT_SYMBOL vmlinux 0xd926edb0 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92f4929 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd94673c4 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94c2988 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xd94f602a of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xd9551c35 amba_request_regions -EXPORT_SYMBOL vmlinux 0xd95fddc2 _dev_notice -EXPORT_SYMBOL vmlinux 0xd97c9db0 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xd9674661 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xd9689326 set_capacity +EXPORT_SYMBOL vmlinux 0xd96f1bea tty_port_close_end EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98d8e50 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xd995889b copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xd99bb9de phy_resume -EXPORT_SYMBOL vmlinux 0xd9a1d26d register_console +EXPORT_SYMBOL vmlinux 0xd98c0ac6 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xd9a349aa __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9b787b9 simple_unlink EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9bcc345 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xd9c5a19e simple_release_fs +EXPORT_SYMBOL vmlinux 0xd9b97b2d eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e7a855 inode_init_owner -EXPORT_SYMBOL vmlinux 0xd9edc3b7 vfs_unlink -EXPORT_SYMBOL vmlinux 0xd9f20c62 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xd9fc8173 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xd9e2c972 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xd9e98178 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xd9f232ef get_unmapped_area +EXPORT_SYMBOL vmlinux 0xd9ffae3d filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda1f2806 key_move -EXPORT_SYMBOL vmlinux 0xda2616cc udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xda28dcaf kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xda1d7387 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xda370a9f pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda41be21 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xda53e6a0 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xda71670f sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xda71c5b3 misc_register -EXPORT_SYMBOL vmlinux 0xda80f5c4 mii_check_link -EXPORT_SYMBOL vmlinux 0xda8d5816 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xda95acff arp_tbl -EXPORT_SYMBOL vmlinux 0xdab9086b kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xdabca9b7 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xda4dce7c seq_open +EXPORT_SYMBOL vmlinux 0xda61f090 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xda637dde fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xda677a28 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xda8dfa6b tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xda9c443c __block_write_begin +EXPORT_SYMBOL vmlinux 0xdaa4a168 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xdac00a6c unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdaddcd6b secpath_set -EXPORT_SYMBOL vmlinux 0xdade2b43 dev_uc_init -EXPORT_SYMBOL vmlinux 0xdae1a1d2 find_inode_rcu -EXPORT_SYMBOL vmlinux 0xdb09d31e seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xdb289094 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xdb2cc6a3 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xdb43f028 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xdb4f75e1 bio_init_clone -EXPORT_SYMBOL vmlinux 0xdb524227 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xdad95753 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xdae16420 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xdb356140 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xdb38705e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xdb60f1b3 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xdb6171e3 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdbb2ee20 netdev_info -EXPORT_SYMBOL vmlinux 0xdbbb5805 bio_copy_data -EXPORT_SYMBOL vmlinux 0xdbbb6632 vfs_link +EXPORT_SYMBOL vmlinux 0xdb77c7e9 vfs_create +EXPORT_SYMBOL vmlinux 0xdb7dcb06 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xdb80101b inet_recvmsg +EXPORT_SYMBOL vmlinux 0xdb9e48e8 try_module_get EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc73800 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xdbcd0838 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xdbcd494c flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xdbce5546 genphy_loopback EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbdc8acc block_write_end +EXPORT_SYMBOL vmlinux 0xdbd7b6a1 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xdbdcc1a8 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe50d59 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xdbf3a22a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xdbfd0a21 mount_subtree -EXPORT_SYMBOL vmlinux 0xdc05f6f1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xdbf35c2a redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc0fc61c phy_get_eee_err EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc210ca4 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xdc207df3 __bh_read_batch EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc353a56 register_netdev EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4b8149 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc628784 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xdc86ef8a module_layout +EXPORT_SYMBOL vmlinux 0xdc5b00b1 scsi_host_get +EXPORT_SYMBOL vmlinux 0xdc659489 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xdc66ba77 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xdc74ff1f netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xdc810d1c genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xdc86f610 load_nls +EXPORT_SYMBOL vmlinux 0xdc929951 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xdca3bed1 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb EXPORT_SYMBOL vmlinux 0xdcb764ad memset EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcbfe6ff mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcdd95d6 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xdce48f18 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xdcffd4a5 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xdcdf3975 udp_ioctl +EXPORT_SYMBOL vmlinux 0xdcefc6d5 __seq_open_private EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd03a41c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xdd0c18ea skb_dump EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd18c51c __phy_resume +EXPORT_SYMBOL vmlinux 0xdd1d5e52 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xdd62004d devm_clk_get -EXPORT_SYMBOL vmlinux 0xdd640674 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xdd52fb2f show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd699058 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xdd66a36c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdd6af9a1 get_tree_single EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd7f691c tcf_classify EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd9e607e param_set_bool +EXPORT_SYMBOL vmlinux 0xdd8ead34 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xdd95dfe4 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xdd9a11c4 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xddaa277f tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xddab1a49 xfrm_register_type EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb83c39 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xddb9df41 tcp_filter -EXPORT_SYMBOL vmlinux 0xddbdd537 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xddc482ba simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xddc486c9 sock_no_accept -EXPORT_SYMBOL vmlinux 0xddd0f1a4 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xddb0b1b3 eth_header_parse +EXPORT_SYMBOL vmlinux 0xddb59838 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xddbd5943 bioset_init +EXPORT_SYMBOL vmlinux 0xddbda5db kernel_sendpage +EXPORT_SYMBOL vmlinux 0xdde4c64e tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0xdde810cc dns_query EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfa55fb iptun_encaps EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde0f730e jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xde1b5bde skb_condense -EXPORT_SYMBOL vmlinux 0xde207237 tcp_poll -EXPORT_SYMBOL vmlinux 0xde2194d9 d_alloc_name +EXPORT_SYMBOL vmlinux 0xddfe5e70 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xde002b25 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xde173990 generic_write_checks_count EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde422a8a uart_add_one_port -EXPORT_SYMBOL vmlinux 0xde4b0053 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xde33e439 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde67419e sg_split -EXPORT_SYMBOL vmlinux 0xde8abf04 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xde9ee78f devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xdec437d8 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xdece44e7 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xde839e72 put_fs_context +EXPORT_SYMBOL vmlinux 0xdec066bc nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef1345d __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xded69b80 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xdede9510 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xdee170bf component_match_add_release +EXPORT_SYMBOL vmlinux 0xdef3bc56 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf002a28 unregister_console -EXPORT_SYMBOL vmlinux 0xdf04b1ed tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0xdf1c8680 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf26844a of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xdf27bcd5 dquot_disable EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf4bb7b2 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xdf36fdbc blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xdf516d9f skb_orphan_partial EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5968a2 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0xdf65cf0b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xdf5e80bf dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xdf6b0818 vfs_setpos EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf826b91 scsi_device_get +EXPORT_SYMBOL vmlinux 0xdf8550b6 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf927ebe inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdfc05092 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xdfa42cce xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xdfbec542 sock_from_file EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd0de73 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xdfea8eec simple_transaction_set +EXPORT_SYMBOL vmlinux 0xdfea9dcf amba_request_regions +EXPORT_SYMBOL vmlinux 0xdfed0fcc inc_node_page_state EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe0078910 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xe00feb85 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xe000cc2b pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe0027bb5 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xe010b6e7 tty_port_close EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe02d256d mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe03ba762 seq_read EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0600b5d scm_detach_fds -EXPORT_SYMBOL vmlinux 0xe0642014 inet_frags_init -EXPORT_SYMBOL vmlinux 0xe06470ae inode_permission -EXPORT_SYMBOL vmlinux 0xe076a87b dev_close -EXPORT_SYMBOL vmlinux 0xe0789265 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0822ccb padata_set_cpumask EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe089cefc flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0a47fa5 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xe0a7271b tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xe09cabcc devm_clk_get_optional EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c5a9b8 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xe0ce4b07 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xe0d21bd8 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xe0dda581 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xe0decbc1 slab_build_skb -EXPORT_SYMBOL vmlinux 0xe0e4d740 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xe105a425 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xe0c0f765 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xe0d14d00 ilookup +EXPORT_SYMBOL vmlinux 0xe0e3482d pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xe10111d4 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe10c08c0 sk_send_sigurg EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1194ec8 blk_mq_alloc_disk_for_queue EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1313908 unlock_buffer 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 0xe14f4f9f get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xe15255b7 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xe154b4ec unload_nls -EXPORT_SYMBOL vmlinux 0xe164b932 generic_write_checks_count -EXPORT_SYMBOL vmlinux 0xe168b6da netdev_warn -EXPORT_SYMBOL vmlinux 0xe16d4574 request_key_rcu -EXPORT_SYMBOL vmlinux 0xe196dcb0 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0xe1a90b30 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xe1cb9b9c of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xe1cd626a tcp_prot -EXPORT_SYMBOL vmlinux 0xe1d4dafd pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe1445b2e of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xe160e46f blk_execute_rq +EXPORT_SYMBOL vmlinux 0xe1936704 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe19d8f10 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe1a22615 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xe1ae8f23 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xe1b1bb3e kill_pgrp +EXPORT_SYMBOL vmlinux 0xe1be52b7 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe212c493 skb_split +EXPORT_SYMBOL vmlinux 0xe1ddd7f0 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xe2149689 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe220f0ae mdio_driver_register -EXPORT_SYMBOL vmlinux 0xe227d5cb rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe229a064 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xe23353da mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xe235c0bc dump_emit -EXPORT_SYMBOL vmlinux 0xe2498b7c generic_update_time -EXPORT_SYMBOL vmlinux 0xe259e35c tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xe266af69 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xe269dcf0 dev_add_offload -EXPORT_SYMBOL vmlinux 0xe2710a1a fs_param_is_string +EXPORT_SYMBOL vmlinux 0xe22b739f generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xe24eda3f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe26e4e65 generic_fadvise +EXPORT_SYMBOL vmlinux 0xe271927f pci_dev_put EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe27d2125 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe27e6d36 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xe2831ea5 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xe28d9748 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xe293103f ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe2a7cc4e gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xe2b8f882 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe2c4eee8 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xe2d2deaf reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xe2ad8be1 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xe2b6def8 amba_driver_register EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d8a763 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xe303fd9c ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xe31ab4ab generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xe324cb22 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xe2f19b26 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xe2fe608b __quota_error +EXPORT_SYMBOL vmlinux 0xe30e2475 md_handle_request +EXPORT_SYMBOL vmlinux 0xe310ba57 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xe318891d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe3223c22 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe330c8f6 param_ops_short -EXPORT_SYMBOL vmlinux 0xe339d487 devm_arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xe36a1506 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xe371cc44 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xe33915e0 dev_addr_del +EXPORT_SYMBOL vmlinux 0xe33f6873 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xe3855e31 mr_table_dump +EXPORT_SYMBOL vmlinux 0xe38a9426 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xe396b232 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xe39968cf framebuffer_alloc EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39b848d netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xe3a34f3e gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xe3a82017 netdev_update_features -EXPORT_SYMBOL vmlinux 0xe3abf208 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3d9e08a pcim_iounmap -EXPORT_SYMBOL vmlinux 0xe3e2d323 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xe3c84362 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xe3e52973 tcp_recvmsg EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff03b7 bpf_map_get EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe407fc99 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe40d327d __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0xe419c8fc iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe4109fe5 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xe41b6ee9 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xe4249b11 dquot_destroy +EXPORT_SYMBOL vmlinux 0xe4298fcb __folio_lock EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe433c28a netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xe442a2e1 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xe444cf8f inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xe45bb965 pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe490c600 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe49bd8af param_get_string +EXPORT_SYMBOL vmlinux 0xe46c1a87 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe488181d trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xe48f5bc5 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4f1567c pid_task -EXPORT_SYMBOL vmlinux 0xe505875a inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xe51c0854 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xe4bf6b43 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xe4f19a17 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xe505933f fb_class +EXPORT_SYMBOL vmlinux 0xe513582c nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe53b8419 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xe541b971 can_nice -EXPORT_SYMBOL vmlinux 0xe558bf2d io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xe562021d kill_pgrp -EXPORT_SYMBOL vmlinux 0xe57c826f tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xe5311278 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xe5386869 param_ops_bint +EXPORT_SYMBOL vmlinux 0xe5428c7b nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe542acb4 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xe5539efa amba_release_regions +EXPORT_SYMBOL vmlinux 0xe5595c91 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xe5666c0e fman_bind EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe583ef50 kobject_get -EXPORT_SYMBOL vmlinux 0xe58c64cc pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a62bdc neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xe5a694e3 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xe5ab5343 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xe5c04618 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe5a759eb input_match_device_id +EXPORT_SYMBOL vmlinux 0xe5a8214e d_delete +EXPORT_SYMBOL vmlinux 0xe5aba099 nd_region_release_lane EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d2ae7f __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xe5dcb500 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xe5dd2900 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xe5dde4bb clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0xe61545e3 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xe62a8cec xp_free -EXPORT_SYMBOL vmlinux 0xe630d4be pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xe638578f sock_no_getname -EXPORT_SYMBOL vmlinux 0xe64a3242 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xe64fd0b2 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe5d1b7a6 md_error +EXPORT_SYMBOL vmlinux 0xe5d389a8 phy_device_free +EXPORT_SYMBOL vmlinux 0xe5d8edc7 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe5e29a6a xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xe5ef3565 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xe5f8d89d xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xe61b7896 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xe623287d of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xe647670e inet_getname EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe6636e95 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xe6687f24 fput -EXPORT_SYMBOL vmlinux 0xe6823fdd bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xe6888ae1 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe65c6f4b sync_blockdev +EXPORT_SYMBOL vmlinux 0xe65d543c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe66fd8a2 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xe674f0ab udp6_csum_init +EXPORT_SYMBOL vmlinux 0xe68c3e34 sock_bindtoindex EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe696593d dcache_dir_open -EXPORT_SYMBOL vmlinux 0xe6b2d0c5 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xe6be34c6 is_subdir +EXPORT_SYMBOL vmlinux 0xe6a15167 set_user_nice +EXPORT_SYMBOL vmlinux 0xe6a93621 mpage_writepages +EXPORT_SYMBOL vmlinux 0xe6aa5148 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6dabf5b sock_alloc_file +EXPORT_SYMBOL vmlinux 0xe6d26f59 inode_update_time +EXPORT_SYMBOL vmlinux 0xe6e48514 dump_emit EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe71dfa8d close_fd_get_file -EXPORT_SYMBOL vmlinux 0xe71ec326 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe71a3c93 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72fe15b bdi_alloc -EXPORT_SYMBOL vmlinux 0xe74474dd flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xe75f0d74 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xe76dbe68 _dev_emerg -EXPORT_SYMBOL vmlinux 0xe777ed8c __f_setown -EXPORT_SYMBOL vmlinux 0xe77d0a3e nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xe7886940 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xe78c77f2 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe731ea2e genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xe73462e2 pps_register_source +EXPORT_SYMBOL vmlinux 0xe751342c bdi_put +EXPORT_SYMBOL vmlinux 0xe754f60c netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xe768e377 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe769cc20 mmc_erase +EXPORT_SYMBOL vmlinux 0xe77b17af dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xe78d48f5 get_task_cred +EXPORT_SYMBOL vmlinux 0xe7985013 mdio_device_create EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a19ddc reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xe7a24aa4 datagram_poll EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7d31571 dquot_drop +EXPORT_SYMBOL vmlinux 0xe7bfedbb scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xe7d4a97f mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d6c50c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xe7e1ab41 devm_memremap +EXPORT_SYMBOL vmlinux 0xe7f9971a alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xe7fa62e2 inet6_release EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds -EXPORT_SYMBOL vmlinux 0xe80c9cbc skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe814a3ec fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe8186f6e sync_file_create -EXPORT_SYMBOL vmlinux 0xe8588dd9 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xe85c5375 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xe82c3eca rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xe837713e pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe8404303 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xe8597bd1 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xe85dd945 acpi_match_device_ids EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe8621f91 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xe8725b78 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xe869f528 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xe8763190 vme_bus_type +EXPORT_SYMBOL vmlinux 0xe8804d83 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xe8902e4f blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xe8affafa netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe8b04e05 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xe8b21d79 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8be2056 is_bad_inode -EXPORT_SYMBOL vmlinux 0xe8d1f98a inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xe8c8f416 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xe8cced20 block_read_full_folio EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8d8893c inet_listen -EXPORT_SYMBOL vmlinux 0xe8fb2fac tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe8f94def jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe8fe6819 f_setown -EXPORT_SYMBOL vmlinux 0xe8fec1fa dqput +EXPORT_SYMBOL vmlinux 0xe900c545 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe9070a62 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe902dd42 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xe90883f5 mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe90dc147 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xe90f54db dquot_commit -EXPORT_SYMBOL vmlinux 0xe910cdfc input_unregister_device +EXPORT_SYMBOL vmlinux 0xe90b7c52 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe90dcefe jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe94efd47 page_mapping +EXPORT_SYMBOL vmlinux 0xe91d2500 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xe93326a5 tty_register_device +EXPORT_SYMBOL vmlinux 0xe94f0f4f md_write_inc EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe963bd2b tty_unlock -EXPORT_SYMBOL vmlinux 0xe9683f38 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xe9791c59 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe9878487 kill_pid -EXPORT_SYMBOL vmlinux 0xe9902fe2 rio_query_mport -EXPORT_SYMBOL vmlinux 0xe9958157 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xe9a4a0f0 from_kprojid +EXPORT_SYMBOL vmlinux 0xe95d6997 kill_block_super +EXPORT_SYMBOL vmlinux 0xe9684276 vm_mmap +EXPORT_SYMBOL vmlinux 0xe98a65d3 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xe9a60988 inet_stream_connect EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9ba7de6 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xe9c63eee proc_set_size +EXPORT_SYMBOL vmlinux 0xe9b1ec46 skb_pull +EXPORT_SYMBOL vmlinux 0xe9c7a2ae kmalloc_trace +EXPORT_SYMBOL vmlinux 0xe9d11f7d tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9e15f84 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xe9e58b75 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f4518e simple_rmdir EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f864b3 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xe9fab29e lookup_one_len EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea02f234 file_ns_capable -EXPORT_SYMBOL vmlinux 0xea0c8321 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0xea1afdaa tty_port_put -EXPORT_SYMBOL vmlinux 0xea1b5eb7 netlink_broadcast EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea1ce768 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xea20a9a6 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xea250316 devm_free_irq +EXPORT_SYMBOL vmlinux 0xea3bc85e path_has_submounts EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3ecc8a fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xea3fc82d vga_get -EXPORT_SYMBOL vmlinux 0xea4de6d4 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xea55008e jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xea596943 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xea67e0b8 vc_resize -EXPORT_SYMBOL vmlinux 0xea68d8a7 input_reset_device +EXPORT_SYMBOL vmlinux 0xea57683c key_revoke EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea84c7a8 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xea91d267 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xea990ad6 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xeaa668ce pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xeaac48d6 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xea7c6210 inet6_bind +EXPORT_SYMBOL vmlinux 0xea7fe694 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xea8363d4 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xea88b7be __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xea994be1 kernel_write +EXPORT_SYMBOL vmlinux 0xeaa2fa68 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabe89ac mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xeac35182 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xeac40a5b param_get_ulong EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae0ebc8 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xeae25712 tty_check_change EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb047f5d inet_ioctl EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb0ec57d devm_clk_get EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb323cc1 nd_device_unregister EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb428afb mmc_get_card EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb571033 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xeb6bd3d6 phy_attach_direct EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb8a3ad8 seq_lseek +EXPORT_SYMBOL vmlinux 0xeb9a1194 d_make_root EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebb00b3c fman_set_port_params -EXPORT_SYMBOL vmlinux 0xebc63fe0 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xebc81e17 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xebd5da11 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xebbb5670 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xebc05442 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xebc4c866 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xebe00fee kobject_add +EXPORT_SYMBOL vmlinux 0xebe613ba qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xebf8966e tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xebfe298e security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xec03f4df mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xec280a8f buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xec08d596 get_user_pages +EXPORT_SYMBOL vmlinux 0xec1168c2 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xec117aec xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xec139ecf scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xec27cc9d mr_fill_mroute EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2c793a eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xec2d9c3a con_is_visible EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec3d97da pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xec413206 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec887c54 bpf_link_get_from_fd -EXPORT_SYMBOL vmlinux 0xec8dde37 iget5_locked -EXPORT_SYMBOL vmlinux 0xec9517a3 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xec757952 inode_insert5 +EXPORT_SYMBOL vmlinux 0xec79c81a jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecabf61c setattr_copy -EXPORT_SYMBOL vmlinux 0xecaea67c fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0xecb9830b icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xece593b1 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xecb6bcc7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xecb6f9eb __inet_hash +EXPORT_SYMBOL vmlinux 0xecd9ea79 param_ops_int EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf9eb3c dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xecfc963b module_refcount EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed0b05d2 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xed123110 noop_qdisc -EXPORT_SYMBOL vmlinux 0xed27f16d vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xed334c14 folio_wait_bit -EXPORT_SYMBOL vmlinux 0xed4f32b4 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xed07b505 pipe_unlock +EXPORT_SYMBOL vmlinux 0xed0ecd69 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xed180c9e mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xed1ffc38 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xed2d6cb4 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xed473170 get_phy_device EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5d6047 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed753e31 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xed6b81c0 generic_writepages EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed9a033d rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xed9aad4a skb_seq_read -EXPORT_SYMBOL vmlinux 0xeda690f1 bio_split -EXPORT_SYMBOL vmlinux 0xeda7cdcc bio_kmalloc -EXPORT_SYMBOL vmlinux 0xedb5221d block_dirty_folio +EXPORT_SYMBOL vmlinux 0xed9fd7cf mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc68135 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xedcbfd93 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xedcd8138 netdev_pick_tx EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xedfc1c98 phy_disconnect -EXPORT_SYMBOL vmlinux 0xee0c1508 sk_error_report +EXPORT_SYMBOL vmlinux 0xede57e6a neigh_update +EXPORT_SYMBOL vmlinux 0xee155a85 mount_subtree +EXPORT_SYMBOL vmlinux 0xee1ba5da simple_empty +EXPORT_SYMBOL vmlinux 0xee1eb3a1 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xee21ad47 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xee2b3963 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xee2cb486 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2e09b7 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xee47a417 pci_release_region -EXPORT_SYMBOL vmlinux 0xee47a4fb input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xee4c12fa poll_initwait -EXPORT_SYMBOL vmlinux 0xee4f314b skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xee58879c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xee325d94 vme_dma_list_free EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6b36e1 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xee6b937b netlink_ack +EXPORT_SYMBOL vmlinux 0xee74063e skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xee75385d devm_ioremap_resource EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7e0e73 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee82d481 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee96c07a phy_free_interrupt EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xee9cb062 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xee9f55ce fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xeea2a1ea security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb41a5e udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xeec25eb1 __sock_create -EXPORT_SYMBOL vmlinux 0xeec7b7a3 generic_read_dir -EXPORT_SYMBOL vmlinux 0xeed50d70 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xeedb132b __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xeeb85f69 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xeeda644a inode_io_list_del +EXPORT_SYMBOL vmlinux 0xeedf6c61 md_bitmap_free EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeee7f01a iterate_dir -EXPORT_SYMBOL vmlinux 0xeefaa0e2 folio_end_private_2 -EXPORT_SYMBOL vmlinux 0xef122841 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0xef1f68ec netif_carrier_on -EXPORT_SYMBOL vmlinux 0xef36150a mdio_device_register -EXPORT_SYMBOL vmlinux 0xef4237bc __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xef4ba021 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xef514931 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xef5e7cf6 proc_remove -EXPORT_SYMBOL vmlinux 0xef7ad86d netdev_features_change +EXPORT_SYMBOL vmlinux 0xef696e76 iget5_locked +EXPORT_SYMBOL vmlinux 0xef6e82fe of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xef733b67 vga_get +EXPORT_SYMBOL vmlinux 0xef7ce749 simple_release_fs +EXPORT_SYMBOL vmlinux 0xef7f9056 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xefa5a37a netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xefa696d7 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xef8f3871 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xef937335 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xef9bea31 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xefa9070d pnp_register_card_driver EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb6bff8 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xefc5dab0 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xefc91a2f netif_skb_features -EXPORT_SYMBOL vmlinux 0xefcd5095 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xefb415f4 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xefc63759 dev_uc_sync 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 0xeff6954a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xeff7cbae mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xeffaf6bd uart_get_baud_rate EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0046d85 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xf0079f5a mr_table_dump -EXPORT_SYMBOL vmlinux 0xf01e6254 tcp_close -EXPORT_SYMBOL vmlinux 0xf0235163 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xf002df26 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xf01189f8 vc_resize +EXPORT_SYMBOL vmlinux 0xf01e4a46 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xf0257a8b netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf0270ab0 phy_suspend EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf04c353b of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xf06e3933 follow_up -EXPORT_SYMBOL vmlinux 0xf06fb0f4 inode_insert5 EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf08e25a9 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf094c8d1 param_get_charp EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a37764 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0xf0ac487c dev_mc_add -EXPORT_SYMBOL vmlinux 0xf0ae832e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xf0a543cb __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xf0a66789 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0bc07b2 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xf0bec07f dquot_commit_info -EXPORT_SYMBOL vmlinux 0xf0ca5f51 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xf0d4c43d dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xf0f3e69a dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xf105effc netlink_unicast -EXPORT_SYMBOL vmlinux 0xf1165e79 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf0b4af63 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xf0b970d5 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xf0c18d8e sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xf0c1fa42 input_set_capability +EXPORT_SYMBOL vmlinux 0xf0c276af deactivate_super +EXPORT_SYMBOL vmlinux 0xf0cf1fa7 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xf0f24e7f pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1354bab dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0xf140bf89 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xf141aa65 of_device_is_available -EXPORT_SYMBOL vmlinux 0xf1433d6a __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xf1576d75 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xf1578d0b mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xf16db4a6 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xf1749a02 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xf182e22a __nd_driver_register +EXPORT_SYMBOL vmlinux 0xf11f8d3b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xf12bcb94 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xf132f179 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xf15ae962 flush_signals +EXPORT_SYMBOL vmlinux 0xf1637614 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf17bb094 padata_do_serial +EXPORT_SYMBOL vmlinux 0xf17c10a1 __ip_dev_find EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf18a316f scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf18eded4 nf_log_packet EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a2d97e dentry_create +EXPORT_SYMBOL vmlinux 0xf19e9040 skb_copy_header +EXPORT_SYMBOL vmlinux 0xf1a387dd ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1b20942 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xf1b8ad2f dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e0ceff mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xf1e1a1ac genphy_soft_reset EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf1f9a043 dev_uc_del -EXPORT_SYMBOL vmlinux 0xf2003509 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xf2028062 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xf2191fdb touch_atime -EXPORT_SYMBOL vmlinux 0xf2304e72 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xf2323af5 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf202fd1f dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf20d0c6c bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xf2290f81 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xf22af02e filemap_check_errors +EXPORT_SYMBOL vmlinux 0xf2395624 seq_pad +EXPORT_SYMBOL vmlinux 0xf23dd464 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24de28f _copy_to_iter -EXPORT_SYMBOL vmlinux 0xf250f260 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xf25a2961 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf27f6f35 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xf2712015 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf27b29bd d_alloc_name +EXPORT_SYMBOL vmlinux 0xf28b9cdc ip_do_fragment EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2910771 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xf2934cb2 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf2948ac9 sget +EXPORT_SYMBOL vmlinux 0xf29c1927 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xf2a27967 free_mdio_bitbang EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0xf2a9ff62 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xf2abfa66 d_exact_alias +EXPORT_SYMBOL vmlinux 0xf2bd6263 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xf2c02549 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf2c138dc to_nd_btt EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f15c69 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xf2eb0998 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf302e75a grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf30509bd jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf3240f6a dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xf313f267 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0xf316b530 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf321195d nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34659e7 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35b674f bd_abort_claiming EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange -EXPORT_SYMBOL vmlinux 0xf367d0ce twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xf362aedb iterate_supers_type +EXPORT_SYMBOL vmlinux 0xf36afb17 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf36d9c11 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37647f8 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xf37a6ec1 eth_header_parse -EXPORT_SYMBOL vmlinux 0xf3882d06 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf370ee46 seq_release_private +EXPORT_SYMBOL vmlinux 0xf37fc8fd fget_raw +EXPORT_SYMBOL vmlinux 0xf381dde8 tcf_classify +EXPORT_SYMBOL vmlinux 0xf38d9f88 vme_register_error_handler 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 0xf3b728e0 mmc_erase -EXPORT_SYMBOL vmlinux 0xf3bac891 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xf3bae56c key_payload_reserve -EXPORT_SYMBOL vmlinux 0xf3c94ca1 of_node_put +EXPORT_SYMBOL vmlinux 0xf3ae446c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xf3c2d382 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xf3cb7899 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xf3d5d7fe mii_nway_restart EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e1b1ea rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xf40827c8 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xf41164b5 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xf4306129 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xf436f63a skb_checksum +EXPORT_SYMBOL vmlinux 0xf401b36b try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf41ed2b0 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xf4232f03 km_state_notify +EXPORT_SYMBOL vmlinux 0xf4240a16 mntget +EXPORT_SYMBOL vmlinux 0xf4387415 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47f79c0 tty_register_driver -EXPORT_SYMBOL vmlinux 0xf4837d32 pci_release_regions -EXPORT_SYMBOL vmlinux 0xf4856f12 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xf48344e3 inet_release +EXPORT_SYMBOL vmlinux 0xf486ec23 msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf499abf9 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xf49b887d load_nls_default -EXPORT_SYMBOL vmlinux 0xf4af2b68 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xf4b0e6e6 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xf49c82c1 thaw_super EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c6d7b3 cfb_fillrect EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4ee2485 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51870e7 inet6_getname -EXPORT_SYMBOL vmlinux 0xf5296c39 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xf53cad97 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xf4f825cd stream_open +EXPORT_SYMBOL vmlinux 0xf4fb7bf4 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xf50732a9 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xf50928b1 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xf50c61d6 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xf525342c wireless_send_event +EXPORT_SYMBOL vmlinux 0xf5377760 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xf53b832d request_firmware_nowait EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5474a47 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xf54d99e4 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xf55c25c3 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xf57d7f07 simple_write_begin -EXPORT_SYMBOL vmlinux 0xf58f7392 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xf59132b5 put_fs_context +EXPORT_SYMBOL vmlinux 0xf54c755c xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xf558f698 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf56019ef bdi_unregister +EXPORT_SYMBOL vmlinux 0xf56909c4 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xf573eb2d fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xf593aab5 setup_new_exec +EXPORT_SYMBOL vmlinux 0xf5998dfb tcp_prot EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5c24538 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xf5c62177 sock_set_priority -EXPORT_SYMBOL vmlinux 0xf5c9efac uart_register_driver -EXPORT_SYMBOL vmlinux 0xf5ce207b proc_set_user -EXPORT_SYMBOL vmlinux 0xf5dfddc0 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf5bdb607 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xf5d4324a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xf5e07cf4 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xf5e3719e __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf5e61619 block_invalidate_folio EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5ee68a4 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xf5fd189c dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xf600f6e9 inet6_protos -EXPORT_SYMBOL vmlinux 0xf6072272 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xf61d92a8 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xf62b2a99 sk_free +EXPORT_SYMBOL vmlinux 0xf5f52846 skb_split +EXPORT_SYMBOL vmlinux 0xf6001415 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf61c2cdd dev_load +EXPORT_SYMBOL vmlinux 0xf621fdb6 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xf627669d always_delete_dentry EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf6390938 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf63e47aa pci_save_state EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6575ef7 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xf660554e dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xf6620ebb generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf6477cc5 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf64be095 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xf65ff983 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6699265 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xf67ba716 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf677814d blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf699fe0b n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xf69f3211 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0xf6861389 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xf6b3747b blackhole_netdev +EXPORT_SYMBOL vmlinux 0xf6b762cb pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf6cd2678 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf6e6db8d xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xf6ded2f6 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f1203b jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6ff39cd dump_page -EXPORT_SYMBOL vmlinux 0xf72f41f0 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xf731b1dc pci_get_slot -EXPORT_SYMBOL vmlinux 0xf7326228 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xf7355d58 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf70b2e98 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xf71a718a flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xf7216d75 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf7341adc pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73b803e generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xf74d72f6 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xf7554fa2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf7493a40 param_ops_byte +EXPORT_SYMBOL vmlinux 0xf74f58fb __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf77c9cb0 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf79e7df6 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xf79f5f7a netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xf7b7a06e cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xf7bcb68f param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xf7c385cb truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf79b953f netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xf7c1b120 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e926cb of_get_next_child EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7edd771 sg_miter_skip EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7fe0362 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf82fc247 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xf830a044 __find_get_block +EXPORT_SYMBOL vmlinux 0xf84b1a39 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf85d1491 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xf860765b pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xf86d81c9 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf84f623c sync_file_create +EXPORT_SYMBOL vmlinux 0xf86591b8 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable -EXPORT_SYMBOL vmlinux 0xf8834a46 passthru_features_check -EXPORT_SYMBOL vmlinux 0xf884ade6 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xf88c5839 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xf8ae7d66 put_disk -EXPORT_SYMBOL vmlinux 0xf8cdd57e bmap +EXPORT_SYMBOL vmlinux 0xf8767cef dquot_quota_off +EXPORT_SYMBOL vmlinux 0xf88ef830 scsi_add_device +EXPORT_SYMBOL vmlinux 0xf89b02d3 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xf8aa263b page_mapping EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8ea1caa mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xf8d8ae59 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xf8e60a34 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xf8f17368 kmalloc_caches EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f65f6a device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xf919d88d pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xf919dbcf mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf90e7048 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xf90fa2ff mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf912ac4e xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf920fe0b dst_release -EXPORT_SYMBOL vmlinux 0xf92437d7 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xf9253428 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xf92bfe64 phy_start_cable_test EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xf938409e fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xf9385fdb blk_sync_queue EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93ac4f1 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94e339a seq_bprintf +EXPORT_SYMBOL vmlinux 0xf95947a0 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf9638fc2 sk_error_report EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf972d358 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xf976fcaa fget -EXPORT_SYMBOL vmlinux 0xf9795818 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xf982b643 inode_to_bdi -EXPORT_SYMBOL vmlinux 0xf98926ff flush_signals -EXPORT_SYMBOL vmlinux 0xf994dbf3 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xf99cef85 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9ac3f05 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xf9b0077a __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xf9bc7dc8 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xf9bccbb5 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xf9bdd594 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d9981b submit_bio -EXPORT_SYMBOL vmlinux 0xf9e8fa2e __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xf9e967b9 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xf9f02a1f udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xf9f8e20c drop_super -EXPORT_SYMBOL vmlinux 0xf9faa7a3 tty_do_resize -EXPORT_SYMBOL vmlinux 0xf9fba803 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xf9fedb52 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xf9df77a4 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf9ef1eea i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa118c34 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xfa1abfaa fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xfa258acc xfrm_parse_spi EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa30d7c2 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xfa40db22 wireless_send_event +EXPORT_SYMBOL vmlinux 0xfa33e405 inet_select_addr +EXPORT_SYMBOL vmlinux 0xfa39e0c6 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xfa42055a stop_tty +EXPORT_SYMBOL vmlinux 0xfa43a64d dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa55eb4d dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xfa5885ec security_path_mknod EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa638f3b phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xfa76980a mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xfa7e31af twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xfa859f60 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xfa9239e6 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xfa98933f dst_release_immediate -EXPORT_SYMBOL vmlinux 0xfa9ed4cb get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xfa7295c8 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xfa7bd4c1 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xfaa4e992 md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfabfa87b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xfaaa8adf dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xfab35b18 qdisc_put +EXPORT_SYMBOL vmlinux 0xfac3f8ed kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfad6afd5 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xfad9d1ff sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xfada288b register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xfaf506e0 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xfb2d75b2 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xfad0d384 registered_fb +EXPORT_SYMBOL vmlinux 0xfae3c316 logfc +EXPORT_SYMBOL vmlinux 0xfb22d489 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfb28bbc8 genl_notify EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb41c435 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xfb47bfd3 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xfb4af6a0 fs_bio_set +EXPORT_SYMBOL vmlinux 0xfb53f554 input_event +EXPORT_SYMBOL vmlinux 0xfb63fb64 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xfb67e202 register_filesystem EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb717fa8 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xfb8a8739 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xfb935ea6 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfb9af782 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xfb6e1fe2 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xfb745583 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xfb98d1c9 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xfba559c5 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfba8aaa0 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb5034c uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xfbb67e3a eth_header_cache EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbc18a30 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbdd4467 udp_seq_next 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 0xfbeadcbc blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xfbffbbb8 of_device_get_match_data EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc3949de pci_dev_driver +EXPORT_SYMBOL vmlinux 0xfc351bf0 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc4b5dc4 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0xfc4cc6e7 current_in_userns -EXPORT_SYMBOL vmlinux 0xfc4d2767 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xfc6b0f08 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xfc6fa672 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xfc74971e max8925_reg_read -EXPORT_SYMBOL vmlinux 0xfc76e788 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xfc804355 __breadahead +EXPORT_SYMBOL vmlinux 0xfc868644 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc88b627 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xfc8d0aa6 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xfc95481e devm_memunmap EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcc023d2 get_inode_acl -EXPORT_SYMBOL vmlinux 0xfcc3cb5e clear_nlink -EXPORT_SYMBOL vmlinux 0xfccbaee8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xfca3cdad padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xfcab8259 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xfcad3f2e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xfcb10385 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce94a2e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xfcdc9f5d vfs_unlink +EXPORT_SYMBOL vmlinux 0xfce7bd3b phy_error EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcece345 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xfcfc0714 vfs_tmpfile_open -EXPORT_SYMBOL vmlinux 0xfd04a15d flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xfd17e6a2 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xfd31f98f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xfd380101 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xfd3d9e9b unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xfcfd85d5 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xfd07e8a4 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xfd097361 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xfd0a0f5a alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xfd1a4b44 dst_destroy +EXPORT_SYMBOL vmlinux 0xfd3932d4 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xfd53db16 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfd7372c3 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xfd7609dc fb_set_cmap -EXPORT_SYMBOL vmlinux 0xfd968d1a __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xfda9632e rproc_add +EXPORT_SYMBOL vmlinux 0xfdaf7e67 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfde5fdaf md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xfdd14b12 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xfdf51ba1 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xfdff2066 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe045da6 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xfe059018 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xfe0efce0 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xfe1c8dd7 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xfe1b488b writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfe1c2a11 generic_ro_fops EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe2c9ce9 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xfe4197b7 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xfe4329d9 dma_fence_describe -EXPORT_SYMBOL vmlinux 0xfe438310 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xfe484af5 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xfe216af8 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xfe351e42 sock_pfree +EXPORT_SYMBOL vmlinux 0xfe45c966 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe606559 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0xfe6ccd1d sockopt_release_sock -EXPORT_SYMBOL vmlinux 0xfe87dc2b skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xfe8abb46 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xfe6253a2 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xfe742488 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xfe84e4ff seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe8f70eb vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe944868 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xfe980e88 vmap +EXPORT_SYMBOL vmlinux 0xfe99917c generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea856b4 param_ops_hexint -EXPORT_SYMBOL vmlinux 0xfeb4b3de ppp_channel_index -EXPORT_SYMBOL vmlinux 0xfedabd15 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xfeb354bd of_get_next_parent +EXPORT_SYMBOL vmlinux 0xfec3e5f1 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xfed3d48b backlight_device_register EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee9fb89 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeecd0a0 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff1d2537 iov_iter_init +EXPORT_SYMBOL vmlinux 0xff0a7e25 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xff14e507 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xff1e04c1 __brelse EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff5520be backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xff4e9f4a xudma_get_device +EXPORT_SYMBOL vmlinux 0xff5bd891 dquot_resume +EXPORT_SYMBOL vmlinux 0xff67aa96 vme_lm_request EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7a49b5 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xff7b6625 dquot_initialize +EXPORT_SYMBOL vmlinux 0xff7baaeb fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff90a56d blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xffa13ab2 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xffb19765 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xffb1ff67 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xff880f89 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xffaf47c3 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc537ba page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xffc76726 icmp6_send EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd0741d cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xffdc6613 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xffe13c37 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xffe90c70 sock_pfree +EXPORT_SYMBOL vmlinux 0xffd736c8 pci_dev_get +EXPORT_SYMBOL vmlinux 0xffd7bfd9 do_SAK +EXPORT_SYMBOL vmlinux 0xffdeca26 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL crypto/af_alg 0x27cb97c3 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x4ffedaf4 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x6968abe9 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x6e19bba7 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x8a345709 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x911c531c af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x966939e9 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xa007257e af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa0131757 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xa99b2688 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xb2d84fcb af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xb9afc695 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbc51e76a af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xbdf8d464 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xd23bf5fe af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd981996f af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xea64a449 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xfa439649 af_alg_accept -EXPORT_SYMBOL_GPL crypto/aria_generic 0x09e64a82 aria_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ff31634 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x1262198c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x2c26dd19 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x30189c70 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x430ba142 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x49d87db1 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5d65bf92 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x715d6795 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x797bf5a1 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa0dc4ef6 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xa0dd940e af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xb19f0f69 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xc09e1e95 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xd5cbc692 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd8a300f2 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xdef3ca0d af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xe1e9b853 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf363d0fd af_alg_accept +EXPORT_SYMBOL_GPL crypto/aria_generic 0x2582014d 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 0x15f8ec99 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x073993e2 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xac7f7339 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3eddb546 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd9ec0e76 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3ca5b0a1 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x732e9c7b async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa9339c38 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc11193aa async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1f808e46 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x775d66ca async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xba4f28cb async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd2439567 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1823ef4c async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7de297d4 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xabc0bb69 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x210e4e89 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb0132062 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6e9c6ae0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9a8a50b3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb3269604 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xedb4c451 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6160359e async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8a88399c async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x952056df async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xea975ab5 async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x81bcc14e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x173d835d blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x07c570c0 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x52dd4e0f cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x39369b1c 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 0xe30c19b1 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 0x1a70aa4c cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x1cb00fbd cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x1d021542 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x39ca9ecd cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4a8eef6a cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x6ec9ebc6 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x777a718d cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x811b6dbe cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x93895394 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x9f26d719 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xd955c042 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf5805060 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xff9a2252 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00b1c437 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x16f4fe74 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c2fdd45 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x34788d45 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c216832 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4598df50 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x75adb0e7 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x96142db1 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9b346944 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaee1f9f4 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb35133a6 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc2a5031f crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd565d349 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6473171 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1ef19a4 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x17a5a493 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x36c17a95 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x3976cc73 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x40767370 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x523c390d cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8c2bc659 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9fa4aa54 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb615fe60 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb9c348d1 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6356ea7 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd8c13ace cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe43de14a cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf473a46f cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1121c038 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x21bfca30 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39b77bf4 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ee6dbd2 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6feff476 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x78961383 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x90b74243 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95abfaf2 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9c934151 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa92d345f crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcaa574f4 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcf4481bb crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde96b22f crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe8e97fff crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf834a83a crypto_transfer_kpp_request_to_engine 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 0x9276355a 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 0xe661a328 serpent_setkey 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 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xf366a793 twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x05ab52ea synth_current +EXPORT_SYMBOL_GPL crypto/twofish_common 0xec8f49b5 twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x03411a50 spk_synth_get_index EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x381d629e synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x21f89d7d spk_var_show EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41dc7acb spk_do_catch_up_unicode 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 0x4616c136 synth_current EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4965335d spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4dd9ad56 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5510d006 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x56f0389c spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6099dfe5 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ad8807e spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x544a974e spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x60a435c8 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x65577f51 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x66f52c5b spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6f926b11 synth_remove EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x81d0e5ae spk_do_catch_up 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 0x99f79598 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9d2c0418 spk_synth_is_alive_nop 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 0xbaf6af25 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb9c765ec spk_do_catch_up_unicode EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbd9d5350 spk_ttyio_synth_immediate 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 0xc76cf8c6 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xce1e4605 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 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe53494e4 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xea271af7 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xea41352f spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xed68fbd1 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3aa3fbc2 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3e14f681 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe38724f5 spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x480900fa acpi_nfit_init EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5578b910 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6f439854 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa25900ad __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4b003887 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x56eea4d3 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x92199a09 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf5250274 __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_platform 0x538fc0c7 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x621026e8 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x96827c31 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xcdbf6480 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 @@ -12334,190 +12334,192 @@ 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 0x55d7e05c linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xb616a363 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3e7c3257 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x42952199 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x54cea294 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x33887e05 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xdb5a9ff8 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe84e53aa __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x29b54984 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xfb2555e7 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x19d1187a __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3ce22361 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x442a9d12 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5b04c4a6 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x219dfb62 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xbc8045ed __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x115856a8 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4dca2a54 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9af19948 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xed4b61e3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8770d28c __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xde5580b1 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x04ddc8dd bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b1b951b bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2419de43 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x28be0ad5 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c15765a bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x42c3f3c2 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48e87b8f bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54dfe412 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62e3761e bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a97edc5 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d210e96 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7edd00fd bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d3a26ac bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cb54725 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb90ade03 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbaac4517 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc57a5077 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc84d1c5d bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe1bc6ba1 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe499d095 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7b26e7c bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xebdbc40e bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4203be8 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf62beb79 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x37a16248 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x585964c1 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7368bc34 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8cc7f50a btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x933093e2 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa681cd2b btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xae3e4d34 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf9281725 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x06fd7bd3 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x09d683ba btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c686b46 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0cdbbfc4 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37e5c5fa btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x43047450 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x698b78e5 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7359a6bd btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ed78394 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9aa4b8dd btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb2d820be btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb5395321 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb5555d6b btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc2efd8d6 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc5d4f0cd btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe02581ce btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe1ab9c73 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41db67ad btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54f905c2 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5993a0ec btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5c17facb btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7104b585 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8410cfc0 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a0dcad7 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8ebfc4e btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb92f6b40 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc3d5240 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xef8a0a91 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x69a143bf btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xde7b1690 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xdf6d5735 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x014e674e qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7231a936 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9c30dd99 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe105549b qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf7d499bb qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x401c0af7 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x612408f5 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x87c5296c btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8d19f54d btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8f9a9a68 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x36a0afdc linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x6dd8dcae linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x2d0e8f77 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3558a8af __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x5e211255 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x68b3ac5e __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x200e054e __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xb5406722 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xae0fb61d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xf0c386fb __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x1327f6d6 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2fc4e913 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x376a1e98 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x98d30089 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0b238a70 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xaabcb6df __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x838d554c __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbb76bb12 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbda14454 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf91078f5 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x923b7089 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbaad5a7a __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x00e3dbe8 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x076763b1 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x08ae5114 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09f78988 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1947cae8 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d0a8a42 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30b9e705 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31e785d6 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37fb0438 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a45dda9 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f6ec6e6 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x714be7ae bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x74b5e317 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x76a62448 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x78fff581 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x804b5452 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9edddcdb bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf1a1b31 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc573d39d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9ce014b bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda73066b bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb92b6c8 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xddfa6991 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf114f2d6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0da3e69c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0fa9b4e6 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1ce00e29 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x77e6fab1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8d2f509c btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xba1913e2 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcca159e1 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf7ab930b btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x39cd84f7 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x44547d6b btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x46b9c09a btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5349e15b btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x551e89eb btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c381ff3 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8a0cfe76 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8af9cf87 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e6bd1a6 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa8e2e484 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9588139 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd002ef02 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd5414d07 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd644ddcc btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed716094 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf71a3f1c btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8c55e6e btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2ef2c354 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x31a8c137 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4e821b89 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77e6cdb2 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8585a126 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa38a3b27 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaacd6d54 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbaf9cbeb btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc8fb91ef btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd58c36f2 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf75edd9f btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x12a7cca6 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x5d545b88 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x88c30d87 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0973b8de qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5598aba5 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7b8b7ec7 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcb51dce6 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xffcd4b1e qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x09f25bfd btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x29a042eb btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x84b25c38 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x92cdcad6 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa1a72cc9 btrtl_setup_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd969ecc8 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0f2b502d h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3568b444 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x39ab7818 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xeb7046ad hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x29aa61c7 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2a09e587 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x616889ed mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x712eed87 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8658cee1 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9b7f2336 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc040460a mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xec5b23f1 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09293ccc mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x247891ef mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x289a9d24 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x28eabcf9 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d41ef40 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x342c0296 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3c64e19d mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44284bed mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x477ac59b mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5adcfd7a mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e12e6fb mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61720793 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ff0850b mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x74cd61e2 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76d5a2ab mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x78c6098c mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b5562ce mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83975966 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa0424264 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa73d0f2f __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb40a016e mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbdd9cbb3 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0beb6e1 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc226b7e2 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc46b2388 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc56a8a80 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd1b2c6f1 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd94ca5dd mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdc395346 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe63719f3 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf3a75919 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x89fa0d78 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9b19a3d9 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xbc3285ae moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd47257e3 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8cf01c5b sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xfdcf420e __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4ed2f627 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa1bc62fe meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xb8a9a1b8 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xebe56521 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbedd5173 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0807cd43 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0965e12d hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x727b840b hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf87b1be1 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0a4172ae mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1cc35f52 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5e1261dd mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa14ca48b mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xaea90c23 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xbd3ebfa6 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdc7f9ada mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe232062d mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x06fb675a mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0e411559 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1134ea5e mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1215cccb mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1374d9f3 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1bcced89 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x23ce638c mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4c3039ec mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5743fbf5 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x587f8243 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e6ab62a mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x67c8c1bc mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7256fcd1 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8e8caf69 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xae7a3845 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb192b261 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb60bf292 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbfd64c6b mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc17988e1 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc3c6168d mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xca56635b mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcd3b9ba0 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd02a9909 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd120b217 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde1611f2 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdef4bf8f mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe37dfe04 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe631699f mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xed56ef5e mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xefc9863d mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfef4cc66 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x03f69df5 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6d847a31 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf1238981 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf8270e74 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x2e323baf __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x4901dba3 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x1a4ac0bd meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x26f0d58f meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xfcbd0229 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xad84d6d7 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 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 0x10130b21 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0fb17b27 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x11c09e22 devm_clk_register_regmap 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 0x233e5373 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x247e1ab3 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28ec912b clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2aed7c9b qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x36c735a2 clk_enable_regmap 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 0x3e946df0 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3f241869 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x407cd4e2 clk_zonda_pll_configure 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 0x4563359f clk_disable_regmap 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 0x48f25103 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4987b989 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5217eb68 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5524687f clk_trion_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5919d5f8 clk_disable_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 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67b1b450 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 @@ -12525,40 +12527,37 @@ 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 0x7af758c8 qcom_cc_really_probe 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 0x809a094e gdsc_gx_do_nothing_enable 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 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 0x94ef2db3 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 0x9b699a6b clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c1fb4be clk_rivian_evo_pll_configure 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 0xa95ed447 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaba920e4 qcom_find_src_index 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 0xb2793a78 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb424085e qcom_find_cfg_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb854831b gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops 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 0xc7ef9b24 qcom_cc_register_sleep_clk 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 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 0xe04400b3 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe40a1db3 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops @@ -12566,122 +12565,123 @@ 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 0xf84b8d59 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf981c3e3 qcom_cc_probe 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 0x0268c5d1 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x11a0d7f4 sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2daff1b3 sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x32f41831 sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x7e4dcc87 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x87534930 sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8fd778bb sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x92ddf949 sprd_div_helper_round_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x944a9aa7 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x96559702 sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb7e0ba80 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc494f8b8 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc6f9400f sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeb2e28e9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x054035ae comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x071df2d3 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x071df481 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x183a919a sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x227afa5d sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x347b11e0 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x39c67dcb sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4dc5e16d sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x55497324 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5cece9ea sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5dcd42af sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x68e67b7c sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8b907c0a sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa4fee866 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xd75238cd sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xd8f6ce4e sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe0106577 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x006207ad comedi_set_hw_dev EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f490eb8 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x17e95f63 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f4bf19d __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x17ff84a7 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1c7a3162 comedi_dev_put EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2344889f comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ee4c32d comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d3d554a comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x300b971f comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x371bbbed comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48f81787 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x429a1d73 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e87d668 comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x613ca414 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61f39398 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x642ebb3f comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65323987 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65494eaa comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65a1c9b0 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68e22e71 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6c05fddb comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7545bc64 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72f2c5ed comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x73a7399c comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7f8386ba comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83291c78 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83f59b5a comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x89a081f1 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xab5030ab comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xacf143b3 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xadb45d3a comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf793c34 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8513942b comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88e0e5c1 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88f59fb7 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a50c4f5 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8aed0213 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8bd8e138 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f533453 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x92448a7f comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x957043a8 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x98f0953e comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b2310ac comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9c771f77 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa6b0fdea comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaa386b4d comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xad9939ce comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae3a2ab7 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb17b6401 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3b74550 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5af4f1b comedi_buf_read_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8e8b022 comedi_load_firmware 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 0xbfb5f614 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc940b672 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd1658aae comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd23b126a comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd595d2c2 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcf447e62 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcfab9fe5 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9c2f093 comedi_timeout EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcbcbcce comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8b76b57 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xea5a93fb comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xebe234e3 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf30b2b35 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x24df4a0a comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x41094519 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x591f60f6 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x722bf160 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x87064918 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x927d373d comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xce6c48bd comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xffbcb157 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0754f497 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x108e0929 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3643e6ea comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4c1d6859 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5521a01b comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7ebd57be comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x61f1e66b addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe362c0bd comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf18168aa comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfe7da76f comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x252c275b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6a5d105b comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6fa1baf6 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa26ca70b comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb785a5d4 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe71b651e comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf86cadaa comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfd09c7e4 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x193d0eb2 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5c7e4bf8 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6135bbaf comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xaa2cf8b4 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf032e674 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf6a7870d comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x37010f5f addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xb06b71fa amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xd188b41a amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xaa44f075 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0d1ac683 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2a96efec comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x34cc080c comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x35578406 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x366eadb9 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5f35645a comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x749f2c10 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x83f73e52 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x86dffb5f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa0689060 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb84391ff comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf4a3fe1c comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf9405d51 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1bf24fbf subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x69a88cb6 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x75a830d0 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1f2392de das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x167de427 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b853b0e mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2bbc8b24 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e892bd9 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x349287a1 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x44904a7f mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x455f8765 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4e5deea9 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c4f7b25 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x71514ddc mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a1cc224 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9d4a0ff8 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xba4d0853 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdc6e4a93 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdfe19446 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf94a425f mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x2e67325d labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xb4d9622e labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x95fb7247 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xb6a6bbdf amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x78052202 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2d2abc04 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x35aeb9bf comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x37e75ed3 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x415b22e0 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x559635d8 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x58077b98 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x62dc5a7a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa63408c9 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbb14b269 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xca3f1985 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd42fec82 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfcec16ad comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xff4784e2 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x00891b0a subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1e5a2da4 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5f82f735 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xe40f23ba das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x09a6ec5e mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0e70ec6a mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3664d385 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3934555f mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x430c7841 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x458fc7de mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x505bab5e mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x572c95d9 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x59e0c106 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x64bcbc70 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6f18a010 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8f5b7c2f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb53834a3 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc5ffb7ef mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcecc5619 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xeb3ce57d mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x5996131a labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc806a057 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 @@ -12692,310 +12692,312 @@ 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 0x154f4f39 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x162dec15 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1b604c5c ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x20a1cf5a ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x272b59e0 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2d624130 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4f268cf0 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5dfa6a74 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5f71e0b9 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6a291ab8 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x74212797 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x79993f10 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x84d57324 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x91344ea5 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccd584bd ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd3727a1c ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x20798d80 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2c0ef736 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3cbdedd3 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4d09777c ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9e5ab844 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd57a18ab ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3e20fff6 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x515a85e1 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa5ed4e1a comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xba2e45d6 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbdb192d7 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xeb7ba437 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xee556cc4 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x034f4ac1 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x05d52722 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x26a8a1d9 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x412c4018 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4498bbbc ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x49818df1 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x57f858b3 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6c4e309c ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8974f44f ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9ea421c7 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa47abb8a ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc0153bcb ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcabf3050 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xce88c612 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdfdda142 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xff925944 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x263fd7c7 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4beebc48 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5ca5c9f9 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x92917092 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdd1d4748 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfffbe7d7 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3cb663d5 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3efd18c9 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4708822a comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6f568b29 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa3ec9051 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb3f4b85b comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc7f0abbd comedi_find_subdevice_by_type 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 0xb25cb9bd ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x01f615ff hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x072fdc08 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0ac5280a hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0c0ab525 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x227dc634 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x26069078 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2920810e hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2b40c64c hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2c4f10dd hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x332f2613 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3be41d9d hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4227b782 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x43760486 hisi_qm_acc_diff_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x452e56f4 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4bc268df hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x58714d9f hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5918fc13 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59c281ce hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5ed901a6 hisi_qm_get_hw_info -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x60dd3831 hisi_qm_regs_debugfs_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x674e7f64 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6960532b hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6a27d59a hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6b44825d hisi_qm_mb -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x76b525ca hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c662ad9 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8e158948 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8f32ebc0 hisi_qm_wait_mb_ready -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9875e9ac hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa62b3cf3 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xba0982cb hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbacd58b1 hisi_qm_regs_debugfs_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca0bff84 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca68e0d5 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca8f3d84 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdaef3662 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xddb35dee hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf5ea00c hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe7dcc45d hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xef50c937 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfb87acb1 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x22ecde96 hisi_hpre_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x2dc2653a hisi_sec_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x3441e4b2 hisi_zip_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x1b4b5dd6 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xbd00fcfc ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x004a482b hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0500e48a hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07b3f2e2 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1c08bb6b hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1cbd924b hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2395e341 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x25503e31 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x301031b6 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x30944e10 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x397bb48e hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3fd8d8d1 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x420a46eb hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4b919fca hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59c9ba82 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6650e729 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x69adae82 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6bcc9896 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x75c05441 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c45fa09 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x85d6cf96 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9a289dc9 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9ddbfda2 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa718a5f3 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xabc819a5 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaf34dec5 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb521d060 hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb6963e15 hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbb40f1a9 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbb5fed4b hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc079e2c9 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd2800cfd hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd7935ed6 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd84099cb hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe1557eec hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe1d13b8e hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe32dbf76 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xecb40a4c hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xecb8a458 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf1dbba81 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf3875919 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf6c72f2e hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0xcc5f374f hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x948fad53 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x89c911b0 hisi_zip_get_pf_driver EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x03b63f91 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x08d356c3 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x15b442e7 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x175f580c adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17d563b7 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17f3d806 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x18a36006 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b24cbae adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x7cf1e5b5 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x024c52da adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x08e2c7a1 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c27864b adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0dcf225e adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e58c244 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10a75a2b adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10e9b223 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x117a3b3b adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12540dcf adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1387776c adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b2fdd7a adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24f36599 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2505d588 adf_vf2pf_notify_shutdown 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 0x2df85cb2 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x344afe4e adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x346f512c adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a0e3f8a adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33ce81ae adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34130669 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34a122a7 adf_send_admin_init 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 0x3fdff75c adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4bffdd11 adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4dd322cf adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f924a49 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ff8b72f adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63c92ced adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69109d87 adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69f9f6fa adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7765d946 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7af77d31 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ef0a108 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f3d9942 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8084c7c5 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8142a870 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8237b88c adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84c5f045 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87aa7b21 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8fbc88cf adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91f37d79 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x922d512b adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x92f9c576 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9761c9ab adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c5ca91e adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa8e43bac adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad78405f adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb06a8e9f adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb27e1752 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb2f287ad adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb5e04f79 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe76378f adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe8df40a adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc15a1852 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x43146263 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4735052e adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x47ba06a3 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x47d16e88 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48bbd6b5 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4b1797ea adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x598ed25b adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ab60b9e adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d2983fa adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62d617a8 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x696eb3a7 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6beba822 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7872d381 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x788e20f8 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7a1d92fe adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7aa661d4 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8c5230eb adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8c585d9d adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x92ca2ba6 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa272362e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4a50972 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa5227abc adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa8dc9957 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa00c66a adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaab58456 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xabad6665 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1381075 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb92923c7 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbbc100e2 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbbf9c495 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc592d8c adf_gen4_set_ssm_wdtimer 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 0xc5a79fe4 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc746699f adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc797d75d adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb40b2be adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb83311c adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc518d98d adf_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 0xcec94805 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce7c85f9 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd35d39a1 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd534a359 adf_gen4_handle_pm_interrupt 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 0xdc00df6b adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd30a874 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xddd6c53a adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe1830c0c adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd859c1b8 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd924ac76 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdbfe7aa8 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xde7552fb adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe080320e adf_dev_init 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 0xe8354e4f adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xef9a6b99 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf401247f adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6f7f900 adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf81f7e5b adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf8783b8e adf_dev_init -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x8950e5f2 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4b058600 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc6f152ff dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x185246c6 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2c673edc do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x51bd7b9a dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x760c1279 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa6ca7ebc dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa9aa9ab7 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc92b8b4a dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf1d1a8cf dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf9694bf1 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x194b9247 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x321c755d dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x357b25f8 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x78fff08b dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0b20f90 dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0ce351c dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xce42b1ab dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd6643380 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd9b8d797 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf804def3 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0bbe59e8 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c8f1a1d fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c9d08df fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x18e32155 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4993450c fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4efb8df8 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4f6cf044 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x52109f19 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5dad73a1 fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6647149b fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x891d0bcf fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x96ac4f8f fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9a38df62 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb270f85e fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbb611ad4 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbc804dc8 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xffb95551 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1a1aa60b hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xaba87e28 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4ff6299 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xed41bb8a adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xed63a584 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1625df0 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6f8aa6f adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfe1ed3f2 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xff9bbc18 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x001b246a dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xf025b18a dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x222a39a1 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x64f21bd0 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x96c189f0 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9adae233 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xac987033 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xad5eec94 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc2b0a189 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeb2dd708 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf676e693 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0190f6cf dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x16ae7e1a dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x32ba8167 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4014b253 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5466aed0 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x691a4da8 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6f97c18c dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x7fd0a2d3 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8738689e dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa93c1a15 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0b4493a8 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10947860 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1e2a7f02 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x35b8eb0b fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x35e289ff fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3c1a5127 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3d112ac2 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3f8993b8 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x55a14441 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x681fff14 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x71617d38 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92ac55f5 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9d0e6237 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2d03f88 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbadaf802 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf9125b6b fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfe6250cf fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x54826f02 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb090dde8 hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xd5827153 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 0x6cf67562 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8d67c0b7 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb3b13e47 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xe8d4728b ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xfea98962 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0df0e9de get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x0318a129 mtk_adsp_ipc_send -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x08b413a5 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xfb84de45 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x018413b5 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xbd256253 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd3f2619d ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xdc63d322 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xe6c49d38 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x4a3bba8f get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x51379fc2 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 0x924fbd87 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 0xb7205b57 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x086da6ae __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1aa10440 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20e7e8c9 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2bc813dc dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ed5388 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a567392 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61f5e232 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x842693c3 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8afab55e dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90864c8e dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90d04d4c dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9cb7835d dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9ccc69c6 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8096143 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaa9cbdee dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xba386e44 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc2c0ff1 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xddefe6f2 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdfd6df47 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe0f5059d dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6c6c330 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe9901ac0 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc309f48 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xad133849 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0935a4dd dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0cd1e8c0 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x21b1a95b dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2436fd98 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e832f99 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x309b466c dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x30e7b2fe dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f4745db dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x43695b8e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x49ab5d24 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x533fecf3 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x55870f7e dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6f48f7f2 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8295778e dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa06ccca4 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7ae18b5 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xad8459b3 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc9cadbf dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbebc1314 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc283fdf4 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb4594c6 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdbd83ae5 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4b2b32b dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x03487900 fpga_bridge_get_to_list 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 0x264b2329 fpga_bridge_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2e97d101 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b9e0e04 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5d995832 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95f608b8 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0fd92c9 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdcb86acf of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xec4bdfaa fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf679dc5c fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0c15bde2 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30c386ef fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3a9376a2 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x66dba91a fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d924bc4 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x94bb5e9e fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9a117106 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9a3312e1 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb462fd15 devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc7a5fe5d fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdf867a6f fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe2963ede fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf512cbf8 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x31faf1df fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3c2da195 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x899d0ea2 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe08aa2b0 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xed4018af fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x18b24aeb fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3af989d7 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b9cc366 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4f65ae49 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x57bc4c6b fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb40a64e0 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd5fd79f8 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe92fe212 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xed361329 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x00fbec8e fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x04b6e0b1 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x27124e0a fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37c45e0b devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x44fbe767 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x78646713 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7e661eda of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f1ffd33 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6b4eee0 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6cd02ab fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd0f9e6e2 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xddc8fbb3 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe52f78f2 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7d3ed3ba fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x80e3cc68 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa4745494 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe0c50dbc fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf9ea3da7 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0397fc5c fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x130619b9 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x23dea0d9 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x27611a1e fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x59e2f395 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x511db213 fsi_master_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x72f257ad fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5e8cd492 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x63699965 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x859dc3f3 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8d16fd00 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba922941 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba99d1ea fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc48c13dd fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xca58b3e9 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba3e91f9 fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd0f92748 fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xef70e4a2 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xf3715070 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x5ead0b8b sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf5b17e1c sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x498a3ade gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8d0a29ad gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa383aeed gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xbb90668d gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc5ab1e45 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x09e4fa4c gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x36961365 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x41e45bfd gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x590b194f gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe5dc0080 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xef09c801 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xdb7de6c3 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x50ff6aaf sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xeabcb918 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8e2ac6ac gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9c8b6e62 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa737d7ba gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd95a93c0 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe96df7db gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x099baf6b gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3588c1e2 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4680b565 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x504c485d gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x963a7c13 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 0x5a2e3787 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd1d1a286 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x1d70ff38 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x70169bb3 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x94d39d3e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x04145611 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x3778db16 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x9b33fe08 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x11b92a7b analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1fc0396c analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x392d5433 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x03442ef0 analogix_dp_unbind 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 0x4b107075 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x59a1a8fe analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x72cfb1b4 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x80f84cee analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae499a92 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x462058c2 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7632f7ae analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fa33b8d analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa9672b5a analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xaad4fa35 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb6dd5323 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc63b91c9 analogix_dp_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 @@ -13004,667 +13006,667 @@ 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 0x460717a6 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 0x5aae8d6b 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 0x77c1bab8 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 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 0xae540748 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 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 0xef142383 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xeaf94381 dw_hdmi_probe 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 0x05132cd4 dw_mipi_dsi_bind 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 0x136899de dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x24a503dc 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 0x6e2cb34d dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xfae9db77 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x21a44e90 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x25689fa9 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x6c995adc devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7c2003c4 of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xac77fdba of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01270c75 drm_of_get_data_lanes_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0556aab1 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x08fd2061 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x510ca008 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51d5ef0d of_get_drm_panel_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53330054 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x567afb9d of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5eb6c01d drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x60edb52c drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x3238d396 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0c5fb599 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x10fc1c4f devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x4ffd7efb dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xae80803e of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xc93ccf35 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0aa14362 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x174f9e16 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19daa0af drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1f7a22b6 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27b15ba9 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33021b85 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b2e333e drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d193bce drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5cd2ced2 drm_class_device_register EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d60430c drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a03e959 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ba03367 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96fa79d1 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97f65431 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9aff11f5 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0340699 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0980d16 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa219ae6a drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa6989b26 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6af5fe97 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f2db1c2 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f3b9f5e drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77138276 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81117932 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa45dc48e of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xab359103 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xacb1a05a drm_class_device_unregister EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdeda5a3f drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb3118a4 accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf000abd0 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb00937b7 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb137f2c7 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xedad5997 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf56ee43c drm_bridge_hpd_notify EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0233a495 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x37133783 drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6c26717a drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6f1968ee drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x91e54641 drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9940258e drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xacacd8a0 drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc8371b73 drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd0146f4b drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf0367cdb drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf76dc7ab drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf8067191 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x02453411 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x02daab51 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x099f98a1 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x11f4288a drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x24a4191d drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50d21cd0 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cd7308a drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa686287a drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xad59f743 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe8ad39db drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x366d0a50 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x42b268a5 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x684e8f57 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6e82f132 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7d1ecc14 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x83da8931 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x99d172c0 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbe5be0f5 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff57b600 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1d379fbc drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x272ae598 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x36a660c3 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x38bdf24f drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5ea315f7 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x737e580d drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7d3db293 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xbc735688 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc6ca6be5 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe9149692 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xed6757ed drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf6f744af drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0e59c4fb drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x158f3dcc drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x183123c9 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34408a57 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4ca0e6bf drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x84054b71 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa7e3d53c drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd76db8c9 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe4fbe0c7 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xee55352b drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x06a9adbc drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x242b4687 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x69299576 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x9d6f4678 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa1b0d79d drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa5968e94 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf1396add drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf59d61eb drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1b5b2f44 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 0x470723a4 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x71354205 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x85159e26 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/meson/meson-drm 0xcbc6025d meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xfe2393f4 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x335d962a s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x49f38f90 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xda155a4a pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x28e15146 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5b1393d9 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xde927d83 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf2a19b75 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x12d7c69e rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x17e355ea rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7446da41 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa58e50d7 rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x3e6b9610 rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xac34a647 rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x213b3257 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x90f5629f vop2_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xdd14c4d4 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xae8a2013 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xfc6ff849 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x51f5f751 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xb9d839b3 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x4873b6aa pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5ee2f26b rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x8104448c rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9504e4e6 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xdfd57f23 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x07441887 rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x21bae121 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x4211d40e rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xae9ffb76 rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xa5c9adaa rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xebc9c30c rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x97af29fc vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd0dac862 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xea9bbed0 vop_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x3cd79a6f ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x831648ee ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe1664347 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7bf113b6 host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xb1a6dc34 host1x_memory_context_put -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xdce6a45c host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x116e23d9 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xc08f5d94 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe30c1296 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x271681b2 host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x9c13f392 host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xc1e08270 host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0045a2fa __traceiter_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e4a881b gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f016f23 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fddacfe __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x09267584 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a0d9ce4 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0dd83aee gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1084e608 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1583843c gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x211788eb gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x213a34ad gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x331c1107 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3cef3263 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e9e2c56 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4589c904 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cc4f859 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4cdb1b7c gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4de3b6f7 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e54c0dd greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x518451ca gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x539b41e5 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19947f22 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x274c4010 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3239dc22 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3739bf97 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37467c15 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x383bed62 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x392f7c0c gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46e11cda gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b4eb169 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5007f2b7 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x530d4c2d gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56a4f238 gb_operation_result 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 0x60077f89 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x618c512a gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x665e0023 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67edadb0 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6844ca3f gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a832733 gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6dfd68f8 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7209701a gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x748e1a48 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78776f14 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c12826a greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c8721ec gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81d17540 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a322922 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a8cd3fb greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8d91b8b2 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fee8485 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x902caaa5 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92d43959 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94cfe28e gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f851f22 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e857f45 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d903031 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa0e0506d gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1ba8866 gb_operation_request_send_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa590036a __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb095745e gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb43886c1 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc33db14e gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8129ecd gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4d2b5f7 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa6f8d931 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaac3127f greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaad0349e gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb06710c1 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7578e8a gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbd4364fa gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfea3f56 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0a902ba gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc30e01cc gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd3085fc gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1f8f8c2 gb_hd_shutdown EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd772d8e1 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd9ccd3b3 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8fbf62b gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd9f2104d gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdbb2417b gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3c89998 gb_operation_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2682421 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf71f887b __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/hid/hid 0x00fa91fe hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02725aac hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf807d5fb gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfdf2ae21 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff51bc91 gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a78f7d5 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c8702d0 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x13439091 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1391d8b0 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d7cb6d7 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dc7ca3e hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17ab0689 hid_dump_input EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x20d7d356 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x21d75e4f hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x25208243 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27afc3d9 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x29ab3da4 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b340bd9 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b6c3cd3 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4339dc8d hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x434abf67 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x48372b1f hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x48ba1bf5 hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dd5ee8c hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e96acb6 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5724bd6a hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b931b3f hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6091e9df hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61378734 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x632b5b51 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7005e1e4 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71f65613 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x74a5b995 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8247675d hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19f3a878 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c6d0ffa hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e353d1c hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d1d1f15 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fa27e40 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3901255f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c43a301 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43ad8485 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47b47830 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x48046a1c hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a33edc2 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51ae346e hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54545174 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fb53c7a hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x635be8c9 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x709aa109 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73932b8f hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x780dc258 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x78cc0ff8 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a7dde31 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80e6a90e hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8122d926 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x831126fe hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x842d75dd hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a602464 hid_dump_field EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d89ea0b hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95682254 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95f9e54a hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b2f8406 hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3497aec hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa49edc40 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa57f511f hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0890855 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb647e597 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc33b9564 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xceac5e9a hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf37f254 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf408d1d hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6842936 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbf641d5 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcbc527d hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe184e3c3 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe9fc5f6f hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeaf6a46c hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xebd1f986 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xefdada48 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf137eba6 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94d407f0 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e5b33e2 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac38875b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xadad9c04 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1c2a5bc hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb586d8a3 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5a62a2a hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0ee0d59 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5031f35 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc75c9901 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7887ad5 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce1cfc02 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0a10195 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1b3db4b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe48330de hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeeb9d257 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf07154f0 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0dff164 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2d612a9 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8ad3886 hid_alloc_report_buf EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfed025f8 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xffc2a165 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 0x992dabb7 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30deef96 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ecc5f3d roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x601992db roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9444cb65 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbdf24ec8 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd0e6b1c1 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x429ea99c sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52bb3438 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x78ff158a sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8bc94874 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9cc4c25b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xae01232f sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd40ec1f7 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd71b6456 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xebe9a139 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4167a137 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x60f9b14c vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0f083f85 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x14607147 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xab82fde4 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc1fc0d1f i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdd1032f1 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x525185bd surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x5907a0b7 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb7b11181 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x44b779a8 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4325efd9 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdfad0258 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x024e3501 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x22bf60f7 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24099efa hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2888e236 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x30197089 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36f07fb3 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c349363 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b5d4ad3 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x506ee345 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x69fd7e27 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x373afa74 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f4787c2 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f519973 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x86db83e9 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8ed11c3 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe389574c roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0149b0fa sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x182cea89 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x36fd61e8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7822db08 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbecd2b93 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd559acc0 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe88a1c2c sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf5fe42f6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf763d4e6 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x5118cfe3 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xbd82b403 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x44d9d4c1 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6f655e6f i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x73ebaffd i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xbb910afe i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf3a8bda9 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x302614ac surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x55177623 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfe2733ec surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7d9ab88a uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd83160c0 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf3c2fdef hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x02f3775b hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18d673a1 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1b325561 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2afd93c6 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2bdef88f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33071447 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x365c0135 hsi_register_port_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54efac45 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b9ab801 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x69966e63 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ce0668a hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f5943ab hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba31a8cd hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf355ab2 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xebfd4060 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3321c91 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x00816977 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x03f1eadb vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x15c0cbc1 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x24696a85 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2545d079 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2b8195d4 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x310ff621 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5fc3d2ca hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7467c345 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x89105ae7 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x90b1322b hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x912d1634 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9eb7f180 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa65d8533 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6907617 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd35e2294 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4f4def5 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6d7b4ab hsi_new_client +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b3a6e40 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x100da52f vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a6e059b hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2a314298 vmbus_next_request_id 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 0x346db6a0 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3ae47b47 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3e8f118e vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x448200e4 vmbus_connect_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4aa453d8 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46fd0079 vmbus_set_chn_rescind_callback EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4c1aff51 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6534693d vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53b2db13 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x55761b66 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5ed71c3d vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6388b9e0 vmbus_driver_unregister EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x69d75b27 vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6bd3e8fe vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7428e8af hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8d22e843 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb535aa5b vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca57844b vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcafa5306 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcfbd9518 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd56236d3 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe20607ef vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe5b0bacd __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6e6e56c vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf120b15d vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf63893e6 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfca7ad51 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x29177162 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x70009d93 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d9f8593 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8720f1c6 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x885a2207 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9560045d vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x99ec252e vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9d14ac09 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ed77cfb vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9ef1312f vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa083afa1 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2ca74c0 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa374306c vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xad2692d5 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb66ee91d vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbfd8e510 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3ba412c vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde76ca8e __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe07528cf vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe4c546df hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfc683284 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8ced1a26 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 0x179bc254 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x203bac79 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x27f7d005 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3a27a4e7 nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x583bee8f nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7c4c2c68 nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e97c558 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x291a60a3 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3395053f intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4cd63985 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x52947139 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x96062138 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbded3c37 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeddefff4 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xef40bd12 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4951b813 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xde64e7eb intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xdef47748 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x02ffa57e stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2363db96 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x47748d8b stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4ba932d9 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4cf0416e stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9b90b22d stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdb80ea53 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdde45b8a stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdf13685c stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xc55b3f58 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x392d45ea i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x49809962 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9d6a1bd1 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbed4245b i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2145782b i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4c3f28f4 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc7ef4a4e i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf0ef432c i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0930a64d i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b2613d9 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21436604 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2864ff0a i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x51c6e896 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54495aa2 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5bb76b44 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6031a999 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x62c829b4 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6bebaf2a i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x75fdeb6e i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1ff16562 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x20f183a3 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x58634cf6 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6188cdd5 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xb1ac5c24 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe81e5300 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x018d6096 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0cd3474c intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1fac8468 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3905a96e intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x60d36974 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6b1ed3b3 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x81a38b65 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc0c3ff0b intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc897973c intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0a45b2c4 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2d1754ec intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa778dc11 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01a16999 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x071e478e stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x238e6214 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8d0dd471 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x925f3940 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc0479fb7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc7c55ad0 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf84b915d stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfaacc230 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x9c2d683f i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5ceac2e9 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6bdcdfb2 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa8728948 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xee6ccc06 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x293e0722 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x981efc8f i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9d3807d5 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbf1cbb0a i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0f2faba6 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x15382bac dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x17af0606 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2500d881 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2f0f83fa i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e1c1d8d i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x43f41bb5 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4c1d17f9 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58411b1b i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59378db2 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59fad15b i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7007593f i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70feb073 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76cc43d2 i3c_driver_register_with_owner EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x781c85ec i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7e546b60 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80dd7cfa i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9cc45da9 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f1ef18f i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc56bc3e i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc787ff21 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd15171f1 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd9cf39a7 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd84fd63 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde057300 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe97c5234 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeac89dc7 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xecd2d401 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf72f49cd i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7e76fb32 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9be23529 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa7fb9ac0 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xad091e14 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb88992bf i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbd902cfe i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc606b9fb i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc9d6cf0d i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdce7f8db i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe6b0ad37 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf8b0a07c i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xffbcaa87 i3c_device_do_priv_xfers 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 0x38d1028c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x50a9316d iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x4ed6f713 iio_channel_get_all_cb EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x88f0aac4 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 0xb101c165 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0391c6c4 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0f9e7bf4 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x33c3c5e1 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x42917fb0 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x47483486 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x673747e6 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa0a9c264 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc5de7dbc iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd604fef0 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd6b9f5fd iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf0c68459 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf713d8b0 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x54ce283f devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2b13e554 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfa420248 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x02dfbe22 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x15e9b80e iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x30d9069a iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x498ec41f iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x58b3c62d iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x60183583 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x90de0146 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa962cf57 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb336191d iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbefc3e12 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc6d0a127 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf310f699 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xc6341674 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x0bd78a00 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 0x89aa9274 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x35f46fd2 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 0x30e5c815 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x98962e62 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b8bd594 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x23197574 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x46846818 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6ee8e011 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ca718a6 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7f58ebf6 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x8fa0bcd2 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x6eb54730 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0097e0a7 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x196ee6da cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x38d5e247 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x58ee70cc cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x668748fa cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x68254ee9 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7171af56 cros_ec_sensors_core_read_avail 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 0xa4a398c7 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdbd12dd9 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5ce4253 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf83c8343 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfab40214 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x153c5c07 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xba3d0d57 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xebe147e8 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x82aad6bb fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00c605a2 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x054c07cb iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0769054a iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bc6b030 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x115d19ee iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12c227d5 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x163ec0c0 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c010c07 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20410a65 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbde24d03 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcdc32945 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe7527903 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfb38c207 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0aa2d449 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x79b3d45c bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa5db6535 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xda26ee21 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05abb28d iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08d12c38 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0997f52f fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10061976 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x100895f9 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10e645dd iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18479efc devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x184a49c7 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c0234c1 iio_enum_write EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3196d0dc iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36df3740 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b9d7886 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bc1911f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x489c9be9 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dcbfb60 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2954925e iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bd1eeb2 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d9c39a5 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e26095d __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33f4ce6d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ba53135 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47f67899 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x487d66e8 iio_read_max_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ee772c0 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f8fc013 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50137310 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58609cf4 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ea8125e iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63755575 devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64ce88da iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66634537 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73562fca iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85658160 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e764900 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9814d778 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b63171b iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1e87309 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3eeb39f iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5ad63eb devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa759ed69 iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0d75cf7 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4695fe1 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb771e4b0 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8385381 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc02ba7b3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc23056bb __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5e54e2a iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc81d9399 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8429c0b iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8a24648 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8c047bf iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca2189fd iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca4dc62f iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb0de67c iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce13d828 iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce54d132 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde8874ac iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1a25650 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe378dac5 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3f8c9ec iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8328156 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef90ff66 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x548f4d90 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x567c6176 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ef34322 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64db1bb7 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x657c3a5e iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b1771ec iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6c6e86d3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fd66953 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x776a3938 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d9693aa iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80ec9a8d devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c29b4a3 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x934e6353 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9431c001 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96a573ea iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x979f4083 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97dd8fcd iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x989a75dc iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d808709 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f28db24 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0d6efcd iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3d28cdf iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaefbf38a iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc0a50e1 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcfad47f iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd1d3c93 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0e252ac iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc50c1bc8 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5b1cb54 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc656617f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca675189 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1fcb901 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3b9ae49 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7622ec8 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe890b544 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf472133c iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa499bda iio_pop_from_buffer EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x00406fb4 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2efa3395 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x51755bbb rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5659caed rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ad50c4c rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x95391f72 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa73d12a9 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb15749fa rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbf9292f9 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc749475b rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8a36361 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd35e8ef7 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1b40f4fa input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8f1deab7 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x56917679 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1417083f rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x472d95e9 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5f8d876e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6f1c88eb rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8210fe2e rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9e931803 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbeab0480 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbec8db7d rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcdec99db rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd2fa452e rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf25d2d2d rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf9583620 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc76a0d41 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6bcf27ba matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x4c23ee83 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x053beb1e rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x37b38ee4 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c6c925f rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x55777f1a rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5afe3386 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8046abcb rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x84cd52ed rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x888a5c87 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ee14888 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa5164d49 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7d6463d rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xceaf7ead rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe9504995 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb67338a8 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbfbd7541 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd23aa0a9 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6a8aa9c1 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x756efd16 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x01f66c88 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0e0e084a cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5adddeb6 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6269e97d tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcf5be01d tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd8ec23d1 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x11c41b95 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1e451cea wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1eee3868 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28b12917 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x363aedc5 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x385e2a4a wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6bff6d4d wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x74edca42 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76417017 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x900d26f8 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9ea1e062 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbaeb7089 wm9713_codec -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x1c9c3333 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x244552f5 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1a37eeb1 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x34f24d5c rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x441a07f2 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c00d7f4 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x53a93851 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5799e60b rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a5e7981 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7bc3417d rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xacc4a8c1 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6b70faf rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbb9f4f3c rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd5f8a8a1 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe38bd40a rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x01916565 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x87c89c60 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa08c1270 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xaa92eaa7 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xefcb9597 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1b387515 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x63ca0201 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3ea912c7 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb6926f84 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbda07654 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf3a3773f tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x018d0adc wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f393f74 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x302ca09c wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x31f90e4a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39fc1d29 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54520ea4 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b965f15 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7628424f wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa73c5f8b wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab99b720 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcd68cbe9 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd4095466 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xa4f0f78c imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf18b2f4f imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0253e279 qcom_icc_bcm_voter_add EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0xfb2a74bd of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x31cd3b04 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x40b2b95f qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x68ef223d qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x82fd2f04 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc555a691 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd3c43288 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x19f5faec of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0f32e8d9 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4116fd14 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7398af78 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8583ed4a qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc5bf85f2 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcbd0b2c3 qcom_icc_pre_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 0x02ebc532 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x334509b9 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42ea5e4c ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5fae8c73 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70357c37 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76ec62c3 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8639c8e7 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe50af1f5 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe84c8f80 ipack_device_add -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2f6eea7b led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x30422826 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46599cf8 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52d29e44 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x73913097 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ebf350e led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4b58b5e led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcbdf8210 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x141d6267 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x314eca76 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7d9a0596 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x81ec7bb5 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdc2c08ee devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0382d301 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x67691b0f lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8493f6d3 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x854e6db8 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x94c1f6fa lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xac2b736e lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaddc5dda lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbc19a289 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc1fe9733 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf06c31b2 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a6e73e1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a9cc00f ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4d7a01cf ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6252f7f3 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8af70aad ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa5bc7368 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa76a9260 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe715130d ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf7c1570f ipack_device_del +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0a28eec5 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x181c1b4b led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1d70584a led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x31769e82 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa521b8cb led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc543933d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc75d778e led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf5d8c281 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1ef052bb led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1f4c2f9c led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x20d69254 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5d7f38a7 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa53456cc devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0d4ee8b1 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1283604c lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b281c29 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4006bbc0 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x66768802 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74d35e30 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8a21da2d lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb869ece3 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc1da1eb9 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xde82ef55 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 0x031346bf __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __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 0x08162f6a __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08dd28dd __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x14ad27f8 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d9822f4 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e9a9c30 __traceiter_bcache_bypass_sequential 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 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 0x188cb663 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18ba3383 __traceiter_bcache_btree_node_alloc_fail 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 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 0x1f16b580 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23c98bbe __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x255116aa __traceiter_bcache_alloc_fail 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 0x2a0e014e __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x322702aa __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39331316 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b4d073b __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dda50dd __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x437214a7 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32fa62c3 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision 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 0x4eaddab7 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x513693a6 __traceiter_bcache_journal_write 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 0x5cd64aa5 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert 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 0x63384713 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x637e1ac6 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision 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 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76b53976 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x77830525 __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 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x801c09a4 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81a1e15b __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82e8c818 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8596170f __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88415095 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c11df99 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95bc44f1 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9744cd5b __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99aa85ec __traceiter_bcache_invalidate 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 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa62dadc8 __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 0xaaa08bc3 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafe49414 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb2b96da7 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb37f9460 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5620aa8 __traceiter_bcache_journal_entry_full 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 0xbdb5dee3 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested 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 0xc91cf06d __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd415f8b __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2023e53 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd45bd0d3 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4954475 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail 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 0xe369a323 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeac5ea44 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec2a3952 __traceiter_bcache_btree_cache_cannibalize 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 @@ -13673,36 +13675,35 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0274fd81 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x046e4db7 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0e9bf598 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b5d7c43 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1cc39bec dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26761c9e dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x29b7d5b2 dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39067593 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3c107063 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62d46850 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63eb8ffd dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2f1f1086 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45128fc3 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4b1d1e15 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x553388a3 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c582329 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74e64177 dm_bio_prison_free_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7aea8e9f dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8013d1c2 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80c5f2c0 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x87a8c84e dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa4f77988 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x773a0210 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7a456a6f dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8011636e dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x860e8767 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c7ceee5 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x96e61ebd dm_bio_prison_alloc_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 0xbe71abc8 dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd1e4caf3 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd4f6f8f4 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xccf39e7c dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce122dbd dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeba50f18 dm_bio_prison_free_cell_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 0x4251b12b dm_bufio_client_create 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 @@ -13712,6 +13713,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 0xad8b9443 dm_bufio_client_create 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 @@ -13724,6 +13726,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 0x0ea86204 dm_cache_policy_unregister 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 @@ -13736,30 +13739,29 @@ 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 0xa9446188 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xce913331 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb9db7f38 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc9ef5aa9 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe9ff9378 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x290e4129 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd3d38efd 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 0x09ed3dd9 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x173ef961 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 0x3eba29c5 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x411105e6 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 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 0x87e6b5cc dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8ff78f1f 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 0xb425da55 dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xce274270 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xef9334fb dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf6eb570f dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8dfe71d dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf73a4151 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 @@ -13795,6 +13797,7 @@ 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 0x5b04d3fe dm_bitset_clear_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5b6e906c dm_block_manager_create 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 0x6bfa88c8 dm_bitset_cursor_begin @@ -13825,7 +13828,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbdde4031 dm_btree_empty 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 0xd5b9d8b9 dm_block_manager_create 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 0xdf3a4e7d dm_tm_create_with_sm @@ -13836,59 +13838,59 @@ 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 0x0510e70f cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x081a058c cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1be8207e cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x28b5bf5e cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2ea6f3e6 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4ac53aa3 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b14cb4a cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4fce52ac cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50c6a42c cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x55fc5dba cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d73f9ba cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x76d09f66 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x78ac523a cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8f49fb2b cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10e06c79 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1f1bfbe2 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2c75f0c9 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2d045292 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x40c88ce1 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x40e93872 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x52745f00 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x687d124d cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x77e00f09 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7b1ff6f3 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8ac8cf1e cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a56823a cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9f2cd603 cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa33679b6 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa3613e1e cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa2571194 cec_fill_conn_info_from_drm EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xba9ae5ac cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaf274d28 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb4121ae1 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb5228e3b cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb5ec7524 cec_notifier_cec_adap_register 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 0xc79c8ac7 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe13e29e8 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3a83aec cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf2882788 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf65bbef8 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcbf75ca1 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe6bf0705 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xebb57ae8 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xffebeabd cec_s_conn_info EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03a3b593 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fd9d5d2 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16f28e06 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x065b837c smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0d536f83 sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x244a63f0 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2771f891 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 0x3ed44145 smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4f8ee55b smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x69f0ff50 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ca6e055 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53ed3189 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a968e2f smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63635c66 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6856c164 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7064c72e sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x72ba3f5b 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 0x780e3fb3 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x89c2cebc sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x956f923d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x86adf5b1 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99489c75 smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb6cce0b3 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d307949 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac15fb67 smscore_set_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc80a6f58 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc86493ba smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcfa6276b smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd965660e sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea2aee99 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef1ca00f smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc0c1f0b5 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf0741219 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf108065d sms_board_lna_control 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 @@ -13906,403 +13908,403 @@ 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 0x00da1952 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x01cc98a3 vb2_core_queue_init 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 0x0d756400 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x089f2fc7 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x180ba297 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x180d3679 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f8f9cee vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2051ac54 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x20f1afcb vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24d845c6 vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4900a670 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b76eab1 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x51ee1816 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x525efac3 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x556db9f3 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x55ac617c vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x25fd565d vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27d28147 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2eb54a59 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x34689362 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x365ece0a vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f333e8e vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4cdb8c6f vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69036ded vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f1078f9 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x71acb04c vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x727fbedc vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74e18842 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x778a427d vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7b913dd9 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91445ec2 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x98c1ddf0 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9dbd4a6d __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ca0ec2a vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x832b3d67 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96f8b2c7 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9905e806 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9fad1ba1 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa260d2f3 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa5b5873b __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa9abccf8 vb2_core_streamoff 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 0xc21fe94c vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc41cec1b vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc536fca9 vb2_write 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 0xcab419ac vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6b15eef vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8b0964c vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe50e3cbf vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe596f902 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe945b75f vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf375a2db vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf40305ce vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca99ca12 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe99369e6 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb1216a9 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf09534a5 vb2_thread_stop EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa2e1a14 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfcf4bde3 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0b937398 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x173b47ad vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x14f2884d vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x14a04056 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01a31117 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x030aeca7 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x07aee490 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x09ba496e vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x167123a6 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19313663 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1daf6c60 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21fe3e4b vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32aca181 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3408a858 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x469b61dc vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ee2a1bd vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x519d75f5 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52f7000e vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5380b11c vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d98f262 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7bd163a9 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e98b8fe vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82e06043 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x888c475d vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x949907b5 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9eb0323d vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaae0a33c vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac59294b vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb2b6f8a5 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb80f8198 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb92cc473 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca1a7389 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd101e447 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe232180b vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6b4255c vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb72e050 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf05cb591 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf32aa154 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x71a4b598 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9dd280cb dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbdd93c21 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf0573c61 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xba542bc7 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x694cfba8 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x97d67ee9 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x90cae552 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xe20309cf stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xf04ad57b stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf19a5576 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xc75fdae6 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xfe35738e ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x07ff5131 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a12bf2b max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a8a3f28 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3af4d080 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x482f4ad6 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x49dd006e max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5cd4b19b max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x744bac76 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7921ed3d max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9b0ce4fa max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6b79fc8 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xabe64b86 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc0046566 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x065eed1c media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0fe748b3 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1615946c media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1df0150d media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2bd19922 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2da12df3 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x343f7083 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x364a4d0c media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3855cf6e media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b811810 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d2b513a media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41bcc081 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41f5f12d media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47e80b72 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48973980 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c689fbd media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d270c0b __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52217551 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57e29d48 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a314d38 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x615b6164 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62b9928b media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ca83f74 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x701bc508 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71c9458e __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x795f978e media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a67b564 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f1b8259 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84385717 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x88e99a1d __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c38706e media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8f230474 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94188636 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96e9c9e8 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98ebb497 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d271686 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d6bdfbc media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ed1b7c6 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa66bec65 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac4b322d media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad33183d media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb01f11f1 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0371e25 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd4e5744 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc13fd039 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc68c743a media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8163594 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe50ed73d __media_device_register +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x70fec3b1 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf4a7ffd8 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x50924441 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x9258e5e7 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x09173c4b vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a2c002d vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1b30d894 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f98e9cc vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x323b7dd5 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40098789 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4e918fd8 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f2e8719 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x545755a5 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6463074d vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64b75e6c vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x706850a8 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74caef7c vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76821e6a vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77f9f614 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b1b35d6 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x88571590 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a29cba8 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ded1bbc vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9a2eada5 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0e03df8 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaf6a1b8d vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb298e37f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3f25cf8 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6b36a3d vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd45edaf5 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf227ae6 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0fc69d2 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4e962da vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6be843b _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf14a699e vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe44da01 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe8a9c96 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff74f995 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x7856997f vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5910517c dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbfb0da51 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf276d711 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd8ad8d2d as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xea8c1580 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7506d9e3 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xfc78c484 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x1939c559 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb46c5023 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8bab2726 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xb41d7048 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7cee9d60 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x050d5baa max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1773fd12 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5067b926 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5971c7ab max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x65754052 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb7d4a9e0 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbbba5660 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc03fe9c5 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc96cfbbb max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xeefe8ed8 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf280cca6 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf852d421 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfda7a179 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x020b915d media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x03ca81c0 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09c966bd media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b27905d media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f4032cb media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f754625 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2265dda8 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2bb328a2 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2c0605f6 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30c9a788 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a29b76a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f6313a3 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fb49ede media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x451b5870 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x49d27fa3 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4dde5429 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53536f44 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x560ddae7 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x576e1576 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x58989527 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a33aaa2 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5be41867 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ce707c2 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65541f45 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69696f03 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6dc8be80 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x749df171 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77c530b0 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x783c26a8 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79bd7f4f media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b239628 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f0688c2 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82e3fb23 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c211321 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8d1f29e0 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9727e509 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa54bc045 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb134480d __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6b07d04 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbd11d089 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf22b894 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc47ae169 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca4b9d09 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb46f33b media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1c7d8ae __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd332e1da media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd72e3487 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8db9202 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4cffde4 media_create_ancillary_link EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7ceabff media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe91d41a3 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf15a2ad8 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2ad72b7 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7c5d087 __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8b710ec media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc87aee70 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x06f79461 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1cd2995c mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x222acef2 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2513a287 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x36a10a70 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x38a33c3f mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a8a7a91 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x41f3bfdd mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b97e961 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58dd539e mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5bd6b2e0 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8041dde5 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x935d669f mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa0ca37e1 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa161ef68 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbec9c5bf mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1ff7234 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe665c4d4 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed59802b mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x094f4f25 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x120670b7 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1424bd2b saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x18e8bb2d saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21b7698c saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f0ff5ab saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31b5fdb9 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e4c25f6 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x430c5dd2 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f61dff6 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x57bb9fc8 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5dad78b6 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6050f2ef saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x641d6afc saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84f91cdd saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x874f1191 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7737309 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2135a40 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee633677 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1ae8cfab nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x228d0a4b nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3b2cf645 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3cc3c277 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x425bbfd2 nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x46de626c nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x47928f41 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5c0fcb79 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x974c48c0 nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9fa62a6e nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa8168c51 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc1896a18 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce7a6820 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xedc89cc9 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x2a0764b9 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x37dffd14 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x476d8133 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x6a92adec mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xceec5eb0 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x26126006 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x29f26caf vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3942557a vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x45bef531 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8caf9435 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x93913b67 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa5b7ff2f vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xe2884a6b vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x06c26763 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07575090 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0cb515e9 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1545f80b venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x22427400 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x266a3922 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x26ef75d0 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9bea96d media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef20a41a __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf0b4b5ec media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5531b9a media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdf165e8 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x62b8bfbd cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0f5b74dc mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15135f76 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2344f6f7 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x24c2349b mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x30ef09ac mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3211e1ac mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x322ae457 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x378ce947 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x41a375dc mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4664b5c7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6bd6718e mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x71fbff98 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x733e1263 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7bdf7c9e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95bacf90 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbfd601ec mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc66d00a9 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd66bd45f mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe5bfe2db mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cc585c1 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52650672 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x622f7b60 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63d9fe7e saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f2d8e47 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x87361d3e saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x912bfe20 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x919dda59 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91f3806f saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9390a588 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb12a3cca saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc36ce721 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc9d7294d saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc0ea967 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd051256c saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe08c70ea saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe75fa052 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf653fa33 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfcee3d74 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x00fe3209 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1116cb63 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x133f552e nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x27d5fce4 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2e1bdeb1 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x343b50e7 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x59f13dc8 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x711a3de5 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8c62c39a nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9b6bb3de nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdce98729 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe209b8ab nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xebc318b7 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfe346a5c nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x1acf8ab7 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x741c3b66 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x830841c1 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x84ccf9c2 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xd8eeba3f mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0a34ae74 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x1e97143d vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x2f3fba2d vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x55dfc954 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x59589b54 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x912fe3ac vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x921a7180 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xbcbc6d1c vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0178d4c3 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x01df7402 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x03394689 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x037fb2d2 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x08cdfdc9 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0a5fe096 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0b1cb082 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e5c0b64 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x109520ac venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x12e69ed9 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x15f37922 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1d1601a1 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1fac1714 hfi_session_create 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 0x2cf1b8b9 hfi_session_process_buf 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 0x2f2544fb venus_helper_check_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x35efa960 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x383399ee venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3c53550d venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x43ab42c3 venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x44d07adc hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4df8e9e0 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x55c9c1d7 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x665f6217 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x686a67d2 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6b50b460 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6cd6729c hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6ee64e3f venus_helper_change_dpb_owner -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7101154e venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76612dfb hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x81c81521 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x83fb56ca venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x87747109 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89ed0827 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8afd3fa0 venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c21bc7a venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8f755b96 venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92f7e618 venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x97fe47d7 venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9b9be3cb venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa5aa2b62 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa64e70ab hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa744f16a venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa88a40b0 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2e4bb3f9 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x36fe1727 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3ed7f1ea hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f3afd38 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x460e378c hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b7eabfc venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4c4e07a1 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4e31d9cf venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51860f60 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5625d207 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5d0e58d1 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5d27ab39 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5e9344a3 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x676e4323 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x85773edd venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x86bae8e6 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89a081e6 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8b329bef venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x922522cd venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92bb7310 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9d397994 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9f62b254 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa5cc4908 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaa283eb1 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac4b0d46 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1a5dbfe venus_helper_intbufs_realloc 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 0xb7168c9a hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb848762b hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb6a9fed venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc22952c6 venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3bd861a venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xba505084 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbce4b33f hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc1f9b5ff hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcfb64ac7 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 0xd8da993a venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xda675828 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xddadc035 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdf24c222 venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe1b186aa venus_helper_vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebe47752 venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee135dcb venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee72a3ae hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf13334be venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf1b81a9d hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfa8b4c75 venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfc1632bb venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd6655f98 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdd482a49 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdd608436 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe2a9e5f5 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe7996b65 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebdc7e05 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf36ed7f3 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf907eee8 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfa9b03d1 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfd18ba94 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xffed7bc8 venus_helper_set_color_format 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 0x8f310cc3 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 0x0610c229 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x55b7ae6a vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x6861adac vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x93a2f085 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9c9f5152 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe4f9bb85 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe9b3a21b vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x419952b2 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0xc11e71c0 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4d388ab3 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x69ddf9ad vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x84961fca vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9dea79d1 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc0e0196f vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc70fcbba vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xeea35a85 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2869099f 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 0x56af9642 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x88606a31 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7a623eea xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9687e11b xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa1491801 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 0xb7d4bd47 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc40401c4 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcc8e3fb9 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdeb06b21 xvip_clr_or_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf0483c1f xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x1910ff40 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xeb44cb84 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf4620f07 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x0aa9386f 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 0xb537ffb0 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfb075f9b radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0f27c6ac si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x144ef4ad si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3cdfb704 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe8bd2bb6 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf93f0cc8 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25aa05ef ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c2eefbd devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3be09a2b radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4460da5b radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1007cf20 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x13e9eaf3 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3e72a257 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5474aa18 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6f6616c9 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11547ec6 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1aa05bb7 devm_rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3083365c devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a74bf2e ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x679fbcf5 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x779ee482 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7a77eb21 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7aa6e354 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f3ba866 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaaa7dea5 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xab4d56ec rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad9c548a ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x442eeba6 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4795c537 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x549370b9 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x60a53680 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65269fbc ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6676b974 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d4122b2 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6fa24fde rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fa8de19 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90969356 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90f3227a rc_unregister_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd92f7740 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe12a0a54 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe860c9ab rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xebbe1cc1 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee9d2570 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9299e51 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca2f4c19 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcbfd4568 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2ec0ab6 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc7bfe6b ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xef78baa3 ir_raw_event_store EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf537c050 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x3c75c8a7 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf30e5c28 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8e7c06de r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x23de096e tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x890ef052 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2c08f357 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x56fb99e3 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x22d84b9c tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x68e1fe6e tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8b855b01 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x321e60ab tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xcc2bfb5b tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1f0fd21b simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xbfd96689 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd3c52c72 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xe9ad920d mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x36ab50b3 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xee544f27 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xc09eee61 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc22a369d tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe51c5e34 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x66fecec4 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xabb29d92 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xcfa3de59 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7638e5f3 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x83be5b27 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x8e051cfe simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0a6b015d cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0fb5cde7 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16118f8c cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1d425996 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x227380aa cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2938dfec cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36c83cc8 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a2d969e cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b0df023 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b88aa3e is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x688604ff cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x753624f6 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9618c3f3 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa63a391a cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8884299 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe1bfb1b cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd803200d cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd84d6345 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe15c3132 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf27aab80 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x4f15054d mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x52169090 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07eaa31b em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x193d647e em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x217d39e8 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x242501aa em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e61ebe1 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3bda5c24 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x50cc39b3 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5d649a6a em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x69bbbea5 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c5bd6fd em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x714d3613 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x143aa6f2 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ab79289 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d335d5c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c829769 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5675b561 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59621898 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66d57eac cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71ede893 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x810e516b cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x89678d07 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c5f9553 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e6e0a9d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x97445625 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9f87d6a8 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fec1014 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xacf57b8c cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcadedcd1 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd88981c3 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde1cd6ef cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1c48375 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x0ca2ea4a mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x027e8ca6 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x10a80d7e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11c4e635 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ac622e6 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e5d2b49 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x51283eb6 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5364eaed em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b0e51a3 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6346d028 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x65a93d93 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ff661ec em28xx_write_ac97 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 0x7fca9b16 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8063a2f3 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a1c90bc em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x939d6c91 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x981b4e3e em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa07a0fb4 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7ca197e em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9ac652d em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe15ffaac em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0d51ae6a __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x367f079c v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5da9fa22 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc125532d __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf99329aa __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb752084b em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xba3123a9 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc5c73051 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4071458 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfcec6844 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfdb16d12 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x583b27e6 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5fb3d3b4 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa5eae4c5 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xdf318ae8 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe5d07a89 __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 @@ -14320,20 +14322,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 0x113d0537 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8feb22a5 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xea709bda v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x15ce4789 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1905ca39 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2c17be30 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x380f9c92 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x759ea0a8 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8677681b v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa5195ad1 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0dc0bd7d v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x57dc5b11 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x58f54e25 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 0x652b45eb v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ef2d226 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa51e6ee2 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xad82f1dd v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdbbb55ea v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb8d14da v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6e0e8fd1 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7754f1d2 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8578dca7 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x95b3ba37 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa59eacf0 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaa3370be v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc6e8a643 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 @@ -14342,53 +14344,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 0x0991587b v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c15ef5c v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f59896d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10d1935e v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12974eca v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13472645 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x150b681a v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d3bb185 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e9377b9 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f290d35 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30d17ad7 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3253a611 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3676d036 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x385f01de v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x388d0564 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b6f3716 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b39d132 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4bf343ee v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4cd64902 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c0c8f59 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x616125be v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6293c2b8 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63ad20e4 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6403b89d v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x685818ee v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69b1f080 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00edf2aa v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09c1aff3 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11994759 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1239e26a v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x184d4bca v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d82cf3f v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26a0f404 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28acf3b7 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ec75d61 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31e0b9bd v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x329ef7b2 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x384e02d4 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3aba3e1c v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3eeff479 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4555db89 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48043f29 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f3cf6b3 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63e0c0c9 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6406094b v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x664ec232 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a2f5f89 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70c5eccc 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 0x7718da24 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x790cf1f0 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7eceb2dd v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a236c5e v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8fee3d46 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x942c4d6b v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacae206c v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbea00789 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3675888 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78c20f55 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a2c66ac v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7db0565f v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80c7eea2 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bf53c7c v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8d59a79d v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9514e26d v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98b8c2d0 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9efbdd77 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2bc76af v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6af0711 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1b132aa v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb47a0289 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe3a7c40 v4l2_m2m_ioctl_try_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1dac7b8 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9108651 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdce273ef v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7cf0285 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7d2a4a3 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee912322 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd367f06e v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd593c09b v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3416527 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6d79c49 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebb7417c v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed837373 v4l2_m2m_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 0xf232df97 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfaf733d0 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbc93502 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd55eb5e v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff9b474f v4l2_m2m_ioctl_qbuf 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 @@ -14398,345 +14400,345 @@ 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 0x15aefbb4 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x233c8edb videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2492fc94 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2aece957 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e249dc5 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ffe471a videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30af4184 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4707b83b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f677781 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x707e14e4 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7622e0f0 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7bd2a04b videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b0649e7 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b6fa36f videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xabe2f5cc videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbce804ac videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd7efcfd videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc821a7e9 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea4b800b videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xec526dc7 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf46b0cc3 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf89b40d2 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd1bd178 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff6019a7 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x18ce3893 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c8b36d7 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0ec1fd11 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f7b5bac videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1007fc7e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11c1c999 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18470e30 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1b1ea124 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x23c3bb1c videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b47902c videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52808de9 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x563c1daa videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79fc4511 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80cf52b4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x88c26c7c videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x97ed9075 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa30ec546 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8d91c8e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac6bec33 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd01e131 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc12d5583 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9f93468 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4d43467 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdcd1f09d videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0ff7acf videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x05a45d4d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x05b1dd7f videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0f65b9c0 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 0x62c345fd videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8a990c3e videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xbffcbebb videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x164b2fc6 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9996d1b0 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf491f6be videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0061d70d __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03e2bc02 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x056e9b8f v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cfaa6fd v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eb6da30 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe4929bda videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7712a17c videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa8c29563 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc9642570 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01a3df7c v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06c6a337 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08f67f72 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a62baf6 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0effb2a1 v4l2_ctrl_request_hdl_ctrl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17d3c3df v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bd8b24f v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x205cc7c4 __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21a8d8da v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21c9a826 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2789722f video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27ca3260 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ed21b6 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ccaa182 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d72affe v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2505a88c v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2db9672b v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32c12394 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x362581eb v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39779ae2 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b7810a6 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e88b85c v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ead4a26 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f7696f8 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40cdb006 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44bcbd37 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e6f227b video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30bcf770 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34ca59af v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3631975c v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c1f00f7 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43730624 v4l2_device_register_subdev 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 0x4bb40c87 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e5f2eb6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48e36083 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fa6c938 v4l2_fh_open EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5138cac0 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5796bdc6 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a0bc8e4 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ecc19d0 __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fe90eb0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5287572e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53093aad v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x559aad95 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57771a30 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5acdb2e1 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f3aac64 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60f392db v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60f9db81 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6885e3f4 v4l2_event_wake_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c407ab2 v4l2_event_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 0x7553eb65 video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78ae6dd0 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7db81e2b v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7dcc6b18 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e0c0099 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f45629e v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f74ce89 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8751caf9 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e75ebc1 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92182da7 video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95908ea0 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9adbd477 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x783fcc1f v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a20275a v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b454859 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ba9785b v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bd65f62 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86911742 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87a30405 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x896351ce v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90bf0690 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91b91243 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x947ae69a v4l_disable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2ae95b1 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa33ec662 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa55d5af6 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa66b0027 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa966b615 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaccdd548 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0869d83 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa55e0dc0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa603fa9e v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6af7931 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7f9f4b5 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa860d05d __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf53653c v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0938750 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4a3aa3a v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba9e8d8b v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb95ac34 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbec07fed v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1ae4506 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc66be4dc v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaef64bed v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf5374b3 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4cdf57b v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7c39e00 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8c1cec8 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba396b8e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdd273fd v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc026ac02 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc109098a v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5e43d39 v4l2_subdev_link_validate_default EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc85126ba v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc91d7373 v4l2_i2c_subdev_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf45acf1 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2ea6a50 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5267ff8 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5c4f506 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce70db1e video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf6cccaf v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd13f7837 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8b82dcd __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda0c77f7 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde50862e v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe25166f9 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe25e4eaf __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4324a5d __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe839e5ac v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0c6e3c7 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedbb762f __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0d3c60c v4l2_event_queue_fh 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 0xfa0937fc v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb1cdd51 __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb4cdb5d v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd5b03c1 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x451df923 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x816b5bf0 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa344c98d pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6bd646d v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6c376e4 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x23e0b74d pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x43a9cc2c pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x72bce959 pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x027a5d8d wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e5ee3aa wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01d11c18 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1091a267 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x17827afd arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x17ca1e23 wm5102_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ba414b9 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x318503f1 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x36421504 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4007fd3a arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x41429cc1 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x27421762 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4500099b wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4509d061 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54f2df6f wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c44885a cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7e5f6afc arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6270dcae wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72cab63f arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c89d64d wm8997_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9cf6777d arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabd1dbea arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa9a18b52 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xac1b84d8 arizona_set_irq_wake EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbc11c8fc wm5102_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9ab0a71 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xccb877c4 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdc8f4d46 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeedbdf44 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf0ffd21f arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xff2909b0 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1bfb1824 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2807c96b atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0af0a193 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x30d55006 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x33f02f75 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4cdd9efc da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5ae541fe da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb33a335f da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcde29f65 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc0a9d749 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc5f35eeb arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xea994a1e wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf3467c73 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf7c9d9e3 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0a696eec atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xadaccc2f atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x25d49ed7 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4e18dd1b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6268c3ce da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x741ab464 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x81651a4c da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe3bce3f6 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf7895a23 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 0x3280a634 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x402a3e2a kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4beb0a84 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x60df1fb4 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7509db44 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7dd756ee kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb0305c60 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd43fcf0e kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5a21ad1a lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc38ce428 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd2fb2bc7 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x411a694c lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x514cfd7e lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x53bb03f3 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c56eead lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93627c80 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc1a1099f lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2a8808a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x381f016f lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4ae5e7c7 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5b3f0c96 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0524c934 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05291574 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a818cfc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4a48fafb kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4f844639 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5e551ae2 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8bf4e714 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x997ae5e0 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb853e8cc kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe20cfdda kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x108863c3 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x176a6eb1 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x22e4b973 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x13362426 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e07e422 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x55ed8392 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fae7221 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa49b3e0f lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe082c715 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xffe3b604 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x49772c29 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf63285ac lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfe6354c9 lp3943_update_bits EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18023e01 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x180fe241 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f8325fc cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f8ef9bc cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3756524c cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x375b8e0c cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44d26f18 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4611d438 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x461c0878 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46976eeb cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b37230d cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b3aff4d cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x67aadf5b cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6cb638f0 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6cbbe4b0 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74634f40 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x746e9300 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x815e393d madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8cd27ef4 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8cdfa2b4 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f92e125 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9c6a116d cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa11e028c madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb4b85ea9 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcfe763f8 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcfeabfb8 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32443f2a cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3249e36a cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d518269 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44dbdc33 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4f00d6bb cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x55209404 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x71712226 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x717cfe66 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89c01392 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89cdcfd2 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x91156422 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9118b862 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9f9c39e2 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2d39889 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa6947fdf cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa699a39f cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbbb288ea cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbbbf54aa cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc5e783e8 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcaf50e9e cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcaf8d2de cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd220792e cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd22da56e cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe5a162d3 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe5acbe93 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe5ca2f98 cs47l92_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x536ff62e mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c2eb8d3 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7897b44b mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87b644bb mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95b9b1d3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc70c0f9b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf88795e6 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf88a49a6 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x55ab0695 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8fd59418 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9dda6170 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2f8cfcb mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdd602a50 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfd42dae2 mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b68f59d pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3ae97af2 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c558669 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3de0b3c6 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x46514bd6 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4922f75b pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5542e55d pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x823eaf80 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x92b3fcac pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9f00d7a pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce0f1a3d pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb06faf5 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2e327131 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4c13efb3 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x071af0ed pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4f3e1d7b pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x80f208b3 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x83389ae4 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc3964f73 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3890fa29 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4c4f8f6e pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f0874dd pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x595400d8 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9414a975 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb97435e3 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc5a792b4 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc7dca88a pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd51f52a7 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe45f7271 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfb15256b pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfcfd4309 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1770464d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdaaed6dd pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x06d21cbe pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x41dd8403 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbc78308b pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc6bf6884 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd1d1be83 pcf50633_gpio_power_supply_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8a3e216d devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x818af98b 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 0x0631663a si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d654001 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12c5e93e si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1316147b si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x163dd194 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18903d9b si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x219398f1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22d1e671 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x256026ef si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a7e2256 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eb369a0 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32f372df si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x379e2374 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38467f87 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58abf5a4 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c6f3ded si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60b747e2 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6159a8d2 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b79be89 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6eedb844 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96a5754d si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96ff7d90 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9bbd5bd si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb1cab532 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb262f4cd si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb985c871 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc03952f2 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb13bdea si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7cb59e1 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf9b4416 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe09551f7 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb922609 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc247257 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfed775ac si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x17b94bf0 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x25a10e01 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8e3f2501 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb8e15cec sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc8098a73 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x295fdc79 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x23c2a071 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x9038590f stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37276294 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8f1fc4c9 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x97db0362 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc92179ae am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0e0ba37f tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x1073b594 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb2785d05 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xec2ec1bf tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2b3c14ab tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa0e70fa7 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb8eb2a37 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5233513b ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x593a97db alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8b92370b alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb116f6c6 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbb69a32d alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd2308e26 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd428d35b alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdec45396 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15bc1f09 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x161558a5 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x16e7ad75 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1b8b8fb4 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1bca8c9f rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x28d79405 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c2c6b54 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3414885b rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d3a0b1a rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4051b6c0 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d6435f7 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79157ed5 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b2fd15b rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7c4a7419 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85e21287 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x885e5230 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a084b02 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a632d78 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1bf1e97 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc024bef6 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xea630dd5 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf304ff7a rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6b08310 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6e74522 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x227192c4 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2e1f3bb4 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2eb06968 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4e305ab7 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x52156d8c rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x58f8e43b rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x608b4c95 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6577fccd rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x764f516d rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9a3c0038 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcc976324 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd58c9a5b rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf18849d8 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x40d295ab cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x599590a5 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbdee34d0 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfcc71551 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ba5a518 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0eb31f0f si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24a4f26d si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35c9bbd4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4019e3f9 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x475d5aee si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4de31aeb si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5143a849 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x57b0b2c7 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59dc0e4c si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e6412f4 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65c4e993 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7258b764 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74654e19 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78fe84d4 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f8e2361 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87dfc4da si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92c4b71c si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b68779c si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c71cb36 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac8c319d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb156bed3 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc5fd7bf si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xceb6c628 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd745956d si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd235590 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe088c1aa si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe58d7039 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe86f52e1 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed2fed41 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedbb5b11 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4df3516 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff89cb22 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xffd14f39 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2c3c74de sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4c30b28d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x70983f83 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9d6b1e61 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xca16f6e8 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x9cc2096d sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x54f4246a stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x5bbb1926 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0cdace94 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb6d9a9f2 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcd9ed388 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe1c2b7b9 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2a10afec tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x7080fd1e tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe06d9ebd tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf03bb6c7 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0f0aadc3 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd1cf928d tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd7a591e2 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x3b5c1d81 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5aa57b61 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5f2b793e alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7a916dcf alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9dbb74ca alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc0c95f12 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd0547b4d alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe1beca07 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x00a5cd7f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x03d7c30b rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0f3ee241 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x13901dfb rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24799269 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x32e6cec9 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x45080218 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x46873ee0 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x542bf2b6 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f4af7ac rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x68a944ce rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7873fd1a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7a4772f9 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80b67b93 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x862a1e8e rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x958c2bec rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9834eabd rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaaaa1a7a rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb4c0fc1b rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdc18f3e9 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe5260a34 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe5fea621 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xea559a41 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf376f59a rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1a1536a5 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x31e46da1 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4110a78a rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x462709c1 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6d4196be rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f4ffeba rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x73901f17 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87f9fd25 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8c2d5ade rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8f619184 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x950fe433 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa789d991 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd03c430e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x03e7044e cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x55d11b64 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5ee8e7f7 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x79467b53 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 @@ -14750,2963 +14752,2967 @@ 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 0x2a8647a9 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x575296a8 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5eb15943 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcbe2aac8 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0139866 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd4720463 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6b59f51 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfec74470 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x026e62ee lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17706839 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1954be84 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4715c95c lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x58d2f172 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x65e92b5a lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x84be0bc4 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc4524cde lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xfa978082 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x034a67e6 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6a4f4c7a enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77df8bb3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9daa2079 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaf9aa299 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd928d076 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeaa33a6f enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf331f61c enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2916d3e5 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x39ab88a0 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4e2d885b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6deae76a lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc7897c1b lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdca1edec lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xde43fa41 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfcc18388 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xf077649a 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 0x204e979d uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x265589bb uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8b528cc7 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb405840e uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc57548d8 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xea779427 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 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 0x47da3e6c 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 0x73cc6ec1 vmci_qpair_dequev 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 0x92be94de vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x91e10ddd 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 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbfa633f1 vmci_qpair_dequev 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 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 0xe1f92aee vmci_qpair_enquev 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 0x46f38359 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc98c045d dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd56a429e dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0e025e38 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0e5d5d65 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0eab29c8 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe3b81257 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x75dd0cdf renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7bde69af renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0a98124c sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d1b9afe sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10886c19 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x120864cd sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21227aea sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2869d397 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b02d702 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3e713128 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4194d9bd sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46fee32f sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49a2e746 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a6a7ca2 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x572b9d30 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x592e88d2 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a766884 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c52566c sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5cdc4ec9 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6521185a __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c8e0154 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x777d23b3 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8653dcd9 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8aebb3e6 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d6695ee sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8dd4a806 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x978e7c91 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cd6aaaf sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9fbcd068 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa8ff6e4a sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa92e3ca9 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa68aa68 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb671681a sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2dc08ff sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6296ad4 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9a94b12 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb8b27f8 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf411c40 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd19e0534 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda47a621 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd1fd39b sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe050f827 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1da2bf1 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf61bd9cb sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x027df0a9 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1a9eab74 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2a610e61 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x39e73dbf sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x543910e9 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9a0e037e sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe2f2ebab sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5c9bc6a sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xea7d7d74 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0598dfcb tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x101638af tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4c5feaf0 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x56cca223 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xec758031 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x2ba5d47c mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x5343ca30 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xa456f69e mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe398daaa mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xc782be9d renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xe9ed9a48 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x032ea37b sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ad2d42a sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e63e219 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fa658e8 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1dcc694c sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25cbea23 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x26fe13a9 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a16122c __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f87a86c sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b986d00 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48eb8fb9 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x528950a7 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53d69fca sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5db6081b sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x65ca808e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x691c4b08 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a8d0e88 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6dcf5568 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6efb5100 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81693361 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fe4ffdc sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9969d37e sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0331e7e __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa047d036 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa05fb524 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0cc6bb7 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4ccd010 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa6b73f92 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6314e14 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9b45974 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc250a069 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd7e74235 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda39a84f sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdcdd5437 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe48807b5 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe72386d7 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe84aaf20 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe854edb2 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea650801 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf08d37cb sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf28a5df4 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd0ca4e0 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x13f784e3 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x16413410 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x720ae5d1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9b64da82 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9bff3f9d sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd454b4be sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xda3e012a sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdb180fa6 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdcb225db sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0a8595b6 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0e6a43d9 tmio_mmc_host_alloc EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x485e9756 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4a8fa440 tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5d9463b7 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x841b0f67 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x86fb436d tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb72adad9 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb984b9ea tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/most/most_core 0x2113d5f6 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x36610453 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x62383137 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7255b7a2 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c337e0b most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8c7f8033 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa202ff6b most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa20a6dc8 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xae4d3e5d most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb28c7389 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb404d9b2 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbad4bb45 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbbffe5dd most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd9e3ac53 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x00d9cd90 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ff0e878 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc2eecdee cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x20647a8c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5e36315c cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd39db50a cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb1a31c0b cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x28ddf3f8 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3679a62c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x49db7ba6 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x286fb225 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x496e8970 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00376067 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00ce2660 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03691854 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0838f41f get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c805491 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e5974e8 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x178493ff mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x187392df mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18b8514d mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1bdd7816 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30441586 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x323432d8 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c0e538d mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3dcf8cab kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4db8c389 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4dd033dc __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4def5b24 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e1e47ab get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eec7d55 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4f2733ca tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x697b203e tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x70c362ee tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8ee42789 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9b4c0ef6 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9c75fae1 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd0860fe5 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/most/most_core 0x185daa6d most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1c453da5 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x32e4e1c5 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4f0ff156 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x59411796 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x79c11b91 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x806d9044 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8c9eeec1 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9743ad1a most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa3360b1b most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbd17cb98 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd941d154 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd9a6e893 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf5641e70 most_start_channel +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x13044c63 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2c2d698b cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xee1a69f5 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0c90de97 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x72c29547 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xff691111 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x9d57b810 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x005ae75a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0fff57cb cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x71fa6b4f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x48c44c14 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6dd10a93 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x013ae1d8 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0976c66e mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d95ba62 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10235e02 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x12b2df21 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x130a9daf mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13cbcda1 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x158e69cb mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18138d91 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18c700b4 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a7804e4 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fcbac7c mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27ab25d6 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d1174b4 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ea68137 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30f4e20f mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x31281cd4 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x340996aa kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35d0c893 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38d27bcf mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3bf658c2 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ebf6160 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fb12753 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45f1f9ce mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4689b282 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fa701f7 mtd_erase_user_prot_reg EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x522d055c mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54e8dafa mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57492788 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x578752da mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60d64c86 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d1e69df __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f568798 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73e25ad0 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78bf5320 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d65bdbf mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f89357c mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8826a574 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88a6dfa5 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d98051c mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94990559 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97e768c4 of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ab5c7a5 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa36bf6fb mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae7b2a90 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf23956b mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0dd08c7 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51260960 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55fa8ab5 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59d47a29 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5bf18807 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5cfc3733 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79249688 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b9a8eeb mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d0aa5ff mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83b298f9 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88dc2ff3 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c9ead8b __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d91afc1 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e686f50 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92e4940c unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c83a943 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f0f2d38 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa157ae1e mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9a676be mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac8faf54 mtd_add_partition EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb94a38a4 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc02b67a7 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcada15d9 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd19bc30a mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6ca7436 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd856bdaf mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8a4dfac deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8e12caa mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9486a3b mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2ed22ee mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5c0e09c mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed116748 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef214525 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa84394d mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2a0b11c3 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5b8f5345 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6050a435 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x767a47b5 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9269c24c add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x164ade5a nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1aff7a8d nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x27f8cf1b nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ac22dfa nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x443139fa nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x454e4d41 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x78d6c61b nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8134320d nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8271df81 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84ff7292 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x88e18071 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89a9e4a6 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91f93cf3 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa087390c nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2bc948b nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc305f15f mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc4404da6 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd76532ed mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd7d66951 mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xebc006f4 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec893921 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf4cdc7e1 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf81ea242 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf95145c6 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd552854 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdc1cb9ee onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe22567a5 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xaa2d70ab brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xae4c1fe5 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xd80ffef1 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x01b758ad denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f0c641c nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbaed18c5 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4045344 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8c0dca7 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd60d6d1e __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd953b12d mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb46d27f mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde8e8866 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee6c7c49 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2924274 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1fbee3d5 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7cdd4d2a add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc6fa691a mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcc4d1946 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd953c7c8 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x07345242 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1ce623d0 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21e2db85 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x239343b7 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25d8d107 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25dc67ce nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29be1288 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x395b7cc0 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3ce0ceb7 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x538acab1 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x53a5ef7c nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x53de0e05 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x58fd4ed5 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cb09de7 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x62f3e7db nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6c2dfce4 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e51b469 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9a79dccd nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa72a96fd nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa7df7fb4 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb05e31c9 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc24fa90d nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd46e86b6 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0cb0600 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf3972a1e mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7249bdf1 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdd097451 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x8cbe13d0 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xd5e3f49f brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xe6e34bed brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x12196f13 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x010002c8 nand_read_page_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21290dec nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x224ad5ae nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2cbd911b nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d169345 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 0x3a2f95b0 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3aa8bf88 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3df60786 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x417d9eca nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53069703 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x54d4d89f nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3f4e36d2 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 0x62ab885c nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x655ad3dd nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6af9e5f2 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b1f7984 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7c0cbad4 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x942641dc nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa7a93d88 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb30979c1 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb66d06f8 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb753d33a nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcbee5d30 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5ad6a550 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8184edd1 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x828893a4 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9f03d3eb nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaf81940e nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb44030b4 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb9406744 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbfcbdd09 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcaedef86 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd04c98d2 nand_ecc_choose_conf 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 0xdb7817a8 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeb0280d8 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee510867 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf596a60c nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc6025a6 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xfc11a858 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x008e2fd8 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd9ff6f65 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x08f20a13 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x102064c7 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1e2aa068 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2adbeac8 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2edf5d04 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd435d486 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd4e3e910 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd742b0f6 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd952fa33 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdabb7452 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe3212f16 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeb73c8d3 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee42bbe2 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee653b1f nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x50471bb5 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x4e0b1780 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xb6e6a6e4 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2322d40e ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x26be6f30 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3156a18c ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3868cb71 ubi_leb_map EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3e90cfb0 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41fbbb5e ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x517eb58d ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6426713d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d25fb30 ubi_open_volume_path EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x670751cb ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6c8e2f38 ubi_leb_read EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x922fdc73 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa36ad6c4 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa52a70b1 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd80f880 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe70998a3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x908bad39 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x995ccbd8 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xba810816 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbd21e904 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd5127169 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe21057f7 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xed8bba2c ubi_close_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x116f0e2a mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x166a5baa mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x16eea538 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x480b4ae2 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6048d728 mux_control_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x656e35dc devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6daac12a mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1b4d7c58 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x23367a68 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x270575d0 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6452ec75 mux_control_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x919222ac mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa138ccb0 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa95460f5 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5313aac mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xca549e50 devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4f4d4de mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8111a9e mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x835a7453 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8b80d40c mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x954e76ed devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb5570f0e devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc19f83b4 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcb021eae mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8a1dfff mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xda5ddbd4 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe7f60db1 mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x14c4f5dc devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5f3d2770 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x095eb1ea register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x47ce2ad5 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc2a24419 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc4de381d c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcbfafeea alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd4a6b92b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x05cb15e7 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6e6b7f11 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf32d00a1 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xfa7314f3 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0531ba25 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfe9df675 mux_chip_free +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb4d8b1a6 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdf2fef16 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x17ad4488 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1c7cdf68 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5160947f c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x638c7d2d c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa32600c4 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb0515eb6 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1d5dadb8 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x847cb8c9 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8c253393 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x97e3178b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0480dee5 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 0x145b48af alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19b6f2fc can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25960e52 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x298151f3 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3584f2ff alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x392d0398 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3fad1d69 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45e59571 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4cd8def3 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56b0fc93 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b352c61 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1106caa9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x123f4cba can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x151f257b can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2658054d free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2985b2ea alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2a0cae89 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b23c71f can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d1addcb alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x41bf79fb can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c3977e3 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d861daf register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x590f065b can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ec8782b can_get_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x625322eb of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6aed00e4 can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d5332d2 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fc3ffbe can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x873cad7d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97316b8d can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99d5c2a7 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaf053a1f unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb031d306 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2a94420 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbebb17af can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc369dea3 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3b6d890 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcbff10e8 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe02663e1 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe028ea35 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0ee2b38 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe16a64e4 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x69841579 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c50a056 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x798a091c can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8469f020 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8a61b8c7 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8da3dee3 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x936e0d69 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x982848a1 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9903aa9c can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9c0415f7 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa9cac1da alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb951b626 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd293bc6 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfb06f1e can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xee58c801 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeed1d320 can_rx_offload_add_manual EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfccf5de0 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfecfa198 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x084a6bb3 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1f2b49e2 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x36c87230 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9ba37925 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbdee2410 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcbe876a7 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcdeaa4bf m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xceb57e74 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x020e91b9 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2671ceea register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf1d226d8 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfb7a3753 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0db0a9a6 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1c117f16 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x374acda2 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x643b6268 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7ca10056 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7ca19f9a m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaafafcbf m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe35727c0 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x241b6472 free_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4dec74c1 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9059734c unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5750b9d2 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x0163216d ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x74767589 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1a072042 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3a49fd08 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3c1c7190 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3ee69774 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4eb093ca rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6c1c7679 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x82748f91 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa14a68b4 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb6668bc0 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc0faf741 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe7aa09ae rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf18580ab rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x356478c7 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd6e058f0 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x0c787558 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x10c4df36 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x86b68d65 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9a03033c unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xee8c230f alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfbc4d16e register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x3d6bff9a lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xcd2ef2f4 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xe93ff8ca rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0eedaf14 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x15a08c8a rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2b76fff4 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3d9a8966 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4fd077a4 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5b86390c rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x68912370 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6be009b7 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8baf62e1 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8c3ec9e6 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa3af1a37 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf35118b1 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xddec25e0 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xe1fe47f2 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5de4f8dd enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xa316e9e5 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc1547658 enetc_mdio_write EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x38d090f6 fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x44e1fecd fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x582617a6 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x77cec209 fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8e782495 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd75e96f8 fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xda972598 fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdad2983a fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdddcbf23 fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xde9395ac fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe13d70a9 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x06d43432 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2d584f91 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7d59804d ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb336038c ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc92895ff ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcad97796 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xec058099 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x332cff5b otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x641d00bb otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xad6b8275 otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xe0e76dd3 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x020f90aa mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02163016 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03791b27 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d72bb3 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0810489a mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08b088c3 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f6bfb0 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fa5c790 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x138e6479 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x146f1784 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e7706d mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16fbd73b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189b3166 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x199b0f4c mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2d84f2 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b63880a mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c369022 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c890703 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b44a08 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x224af711 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x230bcd77 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23f11289 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d9e815 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2834c049 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28c0d6e4 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab1790f mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c8ad362 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1ea88d mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f866655 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f899c1f mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307334c1 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32f7528f mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39931f1c mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c32ca99 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cfb041e mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4024b922 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4304d7f9 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43bbc416 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44681359 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47465aea mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc432f1 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db9540c mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e69f5e4 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55346a3c mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5818d467 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58af484f mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c3ee8c mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dd4d85b mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f2a5f8e mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625a1566 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x650c5c5a mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66dbbdbf mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x676b42fe mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68035c38 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x685b82a4 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c5f1ecf mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x728928d0 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ff1adf mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75843de2 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e827e8 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a32702a mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aa9178e mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c72637f mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd628c2 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80ca383f mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x843c2763 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x859f15dd mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d81da8 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85fe2ef5 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f3a49f8 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90029c39 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9157aba7 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95226efa mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97846bb3 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98519f87 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d39726 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9963849d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c08ab5a mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20b1719 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa230db21 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32bcb28 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa47b39dc mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3e166a mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaab6c3d8 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac0313ce mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad9242c9 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae700ac6 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae863dbd mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0994fe2 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35c0ade mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3961b4e mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3da1fb2 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6bbead2 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4d62bf3 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57251bb mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ab71e9 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7be370b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca07af60 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1909aa mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc14a583 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccfd9f5e mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd5aa7ee mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce43be2b mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf6d5c16 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd389eb5e mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a4f6ec mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5667ac7 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9509930 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9602489 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcbe2f07 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4a8171 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd8d540c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7bb9e6 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1722998 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf305248d mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55f13b5 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65fdf0b mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf890ef6b mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf937cfdb mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae76aac mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff088385 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00702342 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023c9d08 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d643d1 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x04d6c028 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0c10c15c fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x1ab05b9a fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x1af265b3 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x2cc8d286 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x340341eb fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3aa1edd4 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x88b065e2 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcbc1b179 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcd390ae2 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd6f2fa3c fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1a2a8bfa i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x3b70815c i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0dc8c166 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2d649ed8 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8c2cdd68 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc639c8e6 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfbd9f74a ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x3efe6659 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x58530be8 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x662c6c48 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xc56bd7c6 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x022e981d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02a68d5a mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0363b0c0 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03c6ad84 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049f869b mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04c8fc28 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05781ff4 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x070837cd mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0999ffa0 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09eaa0b0 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a0dc0f1 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ae00cf2 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b8eafd9 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cd44df9 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11a64191 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x130782a3 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15364aca __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15b534a4 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16c22efe mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1704676e mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18afb317 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f17790d mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23d04fc7 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275bb443 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29b8ccee mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d0762f0 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f97a251 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3020601e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3119d1e2 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37a3e218 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37d5079f mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b46cc1f mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b684a15 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b869540 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de2709a mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x451d0a6e mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48ecf73f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a754b0d mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ab002f7 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4df31ec0 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50134b9a mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x526690fc mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5472ba10 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58796ab2 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58bfadc1 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a73cb39 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e4b02e3 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6043edc7 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6116507b mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63452369 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x643b7ab7 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x651b36d1 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65718f67 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67bc11b0 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69aa4a2f mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a3d72e0 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b89db16 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76c12c61 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9f7f53 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cb653aa mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eb1699d mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f409fd6 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe99e87 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8060dcc9 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x828ab13d mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8457bee5 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ba1f5d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e0ec88 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86616ceb mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a63befe mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb2ddc3 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d000424 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d6ced5b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8de49dce mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9470b92f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9880cadc mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a023304 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9acf165d mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b8fab8c mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bc1ae25 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa01714c0 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa56330aa mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e5e5f5 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8a57c63 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa17abdf mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaed57d4 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad1505c2 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae156821 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4fe54fb mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8d5d09a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96b2c43 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb97852a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbff3fb0a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2c6d509 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3f0c241 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5833696 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc650bd2c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc92c532d mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca23052c mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1e2242 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7f1db0 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd20e7043 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4959cd2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6ab1a9f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6ba7e83 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8d3a8a1 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe264138e __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86dc5d4 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8970583 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8bec301 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8c96297 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9bf3d89 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9f1d16c mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb9fcb59 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed8aebcc mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf445b2f1 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4926710 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4a0903b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4fd48bd mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf86d8075 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb549c11 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x001fae5b mlx5_vport_get_other_func_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 0x09ae9fa5 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b3fbf69 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e87bbb mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x172f24e4 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ada82bc mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d461b0a mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e58b85 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28417169 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a19662f mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c25e949 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a3a89c mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ec9187 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35e9270e mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393b2580 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b8081a3 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e6c3afa mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48410ba3 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ace59e6 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e3d1557 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51998e7c mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x539b0361 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57882dc8 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597f5029 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b760965 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6048846e mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e2d1dc mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74270f26 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77a8bd05 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6db8db mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x130aeae8 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14bf60ea mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e3778d mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e924d2 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16b34213 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bc96a57 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2527ed82 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x295a3172 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37770760 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a613feb mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c56752e mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f752e21 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4310de90 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x474ede16 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x492e9dff mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d835925 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56428c28 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588a9c9e mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fca082 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f085a7e mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62a440b8 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6681d337 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x677f2c3e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7010952c mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aff933a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7df6ce54 mlx5_access_reg 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 0x8c7be71f mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ed68e67 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eeedcef mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945841e3 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9462b545 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x989a52b4 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9932b7f3 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99866341 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dfc8269 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace22325 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadedc897 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf19dc89 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf678930 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafb5c8ba mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20c3199 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2344aa0 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb44f9dc9 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4a4deee mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4b7ac85 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb51bee34 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc38c0b00 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c2d2cc mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd293d99f mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d70e68 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd67ebdca mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6944e02 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda85760e mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21ef2cc mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe303f779 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe33c7320 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe93ddc8d mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea4a9a97 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xece23c85 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4fb2460 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbcab808 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfee5a13d mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x23c6690d ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x536c5e01 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8ec37d3f ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xcf70caef ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xa55da5f4 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d50932 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a5236fa mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bde6560 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d502ba6 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec78aff mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x902e4e0b mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x920b8322 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96493245 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97a6f282 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce62607 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8851d13 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb02e10d8 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb44796c7 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb823d119 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83df511 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e9a5b3 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbccdb41e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0400beb mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc13553f6 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1927283 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbc53fe9 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8b7467 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd29fc582 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd313f73d mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd47f59ec mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda7c30ad mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac5e679 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb187a87 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde0e5ced mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdea016d6 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfd02e97 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe19c0feb mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c5ca61 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe463cf8e mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88a7f7f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe97f398c mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd6712d mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2a89cde mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc310eff mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2718658d ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc4f5d03e ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc85db0a2 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xecc0c1aa ks8851_suspend 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 0x04ea04cd ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x093c808e __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f391e43 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x129029a7 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1304ef2c ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1356b493 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15747db5 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a6f7c0f ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21f4823a ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x245edbcf ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2af04ba4 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32baeb83 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34f28220 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36f6affd ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a965343 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5192a067 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x520d4a46 ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61ac2413 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b706856 ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fc2a2c5 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x739abe61 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73e86a49 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87f125b2 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e500a28 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4fd39d5 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa73ef6ca ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab2a1ea5 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba392a49 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb28bbc6 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9db4ba8 ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde6f3858 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf3ba77b ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9ad233e ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3b0ddaf ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb037a23 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdcf0cde ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff93829a ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffe779fd ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xfeb4ce7e devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00e109bd ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07bea309 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a1cac95 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11586681 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21b6c1ae ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a36ab4a ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e8824ef ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ffd737c __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40a9b3d0 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x459e1b5a ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46c1bf3b ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a7b2539 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x582c447e ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a5cacc2 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f278f23 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x602efedb ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72290128 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a9c2adf ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95f66489 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b5baeb6 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3b71b1a ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb219bb29 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb69070f0 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb74fea63 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2261aa9 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd40ec392 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4bbd24c ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6897da4 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcd2a2f7 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde759527 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe29f79cb ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe86ea7a5 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec87a383 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed9cca1f ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedb861d9 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef75af68 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1cbb33d __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3e9178b ocelot_port_get_eth_ctrl_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 0x27a28ac4 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x330fb9e4 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x39c88a45 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 0x56fb3d66 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5bc01893 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7b702eef stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x58134efb stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5fb92984 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6ebafca8 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x91932fd7 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 0xcf05e081 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1ebf9328 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x61f6b926 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6a0fac34 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0c70c1c stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf26ce684 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x041d9e1f am65_cpts_prep_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x180d96c0 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xadb6e161 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x17e3007c stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x19959b2f stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5272dcec stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x70c1355b stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xce13899b stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x1eb4e9ff am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x32720b8e 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 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 0x93fb6531 am65_cpts_tx_timestamp 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 0xed935b08 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x37b8ee8b w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x45c3140c w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x92a8068b w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf63bf1a9 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x87a0d19b geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x302cd54a ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3a707fe5 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4aff5ac8 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb31e1244 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd710a385 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macsec 0x9c729b5d macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4d8ef706 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x55880d6d macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x848a5c61 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe0dafc4a macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x74d760a3 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x4bd49295 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x742c3c98 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7976aad9 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb86d53e4 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc65866a9 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xb29825db geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0663f511 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x569d4387 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5832650c ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x97e062f8 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd86cedf7 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x89b3f2a7 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5a8e7f9f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x628c61f2 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8593bfbc macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x94c68799 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xc3ec8bd4 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xbcd2935b net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcaf4cca7 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x376c5061 alt_tse_pcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x184c5877 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1d6faacd xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4a7f563e xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5c105aca xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xdff2f4bc mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xb2e3215f net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe7b2cb9a net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x18275002 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x327895ef xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4aeff51b xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x95e0ae17 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa60db27d xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xca1b4e1d xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf9145512 xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0517ead5 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1aac6609 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bd2e604 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29085892 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f9da003 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ed8f968 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x437bcd46 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4733deb0 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5018b374 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5317474c bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54f3c5df __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x636b261a bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b17cc9c __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87e86a54 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98a78dd1 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x995494af bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa755e04b bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8ce015b bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa90a492f bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf132497 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3e3d314 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb45d23f2 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbdabb94b bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0c615f9 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcda8d470 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd02d4e06 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1179db6 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd4f1d462 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda12da6f bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe211ac86 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec095c2a __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf2b53878 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf3234da4 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6ea6e99 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x671432fb bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x6f604991 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb9d718c1 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd8f59049 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0390ed5b bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06df710c bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x11d02b77 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x156db25e __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1584cb58 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16f15c6c bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16fcee65 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27f6c272 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2a3c6d21 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3294e816 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32995a1f bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f56a136 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4673b527 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x478bdc89 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a1a780f bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d989131 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ef20195 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60216b67 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67f46c8e bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c18f7e0 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x840b2b21 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x887762a1 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e86e819 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x901745a8 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97b6bcce __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d2b41b0 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d3b7ff6 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8067304 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbebf92c bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbccac8d7 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbff151b9 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2fe05b3 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce2c79f0 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd95902e3 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7df04afa bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xa4a8e840 bcm_ptp_config_init EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/tap 0x04737543 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x2952545f tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x62b2d58b tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x646faeed tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x75827b9c tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xa7cda475 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xa8a9b907 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xcc3e3978 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xecd4b8f9 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x099ec1f0 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x89e09636 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8ce20838 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb182e791 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb843aba1 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4493280 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xee59ded2 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x02363db2 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0e1c3518 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29edf9eb cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5adce230 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60103f21 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x612dc9ec cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f91aa18 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f0b7fb9 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa74ffc73 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc4f53ad5 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdd4522eb cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x42e495bd rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e331220 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1dbf59df rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2b0de37f rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x42f6181d rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5b30ba2c rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb8ee5e6c rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14cef696 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x153a6a6c usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18d3004d usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1bcfe242 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dc65f91 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ce72b9e usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41a4aa25 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b5dc962 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e9f2a90 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x610e01da usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6deec273 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6fcc946c usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b33df99 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b768512 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cb567b6 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x800c776f usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x894b5dbb usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96ef6fb9 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x972ec277 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa49eb0f1 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9de0244 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1e01600 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb62ab859 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd8f9c39 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb2fc96d usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd47eb34e usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7adaa9f usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd888cc44 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddbd2042 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf9f59c7 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe1e60ea1 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe52349aa usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8d650fc usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9199fb4 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x17939e60 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4eaf229b vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5df5a3f5 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7e789bbf vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1452d69a libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3213d6d3 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ce0d85d il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88dcb0b2 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf396906 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7b4a069 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/tap 0x077e5fc2 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x16c142bb tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x4d56f052 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x54aa216c tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x5effe071 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x81dba7a2 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x8bcd2084 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb3ca0ec6 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xd948cc2a tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x34558f34 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x38aead1a usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x72b69a2b usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x75d12be0 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa1302cf5 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xaf2d4fc7 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe9e066d2 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1791218c cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2524669c cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x31f06919 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x54fa9a27 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x67e9b606 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x69fbdd25 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b3e9997 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc5105968 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd121f494 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdaa8633c cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe1953656 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x80ff3580 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35621642 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x47349afd rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9132de8f rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9b3d7e29 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc207ae36 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcbb48784 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ab63d7b usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11c93863 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1273b0dd usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19c3d45a usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b6e2e5b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2088b709 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d6a8304 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a7bc3f2 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49845ac9 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b837542 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51200db5 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56964de8 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5864dbda usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c33657c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69df2691 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c800080 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e415602 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71a4b3d0 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71df09c0 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x799bdbe6 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x899cfac4 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9350a393 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x978a36ef usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9eb02c17 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa126d23f usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa589865e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabf22fc5 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac2792f0 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce68a0ff usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcb4b3ee usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe1bc79b6 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef4a4ba6 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3d202c5 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa8b4b8e usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2b58f323 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4c473bb1 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x8a6f9cdc vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd75b75ff vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x0de901e2 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ab1ce0c il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22be5f9f il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62bb5610 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90552c7e il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3f84664 il_remove_station 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 0x06ee79d9 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2123940a p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x481b3522 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x543868df p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5e86c69c p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x72625803 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc256d3b0 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcbc7a62f p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe1f0bd80 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0cc52946 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x136e4fcf lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1ce1c872 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a063a16 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2e5d1acc lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x58dd795e lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7172180a lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7b0bb054 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x85cb48e3 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1c58b4b lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb332ae09 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb7d12e73 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc99a89f3 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd1e91b5b lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd81511fb lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe02234ff lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0c2186ae p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1bfba18d p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2b195d33 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x33fa9ca4 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x47ed01b7 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x51d4abc9 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6bac7c76 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb6cd28f5 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf261a046 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x035cc24c lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2bcdf569 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c3b9a5a lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3748ae10 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x41f336dc lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x49f0175d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x54d81c6b lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x57de0828 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6127a64c lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6dc3b025 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6dc93ce4 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x71f86911 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c7d3d15 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbdf62204 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbeabdbd4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf4e95d38 lbs_notify_command_response EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1624a8da __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5418d1c0 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5e1110d4 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x874d9ad7 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8b5f50ab lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x95fe9f6b lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9640784 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb3687845 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x111268ae lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2a4562d2 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2e1efac2 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5dc4d425 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6bcf8be8 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8146ff6b __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbb94181b lbtf_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0871e66e mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0dea795e mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x112353f4 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3bedd9e0 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43002259 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x48d44c76 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a5cc506 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b500cf7 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4dcf6ce6 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e0eac76 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f1d65f3 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61e1bb49 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x630739b5 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70e38d30 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x73dcfe9a mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76a64179 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79684675 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c6a8022 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x89528c85 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c3a4366 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4ebd336 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9a7aeac mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf20ac8c mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcc7a925f lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0da8e6a8 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0df75b04 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0fc1de5b mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x152b4081 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x17081ddb mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f671f21 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2eb8dbca _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f0c0c7c mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52118916 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x707e7d82 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x732d5c43 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7449e7f7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79ca3196 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d137ef5 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c4f3ffd mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e22fa62 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2114e2f mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc3ed07d mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca44fe59 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcbe36cd1 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 0xfed34143 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0526baaf mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x093acdb3 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a0a6954 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0de24f5f mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f5e7981 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x102b0ec4 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10a49ca6 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x123a0bd2 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1598816a mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ccc92c __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda6b4e74 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf8f9b3ff mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf93228c7 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfa4ced62 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00e96757 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06ad1274 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x086b5be7 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0df8f914 mt76_token_release EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c0ecfad mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e05a0a2 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18c02836 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b36e1b2 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d155b8f mt76_init_sar_power 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 0x264a0325 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27670cf0 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d35110c mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38b85ea7 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39e3f318 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b1d0b7a mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x400fa304 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x458bf16c mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45f47fc4 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46b5906f mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48b636cd mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55233c1e mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57d08375 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b07f57c mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c5cc868 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x222d931f mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24714312 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x253f9d83 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2aac6ef9 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c20d97c mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x346db72e mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3573907d mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38e0be2c mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a45b18c mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e157a84 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40f5080b mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43950184 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4661a4ca mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47afd27c mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d9134d4 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5322c6a0 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55404076 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59000786 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ccf228a mt76_rx_aggr_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5effde08 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6646976f mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6924ea63 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e169b37 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f2a4a5e mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f629888 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f7143e0 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x710a9115 mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7397cbec mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e8c64bf mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f8614d8 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fd5aa4d mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66c7afca mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6852676e mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71e64987 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7234563e __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7429d766 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x749b09b1 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7531db70 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x755506aa mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76973011 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x791bd9ea __traceiter_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x831bdb97 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84bd0bb6 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86acbba5 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8967628e mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b2be432 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bb4ae43 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d92de20 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dd906ef mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f05d852 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x995e5ee6 __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b762feb mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e1ea22d mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4df0cd2 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa559c8b7 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6efe965 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9f8260e mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac39c956 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac5333a7 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf5932a0 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1bc6b4f mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb77955ae mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb793007b mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb367743 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd628029 mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbffbbb3e mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc41bd0c1 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81e17f52 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x821f57d5 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8303e360 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8308fa1e mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x844b0f4d mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84de48c1 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bfe864c mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ce09714 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9780669b mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x994f4d53 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99d92b5f mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0fc1d35 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa24d125b mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5738619 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa630e8ec mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadd0b5d4 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf5288da mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb043e7a6 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4f7756e mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc050f8ff mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc082483c mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3e316e6 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4c7d4ef __mt76_mcu_msg_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc647ceef mt76_has_tx_pending EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8e6bcf0 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0d3fb3b mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd23f6eff mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd662c8ce mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7a9ca4e mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda40052e mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda662ca2 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdeee5856 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf6e6497 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2356a6c __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc81b3563 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc97c5cac mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca5488a1 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcafc0fe1 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce0646a6 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd11a37fb mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4779714 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbe29a67 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd5913ab mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe24d9e45 __mt76_tx_complete_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe59a83cd mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeab110e0 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeda73d0a mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee54a764 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef54de4e mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf72ef03b __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7952340 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf843b4f0 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc969614 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd64544f mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff397f95 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06af16be mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07146233 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c90021c mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d2e6ab2 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d43a37e mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d5f7616 mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1282370e mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14ebd80e mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16918440 mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ceab2af mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1df49cbf mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ec7df48 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x215e17d3 mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x296e17b5 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34787d9d mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34b630b3 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x377bc1b5 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a23aa1a mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ba7f11f mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3bca2f3a mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f2a303c mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3fc29ffd mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4384c30b mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44751863 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x496dcf39 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a906b7d mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c668011 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5072e3e9 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50d2ad15 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a12ba0d mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5efd6893 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f9221e0 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65dccc49 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d760e12 mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72d719e2 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73b80d13 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7404f405 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75846cc0 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77e6ab41 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x785348d9 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x809f6646 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x816dd886 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8bd3216d mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5df5ba1 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe64e7e34 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed04f3f3 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefafc9be mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf02a1dae mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1056bf5 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf21635b1 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf797c0cc mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbaa787a mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd7da206 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x036f63af mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03af7c64 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0fc9a171 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a29ff1e mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dcb4ba2 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x216f58f8 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x27e8614a mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28947721 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2949bd56 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e9fbf2f mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41f7fdf2 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x435e0923 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x441bc55f mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46f5c6c4 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4909107a mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a47f7b2 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d76b07f mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f9baa17 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5170ed26 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5361b38b mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x54a9711d mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57014cba mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x577e5416 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x59b687ab mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b99dcf0 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e5625c2 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62071d77 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6271fc14 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6728ec5d mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ef2d930 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71338031 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7290647a mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x771e585c mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a261aae mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7aa1850e mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b0a7938 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f7c94fe mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8132e8ac mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d1e15a0 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ef12325 mt76_connac_mcu_uni_add_bss 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 0x9787cd61 mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a9891cf mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c9411d6 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ee78d78 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa0fd735d mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1c2f97e mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa7ea7c1 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xade38719 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb32c291c mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb546cf4f mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb678dc96 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb82c1a56 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1925f13 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc375390f mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc38b2985 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca1f5b24 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca7b1f57 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc1f8e01 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc321258 __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xddb443d2 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdee3ce46 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5f615f4 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6d64e77 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9e6ee9e mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0a7faa5 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1a7fe06 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4204eeb mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5db1cb1 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf669dae4 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf81aabc6 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff1b42ba mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2fb923e1 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x321c0617 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3e1c6b39 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x40c4616f mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4170bacd mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x704eb678 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x72063dfa mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8482437a mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8c712f11 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x94253041 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaeac165e mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb3df9f8d mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xca62d5eb mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xca92acaf mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd42392ba mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd969a3eb mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0acaaa1e mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x27427c9a mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x30e88ce8 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x33b05c9e mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4f867090 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x62a9b35a mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x70cae4ef ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x722cb224 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x770e68dd mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7e1ab0fe __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcadd7a80 mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdb6d6903 ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe0624512 __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf14f08ab mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05dd02b5 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x191f8b12 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20af3dde mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25c49435 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2c923590 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d786b5e mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x571e203d mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x610b9ad8 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x622d7da2 mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7661d867 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x78426356 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ad52cdb mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7cc1d086 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x825f769e mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d6b0b40 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xadb73e54 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb3dd2b4e mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb4c6457b mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7104949 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7cd9432 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb87f3bb4 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc20e9522 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd121095d mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xec0e750c mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf65055b0 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfabb01f8 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb244d53 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe94e5d4 mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x72dcf799 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x90a6fb28 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96c24c32 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96e5d7dc mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97d204d6 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa47d1425 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa4099f8 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1e29e2a mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb61addd mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb6af4cf mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1b311e1 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3994ab4 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc485c8c8 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc729677a mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9a5b8f9 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9b12242 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb37ae54 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcefe4a70 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd06c1c8d mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1949565 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd306deb1 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4eeef37 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd726d126 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9f42c13 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda76db71 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdccc1ea3 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe00ed136 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3986f65 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe46108a7 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe578156e mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea4840fa mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee0b649d mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2cc4b6a mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa0345e2 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc162586 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x00c192d6 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0dab2d55 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1c9cb5be mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1f3336ed mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3d678f75 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x449ad96d mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4557fe05 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x50155a52 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5e12d69c mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x701b0de7 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9d19cc3b mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbf761c5e mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xde62aa0f mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe740f08e mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xefbc0e41 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf6c776d4 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0c6dd9a0 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x252a525e mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5aab4723 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5ef70a7e mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7f6eab85 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x82d63336 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9539d017 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d820852 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9ff6bb98 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa2c45930 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6991df1 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd39fccab ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd5c3f114 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf8787187 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04e98780 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x07adb4a4 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x167e9b28 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18d88d8b mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ec0ed17 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1efbfbed mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2960a4c1 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2e9dfbd2 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ab8abb0 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x625bddb1 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x639f8852 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7634ff54 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8f985669 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x904a80c5 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa4f4c002 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa8d65373 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xacf46254 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba0c3fa8 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb9e6eb0 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbbe4d0a2 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc39be53 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc225f90f mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc978601e mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe4e00112 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe5626deb mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf090d7d8 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf378ca34 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xff95b740 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x4e74053c mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0a2b2507 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 0x34bd6e36 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x81ec9f8f mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xbf151971 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xdbe562e1 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0adeb3a4 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2712939d mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5d3eedce mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9765e677 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbad3f4c7 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xca2cdfc0 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe8debabd mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x052f8491 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07968df6 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10f43b84 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x246488b2 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25d635dd mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f309609 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x310e09ae mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x379efad3 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3aa59198 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b687083 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e4ee343 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4246be72 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50414ccd mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x536f3819 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56e1f13b mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x25f6bd92 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x71e5b572 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xbfc17f0a mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x100573f0 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x747e04d9 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x78162aa9 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9fd07f86 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe065a0be mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe460571f mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xefe45aab mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x002bfa10 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0269b836 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c74a309 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x144f98a5 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14a1a393 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17a579f3 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x197ad14a mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1aae32d5 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29c4f4e0 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c333fdb mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43917171 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cbd6575 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x508f8bd1 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x541bc573 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x565cf562 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5773111b mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57fe4fbd mt76x02_mac_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cb8e789 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e05029d mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62883258 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63c57e36 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6411fbfa mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64c4d746 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69f83367 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c6b193a mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d03c8c3 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x601ea5ee mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61b797ee mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64abe72f mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6532ab8b mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x678d4a59 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67c66bad mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b94aeff mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bc80d6a mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d241c4b mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d702b8d mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e6c7ac4 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ff5b86e mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x733bd1ef mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73ab1ed7 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x746384ed mt76x02_enqueue_buffered_bc 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 0x77ba7369 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x795a3f21 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7aa5dd1d mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d1988dd mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x801f4763 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89388661 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b764f9e mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x905a098d mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84d2917b mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b7c97d4 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90e07998 mt76x02_mcu_parse_response EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9381d370 mt76x02_mcu_function_select 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 0x962cbd31 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9719b234 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b345df2 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa07fb0bf mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3c06815 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6829e4d mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa710d25c mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabd72187 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac4e782f mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x953574d3 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x959bfb3c mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x972204fc mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9896beac mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f4cd0ae mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3d85372 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4a8b9de mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa99627b2 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9c27f03 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaac53b0d mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac35035e mt76x02_conf_tx 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 0xad8785d2 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb023af7c mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2bd045f mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc0b7ee3 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd720add mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1a8b321 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6224d26 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc78e3fcb mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7ba5205 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd77d46e mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf16ea86 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf4ae2cc mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfcc2f79 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0b383e3 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0ca717b mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd294ffaf mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3b67c6a mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda420e8d mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0800479 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0a1dc0c mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe25414fd mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef65908a mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef7f1f28 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa8682c9 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbd87612 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x23baf510 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b28684f mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5c8ba360 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x62b40eb6 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7a742ec4 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8859c6dd mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x98cad223 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe70a8be0 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0aa1e4b4 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0b430fee mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0b89fc5d mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1c4266df mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fb9802b mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fea7a6c mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30e4e18f mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3cea6a3d mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x559bd954 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b6db878 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x788ce69f mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7aae654d mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7ae65405 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9376d788 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x98819094 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9916be2a mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbf1c42d8 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdbae2fba mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe3281329 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xff9c5319 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x00921e26 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0eacbcd5 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1fb927ad __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x22fd0515 mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x268c23e9 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2923394e mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2c897836 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x401b88d9 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x52b43861 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x62ac2702 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x81c41ae9 mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x86f398ce mt7921_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8fadd0ad mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9b89f1be mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa87b5bfd mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa91daa7e mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb6f60286 mt7921_check_offload_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbc449f22 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc3e4ccce mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd7d6c507 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe262aa6e mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xea2f4557 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf6657c1f mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf997b9e4 mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x16e88446 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x178aaf58 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x21151261 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x27a07373 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4447919c host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x55599035 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8b1a8f78 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0478d18d qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad818088 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf68a602 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb84cea62 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8662510 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbddd42bd mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbde35a67 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2e9ae8b mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc81793f1 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8941750 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd22da557 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd0c6efe mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd7502d7 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe11573b1 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xead505de mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed633719 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf35fd5d1 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf44b29ed mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdaa605d mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff3d6c73 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4d522838 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x603d4054 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x61307016 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6420d3ea mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8d95a22c mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x981f3035 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc0f35f72 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc4de5111 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06ed0088 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06f4c65c mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x07bb8ea7 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0a95c26c mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2e1a5fa5 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x67d2f128 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6ad9786e mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8d61f19b mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9017ad2d mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9fabc311 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa0009d48 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabe9566e mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac83a14c mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb0aad9be mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb230e73c mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb91a8871 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca425f98 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdd6ef351 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe70fa9d5 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeb016597 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0671a973 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x213baa3b mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x246818ce __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x24dd14b9 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5b872cbd mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x60d72754 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6236e2e5 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6d7fbe5d mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7d7f9bbb mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7ef2d75e mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8554e6f1 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x859e8cc6 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x93a722f3 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa24adb6d mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa5a451e2 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd135e861 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd2577aa2 mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd57d634e mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd81dee88 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd8e6e998 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe037ad40 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe981bf75 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf9a2cfaf mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfa11cf96 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0b544d6d wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2fd66a02 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x85baa7f1 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x88e106ca chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8a9330b2 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xab9d532f host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd3b08160 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x005f4b94 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x15f41db7 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 0x4ede20b6 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6362fbf7 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7a9e67e7 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x813dddad qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa70168c7 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04c832d0 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18749de9 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f94618b rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x205e4b46 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21e1e489 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x270cd2ce rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3151611b rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35e0d435 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37eeb590 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43bf0623 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x472a7295 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55facaa7 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63b4d64b rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a12d217 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b44978b rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c8bdffc rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75d3e0c8 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c15a0a8 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cc1ac1e rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7dceb512 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ff223d1 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94c552f1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x985b415b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1a212c1 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1925de7 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbac9a5ac rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfda76a1 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc66e8c54 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc72ad19e rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8079eef rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc86a525f rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb701dcb rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf53de56 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf984309 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdfee4369 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe33cfc21 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9d04452 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed664b49 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedd52264 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef421fb5 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf02493f3 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf339aebe rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb4b1675 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfe9a989a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x06daad64 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x073214f2 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e25368c rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x24a25aa7 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f506219 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x420becee qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8ba06131 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdbe20042 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf095e88b qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x002a6110 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x013eb168 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x036770d6 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04bed136 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c279183 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x220c8766 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x28bf55de rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d54fc96 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42e6815d rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d78dab5 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58c88eaf rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5dc64413 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61a52a2f rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66decbfa rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c1b8a02 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cdd174c rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6daea579 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71f55dba rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e905031 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f19463f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82f2e581 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b1b9b22 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90964d2f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91b6c4de rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9707ccaf rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x99f2e956 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9bb7d486 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa133bb1b rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa6ff9dc0 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa351269 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4dd4f73 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb711d2b4 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7a4a283 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba2ac7b4 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbcce449b rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca0a2349 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7218aac rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde9bceed rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe278ed69 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xecdd1706 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef5e0318 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3d5d147 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf618952f rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6a31b52 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0aa41d18 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e0c966a rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x347ee31b 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 0x44cc05c1 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3dbf4054 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4aab9aa7 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4b9ef6d4 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 0x53163e59 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x58b26d57 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5790989a rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6b810dae rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x890d0518 rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99bcbc50 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x98b5371b rt2800mmio_init_queues EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9ffb8216 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5e5309d rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc4821a74 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd3651f7a rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe486ae3e rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf192df5c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xff8502eb rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x030e7e9d rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03707cff rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03781821 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0da80f16 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f63c0e3 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1db46ec1 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25fe4029 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x272b4b73 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x279e1406 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3814ac49 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x396a8be5 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f1d78bc rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x424e6c57 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45b458ee rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d407a4f rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ddb3a06 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59604878 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5abeb69a rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85a000ef rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x878c9e67 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88a7f00f rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b1a9100 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x955ae784 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d63612b rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f66dda1 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac69f7ab rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad8b0906 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae3972bd rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf9a6281 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb543b8ce rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc01489c3 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7211a22 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc79e2e8d rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8c9a8e0 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd9bc5e3 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcda0f831 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4630e03 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd58a37cc rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7765c00 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdaf4afac rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde88eebd rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf30acf3 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe19c16bd rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeaabebbb rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee8d78e8 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb44fa34 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfcc8eeb7 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x51af2090 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa86477a8 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbec85954 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd556eab7 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdef04a6c rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4422d45e rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6237cff7 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe20dd112 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1bf2aab9 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2353127a rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2dc3598d rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ef7f383 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x814f3c64 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f5f9f44 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x972b559a rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xab60015a rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb7cab44a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbcc5bd64 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc94ea854 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xddfe5faa rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe8ebd5c3 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf116c504 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf4b15676 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa936ead rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c40fd4f dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22b88639 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40b87e7d dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9e2fd71 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x00c096fa rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f5d23a2 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x164ca8f4 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f7fbb83 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22c1d789 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc7f5b520 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf4791d3 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdbba45f6 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe4dd07f2 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe88ab90d rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xffedcf29 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11217ac7 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14c49b18 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a770155 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f78f7f7 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42c6b3f0 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4db45d6f rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x500531b9 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60feb182 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64a700e8 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65bd7b82 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b0f7ea2 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f9fe2d9 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75e0c9cf rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x760875d1 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x783f3e04 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a6811ea rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cea0332 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7da197e4 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c3f8bab rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94fa02e2 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96724be4 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b01a27d rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa463c278 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa9dbcc2 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3bed5b6 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5d1ad6d rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb967f0c8 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbae17985 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb7eaeb3 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbc3b529 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe19d4ab rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0b53695 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2be85b4 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc63e6bad rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc878295f rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd61612b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcdd5498c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2078703 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd807185c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfe9b43d rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe45ad6b2 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed2d8117 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeedcc73d rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1fb736b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4309753 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf705aaed rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbc1db3d rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x46e52713 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x66bbe993 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9f00142d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa0effb32 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe1c99b18 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x37071e15 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbe8fa315 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xedcf0804 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1425e297 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x210e09ad rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x244772d7 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5142469e rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5fc81070 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7aef19fd rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x93112d8f rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb059c760 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbc0599e0 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc08d9aeb rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd14cfd03 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdb76a21d rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xddbea791 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdf2c00e4 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf30b89cb rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfac6a4a8 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a0d76f1 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77e251ce dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d0b56fe dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc930d6e1 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0153cacd rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x131ad829 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16ad32b8 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21411e12 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21c9beee rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34ed2130 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x386262e8 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 0x56272ff8 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x655d4244 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a484b57 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e3c9a75 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7888d4a1 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e0e9e79 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43193a22 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43ddc182 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4c6c0565 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ef2a0f2 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52f55be4 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b242d21 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 0x8e27e7c6 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92dfff72 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9886ae14 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99e8a239 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9da752bf rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa014ac1c rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa35b313f rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa79af830 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd1c9cf4 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7cb58d7 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee597735 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2dbef1b rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4135837 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf58fa9aa rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ba47b27 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fd6587f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x134a84d7 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13c00ec4 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19379fb7 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cb25b99 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ee8337f rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90b76b81 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93b3cddc rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d470ec0 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1d1baf3 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa73235d4 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9891c8d rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb20d4cd6 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2e4c58c rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc3022dd3 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5b48905 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7a3322a rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xef955756 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0535da06 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f8ccaa4 rtl_is_special_data EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cc9bdbf rtl_ips_nic_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d9290b6 rtl_deinit_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40ce5e2f rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4203547a rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x352bec01 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3bc75aec rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e780ec6 rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5da6e8f9 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51c4015a rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x531f9c15 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c27bcef read_efuse_byte EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71ab7c0d rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7922aeab rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ff62e17 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80727987 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8531d649 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x910924fb rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x967f7e10 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7137fd37 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x749dc69c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x770184fb rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7946796b rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c9b14c8 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e61ab2e rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90c4b7e9 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92ac1511 rtl_p2p_info EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d5ae42c rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeaa4b26 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0f61757 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5e10fde rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe12ee83 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9db90df rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdec271eb rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ba480fe rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4cd349a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4bd3f1c rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd259a1a rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc5ddf9c rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee22d2bf rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5142c87 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbd81191 rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x28185ac9 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x475b6cf3 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7ced4b9c rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa4a49b34 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1ce0bd29 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3bbaaa6c rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8bfbff42 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc3468dbd rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xef62eb14 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5cacbee6 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xadb825ac cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb09bf447 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc610d2d4 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0840880d wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3c10b194 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdedffa6c wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x002d9b2f wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0179c229 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xffc47ff0 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x00f61fd5 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc55fcf21 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd16c9447 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xda4bb759 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7d24872b wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x89808339 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8e8a46d2 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0214c31e wlcore_event_max_tx_failure EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08b724b5 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0af32b61 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cabbc51 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x146cbc98 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x163c2791 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17adc4e5 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18d18d22 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0956caac wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10941f46 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11482337 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x188d13b0 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ba2f438 wlcore_event_soft_gemini_sense EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x269b378f wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2df35f8a wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3726b8ea wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e212631 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5240c268 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54b8aff1 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e8fdb2a wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x637571e8 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6385689e wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67cc4d76 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67eac470 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x694f1ceb wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ce530a0 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d03dd91 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28ff8514 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dba6823 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31eec0f1 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3947dca6 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d3b1699 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fa1c01d wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x546119bb wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cdda52e wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e8e966e wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64b2a521 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cc79efb wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74918b08 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75e67cd8 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e4d7735 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f928cff wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8267c2bc wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8487b947 wl1271_acx_sleep_auth EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x869dabb5 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f8c09ac wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x954ee523 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x967ac0c9 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x98fe3a01 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e4b4921 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e5271fd wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2b25d37 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd562411 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfc921a0 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3107796 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce6ebc5c wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd78510cd wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdaabd1de wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0f1fc22 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe20d325e wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6fcd49e wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9f270d2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5a63e77 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9ad4b31 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1f27fbb1 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x23190c5e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2ac6381a nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x71572588 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x16da3013 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x40420397 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x49dc699e pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x50c2697d pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7ccc71ef pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcc938391 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86f69f5c wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x880713be wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88fe4e11 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c3f836f wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9410085d wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94991dcb wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x965004bd wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x974147e6 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9e2bd05 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab829f36 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb183217b wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb57f1274 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1956b24 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbf3249b wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5cd5769 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda53c8e4 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2bbcb08 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5025f0f wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa0c384e wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb54cfbe wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6eb3327c nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8081c720 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x86ecfa95 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb2946345 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x441bda8e pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7e1a15e7 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8672a422 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xba95f169 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd5ecb0b7 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdd223b87 pn532_i2c_nfc_alloc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf9c76774 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x008891c2 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5a8b548f st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x80929ee5 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x92f21018 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa150373b st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbd38724b st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcbc95348 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe4ae2ebd st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x265289f5 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd198d38d st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd378b890 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x02a64eb3 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x03f7ab09 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe30fdd3c pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x03a7e63d st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x06027a26 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x14a1d6fb st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x18ef4a22 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x83fa29e4 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa4b3055b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd5efb65b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf223dae5 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x4cd0de59 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe5ef8f73 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf0a90ba5 st95hf_spi_send EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x28b66c85 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2c92f079 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa0b5debc ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xad5d1ccf ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xa613b684 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe8a94751 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x1894b736 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x26d9442e async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x094d22f6 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 0x1dc4a61b nvme_auth_gen_pubkey 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 0x4eaf7f59 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 0x76218fcc nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x76df6634 nvme_auth_gen_shared_secret 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 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 0xdf810b9a 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 0x001f94ad __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0319c8de nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x05e95f99 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06f6f6c6 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0751893f nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09221966 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0dad7d8f nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f89dd1b nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1106fbaf nvme_mark_namespaces_dead EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19f20807 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a2671bf nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ed9f689 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ee73374 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26b8e6f4 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2aacfe37 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2cda3fd9 nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2dd6449b nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f2d77e6 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31edfb83 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b1972e9 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e4e5e73 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x408fd466 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41fe424c nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4233b28c nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x44e1a4ad nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46ca89a4 nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x470c5e93 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1488c8b2 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1643fa5b nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x288fc914 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x290587e0 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x32ce137d nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x334a55f5 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x335a4ad8 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x362b8cfe nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38134441 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38e2446c nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c7e7260 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e158f88 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41bf3042 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46b81648 nvme_start_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d25d37f nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x555fd767 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58d7031f nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c78178d nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55e3b4b6 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b772d80 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61eb1d18 __nvme_check_ready EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b23b6c0 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e7adc2e nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f6c726d nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a067751 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7aeee0c6 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65c9b651 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x669bf410 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b36b03d nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e32ae67 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70e5cc62 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7da6a72c nvme_auth_free EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a0a903b nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8d6e5359 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81d76258 nvme_cleanup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ea4ab39 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92fbcf91 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x937768b0 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9580a9b5 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa39be5e9 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac0084e4 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5683e67 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb701388f nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb88acad0 nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7a50cc9 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc82f2bc4 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbd202e3 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc76cf82 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd08bc662 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90c828d9 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x96c6409f nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97a07651 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b16461a nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9dec9ab2 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0e8812a nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3e4262a nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa811810e __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa890f863 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab29d60c nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0bcc24c nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3a0b6db __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb64aab81 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb7ffeda0 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb87ee0d8 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb97907ca nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca26e3cf nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4dd1785 nvme_sync_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdba4b1d9 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd1b6e7d nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde40f6f6 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe07bdd11 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6ccb061 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf0622334 nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd02f932 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe893c2e nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0c4b4cb6 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x721ddd87 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x743a09be nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdab15437 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc276cb8 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf795f52 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0b88c61 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec703316 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf4105b8b nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x013d102c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x057cf4ad nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x280292cf nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x33c24711 nvmf_connect_io_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x87cbf838 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbabda028 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd0762eb nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcc637922 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd580334f nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xefc3d1fd nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfebe046b nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x74f2ea6d nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d5a96c4 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd1a20cd nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xccadc5b3 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb174708 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf1700751 nvmf_unregister_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 0x242a9b96 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 0x6baf3581 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 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0c7581c2 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0c76f8a3 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21f81d15 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c95f527 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0c88da19 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x12547315 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2a79d93c nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3a3d9ba9 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3a837953 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3aa96fac nvmet_sq_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3ed4a91a nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6971d9a0 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x96c1252f nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc98209d0 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd4375afb nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf0e0e346 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf417819c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4001c59c nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4649ea78 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x86d9fb1b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcd1bf691 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeddf0f31 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 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 0xaf0e76fa nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xc3c53146 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 0xd38e8772 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x32dcc397 arm_cspmu_sysfs_format_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xdd090894 arm_cspmu_sysfs_event_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xdf8ec8cf nv_cspmu_init_ops -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x02f43b2d hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x09d61736 hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1dc1734a hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x319bb31d hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3c0e3cc0 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x307e5680 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x46edbca9 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xb06186ce arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xe20a771e arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x057b22e5 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1695aa7f hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1c4499b8 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 0x58ead679 hisi_pmu_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x688bd48b hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6f2c781c hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x79f98d87 hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x840df2ef hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8efa3c65 hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9d2ae254 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc012e302 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe5bec079 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe79b3623 hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe7e5519f hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf4527ea2 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3f0108dc hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x46977199 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4724f619 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4c24ffce hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x556ceb85 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x75c577ab hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x78cd130f hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7b3670d2 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x936a1192 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9c7229d5 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa4779cce hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbabb8b9a hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe22afda9 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfabfd3cd hisi_uncore_pmu_identifier_attr_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 0xe9e0343a sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x02a50d25 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x06b051bc tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x08f22ecd tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0b36bcbf tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x24225c34 tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x55bc867c tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x67a68030 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7f0c8b1d tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8982db7d tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8985539e tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8ed5c718 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x976f69f2 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaba2d144 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb4e6aaac tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcc36d1d0 tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdfa312c2 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf3b24f73 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf614b7ef tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf97afe67 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x1dddaf62 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x055b647d tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0860f936 tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3595192b tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x507757a9 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x61904b0a tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6ce1d9da tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6e5c5f8e tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7647562d tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7850494c tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7acd08ef tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7d9a148a tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x815307d1 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8d346c4a tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc4ea5a65 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd6a8d6de tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd76d8fa6 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeb77abff tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xed19d0c5 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfa0d8526 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 0x804327a2 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9ee30db8 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb038834d mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x3adbfcd7 lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x839b0bbf lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x06b0313b cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x874f4db7 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x484bd6c5 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd125f3c3 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xe15e572c mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xbf2a53e4 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xd4037950 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x49613e7b cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8ffe60be 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 0x09945f68 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x14635058 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x178289a7 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x18246a20 __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1fe806b7 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x20062f80 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21e1ce4c ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2ae9bc10 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b5bd7e8 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2e150f03 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31270955 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5526d443 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56067fed ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6454c25c ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x76b230f0 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8c84c508 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8d0ecf9a ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x91887d44 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x96c7bf06 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x97adfacb ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9600f09 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac3f4e96 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xad73ec43 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb0a45d50 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb42b2542 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfcff552 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x00515456 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x09aa8662 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12563092 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1726df8f __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2af115da ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3370a154 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x363970c2 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3c396cd5 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3c7ed349 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4c298cdb ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53b9be84 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5477c5a5 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x556326e2 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5dc4f430 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x65291676 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6a1159ec __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6e4fb667 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x875920b1 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8edb5203 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x95b82033 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9cde6b3b ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac960c6e ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb391f07c ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbcc8fe70 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2b3b226 ssh_packet_get EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xce7b4ef7 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf92da20 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7bd2cc1 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xed45096f __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf53da99f ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf6b0cbb8 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6b8492d ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcc9bd132 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf3324c5 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdc24a8d7 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7e8e450 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf487f21e ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf9971b48 ssam_device_type EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8ab7329d san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xe07e8b81 san_client_link -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7366626f devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7a636ddc reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb2e0f92a reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfef4e7bd devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x112455a6 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x32005ffb bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xad3d5cbe bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x146b584c pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x226a3c4f pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x57a6f9cf pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0c68bc98 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1fc96fa8 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x64dcbcbb devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xca1d3bfc reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd974bf18 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xedf2238a devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x3bcce875 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x99fdacbb bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa110c36f bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x420c7c68 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf2803d3a pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf306c904 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x10154689 ptp_qoriq_free EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x334029ee ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3e7b40e6 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x42bd3545 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7369243f extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8eded100 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc3238eae ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2003d3bd mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9a66a317 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbb227472 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc59cda60 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf7035d7d mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xab9ad23e rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1002c88e wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53dcd0d4 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5a4ee214 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8b057e31 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xba937973 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfceb6f54 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa76a89c4 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x05f34876 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0da73514 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x18f85d98 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1d492102 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x26e9a846 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x71b524bc scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x917bc5c6 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3765795f ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x519b4e2e ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x718727a2 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8295b7e7 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x93264bfc ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x95e31dd9 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe51fdc0f ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x041dc222 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x08da93ff mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1ff22563 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xebaa34f3 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf040a100 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x54539dfe rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x245f1536 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2c043737 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4eb436e5 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x91371e24 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc1c5cca0 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe6810aea wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x69921615 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2026beb4 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x269aa10d scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x54f00c2a scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x90c930fc scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xad3c0eb0 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcfd810d7 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xead31872 scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x0e8a93e3 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7568f303 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x91c63096 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xecb1460f scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xf62c710f scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x477aeea6 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6c96e0f5 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x97894b82 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa8e3b8ad scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc7d75c32 scp_ipi_lock EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x34565583 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3fffbe22 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6494b3ca qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x66ef6f36 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7d6ce6f5 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8652604c qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x94ce1296 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1b5eb151 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x22790392 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x28be0a0a qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x701b420c qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x914b166f qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9849d027 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xccf95387 qcom_remove_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xeec90ccd qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf9ede305 qcom_remove_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x51227793 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x80ce764a qcom_q6v5_deinit -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x870fe86e qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8b22779b qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xce55ceec qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xcff7a82d qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf24e3d05 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1346ed63 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x23619953 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2945fd6d qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x29ef7391 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4e2a69c0 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdfc44cd8 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf30f785c qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf6bdb903 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x132ae266 qcom_add_sysmon_subdev 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/rpmsg/mtk_rpmsg 0x09e05263 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 0x9e54bafc mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x77177ba5 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x983f1065 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 0x6b37b253 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08f3ffdf cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0989aecf cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0edfa151 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x114f0860 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1614c232 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32f44d4a cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34a8e5b2 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40c1fbf9 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51c24473 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56b89d81 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d83978e cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f8b48e3 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65ae872a cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a94c580 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d4fe6d6 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xd22f6367 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x025230eb cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x120cdc3b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18b8fe64 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18f6444b cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d6146d3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1edfe771 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27da2ca7 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x299e99a0 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29cd1be5 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a4809ef cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c3b331a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x311e35b5 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b5a735a cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40f886c4 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x455b2274 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5624fcf7 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59a7a0d7 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ca3fafb cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69758a00 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76ebbfac cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bcc069e cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c1d13e7 cxgbi_set_conn_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x812f8643 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8125751b cxgbi_hbas_add EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86495713 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87489f89 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x874da5a2 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89f76507 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a116293 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9396a76d cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97f134ec cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98767e5c cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a1f4624 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa232e3ea cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa447ca8c cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa95cb3e8 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9d474cf cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa03a780 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae62b2ef cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2444e08 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4e5b200 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2f96de8 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc54c0cad cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfd2e252 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd14d72f9 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1f38f1d cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd47308b8 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe328e594 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4bb6489 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe55b324b cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedd6080d cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x839fffb7 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85414731 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8dd7d67a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8df711f6 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8faed600 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93529a41 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93ea7b92 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98261fde cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9938e081 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99ae97f2 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f51951a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fe44d6e cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac8ca58d cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb23bfcf6 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6a4521e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6f10087 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9cf1388 cxgbi_sock_fail_act_open EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7c66202 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16f7bfc4 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17afc103 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x30cd71d3 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x43a25d6c fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5418a4ee __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7938348e fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a67ca8a fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x858f4910 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8fcb6452 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa252f5c8 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa67401e2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab369314 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf018b4c6 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf85940ca cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9cb9c1a cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc45a19b cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x02e3454b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0920fe6f fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22b0b232 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e0a2dd0 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x31d18cef fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ab396da fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e489579 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c18501b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83231e78 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa9c42393 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xabaa05f1 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac2f0a11 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba5e40fd fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3d34e20 fcoe_validate_vport_create EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc68c9d44 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd54b7d63 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf62a0c7 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd8505507 __fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc6f01d8 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x1246d697 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x52080f58 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x136fad3d hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1ee66e60 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x24f1edd4 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x32026c6e hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x35697d74 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x39f7cddc hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xff832133 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2a4ec531 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2ab3201a fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0118061a hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0b8d3a7d hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x15f5edde hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x25627b22 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2671a52d hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x38b89402 hisi_sas_release_tasks 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 0x4d871738 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4a92de11 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4ce20ff3 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 0x54f4c9f0 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5ab1b023 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5e66417d hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5eec500a hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6c51c94c hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6e1a5d04 hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8b9de729 hisi_sas_phy_bcast -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9061a93a hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x997068cc hisi_sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9f436f4e hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaa36c716 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x50bc3ed1 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x53c203f4 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6c76bd19 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6df5e0a4 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7136df96 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x80725c4a hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x81e33cd3 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x82390dc3 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8db44ff1 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xac3f3458 hisi_sas_debugfs_dir 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 0xb388fcc9 hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbb01eec3 hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbdc045e8 hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbdd9c6bc to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb56e943d hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbc180a96 hisi_sas_phy_down 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 0xce0a4324 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a9f066 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd062cde7 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdc1ee536 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe20cba28 hisi_sas_phy_oob_ready 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 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 0xff82ab09 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xffd703bc hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x146ce98c iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x330c907b iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x469efaa1 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x630d66eb iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9634ab25 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaae7c004 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd21f6774 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf929d9ed hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b6e7db4 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1ca562b0 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3939b7d9 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6e7ead22 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x79fcfde0 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd4d2e645 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe32cc2d iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x662c6b8b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03374f86 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x052328ae iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x068ee190 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a72dd21 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c5e4ca5 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11be0752 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01db232d iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05c56b9e iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0afc035f iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d677ce3 iscsi_conn_stop EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1885d32c iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cc6e989 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2921cf1a iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a32f920 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c8d928b iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fdb3f3b iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33077731 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x338f5501 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3666e9bb iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b17dd54 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b7045b3 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ee75261 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x285aff9e iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31202722 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x340f23da iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3810cc65 iscsi_session_recovery_timedout EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d73c00a iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54caf3d7 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6145804d iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6197cf94 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65895625 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b8adc05 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6baca78a iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e2f5753 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72375acb iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73bf2e06 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b314301 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c6fc366 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ccf4e70 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e209847 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ec78d6d iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87941ed6 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88821e31 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89bae2bf iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x494cd7d9 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5678205e iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x574302b1 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58fbab82 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b41d58b iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5baaa556 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x622c70e1 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e3c571c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7349fbdb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73d08358 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86801b63 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x898707d9 iscsi_prep_data_out_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f4b8669 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9458306a iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d934236 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa37732ce iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4ed5d60 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafad9f11 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb39bf93c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4316bbf iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc18144b4 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4070cd9 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc484c347 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1ea9eb3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e2969ef iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a45f633 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f9b4ee2 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1fe19d6 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2572957 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5ac7e48 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa74965ff iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xace4e389 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaebb7a5b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4a30604 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb785956a iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc74e2503 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca7c927d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd206f4be iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd33f1f4c iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd471e222 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda43da1c iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdab316be iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd0603eb iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe263d628 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9c40244 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9c79765 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9d9e1e7 iscsi_eh_session_reset EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed08c3ce iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf181f51c iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x20d17116 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x23c145cf iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33b77b4a iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5bbf621d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64f41827 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c668b5e iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7aa52573 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87a78e7f iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x906108ee iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92601b63 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc07ff2de iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7b3e538 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde514cfc iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf02cef6b iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfc9505a6 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfd2339c8 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff334b24 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03a70075 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0509dd3f sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b0b9479 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1522d739 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17b97ee3 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d382f35 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f8b9a27 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2648ed1f sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a9de649 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f21f816 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42b47235 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x458c75b3 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4751a538 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cc50195 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d401559 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f314bc4 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cdee687 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a7847b8 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82e9fcb4 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85092af5 sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92eae92e sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97560b22 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98a0c321 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa444364c sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaced7260 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae23575e sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3e2acdd sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb74f5080 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc042043 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc486642d sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdcc4090a sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdee3d5be sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe888e266 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2cb3791 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8f5dbdb sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc45e095 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xfd54b1fc fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0139a8e4 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01fc342c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedd0af76 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2ae804e __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6423388 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ec6ccbe iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13f0ffcd iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17e3bf27 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x267bef42 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35c722e9 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3790fd4f iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x391c5965 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42fef0f8 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d53eb39 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70dcfe3b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac46d1d8 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd5954ee iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc333f69b iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc50c29fa iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc78a9788 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea976931 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebf3b2df iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08853625 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0be5a4d9 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e1a2bab sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x21e7b2c4 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b8eae15 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45706d79 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x474ed12b sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x484e9964 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c066b7b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5247f241 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6811064a dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b5c74d3 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80df4fed sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8240f5e8 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cedbff7 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fa3426f sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x984c4995 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaeb0bb1e sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf7ab21b sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb64f5594 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd2b7def sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe501d3d sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0e1a0c9 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc408b519 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8daaed7 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5068878 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7e43d93 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda91191a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde8fc1b8 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2d1116c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8292c55 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9b1025d sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef60581e sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7a421fb sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd2408bb sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff0db67a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x66ee81da fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06ef77d5 iscsi_destroy_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08a4442b iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a062448 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11a9fb1a iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x173ae4e9 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b179d80 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e7c2e81 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2080e675 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x208290e3 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29266970 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fcabaf5 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30cc6fc3 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18bab879 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19566afd iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20810de8 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23cea9f0 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24cbd251 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x322d665b iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x342bdfc2 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x349fd4dc iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36825109 iscsi_conn_error_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x394c5ff4 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f449d55 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4007c3c0 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44481e90 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46085f7f iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4699defd iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47b8bfde iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5475b861 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a01089e iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a200731 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4062c7a8 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42d800c6 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47791d6d iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4af05912 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d353ca0 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ded54d7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x524ea778 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5471a232 iscsi_post_host_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c609ac3 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x603c4e84 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64f71ffc iscsi_remove_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b9c2710 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ff84b9a iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6afdfe81 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c73cba2 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cce7f0c iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x709aaba4 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 0x72d93190 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a8d456d iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ba9389d iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cbc477e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8000bfa6 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79196bae __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b46358c __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c3cd089 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d9c53f6 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86c70eab iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a5680a1 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ce6eb73 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93a1d1fc iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa281a1e9 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa3517bf iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a3dfdd0 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90b912ad __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93ce6266 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99cc9e78 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0ebb630 iscsi_create_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_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 0xac0070ba iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf3e9a4f iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb732f38c iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8bd235d iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xadd1b98b iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0a4a853 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb14d29d3 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba38f67f iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2d206df iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5b2fa7c iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd071a510 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd212367b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbda85f9c iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfba8dc4 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc659183e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd36f80ef iscsi_dbg_trace EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfb68a9c __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe151cda2 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfc2a5d1 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 0xe966dc40 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb84d65e iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf25ad6cc iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf528905c __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd33faed iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x82f6d0d6 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xde8fc676 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe5af33ba sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf026ac63 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeacd6bd5 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf04f3d0d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1f019613 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x269386c7 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x513c3d1f sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc95761d5 sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xc2be0441 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xe4a37d29 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0f3d5ae9 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x086c3405 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x122067bf srp_rport_del EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1c1f0232 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x32cd02bc srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x477d8ef9 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbfa201bb srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc6c6a9f2 srp_rport_del -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x22de0314 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4082d1cb siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5e622ba5 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x70370cef siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa6e6951a siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb8202599 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0b5ed007 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b3152ce slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d9f3f28 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f59de54 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5960801a slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a15ffe2 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c2a4b87 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78520186 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79dba5d7 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b65e166 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9453d2b8 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1c04069 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa40e385a slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6e24127 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaa1c1d48 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad58890a slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc089f4a0 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc52d80bc slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5aead3c slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccabf2be of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcdddd6d2 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb4193ac slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfb03d53 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1b22bc0 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf27229f4 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbe5525c slim_stream_enable +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7f99b081 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa5d5a16b srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbfdf37df srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc073f1ef srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1a5457f1 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2646846f siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5f2b4c81 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa831e915 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xafd310db siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcc82c72c siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c7e94f5 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2c3266b0 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x53a11228 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5758adb4 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b8f39a8 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5bf09f64 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x685d1763 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7227fb57 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8aefa4d4 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8bd97772 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96c43045 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e25f219 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa4eb4afa slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa51b61f7 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb7491d45 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc15e8807 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5331a91 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc6172e19 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9991ac9 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcd027d1c slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcd9853a7 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd069bf89 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd5abf760 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd85b00f2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe08da2c1 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe3ab1684 slim_stream_free +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x31438be1 meson_canvas_get 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 0xe5da128d meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0654feb5 apple_rtkit_reinit -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0978ad67 devm_apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0fa1bc38 apple_rtkit_send_message -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2682e387 apple_rtkit_boot -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2997bcb1 apple_rtkit_start_ep -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x40ece9e9 apple_rtkit_send_message_wait -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x61765aa1 apple_rtkit_is_running -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6d3240e9 apple_rtkit_quiesce -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x76c156af apple_rtkit_wake -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa7204322 apple_rtkit_is_crashed -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xae426fa1 apple_rtkit_poll -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe5b8e8ac apple_rtkit_shutdown -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x88d7ff24 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x1426caff apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x38f3aeb0 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x42a4b267 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x4fa97cf8 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x737a3c7f apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x898e358f apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9cfd653b apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9d174207 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xaed53ac3 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb6601c19 apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc46b1d53 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe2462ec5 apple_rtkit_send_message_wait 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 0x0167f84f dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xffff986a devm_apple_sart_get 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 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 0x60c0a164 dpaa2_io_store_create 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 0x71773513 dpaa2_io_store_create 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 0x8d13ca23 dpaa2_io_service_deregister 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 0x9d5e6178 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/qcom/apr 0x2a294fa1 gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x41293f2a aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5dd4d7f2 gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7664a44d apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8239b240 gpr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8a2e0c5f __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x921ffb4e gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6677478 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdabcba61 dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2b5ae77f __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x49ed5c29 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x4e94f678 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x62b13b92 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x75c30f27 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe2a57514 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe9c87369 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xea184ead gpr_free_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 0x7b4d6b32 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8413268d qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x96a4d4ea qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa00c3b9d qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x010614ec qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x57c5a685 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x870098e5 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x97ada9cd qcom_mdt_read_metadata EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x44065353 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x99415fa1 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb2d80dd7 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x32cd0698 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x33d3d4a2 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb280e867 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcd2aedb9 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xbb8dc358 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x644c25b3 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xd979d392 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0c475899 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x178c51c1 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x907e4ab0 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa3ac5f36 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc10dbe39 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd718f625 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x677489d2 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x86aa23f4 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xba4fa4ad spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1801ff34 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b9142ac spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6dc0e2ea spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6efb3738 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6f1ff040 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x780372cc spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x913b77b5 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98c4a188 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4e4eaab spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab19c054 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb966b674 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba6e973b spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5506534 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd0a03044 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd373fe07 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd94f34bc spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdd6e215d spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea8f3b1c spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfa235844 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0c690238 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2391d800 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x388aa07f anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3bfacdd0 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3ed2ef34 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x49d3c035 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x55249afd anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x584df244 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7e5636ff anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8914a67b anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8a149d01 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd7557df3 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdf18cfe7 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xefa31f8b anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5f05a8c2 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x794b7b54 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8a991ccf spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa3792d91 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbbea2154 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc85f29f0 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x78bd26fb spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x82e5c8f8 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9a5af82e spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09b7ca57 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d2ec05f spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e0087f9 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34701c8f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x35e68f22 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3f545325 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53cb864d spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6112c3d0 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6bd54b8c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75108f5f spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a731fb3 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9786307d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa549c639 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa81405d0 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf73292b spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb333fb46 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6815c26 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2ff736c spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe94f6f43 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x55730e47 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0916bbeb anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0e829319 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x215c6be0 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x355c2ee4 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3f078443 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4839422e anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5b495c46 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x65ba79d1 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8376ba90 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xaf7691e8 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc1ff240e anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe87f0459 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf9e9648b 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 0x043f9d1e fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x47a14a02 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9fdd6e6b fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd40f728f fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x05021616 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x21154b7b gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x248b39f9 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3ffe22da gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5e7d65ea gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x64815126 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x78312622 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7b76ce06 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa44a0363 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaaf2f375 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb7a932a0 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb71b445 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf6abd233 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ec5fe48 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ef2130f gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x55c753e5 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6ec7e872 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x705a73e9 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x951ffcf4 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9b85b095 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d715446 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa59e6fce gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc2dd5fa7 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa0567ec gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfa328aab gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfdc1c071 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6503a257 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x97d8f9cf fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc19adf9b fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf99953ac fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0a768887 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1d81621a gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4134fa96 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x447d9c40 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x55db98f4 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5bcb08f7 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6285190e gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7d338db9 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8d7b6a6e gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc5802d9d gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb0e01ac gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xee051601 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf2401055 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0a906a9b gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1acad1fb gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x286df921 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x38374241 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x415cdb19 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8dfe3afd gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8f97c98d gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9b3b03db gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa8004b95 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xab390442 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc01867c4 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcf049f93 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfd93ac8d 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 0x1bd8ea19 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 0x4e271527 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 0x626df798 gb_audio_manager_get_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 0x87cb0b36 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 0xd31b252a gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xeabef0fa gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x43a54ea9 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xf132400e gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x15f50827 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x14fe337e imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x17687f83 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1c03bea6 imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d864041 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23382058 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x26b1c6be imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x34b5d408 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x367a7a14 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x2208da13 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x527fe11f gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4fc5679d gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x8e6ddbfe gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xdd92be9e adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0219e1a1 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x057fbc48 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x18112a77 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1a65d64c imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2e0f2264 imx_media_dev_init 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 0x3cb7fbf0 imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x48588c11 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4dcf617e imx_media_add_video_device 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 0x61f6f474 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x726515af imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x87bc7616 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8f9d9122 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x98a35142 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa0a42412 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x68ca57cb imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6a556a59 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6c659df7 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x75b19bde imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x773de52f imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8fcd7a1b imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa33a1573 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa4758f6d 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 0xa9e2459f imx_media_enum_mbus_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xad43a0d1 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb6436a55 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb892a8c3 imx_media_of_add_csi 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 0xbbf9e576 imx_media_dev_notifier_register 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 0xca6447f7 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc8915612 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd2976bf5 imx_media_probe_complete 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 0xd7df0f56 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xdaa9e0af imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe30ae02a imx_media_capture_device_register 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 0xf5aa48e2 imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf6016560 imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0b201f38 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0fe72631 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf2ae492f imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfc7cc439 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0340f131 amvdec_set_canvases 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 0x19a73a1e amvdec_dst_buf_done_idx EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1ebc9af5 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x38824bed amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ae9cc34 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5160b8a1 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x596b51a9 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x21cc5d75 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2a930213 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3818775e amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3af05109 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4ff30f7f codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5f35c343 amvdec_src_change 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 0x7a79ff65 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7d104c70 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7ebf6ab4 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa363c85e amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb29db566 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb4583465 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc4d8bb55 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc57a79f4 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc8b8ba6a amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0cd37f3 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd214c42a codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdbdf49ff amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe8e5128a codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xedad2e4d amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8aa5e9be nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x9973f101 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd3d24d4d nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5877e471 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc3b3e2b5 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc5492dd5 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xec4bb7ee target_submit_prep -EXPORT_SYMBOL_GPL drivers/tee/tee 0x07a9bfbc tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x234bf885 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x28d1785d tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x317b1edf tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x364b1300 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bbbcdac tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f7be5ce tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x52cc85a2 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x56445777 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x823ac75e tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x68aa30f0 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6be49e22 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6dc709d6 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x78a68b2b codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7b15748a amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x91820c9b codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa1b09268 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbeb1c9ab codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd1c2d20f amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd644fc97 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd76c497d amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xda7fe851 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xebf0589a amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x77fa85c0 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x817bd5d2 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8dba7c3b nvec_msg_free +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2978fae7 target_init_cmd +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 0x5ddbe983 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x75c52ec1 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x98fb8a7f 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 0x056653cc tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x44edf20d tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5bb14f62 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5e6b0c1d tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x65d2bc09 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6621ae02 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x69fd22f9 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71fc36d9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x77b1c77d tee_shm_register_kernel_buf EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8fca09f6 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa4297c1d tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb72afdb3 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc922e39 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc9a204e3 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xccfc5f55 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd103b665 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5b63804 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe34c40f6 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb2db6e0 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf179851b tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf29aa154 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8d0d011f tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x94459f82 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1fad91f tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa60c266f tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa7fc8747 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xadad44e7 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc07449f6 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc29edf0b tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdf8a5606 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe37139c6 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe8a4420b tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xebaec1de tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xefda884d tee_client_open_session EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22052017 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26ac9af3 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26c741eb tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36bee371 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x389cd70e tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x06667451 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2b92baab tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2deaec24 tb_xdomain_response EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3a74be87 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d690a47 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x44522a59 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3b4042fe tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3b902a17 tb_xdomain_alloc_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 0x4f44f263 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x549bb7db tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x591194be tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6484ce0a tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6f669ceb tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x731a3bc3 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x750d1def tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7bed70ac tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a88f594 tb_register_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x97ab798b tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9159c7bf __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa230cab8 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae596a74 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb44124df tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa8467c60 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xafbd021a tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaff379c4 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb74e7e8b tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xccadb5a2 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd9f9ea3 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd6c33d3b tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe0ba6a3d __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe67d6782 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xec268a8b tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc1dfa140 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc29d0523 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcb4fc2b6 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd23b7755 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe268a8d1 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe39f1109 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8c98ac0 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xee1b7d13 tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf29c59ab tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfe9f75a6 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xff8ea277 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0c2d440a ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1cc90394 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x22002369 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c13d751 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x318746dc ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x356364aa ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x41223b6f ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4d90dd5b ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5889a6fc ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x67c8f78c ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x04bc5592 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x066bd9c7 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0681d723 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0b9b8d68 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x208840ce ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x266dc9f6 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x34b9b042 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3f433617 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x55cdd1b4 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x568c6144 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6ec2a616 ufshcd_clkgate_delay_set EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x73f1de03 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x74458c62 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x74848e61 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7dca02ae __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x873c728b ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x881732e0 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8958e201 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92d0e0e7 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92ef176f ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb431947b ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc5740da7 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd4505180 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd4ed8c20 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd7ed34ea ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe8077b36 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x37657932 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x3ee5af2c ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x51e25809 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x728f23f5 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7644fa77 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8b14bac3 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x91a30081 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa3d16e5c ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb486979d ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbd79c24e ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdca5cfea ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdf5b8307 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe03e4107 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe760e2b7 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xecd2bcd0 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf28651c5 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff5007fb ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x4bef03a5 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/uio/uio 0x23a9e48a uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x32f91e05 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbc5dd34a uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd24862ee __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x775ce9f3 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd026cd92 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0b0d8647 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1798b0a1 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x40d859ab cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x43fea7d4 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5f98d99f cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x672e00e9 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc88b4373 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcdb1e3a1 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdedce52a cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0164802b ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x562ab8ec hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8f64dea9 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe45ac409 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3b0b8029 imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x522c40b3 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7904c74e imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x97e7a05a imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb9ca44b2 imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd32a10ce imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x280b13ea ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x40f586c1 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7452a520 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xaa08429a __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xefc7b525 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfbefc05f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3e79de88 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4ed45290 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x56497736 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x570a83c6 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5aed7ffb g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6e345807 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x70a2ee35 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x80187c8d g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9db8a8e7 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa9f066e1 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb289a808 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbafabf89 u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd2260ccb u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe4839bee u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf86e94d6 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0852c915 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x08c5eb2b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09b02c55 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x11f873d6 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a7f9306 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2d0f5b03 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3b481f6c gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4d15ebeb gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62299e90 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x683a830e gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x72745814 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x734dedc8 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7bed9411 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7cbb2dc7 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xdae8e0e8 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xe05cf8e7 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6a547493 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc3bb4cd0 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xca789309 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe1ac6fdb __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x70691427 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb021ab2f usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x22eeb58c cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x31cebabc cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x433be2c0 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x56e482fd cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x85985ed5 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9b5e18fa cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa17768df cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbdf788aa cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xeed9e0fb cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x01b15bad ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x39c119bc ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x677a7ce4 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xac46732f ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x63b722b2 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6d080b91 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc8c51165 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd3a758d3 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xea708664 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf1133d0a imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2feabad4 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6f491a30 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7c019744 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9c70b519 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xde56eab9 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfe4c8ac5 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x06892640 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x112f97a5 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x117da057 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3d302a44 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x48fd2783 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5f9b3636 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fe7948b u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8502a4ae u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x85c7fd45 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x89f79bea u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8b0312e8 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xba576639 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xeb6054a8 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf47a8df3 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf7f08ada u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x034a74d8 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0e6e3fb3 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0f2c1b65 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25449863 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2dc59fd2 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46c08c78 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x81581f31 gether_get_ifname EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8be65a79 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcde7fa92 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0278b56c gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x926a5da5 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb8b26440 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbc4ab86 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc52eb4e4 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe94fa0e4 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf1473f73 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf3b67f59 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf621e04b gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfcc71ddc gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2be8a8f2 gserial_disconnect 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 0x60ee4017 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7cb46cc5 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x955d9e54 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9a55ef95 gserial_resume 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 0xe0eac923 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 0xf9a0f890 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 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x73b4a591 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xaa6c729a ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07cfbb14 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x132fbc42 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x777b8ff1 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa1dff3b6 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x06e1cd59 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0877c187 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x100f396f fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1be46013 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 0x20119302 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x23725a37 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28e2f486 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2af10a34 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2dae2686 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 0x3e0e014c fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4bca6be1 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5458f1b0 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5620a6da fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59a72ac7 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x60b681af fsg_common_remove_lun 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 0x6eef0631 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7477dd3a fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6d8c8e77 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6fdca3ce 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 0x923601fd fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x99de6b06 fsg_store_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 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 0xa7ecdf71 fsg_show_ro 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 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 0xc87dac06 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0154447 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0f92e8c fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbca73b07 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcd58d967 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce021c3b fsg_show_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 0xdc2c133c fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe4ae4f64 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf438035b 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 0xf9cc361a fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x01295f4a rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x14e14b14 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x232c8d5b rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31e22251 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4583cdc1 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x511f47dc rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c468382 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c4e73b9 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x77726ebc rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab497c32 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb90c615a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8d689c3 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdee4968b rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe775ccec rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe96d8ffc rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b39c121 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf8f069b1 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfba56852 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x08edb1f9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x16a8f21b rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x17bda4a4 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x244e82f5 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3e149390 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3feb8f2c rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x422af45a rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c50b1ba rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4cc9a8cc rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x86826ee4 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x967b5137 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x97d0f4a1 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4cfe421 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb1dd821d rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf98fa3b3 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0542013b usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0a6bf860 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0afde2ae usb_put_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x150329c3 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1903d411 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bdae463 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d241921 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d7de488 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d83afbb usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22dab076 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cc10c15 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e8969ff usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d0cf58c usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d1bd91a usb_free_all_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b4b1c4c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d8cc88d usb_interface_id EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fce1331 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3552c065 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ed75b7b usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4310c5a3 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b9f10de usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f9e0c1e usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45beaf62 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a17af9d usb_put_function_instance EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x517dadc0 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54108779 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57a9d27e config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fb61d7b usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x620090f7 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x518e7f22 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x556e7108 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d601cb6 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x701aef9a usb_remove_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x771480f2 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7de3bb95 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f92bfb0 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b5e8c29 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8de8e4f usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf882f7c usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6d4578a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73435e15 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a306581 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7cf64550 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x854f23ac usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a11160d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b84decf usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ebfc376 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8fa7245d usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x902929e8 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91fe9f5e usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94f91679 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4a339cc usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4f5d51f usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa601f2d3 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc5251914 config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd34d1b81 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed516181 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf432063d usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeaf360bd usb_function_register EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf50526e3 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff0f179c usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0443530c udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x20c94873 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5aaa3019 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x232b23d8 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3a15bfdf gadget_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6ddb82dd free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x73c61c0d udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7f61acb0 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xac728407 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xae7ea2a5 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc0b8210a udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x63cb6159 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6eb1222e empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9162f59d free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9dfc72e9 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa02bb12a udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc79cea86 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfadebe58 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 0x004e4bff usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a9589ee usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e5558e7 gadget_find_ep_by_name 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 0x2f7f6dc5 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3036fe3c usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x386f5a0c usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39f32ef6 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x377d0d09 usb_gadget_check_config 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 0x4443530e usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x46584c64 usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48a05db2 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ca08d72 usb_gadget_map_request 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 0x54719782 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57fd3438 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a115348 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x612e4fb6 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63a9bba3 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7686f728 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x774b137b usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79232b4f usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7beb2afd usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c491cbc usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8db47869 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91aab8ea usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x933a7cb7 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c9a777a usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8bc0fdfd usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e14e792 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90683da3 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x973177fe usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f3e4e12 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f50aff4 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5abe161 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa0b07d1 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa0f86d9 usb_add_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4590058 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc6a8757 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaee0fa5a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb9ce9381 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc548c3e gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe7587bf 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 0xc041cf5c usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc103fc01 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc24ed2b9 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc31bc1a9 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3efb842 usb_gadget_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcaa21da9 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda0239e5 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3145eb0 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe61c1852 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7640e54 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed68b1c3 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x5f42fde9 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x59c9844f ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6ee8adc0 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x18481432 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4504904d usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x520084ba usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa11866c5 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbccd1ff4 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdd228ac8 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5a44dc6 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5bd06a3 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5928c01 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc96fc55a usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd1c30b3d usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe4c3d52d usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea991d42 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xee2835c4 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf95151a6 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x71bfbe25 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x475b279f ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb9ca19e6 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x097a6c4b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x203c617f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2df81444 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x30615059 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8fa8ace5 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7e68e8a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc1b9df38 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf22d1697 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xff9ddd42 usb_ftdi_elan_write_pcimem EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09b75fec musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1c995a64 musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x42770497 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2943cbd2 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3361e4d2 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4f7661df musb_interrupt 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 0x77b516b4 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x797b58cb musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x861d83f6 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa5b20b7a musb_set_host EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd723f216 musb_set_host 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 0x2dc7ecc1 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x48068800 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x72ed38e6 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7a2c98a6 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xea59adc7 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3339e04a isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0ba908da tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x2c37f592 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9a6731ff tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xa512ec8e tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x296fdd33 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x094033fb usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c4d8386 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10e3fa76 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x145107c3 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x176ce340 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b3e6e92 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x48228205 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x49208a1d usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c3c8de2 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bef502d usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f2f362d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7c312c89 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b1e3787 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b637ebb usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa794eeea usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac49fcc7 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4224f6f usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6958200 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7bbcd61 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf390fe8e usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x40b6aa24 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa39462bd dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x0e8e1604 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xfbdb9238 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x049e64bb usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x172df345 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x33117373 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5969049a usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x596a430f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4e7ed8f9 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1662a70b tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3c91fb39 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x43944bb7 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5ea6e59f tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x610d8df7 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x181b7577 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x189fe397 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x377a09d7 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x37e01a12 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4f38d84c usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58723fd8 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x598d8aba usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x615a3da8 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x626087ce usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63c15f6f usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x65295736 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80e44a54 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b1afbfc usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0479ab3 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1734465 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xddf477f6 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf27e4bb7 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc6ae8f8 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc6e6507 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe38d815 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x3cdb636d dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xcd60d314 dp_altmode_remove 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 0xc2a84035 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 0x8d8e165d tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x88e40efa tcpm_register_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 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x044c45e8 usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x046b61f2 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08373844 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0fa2ee1b typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11b44a08 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1217f73f typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c6d0c0 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15685721 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17c10391 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x186b5030 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bd19837 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x09fd8993 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bd96d2c typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1326f04a typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x180188e9 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2596d0fd typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a0afbb4 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2be397b1 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c5641a0 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3645e8bb typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36aaf962 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c794cec typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3cad724b typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x465946bd usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x494b735e typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ada5266 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b9e62eb usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5369a4b4 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5581f159 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a3a3a6 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58788563 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b834f6d typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641227cb usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66790457 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e853211 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3070fe1c typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x313b2a2e __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3314bc66 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34599628 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x369db400 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x383a6302 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a314922 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f0e3ae3 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f117948 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f488400 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48dc78c4 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x496a1373 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ca8461e typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f38142d typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fc690cc typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x559dfa36 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57644ec3 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59895729 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f06c1f8 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5fb80965 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641d3b15 fwnode_typec_mux_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x704c4da7 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71e11fea typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x745c968b typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7816c567 typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c90854b typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80bcb63f typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81e76753 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d65495f typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7363e76a typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7441c6e5 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x758fdfc7 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x789c2ee9 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c9a5e2c usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82d1c15b typec_switch_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8652857d typec_retimer_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86d64c2c typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87e3408c typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88ab98ad usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a9e38c7 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ab50c41 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ec60585 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a745092 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ba164ea typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8eb75379 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8fb68d52 typec_altmode_enter EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9155de3f typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91be13ff typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x924c1319 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96879abd typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9955fd78 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b4813ef typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cdfa105 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x928b2e16 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95db0063 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x990c2c96 typec_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa37c37fc typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5ba4926 typec_retimer_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa71f132a typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1d7f650 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb8ca3d2 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc200cd0b typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb329793 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb46bfcb typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd27fa46 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdaf3435 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xceece553 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa941b8d5 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac32d90d typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xafb66437 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb09e9b38 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3b21be0 usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb480e26d typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7d41bbb typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbce4df7c typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfda7719 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2626d90 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3495a72 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc91f645c typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca396105 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca55712a typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb14caa9 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdeb7541 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd24d0f55 typec_altmode_vdm EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5d74454 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5dd4756 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd70c650c typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc12bc2e typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde2ef71e typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1025839 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe44b1b9d typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8a8ae07 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb02e1d2 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfe7b895 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6276e21 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe85909a0 typec_match_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0f88f83 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef2caca7 typec_plug_set_num_altmodes EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8a8f5af typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9e0bc2d __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb1f6e08 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1e4a82d typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf42656fa typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf47d2313 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf55dc76e typec_set_mode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3d2327a6 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x44ea419f ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x452d119f ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6d7f3064 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x93901d8e ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb32ef172 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbfec9170 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdb67376e ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5e616fe ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05e64900 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07e80d07 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x389e93da usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45c1a16f usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4af73844 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1ad2e9ac ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x413229fd ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x66c68d98 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x74d8774e ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa0dbff7b ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa8511fc6 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb11f3638 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbd99eb4d ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc072cf0f ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0631e2cc usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x270bf987 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x28ef960c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x29461f76 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x524a5428 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52d03124 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d5fb1dc usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1c616a8 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb5d0aff2 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb7f9b758 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf46a82d usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8e90d36c dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9db5329 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd14995e usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbdb1a06c usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd697785f dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdafed01c usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd3b7cf8a usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeaf77689 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x16c8bea7 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x415d91f6 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x42213657 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6891b20b _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6ffd13b6 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x729a3a1b __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x73ce3216 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbf1487cb _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcf61dfb8 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd6752c31 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe987f038 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xe0837364 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x05be0089 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0315ef64 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x071e0f50 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1403d237 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2cfb2e08 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e0212b3 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe9d7ac10 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf6d9e87d usbip_event_add +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1fcdbd6f vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2ca952a0 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7cf4b32e vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x898eee7c vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x95e76735 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa3eb57bf vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa9456fcf __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc488ff28 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe162d323 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xee79b90a vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf3546bc9 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x97f714a4 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x3d4f0f3f mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x21b0c30e vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2d3599e1 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c8bcc7a vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4263ac14 vfio_pci_core_read EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68e7446e vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68f29c30 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7821a006 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x85951e72 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x880834a8 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xad342290 vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb15c3685 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcf6724b6 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd30d9ba8 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd376c8c7 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe3cca133 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee06d6b1 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee5d4647 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee6aa3bc vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x37b7001f vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3ee58382 vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x5ff1ce95 vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x60099ec9 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x922dd84c vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb5d736c7 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xeadc31a0 vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xebe9c17c vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xed65a801 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfa8bfca4 vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0ccd7a8a vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x122b33a9 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x13976948 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x157a5005 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26518d46 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x28226ba0 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x64ae3618 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x65a6c3fc vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6e041948 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a007956 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x84c5184d vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa540f112 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb2993d40 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb3633f4e vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbb2ca376 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcb0587df vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd35af71c vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdf555ad4 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe1c53329 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe34df2b6 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf4c4f578 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x21469f6c vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x298c64f6 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3282ae52 vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x64757cbd vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x897f345a __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x941aa919 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9d5ba301 vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa4039ee0 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xbe5b3ecc vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc81c6c1e vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x08bf625b _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0d61109c vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1155e02b vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1ef12652 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2729b244 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3238b42f vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3d770e8c vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x47d2b5c8 vfio_assign_device_set EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f03f032 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d91a9f7 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4fb212fe vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5abcf68c vfio_file_enforced_coherent EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6239cfef vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66d9797a vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x749e87b3 vfio_mig_get_next_state EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8c42a4f9 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x978dd06f vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa985ecbb vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb34b60ce vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbb28758b vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe3fa542 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc3ebcb6f vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd170047f _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd183226d vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd741a20d vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe29e4224 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe88e6517 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bad53e8 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c4eb593 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x115b4ed7 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f781348 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23dbd2fe vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x295fb07a vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a55f9c1 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35c7bbcd vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36285de0 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b2c7e60 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3eaa659c vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x472a9123 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ccc42ca vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cccc340 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f92157b vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64169640 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c62bc20 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78b2d609 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8123ddd5 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84159c01 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bd4fcf6 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b8f36e1 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f3bf75d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1252242 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e017eb7 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x900a11e5 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x90143775 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d5e2e99 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa556aadc vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbcfd163d vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbf285825 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc8cb1816 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe98164cb vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a854712 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x230e5575 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2669258d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27590618 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b0966a5 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40359338 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40679407 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x421603c7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a7801ef vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55b7b8d3 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59f158f4 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b1904ca vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ccc6a5b vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6022199d vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6163b3d2 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71a30bdb vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x724eb726 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73f7d07c vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7621e687 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7ee1da33 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x806cab87 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8335e918 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x862e1a0f vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89fa4b81 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90c28a5d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d884384 vhost_add_used_n EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc321d715 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc586f2c2 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0412497 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1be3fba vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe28041c3 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe28260ac vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe364557c vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6b726f9 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8e81ccd vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee682520 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefb9f96a vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6bc4078 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf83cf6aa vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9e8dd77 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae52dafe vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaed87333 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb264efc5 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9614ab3 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe16c747e vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe531a5f0 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5b2b1c0 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6461b08 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe94817b8 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea9a5203 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0adfd0c vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4837318 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa39cfc7 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa95e281 vhost_log_write EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe807307 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffab8fd4 vhost_signal 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 @@ -17717,393 +17723,393 @@ 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 0x1b0f44e6 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x535ed601 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x78cb70e7 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x81e76e3f ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x98dd85ba ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc2b052ad ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdc3c1776 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xfa713a1f fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x38afe5e1 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xfd18c253 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xa4f5946a sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd3c96576 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1a094f4c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x36508cf5 w1_write_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x58d3f744 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6859c5a5 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6a049786 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x908e5be4 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb9ad989d ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcfdd5f69 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd54f83e4 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xb6d9347a fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6bbc0369 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf8b7549f fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x19aa9fae sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xec56230d sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x28fd87bf w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x57b1604a w1_reset_resume_command EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66be7e66 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf0c773 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x80d37274 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x93a27470 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9ceb5423 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb27e547a w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc90c3e3d w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd8556143 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe354cbd4 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x062d722e xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2b8a53ef xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6ce30bf3 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x80419835 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfb6e1c04 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x75bf12bb xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xa8f2a68a xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x07ce0bb1 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3197d71f dlm_posix_unlock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6fa707ec w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x76dcb775 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x890c5fa5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x932221ba w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9862f701 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f5ed4ce w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xca6e85b8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd486040 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xff2caa05 w1_write_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0a863539 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x10727433 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x273c6c10 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xaeb5e029 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xed91d242 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x0f0d0d98 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4fcbb72a xen_privcmd_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x601ca23d dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x75f08e43 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa92ef824 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc0862386 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 0x0af64bbe nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3c458aed lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8ad1da2f lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b551551 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x92787bb3 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0ea6ef98 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x127fe68e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2d5be726 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43d2aa7a lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x545c15ca nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x750ae0e4 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc25973da nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xec755cd2 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01f812b3 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe8fbe528 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x003d96e1 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x014bd838 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03507531 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x039eeefc nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ff357a nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a7e89f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09fa0b76 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0daefee5 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee632e0 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f0cb849 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x055925e0 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0646db9b nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06b7a199 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x071e12eb nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09fd656b nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c504045 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fe38dbe nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x102996c2 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1045ec73 nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b34c37e nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce21d56 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21acf0bc nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22cc8cf1 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14e98598 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16ac8f7d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x191d48dd nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cf1a218 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db11ec4 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e1128e9 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x209f4433 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21a6bdd3 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2509b8a0 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x264a4697 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26833705 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25f79ffc nfs_unlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ee9b11 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x285d4e11 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fd9180 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a97fadf nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d270528 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3022a780 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8888be nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e51881f nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3258dd65 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37016e57 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x372f0190 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x387a7fae nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x395b77b4 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x346d4196 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36a9430a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39ac1523 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d74877b nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd1cf23 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4710a1 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3acd530b nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c5d71fa unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ce97655 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb4e0de nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x400522f8 nfs_pgio_header_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x429e59b1 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43952d1e nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4592bbc7 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48b6c5d7 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e3f3f8 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bfe899e nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c61ca43 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453dca7f nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x476ff6cc __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x481af656 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48460bdc nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48a09dd9 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x491d1e3e nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49dd3164 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae5b112 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b86773d nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7cb1a8 nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f1699f9 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f2cee83 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50e16598 nfs_async_iocounter_wait EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a34d6f nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x555b5c7e nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56d64a74 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5553611d nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5582e181 nfs_file_llseek EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5966cefe nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c0d12a9 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f75e984 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6054960f nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60cd5bd0 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x613689dd nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61cbaeaa nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6228b8b4 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x671566fe nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6915ec49 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ad6a8d7 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6be77476 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59f0fa73 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ba44f29 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62ff14b3 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6406f75b nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65b19cfc alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68be7a2e nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d464d3 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e107916 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e5733e3 nfs_dreq_bytes_left EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a4054a nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ead32aa nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ecedee9 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fa7c551 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71762786 nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x780c164a nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78f1a4fe nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ba74fd9 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cdc31d2 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x816bb319 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x840f2006 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x749c5eea nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75b109a3 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75c0c3d4 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x765d1e57 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a4e85a8 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b19d67b nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d123b65 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa88437 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80cbc4bf nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82bfd0b6 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867b049a nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8723c3a5 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a1a8767 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a4cba29 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a54296c register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d398eb1 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e36fa02 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86a2b36b nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8745823e nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8844868b nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a71429b nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a82604f nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f2912b7 nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90c53acd nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91378b20 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9143d967 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x913139f8 nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92d5c511 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94f8c221 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94d54784 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9589f4df nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9630e7cc nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e2f317 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97a981c4 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96479a22 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98156de1 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a9ce57 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c169edd nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ed1c2f9 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07185f7 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa089744b nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1608cd2 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa30aee28 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f9e41d nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa65f4097 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7defb05 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8700dd6 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a6267e8 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ab65e7a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f45546d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa20d5de1 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa422b43e nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa470fa7e nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa492f636 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa494fd29 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa63247e3 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6814734 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa86f020b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8784f82 nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9da44a0 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9a93799 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab2866ba nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab98fe37 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac1bcd25 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac6c0acd nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd66380 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaced7055 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae499f46 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef998a7 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0b2179e nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1a84336 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb24aebf3 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4aac03d nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4f6ac8e nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb75dac2f nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb924be26 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba657449 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaecbc15 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb8c971d nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc99c53e nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd447e59 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbde8660e nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1cf6d53 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc271f6ff nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb42f6620 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb42feea7 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb638ad5a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb77391cc nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbab7a87f nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb9dfb8e nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc98938f nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd675c1 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee048c1 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf952052 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc04cd40d nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc074f76a nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ffad83 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44aa854 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5805654 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5d727cb nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc674417a nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7b62c4b nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc97a16bd nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2a7e8a nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc0ada5a nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc9792c5 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce352a12 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd135bb26 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2d193d0 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd41e76cb nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd48c3e30 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5792af8 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a9fc76 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd73d7f83 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89dece9 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd94f2ef8 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6e499a3 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc95ef0b9 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc978166a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc178778 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd082532 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1cbcdb nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceb6ed1c nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf2c84b6 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd090c963 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd21d121e nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2524615 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c8e62b nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd82cd1e1 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbabdb47 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde2677be unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0561e0 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcaec35b nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde7023ab nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1704fb0 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5144096 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea09ec41 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac6c6ce put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb13bc23 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed886dd4 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed895c8f nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e95f3e nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf40ca475 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe822b3f8 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaf1337c nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeba01c45 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec672f9d nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee3c7b1b nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1a56662 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1f8214b register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6cce1aa nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffd7cd36 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x945438bf nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcb4ef96 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb70955 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfee0c4ca nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x9c905899 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00ce3992 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06611013 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x076a80fe nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x082179ec pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06bd2804 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08cc0f84 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0946329d nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f0b4125 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12b49a48 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18778527 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22e4fe8c nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2736b9dd nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff8ea41 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14ef45ef __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16192f95 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16c2bec7 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19570401 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a661d42 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d3e8af6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e5d2063 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22bc12f5 nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2826348e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bc79bcc nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33ce3438 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3474df93 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3918e0bb pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d9623c2 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41231bb2 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41ca46e6 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44830bce nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44e011e3 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4749375d pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a74b8b5 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4de6c1d7 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e96c3a2 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50978733 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3338c2fe nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371dd48c pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38d677d2 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7d2c27 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e58aad5 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fb81ef5 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x409d5fe3 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x429aebc8 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45e4c6fe pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4601f523 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x493dac8f pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d769963 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x501ea3ea pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5476c300 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5751e347 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58d85dd3 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59e722d1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59baebb0 nfs4_delete_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b73dcbe pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c5c9162 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edf4b76 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f648dcd pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61361caa pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x696ce1e5 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63faf8e5 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x648598c8 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68f45211 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b6f384e __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d0242fd __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d8ebb97 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6deb1303 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a080e7 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bf8c913 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70132cec __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70307f19 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7558d2a1 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x756db4d7 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78a2211c __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a89c6b2 nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c965966 pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x812e0bb1 __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82be2ab1 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8324fa6b pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e77eeba __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x912a067e nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9409fc06 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95da03b0 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x972c9190 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8260ba22 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82b04fb1 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89187dd2 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d2f1e38 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98de9efc pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d1f5075 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f63b76d nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8484315 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab288729 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab5017d9 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae269710 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaec22686 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5467706 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb61fa712 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6547c30 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6bdf85d pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a37991e nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fb2e091 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa31aba33 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3c0d644 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6c61afc pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab4f4a22 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xada4f0c2 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae2f35c1 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf90edab nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb178f654 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb21a0233 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb914d365 __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 0xba558938 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd8e8480 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdc797a7 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe181d65 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe1d5f72 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeb027b4 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc11bc7d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbff2df97 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc45b0277 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ee12bb pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca0e715b __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb0f6799 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc92dbe5c pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcabb024f pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcff38b0f nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0146d9c pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd43eabfc nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd65958dd nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd96667c4 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb4f8d14 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd11e1b71 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd44cc978 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd2a7067 pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6093930 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6aab91b nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6c9eca2 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea57b6bc pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b3ad57 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3f57151 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe637527e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe861db28 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe97907b7 nfs4_schedule_migration_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb08f001 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebc1758f pnfs_generic_recover_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedc868a3 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef2566cf nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4a1269d pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf611d7a9 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7650033 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2798b24 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf47813b7 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6b14479 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8dd09e8 nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9a16a56 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfad7bf13 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfce5d0d7 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0db6b02d opens_in_grace 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 0x07b40b53 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x07e10187 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2df252b8 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb2d41563 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x6fe31fb7 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e7fd53c o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x44197405 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x340eca45 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x73775e15 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9c43dc00 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdb545657 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9ccf3d27 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0fe25d81 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58a6102c 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 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6bd73726 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x931e91dc o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9946200b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x830680b2 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x842e942c o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa0916a86 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa7c62790 o2nm_node_put 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 0xabe8d570 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb04fe4dc o2nm_node_get 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 0xe3e6c1c5 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 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0886eacc dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4237ba07 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x32cff86d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x45feab57 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x70f6312e dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x91d157fc dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa74917f2 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb3f41489 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb7ee07cc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9359494b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaaf20ef3 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb579e71f dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02f8b6fe ocfs2_kset 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 0x346acd80 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x289a2cb7 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2dc04dc4 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6718e47f ocfs2_stack_glue_unregister 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 0x96e842c4 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 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc815823d ocfs2_stack_glue_unregister 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 0xf31eb75f ocfs2_plock -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x034b34a8 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2d22de7c register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7b807bd0 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x83da080f unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xa1b4952a unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xdcbfee78 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x5b2dae96 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa9e8e567 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 @@ -18125,8 +18131,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 0x33fb8d0c notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6c7ab162 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0d64b7fe notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x691c8287 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 @@ -18137,1074 +18143,1074 @@ 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 0x1516b7b8 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb6080dd4 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x14996fd2 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x57c0fbb0 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x898e1c08 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xa9e3cd70 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xaa62ea30 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xf1998b88 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x02107cf2 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x16ace557 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x430292a3 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x695c979d mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x78e05790 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xdf22b772 mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0xa405a72c stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xe99bfc66 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4c8216b2 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5316a3f2 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x22804b8a lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8d519511 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x11530035 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x1780a775 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x366565b9 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x68fd969b garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7d21a808 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc0f616ac garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x02ceb8cb mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x3afc9be8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x6c234174 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb589175d mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd58f980e mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe449af9a mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x49e9e921 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xcf7a76d7 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x71b39204 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbf4d1f03 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 0x71b70216 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x1643c754 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 0x4e955298 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6cef388d l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x89d44933 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa10f03d0 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa1c7daa3 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbfd0450f bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe17559ea l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf789be57 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7c09a38 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x985e2707 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x154ae5dd br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x202b4e4c br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x29ce3195 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x39723921 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x39984638 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x48295c43 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x57339068 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d2bebea br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x64444d43 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x72e58a1b br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7866cb15 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x845e65df br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x855ecffb br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8964f224 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x99e3da66 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e2acc75 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa118c4e5 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa3e8e530 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa95e8c4c br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xae544eb3 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb50638e7 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb82a7f12 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc0bf12b2 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc859d88b br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3d62174 br_get_ageing_time -EXPORT_SYMBOL_GPL net/core/failover 0x678d6d6b failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x74da0663 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xcf77e660 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x045e54b7 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a8e8021 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x180c3d73 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2ca58862 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x49174fe7 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x59a12a2b bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7d684adc l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8fd161e6 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa7e757b9 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb6465729 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xef17fcc8 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf8d3252a l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x47fc5c17 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1965b5ed br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x21d87be3 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2ad7658c br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d581930 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3dcfa785 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x411d8e2f br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5401dde5 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6eb32fed br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x75356608 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x755b79d5 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b064819 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x814fd5e5 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x838f36ef br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8fe3b55e br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x904c08a8 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9af771e3 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b87b950 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa52d95bd br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb31ed25e br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xca7be430 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd4484bd1 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf21d0e79 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf30285af br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf58787fc br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff3d5af3 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/core/failover 0x36e49d30 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x6cf138e2 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xf90222ea failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x04d73c99 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x091164cb dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f80cc99 dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1aa844a8 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d5d3724 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x25ff86af dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x28d7abbf dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x293ae157 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f03f13a dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30bf92f4 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19cc2195 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1eb0c1be dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fe25e9b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x203ead12 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23efc207 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x276f264f dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x322d4241 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36609dea dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40bba8b0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4151b136 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x423047f6 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49f9527a dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53250ba4 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x537222c1 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d7742fb dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55f622d3 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5be6bcd4 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64d5e35f dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7335dc17 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7795149c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c83adca dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ea56810 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f8b04d2 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60f7f72b dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x644b2db1 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ae3192a dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80b9b15e dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8221cff8 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ab4f028 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8dd49b52 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90f60e45 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c558e2b dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa15128e3 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8ac4241 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4594545 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb51d8e25 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb58d0da4 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc2a089e dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe9ea13b inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc25ff04 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1a9649e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7eaa44a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd42890a7 dccp_connect 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 0xe0e8d2ba dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1fd16b1 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x416aaef2 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c680b23 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x735ce752 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x861ed9cd dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa94d7cfa dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc69f7731 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf1cabca dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed2d55bc dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee1ecb1f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf49f3304 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55c9fc0 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfff22b36 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0890575c dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3e115d5a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x45dd4ef3 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f259135 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb1f982ab dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe53ecd0d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x049182a4 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0809f2d7 dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15540869 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ba58c59 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x21af4f8f dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2ea3d423 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x346dd639 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36304515 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40adab95 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f11cf87 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x221fb60d dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2421dcce dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25358964 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29e98298 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d71f0b1 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2db05e83 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37571e83 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37c29546 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b0f15e5 dsa_devlink_resource_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45116a90 dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c2613f6 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d423622 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6793ca43 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x85c13e4e dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88410e1c dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x892373e0 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x983ee472 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9b2e77d0 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c31e70c dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x51cb1ed1 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x675a43a9 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x78e734c8 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x87f333ec dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97bfe8b3 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa57a3bcb dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0dcdbf8 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb4f37434 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbebfac34 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc02abfc0 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc056c870 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc143c716 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9eab366e dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa4b1e70e dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xab38e156 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaec30679 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5cadbf0 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb92e03a8 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf91f44e dsa_switch_suspend EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2d2480e dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcdccfc6b dsa_tag_8021q_standalone_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1732663 dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4c4ea2a dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd54a395f dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xddab3490 dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde5b5006 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7137caf dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea2d3fec dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf98a05f1 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd0d7bf3 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf29f32e2 dsa_tag_8021q_bridge_leave EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1483efcf ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x04940fea ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x48b3c227 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x629c9a09 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc90f9536 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdc9161ed nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf731c382 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfb9c6f2b ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8f235447 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf353e4c4 nl802154_scan_event +EXPORT_SYMBOL_GPL net/ife/ife 0x23a28fa8 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x3d8a9cea 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 0xb47bafb5 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xb6227fff ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6a578346 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9394ade2 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd8017c5b esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x5af5e52b gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xdd2429f2 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0578df2d inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c620a98 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x42c63d6c inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x48b2de00 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8391038f inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x94817221 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x97e87f0d inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe362c250 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xea15ceac inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xde94668a gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00ee61ed ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17b2571c ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e068ae4 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33a5eff4 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46120285 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4a86b28c ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x511cc260 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d5499f7 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8bcec51 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc43557b3 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd32137ee ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd618a36b ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdff305e0 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe21b25a3 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf2ff1b3c ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf792e271 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc2c4e3f ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xdf6fc3c5 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf359151b ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x234f6fa2 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x2a60d3d3 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5daa014b nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0d296060 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x103008c5 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ee51a0d nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc105ad49 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc582081d nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdff2e396 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfba89ab7 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe9263fba nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2b798dc7 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x49763895 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa0646bee nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7a65876a nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xf04bc2a8 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x22176696 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2388a6b0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac5a93bb tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd08f34b6 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe5ad89a8 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0d0af14d udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x587f59b5 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x65777dce udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xacfcd194 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb2dfbb8a udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xce665c75 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf581c2ff udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfc0ee2a3 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x81671207 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x94b13523 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb0da11af esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9967a526 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd76a55ae ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xded4e130 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x28d93d2d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6df0476f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf4c34a64 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x39be9cd9 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe4153cb0 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf89837ce nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x17660976 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0891b4ef nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0cc53985 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2d014b25 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x34e802d4 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x91379db3 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xeb0b7e65 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc9a2ff7 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x6e419ed3 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x56693f29 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7463dbb5 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xeb914047 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8b1ee9ac nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbd6bd3a4 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x060001a6 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x100bc2c0 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18d42e19 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ea2488a l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a295a19 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x310d1d8a l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x414c96ce l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4df0a784 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5483be1f l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d3c27bc l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61fc6db8 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x641392c6 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x802a155c l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8438bbb0 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ffc12a3 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb025839d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6819059 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca360dc5 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc18a789 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2254d23 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1b1dfe4 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xb31ec7fd l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x215b0a4a esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x41dc9dce esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x99ba38c0 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2b08cc7a gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc15a3397 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08d80de2 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x23588547 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x26a235bd inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2da3a864 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x625f5e42 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72270c4a inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x907b8526 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa7be6ec2 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc25ad130 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1fc6885c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0847e9a5 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37c5b1bd ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x38e4588c ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54adf742 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c5f3de1 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x846407c5 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f24ad47 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x925db2fd ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa44f12ad ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xabc9fafc ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb5d42ba8 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc97e99d4 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xddc9ba92 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeb5fe7c8 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed80fa48 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfca734d5 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfdcc7bfb ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa55ea880 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x3e64c2c3 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x52b3788c nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf5c1a3d0 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x33d4e1bc nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2b88b584 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3a7bef11 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3cd0265d nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x77be134e nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9d79780a nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xba72b832 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe9081004 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe953ab4e nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6e685c7e nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x72482c90 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x771750de nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4c92dbcc nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xabc717e7 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x022aadaa tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1445ba30 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x24bc94aa tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a99104a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc4a5650e tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1778a452 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1a37a00e udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x42db4766 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x71f9ddbf udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x720c58af udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7ef01f79 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xceac817c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf79045ae udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x144adbc7 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7abc49df esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xddd6813c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x582cf0f3 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x861497ac ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd50cff36 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1430c361 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf9870280 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x886e51ba ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1aa871ce nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4090d400 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x826cd5ee nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x1d24bb7b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0e7f7cc1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x210a99fd nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2c6f54d4 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x327de6f2 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x548bad57 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb1b9edbd nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd049ac13 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x6e340a27 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x71aaaa0b nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7d2d2595 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x87acb38f nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x787e7588 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8e6e2f3c nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x061bf293 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x16c6733b l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x226c3bed l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2421bab5 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30972f8f l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4362c74e l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5763e833 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x922e194f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9714a1d5 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x972add6b l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa68715c6 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa894e53d l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa929a28e l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc3633429 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5b0ceaf l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd58daca0 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4d44d12 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe72de608 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb5ed7a5 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeebbcf8b l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0247045 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xeae7bb2d l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x60f1a249 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03561257 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fe1208f wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x158b9355 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xd0660b0b l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x028d93fb ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x09cefa93 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0dd423a6 ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16d3ce62 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a273e66 ieee80211_hw_restart_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e64467d ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2266b922 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3194423a ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35ec56b8 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39379bd5 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x496b8e28 ieee80211_iterate_stations -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c2854a2 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x595b4252 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x60ffe44c ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70546a57 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7571d783 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8509db85 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b48323e ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3db787fe ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f8ce456 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57571ab5 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5cfb0131 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5fbe4e28 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d51db42 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6eaa1f72 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7982ddc9 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ba5739c ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8349c0fd ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85917549 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a839127 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8fce2f38 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97b4d07a ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa539c0f8 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac1abf20 ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb08a189d ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4140d3e ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb4422da5 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb66b0419 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbebeced9 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2ab7f6b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad14b171 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad5dc58c ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb03e5b7d ieee80211_resume_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd6874a22 ieee80211_remain_on_channel_expired EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf3879178 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x285884f2 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7983998d nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefafc9d3 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa238c6d ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x08658040 nla_put_labels EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x992b95b2 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb051b0db mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf20d04a3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaccf0ef1 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc2d12967 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc9aa3507 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf816c0c6 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05ba082e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17df118f ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1ee97763 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21e0c59d ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3400134d ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38af0051 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2744bd95 ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49d8a64e ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4bb73e87 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e378e51 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ea58f91 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x562e6505 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a2dab5b ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x639e3d16 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55b2cd78 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c432b6a ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fec5cf1 ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d1c1fe0 ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8542cb5b ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b2c24af ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83a10193 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88690074 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a873ff1 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x903d77f8 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92566d13 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9be73224 ip_set_nfnl_put EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8bbc1fb ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaa8a3e58 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4fb2bca ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce0cbcd8 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe03bf44c ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3a9be98 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe69a67c4 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabcf4e9b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb3c34abb ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbe87f7c3 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc566254b ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef5237da ip_set_get_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x07b2cf2e unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0ba7887e ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x38f377c5 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d22fc6f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x23b155fb nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3405086a nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4e9085e3 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7004cc9f nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8abb7af2 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1b7f66fe register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x593ffa28 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc36b8e1d unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xff7890dc ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x29a60121 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xae77fcc6 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb8ddb5c3 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xca3b0190 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd6a4ffc6 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 0x00e34b24 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x010e4dda nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03188f9f nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x034d7b62 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0362dc7f __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06370fe0 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06503fa6 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x066dd5c4 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x032aeba2 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05273061 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06598f43 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0789fb07 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x084973bb nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09bcabf2 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ab4f228 nf_ct_netns_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ec78931 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x108a9874 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11943164 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11defe32 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ca4f8b3 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb7d4f1 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22b009d6 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27286ab2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c09c436 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ebfcf04 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1083d1ac nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11aa7992 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1764918a nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b811c4a nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d30b109 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fff0993 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 0x297ec910 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x299d8d81 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e8e799f nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3159dfc3 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ae85eca nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b0b1e0f nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ba99f26 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c2ef53f nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c67e7cf nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e4b0e7e nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fb11c73 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45d566ee nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x463bd2c6 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48929fd1 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4db9455d nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4de5aa58 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5114fe55 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5585f195 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x567d6948 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cfbf57d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29e02bc0 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ac573f8 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bce5faf nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3051c3a2 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30c322e6 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3467e7fe nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35ed77e7 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x372cf576 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a60a08c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3af7b014 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b32c613 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d787715 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4176ab52 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x420d9495 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4348b676 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45e8a733 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e2f972f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5972888a nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bcb515f nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60ec9405 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61a78a7c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x629970b2 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67a1d942 nf_conntrack_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70544192 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72400e61 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772f1cd6 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a7f8292 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7edc6f49 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81702f9f nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x848a326a __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e970c36 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a921205 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b2820db nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7502456f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7974ed6e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a84d5a4 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8060832a nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82b53c22 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b3b4908 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b62e002 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e75c34d nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95ad9f1f nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95ff45ef nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97b35333 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x988b42e0 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91793cc4 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98e5bb45 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9acb7a7a __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d2fad95 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d8094e0 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5d53be5 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa63ec6b0 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa0091bf nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab264fbd nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad3e0052 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0a54e5c nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0fd9732 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa232a199 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3e2c541 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa66909fb nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8b83014 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab0f3d75 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad6fe70e nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf441e52 nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1518559 nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8f9d6fc nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbae1f89c __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb3a7b45 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc7d662b nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbeebdc5b nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdb1c42d nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc03f73bc nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc07808de nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2237dbe nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc278195a nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2c3549c nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2e51f52 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40c8229 nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6ecd3e5 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e5b349 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdd9ea2 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd107e713 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2fbaf19 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3063678 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc507511a nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5dec959 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc78d6398 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc79b69d9 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8ac2d04 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd526ea1 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfcf857e nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1e2c60b nf_ct_tmpl_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd78c3061 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8b44b73 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd983e58d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb1ed485 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb76427c nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebb1a865 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbe4faef nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc4274c __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1feb440 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6c96851 nf_conntrack_hash_check_insert EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed02cdc9 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee7f7880 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1d8a1e7 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec96400c nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee24ff5c nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf525eb10 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf64aa75a nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6acc9c8 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf851719c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf39e1b18 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf654474a nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd33a1bd __nf_ct_try_assign_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x950689bd nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xa027ad75 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x3e26c855 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x32d5c67e nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x590b4daf get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbb13124c nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x301d62ef nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09640a9c ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5a2d0d65 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5ae55bc0 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0878b89 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0e07bb8 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdb1052f2 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf445eef5 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9767e0cd nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xff5383f0 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6bdaae0d nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x769b2afe nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7c72b265 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06b229b0 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x095a422c nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1670a318 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2bf85f59 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3fbb7553 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40744ae2 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x42dd89f8 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4926cb81 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x553b67ed flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x61978cfb nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x645d705b nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72bc9bce nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97accf67 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9ee2a900 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa91141f6 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb356c5e4 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1fa728c nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03319902 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x142d4bff nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b4b0aee nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2076a6e6 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28c24d1e nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a17f4ff nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d8fd190 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f03be5e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33ea4231 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfff0551c nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x2ab26f89 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x62375b33 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc014596e nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5448faf3 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa698dd7b get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x160d7d20 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaa8b77af nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09639da7 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0b099a34 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2219c1b4 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4b90ab39 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x845bfcf8 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe03cb1e7 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfb6ce872 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x6feadb54 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x3b95c222 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x10e497f9 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2a684157 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x666f7421 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06fb275c flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x08b728cb nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x103649eb flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3caae629 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d642154 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3f739b49 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x61ae9565 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8409e106 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbc85ca51 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbd8ba9d7 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc079e5d4 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc1adfeca flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc37f3a76 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce193595 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd28366ec nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2390fd3 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1318b7d flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x107aeb6c nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1d3be023 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27b206c0 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 0x52e398f6 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x54859849 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a346da2 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c509fff nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8f7d090e nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x98468e26 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa43e2013 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa62cacff nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb11a83a1 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b30b80a nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5b4cc1d4 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5b4e7905 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c254268 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f86b917 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71a89c2d nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x819d13be nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b662f4c nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8e714949 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97253ef2 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb420e8bf nf_nat_inet_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x100faa69 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x14658ffa synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd6d6e69 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe716a2cd nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeb0ce4d8 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf5bd3987 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x17b14071 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1c3ab584 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 0x311344e9 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x331ac794 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x77b118dc nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7f034e0c nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x81a45fa8 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x93f8c787 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc07a23e2 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc8c87532 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2b1b1e14 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x45a831eb synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x733c47b9 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7af01eee synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x893eb5d7 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa598a26d synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbacd869c nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc663f30d synproxy_recv_client_ack_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe3c1c88a ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x048b5f83 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x079dbf4a nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a184e25 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ef395b4 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12088ac6 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20f712e6 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b6eab09 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ea9d8df __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x322c7d47 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xde408154 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04764318 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06126aaa nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08699ead __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x113f9d2a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x141ec5b9 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14e58cb7 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a3dd7c4 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e935283 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2886be51 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29b675ac nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e355e72 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e3fdd52 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3183e587 nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d08b8e6 nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b6a0d95 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e790e3a nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5aeae349 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52a688af nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53133c3d nft_meta_inner_eval 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 0x6c9740b9 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x776addd4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78a2de2f nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7acd290a nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e4b5bbd nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7eb0c9e2 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82fdbf52 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x838d5d25 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x933ac136 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95289ea6 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95894795 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98b852ed nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9dd568d3 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0dab23d nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa294049f nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadb48db1 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60939b89 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x649d0e83 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66a35b4b nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d324f74 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74366cf9 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7746d218 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7817b663 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83395d96 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84dd1458 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x94d78c70 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e31c9d5 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8331597 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa99449d9 nft_meta_get_reduce EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb179e4da nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbeebb264 nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3b95975 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcfa5be8e nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd002a0cf nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2b567bf __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd618036d nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb57618f nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2399e6e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb340b41b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7876826 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbce8ade2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd21e411 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb24e4e4 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcea64f73 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb84a088 nft_set_catchall_gc EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe13f18f5 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe16a49e1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe017932a nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeebc0623 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6807e0c nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa60f558 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1cf4b680 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x26384eec nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2ec85cc8 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed85bedc nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf36e4356 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3c06ec3 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf43d54e8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfdd6b1dd nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1d7ac79e nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x26ceef50 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x343b136a nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x94bcef8e nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb592c624 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5f7988a4 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x60ae7163 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbd94ba52 nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xde7786b6 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd523e0f nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x24480ca4 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8437a5e5 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x895e9023 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe3715a6b nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x21e5a83e nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x68728865 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x94c0463b nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x56284b9a nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb33c7ed3 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0d6db930 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0deb7709 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0f34787f nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1f827db5 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcad76f7b nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5c75c926 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x6d0e3899 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0ba04e94 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x15ea3b91 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7a53f2d8 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc5c17740 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd356de25 nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5866f77c nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8147e40c nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x91ca2987 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3804d691 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbdde4bfc nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf9ddec4a nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x071aa056 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10bc0a15 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x145ac602 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x245622de xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d1ee454 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f7eda18 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x343caafc xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x36bf5ea6 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b039faa xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5fb47bb9 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6aee63b7 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e2ac100 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x769635d9 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x772cbbfb xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x163b9b65 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f830892 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f0dd49b xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x487724e4 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57e83456 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62a65802 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x662ba354 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f8ccd88 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7590c2fd xt_check_target 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 0x81994f78 xt_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x943b00ef xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a362d82 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f22aaf4 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x941372e2 xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa3517282 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa71df31a xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb8bf7d66 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8ac74a8 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaffe3e11 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb7c3e9db xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbac061c0 xt_replace_table 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 0xca013a41 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 0xd44c39a5 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb34e82c xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdd3b7b1e xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd59ca621 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea1122af xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeed54bc5 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef245376 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf77868f5 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf77e6e11 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0558c7f3 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8d3cc726 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6d07db87 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdefd1436 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xec590176 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3663f547 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf5d058d5 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfc24bf59 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x3be37428 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xe617b60e nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8299ca58 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x872d5822 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x954b1530 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9fa0e437 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa2cc6dca ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef2ec84f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0x09f678ca psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x444cfc10 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x52d92954 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x6a90f7a5 psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5f0ad905 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfe3d5f55 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3442eedf xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe3b1452f xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x25849fa6 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3da8759b nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb80acb9b nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x024d13f3 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaa63d32f nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf4c583f3 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x362636e7 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xf9b7f87d nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x05cdf99a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1de45d83 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2244c47b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x592e721b ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x967646b0 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe74be502 ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x7c5c14b6 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xd1111b47 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xde0e0134 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xe50aa3f9 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0f871eea qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x192eb208 qrtr_endpoint_register 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 0xe44ada63 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe9b9bdd6 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd406a091 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x077413ff rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x11a8c34f rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x134530a6 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x1638633b rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x1aa48019 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x1ad4285a rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x1d665f1f rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x1b4ced45 rds_rdma_send_complete +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 0x2c2e736f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x33eee5fa rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3f2f553c rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3d7482c8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x43fd0b0b rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4d032b7d rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x535b4400 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4816b4bb rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x4d8c54df rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x4d977f1d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x4e36c5da rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x5031f586 rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x58452e76 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5ae8feae rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x605a2e6d rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x68fbf2a1 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x6b51a864 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x77d61bd8 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x7821fa34 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x7a1004fd rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5a631ef3 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x5f1bb3b3 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x80f060c4 rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x889af299 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x9401e868 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x86e63320 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x882795cc rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x927327a8 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x94c898d9 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x9bd47f40 rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xbe1f54bc rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xa8356a24 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xaba5098f rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xad747f4b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb4653fbf rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb5743d91 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb5bf9641 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xce251911 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xd4460e4e rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xdfc004dd rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xe052f216 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xeb723300 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xfff475f7 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xc96d34f9 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcef8437a rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xdc3f1290 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xe796d97e rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xec9735f3 rds_conn_drop +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x21a8df9a pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb85da9ec pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbe5773cb pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe18b63cb pie_drop_early 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 0x2a3866e2 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x3c345fb6 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x3f4f3490 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc268ba2e sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x1d0a8d3a smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x2228f066 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x4de800d8 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x5a171383 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5e38f3d8 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x6531df33 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x69259d48 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x7db1c874 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x81701863 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x85453b15 smcd_register_dev +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7625c2d2 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc3801a20 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd0d9897c sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xea420df5 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x1b8e6ce5 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x27755ebc smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x41e7953b smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x61484f0c smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x7b72b640 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x8a5527e4 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x8e9f2445 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb719c186 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xcac2e4e7 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd80e1a89 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0919015d svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x145e521f 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 0x4c11ccf1 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x62f2e876 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9d9a3109 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xad1ee210 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x60bc2a76 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x98864ddf svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024e505a xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02557470 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ecc04f svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03c20cf2 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a80980 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02bab6f1 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05131304 xdr_init_decode 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 0x0720df97 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d750ad xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09dd242b xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e0cdee rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09feb9e6 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6fec6c xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ed13c89 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0feb7816 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10662923 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10daafde sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11a1f001 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14fd264c unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15548871 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x165b77ec rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166f256a xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e4795c sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x193b3db8 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a106d81 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1adc69de xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b8b6913 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca1c2a4 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d2ecbc7 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d3c8ba8 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06aaeb53 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08961bd6 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b084899 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b228f6b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b68d20f rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d014d1f svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dffa2ae rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea9dba5 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f26ef67 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fb3f2a6 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b9d76f rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14c2d305 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x158bb0cb auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16512f0b svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1802e667 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1882e19b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190a2f4c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1975ef0f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x197985d5 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x198f8caf rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19d317a7 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3a18e9 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1abd1022 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c57fe12 rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee954ed rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe60a65 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216ed48f rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21834688 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21933b0b svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x244044b7 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27be708b gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287a1602 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b2da98 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8e440b xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea473f9 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e27ee0 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211931f9 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b28cef xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23046fae xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239d8a0b svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24a45279 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25638d1f rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e19eb9 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27569646 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279c34d5 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28531c0b rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287e1863 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299d7b64 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a62911e cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c350a53 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d13c83f rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x302903da sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30645254 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314d512e svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a8c3bf svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e69815 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5ecf81 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc20eb1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2b5775 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe1ad97 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30415c8f xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30e18362 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317f4227 xprt_free_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b49599 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x325a5a08 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328c46c2 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33235f63 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3384417b xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3748bef6 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386db5fb xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3878d23d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x356a536a sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b54e4a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37bec196 cache_seq_next_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x390a86dc xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x390c7bb0 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395b6656 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d62907a rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e4107bf rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed1de64 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3edeabd4 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3efc499b svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f371122 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f432fce csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a30bd5f rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d48aed2 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ee86127 rpc_clnt_xprt_switch_has_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f488ad rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42418e9e rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42bf0ab7 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x448dab09 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a244ce xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a7b8f4 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f43cd2 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4564f8dc svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b48959 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464a68f5 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4970f6d0 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40043ced sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x405125ab svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41219794 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423bc734 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4280b202 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e9dd76 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44eccdc1 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46318caf xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x466b4eee rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce5a531 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b40a459 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b83d330 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3747ed rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c6e2446 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cacd970 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d726f40 rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e301e8c svc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50d3d74e svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52215061 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f80c714 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501f071d xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50dd7764 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5119b289 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52ada2d6 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52ddbbd6 svc_xprt_deferred_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56fef695 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585de785 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588e6272 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55941060 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ecb97c rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588e2d7b xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a23816f svc_rpcb_setup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd63ada svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c06ad5f rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cb6b845 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0f6f83 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ee37847 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fce74c8 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5adb51e8 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ce02633 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cff9bfe xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef05179 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb8ba59 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60813e8c svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62226868 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631f2853 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63353a88 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x639b8688 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63c98029 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64540757 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64d15e83 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664b9ca8 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ca3d27 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61066f4c rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x614800e7 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62778124 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62a9e69a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62db76b6 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63062ae1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64812f21 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649f544c svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65cbe230 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664b6fc0 xdr_stream_zero EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69666acf rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a618295 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6afc9ec1 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf67525 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e38d4c7 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e6cdc78 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fbccc6a rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70300c94 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712e6416 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d806a5 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5cd33a svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7e4360 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f14b560 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f9a88e3 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7170f98e rpcauth_create 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 0x737c0949 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73baa2b6 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7439dbdc xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74d7d05f rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76243029 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76508480 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x769cee13 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a2642e rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76fb7de7 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78153982 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a6d9b9c xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd38b81 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3e3f59 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d023f43 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db3268f xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dbe9cf1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x741e2fd5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x742f10a4 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745294a0 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7526cef7 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7738eef2 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b12d1e7 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c911335 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7caef4f2 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc69823 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db03d65 xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e40cbc0 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fba41c5 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80644e32 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8293e6c0 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82eae56d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x832b3e32 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x849b995c cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b2a145 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x858355e6 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d0c9a1 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86db665a svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897a367a _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a4f5f1 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89dcd9c5 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89df2178 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a727aa4 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a79d80e rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad790b4 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dae1bc6 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e3e554f svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb6d03b rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924a5dc6 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92985eca rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9459b421 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957acc05 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95efc0a9 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95f1e212 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dff6509 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e5c88db svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e6cf0ef rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f30f1cc xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82209fd1 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x843dedfc svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x864f2cc6 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e546e0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8735d98e xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890de37e rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x891fb1fd unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892fa334 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf9b52a svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c0a5b59 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c518b4e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3d11fa rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e02c233 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f938225 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc8ff6b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90344f51 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90afc738 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9122e68a rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9139402f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91886d3b sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e39886 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9410ce22 rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670c300 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967bc965 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d45459 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f2d212 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98376ee4 xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99fc5509 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a518f7a rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9afd3517 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b87bfce svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed1c1be rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f2bfc8b cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4256b86 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa443bb79 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa924e16c svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e695a7 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8bfb0b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe1ec84 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe6c21d xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xace80c83 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a071e94 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9c5c40 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0c2e0a rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cb3b4e9 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f02137b cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f1ad320 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0899dc2 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fa8a71 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2bd3b40 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4253c6d svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4dd4cd0 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e0d0c1 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63ed97e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6cad280 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa78dad56 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9048a0d rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92825b0 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa96ef77 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab149e51 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac2c7b24 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14237b9 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fec51b rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4fd9327 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf7358b8 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b84293 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1349faf xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb16dd175 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a4d35e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1c5e146 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a801ed rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4064eb7 rpc_restart_call EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f25537 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75c790a rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8573038 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3f91bb rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6c3271 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd09357b auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde80c95 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb611f48f svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9154866 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9f05abf read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba49c790 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc6206e6 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc954766 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2ac730 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd927a61 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9ca2f2 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdb7badd rpc_clnt_setup_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9f373d auth_domain_lookup 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 0xc212fe82 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23142d7 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc457342f svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1d65d8e rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3616110 write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc490d29c rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc68bb99f xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ec4f8d xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc600923c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7447b96 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89078d9 xdr_encode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2f2acb rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce4f39f4 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9efde0b rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca08b368 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaba7f9c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb67902c cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd2a8223 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdce8a0e rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0812d42 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd102cdfc xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1897d29 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1c15d4a svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3737b1d xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd391f566 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ddb2d7 rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5de9b5f svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacbbb7b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba4f2ae rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc954d2 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc53b03a rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc6c1c47 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfa19de2 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0af876f gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd227fc66 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c519b7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65475bb rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7fad4c2 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9aa2efd rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb89aa12 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba37ae0 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc1170af xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc84558 svc_bind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8bc5b4 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe014e9fa xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a06235 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d2212c rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24b000b svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe28593d2 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe345acb9 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3796803 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41116e6 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe58baddd rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe144064d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2f7ba45 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3802823 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3e8f2d6 rpc_setbufsize EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f42a93 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe652e1ff rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e58e21 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7fc3afc rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe83757c0 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe899159e rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d97b2f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b0d5c9 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f28042 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7d6cf0e rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8099ba4 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87dc9df xdr_decode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea960ff2 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb531dc4 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed03007d xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb74846 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e30371 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaa509e4 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6555e7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec705130 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed1c6e2a xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed860bbc rpc_killall_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd000cc xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee81cdfd rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8d91f0 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede7f79a svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeebf4fa5 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe63d3a rpc_bind_new_program EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf190a98e svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1e0d0b7 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf35fea9e xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46e4a27 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b06f02 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d83790 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57038cf rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74944c7 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8bb2ba1 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9ce3823 xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa28cb5f rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa6caa7 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab61e53 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7c1292 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce02a8e rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd08627a sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf1a748 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0183b0 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea25b38 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec422c6 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8514d8 rpcb_getport_async -EXPORT_SYMBOL_GPL net/tls/tls 0x16ed192c tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x74790854 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xa252beb4 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb2152b0f tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x000f35be virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1f0e26b xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf287625b svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf45f2d07 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8e8fcf4 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9791065 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9898d14 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbee4829 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd089c8e svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe54d896 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/tls/tls 0x4bcef012 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x5c8766a1 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x9ef94101 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xcc85dc05 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x021fc3fe virtio_transport_get_credit 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 0x0d47bf35 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x117ba91e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28863117 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2cdd310c virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d3e179a virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37aaf20e virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cbf4281 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fdb97d2 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c4d1adc virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50db9263 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61d5a527 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e3c97fc virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f01f0a2 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f3b9b44 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70c131c2 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x895f676c virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f7c6338 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8fb19377 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2bfad23 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6a11dbc virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa01ccad virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacdb9873 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb129a75f virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8bd2537 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09085d60 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b8ad7b5 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x253d20e2 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a445716 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30dc7e90 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35b7d1d1 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a2ff961 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d385041 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x53a5d8dd virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ac9176e virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x619529fd virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62e91ffd virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6bcd4ed3 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d33e3dc virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73fd2b71 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7bfcc5ca virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ece01f8 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87a19d39 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b637f1c virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c26c280 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99f77ce8 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9da9217d virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xad92ff1e virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae80cd6a virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb091534d virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6969b7f 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 0xc54056c0 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd124704e virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2885146 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda1cbe7f virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd58d320 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe33699fc virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7b5beb9 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecbd21e2 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3b28533 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ad73d44 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d8e241e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb01c8b4 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4e48e3c virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3cbaba0 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6740d72 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe685f6d2 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf551b9d1 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb399573 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01626c52 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0af61107 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fe2bb3f vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a9857cd vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2dba68f0 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x35ecc965 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d7993bb vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x464d3cc5 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f9a611a vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x562a8ccc vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a4ce8e1 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75484a8e vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52e184bc vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6639d2f4 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8358e9d5 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8495dfde vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8debbbdc vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x968faa24 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99c37664 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa99d7545 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xadefc748 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa47e5d8c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa895fd00 vsock_deliver_tap 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 0xc812a67b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb71f6f06 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc553a554 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc7c76254 vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcacddade vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc9ecdc4 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd86a544a vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe226e05b vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe77863a5 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea48be55 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd188429c vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc7d17f1 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe2ca5de0 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5e1ea23 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4ddf0ec vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4ec8447 vsock_core_register -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00898c59 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ccf9278 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x150f3702 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x25282071 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2fcda268 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37601e64 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e49cfc6 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x555b53f1 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67c345e2 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e9de14d cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9533fd54 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9eb020db cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc92014dd cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd7d898c7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfae6bfce cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe99df74 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf53a7b94 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1aa7cf20 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1ce9355f cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48ed4799 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x507c2c96 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x60f820bf cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x64ae8903 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ce982e0 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84eb4a24 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c7b0892 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e1d6ded cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8e92832f cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4153bfc cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde41f048 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf08f8fb1 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf348c0f0 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf853202d 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 @@ -19217,698 +19223,698 @@ 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 0x0f39088c ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa2a75d5d ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xda1032ed ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe3b7b9e3 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x288822c3 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x47090166 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x52dd5001 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xca8255b7 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 0xc440534c snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0xd4a27f75 snd_ac97_reset EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x0783c5e5 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x11c3a8ec snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x1243bcc8 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x1c3d5f24 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x20d1b2e4 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x39e0ac3b snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x3cd2c69a snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x4f7a9ebe snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x338853d9 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x3a6d5099 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x47a0b093 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x49b63222 snd_power_ref_and_wait EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x68b64134 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x74321d8e snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x84d7d811 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x89a67bc2 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xc06d6c88 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xdad137dc snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xe2f195ac snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xe7a2c32c snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xf2cab641 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x5eb8d5bc snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x79d7cb7b snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x85952b15 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x9213631d snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xa0028241 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xa98a6f27 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xbc5bb543 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xc136552a snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xd8f99cd8 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xe0107b80 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xe0845d1d snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xed3e4b28 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xf51bd9a1 snd_device_get_state 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 0xfe2b2782 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x57e7794e snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5d8c80a0 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfebb8b61 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc2f0af08 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xef79bf16 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 0x09ed02ad snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x13513968 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1d7d977d snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x42d33a67 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x44be26c0 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0b5de8be snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1a797fdb snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2b77c16c snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4290407e snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4c458f85 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4c8f22c6 snd_devm_alloc_dir_pages EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5e75bedf _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6396b30a snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x845d872e snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7252bb44 _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 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa4199a96 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa81fe2f2 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa7555b5a snd_pcm_hw_constraint_eld EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc0533b48 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd331b6ca snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xee92d41b _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf64dbb52 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x029c2a92 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1c46c96e snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1e931055 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3496365d snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3a4151de snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7ab1cf2e snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7c61690e snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8d026eda snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f748f41 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xac1eb038 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc089a2de snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xda94863c snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7bc07033 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcb486e1c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0dfbd248 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ef77bdb amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x47ecdfa4 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69c9d5ce amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7180237a amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x723d94c9 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8cf8bff4 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8d49e9c5 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa8f4aeff amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac923a31 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcd7bd4e3 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd6489189 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xef46a25a amdtp_domain_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03916f8f snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x048f194e snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0cc9a51c snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27215dfe snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x30e94d45 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x33900f1b snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34280690 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d71bad4 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d8a44cc snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e956827 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46dc1913 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c9d1ab2 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x526da31f snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x600cc1a3 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x650ba987 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f9e5378 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9230146e snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99373ae3 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f857d01 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa2f0104f snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa5ab0f1b snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa873e7fb snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaa39bacd snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac2d4697 snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb2a0b626 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc6638211 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4c95654 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4d600c8 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8884472 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xebd5b52c snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4ebf2f0 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0283cea8 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03cf277c snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb1ba37d0 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb8c5f400 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3c3d192 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd13697c9 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdc6c9e57 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe81062ba snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0a3647ce snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0bb4ca4d snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0f615708 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1accbc55 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3153f8e2 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3c582322 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6e264503 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7fd3f1d7 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xca9aebad snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xeb415f1c snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2b4b74a snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf3ac934d snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x8f522167 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcfb2a606 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x177e17dc amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x45acd0a5 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x536005b1 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6a9210c9 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e0d8eda amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x96c92aa6 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x98aeae27 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a70b63f amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9ff3830 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb77dd1e2 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd5ec7fbc amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe10b6af0 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa8b4454 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00b2465c snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x07df5349 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0a4b9594 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e31acce snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x13b696b6 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ad217c8 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24848094 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x253da2b5 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2b3d6dee snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3559d641 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3785b741 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x479b96ec snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49a85095 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5a2b8aec snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x603ea6ad snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6565d0da snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x72dc6f11 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f6d6c44 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x823e0a5b snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x83fdc384 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x93b39d19 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9547cd24 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f56f444 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa1d4fdfa snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf3e0abc snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdc473292 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdd849b8e snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe922b90c snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe9a67ec2 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf595eac3 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf6b9e6ee snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x042e850a snd_hdac_bus_send_cmd EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05a96fa0 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05ad218b snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ac92a37 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e9fe375 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fd73700 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e2d3dc snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0775b969 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0babe567 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x124d251b snd_hdac_stream_stop EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1511d2f8 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1563111d snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1579255b snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19744dbe snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ab0e358 snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b0fb6f4 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x211eb10e snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x217f380e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2331b67d snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x288b3e97 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a77004d snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x304a57d4 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x305949bb snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34292148 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a0b5008 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b120ade snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x149aa8b5 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17fec80b snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b7be28f snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c3d99bd snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dcebe9a snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e41b098 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1faa2c3d snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21a85c79 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x224355e6 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22a0762d snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x240ce0ae snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24789bc6 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x247cb2a9 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2676fdc4 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26d5a453 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28a65baf snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28b9d4f8 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f757c5e snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ff7ddf3 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3167fe9d hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x340b1055 snd_hdac_bus_stop_cmd_io EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4176dc50 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46167aee snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48a0855f snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3beaa17b snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41bbdefc snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x429ac12d snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43ca1510 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44912616 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c2baf06 snd_hdac_regmap_exit EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cd913e9 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51bd5352 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x531fecc7 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55a70d3c snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56e4c29c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bd6748a snd_hdac_power_up_pm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c78ef12 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d5fda3c snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63db1a02 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c7f656a snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d1ec7b0 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f33a2d1 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60c8f5c0 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62a494df snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x645df307 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64e02c98 snd_hdac_acomp_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68e6ef8f snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6afd42ae snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7093b129 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7350ca04 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74ab2de6 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76e3817f snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x690f5ebc snd_hdac_bus_handle_stream_irq EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79da216a snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b6db1ec snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cf0e5b8 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ed91b83 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8216b8e3 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85f0656c snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88ac8a11 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8db7696d snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90ce0746 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x924219fd snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x929d0d49 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96c821e8 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9720fd2d snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7abe6dfd snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81855ffd snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84286ff6 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8480fcbe snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8647d27e snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87896872 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88656bc0 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89ad6a6b snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89c86542 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cf9b6dd snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e13b53e snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92a2e117 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95843446 snd_hdac_regmap_update_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c152e57 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f046333 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0a0e836 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7017608 snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa772f5ee snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf3235e8 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafb0b215 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0316fc4 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb09d7c2c snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb35f1a24 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd169b1d snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd178d3d snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe06b96b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c175106 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d9a21a3 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ee050d6 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eef1b4e snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9efec730 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3305ccb snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa33e2855 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa76b139c snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7cccf44 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa840897c snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa8aa255 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad85445b snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae2cd7cc snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae4a27e1 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae5dfe7b snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf33c00f snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2af991e snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3d0d236 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb66d7267 snd_hdac_bus_init_cmd_io EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf2e05b1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf5a9f16 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0bf50d6 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc32d788d snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc46c86b9 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6884951 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7c34361 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce416517 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0f3e18e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4b19b10 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdec74840 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe01d0d49 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe18d74d2 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1a4eff8 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfc0c629 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc20af85a snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5a0a302 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7fed861 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca689fcd snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4bd01ad snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd80b8ba4 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde446c58 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde73d8d2 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf615b52 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0f60bf0 snd_hdac_read EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea2a5972 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecae1f00 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede7a40e snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef99fafe snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf218b389 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3fcdabf snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf63504af snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8b7608c snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbff00f4 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcaba457 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff78b40c snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x05600ce6 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4fcc5d7 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7a9241d snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7b554c8 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed3b33d9 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedd69fd9 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf32a4096 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf525b3e8 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe45c80e snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff3e2e66 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x18d5a047 intel_nhlt_init EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x66b3f5e7 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x72e5bbca snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc4852556 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0b06ad8c snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x43257edd snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x437158d6 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x628512a5 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8dbd6fd7 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfd88435a snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0185d86d snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0476097f snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e9ae04 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcc13f2ea snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcc50f8f1 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xf8ca6b49 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x133d452e snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4b107d9b snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbee3340f snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc38dffc0 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd8357d45 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe138f452 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00adfd09 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07d292bc snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0adb9a01 snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b4cf936 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b6c2a43 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d66439f snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1346b0f5 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x136288a0 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1463ed43 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155e062d is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x162ac69c snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16d0ba94 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17e2f540 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1821382c snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x188b38b7 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b4538eb snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bd5e5e9 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d35aedb snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1eba594f azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ed00349 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26d8baf5 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x277bd1c3 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2922bc77 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29e50827 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a2c530c snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e0b6de1 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e476c34 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eb49714 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec00d32 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ee1cbae snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32df8ba1 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e873be snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3572a77d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06dfbfdd snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08b730a4 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09ef24f2 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a8cdada snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bace635 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12935ed9 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x135d6c0a snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x148b6eae snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a1a571a snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2059421f snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23da967a hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2546fa33 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2598faff hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2612fc88 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26cb15a6 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2881460d azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aec008b snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ce40cf9 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f4cac92 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33b265bf azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x362234ef snd_hda_mixer_amp_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b0140db snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d5699d4 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d60c3f0 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e6d36b2 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43d1a751 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e1261d snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x442d250f snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47c8c9bb snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48bb606c snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49491b83 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d34d3ce snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e0e8941 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53b4c9fd snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a61d8d azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59f2d3a2 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bd804f5 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d753a49 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608e37c3 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61d4a79d snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64ffbe2c snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67381e2e snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68f4e812 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b75501 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c7f71d9 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e9851bd snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f30ee1c snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7051e72d snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74d262c8 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78ef6940 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7db6bb2c snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f5835c5 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fa3b390 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86452ff6 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8711bbe5 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x871c2b22 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be2cee8 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c8a71ee snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8caab072 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f7b38c4 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ba37b6 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x959ba44e snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x969844a4 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d25e4e0 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d75041c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0a4fc15 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1a94a8d snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1db1d30 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa30ba444 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa34f123c azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa71ee032 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa936b02a _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa99456c3 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac6c3c02 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad19c112 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e725a0 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb35976bc snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3a48bf5 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5e776e8 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5f88f47 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb75d6a69 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98017bd snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed6fe19 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc23ff73a snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2bfcfa4 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc32247f3 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc45315a7 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc730bf38 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc987eee3 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc250ad4 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc8ed7e9 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd12baeff snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd28a4b09 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd469bb52 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd74b1b22 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8db0d29 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdabce70c hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb7eccfc snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe085050a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b00e57c snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e6c0f22 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40e0e183 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x472698d5 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4982c279 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ae57743 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x553d3c78 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5805c00c snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58b2d32a snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a6461b8 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a7bbdda snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ba8ede3 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bb93d40 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f1344bb snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60de3092 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6323ee68 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63ba1c88 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x645b01ac snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x650f60a1 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a254206 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b4a69cf snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca6da9e snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d3729f2 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d472a2e snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71532469 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76eea21c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77f43924 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x788dd8bb azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79e912fe snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a570f11 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cd4e4a2 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e73aa23 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ec15803 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f000702 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f1051bf azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c4d881 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89d3815c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b0f32ba snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b7f73a7 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c37f0a4 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d3ef6ea snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fe024e2 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x907fee65 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9177ce1b snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x939e85b9 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x959b9f69 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9615a65f snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x995c42ea snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a0afa49 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a661389 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e654521 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e78ca76 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9feb6491 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2534222 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa323f001 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3b98059 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa55a0f9c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6515d23 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7020644 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7274e98 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9c03dd8 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab3c3ea6 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadb291b1 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0073434 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb28a3b75 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb392d884 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb41e7fdc snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8479462 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbae576b5 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1436806 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1d5fe69 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc25c5a7f snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2c46369 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2ca5cfb snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3bd5e61 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5994370 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5eebf81 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc65f2aec snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8de320d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8fdb381 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9d4bb9e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca61d4cc snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd02303c snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd073f4ea snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd820ac6c snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb242fa3 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde390532 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdea9ff0e __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf06b004 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe00ba607 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe122bfaa snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe260cf9a snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2ce8b1d snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3a57426 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe476ca9e snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6d46993 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8a3e7d0 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4ec87d azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeca4a1f8 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed34e5e6 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe230af93 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2314ffc _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe295866a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe75ae37f snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9af89b4 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea2f96bc snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb249d58 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb28a77a snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed5abbd0 snd_hda_enum_helper_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeee71a9c azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf33dbf0b hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d8e84f snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7da8db4 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf848358e __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeebec756 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2de5a44 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf73d55ea snd_hda_spdif_ctls_unassign EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd124623 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09d3241f snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0bf4ac7b snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19ce14c3 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x27974a65 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28caf9a7 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40c88ea0 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x447f5e8f snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4878d14c snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c291d64 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c29b817 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x634adac9 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64215c6b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb04ffdc azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbbf5a28 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd6d5e92 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfddf1a12 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffd6ea00 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05076b61 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1278decb snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2aa66a80 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2efa1d1f snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x35451d0a snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3c0a1a96 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ff5a7fc snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x667cca06 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f5d6cb7 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7024093e 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 0x7c4d658f snd_hda_gen_build_controls 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 0x8cee3ab1 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x950c42de snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96228f1b snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b715c1b snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa4f5ab9c snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa7a0f226 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf320feef snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf48b7571 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x758a69a2 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8a4f57df snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b3f04ea snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98359e47 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9d60a42c snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb27618e1 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8fed0b4 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc3ee982f snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc82610fb snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcac5ecdb snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcc70e5d6 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcf8890ee snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x32135fad 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 0x382c0739 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xaff992ec adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xd3fd4a03 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x22c8b288 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x24e43dd6 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x55b34941 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x783f63e4 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8339149f adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x910f966d adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb00dff82 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbda31d9f adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbdacf415 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe09dddc6 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xf580c9ff adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x13c0f9b9 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xede982ef cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xfeefe290 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xd30d2e3e adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x836660e1 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf64805f1 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x03bea0b8 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x13fade58 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x29f78bdc adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x317d775d adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x631f7515 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6556e291 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x907a26b1 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb8be58ab adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd2dfe573 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe6bcf155 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x4db0709d adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd7932893 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xda1ed1f1 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf9bbb19f 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 0x02b00621 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0714e1ff cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x07d6cd1d cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0a658978 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2d1bbbd3 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x06c15edd cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1111f16d cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x17204660 cs35l41_write_fs_errata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4bcc9f00 cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4c68fcc5 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4c9fa66c cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x77ea27a3 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x82c57bc3 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5b87d9bc cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6e1eb20f cs35l41_test_key_lock EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb183cbc2 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf1829f34 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf9cdbad6 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x97097c8b cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa4e19b6e cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb001880a cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb0945802 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xca1283f1 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcc82aaac cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcfa77d86 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd72e3948 cs35l41_set_channels EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9614c264 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf11f8b03 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x11bab3b1 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xa55cbc6d cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb78335d8 cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5c4692a8 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x705a2d52 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x95efb446 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb37810ac cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x860f4089 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x909e07e1 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaf856dba cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb718251c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc32153fe cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x13b247fd cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x54f1c4e6 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x96e957fb cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc86d334e cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xda7dbde7 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x15bbf0ad es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd2fffa5d es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x07ffa597 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x999c480d snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xb44700ad soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5d388f71 lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xdab432e5 lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x72769e88 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0b069f8c max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x200fc0de max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe1aee86a soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xeb61ea5d soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2753fdaf mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5c0fb2f3 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x852823e3 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd4b217d8 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x30e7cacd mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4bbb8591 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7719a39b mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xd28b6e0a mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xdb0e6883 nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x37d03861 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xce2f453a cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x488ba57c es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe06902c0 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x0beeedfb snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2af1db77 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2dff27bd hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x18892b52 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x2e01981f lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x94a4afc7 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x29ccaa1d max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x806f08e0 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe033efbd soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe2f54712 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x166b0377 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x4b4d3a7f mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc62e09f4 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xef5b827a mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x497b2a85 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x63bb1e96 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xd38ff3cd mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfafa7843 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x9019587c 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 0x0176e132 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x35772ea5 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xdf988859 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5b044011 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd8282471 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x307c98ba pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8af7357b pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x51f7b8dd pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7136d65e pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xecabae7b pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xfa0b3d23 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6820b967 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x72037e78 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xcf6f54f5 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfb5790fb pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xf506e987 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x094aa8dd pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1abfa81f pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf087b09c pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x68d26a75 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xf7371cb4 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x586cd534 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xfb64e346 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4938aa85 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x59c689da pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x96483312 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd7774f85 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x29cc70b4 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2fbb0adf pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9bcc1312 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe62c0386 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-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 0x08e7d918 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8259d034 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xafaf5c9d rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbd1936ac rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd8a86879 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xeb84f814 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7e6589b8 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xae2edf21 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xc5e5de4f rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6114862f rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x0e52d3a8 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3db3569a rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x429af528 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5b332dae rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6001b867 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb02f6350 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xebdbdae5 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x58cac852 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x75604913 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x184c34e5 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x4315687a rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x1a7d8d5d 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 0x1bc866b1 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x230226bd rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2eadfbe6 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3f857712 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0f8a2f91 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4e6e81b7 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 0x744a57d0 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x75b97751 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9c9390dc rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb8511b8b rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5e2aff57 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7b9ab3ce rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8c86b9d0 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x95c8bec8 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa5b10c1f rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xac0f66f3 rt5682_apply_patch_list EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc8359dbe rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe070fd77 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xebe86b15 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x71ae0e0e rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x20babef6 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x274d535a sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4cf5488f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4e5d05b6 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbb7d2905 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x19a901fa devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x639c5f75 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x840ea421 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x85b2a891 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x14e01171 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5dcb639e ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf0b6b574 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xefd526c6 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x862a7694 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc08b22d9 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe4bd9492 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf13440d7 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x414c8a80 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x04dbea41 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2aaea595 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x911dd8fd devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaeeed004 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfad06760 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xda552fd0 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x39cd430e devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x62ad77af src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xab119ce4 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x40dca1d3 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x72d45b5b ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfaacd008 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x789d829b aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xae7cf666 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 0x1c404272 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x212248e1 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5e8b0c93 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x89478719 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc0499e0d wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27af2c5d wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27e12832 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2adb30e4 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32eecbbc wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d3ddd81 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x499885df wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4c9ef89e wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x510d4695 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x521c1c79 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2990d67a wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x78307849 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x98066075 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc0a008d1 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd9ce79c6 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e662b59 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2287885f wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x234707f1 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2b2589fc wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3ad7d8db wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x50fee902 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 0x5391e30a wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63fc4673 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8645ed4f wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8eac4b57 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e1559ff wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb71eac14 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb95f691d wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc23ebf6d wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6516b75 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd13cda60 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd3c5443d wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdae46287 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c35e571 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x668cef13 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x67e2ce47 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8c8ef648 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9040df92 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x99b2f9cb wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9a4b1978 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb77b5dfb wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbecdc8ae wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc79f4a76 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcadbaf4f wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcd71f08b wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xce382ee6 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1924676 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd6158695 wm_adsp_fw_put 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 0xe89f40a2 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe96361fe 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 0xecc50f42 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf0a6adde wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfd18ad01 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xffc76a4f wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0235b2c9 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1a2a59b3 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x23f63a58 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x47fa6dfd wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5761d8b7 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfdb2b9e9 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xffe59cd6 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x00824438 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x47ff806e 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 0x6a4de82e wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x74882353 wm_hubs_add_analogue_routes EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdd127c8d wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xa12f45af wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xb58e09b8 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0a2839ef wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4ae45523 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x52631742 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5e28b6c8 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4284e719 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x426ef642 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x913a370c wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf01c8074 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xdeefa3ba imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe473ee0f fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8731bf56 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8bdcc354 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb0d496c5 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbeeddcbd wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcf39725d wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf49a706d wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x23ebbb9e wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x6ef26bf2 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x38bec172 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x66eca189 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcf3abac2 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe4ba851e wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe44583b3 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0528d11f wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x49fa442d wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6302af74 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xc1e5d0f0 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x81de1754 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 0x0abe9910 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x02d861a2 audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x88b49068 audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xb8b7af74 audio_graph2_link_dpcm -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xdbe7c435 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x7c0f3e5b audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x08d26415 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x18700c9f audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x3289fa30 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc312ab6e 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 0x29046bed asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3715d509 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3bc48f81 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3df44156 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x43b76c2e asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x563afa6c asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x643ef343 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6691947c asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6b005bda asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x766270c8 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x87585438 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97f6cbc1 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9e46fbaf asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa70b167a asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabf621ed asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbf909057 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd5281729 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd7fe08b0 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb5fcef2 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xef09e1da asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf87b3162 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfa968d21 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0c5f8b0b mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0e9cdb74 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x16196f80 mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3719e472 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d56ca98 mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3e52ac6f mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3fbe370c mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x44d18932 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4789774a mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5abda521 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x614b9010 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ee3ad27 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a6f68fd mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8d6d70a7 mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9966a9e8 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9f06ce53 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xae88b56f mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaef59e3a mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb0d7c91c mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb99a2580 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb9f33b93 mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc74681ec mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdc2d16c3 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe1ac7d18 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe36eff27 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe7a48cf6 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xee1b1c4a mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xff3dd95d mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xe1a8217c mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x22d37319 mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x60c3664b mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x8783b40c mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xe792d4dc mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x09820436 mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3275880c mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x70350034 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x19f7ff1f axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x683cef2f axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8ee3b99d axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x97d9963e axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa4b17d6a axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc2f80f08 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcbaef246 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe513ad06 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfdf9f0b9 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x05a80c63 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b90329e asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1222eaf2 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ca03cc4 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2a317e85 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3547ae2c asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x44033414 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x60c8c0c9 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x629fe92e asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x64cd0016 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6529f1d2 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6763a570 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72e125ba asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x85b70663 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8a1b73b6 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x92847286 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9654a622 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb3a31bdf asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc4624c7c asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd993b770 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe2d062e9 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf4ec6408 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x12c950f8 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x28764975 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2c8b4307 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3bb88fe3 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x41b87faf mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x446b40cc mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4688af33 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x54a97a26 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x67a77b0e mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x740f0d96 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a60e417 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x801e54ce mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8383f74c mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x88e227c0 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8ddc57b6 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9707a5a1 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9dbcebcc mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaeb9085b mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2b57800 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc0e7f05b mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc5fa7531 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd77683fd mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe0f78e0d mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe7836d1c mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xec24d20d mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8284c8d mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfb55ae03 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfbfa0630 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x6e2a4c6f mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x14faf0cc mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x7747b183 mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xb389af45 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xcef5d887 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x6feb643c mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3ce027a0 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xc14578b7 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x329dd4c8 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5cba5a1c axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x64355630 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7e86f1f9 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x823ae6ea axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x84a610c0 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x934d40ac axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa493dedc axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb34a4de3 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x453eca03 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 0xa4a10a63 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xe51978ee 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 0x9eda2e41 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x33ca0552 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x411a6168 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x471fdf77 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x70841e05 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa5354dd0 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa9e2ce1d meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcae019ac meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe60e2c5b meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0e388387 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x59469e2e meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9452e45c meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9be3bb52 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xcc124b0f meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd9f806a4 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xf54627d3 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xaae8c528 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x11ea373f meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x57e201c1 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x63113793 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7756502b meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8e6396ce meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x913cf162 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb47e039f meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xdff2c8bd meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0d4f7abe meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x223f7e44 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8bf6c216 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9137a3b7 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xef0a9a8e meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf86e7ce4 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 0x30f7650c q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x64693069 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcfebffcc q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x8e1be589 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcb2a6543 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xf5a41008 q6adm_close 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 0x518db17b 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 0x61cbfd4a 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 0x95290503 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/q6afe 0xfcec92c2 q6afe_set_lpass_clock 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 0x2b693eed q6asm_stream_media_format_block_wma_v9 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x43715911 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x40036d6b 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 @@ -19928,283 +19934,283 @@ 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 0x44b66c3c q6prm_unvote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7c9f4b5a q6prm_vote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xb2f08012 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x83aa9da1 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x965eabd9 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xe4dd9997 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 0x0d6630f4 q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0fc00861 audioreach_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1053e0d0 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0897c0c6 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 0x167569a7 audioreach_alloc_graph_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4d301927 q6apm_graph_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x54e6e15d q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2c03386f q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3216d368 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x321f3c31 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x44dd4123 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x48669c95 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x524654e9 audioreach_map_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x632cd57b q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64395fc0 q6apm_graph_get_rx_shmem_module_iid EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x699dfdd4 audioreach_shared_memory_send_eos -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7e95935d q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x66b20a10 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x70dc270e audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x78871fbe 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 0x811a00cc q6apm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8191ee37 audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x82e55000 audioreach_graph_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x90a3e237 q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x963f02b2 q6apm_graph_get_rx_shmem_module_iid -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa0af6b5d q6apm_graph_media_format_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa1a2949f q6apm_graph_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa2a41a85 audioreach_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc7b1b6a8 audioreach_graph_free_buf -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc8847502 q6apm_graph_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd0603ccc audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xea0a1f84 q6apm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfd186b9d audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f60bad4 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x81f17779 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x88a415af q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x94ddb6a3 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x99c0b752 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9d34eba1 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9e2bbfd5 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xab07195d q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc6f448ae q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe34306eb audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf38e0448 audioreach_gain_set_vol_ctrl EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x2c7e12ba q6dsp_audio_ports_of_xlate_dai_name -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xa70d9c03 q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe4376c28 q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xae806c1a asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4c62773e lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x68235df5 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x731dc08b asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x74f09ab7 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7944a6c7 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xac04493c asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x4ad9d71c asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xa7f0b75b asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x44a8c95a qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xb3d4ad87 qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x0bbfdf8d qcom_snd_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x8491e097 qcom_snd_sdw_hw_free -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x862586bb qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x1d051a94 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xf0ad4121 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xfbe914b8 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xea2d8271 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1894dc60 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8ed650bc asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9d1e25e9 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xac3f334f asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb9317a1e asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd3644fd9 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x96eb8050 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xf854c3f6 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x66b148c0 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xf1adb1a9 qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x371e7dae qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x7f91cb5c qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xc15ad37d qcom_snd_sdw_hw_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine 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 0x009e2148 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00b09444 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012c9e9d dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0217a158 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x025b26c0 snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03ea57a0 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04482530 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x052718d7 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053022d2 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066e0c0d snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06c15848 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09242498 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a32126a snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b10d658 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ba940cc snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ffc8505 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x107402f7 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1088f4d1 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10f47e4a snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1233f159 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x124a570b snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1448e55b snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14a44c67 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1598ea30 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x173c74f9 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x174b67ed snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197daec2 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19bdc72f null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2a8c0a snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3b43a9 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e888ba4 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2049bc3b snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x208b047f snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2124e8ce snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21bea110 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2266b737 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229d9fbf snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24e020c1 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x009acc13 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02e096e0 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x032f2b34 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c6f450 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09189a36 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x099ec60d snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a164783 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a5173f4 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aab990e snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d25ab02 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc6cca6 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x125d2abc snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1324941b snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14f826d0 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x157016e5 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x175b252b snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1767cd7c snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19fe3b2d snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a77e7b6 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b5badcb snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1be48c82 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3f0ff0 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c71bb98 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c8c2f41 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dde68c0 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ece1636 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fcf3d0f snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x206ae45e snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x217d691d snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x218cb18c snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24f79211 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25cb2daf snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29ee3804 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f05c94a snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f416aa7 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x303a7dc9 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x343f6384 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35b6d785 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36039c53 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36836b44 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36d7fe2b snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37444131 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x384cf5f0 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38971d61 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d69061 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d6b963 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x399ce159 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ae79bc7 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bee17d7 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c4d5c72 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e294d80 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e3d68f8 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f2b20e2 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8d4ce1 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40339d4c snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41ddbb04 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43101df8 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43898c0c snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x459cf9ce snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48136387 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x481cbf0e snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a0571a1 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b40103c snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e28d584 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e2c066d dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e318524 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ea0ce58 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25a8fcab snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x263df032 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26676a42 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26d39855 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29b6815b snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a830e35 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a96b8cc snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aada139 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ad464e5 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c348d25 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d2326d2 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dcebb92 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f68833d snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x304580a3 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30b37dd0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3120bcc2 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31892a56 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x341d88ba snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34bd8ed5 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38e561f2 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39178d72 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a421738 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bdd6f2c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f007733 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x408371b2 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42d1244e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x434cb972 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x440bdd9a snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4566f48b snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47738d9f snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4820e50b snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a6ef802 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac38a71 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c76d48f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f37a168 snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fc0bb4f dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52cafdca snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53c32f5c snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54ff77a5 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a0a1596 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cd9fd7d snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5deb74a0 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614e5a13 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6183d95a snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x619d60c4 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6488e7f4 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65856603 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68168617 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6860ed6a snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a8f33a5 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6abed7c7 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0fdf12 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed01c9a snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5c37a1 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fd73523 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7075af59 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7283c071 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72e3aab5 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75914ae3 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76020fc6 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78126984 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7920b8c9 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x793ce4c4 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79d63082 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d37dd88 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d3ec468 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5009ea27 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x515d3d48 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51e39756 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x573c9afb snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5878971a null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59719036 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a1e8784 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c2410ce snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c307afd snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dc453d5 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4d6a22 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e4d821e dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e840fe8 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6197f5e3 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x634637de snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64249bf8 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64be3427 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6676bcc3 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68f764ea snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bba29ba snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c3ea7cd snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c9d20b6 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e6af99e snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fa929f1 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x723b823b snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7269e1b6 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72fcea24 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74759c76 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7500994b snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7630b79e snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d9873ba snd_soc_component_set_sysclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e7cb44d snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f469694 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f65b50d snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80804f0c snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81f02b72 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81f7b245 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8294df7a snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b66828 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84d6fa0c dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85386a38 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85e491ca snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d6f5e1 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87b44c59 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88b348f4 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d4872ae dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e50feef snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f558ca3 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9068340c snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93150626 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94d0ac20 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x962f1e92 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97af6a88 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a25d810 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a97b867 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b3dc46c snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b3dd110 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cabba72 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e3477d2 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f4f9553 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fc62fc5 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa00bb4d9 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa05dc441 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa085b526 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0b15fac snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0de89ea snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1a1453b snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2381d3d snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa29de511 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa339f4cf snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa45f21c8 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4603e8d snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa471a9b5 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6fbd370 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ada20f snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8cf52b7 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa97f5e7d snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaaf853e snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaade8bf6 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaba2c523 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae816191 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafd5893b snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0f55620 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb48d4639 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb497b439 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4ffa1a1 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb552f315 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7add1d8 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9386a15 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba4cd08e snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7d13ff devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbac5de21 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbee42c0 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe1375d9 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf24175e snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c151d2 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc25b0a15 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2db1697 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ec19b1e snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eef84c7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f2de728 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x800d3d99 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x814044d4 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81717c6b snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8171862c snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81ba4eee devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b959bd snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x842dc2f2 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8536f9a8 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85411a7c snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b94bf2 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86f6c7d0 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87006aa9 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88c42cbf snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89d9e701 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bf0a6b8 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e4a58e8 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1888a5 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x902a59f5 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90a58b7d snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x979f8c9e snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e7b3b3 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a28ed7f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a5d6d04 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a868e4e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b03abd7 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b5cb811 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d8075f6 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e5bf8ed snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1e0a657 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1e76875 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa237f2fd snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3ea9fb3 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49a2f63 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4dbe56f snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6482190 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa803b037 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8ca4cc7 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa92d9be3 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa8dc4f3 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac649cc9 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac992df4 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xace41844 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae5d78c6 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaec4d1bf snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf8fd4cd snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafa2961b snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb27b6ec3 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3003096 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb545c81e snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f0266d snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb76cd0a3 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb89c6749 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb92f051c snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9486027 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9af656d snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c16c9f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbacb0ac9 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd5ccfa7 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdaf4c01 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeb7a9db snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf07537a snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf283187 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0d787d1 snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c130d3 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3f7d480 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66e35e3 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc792ce98 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4019f9a snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc40cfacf snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc56175a5 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7c6c7ef snd_soc_component_init_regmap EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8a79a7e snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9c5a28b snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc9236f0 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcda851da snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfd7da7b snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0a1d0e8 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1795b78 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19de24f snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c4d4a2 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd595eb6e snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7aefd0d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8547ecf snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8bbb4ee snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda66b5b4 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad6b7c0 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf141e70 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f23b2e snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe21de474 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5464929 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5de76ac snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe64ae2a8 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe93b82d4 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97ddedc snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaa81058 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaf08345 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8789b68 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca296e10 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdff4955 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce9fae2e snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceda21cd snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19c87ce snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd33e5bcd snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ffd744 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd753405d snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd85aa7d3 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8626654 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd979018c snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda0953b0 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbd83bdd dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde099cbc snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfc3fd23 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfddfecd snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfe8ce7e snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdff31f94 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0ad43fa snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe468fa89 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb290370 snd_soc_dapm_new_control EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5f6b0d snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee0db84a snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef7af04d snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fd0aba snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf21370dc devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5a6571f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebea2cce snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec40499d snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec844929 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed6545c4 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedbf59a2 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee35cfae snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee91bbae snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef50087d snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeff0cc02 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1253770 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf325e2fc snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3d303a9 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4cede00 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf589ae53 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf59ea313 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c3c025 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf661e0f7 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf66ba0c2 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73e9edb snd_soc_get_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa0f3862 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb7e0de8 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc12fd8d snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe5d1701 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe92f0b1 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfea28e75 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x576082de snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x67be2e80 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7c6ec9c4 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7e473b19 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe9ec2953 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9e2e8c9 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9f58782 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa0d3249 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbf8c4ee snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeeaf559 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6de07b2e snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x984e2b03 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb332c7d7 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd0baecaa snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdb69da11 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 @@ -20214,17 +20220,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 0x6716efdf tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xe106bc86 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x008c41e6 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3c011f31 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x48d9830b tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x92d0bc18 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x971b27ff tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xacf15131 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc658965f tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xca8475ca devm_tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf8555717 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x24b3aaf3 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x92241ad3 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x465f5d95 devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4aa20a82 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5cf2f4dd tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8900f376 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9c0cd9e6 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa5e9063c tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc1a916e0 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xeb53ccde tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xfd194287 tegra_pcm_platform_unregister 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 @@ -20237,7779 +20243,7776 @@ 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 0x6012b261 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x12d8bd1f sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x9187c96c udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x04338edd line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1d59b1f7 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xf7a25ba5 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x73bf2a70 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x9d4bbf7e udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x027ae032 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0f156d09 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ae8fb04 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1b94ef69 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 0x2982cdfd line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x389c2291 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x40f8c53a line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x44dd7327 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4697987d line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d166e5f line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69978d9d line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6de0f291 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89690a67 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d9c7a1a line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa545881c line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb5f4599d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbdf3617f line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc5633c8c line6_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0004d3a9 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x001640a0 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x003e314d scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x0040bc40 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x004deb53 __dev_change_net_namespace +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2a070a75 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45e618ed line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x527f84fa line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80b7db22 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x837cbc2d line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9517c037 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x97f54548 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9f05df89 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa42cb310 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc86eb4bb line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcecc5212 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd399b377 line6_version_request_async +EXPORT_SYMBOL_GPL vmlinux 0x000c4342 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x0019dbfb posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x001f1c4f tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x002eba91 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x003a5ad5 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00555bf2 dpbp_open EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005da906 iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x00714b31 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x0081a853 dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x0082bf33 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x0083d4d1 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x0090fd34 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x0091e314 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x00bae356 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x00bc4d12 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0073fcb0 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x00794f26 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x007eea8b mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x0081b747 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x00af539b spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x00b649ab pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x00bafe66 thermal_zone_device_register_with_trips EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d64764 rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x00e5b193 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x0109917c devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x01101349 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x01187831 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x012c4cd0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x00e10244 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x01064a47 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x0110dca9 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x01174421 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x0123ffdb pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x012b6ef7 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x01309d2a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x013359ee gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x013af19b devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0140be99 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x01311310 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x0132aa1c mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x013b28fc sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x013c27bc devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x0150252f regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0151be58 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x0153831c fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x01677651 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x01684437 msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x016ebff9 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x017682b2 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x0180c22f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x01849463 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x017ede42 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x017f824f pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x019003a9 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x0192f2e7 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x0194c4e7 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a3efbe regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x01ba9350 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x01c633d8 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01a894fd bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01df72ca spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x01ce8197 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e1ac18 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x020122bd ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x01e97cc2 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x01f39d6f gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0217e688 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x022fd89c of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x02257917 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0232c30f ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02629a47 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x026c670e edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x0290982c usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x0295e449 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x02976c78 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x02a62f5b tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x02a679c1 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x026c5d25 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x029436cb amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x0298034c dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x02ac2a6c serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x02b8d312 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02c1d404 fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x02c5bad0 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02e31667 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02c7a7f4 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x02cabe63 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x02ceff73 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x02e95271 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x02ea0f2f sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x02ff2396 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03156aff xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x03177659 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033304bd xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x0336e6ad crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03474381 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x034c3e3f rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x0359a81e uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x0359e560 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x03483120 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x036e0987 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function -EXPORT_SYMBOL_GPL vmlinux 0x0370ca62 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x037bcc3c housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x037ee0d8 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x037ef9ee kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x0388aa37 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03953035 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x03a0f429 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x03ae3a0b bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x03b9f833 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x03a152b4 mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c6933b subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x03ca1e57 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x03cbe804 imx_pinctrl_sc_ipc_init EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d354aa nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x03d6189d ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0x03f0593d virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x04007cc3 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x03e2adee fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x03e3b16c devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x03e95b6f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x03f05935 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x03f33eaf spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x03fb59ad md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x03fceaf7 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041091eb scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x0406c968 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x04082e74 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x040842d8 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x04404e2a devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x0462a96e cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x0464a1ba sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x041940e3 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x043349d4 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0448b771 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x045a19ad usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x04775440 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x047c65b0 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x047f9134 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049722af thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x048c93dd fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x0494124b crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x049f67a8 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x04ab9d34 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x04afdbed fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x04b3859d irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c2d50f usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d3b83f devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x04da80a0 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e129c7 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x04e23ef9 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x04e7b643 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x04dfa33f __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x04e00ef4 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x04fee56a virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0504107a raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0505d6fb attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x050ff477 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x051f6ab2 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x053ef4f5 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0540ab6f tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0555d2ce gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x055b6bae devl_port_register EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0572d7f9 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x05739cfd dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x057a85fe of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x056a53a7 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x05777850 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x059eccd4 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x05a0d30c dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x05a2591b key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0598c09d platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05a56e4b addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x05a8fa4c sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x05b318ea get_device -EXPORT_SYMBOL_GPL vmlinux 0x05c242b0 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x05c4554c scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x05e6b0e3 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x05ef9be9 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x05a9c487 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x05b9dc8a dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x05bf872a handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x05bffd87 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x05cd13d8 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x05df5191 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x05e39285 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x05f02973 onboard_hub_create_pdevs EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x06105fcc decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x0606e76f watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x060b88ef vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x060be98b init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x0614903c static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x06248de9 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0625d2b1 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06294d83 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x06349c0c regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0649dfa0 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x062d191c rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x063b3a2b serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x063c4c52 led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0651ddbd dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x065b1490 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x06607991 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x066c60b9 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x06727926 pci_has_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x0674e79d wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x06776ad8 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x066e8b3a mtk_clk_register_ref2usb_tx EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x06946c2f pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x0698a552 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x06a6c4fe iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x06a7046c sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0680f8a8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x0686bac2 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x06945dd3 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x0694f21f fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x06954cf6 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x069f5517 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x06a11668 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x06b06e1b crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x06b1c909 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x06b760df devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select -EXPORT_SYMBOL_GPL vmlinux 0x06bd0665 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x06c9da89 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d5102f crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x06dc976a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x06dd44ac meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x06d7fbe8 buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06ef934b vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0x06f3c7b6 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x06fe5b3c perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x07108604 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x07149b6f usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x071e24fb serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x0709eb53 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x070b12a4 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x070f0ffe dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x071cb272 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x071f8f87 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0731472e iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x0732feb8 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x073c9d35 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x0742cbdc devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07260e0d class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x07386d81 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x073c2bc2 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x073d97d8 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0744f404 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x0758fbe6 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x0760abe1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x075acb81 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x075dcfc0 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x076cccd6 vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0x0776015e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x077f7c6e dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x07a7db5a bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x07af5332 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x07b1a5ac regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x07712d76 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x077a5a68 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x077fbbc3 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x078ea290 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x079cbd9d driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x07b10ef3 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07bb6bbe ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x07bb7b2f led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x07bbe7d0 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x07b8040e devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c1edd2 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x07cbf2ea mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x07e0b89d max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x07f3b065 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x07c5f30b dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x07c66321 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x07d5fb65 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x07f39e95 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x07f57bb2 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x0810a3c7 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x080e9249 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x08122634 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x08189d16 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x08195e1c query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x081d4b1e device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x08255cd0 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x0827b425 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x082a4efe md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x083b3a05 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x084336a7 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x08434fda dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0x084e1e1a usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x082a6117 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x083004c2 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x083653d9 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x083d54ff kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x0841a6e6 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x084e22ab rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x0853b130 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x08586de7 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x08634383 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x086620c3 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x086eea5a mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x086fc3a3 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x0858f615 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x085f4594 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x0866e607 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x087c2bf5 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x087f8805 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x08a14ab2 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x088cf404 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08ae049c sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08d6fd93 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x08e4d717 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x08ef119e devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x08ef999f tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x08dbfcea usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x08f701c5 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x08fcc540 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x0909c767 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x091757b1 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x091e99cd __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092c1a9a ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x09321f68 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x09292202 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0929abd1 ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x0933afad kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x0936e8cb crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093b34fe acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x0941030b ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x095c36a8 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x095e2994 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x09679728 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x0945f7ac msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x09460823 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x095a59b9 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x09605394 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0960b922 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x096aba3a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09738415 dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x0979c196 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x0992b059 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x09a25386 gpiod_disable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x09a47ae4 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x0976a0da of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x097fd6e4 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x09825b5f ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x09a059d4 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x09a24b1c pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x09a31d2a regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b7c7d1 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x09b7ec25 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x09bed121 thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09c8c3ce pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x09dd353a tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x09e38411 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x09e4303a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x09e7ca46 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x0a082fdb scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x0a0aea5f acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0a1897a2 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x0a1f227e meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x09bd5794 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x09d89ccf icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x09dbd3dc acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x09e09686 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x09fdca40 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0a34981e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0a36a1c1 __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4b1096 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a52df26 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x0a606ef0 hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a7a4993 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x0a5e7f7b fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x0a5ef83b dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a6d5133 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x0a75de19 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a80790b sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a93b002 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x0a993464 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0a9fb1ee pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x0aa64642 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x0ab6ddc3 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x0a8572d4 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x0a8ac255 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x0a8ce756 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0a940468 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0ac54991 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x0ac57df3 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x0ac906db aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x0ad2b172 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ae46023 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x0aea65d6 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x0aec6014 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x0aef08fa inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ac516c7 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x0acf4855 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x0ad5fc1b skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x0b02da4c pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b15c453 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x0b17bbb5 pci_p2pmem_virt_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x0b18414f perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x0b18914e led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b1ccbec of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x0b2029ce iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x0b1f573a msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b353b59 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x0b37e657 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b49bf5d ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x0b4b4645 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x0b4fd1c9 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b64a099 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x0b553d60 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x0b6027f5 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b623d12 blk_mq_start_stopped_hw_queue 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 0x0b7028f1 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x0b7d9366 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0b6bb711 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0b6c7014 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x0b730fff ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b73ff06 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x0b754448 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x0b8187ca perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x0b85fa3b dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x0b8c4a1f vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b92be1e clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x0b92c4f6 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0b9aadc0 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x0bab942d mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x0bad4b72 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0b8fd6b4 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0b9915f0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x0b9f0755 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0ba424d5 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0ba593c6 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb2ba37 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x0bb1f47d mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x0bb741cb sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bc0034a device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x0bc98d0e sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x0bdde05e irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x0be12b76 devlink_port_linecard_set -EXPORT_SYMBOL_GPL vmlinux 0x0bea2185 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x0bced3fe tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x0bd065c1 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x0bd61448 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x0be72380 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x0be88dcc rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bfac09f sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x0c01e06d __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0bf7741f phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x0bfb238f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x0c130215 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0c170231 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x0c1a5ee3 log_post_read_mmio -EXPORT_SYMBOL_GPL vmlinux 0x0c1b3c05 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c22d62b tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x0c286637 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2d77b1 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0x0c30212f subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c598f6a wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x0c612572 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x0c6a05eb gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x0c700851 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x0c722ab6 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0c75cfb7 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0c7b4d90 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0c43064c clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x0c504482 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x0c6b7951 replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0c8747b3 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8eca7e icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x0c94a647 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x0cbdb576 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0cbb4974 __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc7a031 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0cc8e5df of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd3761a pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0cdacfec clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cfc6f2b blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x0cfc748a sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0d0d5eae dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x0d1b1f7d __traceiter_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x0d26c909 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0cf589ce pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x0cfa8fcd clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0d223c51 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0d34d829 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x0d3564c9 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x0d3d41da dax_zero_range 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 0x0d4a57b8 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x0d4caa0a fsl_mc_populate_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d529686 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d5a80c2 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d64ca12 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0d632c93 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d744758 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x0d74b4f8 cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0da0a0a5 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x0dbbf046 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x0dc838d1 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x0dca1c13 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0dca9802 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x0dcfe779 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x0d6c9a9f fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x0d6edc36 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x0d7b37cd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x0d96e065 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0db9c878 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x0dccba6d device_create +EXPORT_SYMBOL_GPL vmlinux 0x0dd1a038 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dea7497 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x0decd521 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0de16ec7 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x0de79c86 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0de981da ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dff87a0 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e0549f3 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0e011668 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e117ea1 of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e222d0e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0e2f274c genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x0e48d73d exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e643490 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e750aad evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x0e89a36e crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0e9a458a devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x0ea319cd xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e6b7d54 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x0e7369c0 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0e747523 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0e77826a devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x0e900e95 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0e9a4f00 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x0e9d7949 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x0e9e78c6 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0eca0b59 dbs_update EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0eeb5f1f kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x0eebe8d3 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0efacc2f devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0efff12f pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x0f00a681 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f0b30ae clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x0f1519c5 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ed67056 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ed6f4fc phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ee22283 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x0ee9ec6b regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ef10d76 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x0ef52392 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x0f0ea3bb cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f25c7ec platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x0f2f7243 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x0f3a98c6 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x0f4167c3 copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0x0f6a1b29 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x0f70f39e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0f250db4 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x0f29f655 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x0f2c0e7f sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x0f37f190 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x0f55b1cc scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x0f56f21b pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x0f5cac34 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f6d2720 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x0f6e6368 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f785496 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0f78957c i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8874ac acpi_dev_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x0f88f25d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x0f998a92 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x0fa12408 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x0f7f2cd4 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0f824c25 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x0f86cfd4 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f8a0550 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x0f97d8e3 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x0fa598b1 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0fa6ae34 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x0fa7fbcf fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x0facfb1a mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x0fba927e da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fcafa4f pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0fd1fc9e usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd46440 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x0fe969d0 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x0fedb06d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0ff84ad2 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ffac5a1 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0feb475c acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x100af434 mtk_register_reset_controller_with_dev EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10146367 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x1016f485 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x1020a51a dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x103238b5 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x104d381b firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x1068772c of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x106d2a7d mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x107a9f01 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x101c6727 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x10269266 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1029882a gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x10469c01 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x10481095 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x10588009 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x10712881 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x1071d377 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x107d2590 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x107e8c9c __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10983b26 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x10b0f013 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10c20633 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x10c7f174 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x10cf4ff6 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x10d1ea98 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x10d7a9b8 acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10e040c6 acpi_get_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f06337 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10fb9597 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x10fba26f vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x1100047a gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110965c5 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x110ca8ec wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x112ea5a3 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x1131d7c6 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x113a417f securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x11424913 dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0x11478d56 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x11640c13 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x11770d0f dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x118a8ee0 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x11b51936 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x11b61a19 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x11ccfeff pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0x11ce71ad devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x11d21156 devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x11d21212 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x11d7886c regmap_field_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x11d9be3e sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x11ddac26 thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x11ddaeb2 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x111437f6 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x115fe675 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x11611339 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1176ccbd phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0x117cf785 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x11b3c24e platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11b663be crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11c77c63 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x11c9b14a regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x11c9bcec ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x11d0022c kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x11dbada8 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e0275b dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11fff038 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x11e10cec devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x11e21e99 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x11e979a8 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x11ef12c7 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x120c7f2c of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x120e8ae4 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x12123b69 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x12080dfe bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x1211d691 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL vmlinux 0x121c13ae of_led_get EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12243c5f balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x12224721 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1224c6db ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x1228fc11 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x122a3348 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x12437a79 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x1248f14d blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x123665a7 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x1240500b fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x12454ca3 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x124e75b2 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x1252d00b sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x12572e78 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1259517a regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x125ff68c disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1260449d trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x126b70c0 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x1274874f fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1276011c k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x1280fb8d virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x128e2e2c sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x12a726b2 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x12a960df ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x12b6e31d spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x12552417 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1259865d usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x1299171e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x12a61854 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x12a84ebb devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x12e02f4f perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1308f2ae pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x12f9458e mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0x12fd8a9f vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x130ccd2c _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x131898c2 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x13111d9f ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131c9910 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131e8918 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x1323e8f5 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x1325f7b6 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13402c8a subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1341c144 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136f377c verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x136f5a24 icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0x13783710 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x137fdb5c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x136aaf50 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x13780b26 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x1387f79b kvm_destroy_vcpus 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 0x13c180c0 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x139ca1bb skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x13a0bc56 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x13bc122a dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x13c3d5ae debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d46658 kill_device EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13e134f5 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x13e566ee pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0x13eb0b35 dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f835cf genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x13ef31ad pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x13f2ec36 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fc7ca7 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x140135f4 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14046623 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x14065849 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x1418d3ce devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x141c9689 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142a0a85 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1420cfd1 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x1429bc17 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x142bf6c3 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1431efe0 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14411c44 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x14517929 irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x1457a05e l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x1465dbea regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x14687cbc bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x1468ec61 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x148993e0 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x148d6445 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x148eacdb xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x148f76e4 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x14986678 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x14a4b81d rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x14b273e4 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x14cc0358 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x148fe284 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x14959930 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x1499bb4b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x14a412b9 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x14aebd58 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x14afb3a8 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x14c06850 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x14e023a9 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x14e041a3 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x14e608e1 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x14eb45c3 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f78f12 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x14f9d4f8 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x14ffefff pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x150cb463 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x151a312d __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x15227158 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1536f44e usb_string +EXPORT_SYMBOL_GPL vmlinux 0x1506c5fa nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x1518178f blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x151b5d5c iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x151e5b59 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x15233d7d fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154b6ec0 mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155b7d08 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x155cad8b __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x156617fc xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x156a24b3 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x156e7596 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x157b8819 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x155f9000 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x1577923b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x15814b00 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x1586c956 put_pid EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x15920170 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x1592e0e7 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x15a29170 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x15a74fee pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15ba26a8 iommu_group_get 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 0x15ce1386 mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0x15e49742 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x15d99bbe meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x15e388b2 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f58fd5 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x15f985b4 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x160b94e8 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x162d4c39 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16317a66 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x163666f1 meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x16372f87 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x1611df9c iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x161338cc gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x161aa8d2 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x161d08da extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x16269d2e __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x16335ec3 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164871e7 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1657bdac pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x1665474a kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x1672e718 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x1674dd60 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x165bd7bc devres_get +EXPORT_SYMBOL_GPL vmlinux 0x16677630 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1682b4ca hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x1685fd80 device_create EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16a78c56 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x169ee030 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x16a41494 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x16ae8a4c kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x16c36a64 transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL vmlinux 0x16d51e44 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x16d3cc9e pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x16d4ad66 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x16d9abbb gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e098fb __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0x16e4cb1a device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x16ef78ac dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x16e8c54e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x16ed9bc9 of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f56826 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x16fbe83f devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0x1709c420 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x170a2ea7 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x16fb3d36 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170fb699 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x1716c898 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x1723a7ae serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x172a57ba rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x1734508d devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x170f7968 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x171a1d44 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x1729ac62 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x172fe793 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x17309d85 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1736b70a switchdev_handle_fdb_event_to_device 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 0x175658a2 imx_pinctrl_sc_ipc_init EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x1759c92a devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x175af92d virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x17654b6d xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x176fcff5 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x1770bc60 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x17667480 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x176a0264 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177dc017 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x17938efe meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x17a73be0 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x17c299d5 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x17c34b58 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x17c481ba spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x17c9ef41 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x17d4abf3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x17b7862d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x17c1d750 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17c4f9cb xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x17c5130a bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x17d80f54 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17ec3528 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x17f257cc pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x17ec16a9 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x17ef54dd pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a89df phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x18120f01 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x18151e0b sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x18240975 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x1800b0ae nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18017307 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x180d7423 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x182d6002 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x183037a0 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x183c3a6e altr_sysmgr_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x184ba667 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x185ac7b2 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x184896dc meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x186b4933 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x186fd241 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18a3ebcc fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x18aa3a2c nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x18afb817 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x18b12084 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x18b98ffe xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x18cbb9aa usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x1873eb34 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x187c0a19 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x187c600a regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x187cad03 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x1895555d gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x18999f3c shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x189a7a32 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x18bb24ad fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x18d1be52 __traceiter_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0x18d34277 clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x18e38976 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x18da61ea tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ea867d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x18ea21cf validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x18eb8de0 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x18ed9da0 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x18efbfab thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x18f0b89b blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fd2848 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x18ff3b37 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x1910e2e8 tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0x1919adbd PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x19057a19 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x19125300 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x191c33b0 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x19204c04 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1926ceaf trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x19485a3c devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x194fbb4f pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x195a7ed3 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x19664bc0 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x196ba535 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x196e1465 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1973dc71 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x192f2d87 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x194817a8 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x19483636 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1951dc46 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x195ba192 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x196c900d irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x19774f8d tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x198a3902 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x198e8f41 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0x198f2b17 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x1993f314 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x199be915 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x198540b1 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x19940d17 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x199d2f5d serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x199fecc1 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a59226 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x19a8e5a2 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x19ab0b68 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x19b44df8 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x19bf0850 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x19c014d2 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x19c0d544 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19d148c1 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x19c4dc75 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x19d06bcc k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x19d0c67e usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x19de8574 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19ebf04e __tracepoint_rwmmio_post_read EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19f04e79 rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f6be46 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x1a0b7bc6 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0x1a0b7e02 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x1a0fb868 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x19fc682e skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x1a02a213 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a226f32 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x1a24349d tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x1a3bff95 of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x1a3e7acc debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x1a429678 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x1a4bb3f5 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x1a5f2445 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x1a6558b0 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1a14736c kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x1a151377 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x1a172539 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1a1b5b92 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x1a1cb590 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x1a1d8511 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1a26bb53 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x1a2cc286 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a395941 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x1a4d1af5 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x1a528106 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x1a66d82a spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a7783db __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x1a8074e7 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1a822a62 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x1a7cd98c wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x1a7d0b2d bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x1a7dd531 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a9619ec pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x1abbec29 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x1abd3795 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1a8f22d5 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x1a947bc8 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x1ac89ec9 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae61208 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x1ae6cefb i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x1aeb6113 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x1aee3144 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x1aeed680 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1af0d5e1 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x1ae508e5 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x1aebe939 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af88ce0 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x1aff2a1d edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b084d45 pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b15f82c sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x1b183fb1 msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0x1b4660dc max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1b1bf309 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x1b20f94d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1b232b54 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1b2ddc67 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x1b51d584 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b7513fa get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x1b845ea2 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x1b67dd07 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8d91a7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x1b89fd70 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1b918d94 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1bab0697 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x1bc36186 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x1ba5160a crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1ba5166b spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1ba69635 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x1ba73f8e pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bbac3ea crypto_grab_kpp 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 0x1bc82e4f sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bcb548a ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x1bd30fc2 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x1bd6d72e fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1beefe23 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1befee3e __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x1bfe4914 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x1c02f7ec wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x1c04b786 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x1c13d80c phy_create -EXPORT_SYMBOL_GPL vmlinux 0x1c164cc9 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x1c1c78ab regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x1c216d82 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1bcdc97b of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1bd2626e bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1bfc83df ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x1c112be4 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c43135b vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0x1c5037cc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c268139 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1c3339b6 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x1c356dab dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c4e0127 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x1c4ed77f pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c56b006 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x1c57fa21 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1c596840 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5c7a9f device_show_int EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c611310 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x1c65a640 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1c6bea25 fsl_mc_bus_dpbp_type EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c76c248 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1c78445a ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c825bf7 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c8d10cd usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x1c9f2b28 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x1c8a28bf fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1ca0a65b xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1ca4491a nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1caccbba inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x1cb81f43 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc7bfb1 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1cde5153 __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x1cdf3d6c debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1cf33fe8 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x1cf704ac init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x1cf7404c ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d0a0dbc of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x1d1feda6 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x1d2075c7 __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d25c1c3 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x1d2a2358 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x1d2ab4cd __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1d319e78 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d521f04 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x1d54cf87 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1d419d2f blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x1d4338f4 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x1d629fd3 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1d6496e7 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d7940ec __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1d943d48 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1d75b36a rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1d7919f5 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1d862d1d sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9a727e ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x1daceeb1 devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0x1dbfd6a3 fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x1dcc42ed clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x1dcfe742 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x1ddb087b serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x1ddbe9ba hv_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x1ddd2b69 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1de2cdf7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1da142e9 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1dcf9fa4 subsys_find_device_by_id EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write -EXPORT_SYMBOL_GPL vmlinux 0x1def33f6 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x1df0537a of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x1df2db7b pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x1df6ca25 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1df4bb0a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x1df8aa41 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e031f04 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e082f79 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x1e159ac2 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0x1e1e51e1 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e250eef nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn -EXPORT_SYMBOL_GPL vmlinux 0x1e3080d1 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x1e2fad31 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1e3b5b99 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x1e3bfd0e pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x1e401f65 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e462ed7 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e50d208 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e5f31a7 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x1e621ff4 devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1e62d40c pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e6890e7 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x1e6a7745 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1e54ac25 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x1e6ef29f tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e888601 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e906e47 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x1e98b8d2 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9f4a82 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x1ea46e28 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1eb4daef __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x1eb7ccf1 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x1eb832be i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1eab81b1 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x1eb7d76f tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecd5d9b regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1edb4989 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x1ee0d3aa pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1ee1d5eb regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x1eedb704 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x1eee05cc kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1ef1d581 acpi_dev_gpio_irq_wake_get_by EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1effb6c1 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x1f059f83 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x1f07d7b5 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1f1c9194 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f0558af edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f125070 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f1d1d35 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f2c5b1f pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f389f9a msi_lock_descs EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4506db gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1f4ce853 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f7af2b8 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x1f7fd862 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x1f801bc9 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1f5a2606 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f73338b mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x1f84e51d is_software_node EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8f517f fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x1f930161 gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0x1f945f24 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x1f86c2fa acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f8a41f8 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x1f8eebf9 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1f987dbf xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9d1a2b devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1f9eba14 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1f9e1285 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x1f9fc89a vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x1fa13fdf pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x1fa14493 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa87580 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x1fdbf73d file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x1fe10953 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x1fae6a25 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1fb662c7 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x1fbbbc54 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x1fbeac95 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x1fbf3e96 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x1fccf5fd put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x1fce3c9a driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1fcee074 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x1fde6c0e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x1fe43f54 of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fea4da3 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1ff0611e rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x2007bae6 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x2008b6a6 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200a3817 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x20115812 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x201d5cf4 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x20245fb2 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x20271edd mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202f9695 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x204be645 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x202fe847 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x20440b21 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x204c107c find_vpid EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x204fa637 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x206fa032 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x20751680 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2078001d devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x2052cf21 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x20653007 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x206b4474 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x2077b7c7 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20911c0d wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x20865b03 devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20a97028 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x20d14850 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x20ed35fd ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x20f3a132 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x20aa8261 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x20ecb950 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x20fe3531 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x211e42d2 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x211fe0c3 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x21255dde gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x20fca381 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x2100a080 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x2101e94a ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2104a107 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x21063ff6 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x2118fba4 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x211c7611 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x2136b58d sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x21394bdc mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0x213e635b mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x21568397 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x215d0cca __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x216817d2 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x213167e7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x2147314f rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x215ce866 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x215e32f1 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x215f90ef shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x216029e5 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x21750df8 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x217656ee misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217ae9e8 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2185922e register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0x21939b5f of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x219aedcf peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x219c7717 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x2199434c pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21abaac4 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x21ac2d83 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c16e21 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x21c22500 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x21b22750 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x21b49471 simple_rename_exchange EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21cb377d fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d4e215 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x21f112f6 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x21fc5724 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x21ce0396 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d80cce vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x21d9457e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x21da50b5 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x21e4b86a fsl_mc_obj_reset EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x22056fb9 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x22090dd0 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220e1c17 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x22252daf exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x222cda5c vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x222ebaa2 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x22311160 pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0x22478a1a perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x22541a8c tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x226395fe devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x226bdeeb sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x228a00c3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x220d97c0 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x220fd668 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x22109a2e irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x22157cbe bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x221614a9 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x22202fdc wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x2226e11e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x22311cc5 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x2249ee42 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x224f9525 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x22530d18 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x22567b3a pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x22598f2e clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x225f9303 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x226fe09f phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x22788b4b iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x228733a6 fsl_mc_bus_dpci_type EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x22aa9bf0 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x22943ff6 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x229f8381 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x22ae7e13 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x22bee0a3 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x22c09e83 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x22d55aea lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x22afb583 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x22cbebeb cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22ebf77c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x22e33945 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x22eaf79f device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22ed6ec6 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x22f0096c pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x22f6836d power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x230a9b3d rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x231eff85 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x23275f53 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x232f0cfc crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x22fe72c1 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2313a0a2 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x232eb3c8 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x2333b35e mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x2334359c reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23450982 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x23465e48 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x23497842 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23511531 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x235aecd8 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x236777a7 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x2374fd6a iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0x237b7bb9 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x23828a65 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2354b9c9 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x2358893d devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x235d766b devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x23736b43 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x237f97ed gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238cd6ce phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2386dede __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x238909cc extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x2389df33 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23af50cd rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x23b01b0b mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x23c80972 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x23d032f0 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x23d0c42c of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x23d17254 mtk_clk_register_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0x23f20201 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x24015a22 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x240b1d7f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x240e2757 fscrypt_dio_supported -EXPORT_SYMBOL_GPL vmlinux 0x24144614 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x239c6210 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x239e6aba cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x23a86b24 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x23c4d5ca clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x23cb1ada pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x23d229a5 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x23d55fba platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x23de4c90 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x23e0498a filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x23fbed9f iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x241d85c5 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x241e8c52 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242302af phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x242b9dc1 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2439b889 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x245adc5e kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x24599b42 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x2463e9f6 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x246639fc dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246d2a84 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x246de706 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2472a59b crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x247553dd ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x2478aaa2 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2478e61c tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x24867e79 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x24872971 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2490958b usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x24994cc0 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x249000c6 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x249c4b34 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x249dc8a1 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b2ed83 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x24b6bf06 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x24ce2cde xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x24d13d80 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x24d22423 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x24d96617 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x24c7cf11 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x24d6b06f nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24daa1b5 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x24e638cf genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24eef94a blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x24f0cbbc blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24ef7819 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24ff5267 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x2509ff33 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x252011b2 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x2512960d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2516e572 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2529f26b nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25385e53 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x2545c2e9 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x254e9f0f spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x25467a41 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x25533b70 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x25641cf9 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x256cf8e2 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x25724184 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x258702b1 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x257894c6 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x2589d3f9 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25ad96d3 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x25b7571f sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x259c625c psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x25a3fce0 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x25a9969c fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x25b8b28f mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x25bab699 debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x25cc280b vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x25d7a6a8 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x25deb86a uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25f4377e regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x260c0f26 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x263943ba input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x263f74c5 clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x2649bfc4 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x25edd393 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x25f67f26 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x2600eb32 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x262d2ce8 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x262e3fb6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x26323742 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x263c33c7 phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x26449e86 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2646b506 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2657d92b vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x26673c0d dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x2664526b thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267272b7 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x2679a09b dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268a0b6c fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x268686ab serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x2692c35b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x2693d470 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x269d71c5 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x269fec2b fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x26a90ed4 of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26aa29b9 dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b403e7 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x26c72a21 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x26aea044 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x26b6209e trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d57fdc regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x26e87dcb devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x26d27c5c dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x26d93bde xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x26dec154 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x27036c3c skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x26f0f2de __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x2704551f bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2720b031 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x270a1158 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x271081c4 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x2717ea9f of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x2722c0d3 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x27266c53 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x27400030 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x274fb9e5 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x27582631 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x27360bf1 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x276043eb gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277b92bd gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2788ac0c bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x27897ad5 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x278e9df0 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x2793b0d1 mtk_clk_simple_probe -EXPORT_SYMBOL_GPL vmlinux 0x27b011cd skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x27d58be0 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x27d670de da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x27d82282 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x277db76f usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x278a1748 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x27914b82 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x279c0dc7 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x279c9f95 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x279da38a mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x279fb965 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x27a0e44c extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27a9f89f fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x27b65853 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x27bcb414 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27cbe1da iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27dea83d cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x27e9ff31 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x27ec546f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x27e8b860 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x27f26600 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f80431 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2806ba98 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x27fd0bae nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x2800a2bf unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x281444b8 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x2818ecb6 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x2821b88e i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x281a5fa5 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x282b64a2 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2834122b dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0x28369527 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x2838947c pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x283eb7df trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x283f88a1 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x28478bbf mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x285b2eb3 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x283d196a amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x283f8cfb debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x28465aed lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x284f3df3 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x2853f619 check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x286f1be8 pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0x2877c85c serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x28783f67 fsl_mc_bus_dpdbg_type EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2882e34d gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x288dfe38 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x289c7a9e usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x28a234c6 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x28a4e697 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x28962946 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28abf085 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b26ace transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x28bbe0c1 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x28bfe280 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x28c420c7 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x28c9ce09 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x28cd1d8c kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x28d277b1 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x290b0752 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x28e220db acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x28e37599 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x28e5980e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x28ed2d36 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x28f90a8d ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x29053aa3 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x2916183e mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291f6f1e usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x292834f5 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x292d5459 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x29323883 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x291f46f7 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x2924270f mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295da5f0 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode -EXPORT_SYMBOL_GPL vmlinux 0x296a2a4e gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x297c48ac inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2983a5f4 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x298c4061 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x299f86a9 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x29ac100a __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x29b4a4e9 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x29be2ca8 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29c15f76 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x29c7ea03 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x29c9a918 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x2968b36b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x297ec480 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x29871bba pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x298b4624 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x29a54331 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29b1c83b __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x29b961a7 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29c52710 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x29c75665 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x29cca595 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x29cf12b2 dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x29d03de8 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x29d6937b regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29dfad00 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x29e7a5d0 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fc3e00 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x29fd0ce0 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x2a13deb2 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x29f12fdc regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2a2e5cae xhci_run EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a341266 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x2a4a3863 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x2a4a9d0b blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x2a549d58 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x2a45a4a7 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x2a483210 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a67f974 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2a693f2e __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a833507 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x2a8342dd extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x2a8608f1 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x2a8828ff pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x2a8a4e6e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2a8ef653 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2a9c0912 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ac8678b devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x2acf7804 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x2ab306e8 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x2ab8d926 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x2ac4ee2c badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x2ad17d4f sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae62945 dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0x2ae64dfd sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x2af2e5bb crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2af45b81 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x2afb8588 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x2afb92ec rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2b0b9550 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x2ae2a1c2 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x2ae73461 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x2aed782e fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2aee0b9a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x2af0a3a5 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2af405e9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2af5ff48 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x2af7a906 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x2b075381 devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b2d92b3 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x2b11f116 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2b13276a fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x2b161251 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x2b1cb561 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x2b1fdbdf seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4f01a3 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x2b548de4 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x2b48e99c devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2b53c21c usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x2b5a6b49 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b674f30 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b69dd27 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2b7af35c acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x2b80f2d5 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x2b770162 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x2b7fb55a pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read -EXPORT_SYMBOL_GPL vmlinux 0x2b93d4aa bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x2b95df32 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2b88b817 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x2b90a755 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2b9b5895 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x2bb081be device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2bc83c78 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x2bcff621 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x2bb7b656 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x2bc68aea dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x2bce998c irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bd1673f tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2bdeb4ce devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be4eed5 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x2bf15dbd debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x2bdf96bd regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x2bf34ab3 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x2bfbdd26 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x2c1028a8 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c25f6f4 component_del -EXPORT_SYMBOL_GPL vmlinux 0x2c2adbd6 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x2c240ce0 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3e85b6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x2c3ee1ad pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x2c46556c dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x2c580813 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x2c5c08d2 mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c63c4c9 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6a462c kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2c6ec1eb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2c7261c5 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7ec6e8 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x2c80fc65 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c86f58f dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0x2c8dbfac devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c857e4e ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL vmlinux 0x2c93825f kvm_vcpu_on_spin EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9f7d24 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x2ca5133c inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0x2ca739c1 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x2ca7521a ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x2ca7d2d9 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x2cb84b0c gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x2cdfecbc sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2ce33c40 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2cfc5b71 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x2d00ac5d cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2cefeb5d kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x2cf0c511 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d102ac2 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d25dd22 dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d2847e6 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x2d1f065a hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d31a345 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x2d406852 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x2d406eeb ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2d388e34 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x2d3d3321 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x2d3e4c8b samsung_sdi_battery_get_info EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5bed6b lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x2d5f6704 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x2d423958 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x2d48ee44 mnt_idmap_owner EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d669356 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x2d734455 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x2d734a75 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x2d7895a8 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x2d79f62e rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x2d7da5db of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x2d7fd116 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x2d951b0a pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x2dabf214 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2d8ae69b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x2d8d11cc of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x2d9043bf crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2da3b9a1 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2da691a7 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2dad6a08 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2dae24b4 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dbed7f6 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x2dc0f833 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x2dc5e347 vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0x2dccc0dc pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x2dd01e3b __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x2dd0dfe7 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x2dd57d95 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2db99219 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x2de76864 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x2de96c3a dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x2df62f82 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2ddedb15 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2df92846 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x2dfa57be switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e07e292 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x2e033eff serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e08dc07 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2e0900fc __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x2e1985d4 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2e1bd8d9 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x2e2307c1 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2be460 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x2e337ed4 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x2e3b90bf acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2e50a077 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x2e5c5d61 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x2e5e9b7a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2e313370 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e36bb7e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e421daf devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e73e328 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x2e76988a spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x2e778fc9 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL vmlinux 0x2e81d5c2 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x2e8746db crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x2e92cec2 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x2e9ab7c3 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x2e6775b7 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2eab66aa __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2ea34551 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2ea75274 pin_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec7ee24 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x2ec7747b iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2ece74eb kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2edeaa02 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2ee711fa mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x2ed9205f cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x2ee77212 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2f0d7bcd cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ee9621d handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ef19c98 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x2efae40b tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0dbfb9 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x2f10fcc6 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x2f12a63f blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x2f1bf829 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f269a1a vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x2f281b38 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x2f285b53 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x2f238caa ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f40ce45 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f43cf30 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f5d9917 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x2f624aeb spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2f5c4106 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6a09aa led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f6adbd8 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x2f738565 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2f755cb0 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x2f79392c pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x2f7d6629 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x2f800f5f skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x2f8f7bea kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x2f98398b dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x2f9ecf5e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f75f356 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x2f823337 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f861de2 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x2f923269 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x2f95fc71 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x2f960531 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x2f9a6793 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x2fa26ae5 usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc4a539 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x2fcd3af9 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x2fd08350 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x2fdc76e5 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x2fe397a8 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x2fe50c25 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x2fd4981b perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x2fd8f0a2 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x2fda3a56 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2fef6a85 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x2ffcfcb8 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30098875 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x300fa8bc regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x301dd369 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x3026723f trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x3028e6f9 stmpe_dev_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x303c5222 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x3041dd10 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3047a790 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x30574729 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306baea7 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x306db2de __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x306ea546 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x307377dd trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x3083db6a dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x30901ad1 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x30ab2865 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x30b09d52 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x30c5fb38 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x30c828c2 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x30d2a8c2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x30685b81 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x306f937d usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x3089998b folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x308a991f kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x3093e2b4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x3096d838 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x309fdce0 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x30a1e75b fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x30be6d2f of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x30c0d16e pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x30cca133 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x30d7012c spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x30decd82 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x30df1ae9 acpi_subsys_freeze EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30eb46f9 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x30ef99c6 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x30f15d56 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x30e24c81 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x30e5566d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x30ebd056 irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3109f59d fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x31175e50 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x312581c8 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31288291 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x313d44da __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x312ff69b phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x31384901 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x313a2750 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x31740123 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3175ef3c scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x31798542 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x317fd2ba devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x31479a4c xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x31480ecf sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x31587482 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x31662785 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x31682584 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3168cdb5 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3183d6ab crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3188158d phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x318af138 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x318b03ed auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a0a01a devm_ti_sci_get_of_resource EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ae551e fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x31b2127e dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0x31b32ff1 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x31bcbf6e get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x31b15c52 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x31b38cab bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31b88740 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x31c2e837 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x31c72f17 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d3a10e __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x31d8eee5 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x320139e8 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x320a9a01 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x32163da3 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x321e4a22 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x321fd17a inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x32280244 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x3219f56c of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x322642ef iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x322cb5c9 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x3230403e i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x323ded34 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x324ba038 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x322a37df fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x323f962f relay_close +EXPORT_SYMBOL_GPL vmlinux 0x324af51a cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x32525540 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x32584a96 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x325d02ea usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x326103b2 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x3262b769 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x32640761 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x32687601 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x3260f94c acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x3275943a of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x327c73e6 __SCK__tp_func_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0x327eb66e xenbus_dev_groups EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x3291f192 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x32a2ed08 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x32a4dfa6 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x329e80de clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x32a34f1d regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32a40446 d_same_name EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b77268 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x32ac6e97 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x32aebb3e tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x32b1d1f2 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x32b546ee bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c40c17 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x32e3cedd __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x32e0f262 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3306ff30 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x3304d7a0 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x330ab294 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x3317315f usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x3324524b get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x333d71d0 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x33465f5f trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x33533cea vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x3355251f pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x331366b9 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x331eb634 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3327f242 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3337d6b2 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x335a26a7 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336a720d security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x336e789b pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x338154bd sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x33ac1a4b ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x33acb4a7 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x33bfd8a2 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x33c85cdd rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x33c9a3ef __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x33e071e0 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x33e25176 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x33f9023f of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x3405b847 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x336a474f __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x337aa055 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x337bf979 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x338fc850 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x339c2017 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x33a13ae4 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x33adb37e xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x33b0f26b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x33b33861 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x33dd806a sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x33ec7766 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x3415378d irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3423ee36 put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x342badcf cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x342d7d5a scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x341d042a device_add +EXPORT_SYMBOL_GPL vmlinux 0x3426785b component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x34298c0e usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34337c38 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x343f6e0d pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3445877f __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34530759 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x345df6d7 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x3469e063 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x34510f42 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x34530b92 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x34540c6d dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x34757a75 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x3488a2d7 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x348bbe34 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x3494fa02 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x34969cf8 dpcon_disable EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x34b69dbd usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x34b71440 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x34c1a858 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x34c5c317 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x34c8f043 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34ca1e1b ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x34d1f6e9 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x34d86506 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x34c43e2e dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34cf6b6c iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34ddb3c1 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x34e4429a i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x34e6eb0a inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x34e8d8db kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x34df6852 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f4a5ef platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x34edacbf pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x34f8bc4e register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x34ffa1ba rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x35029bc4 iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0x350ceed8 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x350eb061 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x350c8048 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3516fad9 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x35193b9c __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x352afe03 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x3512875c gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x35176a1c ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3545e348 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x353d55d7 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x354bfdfa __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x35502119 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x3558daa7 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x3561db83 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x3561f422 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x355cba8b irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x35619bea folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x356e83a0 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x356a0712 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x357a0d15 vcap_addr_keysets -EXPORT_SYMBOL_GPL vmlinux 0x35843cf7 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x35862ed5 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x35869fcb pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x358709bd tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x358f2fb6 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x358127a8 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x3589ca35 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x358ac71b xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x358bbf12 mtk_mux_gate_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35a868a6 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x35b3818a devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35b58385 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x35c4cf1d dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0x35c8e46c synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x35d3c8b0 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x35abad47 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x35b8c0f0 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x35bc135e da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x35c8f3db regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x35cabb2f gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d3e620 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x35eb47f8 mtk_clk_unregister_plls -EXPORT_SYMBOL_GPL vmlinux 0x35f54f7b ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x360a0f14 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x361f6697 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x35d7bace phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x35ed48fd regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x35fc37f4 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x3604b7c6 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x36143141 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x36187e6e blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x362098d2 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x36232d66 spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x363399af class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x36362b4b pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x3642ca30 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x36270920 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x362eafcd metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3641ae9e switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x365e97d2 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x3676e4d8 blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x367e5bc8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x366c51cc kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x367aea4b devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x36831f50 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x36869859 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x368c4943 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3696346d devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x3698469a tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x369c7065 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x36998b6a usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36b4a622 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x36c23f83 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36ed3528 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x36fadacd i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x3711bc7a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x36e0f7f6 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x36e50648 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x36e65d5d fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x36ec720f clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x36f7c442 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x36fb2b92 devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x371c6250 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x371eabdf tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x372a0407 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x372dafd3 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x373ba5f0 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x373dea16 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x37490989 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x37247787 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x372765df crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x37333d40 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x373d1ebe ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x373e4483 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x37451685 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x374df81a dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x37601d7f ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x37657022 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x37672e69 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x37681b57 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x37549fee tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x375dfb1f device_attach EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0x376e7453 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x376ed56e usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x37732732 spi_bus_lock 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 0x37838512 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x377d4f48 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3787dd69 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x378c9182 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37916b64 unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x37a84887 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x37b78381 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37bbded0 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x3792c910 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x379df77d md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x37a583da pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0x37a7bc39 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x37acd44f dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x37bbc4d7 vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c08634 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x37f5b8b2 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x37fa87d5 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x37ffe9d5 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x3800d2fc pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x37ccd194 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x37cfdb3a sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x37d5c7da syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x37d7282a regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x37e9f1df devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x37eb1d8f md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x37fdf796 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3802ffe0 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x380757d5 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x380928f6 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x380a1270 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x380f631c serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x3821a80e gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3836d2da bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x382c2a69 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x38342c8e blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383772b4 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x383d7f3a zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x38446261 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x3845c8c5 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x3858ca77 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3841d1ae fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3848667c iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x38569ce9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x385cf208 spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x3870882c mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x386c0354 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x386f0270 rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x387b8a94 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x387d3dc2 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x3886aac7 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x388151f1 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x3888014b pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x388bc170 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x388c0b90 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x388f7f8e genphy_c45_pma_baset1_read_master_slave EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389e2552 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x38a2a18b tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x389ed2d8 divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aff0ac crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38b4d162 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x38b67aba platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x38ba72b8 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x38bb23d3 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x38b2bbcc crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38c87049 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x38e1e7fb gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x38c97bac k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x38d28471 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5a01f blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e9e7c6 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x38f09bab msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0x38f27c75 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x38ea35a7 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x38ecdf11 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x38f48077 kvm_vcpu_wake_up EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x39271ccb tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x39334008 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x38f75a62 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x3909f28b blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x391abd39 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x391dc63c reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x3927a127 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x392ec468 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x394f84ba platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x393624a9 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x3944de90 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x39472876 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x394847ef ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x3949b3f6 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x395da028 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x395fde6f dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x396ca02d irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x397d1ef5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x396a7c31 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x397a6aed reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x397c6f14 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x398180c6 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x398743d6 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39a9612b debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39ad1149 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x39b95fb2 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x39b63ee9 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cf57b7 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x39d81217 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x39dcb90c dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e5bf2b generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x39fb689d regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x39e5141e crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x39f4b3fe sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a080ec8 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3a1151aa regulator_irq_map_event_simple EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a15d554 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a32e7c6 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0x3a36b187 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a3b65c3 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x3a48e1f1 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x3a2c4488 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a39c6ba pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a524e74 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a58c7a7 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3a5cc6c8 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x3a62b5c6 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x3a69f046 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x3a702fa8 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x3a72d227 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3a57b893 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a780031 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x3a7c0cc6 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x3a7d86c1 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x3a9948ef fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x3a7bf080 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3a8312f9 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aac49c7 register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x3ab2bbd7 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x3abbe829 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3a9bf7f9 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3aa15731 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3aaf2d7b regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3ab40fb4 dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad075ef kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x3afa49b8 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x3afb5e1b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x3ad76469 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x3ad8b13d inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x3ad98add scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3ada3f3d xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x3ae6e4da pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x3af13cfc regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x3b16664a ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x3b27f907 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x3b3202de pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b423eb8 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x3affc547 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3b072b53 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3b1b80f0 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x3b1ef18f genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x3b233500 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x3b27ad33 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x3b2ab62a meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b3bc181 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x3b46827a device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x3b486c6b irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3b4a045c of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x3b4bf4c8 tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b4c243b vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x3b4f2195 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3b538167 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x3b5a7842 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b65707d phylink_connect_phy -EXPORT_SYMBOL_GPL vmlinux 0x3b69602c usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x3b6ce4fa serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b84136c gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x3b8c7e1d ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x3b948e1e input_class -EXPORT_SYMBOL_GPL vmlinux 0x3b9ca7d7 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x3b8cbeae led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x3b9e8693 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba9db0c rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3bb3da73 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x3bbc10f1 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x3bc20450 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3bbbe0c9 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x3bc474c6 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3bd90a26 acpi_irq_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdbdf52 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bdcd1da __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x3bf0a626 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3bdcd867 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x3beb6200 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x3bef1ede fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf2129f pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x3bff4d40 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x3c001291 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3c0205c4 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c0f97f2 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c1a4963 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3c11bcd7 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x3c158ae5 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c27dfd3 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c3ba859 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x3c3284d6 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x3c3b8a3d nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c4569d8 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x3c460075 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x3c51789f ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x3c54931f mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x3c586535 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x3c5a6ebb bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x3c4a417b iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c60df09 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6ba3fb serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x3c72bc60 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x3c76295e vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c854b89 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x3c93027a fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x3ca6e54f devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3cac6ac8 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x3cb03a4d of_regulator_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x3cb20143 vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0x3cb63df1 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x3cc86b4b power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x3cc9ec3e spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x3c884b78 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x3ca59480 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent -EXPORT_SYMBOL_GPL vmlinux 0x3cce54d6 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3ccfcdcb ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd97c84 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3cfe854b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x3cd3e28d pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x3cd99524 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x3cf1e189 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3d1c0e17 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x3d2822d4 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3d373bc1 i2c_slave_event -EXPORT_SYMBOL_GPL vmlinux 0x3d377df4 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x3d0b21d0 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x3d163dc0 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x3d24c931 rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d45d023 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3d4e7ac4 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x3d4158fa regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d73aca0 acpi_dev_state_d0 -EXPORT_SYMBOL_GPL vmlinux 0x3d83e0ff trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3d7470dd crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x3d802be8 __device_reset EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d877b84 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x3d88e4d9 dpcon_set_notification EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d99a3a9 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x3d9af123 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x3d96865b pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x3d968d8a devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9e2da4 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x3d9fb239 led_put +EXPORT_SYMBOL_GPL vmlinux 0x3d9cff35 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x3da02069 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x3da195d3 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daeebe5 psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x3dc32080 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3dbccfff fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x3dbf9991 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3dceabcc __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x3dd6fe88 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x3de87fe6 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df022a5 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x3df53b12 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e0795df sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e1a702f pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x3e22d3bb powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3e352b26 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x3e2e1423 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3e394ed7 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e6982ee pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3e52d796 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3e585cdf kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3e6be9b7 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3e6cd0a6 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x3e705308 clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e753db1 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3e75914e fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0x3e7927db to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3e8693fb ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e981877 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x3e9ce2d8 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ebb44ac irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ec35e3a usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x3ec782df mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0x3eca619b generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x3ed9b44b cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3eac101c pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3eb1a75c tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x3eb480e6 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x3ebf028b gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x3ec2914b ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x3ec58e77 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3ed2d271 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ed51fb5 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x3ed69bdd __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3ee2891c crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3eeeb6ea of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef06b4b bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x3ef55094 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x3ef61665 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3efbeb79 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x3f049829 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x3f085c5e md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x3f152713 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3f1b44da mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f39fdd0 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f1a6b96 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3f1adb2d xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x3f2197c7 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x3f2914f4 spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x3f44de7c pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x3f48c1fa devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f60d539 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x3f63dd92 imx_get_clk_hw_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3f662d68 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3f514f19 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x3f61c7b3 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x3f82a2bc tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x3f83446e pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8e6ce9 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x3f8ea54e mtk_free_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x3faaba83 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3f8f680d dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x3fa372fd thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3fa60dba rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3fa79236 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fc0a7d8 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3fc34300 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x3fc7a051 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x3fd2089a generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0x3fe227fe ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x3fafc8ef sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3fb0f8e8 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x3fdcdf88 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe949f6 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fed9fd1 xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ffac0da do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x3ffd58e1 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4005b4cd blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4022c079 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x40119631 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x40229f3e __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x40282249 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x4029f3aa pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4035a4b4 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x4036fa77 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x40361484 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x403f2b61 scsi_target_unblock 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 0x40513698 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x40594f13 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x40473a99 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x405d655b tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406cc474 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407a4c16 debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40954cba check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40bda9c2 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x40c91251 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x40efc5c9 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x40a5f1c5 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x40b13a30 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x40e54c38 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x40ee9530 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x40efeca9 of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put 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 0x4106b055 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4119d71e wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x4124cc68 blk_crypto_intersect_capabilities EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412c3b77 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x4135193b ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x41315086 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x41322138 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x417b2b37 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x417c69c0 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x415d1b35 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x4164b597 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x417d3b6a thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x41811e89 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41831ee8 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x41908da1 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x41951d8c dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4199baf6 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a4b446 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x41abe519 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x41b0f3d4 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x41b1dc59 hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ba8721 dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41be7ed1 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41c23cf1 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x41d20ad7 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x41e79900 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x41bfb312 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x41c0e446 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x41c23ecd blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x41d139e1 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x41da64b0 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x41e853a9 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f31fe0 ext_pi_type3_crc64 -EXPORT_SYMBOL_GPL vmlinux 0x41f3e74f crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x41f44bc4 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x41f9186a dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x41fc012e __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x41fef1b0 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x4202df84 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420a4abb of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x420c5115 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x420d009a iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4215c753 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x4223b577 mtk_clk_gate_ops_setclr -EXPORT_SYMBOL_GPL vmlinux 0x4224ec94 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x422cfdb8 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x423bb60e power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x425d02de usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x4262ed01 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x421215cc anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x42178f8d fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x421b776d xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x422ada84 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x4248085d nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x424cc68c unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x42551137 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x42598e8c devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x42650ed6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x42647213 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x42691090 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x427029da pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x4278d56a phylink_expects_phy -EXPORT_SYMBOL_GPL vmlinux 0x427be123 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428402ac fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x428602e3 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x42830237 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x429688b1 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x42970249 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x429c3143 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42a43fcd hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x42ae883f crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x42a83fb1 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x42aaf465 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42c650e0 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x42e4edcd rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x42f68d23 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0x42f69565 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x42c5647c mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x42d99d9d dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x42f52740 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42f7af7d of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x430bcfdc nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x430319e5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x430a716e pstore_register EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43135728 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x43241894 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x432c2f98 blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x43589621 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x433fd1fd __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x434aae3b ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x43623d38 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x436484fc dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x436954ea trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x436aa87e bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x436bb8b8 acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x436fd6c0 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x43712e73 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43a4fd1a iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x43a7cc0c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x439db344 devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b5ced9 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x43bdf91c device_del +EXPORT_SYMBOL_GPL vmlinux 0x43aca4ed __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x43c41c52 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43d00865 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x43d1c3da xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x43e5fc19 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x43f5e4cf fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x43d13d07 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x43d72182 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x43d736f8 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x43dc31cb regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x43e53291 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x43efda22 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x43f7f09e mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f874e3 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43faafbe crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x44096059 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x440bffa5 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x4412ffdc tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x4413855c tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x44153e76 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443d9af9 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x444ec428 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x445ee156 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x445f7b4d task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x446dfa90 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x447a516d wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x447d4ef6 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x4454e5a1 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4464bd1f pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x44720141 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x44769885 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x4477f566 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x4478940c stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448870d7 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x44923794 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x449568cd devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cb11c6 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d1451e blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x44de2f02 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x44cfbe98 dpcon_disable EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44eedcfc acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x44fbf8ad sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x44e35acd clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x44ef1696 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450a6059 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4527325f phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x452a9868 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x452caa34 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x451ad756 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x452044f2 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x4527e09c xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x453b2b40 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x453ca753 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x45470065 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x454bfea1 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x454f6b2c evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x45505a7e mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x4537bc5d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x45388888 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x45436a9f tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x4546b00f fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4555f057 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x4560b488 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457ad296 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x458384dd ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x458f5e09 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x45906811 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x459c8196 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x45949e38 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a03672 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x45a0dcad virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45be5661 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x45d80077 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x45ddde38 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x45e5fe85 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x45ebc0e8 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x45f45ae0 spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0x45fda61c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x45a3dc43 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x45bd8835 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x45d8713e mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x45e67cfb rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x45e6857e of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x45ea50e6 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x45f7b19f ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x45f94cea sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x45fb8ab8 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x46049e21 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x46127738 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x4615cf0b gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x464117ec crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x4642605c phy_init -EXPORT_SYMBOL_GPL vmlinux 0x464d7193 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x46539b40 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x465631cd bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x46582fe4 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x46614a0a dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x46706884 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4684792b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x4631d442 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x4642fb72 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x46732213 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x467b722b pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4695af58 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x46963abb nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x469edd5d phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x46a13369 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46b0960d pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x46a84f8a irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x46de8acf shake_page +EXPORT_SYMBOL_GPL vmlinux 0x46c3a7ca device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x46d9a954 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x46db1ea5 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x46e47ba0 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap -EXPORT_SYMBOL_GPL vmlinux 0x46ef4b74 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x46ed4fa8 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x46ed8879 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x46fc2462 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x46fc7714 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x470abd80 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x4716757f io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4717013d vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x46f7921e devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x46f93e6e mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x4719b3c9 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x471a89e4 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473aabef tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x474bf7a9 device_register -EXPORT_SYMBOL_GPL vmlinux 0x474d8732 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x4758523b irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x475fc580 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4758a72b ping_close EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47650b66 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4766a2e1 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x47648bab devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x47743efd usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x477f4ed7 spi_sync 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 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a06f15 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x47a551f7 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x47aa83b7 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x47a2ab98 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x47a8e681 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47abf257 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x47b724ff irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x47c48598 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x47cc22ca pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d10559 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x47d11584 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x47d30d8f altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x47db4d43 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47ed8d38 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x47ef6e33 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x47fcaf9e regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x47fc8f76 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x48054a33 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x480dec0b xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x480e5586 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481efbc7 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x48165d21 phy_led_trigger_change_speed 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 0x4839dd0d pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x483a4dfe dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x4842bf0b tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x482a105a blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4835cdf2 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x48549e6e cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x485d8503 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x485e567d fb_deferred_io_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4863e874 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x48645553 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x486863b4 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x486362c9 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x48638e35 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4868747e sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x486f39ff thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x4875a4ff bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x487dece6 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x488a338d ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x489436bc watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x489e25f3 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x488f82ec pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x48a31c02 dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a7c0c6 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x48a9b1cc sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x48abf4a0 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x48adc753 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x48af0964 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x48b1cd23 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x48b37a1e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x48ba2ada devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x48c1b56f __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48cfe2ef pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x48d2f222 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x48ec1ca6 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x48f74786 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x48eb1f0c to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x48f54251 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x49225749 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x49068261 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x490b6fcc regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x491c8271 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492ebe26 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x49316239 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x49343782 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4926b283 iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4934f3a7 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x494f9179 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x4959f12c tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x495b9c4b pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x494a0f03 mtk_mutex_get EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x496c8c01 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x4976d3c7 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x49813be0 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4986ec33 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x498dc414 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4963455e zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x4969611d irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x497c7653 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x4987391b phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x498e679b mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x498f7595 pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49999d89 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0x49a56b9b shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x49ba0fec regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x499a0053 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x499ae6d3 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x49a84236 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d143b8 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eb070a da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x49f0d5c9 usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x49f94d23 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x49fd1975 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x4a05425f rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x49f34c8f blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x49fda22a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x4a055485 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x4a05e7b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x4a07c691 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x4a0a0d28 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x4a0c4feb fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x4a0d276e usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x4a0ff66d pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4a145a0f regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x4a0c7793 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4a0d4eeb nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x4a138b44 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x4a15b574 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a194166 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x4a2577a9 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x4a3f7485 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4a24e8d5 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x4a3a554f dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4d5be8 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x4a642438 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4a7d6a8a devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x4a922cd8 blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0x4ac0be8b irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x4ad73e95 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x4ae7972d __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x4b00a9fb dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x4b30b934 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x4b45e99e power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4b50920f devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x4b551c47 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4a449c84 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x4a4cdb47 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x4a52dd63 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a640a7f subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4a76304f xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x4a811d21 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4a8a461f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x4a9a2b50 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x4a9f6dba of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x4aada992 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x4ad11661 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x4ad76b10 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x4add296f dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x4add5e06 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4b04927c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b081bbb pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x4b0a424c pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x4b23db34 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x4b414897 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x4b42fc2a edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x4b531112 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b67be82 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x4b6fc682 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x4b766fc9 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x4b7e204e event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4b5cf18a device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x4b6ebfae trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x4b70fcde kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x4b7570b4 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x4b8b6ba9 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x4b92c3fe crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b9577da ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x4ba8ecdf devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x4bbfab60 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x4b95da6f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x4bb35c75 ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcb63da vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x4bd11bec fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd488e4 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bda4bd1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x4bd937b0 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bde661f dw_pcie_ep_raise_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x4be64845 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x4bf80c8b elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x4be70197 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c11100a of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x4c235a4e usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x4c2681b6 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x4c2a6678 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c058ad7 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4c1664d9 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x4c26d9df gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x4c27c7af devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c378dc8 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x4c42c3c4 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x4c48a5df wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x4c511d6f dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x4c3a4407 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x4c3c21f6 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x4c3d5e1e edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x4c4203a0 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x4c4af8c3 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x4c4b5fed trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x4c50e77d rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c562e43 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x4c57f95d inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4c591f8c dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x4c604a33 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x4c72db70 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x4c7f8fca dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x4c572270 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4c5a1a59 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x4c5c3b30 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4c7297a3 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x4c76e8f1 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8e0525 ahci_platform_find_clk -EXPORT_SYMBOL_GPL vmlinux 0x4c915995 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x4c9dcff4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x4c8e9f20 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4ca408b0 of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4cafe23f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x4cb079c4 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4ca7ad73 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb558ed regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4cb30284 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc321cf pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x4cc3a40f irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4cd301ca device_add -EXPORT_SYMBOL_GPL vmlinux 0x4ce0ce09 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x4ceab956 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4ceb7800 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x4cfbeadf clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x4cfeb47e xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x4cc07aeb irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4cc91752 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x4ccf29c7 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4cd2aeb8 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4ce5dba8 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x4cf71edd __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d027582 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4d03db72 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x4d03e5af __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x4d076924 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x4d080177 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x4d15f3b0 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d19e7f6 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x4d275819 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x4d353342 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x4d36c70a regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4d2f2df7 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x4d323e47 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d401d6b iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x4d4597ff regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x4d48df36 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x4d607ec3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x4d611e57 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x4d61b9a2 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x4d61c1fd sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x4d3bfb81 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x4d3c5073 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d78fdfd get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d8d8d69 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0x4d8e73ab mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x4d91215a led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d8a4505 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4da4aceb power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dbbfda8 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x4dbc8944 pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4dbe9803 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x4dd49cff sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x4ddf8e95 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x4daf022d ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x4db03653 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x4db9b50a sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de1af9f gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x4df4eb1f ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4df6f23e irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e114d3d mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x4e16a93a blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x4e001951 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4e0121fe virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1f5676 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x4e26503a bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x4e25c167 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x4e263efe tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x4e27aa2c clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e2faed1 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e3fd6e3 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x4e5dbbd2 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x4e5fc9c4 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4e58e701 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e7046a8 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x4e73398e regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4e68a1dc pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x4e72c339 of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e7de97a spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0x4e7eb909 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4e7acc8c hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e7d18a7 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e949887 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4e9d4e34 __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eb563fa pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x4eba4cf1 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x4ebfd343 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x4ecc84cc dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x4eb895af housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x4ebb7742 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ede85da mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0x4ee709f1 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x4eed85d5 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x4ef22418 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4ecec97f wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x4ee61f92 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x4ef2bfa4 mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef9e9e9 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4efded14 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f084b92 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x4f116132 pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x4f1350f4 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f1853fb dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f26e545 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2dc428 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x4f380771 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x4f52a6c0 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x4f58f093 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0x4f62fe9b tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x4f342e15 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x4f406c57 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x4f49ee70 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x4f4c2ea2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x4f5be749 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d4cd0 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f72c796 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x4f7c45e7 mtk_mux_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f825ec9 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x4f8f0698 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4f97eee6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x4f89afdc md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x4f8f09bc devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f990bbb tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x4fa27f36 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x4fa4c226 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x4f9a00f5 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4f9ab4e5 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x4fad6f0a mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4fae59eb crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4faf4e44 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fc10976 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x4fc25d36 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x4fbfb7d6 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x4fc6a3c9 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x4fdabdb0 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1e59b cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff3286f debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x500077f4 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ff091f7 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x50090325 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5019a30d cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x501c8e64 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x500f139a ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5034193c tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x50395c6f crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x50511e86 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0x5057d2b0 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x505bb0a6 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x502877e4 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5033af07 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5037873d strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5061e8c3 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x5063c533 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x50656abc ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5066d578 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x506f1adf debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x50754dc2 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x507cc4f3 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x50809c7e device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x508e1479 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x5061cb5c rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x508768c0 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5094baf0 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x50aa48e4 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x50afa035 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x50beed89 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x50c1b647 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x50c7f9cf spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x50ccd755 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x50da5a70 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x50972ea5 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x50acea53 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e13b54 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x50dfa1b6 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x50dfc89c stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x50e58fcb debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50e9f707 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x50ea98c2 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x50eafdbf rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x50f53ea4 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510d3ff7 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x5110bfe5 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x512997cb fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x513080f7 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x5137e319 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x5109ad64 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x510d4737 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x5110b91f imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x511ba219 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x51227cd4 acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513d5c4e ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x5147c6ff ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x514f7e38 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x51422b51 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x51428107 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5147c20c tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x514ea6f6 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x5160e509 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x515fba9b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x51606d6d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x51656f06 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5166f45f device_destroy EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5174190b nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x517bdedb tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x51816aa3 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x5181b0fc usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x516c47e2 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x516ea1f8 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x517dc7c0 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518d7435 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5188bd69 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519e85b2 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a5721a pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x51ab8621 md_run EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b274a8 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x51bd20b4 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51c6d202 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x51ae5f21 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x51aef229 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x51bd7203 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x51c007eb sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x51ca242f pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d70990 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x51d163e0 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x51f47561 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x5202bd21 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x5204e710 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x520994b3 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x5221aa43 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x52221bb8 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x51fcf0b7 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5215ff33 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x5223118b mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522bc83e fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x523ad839 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5244c7b6 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x524fcb15 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x525f3c11 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5263ee9d clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x526244f8 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x52632ae0 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x52653518 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x527d3818 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x528052fc attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x5295ffce of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x52a01a66 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x52a0c922 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x52a3b625 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0x52acddfd event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5280a413 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x52865ada usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x5291b08e sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5294202a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x52a83481 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x52a9c23c pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b2a098 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x52b8cd9b __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c693cd nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52cc2baa tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52dbeb01 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x52e02c40 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x52e03360 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52f20fe7 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x52f5f952 dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x530bd72a usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x531d3205 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x53097c0c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5310bc8d __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x531ecb54 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x5320c3d6 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x5325bfe9 vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x532b788c srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x5334b466 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0x533662f8 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x534c2028 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x5357eb8f rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x533c1868 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x5348f45f devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x534aa2e7 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x534ae70b devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x5353a493 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x535569c3 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536edfcb meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5387fdb6 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x538bddd2 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x5386692c ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391797a pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x53a0ff25 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x53a45907 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x53a6e77f handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x53b2b37b thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x53b8ced9 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x538d3e81 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x539737d7 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x539e28be uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x53a1e79e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x53b63692 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x53b97d34 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c10bb8 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x53d54550 of_k3_ringacc_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53da7a6b vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x53e1e21c dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x53eae5ad __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x53f860b4 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x53fc4a71 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x54176f7e gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x53ed504f dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x53f3fab2 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x53fbaa48 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x54009776 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5402f75f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x5405ed4f simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x54139aa5 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541de36c clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x541ee245 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542199d3 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x54338a67 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x545ee7dd rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x5462e8bc usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5422a3bf pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x5437630e of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x543c8198 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x54589d51 pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54784556 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x54814e17 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5474988a sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x54813ac6 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5482f0ed acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5486b42f pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549df6ea vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54a131a4 bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54b96e3a tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x54bfef0c cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x54c32626 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x54e0129e ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x54e2644f crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x54e75e22 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x54efbf21 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x54f88877 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x55039a19 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x54d43407 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x54dc67db acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x54e73511 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x54f5b992 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x5501b58f ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x550a905b vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5514214e netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x551767e2 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x5525a8ff regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x552e39c2 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x55294d80 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x552b6307 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x55355ed9 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553b5c3c gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x553f4ccb mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55417f6d crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x555355d2 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x5563a9f1 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x55539c4a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x555a4b03 wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5573042d of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x557034aa inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5573d70c __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55860362 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x55a6b7fe devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x55ac9352 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x55b781e8 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x55b9bd13 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55c1fa18 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x55887b0a dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x558f5508 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x55a51491 irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x55dba3c1 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x55e5e868 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x55ebf81a devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x55dc2241 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5601c4cc posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560c3bfb phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0x560f21dc spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x5613db6d metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561a9802 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5622b32c crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562b017f samsung_sdi_battery_get_info -EXPORT_SYMBOL_GPL vmlinux 0x562ed25c regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564f0697 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x56506179 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x5652b04e wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x565716e8 dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x566e724f relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x56750213 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x56791c12 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x567d0805 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x5642f1df regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x568902d0 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x56920905 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x569528b9 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x56a0a065 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x56a56632 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x56a63c7e kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x56a862ea mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x56ab310b bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x56adc0f5 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x56b26a0a __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x56bcace3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x56cccaae pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x56dd15cf xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x56de7e73 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x56e0e0d5 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x56e16316 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56e700fa bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f5f7ca rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x56ed6ea9 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5706718d nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x572a477d fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x572e9672 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x572ee4ac devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x574138dd device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5743c930 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x571fe4aa skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x57226c99 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x572c8a77 handle_fasteoi_ack_irq EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x576a3eb4 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x5752eed8 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x575af9b3 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x5769ae98 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x576cb1e6 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x5770ea44 clk_regmap_gate_ro_ops 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 0x5782b195 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x577da4a8 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x577e2a8b acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x57847569 of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579b7694 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x57947b61 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x5794e08f phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x579cff7d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x579df9b9 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a525d3 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x57b37dc0 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x57b88b82 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x57bf93f5 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x57ce69d5 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x57d2b441 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x57b13478 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57dfe130 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x57ea2a62 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x57eaf0ab memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x57ef0b9a crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x57de5f89 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x57e1a40b crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x57e48f7b of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x57e5b57f fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x57ecbfb6 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x57f34a3d rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fa37a4 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5826728f usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x57fa6326 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x5809a5c1 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x580a032f xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x580b7c29 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x582215ea crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0x582debc0 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58559e6f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x5864a0b3 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x5833a5cd power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x584c2911 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5864d3de __class_register +EXPORT_SYMBOL_GPL vmlinux 0x58677765 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x586d983b mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58a78e97 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x58aa8cb9 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x58adcee9 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0x58d7fc9f vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x58daf07c devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x58ad2f78 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x58b02a6f ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x58b2d2aa of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x58c05ad5 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x58c2f779 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58df1e48 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e2de0c __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x58e9a079 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x58f78fc7 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x58fa50c0 __traceiter_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x58fd31b3 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x5900e9af devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x59055ce8 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x5913cbbb regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x592744fa ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x592f545b rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5933667a fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x5933cd09 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x594b0bb6 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x594d328a devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0x59526602 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x58fdaf58 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x590fc3f7 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x591b55e7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x59322d4f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x593c145f netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x594efa1b firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595f132f fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x59632aee pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x59644d32 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x596a838d regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x596bacf9 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598f4fa5 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x599b812e device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x59a12425 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x59a14989 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x598bb089 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x599a8661 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x599b816b iommu_get_domain_for_dev_pasid 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 0x59b5f0ee device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x59bb167d __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59d4e52b pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x59dc1664 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x59df0d65 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x59e06655 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x59e474f7 subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59ea98fd usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str -EXPORT_SYMBOL_GPL vmlinux 0x59f02f50 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x59fd67cd __class_register -EXPORT_SYMBOL_GPL vmlinux 0x5a05dcf7 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x5a0a9c9a pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x5a0c5285 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x5a0d155c mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x59fa79f5 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x59fc780d ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5a004ffb dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a16d2b3 vp_legacy_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a2101b3 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a34615e ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x5a3ab959 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5a464b43 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5378e8 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a4f62ba blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6d16e1 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5a6de829 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5a6e4bf4 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5a72d6be ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8780d5 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x5a8b02ae platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x5a804b64 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x5a8f5645 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5a9452b0 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x5a9882c5 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5aa2e806 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab3a400 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x5acceee8 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x5acd671c __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5ad6f8f9 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x5aefe96b sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x5af85a66 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5b0c5826 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x5b1c4972 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x5b1e9b4e __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x5ab58a04 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x5ab98533 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x5accc668 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5ad47721 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x5afb004d timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x5aff602f xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x5b10306f crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x5b1aee96 sprd_pinctrl_core_probe EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2967a2 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x5b31853c uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x5b44d036 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x5b4546fa iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x5b4cc7e4 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5b5f5cb1 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x5b635064 meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b8e4c84 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x5b9f03c1 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x5ba53a3e driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ba550f4 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x5b8cd7fd device_unregister EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bafce74 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x5bc5fd36 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcb73a2 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5bce4c7f of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x5bcffc48 finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd4499a acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x5bd72585 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be78883 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5bea536a dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5bfb73ae aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5bff92a1 device_move -EXPORT_SYMBOL_GPL vmlinux 0x5c0238fe of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5bf4a570 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x5bf506c3 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x5c044ee3 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5c04bf70 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str -EXPORT_SYMBOL_GPL vmlinux 0x5c07ceff devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x5c0d5774 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x5c0a72c1 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c24aa11 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x5c2ccabf ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x5c0fd290 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x5c191d95 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x5c28de3b dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x5c3939be fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c47aefa of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x5c532a7f kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5c550d34 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5c5881d0 of_pse_control_get EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c722534 wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x5c7c6481 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c5e73c4 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x5c659783 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x5c6feb5f dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x5c7abd20 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c85530d sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5c8c2ae5 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x5c8ff7d1 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x5c9d9b6b seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cacb646 ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb0440f rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5cb45150 mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x5cba4619 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x5cbafd35 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x5cc57fd2 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x5cc6d9cb cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5ccb6d75 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x5cdfd8a4 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x5cd1673f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x5ce135be raw_abort EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf8ce08 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x5d0f590b pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5d0ee575 irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d195594 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x5d1995c7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x5d1ed849 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2c2797 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x5d2c3619 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x5d3979a6 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x5d615cda crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5d654a3a ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5d363a62 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x5d42cbde pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5d531941 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x5d5f86f7 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8eb301 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5d861620 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d9e10f4 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x5da05648 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dba346f unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5dbc3a92 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x5db8fada usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x5dbd4389 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x5dbe6dda sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x5dc39d07 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x5dcac383 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x5dc5f0d9 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x5dc67cc6 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x5dc742c9 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5dd1fe92 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x5de06d63 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5de254bf ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5de27374 vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5de5f275 ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5e00f9a6 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x5e1527c2 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5defa27a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5df5e5a8 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1e5e25 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x5e282008 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x5e2a4ba2 PageHeadHuge -EXPORT_SYMBOL_GPL vmlinux 0x5e2d4981 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5e1c595b __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x5e236529 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x5e3a1516 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x5e510dc8 devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e6d5160 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x5e75a9d1 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5e627fa3 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x5e65413e irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x5e69ad4d phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x5e753fd6 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e79f4f6 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x5e7e59d1 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x5e82ffda percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x5e851ca2 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8a1d1d dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x5ea86dd7 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb150ab bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5eb593b0 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ec77f0d set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x5ec86e3a fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x5ec88563 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x5ec96f48 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x5ecc1d60 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ed14f0e device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5ed4b22f usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x5ee07d2e acpi_get_and_request_gpiod EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee7ce18 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x5ef379ed bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5f1b5eae alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x5f1f9628 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x5f227fa5 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x5efe9106 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5f0b6b7e serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x5f0dae8a devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f478fac pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x5f54f693 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x5f562546 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x5f5a38a7 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x5f5ab22f clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x5f604817 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x5f24dfd9 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x5f2e253c devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x5f364d6c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x5f3da2b9 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x5f4b72af l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5f523a73 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5f545d09 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f637467 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f6f6762 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x5f733568 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5f875f70 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x5f886b77 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f91730e espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb42ad6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5fadf9b4 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x5faf677d kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x5fb8024e devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fc0ee9e d_same_name -EXPORT_SYMBOL_GPL vmlinux 0x5fc5c102 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x5fcce390 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x5fd4e6b4 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x5fb9a65c fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x5fbf3c77 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x5fd526ba rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe9e823 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5ffb5d0b fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5fe1fe32 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x5fec92de ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5fed3b80 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x5ff88ba1 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5ff8ce99 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x600273d4 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600c55e1 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6016e4b6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x600e589e ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x601ff926 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x60316a9c platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x603d9b00 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x603f65dd crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604cb8e0 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x605128c8 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x605fdca8 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x606aee6c amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x607100e1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x606c3ebb phy_get EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6085e90e i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x608cf627 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x607f1a85 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x60806d84 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60961cb5 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x60985e4b da9052_free_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 0x60c2d1d2 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x60cc912d inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60e70534 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60ef8619 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60feb534 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x610f5dc2 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x6112a600 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x611da3bd perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x611fc416 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x6127ed9c devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x613e81a1 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x612d1f44 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6136ed66 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6152e88c __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x61676cb3 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x616f47ff __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x617c4460 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x614bde8b mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x61547744 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x615bc20d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x616beb9f unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x61801098 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6180ff9a power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6194121a sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x61972587 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x6183b706 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x61904ddf fsl_mc_bus_dpcon_type 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 0x619e8189 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x619ec049 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x61a2907b gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x61aeae40 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x61aee190 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x61bcfd76 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x61a91295 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x61b6b205 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x61b72535 devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61bd502a kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c61f3d dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0x61c65257 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x61cf112a i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x61d0dff1 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x61d1529a tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x61d22599 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x61d3fbcd n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x61db7cda gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x61c96178 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x61d2afb0 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x61d325cd inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x61e11178 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x61e70bdf ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x61ee0a94 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x6211523f gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x621491c7 meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x622bf3b7 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x621e9e68 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6236cf76 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x6238f433 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x623ae0a9 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x62402093 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624821e2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x6247ba97 fsl_mc_bus_dpseci_type EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x62517eec pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6251943b dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x626ad182 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x6276446c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x628ced85 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x62aa5ff2 mtk_mux_gate_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x62afe278 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x62b5cbfb nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x62602735 component_add +EXPORT_SYMBOL_GPL vmlinux 0x6267aa31 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x627e2b9e virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x6291bdbe i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x629f162b pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x62a6c2ba tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c07cb4 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x62c65e83 vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x62daf523 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x62d09d44 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x62d4050c dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x62d85664 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x62fda8d0 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x63004293 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x630bee81 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x631698f0 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63220e83 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x63309d62 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x6334f6bd dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x633ead88 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x6342bcd2 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x63369090 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x636ab182 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x6386c0ac rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x638a0bfc dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x638a21b9 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x634fd82b netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x6354dd69 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x635e7ed8 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x63603530 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x6367a295 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63a35242 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x63a396c3 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x63aa4a0d thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x63b2adae ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x63971a55 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x639a447b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x63a41757 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x63ac725a __devm_regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cc3ea1 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x63d221f7 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x63d27957 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x63e39c4d trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f10c24 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x63f87369 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x63f993f4 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x64005703 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x6414c31c extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x641c7e89 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x641e7cd7 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x641fa510 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x63f4bf3a subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x640f3008 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x6426f7cb usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x642fa45b regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x643a5415 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x6432dd6d pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x64584b24 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x643e5d17 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x643fca91 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x64442126 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x6453f6c3 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x6457b431 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6467f800 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x646d6e4a wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6479d1d3 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x648c3a10 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x64767f53 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x647bcabc power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x6486b9ec acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x6499911c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x649a5ffb gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6496c6e9 devres_add EXPORT_SYMBOL_GPL vmlinux 0x64a1a5ce phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64dc5a0c mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x64a5096d clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x64b303a8 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x64d0279a device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64eaaef9 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x64edfd16 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x64f00843 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x64e2d403 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x64e660fa pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x64e8e8e4 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x64ec62f4 irq_gc_noop EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f562b2 component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x6502a69c crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x64fb80f4 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x650104b7 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x650198dd iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650c1513 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x6519c922 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x651413a7 led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x652d4323 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x652e93f6 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65413958 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6537925c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x654147af usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x654e18b5 kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x6565251c pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x65664082 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x65671de8 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x6568cef6 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6571bbf7 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x6587f2d0 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x656b2860 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x6574f50a task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x65916bb5 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6592ff21 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x65a6b86a mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x65a88a3b of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x65a8ac35 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x65aaa138 acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b195ff devm_regmap_init_vexpress_config EXPORT_SYMBOL_GPL vmlinux 0x65c66b8f unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65dac163 __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x65df752c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x65d3b46d gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x65d8a9fa cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65fe6669 dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x66157ac5 simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0x66158cdc dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x6615814a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x661596f6 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662996cb kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x6620aa80 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x662b9c40 _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663a0f49 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6647aa64 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x664116e7 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x66477071 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x66488142 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x6648db98 __SCK__tp_func_rwmmio_post_read -EXPORT_SYMBOL_GPL vmlinux 0x664ea501 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x664aae8f serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x66514f32 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x6655dd2c exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x665ef6cd pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x66641df2 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x666ff6dc do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x66798f5e ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x667bbdc4 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x667f33d3 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x66804236 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x665fcda4 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x667bae0d sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x667d2b5e regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x6682e51a skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668abc03 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x66990840 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x669b3b9a crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x66a198ec perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x66a773ad fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x6688cde0 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x6689f23f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x669b4897 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x669f4c44 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x66a7523e devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x66a8dab4 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x66ab0fca dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bf3ca6 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x66c16c38 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x66cb162d k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x66d0f606 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x66d15c1c rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66dbbb4c spi_async -EXPORT_SYMBOL_GPL vmlinux 0x66e731fc devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL vmlinux 0x66eb3b3f metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x66fe397b pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x67001c17 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x66eb3207 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0x6700e1e1 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x6713200a cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x67195ff1 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x672517b0 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x67398100 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67114859 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6713f277 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67640194 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x6764ddd8 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6766f206 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x67510e74 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6755bca3 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x6759f7cd ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x676fc58a sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x6770c37e debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x676d3fa3 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0x67861f71 mtk_clk_register_muxes -EXPORT_SYMBOL_GPL vmlinux 0x6788e832 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x678c9eea devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x67912480 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x6793c020 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x6783ec95 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x67902dc8 fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x6798b015 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x67a77742 kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67ca4cee devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x67da2a8b virtio_require_restricted_mem_acc EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e53aa6 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x67e8e435 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x67fce310 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x6802e38b dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x6804ee2e regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x680f7510 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x68183d63 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x67dcae87 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x67e9b27a devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x67ea32fc irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x682df92f register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683da9b9 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x6830b70c of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x68405960 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x68422db2 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x68494338 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x684a68e2 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x684ea889 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x68514486 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x6861ec54 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x686d7b66 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x6887bbae fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x6888b9ed xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x688d95a2 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x685c5849 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x685c6d03 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x68711846 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6878e321 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x687d166c bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x687f97fb iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x6887d3c6 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x688c512f ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x68923fc0 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68985efd devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x68a5e509 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x68a881de dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x68bde11e __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x69067c32 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x68956101 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x689ef5ba xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x68a37415 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x68ba9637 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x68d2917e handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x68ed9409 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x68f46a34 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x68f948fa mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x68fdb7e8 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6905825d da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x690d9c8c of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691dc0eb wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x692671be xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x69282837 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x6933707e irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x693707db usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x693f9929 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6950237e tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x695ef30a clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x69137c55 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x691fb18a thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x6939ced1 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x695511f9 genphy_c45_aneg_done 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 0x6971ee90 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x6975840a xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69820133 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6985cd9c proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x698888c0 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x6992e706 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x69932e37 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x69b3b6d2 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x69bd17ae pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x69c27e5d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x698f9638 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x699f6cb4 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x69abd820 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e2d356 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x69dde51e fsl_mc_bus_dpsw_type EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e755a8 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69eff4c9 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x69fe1e33 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x69f291c6 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x69fae5a4 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0784fb hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x6a0ef012 tegra_mc_get_emem_device_count EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a439034 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4ca398 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x6a4e4b4c dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5523ab clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x6a57b5b7 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6a6dd607 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x6a766fb1 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6a78f83c transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x6a79d955 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a64af44 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x6a6e0d34 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a708c92 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x6a76f82b ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6a795aed cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6a802b92 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8b54d1 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6a847c62 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6a9084e8 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a956eee rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6a958488 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6a9a8061 of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x6aa21cd0 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6aa176dc gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aaa5974 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x6aa8876f fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab8b3e5 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x6ab9768e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x6abec972 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x6ac3869f pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x6add779f rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x6ae50e32 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x6af984f0 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6afcd2bc crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x6ab299d7 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6abb252a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ac1e8d8 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6ac85f4f devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x6ad0c083 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x6adbbf2c debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6adf0ca1 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x6aeba1f8 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x6b034557 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b1161f6 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6b1b995c mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x6b2a4982 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b30164c dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x6b34d501 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem 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 0x6b6b9047 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b4ab4c2 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6b4eb785 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6b508da7 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x6b550d77 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6b5951a5 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x6b5cb84f __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x6b6c3226 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6b6c9fe4 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x6b7067e1 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x6b722180 log_read_mmio -EXPORT_SYMBOL_GPL vmlinux 0x6b72a26d blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x6b77c993 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b750a1c pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7f576a crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x6b81011f kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b88f414 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x6b9dd007 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x6ba329ec pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x6ba339a0 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x6b8d3547 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x6b988ee7 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba691f2 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x6bb278c4 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x6bb5ff5b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x6ba52fc0 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x6ba8aea0 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6bab6323 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x6bb4a420 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x6bbca649 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x6bcbf363 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x6bc9548d badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x6bcd561f of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd051cb rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdddcee rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be659e5 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x6be3f787 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6bee39b6 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x6befda19 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x6bf1a17a irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x6bf5c8c9 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x6bfb1833 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x6c0005ed kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6c01f0d7 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x6c175a94 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c337a62 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x6c37f157 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3a3aa5 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x6c3d6ce6 i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4ac0cf key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x6c4210ae spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x6c4365bb mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c526732 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x6c4b7c0f __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c6148d0 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6c5f5a7f blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6c705b fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x6c81bf38 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x6c87bc6d __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6c681731 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x6c79c06f hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x6c7d1587 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c8b0cbc ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c98d02a skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6ca043ca dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cad842b platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6cb0098c irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cb290c8 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x6cbe2f92 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x6cd3d914 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x6cbe0b78 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x6cdc7a1e ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x6cdf1db4 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6cef5236 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x6cf4693a tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x6cfe3fa0 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x6ce91115 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6cfc37d5 phy_exit EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d0880a1 blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d09b4cc __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0b84d1 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x6d15358d power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x6d16b294 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x6d1a470a generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d20a0b5 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x6d21913e ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x6d25433b __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6d192687 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6d1bb66d sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x6d1ded0b ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x6d1fe6ec tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6d21b7c9 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x6d25408e crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d32ed57 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x6d366af6 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6d33ffc1 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6d345c79 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6d41c5ea perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x6d440903 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4e44af vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6d46fabd of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x6d4d0a88 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6d5a867e led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x6d602f32 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6d634eb3 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x6d66f79d inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d68f677 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6d6d5f70 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7abfcb blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d89764e of_pci_get_slot_power_limit -EXPORT_SYMBOL_GPL vmlinux 0x6d9cb51b ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x6dadef61 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x6d8c0e83 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x6d90e812 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x6d975517 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d97ae74 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6da3764b iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x6db1732c inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dca8660 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x6dd3a7a9 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x6dbbeed6 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dc8b630 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x6dca6d1c irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de002b5 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x6de66ad5 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x6de942f0 kvm_vcpu_halt -EXPORT_SYMBOL_GPL vmlinux 0x6debfe6b dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x6e085162 of_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e109f8b phylink_create -EXPORT_SYMBOL_GPL vmlinux 0x6e14c5be __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x6e152aeb devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x6e2ed83a __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x6e0a9e7d devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6e1876d1 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6e1e352e fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x6e342979 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e4b36c5 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x6e4b65b2 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x6e51a7ac md_start +EXPORT_SYMBOL_GPL vmlinux 0x6e54e24c device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e76c87f spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e83b0b7 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x6e7f39dd ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6e7f9755 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6e864093 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6e876692 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8d4324 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6ea52bde splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x6e930d19 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ea6ba38 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6ea8b9bb sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6ebd7828 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x6eb18d17 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ebfe184 kvm_destroy_vcpus -EXPORT_SYMBOL_GPL vmlinux 0x6ecc57c4 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x6ece90cd tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x6ed57cf0 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6eeda2d9 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x6ef616f0 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x6ed0104c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6ed7a8c3 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x6ee3805f regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x6eebec30 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x6eee8908 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x6ef157e0 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef7e75e sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x6efe3eac regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6efead73 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f134950 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x6f16e59e encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x6f1daf05 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f22470f dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0x6f42387a trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x6f57b6d2 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f655ec2 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6f21daa8 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x6f311dd6 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6f4e085f fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6f51b6f3 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x6f559766 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x6f63e59f tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f77851a sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6f7bcab5 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x6f74527a dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x6f7ab7ac i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f81b536 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x6f8b3c27 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x6f929571 blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa05407 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x6fa18b49 k3_ringacc_dmarings_init EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fc53331 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6fcb8ccb sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x6faa14e9 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x6fbefecb kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x6fbf01fa __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fcefd7c clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x6fd16275 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x6fd86fe5 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6fec06e9 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x6fee4ace usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff81425 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6ff9f43e dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7001b8cf swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7001ed0c tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7011e8da __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x70142b06 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x701d0ab6 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x702ba2ce do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x7039273a wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x703d241d sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x70149c18 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x70159b25 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x7015d0c6 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7018a0bf ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x701c7dba gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x70301595 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x703c4546 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x704bd885 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x704cb2a0 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x70650430 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707fe8dc pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x708fa4c7 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7096680c devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x7098e936 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x709f1a8b proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x70a1aa31 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x70a9701a regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x70adac92 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x70b04500 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x70c1aa09 user_read +EXPORT_SYMBOL_GPL vmlinux 0x709112aa devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70b84cc4 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c36cee perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c5bf05 iov_iter_get_pages_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70c820e6 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70ddac7e gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x70e28557 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x70ee3cac sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x70f64797 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x70f9e129 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x71014464 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7102e39d stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710d8262 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x7111b4da __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7113aeb2 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x711d7bce clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7120c3f8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71169f35 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x711fe590 device_register EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712b683d devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x714ada71 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x71398a13 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x7139d609 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x713cfdb8 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x714d6df2 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0x715c7824 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x715aa15e pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716313c7 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x7168e1ee nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7165da18 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x71687bc9 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x716e8543 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x717528dc sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x717db71b skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x717e3bf8 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719462f1 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x719821fb is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a77744 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71aa67f1 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x71ab6142 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x71ab9386 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c45563 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x71e1a2c6 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x71e55e13 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x71e99a8d acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x71ee050c dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0x71f1be0b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x71fd3a1f mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0x7209370e ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x7215c636 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x71eb4bb1 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x71fdb1cb rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x720acb69 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x721bdca7 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x7220f859 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x72319cef gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x72454906 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x72633e65 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7242c06b fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x724710f7 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x724d7a2d meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x72540a5c i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726a3dc8 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x7270e889 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x7272f594 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7281c462 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x727f738c cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x728b5b01 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x72941411 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x72a09eea ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x72a19a56 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x72950ed3 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x7296e188 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x729a2649 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x72a5c913 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x72acb102 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72c088ea udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x72c3bfd0 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x72d07d89 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x72b23370 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x72c9d8de crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x72cc1c51 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72da2431 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x72e584d6 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x72eb7a20 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72f6fe8b dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x72fcb381 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x730a8f5c pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x7315f18b ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x7322b64e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x730a09c9 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x730d1dc7 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7334a8f3 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x73456992 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x73379f1d __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7340ffc1 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x734474c9 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x7354ff28 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x73585365 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x7367014c clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x73697c3e i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x73804785 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x7353dcbc devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x73620882 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x736468c2 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x7375d2f9 wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x738de763 imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0x73917445 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x73a3ce5c md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x73a46352 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x73813fdc blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x738a2dd8 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a48ee9 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x73ad4fb9 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x73ad5191 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x73bd018f dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x73c23208 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c601fc switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x73c5ba05 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73decd33 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x73d9af9e blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x73e3305f tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x73e79b76 replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0x741c5b68 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x741f4d4f skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x742378fc devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x73fddd10 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7403de83 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x740e0da1 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x741bedc8 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x741e8744 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x74249aaf regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7428d3b9 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x74385a0d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7435c508 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7469d76a acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x747361b7 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7447a1ea pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x744e87b6 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x744eb5c5 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x7451c711 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x7454b297 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x745914b3 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x745ad1b8 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x745bfdc1 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x745edfa3 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x746280ff devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7469894f crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x747aab32 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x747dee31 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x747e51c3 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7488860b synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x748f82bb soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7491647a thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74aa5409 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x74aaea80 fsl_mc_bus_dpni_type EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c5ec25 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74d93675 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x74d9b889 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x74e34329 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74e7525a raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x74f44afc of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x74f58919 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x75016f75 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x750faeab fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x75112731 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752975d6 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7525cbd9 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x75297548 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x752f9ae5 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x7533cd58 dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof -EXPORT_SYMBOL_GPL vmlinux 0x754208e4 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x754c930a devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x7551d271 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x7575606a usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x7579c0dc locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7547b44c xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x75552999 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x756a9798 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x756f7cda to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num -EXPORT_SYMBOL_GPL vmlinux 0x758e7161 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759a2b1d mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759cfaf8 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x75baa3b5 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x75bb2943 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x75db526a switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x759e58b8 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x759f7133 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x75aba04c devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x75b1ee65 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x75b2db57 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x75bbbdc5 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x75c1f69f mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x75ccb80a edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75dd58f1 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x75e18ea5 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f32a09 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x75f2157e sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x75f69d9b ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x75f8cc2f scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75fb976e debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x76181554 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x761dadc9 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x761eaf86 of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x76383c1d amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x76444f01 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x764db041 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x760a81eb edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x760f6756 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x761516f0 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x762403fa ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x762aedef ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x762f4563 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x76400811 tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x765b4b6a proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x765d7854 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x765f8388 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7661f0f1 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7670e738 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x767e5aa8 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x767f199a of_regulator_match EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7685da82 power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a2dd2f addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x76a61e85 __SCK__tp_func_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x76abc848 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x76b10966 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x76b3099d blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x76b70808 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x76b51ef5 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x76b9ce5b regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x76c4c842 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 -EXPORT_SYMBOL_GPL vmlinux 0x76d56586 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x76d4842e ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e088e7 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eb4dad __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f5ed03 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x76ef42a6 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x76fdcdd3 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7710c5ed udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771cf0e9 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x771a3189 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772decd9 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x77311e46 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77312fb2 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x7748f5a6 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x774f1f12 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77633ffe shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x776d1275 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x7775607b __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x7777e1bd device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x7788728f adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x778ab384 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x775b608d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x775fb1c6 md_start +EXPORT_SYMBOL_GPL vmlinux 0x77635289 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x776bb500 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x776f8a56 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7789cd2e kthread_park EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x7794c76d i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 -EXPORT_SYMBOL_GPL vmlinux 0x779816b2 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x7799db2f pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x77a8a734 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77a97670 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x77ad5b03 iort_get_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b6c35a fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x77c63729 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x77ca89b6 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x77ca9f0f skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x77cec69c dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x77b63bf4 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x77c85e84 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x77c9faa3 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x77d7e5ab scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e778cc sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f09856 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77f89c7f usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x77f923d6 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x7822a593 kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7838239d devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0x78449a2a synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x77f40f59 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x77f6380f mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x780b4379 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x78133207 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x7815273b irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x78190f35 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x7820d6f1 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x78234273 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x782d7534 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x78406733 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x784b7f17 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x784d8664 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7850807f generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786cbc6f arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0x7875ee3c gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x78774d22 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x785bd7cd ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x785e4d20 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x786417ec mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x78692898 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x786dcad0 kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7881d59a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7880957f __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x7891b228 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x78934ec4 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x789b3f2e efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7891301f vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78adc0f2 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x78b1e6cc fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x78c912b8 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x78d152dd serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x78dc7d3d debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x78c2b04f inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x78d4e8e7 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x78d6f67e led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78dfd470 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x78e11f0d of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x78ee0f95 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x78f91bb2 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x79083e4e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x78fa6c94 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7900e73b acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7904d1d5 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x790562f4 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79257161 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x791b9152 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x7931ab10 iomap_file_buffered_write_punch_delalloc 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 0x79406e17 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7941cb56 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x7948d5d0 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794f2f27 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0x7952f854 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x795da872 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x794ede5e dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x795579d2 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x7957b99d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x796589de powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x7979bbb5 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x797c87f7 of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x799f8c8f fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x79a231d9 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79a2d8df icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x79b6da88 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x79a7c7ba genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x79b6d65f devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x79bb4613 tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c70830 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x79c78c4b start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x79d034eb extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x79d3858c gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x79d4a1a7 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x79ce1e03 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x79d6a1e1 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e8db37 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova -EXPORT_SYMBOL_GPL vmlinux 0x79f1d6a5 class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a1dc56c kick_process -EXPORT_SYMBOL_GPL vmlinux 0x7a20528b pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x7a2556f4 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x7a31f3ca ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x7a3d5dbf strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x7a0b1cde dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7a1fc346 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7a2391cb crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7a2c635f syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7a31ad17 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7a3485fa screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a64ceac phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7a3fb578 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x7a3ff285 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7a4da7b1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7a5ef6ac simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7a6d0f4d fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a79b4a6 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7a786ed2 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x7a792979 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a858710 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x7a8a55c7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x7a897e58 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x7a984806 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7a98bc45 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aabebed ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ab2c0d5 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7aa4231a of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x7aa4bab8 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x7aaac51d pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7aaae3dc adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x7aab63aa usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ab60ade blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac5a427 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7ac21870 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x7ac4170d i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acbc2dd thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7ad364ba devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x7ada4dd5 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7adb0648 host1x_context_device_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7ae4534e crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x7ae4aed4 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7ae9d4bd i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x7aeb2d74 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x7af145a8 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad815b6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ae900eb input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x7ae982e4 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7af65ff6 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b04523b gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x7b136681 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x7b17e555 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x7b211902 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x7b24da75 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7b293880 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x7b315ed5 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x7b318305 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x7b38489f gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x7b489b2d smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7b4a9fff of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x7b4c0d8a __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7b0023ef kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x7b135dbe mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x7b3b1500 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7b469521 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x7b522f44 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b654bd9 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b6fbccb mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0x7b70691e genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x7b8140d7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7b74e1f0 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7b82e6db bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8cb0a7 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b91558c debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x7b94b79c device_rename EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9e3573 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7ba4792f icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb259e8 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x7bc65f46 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x7bd15b39 nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0x7be05c3a devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x7be7c216 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bea3d51 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7bec70b2 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7bf4ebbd gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x7bff1132 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0x7c1dc142 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x7c204167 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x7c20f2d7 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x7bbc573b device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x7be50ee2 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x7bf1b970 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x7bfb244e fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7bfb5b29 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x7c13ca27 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c280041 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2b9bff __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c5db379 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7c4e9c6b power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7c5cc5bb set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c8c1dc9 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7c67905f rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7c86da5f inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x7c89c49f mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7c8af8fb __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c909560 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7c979ab5 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a1bf3 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9f67d2 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x7ca0d014 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7c9d31e8 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7caad66b ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb4feb4 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc0555d wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x7ccb6f49 dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7cd987cf screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7cd8cbb1 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7cda22b4 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x7ce63d9e tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cfc7fab edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x7cf5d86d virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d02b412 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7d199a61 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7d01257b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7d086f3a stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7d08f18c ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x7d0cd3e9 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1ee54a sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x7d375a57 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x7d38e157 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x7d2263ea tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7d36eefc usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d371b35 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7d43d2ae fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d4c80eb i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x7d4eed71 k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x7d4f70b1 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x7d5093c6 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d48c2f0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d53242c fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d666648 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x7d6722a2 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x7d69d7a6 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x7d6b7ad8 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x7d7481f4 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x7d7820df account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x7daca4dd clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x7db1bac8 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x7dba25e5 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x7dc2739f fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x7dcf865e add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7d647ffe ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x7d72d2ee mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x7da23a61 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x7da30d8d phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7daff37b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7dc9e7a6 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x7dd7fa24 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddc7da4 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de41087 class_dev_iter_exit 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 0x7de7b3b6 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7df2e922 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x7dfbe813 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x7dfbf99b usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7e21fc2f mmput -EXPORT_SYMBOL_GPL vmlinux 0x7e2d3d19 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x7e34b626 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7e25f98d unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7e39c697 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e3db7e1 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x7e4b3f04 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x7e5302cd usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7e3f1806 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7e4ade7c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x7e5b3404 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6a9118 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7b2749 __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e7fe855 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8f01cb wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e99519f pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x7ea39a61 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7e9a6311 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x7ea05180 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7ea0e705 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7ea0fed9 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eb0284b xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb1a0a4 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec99548 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x7ee9c6ee fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x7eea6796 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7ec18cca ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7ec6d35e mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x7ee7c211 debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x7f18663b ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x7f1d146b md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7f261138 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x7f2c19a6 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x7f2fa451 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x7f32123f linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x7f3b3ed6 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x7f3e15bb meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7f4b6414 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x7f6c8319 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7f013717 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7f0c66d8 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7f1e7543 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x7f27a12a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7f679528 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f7a6ebe dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f6ff6d7 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f821731 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f9464d8 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x7f98cb10 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x7f9a505e mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7f9fe531 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fb1fdd7 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x7fc09c2d max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x7fcb61bc debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x7fe16afa ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x7fe2b94b dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x7fe71d92 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7feac8d4 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7fb0eb6b dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fbf38ad syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7ff02636 device_del EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ff6e0ef fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8012bf3f get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x801e55ec __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x8022b968 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x80291c95 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x802c2251 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x80231f98 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x80258ea5 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x80303272 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x805cd689 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0x805fedec inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x806f0f3f crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x807127c8 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x80743f0c devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x803e49b4 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x805590ba dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x805c9226 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x8070c436 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8077e258 imx_check_clk_hws EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80803307 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8091d128 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x809324a6 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x80946d30 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x80955353 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x809cef46 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x8091a7b1 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x80951955 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80a18b7d badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x80a34b0d of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x80a603a5 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x80a93aeb bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x80b7563e __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c43453 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x80c4c041 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c92c72 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x80cf4db9 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80de77ec kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x80ead686 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x80eae7d9 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x80d68bcb crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x80d97f20 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x80dd539d acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0x80f7b0e6 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x80f8601f __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x81019db6 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x810d0f27 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x810d116a sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x80fb59ac virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x811b2662 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811decd2 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x81354162 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x811e1843 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x81378f51 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x813b2d90 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x814f5b66 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x815376ae cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815a429f gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x815bd648 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x815e72d6 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816171ee meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817a1763 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81888b58 irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0x81899bd1 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x818314f9 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0x819897cb blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a41499 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x81a52edc dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81a87319 tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81aae404 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x81c6916b call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x81c8ea64 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x81ca1c45 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x81cd94d9 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x81c6ff44 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81f02198 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x81ea85a2 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x81f25b2b devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82031ded of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x8203d853 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820c8fb4 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x8210b2a4 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x8219f4d2 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8224a91b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8228d20f da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x823db1a0 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8252ff4c mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x8245ce97 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x8246a6c8 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL vmlinux 0x825eca65 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x826c0781 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x827c698b scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x827cb270 iov_iter_is_aligned EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x82827eb2 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x8286a2c3 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x828abe9e nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x827eea34 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x82823125 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x82865dc5 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x8295e9c9 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x829e9309 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x82901f2f fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x82a31555 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82a9249e extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x82b09606 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x82b286f0 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x82bbe028 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c0c73c tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x82c5851e __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x82d5a616 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x82cdea30 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x82d4a053 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e11176 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x82ebbe79 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x82f4bfdf __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x82ffc280 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x831485e8 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x8327f4f1 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x832d956d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x82db14bf tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x82f1b86f dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x832fceab blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x834026cf irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x833b7143 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x833db027 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x83442899 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8367a1c9 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x836c74bc component_del EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8377b16f usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x83934a82 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x8394715c gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x83965960 mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x83bc393d blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x83bd0569 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x83c26599 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x83c7f688 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83d03f73 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x83d8fc1c fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x83ee239f iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x83efae39 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x83fb20f5 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x83fdb416 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x8400eeb1 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x840aece1 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x837c43b7 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x8389ee0a filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x8390fb41 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x83a1349d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x83a6ccd3 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x83aa6f9a devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x83bfa0bd cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x83df8b69 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x83e89d2d add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x83eec5c1 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x83ffc9c6 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x840b19e8 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8418b668 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x84230567 extcon_find_edev_by_node 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 0x842d106a tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x842c7323 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84391ef6 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x843a2aa1 gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x843fe1de fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x8444f56c dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845e6352 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x8461bc15 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x84514776 pci_p2pdma_enable_show EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84645e7a fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x84750510 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x8481e3b5 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x848adb76 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x84a4b348 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x8470f597 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x84818607 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x848b16fe devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x848d126c spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8490a71c hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x84929a31 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x84a054a2 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x84a486f2 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84adfa3c dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x84ae7d04 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x84d64293 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x84dc473d nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x84e3b895 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x84ad7333 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x84c7a34e serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x84d66c77 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x84eaa549 unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f297de usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x8501acd0 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8510544b regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x854f4981 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x8551cf0b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x85209326 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x853048cf iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x853f422a __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557b88d netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x8567adea edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x85772b00 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x857a9342 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x85800c71 pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x85942c25 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x859b1ff6 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL vmlinux 0x85a04b21 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x85ab3674 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x85bb9c2c virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0x85bcafa9 rockchip_register_softrst_lut -EXPORT_SYMBOL_GPL vmlinux 0x85dfb8f9 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x85e08fa4 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x85ebda87 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x85afee6d gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x85ced313 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x85d2d17c bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x85dd5068 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x85e2a3f2 mpc8xxx_spi_tx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85fff5bd kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x86110f13 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x85f13e2a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8601d874 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x8608fbce sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x8611f5d1 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861fa4be devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86276e8d icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x86299dc5 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8631ddd9 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x86321c7e skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x86358751 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x863abe60 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x863ca553 devm_of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x864187f2 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x864f9f9b of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x86563628 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8642de99 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x8657a37e pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8668d0b2 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x866d5083 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8673eb55 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8685c127 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869c249b rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x869f2b42 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x86abbc68 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x86abdf6f iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x86ad9e19 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x868aaf37 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x868f8443 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86b2a73d shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c34f46 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86da6349 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x86dd7280 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x86de8dff ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x86df4715 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x86d385fb spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x86d915e1 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x86e48cb1 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x86e56e19 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x86f0480b memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f85548 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x8703ee73 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x87060517 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x86fcdff5 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x870405e4 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x870cf5a3 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871a5daa devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x872388b7 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x870fddc8 nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x874f79e5 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x877fa0a4 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x87862337 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x87275cb8 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x8732c686 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x8737e9bd fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x873d8910 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x87562a72 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8764720f led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x876d4f40 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x878a3b97 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x878b1535 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x879e35eb devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x8790f518 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x8792c346 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x87bc0d6e ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x87c3777b devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x87c7963c acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x87d13e39 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x87d9935b component_add -EXPORT_SYMBOL_GPL vmlinux 0x8820df54 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x88338bd7 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8834cb78 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x883b2e45 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x883b8845 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x8840bf0d sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x87d9dae4 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x87dc726b fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x87de14fc pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x87f10e9b tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x87fb2dd0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x87fe2152 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x88094453 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x88121b37 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x8815e5fd xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x881c0015 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x882a4aac ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x883e4af5 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x883ec447 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock -EXPORT_SYMBOL_GPL vmlinux 0x88484b71 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x884d6d77 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x884f717f bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8867fce3 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x886cb828 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x8882430c virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x885b4ef9 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x888be989 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4a574 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b88e48 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x88c4287f lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x88c70ca1 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x88b93149 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x88bf8cf2 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d375e0 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x88db8153 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x88e2ac27 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x89038288 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x890699fa icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x88cf5912 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x88d8628b tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x88dd7453 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x88decd20 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x88e56b97 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x88f17c9a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x88f658cf device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x88f6eb29 md_run +EXPORT_SYMBOL_GPL vmlinux 0x890d75d9 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x891a10ce ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8913313f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x89195530 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891a6e88 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89274bb3 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x892a0fa6 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x89310508 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x8931097a ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x89340fee dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x8934d876 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x89281ba5 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x892faa27 mtk_clk_register_dividers 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 0x893dff37 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x893fdd67 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89537865 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x896a3a5a of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x89732868 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x8984c2bb dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x89875bd6 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x898a4ed0 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8992a825 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x899c7db2 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x899dc6d1 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x8955879c bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x8956d1d7 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x895d4d62 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x895eb62b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x8961f184 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x896b63be regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x896ce0c9 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x89780651 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x899ccda2 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x89a0b5f2 synth_event_trace_end 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 0x89bec8b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x89c3c2bc icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x89c1d576 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89c47416 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x89c8feab pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x89d488cb iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x89d51008 i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f102ec pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x89f29bda proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x8a058bb3 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x8a088701 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x8a0fbd85 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x8a1510be extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x8a1c3b58 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x8a33e07b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x89eb32a9 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x8a0f4bb2 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x8a213753 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8a23dbe9 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a2c30df of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x8a350171 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x8a3c2355 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4f4efe ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x8a4e02f0 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x8a4e7dcc clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8a4f3d6f __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x8a551dd2 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5cf425 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a5dd826 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x8a5eed45 devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6a7681 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8a642f24 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8a646078 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8a6740fc fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8969d9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8a884fc8 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8a8bec71 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8a94c605 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot -EXPORT_SYMBOL_GPL vmlinux 0x8a9833b7 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x8ab1a54c pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8ab87bf5 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x8aaf7688 of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abcfb7d trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x8abb3e37 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ac8beda regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8acd1073 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0x8ada9a5a net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x8adb0712 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x8add45de dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x8ade3ba7 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x8aecabbc devm_of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8af6c059 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x8affd4e0 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x8b05b081 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8ac1cbdd hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8ac2f01b devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8aced0eb devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8ad616ab da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8ad89591 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8ae0a1f9 put_device +EXPORT_SYMBOL_GPL vmlinux 0x8ae1f75a fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x8afadc6d scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x8afc66bb unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1e90f4 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x8b31a289 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8b36ba2c pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b45d258 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8b4d8373 pci_msix_can_alloc_dyn -EXPORT_SYMBOL_GPL vmlinux 0x8b4fc59a of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8b51dbe6 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x8b53e467 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x8b434ee5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8b4dd9c4 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x8b520c10 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x8b526305 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x8b532d18 stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b6705ab perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x8b7a0d05 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x8b6e0c84 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b7cc513 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x8b846060 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x8b918c02 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b969d44 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x8b9a94c0 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x8b9f570d ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x8b8a4f58 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x8b932366 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bca512f cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8bd0d843 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x8bd1bdad fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x8be3b544 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x8bbb984c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x8becba45 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x8bf46d2a regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bfc41c4 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06286a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c0c7151 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8c0e3922 kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c2e3d76 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x8c31d804 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c0f3f6d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x8c1d1b6b pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x8c242cdf cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x8c25969e __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x8c364e2d pci_doe_submit_task EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4a27b8 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8c497cee kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8c4ac4f1 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x8c5405f8 fscrypt_add_test_dummy_key -EXPORT_SYMBOL_GPL vmlinux 0x8c553611 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x8c5bcc53 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x8c620739 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x8c539392 thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x8c5c2ee2 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x8c5cf4ec edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7ba754 pci_free_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x8c82d9b2 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x8c84a68c dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8c74a798 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8c809182 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8c83a158 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off 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 0x8cacc574 vcpu_load EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cbef823 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x8cc331df nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8cd35df1 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x8cdcf805 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8cde3171 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8cd3aba4 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce75a01 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8cefd503 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x8cf16b9d irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x8d033d9a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8ce9fe34 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d12b051 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d1601c7 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x8d0ac902 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x8d1a9efc dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x8d1b1250 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d45dfdb spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x8d47675d pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8d501dc2 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x8d340d9f ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x8d3c0ae7 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x8d491041 regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d5b132c blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x8d789bd0 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x8d79d12b gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x8d7a6f50 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0x8d7b11d3 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x8d61e972 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x8d6c1735 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d8a226b mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x8d87da96 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8d9aa2a6 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x8d9f3310 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x8daa4b12 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x8dbd5249 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8dad62d7 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x8db221be phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc0f230 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd9e73e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8ddc4fa2 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dde77a1 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8ded7c8d transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8df174a1 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x8e0b09b2 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x8df0000f ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x8e088a53 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x8e0d17ac lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e1dd733 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x8e2cf1fe to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x8e365b4d xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x8e3828c1 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x8e3c6330 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x8e404807 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e1ee3fa usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x8e3a9019 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4d04fe dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e5a7e2e dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x8e620521 iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x8e64421d debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e767960 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e8696ff genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0x8e86be12 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8e8f4dfa clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e98b98d nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x8e9a9187 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x8ea55200 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x8e8718d7 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x8e8999b9 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x8e8bde52 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb5cbc3 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x8ebcee13 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x8ec7d90c __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x8ed10dc2 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x8ed3ed54 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x8eaf4ea1 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8eb0c7ef devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8eb8df4a mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x8ec12a77 cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x8ed560a9 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x8ee615bb wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8ee051cc class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8ee236fe crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x8ee4ab3d sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eedbd45 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eee3837 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x8eef9bc4 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x8ef6d02e ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x8ef7e479 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x8f03fbd9 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f0c741f scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x8f149c6f security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8f1ad2b7 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8f1bc3b4 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8f26a2de devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x8f2e9614 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8f30f804 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f385dc5 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f38af65 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f3e1d26 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x8f555c34 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x8f6ad10c devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x8f6b75b0 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x8f3fa4df dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8f56057a of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x8f561354 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f70726c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8f71ecf9 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x8f74e12f crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f82295d static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8f7e0104 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fab64c1 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x8fb6eced tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fe85faf pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8feacc81 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x8fc2b3dd wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x8fc588d9 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x8fc904a0 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffcbb53 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ffcdb66 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x9003aa66 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9009207d fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x90190279 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x9021f076 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x90090706 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x9012fe1c usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x9027ac83 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x90309c16 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9039e97c pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0x903a1dc3 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904659a6 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x906a60e3 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x9085f1cc icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x9095cfba tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x90a18277 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x903d9c4f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x90519efa of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x90536b22 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x905826b5 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9063efd5 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x907b5063 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90aa0540 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x90ad37dd i2c_acpi_new_device_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90ae5f5f __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90b3c610 put_device EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90c64f06 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90ca2a7f pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x90d26fc1 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x90cd9a56 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x90ceae8b pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x90cff804 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x90d6e305 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x90d8eb55 iort_put_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90eab493 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x90ea8278 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x91025675 usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x9116bc7b sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x9117bc2f dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x91141303 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL vmlinux 0x913dda4b fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x91376e67 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x915657b5 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9178e637 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0x918f62e1 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x913f5b1f pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x9145e4d3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x914830ac sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x914c8b57 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x914fc1be ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x915e0c07 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x9178096d usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x918589f2 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919e2165 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x91a5a283 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x91b038e9 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x91a9f5cf of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x91adb445 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bb7aef usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x91be5be7 crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91cc80e4 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x91cccc0c phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x91d2ad01 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x91d92212 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x91caab33 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ffb553 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x920394b7 of_css +EXPORT_SYMBOL_GPL vmlinux 0x92061dd7 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921f92cc init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x920eb738 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x921893e2 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x923fb940 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9247d3e1 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x9241cb0f pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x92483e49 mtk_clk_unregister_plls EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924c6900 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x9250d7f6 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0x92547924 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x925d92d6 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x925c1a39 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x925c8eff acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x92695bf4 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x927063d1 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x92755684 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x927dd385 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x927f6f51 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x9281a532 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x929a1f28 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x929b294e devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x9278f5e4 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x92818965 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x92849c92 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x92889e42 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92b28850 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92b964c0 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x92c47258 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x92c98957 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x92b94b99 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x92bf8ec7 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x92c4d80d folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x92cb5c45 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92ce4d43 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d4900f acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f0ce29 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x92f2e06a genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x92fc35ef tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x930266e2 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x92f0bfb8 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x9311092f dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x931c12d1 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x93223c82 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x932246af platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x93238e1e devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x9324c549 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x9338fb9d tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x933c9c09 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x93356325 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x933add24 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x933b86f9 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x93406d82 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x938d2c17 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x939b655f unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x93a598d9 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x93af9e86 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x93b7ecb4 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x93c1e3a9 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x93c4b608 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x935d0c7b __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x935f7c03 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x936547ac __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x937153e4 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x93a0d538 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x93b435db fsl_mc_device_remove EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93dd0829 device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f40a7b crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x93f6797a dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x93f6e7e4 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x93f79cbd ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x93ff2633 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x940cd222 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x93f598c1 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x93fce6ea usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x9401e63e palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x940412d7 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x9406f686 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9420c017 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9423e347 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x94272046 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x94394b37 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x943e684d usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9456313f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x94624e66 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x9465cad8 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946aa6c9 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x946aeb62 iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x94692a4b devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94753e83 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x947a4b79 wwan_put_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x947f14ea alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x9482e04b ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x9482e2ac regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x94907fc4 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x94846310 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x94862e2b gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x948a3fde folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x948adfcf kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949b9fd2 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x949b7cee scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a2767c sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x94acc362 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x94cff8be kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x94d43311 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x94ac6628 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x94b3a6f9 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x94bfeb81 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x94c162d0 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x94e2a04f i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94e6d0ad nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94ef83be of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f849d2 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x95000072 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95052eba nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x95112214 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x951864e1 serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95229bc4 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9523b621 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x95242183 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x95290968 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954a40ad serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x954b3af8 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x953ec527 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x95575c33 __tracepoint_rwmmio_write EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955f7b16 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x9567cdad sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x9568925b badblocks_init EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95720f79 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x95865682 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x958c5105 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958f89fd dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x959340ca addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959d47d7 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a2151e pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x95b12914 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x95b34431 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x95bbcdde devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x95a67ac6 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x95a81f7f clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x95a858c6 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x95ab1ffa phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x95b9c86d dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c19e1f __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x95ced1be ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x95d95a60 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95e3232b fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0x95eaaaa2 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x95ee629e clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95ff7da2 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x95f87f1f __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x95fcbea3 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x960463d7 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x960b5e72 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x96213af6 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x96149888 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x961d1f71 usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962c233f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9625a9c3 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9649d81f pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x9645df9f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x964d0502 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x9650cb24 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x965390ec meson_clk_pll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966043fe tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x966b3164 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x96853df1 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9690f7af dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96999e6a page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x96765757 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x967f3ab4 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9680db9b screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x968ed485 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96b47260 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96b90747 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x96c0db86 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x96c62490 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x96ca5294 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x96e5aacb xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x96b690d0 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x96bb16d5 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x96d3ffea md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x96ef6033 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x96f219e3 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x96f90e0f of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fbdcc5 mnt_idmap_owner -EXPORT_SYMBOL_GPL vmlinux 0x970a492d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x9707eb84 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971d9f01 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x973c1263 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x9740f4b2 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x97545f0e bio_trim EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975f9dd7 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x976906ef mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x976b1610 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x976f6a9a mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x976fc7d4 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x97595a30 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x975974d7 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x9761dce8 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x976292d8 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x97667ae5 of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977ee85e sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9784a185 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9787cf09 acpi_find_child_by_adr -EXPORT_SYMBOL_GPL vmlinux 0x97a7f387 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x97b8d2b6 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x97b90920 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x97b90ab0 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0x97b926c7 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x97d9551c iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x97900656 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x97900e7b of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x9790e8e9 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x97951b9a edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x97b3dab0 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x97b97b9c qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0x97c0bbf4 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97d41f62 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x97d7d77e of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x97d94c3b mnt_user_ns EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97e2de41 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x97e7b1aa fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0x97ea82b4 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x97f5ee31 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x98045061 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x9806268b ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x980ff612 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x981aa171 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x982db90b sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x982f2854 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x97e2b060 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x97f7b854 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x9800fb72 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x980bb548 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x981b640b phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x982083b6 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x982b0faa ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x982e4b59 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x98315f0a ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98429e8b gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x983bb547 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x984980c1 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9846af11 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98542fcd device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9860e92f __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x985b2c89 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987defc3 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x987a9ce7 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x987bee8c scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0x988faada ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x988dc2a6 phy_create EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989438fc ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x989b8c03 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98ca429a iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x98cb64e5 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x98cf5f5e ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x98d871fa __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x98d98bbc platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x98ec292a vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x98cf9108 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x98d55a08 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x98ee3a51 iommu_map EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f5a4c7 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x98f1f874 acpi_pci_find_root EXPORT_SYMBOL_GPL vmlinux 0x98f826e5 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x990fddb6 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x9915c7d2 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x993c96d5 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9911fd5b dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x9916cfb6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x992365b4 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x99279be9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x993026ef of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x99443bb8 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x994a38d6 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x99569134 fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995df43b serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x9967825f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x996168e5 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996c5c1b pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x996c66ed devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0x996f5cbc fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x997183af component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x99852ff2 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x998928c6 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x999e3af6 devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a61502 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x99c00167 vcap_rule_iter -EXPORT_SYMBOL_GPL vmlinux 0x99c7ad64 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x99a14979 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x99a2d112 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x99b4ffbb vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x99bc5bdc rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x99c01364 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x99c81203 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x99c96a29 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x99d01200 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x99e16f42 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x99e25359 pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f09c40 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fd6404 bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x9a00a5a3 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x9a00adad devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x99fec667 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a009474 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x9a07fee2 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9a0e343a devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1b16bf regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x9a1bee75 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9a1376b8 cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a43b213 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x9a2d56b9 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x9a2d5750 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x9a2fbfff watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9a431354 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9a45fd24 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x9a462a64 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9a4f467d dprc_set_obj_irq EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9a5b5c61 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a66069e device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a70f669 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9a737284 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9a76551e pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x9a901633 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x9a970927 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x9a99ac40 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x9a9c46d8 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x9ab3eddf gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9abe5ae9 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x9abfe536 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x9a64252c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9a6487b3 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x9a662465 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a6fd16f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x9a780885 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9a7e2df8 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x9a9d9a3e clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x9aa1bdaf ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x9ab45961 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x9ab7ea66 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x9abf056e inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac1b9aa __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x9ac36f92 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0x9acbae33 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x9ac1f8ca fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x9ad2f372 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9ad4779e pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x9ae71f23 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af34503 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9af81740 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x9afe4fd6 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x9b043db4 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9af77f59 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x9afea27d of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x9b059078 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9b0d5f7c iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b339664 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x9b53f927 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x9b140f8e strp_done +EXPORT_SYMBOL_GPL vmlinux 0x9b181177 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x9b19b42d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x9b1b6444 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x9b1eb2c8 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9b28f5ac usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x9b2be18d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9b322a40 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9b4d74cc do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b56bef6 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x9b5f9264 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x9b5e1fd8 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data 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 0x9b743ba3 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x9b75c2aa memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x9b86055b dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9b72c900 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b778700 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x9b7a94f6 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9b7c17a2 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9b7dc9df netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b87427e devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b8f4154 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x9b902464 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b933725 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bb3c887 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x9bb5ceae regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x9bc7d724 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9bcedf26 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9bd9cb8b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x9ba4955b device_rename EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be9f120 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x9bea089d skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c0455cd mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x9bed6389 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9bf85898 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x9bff238a iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x9c09a9c9 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9c1b6e1e key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x9c1cd4f7 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x9c27d0ec sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x9c2f7d76 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9c3aefce usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x9c410755 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x9c421d23 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x9c43a597 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c47a7c8 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9c4b8845 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x9c5a5a97 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9c5f0595 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x9c63fbe9 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x9c69ff7d tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c76ee14 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c86eb1e iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c87541e iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9c9148be crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9c9854c5 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x9c993a22 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ca06b64 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x9ca2691e of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x9ca68d71 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9cb207ec xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x9cb2f91f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9cacbb9a clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x9cae75aa mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x9cb1ef4b anon_transport_class_register 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 0x9ccb5853 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x9ccc93c0 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cdda4ae serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9cef6f51 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9cee247b pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9cee9f45 __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf4ae59 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x9d06de17 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d15490f of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x9d1ac231 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x9d1c7c94 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x9d1fc4ae fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d2047bd bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x9d166eb0 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9d1b98bd devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9d205351 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x9d27c150 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d33475d transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x9d33214e acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d33fc1e __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d5e51c4 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9d7e093d fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x9d4be134 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x9d5fcad8 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x9d6ed1d4 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x9d785b0b __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x9d80fb5f skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d953a20 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9d9681a3 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9db0c173 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9dcbcff6 iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0x9dd94eaf mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x9ddff3b2 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x9db83821 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x9dc0b1d6 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9dc30eae regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9dca7836 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x9dd604eb regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x9de25c61 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9df07833 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x9df4c64b bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x9dfa5b0b meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x9dfe8e5c __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x9dea30f4 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x9df05001 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e082707 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x9e210a14 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x9e0759ba gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e128d8a dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x9e20752a hvc_poll EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2b8713 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x9e4202a2 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9e26ad8d pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x9e45f3e2 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e64e9f1 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e69a3e7 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x9e7a461d phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x9e801d4a security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x9e80d97b dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x9e816688 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9e94e03b usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x9e98163f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x9e58fdee irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x9e76d704 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x9e80a26c clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x9e876cb0 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x9e8b9660 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9e93af77 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x9e996de9 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9e9f5a02 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x9eac19a2 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x9eb138b8 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x9e9effcf ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9eabf9b4 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x9ebb8c22 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x9ec104e6 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x9ed13c0d __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x9ed3e1d9 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9edea76d mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x9ee30483 fsl_mc_obj_close -EXPORT_SYMBOL_GPL vmlinux 0x9ee9c894 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9eda47b2 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9edc0766 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9ede5278 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x9edefc8c init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef643b3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x9f04574d devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9eec79eb kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f0b95dd irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x9f1bbc99 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x9f4fd903 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f22c8d5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x9f2360dd bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x9f241247 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9f291ec4 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f4a50a0 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c5028 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f62d4e5 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x9f6af469 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x9f7915a6 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x9f7d59f4 of_hte_req_count -EXPORT_SYMBOL_GPL vmlinux 0x9f87d1b0 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9f6345a0 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x9f67a29f splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x9f6e4164 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9f707d8a virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x9f8a2e6e wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9f938f81 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x9f94f0b9 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x9f9eb83a regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa54fe8 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x9fb78504 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x9fac451a dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x9fbafa73 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x9fbc5deb crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc01621 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x9fcad023 device_find_any_child -EXPORT_SYMBOL_GPL vmlinux 0x9fcbc849 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x9fc73dac debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd98eea public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x9fcfb206 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9fd373d2 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x9fdcbbcb nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x9fe1f96f access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff1c54a synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x9ffb56ef lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xa000aec0 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa0089cb3 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xa01317c7 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xa0089283 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa0092e0d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xa0094b48 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa00df945 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01ae5ee vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xa01f9bb3 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xa023b63f kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0xa035d76e __tracepoint_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xa037b55b usb_get_status EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0466cf0 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xa04c3002 rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0521533 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xa05c92c9 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa073dc57 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xa075c264 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xa075e184 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa094260c acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa0853bb6 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa0888e23 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa090b32b devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0b23f62 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa0b6c5e0 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xa0bc686e netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa0a2caef vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xa0c40d9a dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xa0cda190 dm_hold EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0de36e2 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xa0d8d64f da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa0df431b irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xa0e10999 dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa0e4ae05 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xa102bd12 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa105cae8 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa0dfbfef unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa0e69ba9 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xa0f141ab irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa0f1b53e msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xa0f99ed9 icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11b03fd regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xa11e4a39 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xa123f1cf ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xa12f02c9 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xa12f14b3 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xa13b0e89 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa118d5a8 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa11c0cf0 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa13e23d3 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xa1456e64 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa151bb9b device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xa154d702 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15a8491 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xa15c7aa7 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa15e762d kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xa160d78c wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xa164ad57 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xa18c1347 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xa166dee5 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xa16dd055 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa1763087 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa1838743 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xa18c6a6e alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xa198479c __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa1bec02d sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa1c3ba46 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cf9145 pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d8d967 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xa1e4b021 user_update -EXPORT_SYMBOL_GPL vmlinux 0xa1e9fda2 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xa209dc4f cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xa20ae30c skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xa1d8495b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xa1f72ae3 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xa201a134 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa2051adf stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa2104c61 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xa21d5d8e devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa20d4893 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa213b828 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xa21519cc rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa2235167 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xa223c862 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25e825b pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xa2553d08 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xa25786c8 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa268474f crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa282270e usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xa288357b of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa27347aa power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa2a0e992 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xa295d097 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xa29b272e input_class +EXPORT_SYMBOL_GPL vmlinux 0xa2ac292a meson_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b26e19 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xa2b9378a crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2bfe4e8 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2c9f821 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xa2c76b6b mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e2d9bb dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xa2e856c2 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xa2eceff0 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa2f15004 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xa2f24097 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2f7a19e dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xa2f917b3 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xa3039531 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xa305f00a __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa30d351c device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xa32232c4 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa323f4ff call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xa3314d05 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xa3001421 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xa310f1f9 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xa31f3635 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xa32a48df mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa33924ee tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xa33c802a crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xa355ea43 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa364f272 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa36899ad tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xa35128dd vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xa3587f4d rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa35c2b5c nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa3830659 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38ac599 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xa38b733c __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa38e808a devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xa39c71a6 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa39dc4c1 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xa38d00dc devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa38fbd85 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa3927d0d fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa39f10e4 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2f34d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xa3a4365c __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa3b12795 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa3b7f47b mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bdc69e irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa3caffbd inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa3d1e326 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa3c3fd57 extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e8b926 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3e11456 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xa3e732c9 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3fcfefe xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xa3f80635 acpi_dev_ready_for_enumeration EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa40e5eb5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xa40b3498 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa40c8f1a scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa42b5352 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xa43a1932 mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xa440a5b9 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xa444d47a thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xa4477865 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xa41ae08d phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa427862e get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xa43079b4 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44cb87e fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xa44f58b1 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4564119 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xa456461e vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xa459fb75 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa4546258 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa4556114 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa473d4ed aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa479735a pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xa47a1d5f rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa4782017 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xa47b4248 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xa47bcbab synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xa4809f31 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48b25d0 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b12a6f shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xa4b736d3 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4b4877b devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa4b58637 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c556ad md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xa4ccda14 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa4d1074d nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xa4e7c4f0 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xa4c69b2b devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa4d6f9f9 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xa4dda9a4 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xa4df62d6 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xa4e4f312 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xa4f1d3ce xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4f529e9 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0xa4f981d1 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xa5057821 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xa4f74da2 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xa50162ac of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa503ebe1 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa51530ee pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa5179d48 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa517b8ff bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa5267381 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xa52f0272 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa52205a3 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa52aa663 raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53674cd perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xa536834a virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa53f4399 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa540aaed regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa54a2658 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xa534c9ea pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa55dbcae rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa56abb61 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa55f9c25 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xa567f6b0 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xa579bd41 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa56e9f57 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa56f894e uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa58155ed fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xa59aa9a5 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa5a706a5 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xa5b434fd debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xa5b9befe bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xa57d8449 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa57d9d80 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa582de14 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa59bda6a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5a1b130 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xa5a230bc mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c5d2ba regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa5cdc1d1 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d2aa9f sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5dde026 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xa5eb5159 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xa5e4d608 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa5eda234 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5ff7027 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xa606c15c wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xa6104237 iommu_device_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xa616ac85 fsl_mc_obj_reset -EXPORT_SYMBOL_GPL vmlinux 0xa63074b8 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xa630e812 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xa6405d85 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa649df75 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xa60146a0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xa61bc1a8 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa62bf844 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xa63134c2 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa633d789 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa64bfc1a to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xa659070f devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xa64c427f irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa65e6825 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa66a085e platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xa6856729 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xa691ccd0 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xa69ddef7 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa65ffbcd xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xa66c1cb9 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa673a387 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a507ce iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xa6a8d609 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xa6a9af64 devm_irq_alloc_generic_chip 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 0xa6b493c5 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0xa6b4d6f7 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6b7ae70 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0xa6ba1e5e bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa6bd1496 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xa6c81489 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c8777b pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa6c92462 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6dd6112 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6f2d8ec skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xa6fae0ec dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa71308f1 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xa71478a9 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa714f7bb i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa71a0ddb __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa71be580 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa7121a53 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xa7236653 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xa72f6c07 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp -EXPORT_SYMBOL_GPL vmlinux 0xa74d1a14 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xa74f5264 i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa751d4a1 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0xa7769b9c buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0xa7771ce4 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xa779460a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa753fde8 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xa75c9374 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xa75d4ec8 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa76a9085 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa76c7bf2 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xa77e082a usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xa7800984 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa7a6aba4 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xa7ab2859 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa7b0f5a1 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xa7bad4b6 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xa7d40601 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xa7e6bf89 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa7fa59ab ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0xa7fb877e stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa804ef96 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xa809ea2c dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xa80b0479 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xa80d5201 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa8136914 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xa8188c53 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa823d85d fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xa83d914d skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xa84a15de usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa79ec145 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xa7bac732 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa7bd4348 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa7bf6e5f kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xa7c2ae92 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa7c61c8d kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xa7cac666 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xa7f19d9f devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa7f1e88e mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa7fb6a3b clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7feeb2e __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xa8001379 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xa8063fbc show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xa813fa7e devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xa81485a9 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xa82f417a __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xa83fae6a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa848aa1c ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8551dbe pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa86e7c91 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xa87f1bc8 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xa861219b devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xa86da97d extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa86f5afa dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa875c7eb acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xa87d12e9 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa87d3379 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xa88cd51b dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa8925157 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xa892eeee ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a22617 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xa8a51d50 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8b3c639 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xa8d7fe25 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xa8dad51f dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xa8e88656 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xa90c9aaf pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xa912bd9d of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa919292d ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xa92cb95f devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0xa92cfa69 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa8ad2e2b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8b42cd6 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8bcd422 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xa8e7561e rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xa8f2a02e pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa907e2f1 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xa9146c07 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa9151499 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa91a28e7 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa921689d of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa92718ef xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9284b05 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa958398a platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa93af512 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xa9411be6 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa941cd38 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa942e1ef class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa9539c90 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa95e5cf9 of_phandle_args_to_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xa95fd324 dm_put -EXPORT_SYMBOL_GPL vmlinux 0xa9682bc8 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xa95b7a68 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xa95f3662 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xa9651083 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa967bd7d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa96a5287 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa96f4544 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa97366da virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xa974ef01 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xa9778bc5 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xa98c1473 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa990e476 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xa978254c tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xa97ec5a1 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0xa9936b49 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xa99b178a iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99bda31 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa99fc298 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xa9a0b7eb mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0xa9ae86e7 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xa9cc667d watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa9cdd761 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xa9f25aea sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xa9f8eaf9 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xa9fef469 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xaa0818ca is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xaa12fd5e clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xaa13ce7a dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa256c93 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xaa2787b4 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xaa2dfb8c blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xaa3dbd41 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xaa4456ab wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xaa48c8e4 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0xaa4b8498 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xaa4e5232 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xaa5c9b86 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xa9a5fa4d dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xa9b6db64 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xa9baf137 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa9bd7acd dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xa9c39818 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa9d23da3 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9df1e36 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xa9ea1fab fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xa9f2e28e irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9f38104 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xaa061299 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xaa0ae5ff devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xaa0d07e4 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xaa351e4c devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xaa3ac50b of_css EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa73fe89 __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0xaa9554ea vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaa9a4ebf wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xaa77f703 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa7c9059 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xaa873381 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaf009d relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xaab39313 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0xaac22340 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xaac69558 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xaac85536 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xaad18539 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xaad1d3d2 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xaaeb874f pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xaaee924e vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xaac08c61 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xaac1dedd fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xaacc1daa of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xaad4a9a8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xaaf4f306 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xaaf9f4f7 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock -EXPORT_SYMBOL_GPL vmlinux 0xaafb60ca unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab064844 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xab0c9633 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xab0ff87e ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xab1392c1 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xab1382e6 pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab1fc5ba devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xab2352f6 vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xab3a5b46 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0xab3b5078 iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xab3f2c4d divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xab44abbc icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xab484c20 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xab585461 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xab5a0a06 mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0xab5ce2be rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xab688e5e fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0xab72c68f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xab57c8bb ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xab619eb7 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xab7912b3 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab81689e synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xab8b5332 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xaba44f8d ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xaba46237 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xabba8209 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xab850b43 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xabc5675b pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xabc6016f crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc665a6 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabd72d28 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xabf1056e acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xabf2b434 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xac0f5599 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0xac112abd dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xac17c0b6 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0xac1d468b gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xac27b239 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xac2e9f30 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xac468a09 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xac55e9e5 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xac5c85f1 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xac5e48a1 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xac65f629 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xac6f9450 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xac71537a crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xac73812f virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0xac73a1cf fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xac7f1915 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xac8a98ca nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xac9bdf0e aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xacaddbf6 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xabec3942 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xabf51af2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xac01d1c1 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xac3733d4 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xac3bb476 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xac4017b9 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xac4296d2 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xac5685ad bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xac77a495 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xac8216b1 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xac85b1bd blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xacabc41e sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xacac945d rockchip_pcie_deinit_phys EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbca3b0 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xacbfc317 devm_thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0xacc6aaf0 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xacc732dc xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xacbbbbcf synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xacc089ed ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacc97f8a crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xad22c38b driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xad24ec30 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xacd29dc4 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xacd5d28f page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xacd7ab58 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xacdaf3e0 led_put +EXPORT_SYMBOL_GPL vmlinux 0xacf4fee0 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xad026dac pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xad061269 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xad07d971 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad329a5f regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad3cfa95 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4d8fd1 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad51197e devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xad56eef3 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xad58f7bc acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xad51d51f crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xad5e8bcf ping_bind EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6671bb umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xad689ace dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0xad73bf33 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xad68fed7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xad72929d irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7899bb device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad9102ff gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xad962b73 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xad9ad6b6 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada5ea4e __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xada600f9 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xada83283 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xadb5ec8d __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xadba88f3 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xadca1946 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xada38cda bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xada7352e of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xadb2dc54 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xadc647f9 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xadc7d0c0 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadea45f2 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xadecf222 ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xadf81169 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xadfb7788 pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae0b7393 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0xae0be13e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xae04ac32 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xae0e6196 k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae0f974b mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1c3f4e i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xae23d839 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xae38bb34 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xae23ca94 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xae2f0857 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xae320258 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4c36c9 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xae51fe9b virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xae3cb38b of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xae544f17 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xae5e9e56 tty_ldisc_flush 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 0xae66d34c platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xae695c2d ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6cceda stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xae769193 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xae6bf13c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xae77e39f tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xae7929e5 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7da798 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xae80a2dc __tracepoint_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0xae814db6 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xae822cdd serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xae836526 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae8d0307 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xae8ed973 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xaea6ebd0 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xae881cf0 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xae9d95c6 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xaea23d6e sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xaea3ad50 pci_intx EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaebf1901 fsl_mc_bus_dpdmux_type -EXPORT_SYMBOL_GPL vmlinux 0xaecec297 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xaeddc9ff debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xaeef5275 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xaef3138d __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xaefc75e9 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xaeadb2d9 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xaeb9c424 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xaebd266f evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xaecae230 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xaecb8118 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xaedc97b0 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xaee55eb3 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xaef933e6 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf095317 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf174636 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xaf1a99f9 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xaf23b69c ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0xaf27f500 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf37e1df ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf3a7520 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xaf3c47c6 ulpi_viewport_access_ops EXPORT_SYMBOL_GPL vmlinux 0xaf3ed93e srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4e77a0 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xaf5397a6 pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xaf72b4be ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaf72e941 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xaf60d1b3 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xaf6e81f1 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7a9b9a pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xaf8462cc ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf93de7a dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xafa10dc4 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafa2d262 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xafaf50d7 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf88948a copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0xaf8f4290 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xafaecfc9 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb5cde2 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xafb8f4b5 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xafc934ed of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xafcdb41e spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xafd11cec sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xafd8a96d devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xafb7a696 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xafb81277 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xafba15d3 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xafbd3ec7 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xafbda313 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xafbea986 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xafc82869 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xafcc998b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xafd661e7 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafdf8a99 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xafe32b47 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafed014f dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xaffd944c bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xb0096b3d input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb0206f9d acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xb02a26da phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb018e9f6 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02fead4 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb038603f mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb02ba88d irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb03dd223 icc_enable EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb0639a29 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb0665b4c gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb062637e dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xb06acfbe pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb07585ac pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07b72f4 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xb07d32f8 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xb0824d6b soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb08fba2a devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0935cd5 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xb095e38c kill_device -EXPORT_SYMBOL_GPL vmlinux 0xb09cabf3 ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xb0a19f22 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xb0a23530 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb0a47e56 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb0aecc14 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xb090592f regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb0a4d693 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb0a75a6b virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c106cf tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xb0c82b46 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb0bd25fe vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xb0be6e47 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0c819fa dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0dbd5e5 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xb0d6bdd3 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xb0d80307 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xb0da125d pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb1063c55 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb0f11fc4 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xb0f21823 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb103b76b generic_online_page EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1133709 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12601de to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xb12d6357 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xb13265f2 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xb13429e3 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb149dacf dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xb159d242 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xb1620e1a dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb126579e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xb1410de5 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb142fa1a cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xb14a81d3 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xb159300c fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xb15c6fe1 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xb161ed17 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb164551b vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1765810 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xb1801f9c usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb1817f45 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xb188510a virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xb1900820 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xb19cbea0 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xb1b388d3 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xb1b9848d gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xb1ba28c7 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb19cd479 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xb1a2c260 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb1a8943b irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c4c0ce fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xb1cb20aa crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb1d65c78 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xb1dcc891 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xb1dd39e9 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e3f5fa iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xb1f40214 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1e3db74 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb1ec9e2c i2c_dw_acpi_configure EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb1fe2323 driver_find_device EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb207028d bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xb20d8dfd irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xb219a8eb sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xb21c5126 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb2035992 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xb2146668 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22b565e pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xb239fbf4 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xb2229bfe devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb2275092 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb2277b24 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xb2333129 disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24197f1 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xb24abcf7 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xb26582df i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xb26839cc regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2504089 device_find_child EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2787381 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb27cb2b6 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xb289452e clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a7175c ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xb2a8dbbd pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xb2ac821e pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xb2b1f5d4 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb2bcae75 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xb2a58fe2 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb2a9a134 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xb2be4ebb fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c961c5 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xb2cc5df9 __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb2cfa16e paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xb2d5dd5c netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0xb2da7db2 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xb2e17132 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb2e29315 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xb2e48931 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb2c34298 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e9a300 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xb2f0fa24 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb2f59fa7 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2f5430f of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb3025797 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb3051160 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xb3053f21 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb308be6d blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full -EXPORT_SYMBOL_GPL vmlinux 0xb30c9e52 mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb30ee7c5 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xb3290b6b irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xb32bfea4 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xb3319b3e list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xb33afd80 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb340b3f0 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb34b00f2 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb35adede gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xb36b3d77 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xb38be096 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb3a3bfa0 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb3b01a56 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xb3bc4850 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xb3c0e399 io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0xb3e396d7 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xb3eced42 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb30fa94b fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb31a9488 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb3276e4c validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xb3376d32 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xb3401683 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb34d40bf icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xb350209b regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb350baeb trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xb36b7e28 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb3707808 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb37daf18 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0xb38ac3f0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb38c088d arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xb38ed5e6 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb3983348 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb3a42af5 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb3a644ac cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3a9ff0d regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb3de036d device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb3eac00c dm_disk EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb402226e cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xb3fe00dc blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xb403ae15 vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb41582fb security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb418673d scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb41a76f3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xb427d6ef ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xb42b71e5 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb438ac8e crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xb4394f18 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb43fee12 dprc_set_obj_irq EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb444ae4d devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb44ad53b stmpe_dev_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4757cdf dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xb479315b __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb47e26e5 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb48d39a9 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb44f302a __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xb462c78f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xb46555be extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xb4786022 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb481d0dd ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb48325b1 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb493b26f pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb4a585a1 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xb4af7b79 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xb4b52515 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xb496f9a5 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb4ad6f5b i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4ba93bd relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xb4d18acd rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb4e45960 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xb4e6f538 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb4be8d3b wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb4c41067 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb4c84053 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4d15b07 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4d5353f synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4ee0ebc tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xb500d062 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb500ec12 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb4f408a0 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5075f2c pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb50f6247 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb5237646 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb531dd09 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xb5426a85 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb54b6a92 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb54dd54b serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb556c12b mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb575f567 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xb585b83d irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xb5893fef meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xb578fa47 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb58c9609 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0xb58f5426 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb58f8c38 strp_init EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb5977493 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb59d6cf9 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb5a1e718 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb5a301c3 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5a8db10 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb5ab4a6c pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5cac5e9 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xb5d7c3a5 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xb5e387d2 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xb60a1c52 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb610795f devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb5bb4783 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5d584f4 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb5d77a37 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xb5d934b2 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5dca144 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb5f7f4ee thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb613d295 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb61f3763 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62945f5 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63f5b48 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xb63d7738 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64a82a5 vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0xb65332a6 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb6458ff9 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb6475817 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xb64d39da find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xb6513cfc trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65e267f irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xb6779fe1 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xb658c984 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb6770e44 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb6833bcb __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb68426a7 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xb684ef68 rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0xb6878d8f amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb6904d5a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xb67a4815 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xb68c297a xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xb695ecf9 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6a2011a irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xb6a38cdc fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xb6b49b7f l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb6ba3b3c irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xb6bf690f nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb6c1cf2d fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xb6a16a3f __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb6ae421b acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xb6b7a490 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb6bf19c5 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb6d0fb5e usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6d48e1c generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7019376 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xb701d437 ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb7228e89 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb724330e check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xb6e96d60 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xb6f53d22 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xb6f7aa23 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xb712feaa of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7347a90 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb738f5a7 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb7472d72 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb76e47cd ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb77bfbe2 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xb754e742 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xb7556678 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xb755e140 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb76251d8 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb77de2b6 sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb783d5af virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb792ce06 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xb7a1138e icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xb78f5e54 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xb7944cbc serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xb79cca20 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb79dd13d phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xb79e43bf devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a613ee clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0xb7afcd1a clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xb7b17711 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb7b77d6d meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7ba23e1 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xb7bb3c77 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xb7bd5a3f fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7d44140 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xb7d8d410 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xb7e409d0 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb7f3b4c6 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xb7cd5256 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0xb7d8b437 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xb7dbeaa7 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb7e63e9d devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xb7eb4734 acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fd272f ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xb800f152 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xb8020780 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xb807b8be wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb81d8c05 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xb7fec049 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb82165b7 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb821c3d1 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb82a25e9 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xb84e794a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb83d875c pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb83eb383 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb85410c9 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xb876f828 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xb86bfac8 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb887da6b folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xb88bdf25 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xb88d0b18 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb897760b platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8aa0058 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb8aa278a ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xb8af2ead uart_console_write EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8ba94f6 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xb8c28efe pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d71ddf kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xb8ec438d usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb8d0de5d crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb8e289cc xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f29b12 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8f2b8f6 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xb8f92be0 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xb904a1d5 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0xb907c053 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xb9082132 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xb908da03 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb9027fba wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xb9038467 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xb90d3a57 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb918d158 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xb9241846 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xb92d431b mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xb9391823 fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0xb93af50a i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xb94032e1 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xb91c1449 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xb9381e3c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xb93b2877 power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb9422ae2 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xb94c2fb7 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xb964a4d5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xb95980ff devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb9607e8d percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb980a899 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xb969e2f4 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xb9806487 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0xb9822677 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xb982fd85 acpi_cppc_processor_exit EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb986e7c9 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb9ab4257 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xb9b12d30 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xb9b2a6c0 strp_done EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9be90c4 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c433dc mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xb9c52e78 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xb9c88a52 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9ddaa6b gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xb9e67d5d devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0xb9eafb8c platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xba04c06c usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xba083592 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba0a2e88 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xba14b970 dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0xba1655a2 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xba200b6d ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb9f14509 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xba0ff023 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xba1159ff lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xba12396c wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xba165e18 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xba171f12 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0xba1b894d platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3f4172 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xba3fa8ae virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xba54d000 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0xba742b8b clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xba78066c nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xba8786bb devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xba8b8a8e blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xba506020 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xba80e776 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xba82f833 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xba8a860f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xba93ac1b dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xba95df2c pci_p2pmem_publish EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xbaab7199 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xbaa37d2d sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xbaa7e322 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xbab3e602 dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabb7cbf __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xbad3f395 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbad8ff60 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xbae8f573 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xbad0416a rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbae740bf dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0xbae7e79d devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xbaf0ef80 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf4140f pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xbaf4f7fc dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xbaf61a66 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb016d76 fscrypt_d_revalidate 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 0xbb155c24 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xbb0f293a debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xbb13911f l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbb1575ab acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb2abb16 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xbb2ea27a phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xbb2d595c alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb540247 mtk_clk_gate_ops_no_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0xbb562566 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xbb5efd8b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb62c0dc synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb691c29 xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6b4a96 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7ad3ac pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xbb7c2691 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbb82106d ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xbb8d7f05 meson_clk_dualdiv_ops EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb9452e3 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xbba2b530 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbbb38b0 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xbbc2d32b thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbbc89dc6 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xbbb9286a dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xbbdb0356 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xbbe1b7e6 iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe9cc9c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xbbe73460 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbbf4c971 blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0xbc01e5ea gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xbc100069 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xbc158b9a crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xbc19a354 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xbc2be9df clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc30ba8b edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xbc082277 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc084acf blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xbc15caaf __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xbc1bc394 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xbc2763e6 __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc377c68 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc50f888 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xbc551ce8 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xbc52f2d9 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xbc5b5cd6 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc5e82b2 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary -EXPORT_SYMBOL_GPL vmlinux 0xbc6882a2 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xbc6aea01 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbc60d0b1 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc83d1cb sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xbc9a2e38 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xbc6d6aa8 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbc8e1f5a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xbc8e7fc2 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xbc8f908b usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca6606d tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xbca83415 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbcbcce31 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xbca8b68e devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xbca9d6be regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbcb5b69c gnttab_pages_clear_private EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcd359df vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xbcd65ba6 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce303d9 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbce2cbd7 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcf16c30 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfc71a8 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd0d0932 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xbd0d7731 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xbd1cc348 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xbd3dbcd3 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xbd162dbe devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xbd211989 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbd2c3bf3 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4a48b5 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd4c44e9 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xbd514ef2 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xbd40a6fe pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xbd43f90e bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbd4d131b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd4dfd95 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd5b674c dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbd5f45cf devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbd60d7b7 mnt_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xbd635e04 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbd6ea94b usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbd6153f8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xbd670ad6 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd676e50 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbd7a06f6 clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd8c7a0d nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbd8e57fc gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbd86937b bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xbd9030b7 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbd9a92e7 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xbd9c9d53 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xbd9f41c7 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbda1ac32 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xbda2e6a5 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb2f760 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xbdb23711 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdc01532 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0xbdc92865 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xbdcd7cd4 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0xbdd17387 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xbdd9815b imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xbdbaab8b con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xbdc4f6c5 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbdcb4d53 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbdd1c64c tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xbdd795f9 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbde7bca3 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe0aa2aa __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xbe0cf085 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xbe0ebf5a devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbde8afc7 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbdf523d2 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbdfd2d54 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xbe0bd0d2 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe131458 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0xbe13dead clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xbe202cb3 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xbe260c72 split_page -EXPORT_SYMBOL_GPL vmlinux 0xbe2af2aa rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xbe3031c0 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xbe3c0b52 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xbe3f71ca device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xbe40f608 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xbe441e98 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xbe503760 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbe177e7e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbe20af65 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xbe30d347 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xbe336ab0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xbe36d7f6 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xbe3bbf96 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xbe4cf90c icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xbe5ba813 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe674e56 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xbe6462b9 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe70d62c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbe76d37a regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xbe6a646a usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xbe726810 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe7c3006 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbe8175e1 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xbe81ac2e pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xbe83ebc5 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea4000f crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbe9abb77 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea86ae4 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbeb6824e tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xbeb7b7d3 __traceiter_rwmmio_read -EXPORT_SYMBOL_GPL vmlinux 0xbeba74ff dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xbebb8604 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbec141ba clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbecd6044 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xbed101b0 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xbed29522 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbec779ed usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbeec1bc7 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xbef128d0 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xbef6e863 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0c398c scsi_template_proc_dir -EXPORT_SYMBOL_GPL vmlinux 0xbf0d9494 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xbf123652 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbf0f72b8 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbf121958 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbf166144 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xbf1bb847 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xbf1f5fa8 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf440ace bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xbf36d7f3 mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf6cfbd3 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xbf93d2ff devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbf9dde67 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xbfa2d5be devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xbfa468c4 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xbf4fe94e ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xbf8d1c78 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xbfa6f376 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfe135aa udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xbfcfd4cb gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xbfd728b8 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xbfe4ef18 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff3143b led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfffd2d8 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc028dcb8 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0xc037fedf dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xc043cd4b gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xbff518bf fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xc002a7c4 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xc004266e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc02e84f3 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc036412f irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc038dc60 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xc04351ef mtk_clk_unregister_dividers EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc04853bf devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xc056a35d mtk_pinconf_drive_set EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc0626ece perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xc0634c65 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xc075ec52 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc081438d scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc084ed5c fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xc07d58c6 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xc081aa40 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xc0907fc2 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xc090b105 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09672be blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc0a178ce rio_unmap_inb_region 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 0xc0adf8f9 xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0d8a7ad put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc0c80c23 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc0d193d2 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0ef8900 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f70e31 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xc1005e24 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xc0f1401b ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc1029820 fscrypt_fname_encrypted_size EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc12de612 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xc13fc468 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xc143329d irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xc148a99e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xc11f2990 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc144e382 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xc14f7616 __SCK__tp_func_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0xc1522192 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xc1655b10 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xc167ca95 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xc16d731f dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xc1611706 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xc1703ed9 sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1784c0e pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xc17e05a6 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xc179d816 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc1904d6e phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc192b50d preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1998f47 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xc1aba64e sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xc1b51fb3 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xc1ba7138 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xc1c6f9a3 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc1823737 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xc1983658 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xc1b8a410 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc1c71d6a wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xc1ce5bb9 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL vmlinux 0xc1d16d31 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0xc1d5497f nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xc1dabd6f blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1df937a sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xc1e1c121 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1f09d0c devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc1f7b29d ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xc1ecc767 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc1f49711 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xc1f54476 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc200b5a2 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xc20d77bc skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xc2128075 i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xc202803b filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xc2033071 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xc204903e thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc20f40d0 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc222c406 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc22386df posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xc227ee1e kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22df521 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc233010c pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xc2352348 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc24187ca power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc23cfef6 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc23fcdd6 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc24385ec pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc2540ea3 of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc26382f8 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc265fdae crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc271545c ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc274efe6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc26dbde4 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xc27c37b5 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc298d5ac fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xc29eec59 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc28b1eb6 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xc29a4618 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xc29fd8bb of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2aa2f8d reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc2b6642d dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2b0d049 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2bed42a dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xc2bf05ac dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c81eaf rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xc2cb1cf5 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xc2d89f68 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xc2da7ded register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xc2c2154f blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xc2db7a9d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xc2dbd980 extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2df5cc1 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xc2e00070 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xc2e3faad dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xc2fc64e6 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xc2fe6895 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xc3068080 finish_rcuwait -EXPORT_SYMBOL_GPL vmlinux 0xc310a437 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xc325e89f dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xc3342bd4 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc33aa82a ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xc2e301f6 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc2e89f75 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xc31fb32e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xc32756e8 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xc337dc33 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3421a99 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xc34a59bb dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xc34ded63 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xc352d96c __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc362c384 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xc3639ba7 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xc363a4bd regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0xc3651b5d qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0xc36f9bcc phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xc36105d8 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xc36d965b serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc36e5c75 of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc37316bd __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xc3781ede divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xc37aa7b4 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc38cba0a da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc3ae7c3e spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xc3b4165c devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xc3b637f2 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xc399b6fc cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3a4c1c0 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xc3aa3031 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xc3b94adf dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c5afdb devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xc3c836f9 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xc3cc7c0d pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0xc3d2a822 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xc3d78606 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3e43dc5 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xc3e2e8f9 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f2ac70 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xc406aa8f edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xc40c8e74 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xc40d360a rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xc4216945 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xc422aba4 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc3fbe1fa inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0xc41e57c0 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xc4213b8d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc42617dd gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc433bab2 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xc4382f0b fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc443fc3a __phy_modify EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc451d1a8 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc44d6512 dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45f0537 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46644fb pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xc46b7ddf devres_release EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xc49280bd pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xc4977580 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xc498a29c debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc47cdb81 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xc4977916 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xc49f2a75 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0xc4999ee1 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4ac6d87 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc4c95aa8 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc4cb9714 blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc4cd4645 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xc4d3449a blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xc4d35710 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xc4dcd6e9 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xc4de1d16 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xc4e03f06 mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xc4ef6285 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xc4ef849b device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc4a831b4 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xc4b15d59 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xc4ce22cd dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4ce23bc class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc4ce5846 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc4ec4c3d mtk_devm_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f62934 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc4ffbe0c mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc532cec2 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc537f25a dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xc538b251 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc53ba064 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xc53bbcbf icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xc51a8ca6 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xc51de30e vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xc52cc71d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc5332949 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xc53d2f2d rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc540bc44 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc54131cf fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xc5458615 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc5465d6b register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc560f5ca irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc565ba03 pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc572a2b5 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xc5724609 devm_of_icc_get 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 0xc58ff7ce crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc5954487 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xc5a2cdc9 device_show_int EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b5d796 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xc5ba7766 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xc5bc1789 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xc5c9f6f1 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xc5dd6ada clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xc5ea1b50 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xc5ea8e20 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5edebbd gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc5fadffb devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0xc5fd7f0a bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xc6143915 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc5a98065 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5c5b3a2 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xc5cd5fc2 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc5e26266 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5e2e621 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc5f2b45f io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0xc60466a6 tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc620a6e4 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xc620832b wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc63a5671 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xc63db7d7 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xc642efd7 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xc62bfdd8 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xc62d3cdb devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6302dc4 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xc638937f __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xc644eb36 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc6480f5d genphy_c45_pma_baset1_setup_master_slave -EXPORT_SYMBOL_GPL vmlinux 0xc64c295c set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc65672f7 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65c5634 platform_device_del 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 0xc670b07f auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc67789ec sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc68815a2 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc67fefe9 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc68405c0 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc68d7314 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc6970955 mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69e8407 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xc6a41be6 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc6a214fd of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xc6a41c8b restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a96de6 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xc6af4fa0 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xc6b0a75c mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xc6d96bc7 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xc6c2a140 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc6c7b563 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc6d2f1d9 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e84b52 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc6f0b7ac __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xc6fcbbe1 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc7056c10 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc70290f1 divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc707f058 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xc711f9d5 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xc71abf37 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xc706251f mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc708a5ec virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc708bdf7 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc709c4dd fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7381557 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xc73bc837 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc75294c0 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xc75e988e posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc77a0599 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xc77a7af0 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xc77d63cb trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xc7810046 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc72fbd1b check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xc731aae2 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xc73fdce0 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xc74f4cb8 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xc7512c96 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xc75f4d86 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc77417fe devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xc77a9102 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc798d3af shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc79d6ccf dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a345f5 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xc7a3be31 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b04440 xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xc7c05f84 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc7ac9b33 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc7aef8a8 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0xc7afa084 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xc7b40ef1 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xc7bfa882 kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c836c5 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xc7ce2011 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xc7cf1de6 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xc7c91eb2 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xc7cce4af device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xc7ddac11 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xc7de9dba dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xc7e0164f pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xc7e11662 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7ea2a53 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xc7ef7dfd iommu_present EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8073fa9 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xc80b12dd acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc7fdc22a crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xc8073d03 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc813eee6 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xc813f7d2 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82e819c fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0xc8361824 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83d236e mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xc83e71ee __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xc852ef94 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc8561b45 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc859de96 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xc85a41a1 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xc85d5ff5 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc85e3707 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xc8629403 acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xc865a4ed dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xc86fa399 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xc874d60c genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc87697e9 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc87e8bca pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc881a1be __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xc8919f4b mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0xc89229da md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0xc8cb2eaa ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xc8dc32cc serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8cc4d9f dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xc8ddcc4a inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc903f40d pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0xc905402b log_write_mmio -EXPORT_SYMBOL_GPL vmlinux 0xc91a8327 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc91c6491 fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc930906d acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xc923ba58 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xc92721e5 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xc92df161 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc937773e crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc953c90b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc943e226 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xc955b913 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9601691 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9683d15 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc966c833 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc975fc12 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xc977026c phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc972e825 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc9817421 mtk_mmsys_ddp_connect EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98db077 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc99f4261 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0xc9ad274d find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xc9b440ec skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc9bfb477 vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xc9c952f2 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc9830701 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xc9bc807d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc9c50324 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc9cba855 acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9cf4563 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xc9d1995d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc9d1e5c4 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9d6f5b6 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc9e18e5d device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ed6181 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xc9f5d1a2 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xc9f87c46 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fcbb10 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca13c519 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xca14c161 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xca2a7e0e sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xca2eb2c6 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xca37d1e2 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xca3977d1 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xca0714b4 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xca1a88a6 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xca27642e sec_irq_init EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca45869a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xca4fc9d2 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca516862 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xca5f7123 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xca659852 vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0xca6cc72a ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0xca737a0b ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xca77e306 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xca61fba8 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xca6a69b5 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xca6c5f88 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xca72e421 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xca740316 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xca7cc6c5 iommu_device_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca82da2a lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xca8a9bd6 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xca99025d pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa6094b pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xcaaf3231 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xcab59f12 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcab6d50d of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac3a061 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcad04b36 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xcad478d7 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xcad82c7c ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcae8fec0 __sk_flush_backlog -EXPORT_SYMBOL_GPL vmlinux 0xcae91a56 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xcaeca1ab to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xcaf10c16 nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcb01e9e6 mtk_mmsys_ddp_dpi_fmt_config -EXPORT_SYMBOL_GPL vmlinux 0xcb0faf9a qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xcafa2ac5 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcb053bf4 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb08b7ac umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xcb108153 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xcb16c127 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xcb198d11 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcb2a0570 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3872b2 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcb3e7e5c ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xcb421ab1 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xcb4f8c4f serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xcb525b3e pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcb55ad14 acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb6407e2 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xcb670d43 folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0xcb689102 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xcb82a263 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xcb992c0d perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xcbaa663a pci_p2pdma_distance_many -EXPORT_SYMBOL_GPL vmlinux 0xcbac4f9e devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcbb83560 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xcbc54faf md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcbc7eeaa tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xcbcae635 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcb691cfd ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xcb6bc5f3 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xcb6df103 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xcb75a04c tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xcb888cad tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xcb893d37 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb973576 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcba4a904 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xcbb120ca serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xcbb65c0f dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xcbcb35d2 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xcbdc045a irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcbe42139 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeee0cd fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xcbf1a2b5 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbe71c94 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc01aada led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc26c7fd dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc176cda iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xcc1a4f31 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc399efc auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4cde65 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcc4fff07 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xcc5e5764 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xcc7934ee fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xcc4f116e sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xcc576ea8 i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xcc83a3dd blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0xcc86686d sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc92b7b5 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9cf0c0 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcca3cc77 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccbec948 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xccb0f288 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xcccf2714 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd3731c device_reprobe EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccdf071c task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xcce1242d dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcce2afda __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xcce3fcf3 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xccdba4b2 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xcce69476 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xccef40e9 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xccf113ca devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfa204f ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd0997a9 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xcd0c9d9c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xcd02b382 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xcd181d55 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xcd1990c3 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd25e40c pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xcd30541d tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xcd26fddb sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xcd2a6a23 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xcd2e1803 of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd4171c3 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xcd4d5096 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcd560f55 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xcd5e146a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xcd5f25f8 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xcd66679f free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xcd6a6921 rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0xcd6d1a2c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xcd46e06c device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xcd4c367c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xcd5642ce mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xcd60df71 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd705c13 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xcd707401 dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd75e0b4 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcd864d5c __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xcd87c20b vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xcd902206 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcd7d755e spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xcd7f019b rio_mport_initialize 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 0xcd9d8d9f dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcda8ffad pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xcdb5df3b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcdaecdaf wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xcdb04144 elv_register EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdba3777 mtk_clk_unregister_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xcdc9a9f0 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd748d8 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xcdd80cda ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xcddc5596 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcdd06ff8 sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde710fd balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xcdece817 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcde99544 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xcdea7dcc devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xce030ddc __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xce03b925 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce1e0068 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xce283a1a spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xce288402 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xce295b51 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce3218b6 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xce44e50f key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xce4a2650 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xce4e6dbd smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xce557db3 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xce546bda xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce632b76 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xce69cd4d subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce75cf64 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xce8fda99 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xce74a3d7 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xce76bfdc clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xce8ea679 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb2f110 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xcec7ef09 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xced2d20d __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xcec17330 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xcec8d8a3 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xcecf7914 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xced312f0 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xced422d6 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xced71b63 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee43e33 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef73cad irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xcefe9fac crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xceffb167 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcf0e664c __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xcf12370f pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcf1cabce mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcf1d1ca2 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xcf2501b3 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xcf40b5fa acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xcf428153 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf55f8ad blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf6273e4 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf70bb4e blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xcf909c2b percpu_is_read_locked -EXPORT_SYMBOL_GPL vmlinux 0xcf998c68 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xcf9f7cc9 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xcef044b5 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcefffc94 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcf07841e device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xcf08f788 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcf3cfa00 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xcf5aa1fb __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xcf60410b extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf62586b mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xcf667d72 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xcf6e7293 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xcf74c4a6 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcf7b0545 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xcf7e57fa init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xcf84b11f rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xcf88fb39 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xcf917073 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xcfc29d5e xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xcfc34ac8 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xcfc4618d get_device +EXPORT_SYMBOL_GPL vmlinux 0xcfc4cfbc dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc9a7a0 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfe1a4ec fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xcfe97a47 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcff7426a gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xcfe1a264 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xcfe81a29 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xcff9896c __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xcfff6024 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xd003a72f acpi_dev_get_next_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xd009defd of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xd00b6218 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xd00fb8bc skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xd01fb194 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd00110d1 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xd024691a gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd02d3c2a vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0xd0385304 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xd03c5d35 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd033c53d ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd0383724 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xd03a9f37 ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0419c3a __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xd04435bf irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd04e40f6 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd04e53f0 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd0598aa0 fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0xd05f76a1 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xd0505a89 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd0617dd1 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0666a80 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0682e7d tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xd074cd23 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd07aafcd acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xd080001d of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xd08f14e7 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xd06a8847 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xd06f6e9e __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xd0705610 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xd0772c36 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xd0971a54 fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a1b7ae dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0xd0a2f949 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xd0a76240 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd0b0e2f9 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd0b7ae3e cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xd0bdc50b __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xd099a5fd usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xd0bf8d54 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c81f0e clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd0c1dbfa rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xd0c24964 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xd0c44e73 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd0c994ff device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d2c956 hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d8200c pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0f993b7 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xd0f565c3 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd0f57f7b regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0fece88 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xd102ba74 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xd1333d6d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xd10065a7 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xd101df06 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xd117936d mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xd117a05e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xd11f7f06 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xd12b5b95 dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xd13c25ae nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0xd14326d2 fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0xd144d137 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xd140a174 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1549e86 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xd154bd23 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd1694981 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd181e9fc wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xd18d8864 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xd197ffaf mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xd1991972 meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xd1a1a4b2 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xd1a668b5 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd17b0c93 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd17c2bdd devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd17cfe97 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xd17ff96b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd181f9c4 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd19361ef acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd1957ae8 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b0ceb5 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xd1c8bb72 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd1c94ec0 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db9d iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xd1bfe723 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d3d0ec wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xd1ee3088 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xd1f1f7f7 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xd1cf9e5f pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xd1ec4531 relay_open EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd214858c phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd201aa6a locks_release_private EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21a09c4 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd236b3ed xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd2266a67 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd22c67a1 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xd2361aa0 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24d35b3 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd258452f pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd250a1ec iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xd258d423 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd25aec5f sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd269f919 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f0fbc key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd281cea5 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xd2848217 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xd28753e6 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xd2938331 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xd29a2b6f blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xd281e931 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xd295a55e tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xd299cb50 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd29c7440 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2d561ef pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd2d67084 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xd2d67196 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xd2b140ff device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2e43034 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xd2ef4ada mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xd2da222a tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xd2df0ec9 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xd2e4673f dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xd2ed3844 dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd2f10cfd trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xd2f8a34f fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0xd2f9256f devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xd30a3f25 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd2f46f4e edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xd2ff501d ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xd307a9ef rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31b743e fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xd31ba361 user_update EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd3232c45 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd3451c4c ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xd347d2ed blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xd34bd840 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd34bf932 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd3501616 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3611fe1 acpi_gpiochip_request_interrupts EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd37378e0 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37b7cd0 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xd37be0f0 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xd37c023e xenbus_match EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 -EXPORT_SYMBOL_GPL vmlinux 0xd3837efd ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xd39172b6 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xd39a934c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xd384de39 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd397d710 tegra_bpmp_mrq_return EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a8aa7e acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xd3acd9c9 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0xd3c2eb6c xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xd3c35a52 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd3c9ae64 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd3cc37eb of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd3dc1140 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xd3acceaf create_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c5c0cf fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd3d27364 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd3d2d864 of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec764e of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f49348 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xd3fb610e modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4127e71 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4079d6d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xd413c8a8 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42c08ab device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd42e0308 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd43272b4 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xd4486f9d amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xd4382dca tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45e0bbe crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xd467b8be crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd4644e88 pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46f0f84 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xd479bfa4 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xd48f5680 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd46dc4f4 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd47bb376 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd492d374 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd49694b9 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xd4a9e370 vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xd4b5b417 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xd49e752f genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xd4a18d5e mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xd4adbb56 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bca4f3 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c5c7d1 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4c7dd3f genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd4d7e84a ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xd4d80ba3 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd4d8e381 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xd4d84313 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd4decafa __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd4e20f64 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e9e793 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd50e2237 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xd512457b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd50fc7ef md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd5157226 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xd5210dc5 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd52c812d regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53e34f7 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xd540019c trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd54cd225 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd5491a3f fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0xd5495530 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd55725ad kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55cde87 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0xd565b3bb exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xd576a290 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xd57b5d67 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xd57ed9ce of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd586d2df extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xd592bb71 usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5bde74e irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd5ca5f5b xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xd5cafa16 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xd5ce74f0 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xd5f44a62 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xd5f4a097 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xd604df5b ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xd610794f hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xd6148b07 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xd61e47cb ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xd61fbb29 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xd62169ee pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xd62297c4 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xd63d5944 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd63e29b8 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd642d765 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xd5d4679f crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xd5da075a __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xd5e2e6ba acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xd5e305c1 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd5f6fa2d vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xd6020c33 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xd603600d __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd61b1bea bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xd63399da __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xd63618a3 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd64aaa17 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd653d7f4 pci_iov_vf_id -EXPORT_SYMBOL_GPL vmlinux 0xd65cf795 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xd652545f vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xd6531e99 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xd663cfe1 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd66ad592 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd66e2e05 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68dd8b7 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd69b716a usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd68acf5a platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xd6a2e340 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xd6a62bcf of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd6a99fbc platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd6af44dc spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xd6af07bd regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6b2b71c edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xd6cd24f5 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd6d2a2c3 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd6bc6ab8 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xd6c18d50 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd6ce475a dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6e118ea bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xd6e2876e ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xd7003d92 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xd700988d sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd6dd57d2 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xd6f0fd37 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xd7001a27 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0xd70934b1 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd713c89c iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72f2dc6 devm_mtk_clk_mux_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd73a1a95 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xd74d6be8 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd7319e5b crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd7364da0 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xd7450d88 ti_sci_inta_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd756b09c devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd75ac69c __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd762e08e param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xd765e4cb sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xd7665b4e devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd7682b22 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xd768ce0b pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd769e6d1 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xd77be5f9 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xd77c8a24 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xd791a0f5 ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0xd79ba087 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd78ed641 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xd78fd12b to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7ac751b xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0xd7b1b785 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xd7bf8f3c vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0xd7c03081 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xd7b21c66 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7b8a411 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd7b9dfea fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xd7c875df devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7ce4737 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d6a314 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7e2a170 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd80747c3 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xd8471588 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7e26e91 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd7ef00e6 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xd7f2a31e acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xd80684de devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd823cf41 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xd836f846 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xd8477b91 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84ef530 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd858479f component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xd85b44b7 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd855e423 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd86622f4 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xd877902a iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8809cf3 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xd89e2bb4 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xd8a778d5 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd8aa0a52 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd8d01fc7 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xd8d079f2 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xd8a405ed ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dc1ee7 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd8dcbe87 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xd8e0d39f ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd8e181b4 xen_dbgp_external_startup EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8fcfaeb pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd90286dc vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd90aba88 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xd918a65d srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xd91d99dc hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9192f40 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xd919c25d device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd91a235c device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd91d4c0e dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd91e6abd devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xd925debc dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd9420db5 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xd94fe857 mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9512944 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd92f4934 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xd9390a13 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xd93b4b85 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd93e3026 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xd955d836 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd95c407a key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd95de59e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd95e37a7 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9688c65 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96bce5d fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xd96bfb35 thermal_zone_device_register_with_trips EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd97d0448 folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9a6d978 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xd9ac4a78 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9b5772b __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xd9c9cd36 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd9aa1056 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xd9b7a513 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xd9b97688 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd9c45bad vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xd9c79fb9 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xd9dff8ec ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9f837e0 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda019942 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xda028ef3 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd9ff6908 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xda066a56 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0xda113e7c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xda150d39 dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xda22ad41 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xda1036f6 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xda13bbc6 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xda18fd22 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xda2c8245 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xda2feff1 genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3e7778 blk_stat_disable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xda47d5c2 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xda552edb devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xda6d81e5 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xda48e57c input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xda6909a8 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xda70d9bb mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xda75c671 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xda7867d5 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda7f5728 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xda8234f7 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda84828a ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xda851191 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xda8b7e29 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xda7c0a0a usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xda800cd3 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda9aea1a mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xda9db6c5 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xda9050af __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xda9c8d5e of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa221cd devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xdaaffc3c css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xdaa42460 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xdab23f6f xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac6b1fe crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xdacd165f vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xdad29cff relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xdad863cb rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xdac3798a gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xdace20e0 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xdad23dbc blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xdad31570 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xdad7313f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xdae7bb74 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf4e0be pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xdaf5ae52 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xdafca813 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xdb073801 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xdaf7529c skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xdafd1874 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xdb04b9ff ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xdb06640d regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xdb1b78c3 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xdb1c5a0d ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xdb275359 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xdb335f98 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb142152 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xdb216dc1 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xdb4783fd pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xdb47e9ac rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdb5b8a20 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdb5cab99 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb681c5a fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xdb6f64c2 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0xdb63c239 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xdb714ddb pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xdb74e2e4 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xdb76d3a4 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8a9ba2 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb920572 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xdb9b5dc1 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0xdba40fa0 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xdbb7390b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xdbbcdc63 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xdbc9d0a4 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xdb9c8764 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xdb9d0519 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdba53afc pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbd2522f crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe50641 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbedc219 i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf6c1ab devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbff0678 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc031c84 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xdc046bc0 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc0f6fbd clk_hw_unregister_divider 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 0xdc1e7d97 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdc3a67d6 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0xdc3feb40 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xdc289455 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc4447ba __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc502f32 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xdc5328d9 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xdc593abd spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc497145 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdc49a56a vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xdc534bc1 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xdc5431e2 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6b774b phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xdc6d698b xenbus_setup_ring -EXPORT_SYMBOL_GPL vmlinux 0xdc71eab3 mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0xdc6ef8d0 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdc74ffc1 hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc825da1 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc85c9a7 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdc88d40a ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9a8598 vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcb6d109 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xdcc371c4 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xdcc5244f devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xdcca84cf ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xdccc3a99 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdcd341e5 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xdcddff78 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xdce0ea4c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdcb35dec of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdcbfd923 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcee24c2 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xdcf0709d folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xdcf2ab2b gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xdcf64fa3 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xdcf89964 platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0fc65e ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xdd11d8d5 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xdd336f8f fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xdd3926bd __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xdd39e97e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xdd0dc59e adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdd0fe5bf fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xdd32737f regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0xdd5183f4 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xdd556f91 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xdd48eb9b user_read +EXPORT_SYMBOL_GPL vmlinux 0xdd4987f5 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdd4c6e56 nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd67f966 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xdd7327a9 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xdd757255 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0xdd77c3d1 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd632630 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xdd66a158 dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd918796 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xdd9f1085 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xdda93051 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xddbe22ab rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xdd8357f6 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdd8bda0f phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xdd9259c0 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xdd969215 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdd979a9e ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdda2ee2b irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xddabcb8f ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcb2fa0 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xdded32f5 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xddc99adc kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xddd97217 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xdddc246c dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xdde24b64 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xdde66c36 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xddea1a44 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xddebb280 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddfbdeeb edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xddf4c620 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xddffef1a bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xde000bac dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xde0090be spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xde0971ea gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde1a0c81 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0xde26fcee __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xde28ca26 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde2cc924 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xde121de6 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xde135a5d ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde1fd92a pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xde20a266 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xde26a61a regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xde2e9e33 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xde3012a7 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde3c3174 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xde4e4a8d __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xde687556 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xde32d487 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xde37ab97 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde3e8769 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xde4c7784 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xde6bdd1c uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde761bfc __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xde7bdcaa __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xde8180e4 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xde83e548 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xde7e2794 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xde8c8d46 driver_register EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea676ba divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xde9ea5d7 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xdea5948e blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xdea984a2 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xdeaa46fa gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeb3ffa0 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xdeb65506 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xdebcdb5b platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xdec43146 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xdecdfee4 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xdecf7b02 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xded32e31 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xdee57aa1 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdeef40ba md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xdeee4fa8 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdef850da mmput +EXPORT_SYMBOL_GPL vmlinux 0xdefe733e perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf04f271 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xdf0bd63f dev_pm_opp_get_required_pstate 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 0xdf11e745 dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0xdf1a4a28 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xdf10dae8 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xdf164377 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0xdf1d4fb0 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xdf1f4d54 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xdf1faa94 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xdf219b68 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdf1ee564 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdf204da5 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xdf22fb34 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2fabbd xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xdf314236 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf34e32b elv_register +EXPORT_SYMBOL_GPL vmlinux 0xdf388b30 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xdf3ab9a3 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xdf3eb37c serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4578d0 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xdf4c16e7 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0xdf5b0650 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xdf869b3f edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xdf8b70ef gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xdfb10427 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xdfbceddd phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0xdfbefc1b devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf4a0982 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xdf4e8743 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xdf54f980 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xdf575b97 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xdf582f0b pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xdf636663 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf6c3401 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xdf7b2296 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xdf7c5099 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdf7e0231 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xdf8c8738 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xdf9cc6f1 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xdfa5dd79 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xdfb1c505 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xdfbd07b7 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xdfbff92a dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdfc7b732 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd60f61 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdfde7d9c of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xdfe54bc2 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xdfeaac71 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xe0003d61 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xe00cbc35 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe01429e8 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xdfe68773 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xdfea5b8d phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xdfeb2850 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xdfed614b vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xdff2d5ca platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xdff58d19 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xdff832d4 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xe00ca7b6 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe010df11 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe01e6a69 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe022e055 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe0288199 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xe0299ab2 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe02ad372 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0376707 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xe0481047 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xe048f938 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe036e752 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe03a503c pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xe046ecbd iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xe04d08c5 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe04d2271 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe056f006 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0673265 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xe06ba268 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe06ee2dd percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe0a695fa rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xe0748032 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xe07e2446 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0893c62 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xe08d2c9e sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b6c151 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xe0b91cb2 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe0c12f7a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe0be50d4 tegra_bpmp_mrq_is_supported EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe0d1c0c1 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xe0d34e30 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xe0da94fe mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe0e2e03f class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe0cf19d9 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe0cf8707 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0d21905 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xe0dfa448 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0ed854b pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xe0f211f1 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xe1018a24 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xe102113b xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xe0e35c88 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xe0e5ff63 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xe0e72f07 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xe0e859f6 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe0f7b25f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xe1088cd6 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe12156e2 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0xe1291cc6 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1380e2e mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xe13f6e3b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xe153b336 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe1553097 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xe163e318 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe17d818b pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe17fe4fd sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe19a1371 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0xe19a9e12 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xe19f145b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1113261 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xe11d387e fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe122c0c7 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xe146376b irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe166be55 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xe17df598 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xe194258b xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xe1a46912 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xe1a5cf94 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1ad87bd perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xe1b37411 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1aef429 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe1bb47df ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1be11b1 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xe1c55395 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1db24bb unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xe1e4da8c scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe1ef94f2 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xe2228b05 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe1d175d8 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xe20cde87 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xe21efc4f usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xe2291c3a irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe22e7f27 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe239d65c _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xe23e24de bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xe243c03f dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xe248d555 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xe24b09f6 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe24f1b2c crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xe2568507 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe25aee31 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xe24e55a8 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe2545f24 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe270d495 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xe27eae2b tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xe283b8f3 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xe28a3e8a regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0xe29cecdb dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe29d7b01 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe2a6a119 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe2ac2ab7 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe26f171e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe270be60 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xe28a0773 fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b57144 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xe2c79415 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xe2c8e132 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xe2b35d5c netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xe2ba7f78 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xe2bf8707 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xe2bfb613 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2cfb2f9 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xe2d3c937 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xe2d8213e devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature -EXPORT_SYMBOL_GPL vmlinux 0xe2dfeb40 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xe2ddb585 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe2e4c6a8 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2f28718 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xe2f6915b proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xe2fe21f7 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe30f9eb2 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe318c32b shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xe32a94f1 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xe335dbad xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xe3413513 of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe343ac48 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe3641de4 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe37aa105 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xe38300bc regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe2ede0e6 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xe2ef7391 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe31bd795 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xe3277945 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xe328c2c3 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe358ab67 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xe358c59b rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe359bef6 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xe368ce6e sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3702072 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xe37e5f97 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe394796c irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xe38e8119 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xe390b52d __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a4b90c rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe3a361a7 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3c29089 devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xe3c58747 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xe3b96af9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe3ccca6e irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d0ecf1 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe3d8f3de devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xe3dbc79b iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xe3dc4d53 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3e8b93b __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe3eb7d8e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe3efc9aa clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3f7ecdc rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xe3fe6186 tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0xe4094d62 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe40b63d1 acpi_dev_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4247dcf class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe4286ab5 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xe42be81c of_remove_property EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4323f3b usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe44110d0 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xe44156f7 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xe44c7126 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xe4530858 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xe45f19b9 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xe46ca41a usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xe46d8290 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4767a4b ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xe47990cd tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0xe47a723e ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xe47cb1fb hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xe486a6a0 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe488e0e7 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xe48d3a74 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe45b5c9d crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xe4609304 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xe4816662 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xe48ecb2c mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe491aec8 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xe492a3cd gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe4966278 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49a82f8 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xe4aead7f pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b17560 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xe4b773fc bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xe4b6f0d6 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2a060 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xe4b86bcb crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xe4c2b7ed rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c773d9 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xe4dc38bd fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xe4dca6f3 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xe4e0f799 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe4c91f0a ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4e00f9d devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4eea9ee acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe4f17e0b ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xe4f58809 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xe505a426 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xe510e42d ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xe51aa921 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xe51d52d6 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xe51fab16 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xe530e6a4 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xe5335a41 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xe54c68f9 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe54c8996 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xe4f271cb bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe5098693 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xe5115d95 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xe5392e08 mtk_pinconf_drive_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe555e58f dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xe55d99e1 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xe567f91d regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe56901db tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe56f57cd dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe57517fa dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe57bc6bc devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe5521305 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xe5596680 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xe56e414a devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe588b7ae iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe5896363 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe59239bb of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xe595cc52 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xe598c609 component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0xe5a16469 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe59be91b crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5b69809 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xe5a9ab66 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe5b04122 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xe5b24cfc gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe5be8004 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request 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 0xe5d210d7 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xe5e06f3e pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe5d62aee wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5d8e846 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xe5e790e4 __traceiter_rwmmio_post_read -EXPORT_SYMBOL_GPL vmlinux 0xe5e7d024 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xe5ebbf03 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xe6039262 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5efa767 pwm_put EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe607e072 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe60a2dba usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60f0f1c strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xe61761c9 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe61eb45d acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6345d69 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xe63479b7 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe64e423a rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xe666605a __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe686cd95 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xe68a05ee dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe69acce6 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe6a4290f serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xe639c880 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe63eb8e9 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xe64bec0c sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe667ac10 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xe66a225c __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xe66d0072 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xe67c3e24 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xe6878910 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe69e66f4 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0xe6b50ead __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xe6bd7004 imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0xe6c3f7a2 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0xe6c4302f regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xe6c71ea8 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xe6c7eebc __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xe6ca97f4 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xe6d0f74c iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xe6d4374f hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xe6bacada device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e64faa irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6e7e82a crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id -EXPORT_SYMBOL_GPL vmlinux 0xe6ef7aff onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0xe6f32d7d pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe71cd784 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xe73306e3 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xe7451a28 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xe74f97b0 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe702fa53 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe712af2d dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xe71962f8 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xe71fa799 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75b0331 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe761430e fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76aee93 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0xe7740e5e of_resolve_phandles EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0xe77f4020 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xe77f5d43 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe787ec86 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe78f8a5f gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe79690b7 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7b2bba8 devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xe7b51816 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xe7c0bf37 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xe7c3a511 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0xe7ca85a4 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xe7ceb5a6 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xe7d0c209 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xe7d238dd devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe80fc219 fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xe81466bb serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe7d70fa4 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xe807b103 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe80ada31 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xe80cc114 pci_p2pmem_free_sgl EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe831e4b8 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xe83d1b44 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xe8430a29 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe84db8be fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xe819ef59 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xe8213a2b fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xe83028e4 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xe833bd58 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xe8347b77 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8526306 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe869b67c ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe88b78c5 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe89fd4b1 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xe8a42103 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe86c6e55 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe873325c devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xe876d591 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe887891a debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe89150d7 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xe8980de0 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe8a83673 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8bd5bd7 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xe8bf8f9d cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c4e201 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe8e7f0ab devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xe8fb11d7 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xe8cc2e42 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xe8dfffaa pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe8ee62c6 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xe8ff7df7 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xe905c4a4 uprobe_unregister 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 0xe9123d69 sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0xe91e2e5d scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe924f540 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe92ba666 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe93d29d1 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe914a707 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe91934cd debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe9249d14 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xe926f073 ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94314d4 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xe9437061 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe952938e bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe970fb3d kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xe972bbf4 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xe97a9f5f vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0xe98eca82 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xe95edc50 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xe962a911 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe96b881c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe96e1026 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe975d869 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe97cff5a gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xe98dcf7a devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9abac93 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xe9b72fa6 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe9c1bd00 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe9cd7c0e xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xe9cf8634 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d4da7d serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9e739cf regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe9eb44d8 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9ed70b8 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0xe9fb736d led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xe9fbc77f mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9fff646 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea025c3c blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xea082be2 fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1bfe80 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xea1d889c bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xea324230 clkdev_create EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea38bf92 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea49fe93 fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0xea4ecff9 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xea4ff9aa devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xea41c323 phy_init EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea608313 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xea63b7b0 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xea72c014 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xea74c808 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0xea8229f7 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0xea864159 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xea8c08f8 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xeac6c70b tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xeacb449b nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xeacc0a4d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xea53428e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xea596dd1 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xea696459 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xea6c871c pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xea9089e0 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xea90dd58 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xea9da3b8 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xeac28f42 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup 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 0xead76560 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xead7b1fd device_property_present EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae4944e tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xeaec22b9 fwnode_device_is_available 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 0xeafd9098 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xeb037e37 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xeb121469 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xeb13bb26 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xeb1ad197 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xeb241ffb acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xeb34c369 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xeb359000 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xeb3c26d7 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xeafc1b3d wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xeb07abbd disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xeb392791 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xeb3e3d03 usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb4b1af6 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xeb60743b crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xeb7731d4 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb52e2b3 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xeb6f6250 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeb72d68b gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xeb76e9eb skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb8280af unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xeb8ad997 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xeb96794f of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xeb995e10 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xebc7438f register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xebd2a210 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xebd30fe5 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xeb809892 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xeb8c30b6 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb9b2af5 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xeb9d30e4 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xebade774 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xebb2c941 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xebccfdb6 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xebcf7ebc icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xebd2a684 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe2ff6a fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xebd53126 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xebd989d7 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xebe138df pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xebe1c876 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xebe1e6c8 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xebf8ac9e extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec0ada2d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xec11d085 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xec1765dc regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xec279bf5 mtk_clk_register_gates_with_dev -EXPORT_SYMBOL_GPL vmlinux 0xec4dd4df dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xec530776 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xec165942 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xec2f0bd4 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xec4c6b3c rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xec4cb9df devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xec503231 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec726afb __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec76a853 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xec64c51b wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xec75107b ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xeca62763 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xecafaa8f crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xec77db83 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xec7d5f89 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xec7e0d74 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xec7ff27b dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xec90a6c5 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xeca31fb1 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xeca5fdfd dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbb37ef folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xecc12cdc irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xecc51f18 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xeccb1343 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xeccbe90f mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xeccc8604 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xecce9e61 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xecd54a58 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece5e0ad genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xecf8d8f1 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xecfa4e75 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xed05dbb1 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed1480a7 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xed2bd781 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xecdc7b58 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xecee1088 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xecf33c63 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xecf6c507 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xed09ecd8 device_move +EXPORT_SYMBOL_GPL vmlinux 0xed137574 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xed2701f7 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2cdfd8 phy_put EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3c0854 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xed48a45d fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0xed4ab6ad xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xed83d27d fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xed873547 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xed41525d of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xed439b06 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xed4ed5b8 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xed65eca2 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xed6ed070 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed711c10 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed8d5f60 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed9620ad usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xed9b638e acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xeda1932d usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xedaf1686 dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0xedb4f2e4 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xedb50694 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xed9aa51e mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xedae5cef hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xedafe70c meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xedbb29f9 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xedcbd9ee battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedde0a1b pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xede15bc0 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xede25134 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xede348c2 spi_async EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf01786 mmput_async -EXPORT_SYMBOL_GPL vmlinux 0xee0f7225 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xee0f7ab6 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xee1d0208 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xedfbbdee fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xee0546d2 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xee0ea3b3 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xee180cfe ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xee1dcaac regmap_read EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee23e756 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xee2576ec kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xee28b042 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xee30c4f9 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee41a905 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xee486a3e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xee44407f icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee523dc6 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xee54dba8 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xee587a62 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xee67ee17 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xee68cf13 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xee6afee0 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xee5231f7 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xee676369 kvm_vcpu_on_spin EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c1dba irq_gc_mask_disable_reg EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee70a76f crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xee77cf12 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xee9667e5 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xeea928e1 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xeebbc830 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xeebc1b96 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xeebe7919 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xeec5716a platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xeed69f99 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xee7774bd pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xee79dcf2 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xee9ea77d __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xeea0a271 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xeeb1aefa raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xeeb47654 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xeec1ae6f disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xeece04ab xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedea1b7 vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported -EXPORT_SYMBOL_GPL vmlinux 0xeee3e272 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xeee2756b nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xeefca5bc blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xef0b7169 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xef0c8cb9 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xef17d553 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xef1777b9 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xef17dc22 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef2525e4 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2cf19f strp_process EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef47e1fe sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef6b1dd7 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xef5e1050 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xef689850 handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef754fd2 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xef76d648 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xef71a189 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xef79b82e alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xef7c67f6 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xef8563f3 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xef810e71 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xef84d839 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xef8d8f62 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef931444 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xef9338f4 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xef9795bc platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefafff51 fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0xefb74228 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xefbf915b sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xefcc87f7 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xefd251cf tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xefd7c8c7 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xefe2f170 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0xefe74360 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xefe7fab1 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xefa89bda clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xefb3bb2d ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xefb416e7 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xefc16888 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0xefe6d8c8 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xefe8db42 usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff1f324 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeff44f91 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xf01d9c9a trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xf021aec9 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf03396cd transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xf036f36f regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xf03f026f clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf0132cb6 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xf0231de4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf0315bbb blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf0429e64 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf047c287 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xf04a2651 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod -EXPORT_SYMBOL_GPL vmlinux 0xf05a2132 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0616e7a sched_numa_hop_mask +EXPORT_SYMBOL_GPL vmlinux 0xf06377c2 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf067ae47 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf06809fa fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf0695715 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf083b2ae wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf0876c5b kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xf09016ca dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf071a2a1 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xf07268ce fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xf08be7d8 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0997932 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xf0a71290 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xf0b80f65 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xf0c0abf8 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xf0c179fe nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xf0d7118e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xf0e21963 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf092e27a iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xf0a50959 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xf0ab0432 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0b6b408 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf0bbbb4f yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf0c04cea clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0d5836e devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf0d8715e __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xf0e39d7c dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xf0ea6f45 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xf0eb46ad mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf0ebec32 k3_udma_glue_request_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf1095cde devres_get -EXPORT_SYMBOL_GPL vmlinux 0xf11800f3 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xf11b842b bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xf1199c23 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf125e9c2 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf1292b91 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xf1420299 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xf14314fa da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf122e3bd devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xf127f389 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf144d050 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf14b5f68 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf14d7609 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xf152a38d set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf1579363 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xf159b66f fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xf15dd722 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xf15b3c65 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xf1706283 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf1893b44 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xf19cc2d9 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf19d6a62 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xf19ee33d ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xf1a01776 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xf1c0d176 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xf1d026d0 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xf1e036a3 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf19a0b1a __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf1ab5a5b mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf1b9f4ea of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf1ba5379 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf1c96b13 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf1d623a1 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xf1d704e9 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xf1ddd520 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xf1e23db6 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2264f8a wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf228e901 bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0xf251b0de serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xf270090e rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xf2730be8 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xf2595b65 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf25f0bf2 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xf269120b devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf284f503 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2886300 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xf28e09d7 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xf29342b2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf29182e3 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2affc19 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xf29686ea pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xf29b8f54 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf29c3594 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xf29d81f0 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf2af373e devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xf2b2963b usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bfbd99 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xf2c6e755 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0xf2c8e5fd ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xf2d03b03 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xf2e81667 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xf2ed5ca8 ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0xf2f48d39 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xf2c277e8 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xf2c59a4b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2c8e96c sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xf2cc5078 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xf2da5501 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xf2dd995f fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf2eb87cc devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fea6d0 xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf3011b17 acpi_device_fix_up_power_extended EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30ccc64 dprc_open EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3152f70 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf31af2be thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xf31996b8 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf31a8c67 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf337430d rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3394abb devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf3435b43 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xf3489ece tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf34b9253 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf33c5647 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xf33e20a7 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf36640b7 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xf36c3ea8 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37d60b9 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xf379e7e6 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3a00f3c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf385a963 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xf3883fc8 led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3a52e3e gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf3ad4352 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xf3a60305 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0xf3abd7f7 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b7e380 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3d18b5e usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf3daf475 clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3eb44e0 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xf3f1abea nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xf3f87e26 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf409dd90 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xf409eecc component_compare_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xf4261912 pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf43dd102 vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xf4478bc0 vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0xf4484a1b follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xf45c0dcd ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xf45c2c88 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf3c143fd nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf3c1f726 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xf3c8a558 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xf3c9a885 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xf3cb6e04 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3cbc7b0 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf3d16279 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf3da617e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xf3e5ef1c mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xf3e70c4e platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xf3e7333a bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xf3eb8b92 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xf3ff3644 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xf3ff6226 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xf411e3e7 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf42094b6 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf4236f0d clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xf4245e7a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xf42a82de em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xf436a347 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xf4421b2f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xf44faac9 edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46d8485 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf4721a7c report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4848c3e get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf49cda6f ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a25067 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf4ab1668 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf4a572d3 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bc6851 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xf4c82893 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xf4afe521 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xf4b8f6ff spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf4bfebca tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xf4c72f1b ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d504bd mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0xf4d537d1 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xf4e53f0d udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xf4f734f1 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xf4f9857e mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0xf4fd8e3b kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0xf500d138 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xf5032b0e ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf50db81e devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xf50f2f05 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xf511230b __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf5222310 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xf52a0ba4 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xf52e4497 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xf4f6b2a7 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf50105b1 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf50643dd regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf509c614 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xf50c2cb8 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf52d55ea metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5310147 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf53da071 component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0xf544a859 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xf54bba75 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf56605f3 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xf5698931 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xf5791bd5 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf585b25a gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xf58c1a45 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf55ede30 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5680410 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xf56a9e94 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xf5707020 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf573292f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf579c962 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf57a1dc8 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xf58221b2 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a2e7b7 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5afbee6 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xf5c133b7 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xf5d04a8c dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xf5d45f11 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xf5e466b0 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf5e96a63 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xf5c9f812 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f56da8 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf6121a8a bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xf61693cb of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf61ac29b pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf627b4be trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0xf62d72cb of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xf62e4ef7 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0xf64aa3fd ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64beb08 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf659c9c2 icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0xf64baac6 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6651b46 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf6667d75 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xf66fb4b7 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xf6786046 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf682d672 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf6931889 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xf69872db dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0xf6a0dc3a relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf66f179b fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf698de9c nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xf69d9f80 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a5bd38 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xf6af21cb of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xf6b08f2f fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xf6bc7747 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf6a7805e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf6a8159e regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf6aa6a6f pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6bf4fac dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf6c075d6 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xf6c25aca ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8c58d phy_power_on EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6dab05d serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf6cbaa24 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6dd87fe badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xf6e6159e __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f08b2c mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf7021e01 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf6f97326 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0xf7069162 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xf70a08aa crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf711ad2c switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xf7133705 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xf71b3223 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf720ca96 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72d429e rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf73bc404 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xf7449a59 crypto_stats_decompress 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 0xf753b982 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xf75e711b device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xf7641e85 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xf76b7273 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xf76c4913 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xf74eaccf nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf750b6c3 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf76b0947 mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0xf7730702 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xf7813a98 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf77c95b6 vcap_get_rule 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 0xf78c7318 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xf78cea0b crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf7922792 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0xf7ae23e6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xf79c0177 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xf7a00f4e generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf7a37bcc pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xf7a69895 pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b0c274 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cd5a0e devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d95241 imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0xf7e0a403 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf7ed67b2 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xf7f07941 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf7f6a02d pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xf807e896 arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0xf80b4464 mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0xf7d27182 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf7e803b9 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xf7eb9c18 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf800cf70 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf801fe07 user_destroy EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf811ac51 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xf811bf97 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf81cf0a4 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf8201863 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83c9685 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0xf8406906 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xf84661e2 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf84e3b0f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8461da5 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf86c4f16 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf872dbbe __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xf866ba8c tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xf8674935 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf868627c shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf86a7bb6 genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf884da06 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xf88d4022 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf893b892 usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0xf8a478f4 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf88de75e regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0xf8bdc3e5 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xf8e6975c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xf8eb8984 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xf8ef63e6 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf8f29c7e device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf8b4b62c usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xf8c77caa usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xf8da4e2a da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xf8e33034 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xf8f06eab sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0xf8ffc181 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf9010d60 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9072aa1 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf9193728 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xf911a4b0 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf920c6b6 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL vmlinux 0xf94552ab meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0xf947cdb1 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf94ac01b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf92fdca5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf94c812b get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xf94d2e6c devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf954c02a netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95cabe1 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xf95f1f95 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf9576620 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf9648556 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf97256ea crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xf974b420 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xf98866fa gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xf99365b9 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9a4a4e8 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xf9b17c44 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9d1be83 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xf9f46f5b devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfa008974 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xfa0f0a6f dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xfa1bca2e gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf9b374d0 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf9b908bd blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xfa081d71 led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa2ce945 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfa33bcc2 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfa20695a mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule -EXPORT_SYMBOL_GPL vmlinux 0xfa415cb4 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xfa4d3c24 log_post_write_mmio -EXPORT_SYMBOL_GPL vmlinux 0xfa4f453b ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xfa521e94 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa606e21 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa53c052 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xfa55efc2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa56967d skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfa6006cb __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa8f983f crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xfa917969 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xfa9285f0 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xfa93fafc xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xfa9d0b5a device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xfa9f3d6e inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xfa7b932b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xfa8de88a amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xfa9031aa md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xfa98f256 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xfaa32163 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xfaa776c0 sock_inuse_get 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 0xfab8525c pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xfacd426b devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfac2c50b regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xfaca89e7 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xfad76c53 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadbb3c0 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xfae35da8 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xfae5bcf3 mtk_clk_register_dividers -EXPORT_SYMBOL_GPL vmlinux 0xfae6852f pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfae6916f cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfaf8efd2 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xfafd2e49 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xfb1620f4 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xfae3b263 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xfaf48cb3 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xfaf5717a vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xfb2fab55 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xfb32261c clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3771cd of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xfb3d3a5e clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb46ff0b da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xfb4b1708 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xfb4d6ed7 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb464e2a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xfb4e77bb smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfb56def6 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfb6064f7 blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb69d06e sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xfb6b4e28 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb7aaa13 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfb809816 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xfb9b5db7 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfb9c5b86 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0xfb9f2013 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfba9fce9 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0xfbb3512c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfb70abb3 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfbaf6fe7 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbd8e90 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xfbbed0ec imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xfbc5dd0a of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xfbce91aa fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0xfbd2b992 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xfbd936cf blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xfbf80ac9 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xfbfa3daf crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xfbd61b65 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xfbdf5012 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfbe9f078 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfbfab6f4 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0838ff fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0xfc0d11d2 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xfc12d18e css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc1c51df tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xfc1905a8 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc25bc9e regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfc316b33 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xfc357d65 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfc36bb2c power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc441c8c crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xfc5e98f7 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0xfc6463c3 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0xfc79f00f wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xfc4e7490 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfc596f8a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xfc611911 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xfc6ccf34 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0xfc7c22a9 ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0xfc85e634 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfc85262c usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc9ce576 ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xfcb42d56 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xfc979585 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xfca32456 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xfca7b400 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xfcab7567 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xfcb420e7 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcce2234 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xfcd2e4fd fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xfcd49555 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xfcd9bdfd lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xfce52473 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xfcee227d __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfcf88ef7 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcc988e5 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfcdb8e5e pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfcf0ffb8 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xfcf76148 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfd4a32 ahci_shost_groups -EXPORT_SYMBOL_GPL vmlinux 0xfd0172b2 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd09e03a trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xfd158906 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xfd0e5841 usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd1d146d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xfd1c6a73 fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xfd309343 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfd374ffe blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xfd429df1 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xfd5461ce vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xfd562217 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfd3344a3 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfd3be922 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xfd5e4cbb nvdimm_region_delete EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd6c7abe tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd866d92 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd8b391a phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0xfd8d579c crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xfd97ab51 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd9d2e30 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xfd9d9a53 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xfd9eddc1 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xfd9f862a mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0xfdadca90 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfdb1ff8f usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xfdb9d2f1 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xfdbd28bd virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xfd870d48 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd9e3119 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfdbad68e cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdce8475 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfdd86e57 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xfddb82ce mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xfde3e44a devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xfdc952fd devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xfdc9e4e7 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xfddd269b icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfde97e29 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xfde999e0 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf68616 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0xfdf82bc1 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xfdf3e056 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xfdf78044 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0f3a00 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show -EXPORT_SYMBOL_GPL vmlinux 0xfe1a4a6c devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe1baacc fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0xfe244a26 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xfe2893c2 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xfe2a4245 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xfe2ca764 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xfe325f44 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3f64c1 xen_register_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5ea2aa crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xfe6f0923 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xfe76dff0 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xfe7edd4b crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfe54dd9a fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xfe5a9aa0 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfe61b170 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xfe6ea0ff rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfe7492bb pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xfe7dc37a tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xfe7f36a4 devm_gpiod_get_array 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 0xfe9b53b1 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xfeb19ace blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xfeb3f532 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xfeb5c870 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xfec0a198 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xfe9bda88 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfeb478a9 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xfebb7fd3 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xfebb8b4e blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfecc3670 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xfec49912 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfee8b1ec nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xfee6998b dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xff005e77 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xff02654b fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff090756 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xff0fb112 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff1840bd acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0xff1ac0fa devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xff1b007b inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xff1c4748 spi_setup EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff29232a rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xff29a985 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xff2a1327 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xff2e5cad ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xff3e2618 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4e4d52 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xff5fa790 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xff6b27a6 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xff76e979 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xff774799 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xff58414a usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xff61a8e0 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xff639e09 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xff66d880 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff7e736e phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff99dc94 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xff87b5a6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xff87ffc1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xff8d9055 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xff99da1b gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xff99f747 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xff9b8fd0 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa46766 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xffa677ea usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb02514 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xffb93491 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xffc2a907 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xffaebf4f pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xffbd48f7 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0xffc4d075 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xffc6641e param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xfff8b5dd ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xffe01294 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xffe9e50a sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfffc0398 icc_provider_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 0x0a31c7b9 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x04bc6cf9 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0ba0afff cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0da92ddd cs_dsp_coeff_write_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 0x1ee736cd cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x20124e12 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x222aa1a1 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x2d037ddb cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x3d3a50ea cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d0bf8b7 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x150458ae cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x177eacce cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1d38b8a4 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x30101774 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x41c4fb57 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4642f6d3 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4a68b196 cs_dsp_set_dspclk 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 0x576cb67f cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x661297f5 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x54337f1f cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x54fd90b6 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5cabd1cc cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6437bcd1 cs_dsp_coeff_read_ctrl 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 0x73a0faaf cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7b8da676 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7d995602 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x83fde764 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x928296e6 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x939e90c6 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x945fcfe6 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x97983a89 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7f081d8f cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x81825e3c cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8350bdaa cs_dsp_run 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 0xad35787d cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb4eaa145 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa69de595 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaf0dbeb7 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 0xbf82a361 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xcd74fd60 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xda760b0a cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdc828d71 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdec2a323 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x1a656ca9 hwmon_device_register_for_thermal vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0x3586f9a7 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xefbe8d04 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x257609e9 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0x3d297bcd ad5686_remove drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x641c6bcb ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0x7e1c8afe ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0xb37b7daa ad7606_probe drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xd8f8cf2e ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x3dc1f305 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x491ef72e __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x148ceba6 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1ecbb285 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3afcedeb adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3e0a81e3 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7119eb6d __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7964ab93 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaec4227e devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc4f82c30 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcaea1b0a __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd7d881a9 adis_init drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x36cdab90 __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x8a7bb354 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x9eb17fcc devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x3e859445 adxl313_core_probe drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5bf881d9 adxl31x_chip_info drivers/iio/accel/adxl313_core +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcce27311 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd120b7f8 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd8304f61 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdd737b3f cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf1f3c270 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x7bf2a945 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x0ff4922c ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xd060db00 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x88bd0582 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xcfa49982 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x0617e881 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x737733e0 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x57ebe1e9 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x8c14e723 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x895a2f18 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xd346c8df adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x116a3bfe __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1a05b373 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1a705e41 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x34ee450b devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x40dc20a8 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5297de4d adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6b9c6644 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x742e0b76 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x74e19365 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8021a0ae __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x852622d2 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x50a4dc2b devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xc43a65e1 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x2f73dac1 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 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 0xf03c7d3e adxl31x_chip_info 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 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0x91e0f032 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x93abc031 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 0xa8a7d67d adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x0e59bb75 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0xfb06d730 adxl372_probe drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x127f0215 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x36b8aa36 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x60f37d33 ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x84b1e30a ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x91b49a05 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x91f313eb ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9e26fe8c devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc8451af6 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdd9d8478 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfd64dcc6 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x293d5e3f bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0x76a4e0c1 bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x1d0631a1 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x75848442 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xa7bffd59 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xc3136257 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x4ddd09ff bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x69692a2c bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xa64a5560 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xdf17f46b bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0xa54aab09 bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0xc1cdfff7 bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xaebd763b bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xdafcadf3 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xe491730c bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xee953e4c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x65797981 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xa4994bbc adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x9a1e07a5 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xa2b68035 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2829116a ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2ffb300f ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7cfc2217 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7dc2fe9f ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9baad9e5 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc65314d9 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe8d935bd ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xeef2580d ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfaed1ad7 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfc2dc5ae ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x4c91471e bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xffa3cb63 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x2f8ead74 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x31ce72de bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3d033fa8 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xccca0699 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x2cff14c1 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x74c3662a bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x77c31e7c bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x8437b7de bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xdd023756 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x2731ffbb bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x70ad7506 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x82f0b18d bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xa394b63f bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xd3d9bd6c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0xc9396600 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 0x331919eb bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x6962221a bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x6cb64999 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x863094fb bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xcc464684 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x07cfaed1 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x43101a7a bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x603d92ec fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xb0c7547d fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xf1367c11 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x00b6c594 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x37ce136b fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa2685151 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xfd6a7038 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_HID EXPORT_SYMBOL 0x0b7eb6ab hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x10cbec19 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x13ce939a hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x27b904c1 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x38f8c6c7 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x657a888e hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7a987ec1 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7b4cc5de hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_BMI160 EXPORT_SYMBOL_GPL 0x889310c5 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x3331416a bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x36e52ae9 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x3ad8f1a3 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xdc63f78b bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xb10f5500 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xd57ea50d bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xabcf9a99 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xd218835c fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xeaa3711e fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x01c66000 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x9c082bf9 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa318f4c5 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xd4d50eee fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x252c5a8e hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x33ec6784 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x36a2b351 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x398baf24 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3da18d03 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3f79bf4e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5a8092a3 hid_sensor_setup_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 0x822760cd hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x904bd713 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xef31f5b0 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xfb641329 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1678a058 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6c9a74a8 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x80178318 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcdc27411 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x3343b3e9 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x6aaecae6 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x7f761911 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x1d388130 hts221_pm_ops drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xc2b6a58f hts221_probe drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x46091ef4 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x678d3356 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x74bf7edc inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x0226ae90 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0x3c7b413f kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x593e8c62 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x73776144 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xba276a20 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x5836e55c st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xcc8abc5a st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0xa8477577 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb1bdd111 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc098882e hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd9a4b6a0 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf56444c5 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x300a8d41 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x76ad75f7 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc235278d hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdd162505 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x28b5b1be hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7e04768d hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xdd310ba5 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x9a148792 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xf9a03f5d hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x089545cb inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x0a917273 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xddbe3ca1 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x9d36538d kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xbf783164 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x045928cc kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x48abc0dd kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x91bb2047 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x02cf03d4 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x68b390ea 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 0x19c47e5d ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2b1c379a 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 0x3e9d4ca8 ms_sensors_ht_read_temperature 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 0x4cdda4da ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4db5040d ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4ec0f7ea ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x51195df5 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5327b036 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8d11a01e ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa14979c7 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc96f569e ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6c29465c mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xadc0ef68 mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xae1ac409 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x05b10c91 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x23d0ed92 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x2cc935bf mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x2f69ec4d mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4eb73c82 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4fe645f2 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5b024997 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x672dc205 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7df288db ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x99713e18 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd5cf8c0f ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x3682cbc2 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x625e426e mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfe82a0dc mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x01e1448e mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0d2813d2 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x12721b09 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1c92c73c mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2a810478 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2e84e3b4 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 0x493b55ad mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x66ca670b mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x898ece84 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb0522ac1 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4b76fa4f mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4f7b421d mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7438bf3e mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7f29a1a3 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x94270b2a mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb09275ef mma9551_set_power_state drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xbfa5aebe mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xca9db9e3 mma9551_read_status_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xcb74276e mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xde921355 mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe79ae27d mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xec222614 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf166018c mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf7ebd3f4 mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0x2c738d51 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0x952ac2ac mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x71da73af inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xd85da479 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x34caf62b ms5611_remove drivers/iio/pressure/ms5611_core -IIO_MS5611 EXPORT_SYMBOL 0x7a1c1412 ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0x86aef05a rescale_process_scale drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0x90cf900c rescale_process_offset drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xca316f60 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd686700e mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdb2f3e34 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdc6b4e24 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0xbbe35114 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0xfd576c7b mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x2438c3f6 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x68ba9d4b inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x6740af85 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xacc19456 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x488bc646 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x9fe488f0 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 0x35c0402f 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 0xc4043d89 rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x23f3b770 scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0x4b6fe5d2 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0xf23e07a3 sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa01d0ecd ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa271f7a4 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa9d46a29 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xb5c9b724 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xe2a14591 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xe4beb85e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xe84ecc85 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xf0faa10b ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_ST_SENSORS EXPORT_SYMBOL 0x040bd8df st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x06a5839e st_accel_common_probe drivers/iio/accel/st_accel +IIO_SCD30 EXPORT_SYMBOL 0x6fca9543 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xd3fed169 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x97e98760 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x119750e2 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x2d08f6f0 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4b38bdb3 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5e2ce065 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7c24f75b ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x88f2464a ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x8f7c1711 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf1e044fb 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 0x08d8f633 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x0f402a09 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x184a33c9 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x21d0fbfe st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x23a25e3d st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x3807bfd2 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x3ab0d6e1 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x45ae287e st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x4e11195e st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0x584ccf78 st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x6880480f st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6b5417b6 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x7a2bef9c st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0x8c427a2c st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x92153385 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa4ce1100 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa9f37473 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xb9390d40 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xcbf79c7a st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xd803c241 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xe447e469 st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xf80e889f st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xf91335e7 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfe6aa2d1 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xfaba2cca st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x3a920074 st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x59809b29 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x18a5618b zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1c516794 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x37e52ce1 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x61a442d3 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8f90f0f9 zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf84e50b6 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ST_SENSORS EXPORT_SYMBOL 0x09ac804b st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0b2bc00c st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x170b81e3 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x30e42d36 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x35cef8d3 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3c777bdc st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x404b60eb st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x44104fe6 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5401ffbb st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x64b54b6b st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6b281ad8 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x6d4c3096 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7b698d63 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7f1cc642 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x86f6f5ba st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8e21e85f st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x9ca84ab3 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xa9e090fa st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xaf8fcf3a st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbde3263a st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xc3346987 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc5f5341a st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xd917f150 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe82c7ccc st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xea71899a st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf13f3ca3 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xb52a8c77 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x09c42898 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xec35a6da st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x59fbac11 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8f1273ae zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xb1ffcbd9 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xb6258ce0 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcb58e6d2 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcee07030 zpa2326_probe drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x10ac6fda iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x129f3deb iommufd_access_create drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x45c78d42 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4f27ad07 iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x53fb9ef4 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5c4123a0 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x6e401a47 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x73b2d912 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x7de02e6e iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xa245f6d2 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xb462da55 iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd565b827 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4e0b8bb1 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5bd47ed1 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x76edb929 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb8e73433 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd6a29a5c iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xf18b0881 iommufd_device_bind drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xa18f741a iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x065c32c5 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x07659853 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0db1a365 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0e5b0343 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x107ddf4e iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x778faa79 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x0052e515 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0408b863 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x04f1e73d iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x050f9a93 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0d73840d iwl_read_direct32 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 0x1843e21c iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1871410c iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x19a66d13 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x215e6b55 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x24ae3b4f iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x24c82f97 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x24d3a3cd iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x25919c16 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x17ec15f2 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1a7cbb0a iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1b327d82 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x226f0894 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x234e79dc iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2571605b iwl_read_external_nvm 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 0x27421b70 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x28269251 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2d7b0fb3 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2d8edf43 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x32b6575b iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x301b4de3 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x313cadd3 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x316c7a3a iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3443c6c2 iwl_pnvm_load 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 0x37755731 iwl_cmd_groups_verify_sorted 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 0x39cf54b1 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3cb9b49c iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3e04130a iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3ee813d7 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x42d73a15 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4483f26f iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x45e84632 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3977d618 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3a24df31 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b84584b iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b9118eb iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3cb22c84 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3e45bc5a iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3e817976 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f809f2c iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4085fef1 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4114dfc7 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x43ad8e01 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x469d76f0 iwl_set_bits_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 0x4b14218d iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x564ddf37 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4e465fe9 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4ea82581 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x514b6567 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x51a67db2 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5254e67a iwl_acpi_get_eckv 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 0x628aace6 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x640d623c iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x657ef7ee iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6ad24977 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6b19c640 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6bb7fa8b iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6c36f093 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6d760cd4 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6deee258 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x71ce20fc iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x75e1f128 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x761c77d1 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7639e4ab iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e169bed iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ee84299 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65ec9eab iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65f2f5ce iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x67e05454 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e9368fe iwl_fw_dbg_read_d3_debug_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 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x799c0fe4 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7c1c9cf0 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7d11bc3f iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x80324385 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x81d48962 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7b78e7f1 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x819273b6 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x823ef687 iwl_parse_nvm_data 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 0x85078493 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x852fbc5b __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x86b7036a iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x85d57128 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x85f14e95 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8677572a iwl_acpi_get_mcc 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 0x89946f23 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8bf09ea9 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8d70f73d __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x893c5638 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8b3946d6 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x91026b7e iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9113b050 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9b19bec9 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9b543169 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa4cfc859 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa8bd783b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xab07e397 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x91768f12 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9177fbef iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x91822566 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x96618de1 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x96ee65aa iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa286fd8d iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa3bc0286 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa95243e9 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xac872160 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb16066ae __iwl_dbg 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 0xb40e7646 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc6d4970d __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc5fcf7aa iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc76f2331 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcbd86808 iwl_write8 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 0xd164211d iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd693c1e3 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xda280dec __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdb786f34 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdc08e6b5 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd0541bf9 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd111076a iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd3f484c4 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd602e64c iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd83b3838 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdd4642f6 iwl_trans_send_cmd 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 0xe1bc2050 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe2e47d25 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe3c2bfec iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe17572f8 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe1988cff iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe7dbfa3f 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 0xeaa0aeb1 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xec661d91 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xecfb596e iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf090496c iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeb7dd6ca iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf0cdc498 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf47193a0 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf807ad56 __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 0xf92ecb01 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88dfd7f _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfbdd1935 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfe8b9fa9 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x45133ffc ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x74630157 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x10d14186 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x25460f66 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x262ec832 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x363ec741 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3b514f42 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4d5132f3 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x568fd5f1 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x715d5751 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x725823ee mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x85b5b0b9 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9bc9cd33 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa9371f9e mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xcf19a5e9 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdf42f94b mcb_alloc_dev drivers/mcb/mcb +IWLWIFI EXPORT_SYMBOL_GPL 0xff2494c5 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x05d6c641 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xaa71fb53 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0981b292 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2793f852 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2aa00f94 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x34880b3e mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a1852b2 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x55172786 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6f880c8d mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8788582d mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8d804597 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x92c8f6b4 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x96a2a144 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa3927ec2 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcba1a6e9 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe7f0f2fe mcb_free_dev drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x738c8341 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x8fd54a5f ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xd071c06e ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1e78845f nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x723759ac nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x80fc2329 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbb7e8faf nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd97e8666 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xddf1f3c2 nvme_put_ns drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x110caa38 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x14b03049 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x20f4c7b8 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x3372f689 peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4b5ebbdb devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4dd8e331 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4ea38e32 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4fee2317 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x50608253 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x62650c19 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x64dc55fa peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x69e75515 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6e3cc208 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x790cc17d peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x916a4907 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x91bda61f peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9e189613 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa4bb4b20 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xbce16609 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xbd0c5c47 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc61d43dc peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc7e6bf99 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd14d4aa9 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd26b0a5a peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdd8a86c4 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdf865f93 peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf23755db peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf488a308 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xffe02554 peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x2ccc2c32 peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x312a9635 peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x3cf600a6 peci_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x6b54a1e3 peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xddf935c5 peci_ep_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x000d1532 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x0d1f6b09 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x17d10f05 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2798489b pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x342e68bd pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3e0f6ceb pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x495bd027 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4de9d923 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5579e0c9 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x62180a0c pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7cb4b57b pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8518dfad pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8d9e0be8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9e71ba71 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xba086345 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe3619477 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe4a78e63 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeeaea5ba pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfb05a7c3 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1e37f015 sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1fe0bb1e sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x35c5dc8d sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x830b76fd sx_common_write_event_config drivers/iio/proximity/sx_common +MFD_OCELOT EXPORT_SYMBOL 0x251a7a81 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xbb080c8e ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x5f17087f ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6cb105c1 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x75c908d9 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x793e24aa nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x85ce62c6 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd3e1bd55 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd97d160d nvme_passthru_end drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0b5b27c2 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x13e278c5 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x176a2d07 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x27eadd9a peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x295bf076 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x36856188 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4387c954 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x48cdba66 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x493cf459 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x50e33b98 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x536f1981 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x53d70237 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x65e9fc02 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x683bc130 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x68d1d406 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6c4add9f peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9288387b peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xab0048c5 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xab8e6122 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc2fdae1f peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcac04371 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcd6612d5 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd3194535 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd710d7f6 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdd05809c peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xddbe88e4 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe8010b98 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf301d4c8 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfb229599 peci_request_data_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x10beb84f peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x22f12e04 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x2d6b2f35 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x53f85e08 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xaa8906f7 peci_temp_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x081e7d29 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1752db13 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1bd14dd2 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x21df42f0 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x34667c17 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x441f2457 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x60d9418d pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x615c7f72 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x64780112 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x72c2ec7e pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x80e9deee pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x94335edb pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa1fb219c pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa327191c pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbf8fb74c pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcc89787a pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd594c1a6 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xec29fe8d pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xef3d9e59 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x29ac8d35 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x317fae10 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 0xc4bbebd4 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc88e5564 sx_common_read_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x262d215b 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 0x62713b95 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8c1175df hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8f9c255c hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xf596a928 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x75e7d7b7 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x846e11fd cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xd929d850 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x42609c08 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xb92a797f hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xdde68840 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x3bbccfd4 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x5a59eeac cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x9b6214dc cs35l41_hda_probe 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 0x9e47a25a cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc7d487a1 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xec74b2a2 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x1876b526 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x1fc05409 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xa96a98c1 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xb704f529 cs35l45_pm_ops 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 0x5b4e746a cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xc7ef2b8e cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x204f3a8c cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x20556fe6 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x385d1e04 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x48b84240 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x8c7efae4 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9113d36c cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x96ed41ea cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa4bec299 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa88902f6 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x5c0c37ef cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xb5a13f72 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xf699fe3e cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2094510d cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x21eeaa50 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x28e2dafd cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x41e1b133 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4f465604 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4fbd00cc cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x51a5cfd3 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x8debb503 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa3f233a9 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa4cc2539 cs42l42_dai 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 0xd7931cdc cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe196ba23 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xe0516dc2 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL EXPORT_SYMBOL 0xaf721127 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1ab4ceba sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x437ce3d7 sdw_intel_exit drivers/soundwire/soundwire-intel +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfedf380f cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xfeac5393 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xb7ee9252 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x19c1eba2 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x24a1b7c1 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x76584240 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 0xb231cb67 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd24eaded sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x04f67785 dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1a500708 dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5dbd6ef1 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7d6ab447 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8ccbc75e dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8ec22d1c dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x90453468 dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc92aaf88 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdf91e63a dw_spi_suspend_host drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf4dbce35 sdw_intel_exit drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4c336841 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x79104024 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7d6fa825 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7ff6b987 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8493c808 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa53d02f8 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb7fe89bd dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe251bea2 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf681386b dw_spi_suspend_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 0x36c9cb89 ccu_helper_wait_for_lock 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 SUNXI_CCU EXPORT_SYMBOL_GPL 0x517768aa ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x544d7295 ccu_pll_notifier_register vmlinux 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 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 0x8813232a ccu_pll_notifier_register 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 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 0xa87f350f devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0xb159e62a ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0xbe8d8188 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xd050ca65 ccu_sdm_helper_has_rate vmlinux @@ -28022,25 +28025,25 @@ -USB_STORAGE EXPORT_SYMBOL_GPL 0x16d63558 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1b451a8b usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0145ba9b usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x03e2441d usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0b90b878 usb_stor_adjust_quirks 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 0x29c54e93 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2bb141ee usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x30119eec usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x38883fef usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x410bc259 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4bd3fa47 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4bfd52e7 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x515786d5 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5f4204bc fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7d525a1c usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffe19f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x89ffbb64 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9c76a5fd usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xacd3f65d usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbeb6ca7f usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc66fe576 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd14c80bd usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd6f7db7b usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xda4bd9ba usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdc29e4e7 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe36de1b2 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf06e7936 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x29a1b679 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x32f62f50 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x37ac1b74 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x46265751 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x497271f8 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4b4aaa54 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x647fd35d usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x65518788 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x76971fb7 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8043c31c usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8084e525 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x954cb92e fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x95fc204f usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9feb5bb9 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa027a04b usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xab08307b usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb42d85b7 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb636c6d4 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbae64e81 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbeb07d5c usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe69ec492 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage diff -u linux-6.2.0/debian.master/abi/arm64/generic-64k linux-6.2.0/debian.master/abi/arm64/generic-64k --- linux-6.2.0/debian.master/abi/arm64/generic-64k +++ linux-6.2.0/debian.master/abi/arm64/generic-64k @@ -1,121 +1,121 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x5979903e brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0xc674c8b6 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x1979ff5a counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x2c6c3214 counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x31b66106 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x749803ea counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x85a7dc86 counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x9c8640f8 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xa34a854f devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xa5fb1feb counter_put drivers/counter/counter -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x042ecea3 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x04c5bbd4 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0608083e otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x07e708be otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x081c0a36 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x08cf39fa cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x15b4c3ef otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x194c68f2 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3c189721 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x672f9152 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7673f3b9 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9f063016 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa07d8d03 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd65dda18 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd6f2089e otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe766775f otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfd288e31 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcdf1da99 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd689ae15 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe002f197 crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x026f78c9 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x02de383b cxl_internal_send_cmd drivers/cxl/core/cxl_core +BRCMFMAC EXPORT_SYMBOL_GPL 0x26a9eaf3 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x4b54bbc9 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x00cc203c counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x07636ecd counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x5b9d13f0 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xb39b9204 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xbdbb6c7f devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xbf7b2070 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xc33328f9 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xd95114c3 counter_put drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0a1d4087 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0d98a583 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x185da218 cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x20c8f4e9 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x278bcef0 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x2bb0956b otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3427b00f otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3d1d415f otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x45489413 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5c930ab7 otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x6de1fc60 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8951a153 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9e90ff1c otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa4237287 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xba46dbe2 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xc65ccb66 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xc7c798c4 otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x6f9cb1c5 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7bb9fe12 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe0f263af crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x045bb129 devm_cxl_add_dport drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x0aea36d4 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c15d2c1 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x18926482 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1bbd9ca0 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x201ffdad is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2288d5d0 cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x29d7d3cb cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x33b2e417 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x08261320 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x08dc1b42 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0c467834 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x11884696 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1aae4816 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e4c3d86 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1fbce7bd to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x250b7112 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29a23691 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2d839354 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2f6885da cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2fa4fb4d is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x42baacb8 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x447bec15 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4492a688 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x464d002e cxl_rcrb_to_component drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x542ccbc9 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x54fe6eaa cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6577122c cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6a6df5ec read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6e17713b to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4062f6db __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4141d5cd cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x42526698 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x42b1d423 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x49851ace cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x542586e6 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5d4447c4 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x606e3c1c cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66e8a661 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x69a37efc to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e06f6ff cxl_port_to_pci_bus drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x731b8f69 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x73c5fe75 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x75b4c9b8 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x760d8215 cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x775d1a9a schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7acf569e devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7c06f1d5 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7d0d8574 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7186b199 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71896e89 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73c05431 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7568c680 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7d08a29b is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7e8d9cc2 cxl_find_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x834c642a find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x816d2ad9 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x81b62b19 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x83736fb2 cxl_rcrb_to_component drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x85913580 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8e333165 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8ee0230c cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x91339e61 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x857631f7 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8abaedb8 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9036de93 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x957efbbb cxl_decoder_add drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9ac0a00c cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9dbaa793 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9f2238df to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9ffba879 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa1f22886 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa6b3c5cc devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xac3b6f41 cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb7e9e74a devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbdc8285e cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc2cb0a23 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc888e425 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcab1b018 cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd5ac90d4 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdcad61ed cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe25e1453 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe2f9ddb6 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe32891ea cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe355290f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe5058fde devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe8a3cfdb devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xeb3af32a cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf34960a0 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5588c18 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf6eb2689 cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf9efe15d is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfc68d670 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfd297a46 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfed8fb84 cxl_map_device_regs drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x2bc0e842 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3dfc8608 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4df5f2cb dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x561a0741 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5e1fe5a5 dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x63f02821 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x7185fa5f dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x73907150 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x755483d7 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8862fd67 dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x954c5f3d dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9a6ea6b4 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa439bdb1 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbc2ae98e dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc0b408f2 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd202ca46 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xda5489aa dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xde11a565 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe05e86c7 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xeb3c1238 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xfc3d6df3 dma_buf_map_attachment_unlocked vmlinux +CXL EXPORT_SYMBOL_GPL 0x9ca4fe04 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9e7d45ce devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6a397b5 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaa001d2c cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xace65783 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaddb34f4 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaeca391a devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf74f857 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb3e85e05 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb4141b5f is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb593e73f cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb5d596f9 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb6cd61dc cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbeabe65 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1457b08 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb468738 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe21c29d4 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5f7489a cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe802ef89 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe84b782c is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe871a38b is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfbe51627 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfcfb32e3 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x00d29a5a dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x037a23f5 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1e0f0e8e dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3174b7dd dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x34cbbf81 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4f02c321 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5eda60d3 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6405397e dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x733bf8f3 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x74870c8e dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x78e179d6 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8523f083 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x93603a20 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xad3822ae dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb97b9830 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbcc8580c dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc02b970c dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd2fcb638 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd6f7fafd dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xecbe2c4c dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf89e8def dma_buf_fd 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 @@ -125,7 +125,7 @@ EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock 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 0xb1d6d33c ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x9440402c 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 @@ -165,71 +165,72 @@ 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 0x07b8d040 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x8eee4ed5 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x9b6c642b crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xb54e3ee6 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xc87e348f crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xecc9a1d3 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/sha3_generic 0x5d92c11f crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0x6d0f9d6c crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xa5cc2173 crypto_sha3_final -EXPORT_SYMBOL crypto/sm2_generic 0x32672ef2 sm2_compute_z_digest +EXPORT_SYMBOL crypto/nhpoly1305 0x0212c347 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x22256907 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x33dd1a96 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x6fbe8375 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xac85083b crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xcdb777c3 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x35ddc1e0 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x9dc2054f crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xa25fe570 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0xbc20e415 sm2_compute_z_digest 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 0x1a1df06e acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight +EXPORT_SYMBOL drivers/acpi/video 0x6b1853b1 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 0xb56e8e42 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xc0973cf5 acpi_video_get_levels -EXPORT_SYMBOL drivers/atm/suni 0x5009ddc6 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x11394f4d bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x47c48176 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0xf4bb16e3 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2aa8801c bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x92ddbaa9 bcma_core_dma_translation EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/block/paride/paride 0x15e5b6ff paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x3a3df871 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x3e9e5229 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x0244189d paride_register EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x5ad5f6ea pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x83aeb921 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x8abdc9b5 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x93234220 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xa9e7ef16 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xacee145c pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb082c1ab pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5443a2e4 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x8acd6c08 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8b49cdaf pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x8cf41dbb pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x9a37755d pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x9ce72d29 pi_read_regr EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xbe87b714 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xe9fb40e5 paride_unregister -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1d3dbe09 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x22d7fdf9 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x44399a82 mhi_sync_power_up +EXPORT_SYMBOL drivers/block/paride/paride 0xb4aa367b pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xc2f3cb35 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xc462bfd8 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xe0ddc077 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xef2edd49 pi_do_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xedccdb6c btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xf07bd5ed rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x1ac3bb75 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 0x0aa4c0c7 ipmi_add_smi 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 0x4aaf227e ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2bca17e2 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 0x5d11c382 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6f3dbc28 ipmi_add_smi 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 0xa1f9b7e0 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 0xcd48bdbe ipmi_smi_watcher_unregister 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 @@ -238,53 +239,52 @@ 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 0xfd1bf068 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x01ccaa46 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0cf47055 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x12e9c38e kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1915dfbb kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27e269ef kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x34ed9dc9 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x470e913a kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb6d86355 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd2258c18 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd8bd7659 kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdfe2d7c8 kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe78227ce kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xfdd0e264 kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2d9dbea9 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x432c12f2 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x793c1db8 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb9cfdd7b st33zp24_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0877659f xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0da3ebda xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6e7f6483 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x023cdafa xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x11287ce2 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x27b75a67 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x306d44f5 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3cd18607 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3ddf82b5 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3e4453fe kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa5010428 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xab1d6810 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xbdcbd3ec kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xcf84e47e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf10b396c kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf3339461 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xffa25386 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2a93eb17 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5f392ab8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x645305ce st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xbf44ad61 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x82242d36 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xaec7d21f xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xcdbc6367 xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x889a732a xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc71a8184 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x63cb50b0 atmel_i2c_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xaa3e6b81 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd8617f92 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xfd3407be xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x171b8830 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xa590dfd2 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb45cc5c5 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xab8009b7 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 0xeb5881a5 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x113abe8f 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 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x59b21250 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x63a2996b caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam 0x657bfa23 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0x9ed8f9b4 caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xd844d866 caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0ede18a0 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1fdbf2c5 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6ff0b7fe caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd0fe30ce gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xea8054b5 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xe54d44f4 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xe5ef4afa caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x35b2ed3e gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5e3a1a4a split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x68080111 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x88a59c49 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xed4845dc caam_jr_free 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,684 +303,684 @@ 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 0xdf608fbe dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0xfcc9a096 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x0f30dac5 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x5afdf9fc caam_strstatus 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 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x9062d6f6 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x8cb57c1f xilinx_vdma_channel_set_config EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x159d34cf fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d79b677 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f8a69bd fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27ab7d78 fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c786e90 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3678f48a fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x39fc974e fw_schedule_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 0x3fef19b9 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4058db56 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4192b136 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a9412df fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c454a8f fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x544ac3ec fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5675c6e5 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3fd7a53c fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4367e3a5 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x48dc73b4 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49f9bc18 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x53140b01 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x547ff352 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x629de97d fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e46eba4 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ee17204 fw_iso_context_queue_flush EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa42b2467 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8d28be8 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xac95d7eb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95d1e922 fw_card_initialize EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaff24b20 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb3a36d4 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdfab6c0 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc538031a fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc652c51c fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc70b23b3 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc3d8a4d fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xde63f338 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb15d2519 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2aa9ab0 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb89e4492 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9aadb18 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xda4756d8 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf48200e fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf968fd2 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3bd1114 fw_device_enable_phys_dma 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 0xeb0f793c fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9400bdb fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf970cf7a fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9f6d920 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe8acd94 fw_core_handle_response -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x66b27756 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa4b02a93 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb149f6d9 imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x9523f318 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xe571bfb5 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x583d83de sysconfig_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9b3ff22 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xefd284d6 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7cd2e07 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc812657 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x357f1dbe imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x39d28032 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7a6feab8 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0xa4e78b5e dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xfbb52659 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x39f6d4fc sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x003594ff drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01506a8b drm_dp_read_lttpr_common_caps 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 0x02aefd3d drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x047b148e drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06700d8f drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06962747 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06a9a766 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0297615c drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0554cbb3 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05deb0d5 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x063d33b3 drm_lspcon_set_mode 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 0x0b864541 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d299184 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d8f1f2b drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11fdeb1f drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15e032b9 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x083df63a drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c4e98a4 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13805d6e drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13eda5d9 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14f40fe8 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x156427fa drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x158f402d drm_atomic_get_new_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 0x16248189 drm_dp_mst_get_port_malloc 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 0x176e73f0 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x17c2a74b drm_dp_mst_topology_state_funcs 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 0x1b6286fb drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1c80c771 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1fe0756f drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x227244a3 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x232ecd9d drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b99f0c6 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1bd17c0e drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1ce31736 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f0a3dea drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20367611 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21ad827d drm_dp_pcon_hdmi_link_active EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2419db7c drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25bfe777 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23b0648a drm_panel_dp_aux_backlight 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 0x277b9ba6 drm_atomic_get_old_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c50596a drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2cbcf03b drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e08e8cc drm_dp_mst_connector_early_unregister 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 0x30f38fbc drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34292377 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34b57594 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36aa8dc3 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36fde329 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x374ce511 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3509d5b7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3650298a drm_dp_set_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 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b9e2827 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d64542c drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42d51119 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43201201 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40726097 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4360cac7 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43f9f192 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x45e87b7c drm_dp_read_sink_count_cap 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 0x46512717 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4786545e drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x482e8e35 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e7f76b7 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50e52d05 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51d30896 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x538878f1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x46617e9f drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x46651fd3 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x46acc6d5 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x46d78399 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x473dd9e6 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x481b866a drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e78975d drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5113b53f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x516268a7 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53e67c31 drm_dp_read_lttpr_phy_caps 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 0x550f2ef7 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a19c50 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56d82fed drm_dp_set_subconnector_property 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 0x58eeb063 drm_dp_pcon_frl_prepare 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 0x5c1fc6e0 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5cb2bb1c drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fe50fe6 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x624724b3 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ae5d786 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c174457 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c4e4ffc drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fb524bf drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6131a637 drm_dp_mst_update_slots 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 0x6429b2a7 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x642d114e drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64363b3b drm_dp_vsc_sdp_log 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 0x65640376 drm_dp_stop_crc 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 0x66f1056c drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66f45444 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67315ad3 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x661ad457 drm_dp_mst_topology_mgr_suspend EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68fe36a9 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69239221 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x698fc70a drm_dp_cec_register_connector 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 0x6e2d8a26 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ec10ddf drm_dp_dual_mode_read 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 0x7081a137 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x726e8688 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72db2165 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7224a482 drm_dp_cec_unset_edid 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 0x73b0a207 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7464e4dc drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7670403d drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75a6c540 drm_dp_mst_atomic_check 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 0x7a23abfc drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7eb41805 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ed1acea drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x800e3d68 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84283c43 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x857082f1 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8709d510 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87bc0ecb drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8988e29e drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b75e95b drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x789f8400 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7b1ce92b drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d603807 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81040a10 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81534ecd drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x83664f0b drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89c1ec14 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b75b1c8 drm_dp_read_channel_eq_delay 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 0x8dacc631 drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8de079ec drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d9b06a3 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f998d8a drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9195a142 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x929d7d91 drm_dp_mst_root_conn_atomic_check 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 0x9e332b0d drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e51a11b drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9eaddaff drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa13c5ef0 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x962e85db drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x987b741f drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a9f9cc3 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d69329a drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0141843 drm_edp_backlight_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa350f7c4 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa44063a8 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4946fee drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2b60913 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5d42a38 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6039acc drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7e200ab drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa979bfde drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9a5f690 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab3e3c38 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xabb2a35f drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xae79bc7f drm_dp_mst_add_affected_dsc_crtcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0b175f4 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4580aee drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb715b388 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb81c2dee drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9c4b962 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba2ce971 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc748325 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb37a9b36 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5976746 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb721feb9 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8708fef drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbad37844 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf1a40a8 drm_scdc_get_scrambling_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 0xc31027f8 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc522c5ad drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc074ff9b drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc289cfc2 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2cf4716 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc374a09b drm_dp_check_act_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 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 0xc961a48f drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb40311b drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcacfd147 drm_dp_downstream_mode 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 0xcd2fcd74 drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf9845f6 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0730319 drm_dp_mst_update_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd371d61d drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf93949 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce1464d9 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf18a130 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcfcb3bba drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1cb250f drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3b0ca8d drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3b8ddbf drm_dp_atomic_release_time_slots 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 0xd6ca1402 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7916067 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb5f42ff drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbc62c4c drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xddfbba16 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdef48fd6 drm_hdmi_avi_infoframe_colorimetry -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3a79f79 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd655094d drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8195a47 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda0a207b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe08736bc drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0ea76cf drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3fa2981 drm_dp_aux_init 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 0xe6b12683 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7aabd17 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb061f06 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb35ad1a drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec526593 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed0b14e9 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeda72993 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8e9d5fd drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9ab9974 drm_atomic_get_old_mst_topology_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 0xf5329e93 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0dade3a drm_connector_attach_content_protection_property 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 0xf6a30bab drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf99b852b drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf79f6752 drm_dp_lttpr_link_train_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 0xfbca5896 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc12e6dc drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd230d92 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd6a0771 drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b9163e drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x022414c9 drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0242614f drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x038d7e0f drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a90bb9 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0025365b drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0071acbc drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0158b94b drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e0a40f drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0413828d drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04507650 drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0481ba19 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ba62b4 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04eb2daf drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07317ae0 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0754db1e drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x076ec04a drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d2ba82 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ee7e64 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f2ef36 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x059ef9e0 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0720c60f drm_connector_attach_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x088c15f9 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c68f95 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cac867 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0541c9 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x090e64be drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0912765f drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad665cc drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7c6ec3 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdbd559 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf2e627 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c71a3c4 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5f16cb drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ab2971a drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0acd5499 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf02742 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d15131f drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d159880 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d770c0a drm_syncobj_get_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db74bf6 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e5526e8 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8cad16 drm_gem_object_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ee8c99b drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f225f5f drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f32a33a drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3fa331 drm_connector_attach_content_type_property 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 0x107727ab drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff58fc4 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x101be37e drm_mode_create_from_cmdline_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10fc9479 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x130cd9b2 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15f26d84 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1651567f drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x173f3d1d drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18bec9ed drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19118611 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x193eb81b drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e10909 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ceab22 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1166563f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1168bc15 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x124a279e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129a3ce6 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12bd6751 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130dfd43 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a4f29d drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14edb7a9 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15112c3b drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x151460a8 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15740292 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16831266 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x168e12fe drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bc3264 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f41ba6 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1735760c __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18052407 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19a06da1 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d6921d drm_panel_unprepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf6d070 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5430db drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca2c18b drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd5b928 drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d08eef6 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d0f1b0a drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d25e86c drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2e6faa drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da4bd23 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2c3a90 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6b0749 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b64ccf drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20f12d8c drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21226984 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4570e5 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aab0dee drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1adb0f86 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c1839d1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1daebc2d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de4aa1a drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dec5c76 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f37f677 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f46a7a0 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f63282a drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc2cc0f drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc2f92a drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fe39fd8 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2069f60a __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2074626c drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x210ba1eb drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21410b59 drm_connector_attach_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2276010e drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22f51a93 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23440f2c devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x245618a4 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x223871d6 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22bb052f drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22dfdc68 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2357b9e7 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23681d43 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237e1923 drm_panel_add 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 0x254b7ada drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25516d3e drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2572e91e drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x264be9e5 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2656c176 drm_mode_create_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x278fe632 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2795f44a drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c11dd1 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2844ec5d drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f8501b drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2919fd86 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x292a3bf2 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a91d07 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29afd023 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29be2ec8 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28cde552 drm_crtc_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f8d295 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bab7eb9 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d909a86 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9337ca drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1bf176 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4d23aa drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2abeac93 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8fad38 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cb35e3f drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da4dfb3 drm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eee0f46 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f13c3b1 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3c5a74 drm_object_property_get_default_value EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fc4f917 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe1382b __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f5a632c drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x319fbd37 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a7f4f1 drm_privacy_screen_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32234efd drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32959c3f drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32448ba7 drm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x339f33b1 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x344b03aa drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3495a846 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34c7514a drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35049d28 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a0d607 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x369d81ec drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b9bd93 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33d33439 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35cbbb56 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35f78595 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3724aa53 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37583696 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38567432 devm_aperture_acquire_from_firmware EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d8cb84 drm_crtc_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39ed3307 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a2f2c5e drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fd78ec drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a277b37 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9b882d drm_av_sync_delay EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e42ae drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b47efc2 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b763be5 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bbeeea4 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2612ba drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b48bc8e drm_connector_list_iter_end EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca79669 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c735331 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c745853 drm_mode_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cfacf1e drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3edb78d6 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e44bc30 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea1747b drm_client_buffer_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8ba5b5 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb739b4 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd33a4f drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a59eed drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x415f529d drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4220f07b drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42665f1a drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e4be97 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4374b18e drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43df67d3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f51fefa drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f79795a drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f902148 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x400c6ea1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b275e7 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f60fde drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x422f6ee9 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42da0f75 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437828a3 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f60462 drm_vblank_work_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x441a9810 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x443c3aae drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x444a09d7 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x444ff9a8 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4467a100 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4462b311 drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a1f6f5 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x452df35f drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4531ba81 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44f8a204 drm_gem_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x462640d1 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46997c62 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46fd633f drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x476d83a5 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x482119fb drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x458da55b drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x459c030c drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d5e1ed drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x465e53f3 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46656fa4 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x472d24c5 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x474b3468 drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f5acec drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f869fe drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499349db drm_mode_create_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd5d26d drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c1c9c6d drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d0193c9 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d524f51 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d5fd58a drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d68b007 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd8f70c drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d4a4d8b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4daaaffe drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dccc262 drm_mode_get_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4c2729 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e7f3539 drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec7cc24 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef23dd6 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff039d8 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50326a0f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e42143e drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e490594 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e550371 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e84b814 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e84e34a drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efacc01 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f198257 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fee6d37 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50102077 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x501267d8 drm_gem_vmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51293680 drm_mode_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52067d6d drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52140400 drm_privacy_screen_register_notifier EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5240d316 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52b239e1 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54753a96 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55673fd4 drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55daf3d7 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52909480 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5372c861 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5386228b drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546149fe drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e70cc8 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x552b673a drm_edid_read_custom EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5692d521 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56776d08 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x573d7da3 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57684b75 drm_connector_create_privacy_screen_properties 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 0x5854f256 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58483b59 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588e38b7 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e97d6d drm_atomic_get_connector_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5961edc2 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59aa8bfb drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a90c83e drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac179eb drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5d904a drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be16b69 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3fa401 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5d080e drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d764446 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e194fb7 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e5e307e drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5edf41ba drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f39c2c3 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f43082a drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f4c6b88 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5929fe5a drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5950ca4c drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f61d31 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0f32f1 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bae2012 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bce83bf drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb8cf3f drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd165bb drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f757dd6 drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60e1fc2b drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x619e7ab9 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x637cd1bd drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63c21b42 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ee47e1 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c9e841 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65665884 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fa51785 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x600f39c8 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a61622 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6255c1ad drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a8562b drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x644898af drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x645f7123 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64af47a4 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x652c9d59 drm_modeset_lock_all_ctx EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x660eaa8d __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6882b94f drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b8e7ff drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66af321f drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c91e73 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x675386f0 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x676faee8 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682a4218 drm_connector_list_iter_next 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 0x69a9e0ad drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x695080fa drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ba66b2 drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f7a07f drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a5d00a6 drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1f69d8 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b54f913 drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b7c1ed6 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce578d4 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d3d47e3 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea43631 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7030cd28 drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cfdc42 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d2d80d drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d2f28c drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x711c59a6 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x729e990f drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7307eaaf drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73fb943a drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a03c23 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6afcfb39 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bbf43e4 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c13a2c5 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d8cdd84 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e7d35ca drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff63ad1 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702f65fd drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d697ac drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71562579 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71bdfb5a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c7a9cc drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d8b171 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73101f78 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x739ec84b drm_compat_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x750c4039 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7513f4c2 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7544e011 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7589608c drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x769356f0 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77db7924 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7586a3c0 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75cc1e37 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c17ef8 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78aed223 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78dee7d1 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f2d4f9 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7973dba8 drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0b5b64 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6a3fe1 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afc0f40 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79f0354a drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b470b5f drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bab6025 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc48b32 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdb8d1b drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdbb238 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7be3dd7e drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cec9df5 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cfb49d2 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0f3d70 __drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dca183d drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c6fec03 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cbbef7d drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdba5c3 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e7791be drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ea7b76d drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb3209e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3c6b8e drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e513d57 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb1a424 __devm_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f0366bd drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f8ea78a drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80937802 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f69712 drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a8925d drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b29d5e drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f792caf drm_client_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8212f6f7 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8268bb31 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x853e770c drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x859ce432 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x862884a6 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x864a3dff drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8690c05e drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87eee355 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88332e88 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x887722c2 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b36fa2e drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6dce0a drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b70a8cd drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b82ec1e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823a6081 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x825354f0 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8317e12a drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84163287 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b0d59a drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86818ff1 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86a998f1 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87776ae7 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d37707 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8899f62f drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a0b634e drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b34ff60 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b97aa59 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd7c834 drm_atomic_get_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dca48fa drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddd95fa drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9a54d1 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fd42514 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b874eb drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90bdfc80 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91067f20 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ad4295 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91dfd429 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f8d21c drmm_mutex_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x932ff03d drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9612c451 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x979093b7 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e0bae48 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e27dbb0 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3ea380 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e470ab7 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d48e54 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91361024 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91eac4fd drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92b92960 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b4ff60 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94326dbe drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ba2794 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d36fb8 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96969249 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97499cb9 drm_vblank_work_cancel_sync EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x987a13e3 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x990b473c drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99d2da26 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a24a3a2 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7aeaec drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9877f8fa drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0f5f22 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a827178 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac5fdbb drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adb3708 drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b62a9c8 drm_crtc_check_viewport 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 0x9bca0bc7 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bde58c3 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfe03bb drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1ca30c drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc17f48 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c007090 drm_atomic_nonblocking_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cf9b6ae __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0c44fe drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e095ec3 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb17de0 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d172720 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e71b857 drm_gem_prime_fd_to_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdb92e7 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ebb5ba drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa230c001 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f887d61 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0406da0 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17dd990 drm_atomic_get_new_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2745457 drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31fedd5 drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3cddea8 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46868ef drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4898009 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a0b1c6 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61a1088 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa661a71e drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7156436 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8847fb2 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa39cf261 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa45349f7 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c65384 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4cca6e2 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa57d1da6 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa64c6576 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa690b154 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b62f62 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa795c79a drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8050acc drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a7e94a drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ace3d0 drm_property_create_bitmask EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab035aa7 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac14fc34 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac32f46b drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5c3829 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa983ae9f of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa0d94bf drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabb87cc drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6f6920 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd1203c drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad423880 drm_atomic_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadaa360a drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7d63a9 drm_privacy_screen_call_notifier_chain EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf53217f drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb024d07d drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1073d7e drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae8153ab of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeb6aa81 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf07b2c6 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf403ded drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf49af4f drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06da8e3 drm_panel_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c207d1 drm_privacy_screen_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb24e4afd drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28bf9ec drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28e5df7 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb281ee33 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2adb9c5 drm_crtc_vblank_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3dc5564 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb397ebff drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb436bd7f drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb494cc21 drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4bdb63d drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb511a219 drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a63b7b drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b0794d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e623f2 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4069e05 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4926340 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb504124c drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb54d913e drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5985bb5 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e8c151 drm_panel_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7cda521 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84e55f0 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb89058a5 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e17f93 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9476c2f drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75d2b5e drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85cbacf drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8eef10e drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb91a489e drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9907f51 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c13645 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c49692 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c8f664 __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8be9cc drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab1764a drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbdb476c drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0aa37e drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc0b705 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd85b45c drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3232c2 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad5f078 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb9d9f24 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb77a5d drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbb4c31 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbd01412 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6cb198 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9bf6a0 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd883d9c drmm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2af588 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1294237 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc150ea08 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15bd59a drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2001b9d drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33df579 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a9efc7 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c7bf83 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ce008b drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5316bda drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc557b343 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc656ad6d drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfaece8 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf3d771e drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0172951 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc01e5932 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc11ef117 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f4fd57 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34fe566 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a9172b drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ba296e drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59c80fd drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5de20c1 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7038ce9 drm_framebuffer_lookup 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 0xca549889 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1512fb drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc12a8b3 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2fbca6 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c1ba94 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5b047f drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb3568aa drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc48448 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd7491b drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbee37d7 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc706f27 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfaae79 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4f498a __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc3b67d drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdca93a4 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf498dce drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe2b8cb drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01087d5 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03c2ed8 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04615dd drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0dd4e45 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf00047 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff4242d drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd02ac9c4 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b21947 drm_master_internal_acquire EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ea9402 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ccaaec drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35eb287 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd441143a drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4af0f24 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5207d3d drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd641e801 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14ac530 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ac183f drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd335c199 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41e8dc1 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd51df580 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b0af9c drm_master_internal_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6849e88 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd696ad6e drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6c27d44 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d93bf0 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd746da10 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a2fa6d drm_send_event_timestamp_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a4b4e6 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8f9fdb5 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90f815d drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd983c3de drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7e2381f of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e42f5c drm_gem_mmap_obj EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1a2b8d drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5bd78f drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc42683f drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7c8a71 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdce601d7 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde36f9a0 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde74ff8d drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb04d156 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb3370c2 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb6d23b1 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb982310 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb9e2920 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbde98da drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbee5d8f drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8444d0 drm_property_blob_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf48e0e9 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5d82dd drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa90bed drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0dcdd15 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e18062 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ecc4a0 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12cc4e6 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22d436a drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d40bee drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e630af drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f5af7a drm_sysfs_connector_status_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3306b5f drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe35207f0 drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41c49cb drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44985f9 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a95956 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4edf48e drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe546c691 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe568b427 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c3fdd1 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d1b77b drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe32a2e62 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe562df32 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c87b30 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6579034 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f2b109 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe69629d2 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d23d9e drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e0fbd7 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe815851f drm_mode_object_put 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 0xe8b11ce8 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e52c94 drm_framebuffer_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebfe4ade drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec80eb53 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec825f37 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec954db8 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb6e682 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecd78cb8 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9fb6e0 drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeddc5f71 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1375b6 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee18b04f drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef27f4e5 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb974b59 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc35e15 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc3b9b6 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe2601c drm_crtc_vblank_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08bd699 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ee2880 drm_dev_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf142f290 drm_crtc_vblank_count_and_time EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d7a246 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3990fc2 drm_syncobj_find_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf530351e drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56d66ae drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e5e33e drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5fac5d7 __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7aab227 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf435253b drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43d8706 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c1e9dc drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7035f0a drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ec69b3 drm_atomic_print_new_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d808a5 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a7cd32 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa56d777 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa86a7ae drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb164219 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd68572 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc2b14da drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc6520a drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd280968 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd543f48 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd61e604 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8854910 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa9fa42 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbab4381 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb222bd drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc83a4dd drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca4afb1 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8d2fe0 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe36c3d9 drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed642d1 devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff92076b drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef403a6 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffb5ace0 drm_crtc_vblank_restore 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 @@ -990,434 +990,434 @@ 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 0x2a6dcc1e drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x371fc2b2 drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038e89f3 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03bafd53 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a37ab2 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x083f18b0 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0865ca3f drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09925388 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a61e7d5 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c66fa55 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6a3736 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da9ffed drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ebf1665 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x106f9f1f drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11a41e2e drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x8bf6a4d2 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xe2097560 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c282f9 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0761a942 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08098277 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac76429 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b85bdbe drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b962749 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c3cbba2 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d31af0f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eacd54a drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ec7da9d drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x111b695d drm_atomic_helper_check_modeset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12af974a drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x133ab0e5 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13485950 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1375d7b5 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a2a482 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14bba8ef drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15664fd0 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16ba310d drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17526697 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x185753e5 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x192ba408 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff02149 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x214b4c2d drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16f16a30 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1784d39f __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17938fbd devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1846c9ad __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18baa49e drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c4f9615 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb938d9 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x208cb93c drm_fb_helper_cfb_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x218983c9 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a39243 drm_atomic_helper_async_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f8703d drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22bf21e9 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x248bc0b1 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26c0389b drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27292466 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x275ecc0a drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c91f47 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x296cb294 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29bacad6 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cabfb76 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f81c7a drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22dedeb9 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26194016 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26335366 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b20cba0 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2be59d60 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bec37be drm_atomic_helper_update_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x333ace19 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334cfeb5 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3499de8f drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34be9594 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d426c5 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x356c5198 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f46595 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x369a088f drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38208691 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x389e185a drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39f577c6 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b8bbffd __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d494da7 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e086169 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f54d7ea drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdadf1f __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4202b212 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4362cf00 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b24141 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454d75f4 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46729516 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x473804db drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d9bd2e8 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e33025c drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e58763c drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e820816 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a9484f drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52deb178 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5311a641 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5351d1ba drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dcab573 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e67a2f8 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f4f2b30 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x310a0c32 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x328e378f drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32c32542 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c020c7 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33f99a96 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34653d1f drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36418c19 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b6cde3 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37e766c1 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a95d674 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2cd3e2 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c089abc drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4e22b2 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x406e946a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e46ba7 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x412308f1 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421146d0 drm_fb_helper_cfb_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4343e5a9 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x435bebbe drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445a91de drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b984b7 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46078bed drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x477ee0ed drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x483a0bfd drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b0fefc4 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c18236a drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c707c6b drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c72f36f drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb47eea drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52007f72 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54802447 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x549315b8 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54ffc964 drm_connector_helper_get_modes_fixed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x566f53fc drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5784a8f4 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58382f32 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b8f5d3 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5948a873 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ed72a4 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b28ec9 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x561daee2 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5887dd34 __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 0x5c04c069 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5debac9f drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f08ed17 drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61983b9e drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61b7a3b8 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67ed9d42 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a1d8ff __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6962f334 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a5f1508 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b105865 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a826d51 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5522d7 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b878192 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c9d2293 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf4e31e drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d335df9 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d64243f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ebf4e7e drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f43ff23 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60994f7a drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60a2e1d3 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x625af754 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x638e86c1 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63e91de0 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6621e949 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68386d9a __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6954e421 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b4e29a9 drm_atomic_helper_check_crtc_primary_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b86b084 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0fe60c drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d322956 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcb1de1 drm_helper_crtc_in_use EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71348aee drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71875569 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7520c15c drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76604157 drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76bb8959 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ccc3dde drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dab96e2 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e03545d drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb27d63 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0c02ef drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f5a4aa9 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x806efcad drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e34859 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fb7eb3 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f44f5fa drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f527ded drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7839ec drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fa14b0a drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7387cbba __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75535611 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x774445c2 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77cc37b2 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a06fea9 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd52a8a drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2d1843 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e4e78e0 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ebc6d50 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80528f6b drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81100a21 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82eec56c drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x834261ed drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8349c4b2 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x839a5464 drm_fb_helper_sys_write EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e90b98 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86e376a2 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x846228f8 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84c16859 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x859a70be drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8632812a drm_atomic_helper_plane_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8904251a drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a98596a drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba15fb4 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c0c1a4f drm_fb_helper_cfb_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d8c3ef3 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da3235f drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db452de drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f77d169 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x912ce9a0 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c76a66a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eaccca4 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f9a558f drm_atomic_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92f13823 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9318350d drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93df82bd drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x941b4377 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96efded0 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9728777f drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d00134 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9261b155 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92de7d2b drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93019038 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94698103 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96037c74 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9666a8fb drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x969cc6c0 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96cfc5b7 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9746f8e6 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98d5fb03 drm_atomic_helper_cleanup_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cde5731 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5a7ea4 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f369aeb drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0158a31 drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa03752f5 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa153eec1 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa16da871 drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa479a0db drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50e0c48 drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7b9c312 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa81dc199 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaafa8672 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacd3189d drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad383fde drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae4d28e6 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b682db8 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bdf8053 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c034fdd drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c4e5658 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c5cd7d6 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cf25ec4 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d789fab drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f829823 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0592c19 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f74cf6 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3cfdeef drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3da3d35 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa60a33ce drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa902c7f4 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa98c8d0f drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9aca27e drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa771463 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad48fac1 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea07238 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaff895a7 drm_gem_begin_shadow_fb_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d60343 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e5bd08 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2104e84 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb258838d __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2a943ae drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb565d838 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb661ff13 drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67649f0 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb357a31e drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb45b3e72 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6875159 drm_fbdev_generic_setup EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb962135d drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd0e1b3 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbca3e989 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf17cb5b drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4cf1cb drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfed1105 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0ce2f70 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2639eb0 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc302e193 drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc304db07 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fd37d2 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb580619 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfae8fd7 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc518d9dd drm_atomic_helper_crtc_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6fffacd drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc769fb2f drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8d83907 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8138776 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc878b07f drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8f20145 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9c64e3c drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca07d0a7 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca78d8d7 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcae889b3 drm_gem_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 0xcc2ee096 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccaf6d9e drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda92271 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd51306 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbecf52a drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccca7ef1 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcced718b drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd2ac7c9 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd5612d9 __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 0xd08e5bea drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1888a98 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2ff1660 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd45d5ca7 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c3b2be drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6376777 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd79bef86 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd87b95b9 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc13d550 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd34168a drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde468828 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0072adc drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1de60f4 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b22cbc drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3ad6f2b drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7729f49 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8db8934 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9f64f0e __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea5692b6 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb10999d drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed1c691d drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04e44fb drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d64abb drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf22eabc8 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf266c320 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b43a8d drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3271f50 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf327c838 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38cb96f drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7a2884f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bc3f61 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83376cf drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8672c7b drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88a6dc1 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2c312e drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfda516ab devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfd82ed __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa67e4b drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffce184b drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x021ebdb4 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0e351fd8 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1c6f8023 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x38854487 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x575e50b8 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5a15101a mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a733dba mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8779b4a4 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8db744be mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x90528e46 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa07a711d mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa54d602e mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb4591f2b mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc6d55e19 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe14c5312 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe8cbb0f1 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf745f1fe mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf8bf4ca1 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x21ac4bc7 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2fb19afa drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x34457606 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x410c5b62 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x50ee94b2 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x80ac3362 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcde4581a drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd465bb2e drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdd6d7d5d drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe3ad8d0c drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x29a6be11 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x62669c72 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd28b681e drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdcfd028e drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe813868c drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x13365635 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1e4534f6 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2848cf36 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2bfabea4 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33134398 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x42eed031 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4ee0732f drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x50625c90 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a68d763 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x615db81c drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x78555034 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f718668 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91910364 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc197914b drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdacca0f9 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfbc1fb5a drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xf0aa9990 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02aef2fc drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x03735467 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04d6e179 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06994a99 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06c9ae5f drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08c25042 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2edd6a42 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3328c728 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43e7d42b drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f558de3 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a8d49ce drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aa5307b drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cf10c35 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f047d89 drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9844ac21 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3ab4b5c drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xabb2dba9 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca4ae767 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xda0de242 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdedc2853 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0594d3a drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe128f159 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe12a75e5 drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4d8c35d drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x30c20828 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5fc37148 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf6d3d58 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd16ece2f drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4bed645 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd598b431 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9255626 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd952266c drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda57db1b drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdabd0c8c drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd02507a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde5010dd drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdec13f6b drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdecef2ba drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf88b0a0 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe26b09bf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe348bd61 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8a3e7b7 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea07eaba drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb73f277 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed74cb41 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedd0c8ea drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea85261 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef307449 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef5cbaca drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefcde2bc drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d82e2a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf359746a drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b108c7 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf47696ea drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5805272 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6383b9b drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7771314 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9b11f18 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfae89919 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb6e84ab drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd010d15 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfda747e8 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffdb7c30 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x052db343 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4008e03f mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x482c3cce mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c1e85dc mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5ff5a9d2 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7825f85f mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x84292810 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa1ed9170 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xabd5bacb mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb36ce7df mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb5474b60 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbad0abd0 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc0b5dd3 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc337f449 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcc1754e3 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf091f443 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf2670558 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfaa21133 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x17de1933 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x28eb5d7f drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x35694f83 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6fe6179d drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x71e043b7 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x85cf69b1 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x939a4221 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa3771d0a drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xaaa7476f drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdb9915fd drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8460c858 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x849b11f0 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x97926dab drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb8541370 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc99cc638 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x01f0fa3a drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x106af488 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2057fdde drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x522c844b drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5acf91fc drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73fb92a1 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x75cb4000 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7eb539eb drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x93eaf89d drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa56d030c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbd768539 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbda72417 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc8ee160b drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf8a926bc drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf9024cbb drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf90b8de0 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xb27a43b4 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0cf38dcf drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12fc40b9 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1ed8834e drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21e0f64f drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x25cb051e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x260385db drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2f0d15ac drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x34b298ac drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x38d56785 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ef9c924 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x45ec82ba drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x68e28688 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6cadb7a1 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x805fa5dd drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x865cfc9c drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8b975504 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d1890c5 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9207df26 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb30f8f93 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbaf3d436 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc06eef65 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc5faa179 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc9e0c068 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe3d567c8 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x213c51c6 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3df6972c sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x410b1215 sun4i_tcon_mode_set EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x85e1aebb sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x96b2314f sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa24bab87 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe3a0c06d sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x1ff65cd5 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa91de3dd sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xd9009d65 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xeeb4c12b sun4i_dclk_free EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x67a13229 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01da2067 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0961a5cf ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x82e62590 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x9d6fa043 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02094627 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02200730 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08e209cf ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b31c3ae ttm_resource_manager_usage EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e977268 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17f6baa5 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12e20ec2 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13d8d344 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18ff6b44 ttm_device_init EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c817bdd ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e594de9 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fbd44ba ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21b164e5 ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2763653c ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28addfcf ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x346ca238 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c1eca08 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40b4d7bb ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42376169 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a94b77a ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d8c2805 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4efb7eb4 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f7323bf ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50de8261 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61e4ddb5 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6336c707 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64895c96 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72be4298 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7904c43b ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ff78584 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8147b026 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81ed89d7 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86ff37a9 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89e6a9d6 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b3fe6b4 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f02df3f ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92b65df2 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x938153c9 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b2cdf73 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fb02ddd ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa62139fd ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa66dc942 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa911a879 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb18ce00d ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2065bde ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb230c7c2 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb30d84dd ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb968ddb0 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc7f6278 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc75e512e ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb56b690 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce3c8a59 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd13c90d6 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd58f8433 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd709e988 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd98b3f92 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb8fb6ae ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde64fe6b ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdeaff5f5 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf3d24a2 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3826aa7 ttm_resource_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5d62deb ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6d72507 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa6bd599 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe716f13 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x005411a0 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x06264dd4 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0a9961df host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0ba38682 host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0d8b26fe host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x13707c7a host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2185af59 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2972bd80 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x32602fb7 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b8f1513 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3ecae099 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4918f9c4 host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bf5dfcf host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4dbddd85 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dce5968 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e9e2701 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20ee0771 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21f00f8a ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22d2ef30 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x268fb45b ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f5bb064 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3824c82e ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38461f7e ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e030a02 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43342a83 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4378e973 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x437b30e0 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4383db3d ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45fb1118 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d6afce9 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5041d7f4 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52a905e1 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57e61962 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a40161d ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5acff3eb ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5be09930 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c4fef13 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60566bc2 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x652da54a ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6861921f ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ffafc9f ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70351f68 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72b25ad1 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72b2aa91 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x731f4f70 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x847be8ec ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e7b4e4d ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x945ed340 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9561d848 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x981eb06b ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c758644 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ff72c2e ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1439eea ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa21e88e2 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9af4207 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf25f937 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb12908d5 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc6ff5ac ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc422649f ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc63537d2 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd63a0ccb ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5e073af ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedf9f86d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7cc3c86 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf85c7c2e ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9437075 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd42c8e0 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x05a7e468 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0aa94a34 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x10000d84 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x11c80f1c host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27528ae2 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x331d18d6 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x41dfb2f1 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x46668253 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4b79bd31 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4df534ed host1x_syncpt_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5174e95e host1x_channel_stop EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x529bdbee __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53f83df0 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ce690cd host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5cfe21b4 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x612c4f44 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x540e4d95 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5791d780 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5837feb3 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d469bca host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5fb689e4 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a20628e __host1x_client_register EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x849ee3a0 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88dc32d7 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8b3816e6 host1x_bo_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93eda958 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9423964e host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x760dcffb __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x784c0d3d host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7ba31186 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x80e5bedd host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x852f6908 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8574433c host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x86dc7a3a host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x87f7d1ea host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8ea3d89a host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8faf1460 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x90a0c516 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9115e092 host1x_syncpt_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa2916791 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa52da722 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x956856c7 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa4fd3d2f host1x_job_add_wait EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaa601c23 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaac86c4d host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xafb5a119 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb299e6d0 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa7885424 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb79660f6 host1x_bo_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc813ef83 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xceee7a18 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe42a29e9 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe79b1470 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeaeb4f39 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb845c78 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeba2e4d4 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xee402fe7 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6259e9f host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbf75eaa9 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd0f4691 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd03af995 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe28a8b56 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe8976053 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb851ce8 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf0a12744 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5ab8905 host1x_job_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfe6ddfdc host1x_syncpt_request -EXPORT_SYMBOL drivers/hid/hid 0xca5436da hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x3d042aed vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x52fc44ac vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe249d6a4 vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hwmon/adt7x10 0x6003bd9f adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfd4162fa host1x_client_exit +EXPORT_SYMBOL drivers/hid/hid 0x147dfbcf hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x7b4ef795 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x94e7585b vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa970c314 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x48141f84 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 0x2ea71122 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x8a84c55f ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x2226ee99 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 0xd78c1169 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x99f9a712 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa2e064de i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc45670cf i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xea332d6e i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xebe83b3e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x02571d50 amd756_smbus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5a0ab0c7 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb869cabf i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfba52e85 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x12a93b83 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x48b770d1 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x54d07f2b 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 @@ -1427,1140 +1427,1140 @@ 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 0x8f6c5c08 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe1b25fca iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x45b89e82 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7887186b iio_kfifo_free -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x26888097 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x0cc6e44d __iio_device_register +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x435bc002 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5475821d iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3797dc51 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x88ff3b98 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xe8a44ddd fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x02986d09 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x1b50b08f iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x257b3f41 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x2cd9aa22 __iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x36155dc2 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x496e3d68 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x4dbfccf0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x51da361d __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5831b718 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x5870ceff iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5991b550 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x63b83eb8 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x6ab045fa iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x73a5db55 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x7e3c6576 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x91c79d7a iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xbcd3042e iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xc39709f4 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xc6b8b9de iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xc6f040a1 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xc96f4964 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xce7f687f iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xd8669500 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4c9137ff iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x5526282a __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x56c54328 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x6896f0c4 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x68c99169 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x908ddadf iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x94c037ac iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x9bd0d702 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xa2839f3c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa4ff275e iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xaa117f05 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb141b8a9 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xbfa06fec iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc7be1bb3 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xd761670f iio_trigger_using_own EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe9ffdacc iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xef395bbc iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x65efce2a iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x07308897 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x35144c79 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x46c12d8a iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x97e57b4d iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31ae8ce1 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x624c2c07 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2006bd9 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb2e6be41 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4d7656d3 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xabff5234 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x09f49062 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07046460 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1a9520d1 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f73183b ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x36724050 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51ffedd5 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6520698a ib_cm_notify +EXPORT_SYMBOL drivers/iio/industrialio 0xf02311c9 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xf3ad3f71 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xfd7f59aa iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xcd5bec1e iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x124b423c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x818dd5f5 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8c59f33f iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbc8e71cf iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x131bbacc iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x42e4c3d1 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa1e06586 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xbca19bbb iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x90c00ce0 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x947635ec iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xf44a8b43 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13e5346c ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x164bb780 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28e0afe9 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a9d96ba ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x330ea4e1 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3448b1fa ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3fc8ad4b ib_cm_notify EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70541022 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x771e2d5a ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa315ecba ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba6c4721 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd78e501 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd42ad3ea ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe7b3a253 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe954f06d ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xecb9e10d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97702f77 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac73afe7 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd65c25c ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd58e72f0 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9d87ed0 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbd5a868 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee726722 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfeda780b ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0034757b ib_get_cached_subnet_prefix EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0145b77f rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0156b249 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0212e6a6 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0406d80e ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04576813 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063853d0 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06740690 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x079df317 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07ff1529 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02b04109 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03133722 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03569baa rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0712c2ad ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0861c6e5 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa1d761 ib_rdmacg_uncharge 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 0x10c38853 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x132d2ea4 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1724f3e7 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b20d2c ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11865627 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119e2333 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12b74e30 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13032b94 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15af6e1b ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x165fa835 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x166d8c59 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17cad1c9 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186ff997 ib_port_immutable_read EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b5f1f40 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f7010e0 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fe7bcb4 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20dd9882 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a4a81ea rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9d9f64 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c4c9808 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb10662 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eff1a8a ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x238ade83 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2456a3bb rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271653f9 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271ca7f9 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a37cb5f rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a3be659 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a659737 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ea04ea8 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2384b7cc ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25882d7d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2698dff5 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x282ee283 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f3a5c85 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fcde51d ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3196ad2f ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32383b98 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356eeb3b __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3591e6e8 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x376e00de ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x380012ef rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38662d83 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x387852dd ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38b19db4 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39d45684 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x335f19e2 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33bb4f0e ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34649ea9 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35976fa3 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36063833 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x362f0053 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39dd2a19 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39dd96da ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a1d45dc ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac6ef6e ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b4c3ae5 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c16cafd rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c4bae48 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f988232 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b5c0dc ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f1e10a rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x429c2408 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fface62 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4050c31d rdma_user_mmap_entry_put 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 0x44b94886 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4553171b ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x452b73f4 ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x477742a2 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x484c5056 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48754c18 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a763367 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af57a22 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf778f3 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dbfee0c rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x469aeeb1 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x469d4e1b ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47611d34 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf0535f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c33895e rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d67e7a9 ib_free_send_mad 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 0x4eff9360 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f21e313 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f65b356 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51c2674c ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52a0ec97 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ee279b ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53f368ff rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fff0b99 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51a473ed ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5486de8c ib_set_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56668938 ib_sa_guid_info_rec_query EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58111d3e ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5727c70d rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58b39bed rdma_read_gid_attr_ndev_rcu EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59b4a447 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c025238 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de39c8d rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2c5e15 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ea6f607 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f9e61cf rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6081257c rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59929418 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a77629a rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be01749 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60d796fe rdma_nl_put_driver_string 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 0x63947616 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65158a40 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65423da0 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65ebb587 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66ac6def ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67b230d1 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67bc8413 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a20be70 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a6bfbbc rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6abfdcac ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b1744ab ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6229230a ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6360e037 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64ff24c4 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68607f19 ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dc6d310 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cbc410b ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cda3e23 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce04b37 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e484d9a ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fbd545c ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fc6c499 ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x729f59ed ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x723dfc02 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72694c02 rdma_rw_ctx_wrs EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742164d1 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x746f869d rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74f0054a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ffc4dd ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x745f6d07 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ab74c1 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7555ac14 rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7653e197 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76336545 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77be6b49 rdma_user_mmap_entry_remove EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7912c4e7 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8fe386 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c699f01 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1bb4a5 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ee8bdb6 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ff3f11a ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8441abcb ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8571e337 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86429079 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86561198 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8847da99 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88afbf11 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b161d17 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ceb407b ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d6a3d62 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78cebc27 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a459a60 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7acfc213 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d437e1e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ede03ef ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8004b807 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a59b5b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84ee8451 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x868e76c4 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88a55cac rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c97643 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89913e0f ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89917e0e ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89d955a1 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af21c50 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b5b94a8 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c3ccf04 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c53f7a7 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cca52a2 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f42e303 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f9a08ee rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90554eff rdma_read_gid_hw_context EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9511b266 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ee895f rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99dc3e9d rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a2e649d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b9fd19e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d24b74d rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9de5e1e3 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e92e76a rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ead3296 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f7365bf rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fa2ac93 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1d611a0 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x937bf9e0 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a5c6ab rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x981b54c8 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99452f4a ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b0237bb ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fcc22d1 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ffef48d rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa154f67d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2790463 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3fd2a19 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa404dd36 ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4b93bc5 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61c05c4 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6800d76 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7071650 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa763d057 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7a6c0a7 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa85aa4c1 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8a93520 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9b67a87 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa2976c4 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab127a1e rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab8a4bf1 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacf92f66 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadf167da ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa846a213 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab646527 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabe6241d rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae673e1e ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb043c739 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb079778f ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb14b8295 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a47379 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f325bb rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb31da3e7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb376afeb ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4004f88 ib_advise_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7554d00 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5f8cf8f ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6be0d41 ib_get_rmpp_segment EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb86019c9 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8de2dc6 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99e7cf1 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba7a3356 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe5cd082 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf9f66da ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfe13dba ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04e8cd6 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f191a0 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3fcb266 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87869e6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb872d925 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb90e22ea ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbafcc579 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc2b04c7 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcc3aaf2 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd072b9a rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe1b6c81 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe8ac39c rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe8cf8bf ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf22f3bc ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00e671e ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0c36203 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3f14dd7 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc488f77d rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4e4b279 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5a71eaa ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67d4791 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc691ad9d rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7403c2f ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7440434 ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e0eae6 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca77e128 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb2c8ca7 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc33542c ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdc86a05 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0245c2d ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0395e14 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc95be5a6 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf2aa024 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf982933 ib_find_exact_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd13ac6a0 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ce23c5 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3bce942 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd420c030 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd552aba4 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5604231 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5a5071f ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd65c9ef6 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2dfb1d3 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd444de3b ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd76e526b ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd836c7ed ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7208a08 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a711f8 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8b67826 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9dcf410 ib_map_mr_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb8d242f ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbeb7da1 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd2727cf ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde650acb ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6c814a ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27f27c0 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2d63e34 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda197912 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda20f983 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb163a98 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde139c2 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf5865f2 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe116dbcf ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe13574c8 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1388e1e ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5d1f51a rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe76b68f2 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5d36cb1 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe720b356 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7aea239 rdma_nl_put_driver_u32_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c7587b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9725007 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe995d832 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d611db ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe869f644 ib_open_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea9e3250 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeac92f9e rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0859bdb ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1327fbc rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2c67479 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39c3839 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39f781a ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41010c8 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebabb379 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec278c20 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeccb858f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd9d201 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefb80cd4 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf044c729 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1a824ba rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d0d027 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d18b8d roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e59a87 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5e101a7 ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf78011dc rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfade0a6b rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb1bfd58 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbb23593 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9280f8 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd48299c rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03b5f3b4 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0414014a ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05213721 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07747e41 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x142d19ba ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23952650 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25a9e2e3 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c6f3689 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d316f9a flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30191a4c ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7840217 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8051470 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf82411c1 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf83f4299 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87897a8 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87a1c7b rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf98043ac rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf99defe9 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9d4fc87 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa2bd5e6 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8c3f9d ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb45d6c2 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb7e7cf7 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb993f06 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc916a8e ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca032ac ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfefabc78 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffb879df rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffe2188e ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01625e79 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10337f2f _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1409ed16 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18038af2 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2473e0d5 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30373ee1 uverbs_fd_class EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a2f3897 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4cf385f2 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c60749e ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d45646f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f8561a9 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fab6a39 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39fb4bb0 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44375440 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e7c60a8 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x573bfd9e ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59704001 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5bdbb00e ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x69a61811 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6acbd663 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ba8c97c _uverbs_alloc EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8066fee3 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x822d37b8 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x888858dd ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98b5aba0 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e46a229 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0f49b03 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3f47263 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa693d886 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb19b2ac6 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb30a7f02 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb532171 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x785e4619 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7cea2d04 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83c82799 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x956ed207 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9892b384 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bc354eb ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bdb4585 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d79092a flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f9fa204 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0aa2e5e uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa196eb4d ib_umem_dmabuf_map_pages EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf876d96 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0073a22 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8182f86 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc919d04d ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9d868db ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc2c9390 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce785d77 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd881d207 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2685cbc ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb6b486d ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1dc75a8a iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x637abcd1 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x65cd23c2 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74f69240 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f4fe889 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8fc692ee iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb3962f9c iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc25ca38a ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc440de5e ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7fa987a ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcda0956d uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd059dacf ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe51eb869 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe65df7e2 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7857512 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef833367 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf221f94f ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbbf1a99 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e4bc9c4 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x42d1c48a iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5365ee41 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7a9d0eed iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x895715e6 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a893dba iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa121e3c9 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb5a7e333 iw_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf8205116 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x087d5a00 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c3807ed rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e944cbf rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1acf17ee rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21753ec4 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27dd347a __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29f0e7cc rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d0c4654 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30ddad8f rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x341ad416 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x352b3086 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4443eea0 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ce52822 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x518b639d rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5868eea4 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6033c1aa rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x678f59b5 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bb69d44 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70d5392d rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x713d17e6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71c249ee rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x798f2a59 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7af45988 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e4cdaf6 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x827c4710 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8304f32a rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10b70dd0 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17f59760 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19ed69b6 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28105d89 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37c2a40e rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c363264 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50417370 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58567b89 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5985290d __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68ca4849 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b394c23 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bf3f006 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f59ff09 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x716cfe40 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x745f828e rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7828e075 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7beaa509 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81db2af6 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86ed0941 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89bbbb08 rdma_disconnect EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc57ff95b rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc87c9134 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5d276c2 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcaf9dfe rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4d06d28 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4e811ce rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4149676 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdc8859e rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x028bc3c3 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x29406f1e rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x32b39540 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x66dd31bb rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7228fd48 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8d9a177d rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdef19542 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92bc8284 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a8df320 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa7f2d07e rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb383c6c6 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbed3e8bd rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9700b26 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3bcedcd rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8a2483e rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe247e031 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5e4eb11 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeabb1bb0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7a8c072 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb97019a rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfea203f4 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0a81f271 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0b09e1a0 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x136f19c4 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x193b5e6a rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2033dd39 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3c171537 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4d2afe2b rtrs_clt_open EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6925d38b rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ab6d6b4 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3739f042 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6159842a 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 0xbf959062 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0ef2d06 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbe947203 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 0x32929c7d rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x34e4353d rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3636bded rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x627d5513 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa62f8e49 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe18f1780 rtrs_srv_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x00f98b1a gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x04b9acb7 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x43435d23 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d71b3ca gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4f00ed70 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x56e0c029 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6cb8865c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4504587 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfaec352d gameport_start_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x8695cd89 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x947fdc8f iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe0c4bcf4 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xc61cfca4 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x17a54692 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xaf527cde ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7a0d226 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x87bb3649 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf991bacf rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1a30e3e3 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x20ebb35b rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4f070541 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7154724a rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x89066a36 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd23eead5 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1cd2db34 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5b44eb11 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x786d347f gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xac31087b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf6377f5 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb0d175dd gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb90afb21 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc0e8dcb1 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc9874884 gameport_stop_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x064823af iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x62a29813 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xf24cb1b6 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x12292a16 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0753d9cf ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0ba89c6b ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc239f479 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 0x7a823a5c rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0c5b28c9 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x197e3297 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x59b82e7a sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x972a2f89 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xfd1124e2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3e53b777 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x98365bc4 ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xb79cdb92 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd9418efe qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6be78dd2 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x89d24ee9 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x937ddfb7 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f521f78 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbcc9453f detach_capi_ctr +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xe5680bc7 cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xe6be6fd5 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3c9f7cc4 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5441ac91 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x89c20888 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x93d7af6a sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf5db26af sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa9ade81b ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc737adba ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x237e6d34 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7182745f qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6b95d8d2 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x878fdcbb attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8a634427 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc639fe44 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe0dca552 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 0x519f80b2 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5e26f5c7 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x75546d2c mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfda0df91 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9218591f mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9ac772b0 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x36e9fdc4 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x47a53aab mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8a411045 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf28ff2b4 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x031c9491 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x095430c9 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x070cba4f mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c8b2904 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18b48ab1 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ced6115 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f5d12e9 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d46481f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a44ae07 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ca3c3a7 mISDN_freedchannel 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 0x26a83e80 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2939f805 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c336cf1 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f2d0b06 bchannel_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 0x42e1b81b mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49c21d49 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e873afc bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40395770 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44871b41 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47fbb1e6 recv_Echannel 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 0x635691b2 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67b75044 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a7ed394 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cb8bad3 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7209202f get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x791ae148 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83214157 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x925d083a queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9851a77a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66252170 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74a58c12 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7cb7de53 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f3e90ac mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cc503b4 mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa393b67b mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa59998f1 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa603f8b5 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc1f7ebf mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5a6fe9f mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8988168 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcbd3f75d recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1d90c39 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd6c52885 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdbacfccd mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe47dd23b get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe94fb172 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec2816f9 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf36c5057 mISDN_unregister_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 0x1fc82659 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2cff0ee0 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 0xbf6e3f94 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8862edd6 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 0x5e661f0a cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2a773305 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x94ee847b omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb05a9261 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x05706cb5 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x0bb23ebc dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x6682968c dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x88ca1c56 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2f34e982 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x54b386a6 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x842e14be dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa4ad450f dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb0a9e1fa dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe1bcc2b9 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/raid456 0x73e9904e raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xd4d5485a r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0c42e072 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1af2eaf6 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46da59c8 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8f610631 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x99d4aa7e flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa8761b00 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb92b1655 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdad752a6 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd0ff046 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe510e9d8 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf4d93eae flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf5587d74 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf7257024 flexcop_device_exit +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x5d00c6e8 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x116a9688 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x90940443 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xf7324846 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x0bab75c2 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x14f3a295 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x8c529643 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xaf7d52c4 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x039bd6f6 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x094c5058 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1d1db480 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x66e96e47 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc49cd0b1 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xcb3472c9 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x76e50cd6 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xf90dec56 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2dcdb804 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5aaf8590 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x745a679d flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76f5b449 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x90d4609f flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e6b4ec3 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa97e8479 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb17cb489 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb8ce3265 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc40e1974 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd7bb9f10 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeaf1c2f5 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf8361b13 flexcop_eeprom_check_mac_addr EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x25f78234 cx2341x_handler_init 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 0x50b8e83b cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x56af8ea1 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x67a01925 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x678c8ff3 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcc95cda0 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc5a9f8be cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcba9669f 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 0x68e3bb16 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x0b01f090 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x020a0ceb ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xdea16177 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0145362e tveeprom_read EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xb7873dd9 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 0x2c11a742 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xbf385e55 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x374f6c20 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xa55a0b60 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-dvb 0x418b090b vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x74eb35b1 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8bcb52c8 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbe8d3250 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc6e72643 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd9440a45 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x0ee4e3dd vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6d9edea4 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x97f55299 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa07d3019 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd6e215db vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf7cfed07 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 0x8a9d612e vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x039ac765 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0581efc3 dvb_generic_release +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe3c71e5e vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0206ce0e dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d0dc241 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10dc2608 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10eca25d dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x110e41fa dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a7e91ef dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1c785edc dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x233d695a dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ed10b46 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d797fff dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d8d7c66 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x237a3364 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26c14d66 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2b2cb290 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c931024 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41e6dcc6 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4434eca9 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4783c68b dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5143ca13 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51bd9f87 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x530f1617 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48e778c3 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5690adc1 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57b10cad dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54fa38bb dvb_remove_device 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 0x61a12ad2 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x677d9ce2 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69f96a9f dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x729f54f7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f7ac2b5 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x81ccd5a7 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x88039f1a dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x90978a9c 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 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa71ce88f dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaeb640ca dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa3cceb3 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae8f1dcb dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae95dce3 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbefb1ec3 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5ece378 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbcdb7860 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0e1c878 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc51e5e6c dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc0883a6 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe912e1c2 dvb_generic_open 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-core/dvb-core 0xff431630 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x11ab2a88 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x1a0f22dc atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f8ca475 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x52c26291 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7d3c73d3 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9bdae22b au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9c701d7a au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9fbf914f au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcd6d8b79 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd0c1e589 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe3128f17 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xed328f50 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0b14dc66 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x84cf2767 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x52bd5616 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x9fdf6d08 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6ea8bedf cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc6996f82 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x25f949be cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xcaa4e019 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0a1dfaca cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf14ccbc4 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xfd62b131 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x47fd41a3 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcf040b10 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x110ce075 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x19995b0b dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4a5e8475 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4b0bd886 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x63d2a2ac dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa9373443 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x22c86a7e dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2483056c dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4eab8770 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x75e01a99 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8502caff dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9766c5b5 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x982fc594 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xace5cd3d dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe8669b5 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4de9b59 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6664ec0 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcfcb9b74 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0d3621a dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd58fd26e dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf30a031d dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xc1288a21 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3498957e dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4f6f73e9 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x659b6daf dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x828222d4 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe3e68f07 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeb0c21c7 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5371afa0 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8e31d5cf dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc8557ee5 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfb7d5452 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb58c3bdd dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe5bc0cce dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0262cdd9 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0ac46705 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0fa8e9b6 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1240222a dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x41638be5 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x45cfefee dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54bc3763 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6a2e0d15 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8dd15ace dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x98eb89ab dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaa175d30 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaf3a6a71 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xea521af6 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3256d9f3 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x55dd63eb dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x63474913 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x947e36b4 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc881a5a2 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xe55a7adc drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x496f1d08 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x41d2a49f drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x7be4fe08 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x9531326f dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x41d4d8c1 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x857a4c13 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xea1afca9 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x44201e89 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc6aaa9c4 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xcb08b9f6 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xae394083 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2f6f922d isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf61d8968 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34d89579 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x9c04b652 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x366fe96d ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xd79f34e4 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9aa0fa6c lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x9360445f lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x8f40d9a3 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xcb490165 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xdd373beb lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x78b7c4ca lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9ce153d7 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x3d9a6cac lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x350a00fb lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xded6bf83 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xe498cd52 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x077e54e9 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb6320c4c m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x37b3cc72 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xcdc81d79 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x5c70f392 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x2844b81b mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa176b433 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xf36a94ad nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x40d7cbc5 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x11d9e471 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa66b9ff4 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd36330df s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x2fd2f099 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x437ce7e9 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa08836fe s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x2163dd45 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xddaa63ab s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5c569a9c si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7ecae574 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x6c69cc3b stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x6607c4b9 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x35e0bcd6 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x8d76b97d stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x18d0e017 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1409fccc stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5864d152 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6894cf68 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe9a63505 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xf417e2a5 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x2815df38 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x9a4646d2 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x117786a1 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x34c200bd tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa77f7818 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x3421f6ac tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4cd728a6 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x775a37d2 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xcb36df5c tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xc49d2e99 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xebced321 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x3906ddbd tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdfbd7cd2 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xc349250d ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xf4cbf45d tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x39843127 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x49cfc8d5 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3d6cc261 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb0542172 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x329547bb zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x732a57c1 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x24450859 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44241cda flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4eaec07d flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x60d13844 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8c130b4c flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x962663ad flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdc623591 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeab45785 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x130bf5d9 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb9c23f03 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbfa83ae2 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x4eb428dc ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xea461ce1 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f85eaa9 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x20b4dff0 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x290f5a50 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x381ad1c9 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7ba1ee76 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9343073e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd23003b0 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf1d252b2 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfce53d8a au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xecd94591 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x0229a6c7 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xde433fb2 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x3df26473 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xc55375dd cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x46441155 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x735037bf cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xeb89046d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x17b94e75 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x134a3392 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbea9c19e cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x55bfd023 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4e1b31e6 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc3175f35 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x664fa086 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2aa9eab1 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7c16e414 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x879a9713 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xbec8bb38 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd0170a14 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x336c3680 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x49edf43a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5407418c dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a589074 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x87d07932 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa4ecb258 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa8a98a26 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5b83531 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd5d1467 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcefc4817 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd4625bad dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf2d5ba8 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeca57cc7 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf35e55c9 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfa34172b dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xe77b6c3b dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x02c465eb dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5dc02364 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x822b812d dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa1fe1a2d dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc33ee9b6 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdb00dae9 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8204354d dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x913361ee dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9f5317b6 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd2ad2d00 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc6a37878 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xccf84880 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1d586670 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x275acc61 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2fbffd91 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4ae3cdb4 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4c60c034 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6300c384 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7e082a5b dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x94c69c49 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b8037aa dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaf4fc5f8 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd8dbf08f dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe02f965b dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe9346b63 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x24aaf2e1 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x64e8a486 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6cbd1f92 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x80371308 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfa232568 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xac0da95d drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x98716203 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x22a29002 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xb0d554aa ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7c148755 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x01de8296 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x774c2fc8 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdc820ba0 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x08390905 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0cbd523b helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7243a507 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xf12642d7 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xacaf7c05 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x30f8756f isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xf30185cc isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x63413284 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x46c3e374 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xc37a2a7d l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x7a0173f0 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x7451d603 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1b4d6dc2 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x530ef007 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x87bb233e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x1244a6fd lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x67db9f41 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xd31a9ff3 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa400ce1e lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xcdbd5094 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xedc47455 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x13c178dc m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x84f90dcc m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2e5b101d m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x709e3a47 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd2e28090 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xd37e748d mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x486f24c2 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x048c030c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x024c8944 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xe63f73d0 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x395e94ff or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xa1522fc5 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x704c5e12 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x605f5aa3 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa17a1fbf s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7efd73ce s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb08ccdae s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x3319a8f9 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf6f8032e sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xcaaf9a55 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1e8ed5ca stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x6524109e stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x099ca7eb stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9c101c83 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfffe8e68 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x54f0123b stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd5c2e856 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe532f66c stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2f32f69e stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x031a397f stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xe4fb0cc1 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x730f3e6f stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe49fa190 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xbe97a477 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd17a953e tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x4632586e tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7dbf471a tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xbb9ad545 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x40793f26 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xb142cbf4 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x55b4fc6b tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xc5387dd6 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xa0391190 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x8c42e52e tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xf19dc20c ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xc75dbbd7 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb7541658 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xebd08502 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xf1daeacc zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xfdf28689 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x69860c0f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x06697bc0 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4edc5e7b flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x60476a4b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa0bfafbd flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbebe664c flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd28a326e flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdb4c1e0c flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2878f1fc bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4e906760 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8e12b729 bt878_start EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd6405033 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x03d36f5e bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe7744002 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x592ba6f5 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa78faa93 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb0e6141f bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd47f3777 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd636d402 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1defb5eb read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x213c0417 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x285aec00 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0dc91f0c dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2616cc0b write_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4c9c1df3 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5b344eaf write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x807640c4 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3253429 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcb925bae dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfefa7dd3 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x5e2fb340 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x05cc0682 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0a0aecd7 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x54b53950 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8c125d96 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa2f8e1f0 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbf44026e dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc2731490 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc4e1717a dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd5e7cb61 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x67f2223c dst_ca_attach EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99131fd2 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xca007193 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe91c053c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2e54ddeb cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcb3f9498 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd54558db cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe7355d93 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf09f19eb cx18_stop_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 0x405c3bba cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x524c337a cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b2c83f0 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x710d4ba5 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa132cbc0 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa67c0daf cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb5b716a0 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcc90fe6b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x52986a11 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x634c3187 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x96632fec cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdfbf5e38 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe2f7cc9b cx25821_riscmem_alloc EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x165f9c82 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb3514779 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x31172618 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x50a24431 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7e828206 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x84db2de6 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0113bae9 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1add9d20 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x445256ba cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xae363719 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xccd6fbf6 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdc4e7f30 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xee7ae300 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x004004dd cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x078d96d5 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1fb42dd6 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32672daa cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x35202b97 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4186b547 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5473287b cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x573c0d67 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d808802 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf949d5b9 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb19d717b vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfa18e42f vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x119cf748 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3aeccb1a cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x54b0ffd4 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc0fdf7ba cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3039959d cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79032810 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd1ce5436 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd90b0387 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe3b9d301 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9deceda cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xebd051a4 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x02081cbe cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x12a37be7 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c4bc9f7 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ff3fbe2 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42930b06 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4cb7b751 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x584cea4d cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5974344a cx88_ir_start 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 0x73151b81 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77b25b3a cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79905b96 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86c435a5 cx88_reset 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 0x9e43fcf6 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa22ae341 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa92ca8ba cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xabf89a0b cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7fc96d0 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd1cc1aa cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8a191ab cx88_newstation -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xfecc0b3a ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7898629 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa95a8ac2 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9f4fc6c cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbfc8360a cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc163f484 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc31a8c7a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1286be6 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe358cd13 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe51f3da5 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xea01eae3 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf52d6b18 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf64812c1 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x90c6051e ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x09bcc2e7 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x122147ae ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1276ca3a ivtv_reset_ir_gpio EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x198428b1 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2203ea99 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32fcc4b9 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b0b0738 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x55a6ab56 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ba575fc ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5f40bfc2 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x626cf5f1 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7911b025 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x797583d3 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ad53648 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa47fc211 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcdca3b79 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd3ce199c ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd52d853a ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf4e401f0 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd62ae81 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1f6d82c2 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5453f3ff ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x67729570 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71c00d85 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x98618d39 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa01d64d9 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa12fbe07 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1d354f2 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xad04e70a ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3806ed5 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5848c78 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf5543bd2 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9295d1a ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa40eb8d ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03779660 saa7134_ts_register EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0880cfaf saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08186b47 saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x21328c6e saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e766979 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c29dcc6 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x588a5bdd saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x61bf5f6e saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x72226b03 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x23070211 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4758b608 saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75d9c2ee saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x77655786 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x78c1fd5d saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x79123479 saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94aacc7e saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcae33185 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfaeba3b8 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc87aa72d saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd7191615 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdaa3b825 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe0776b32 saa_dsp_writel EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0db9f5a8 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1823668c snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4046f209 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4e57136c snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4e932269 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa7ea591b snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc4f4d9bf snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x382fcd62 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x585a013a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x913ebbcd snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9ca7c5ef snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xaf2408ba snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe49218f5 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xee070718 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 0x06f5a713 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2a3105ff 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 0x94ea7bc5 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 0x2fd132f9 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x6a732f30 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4ec50b62 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6b356954 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xaf9b0e84 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x87b423bf max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xe5cddbbe mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x50970bc6 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x4d0b99ce mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa558f2c8 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x7fe55dde mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x084ea1cc qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xdf6d89a0 tda18218_attach +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe982c8ad ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x6ade332d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x48c18b67 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2f12f86d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x72576097 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x97b277cb fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xab28d822 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x0b4d28e1 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x084a8e8f mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x15d61c87 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x945b6aac mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x1c956943 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x394d39a8 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa1d0c3b3 tda18218_attach 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 0xd783fcf7 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa5f44972 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xf5d61339 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x877711b4 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x98384a5c cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x08d0b155 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3cb62217 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x50a911f7 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x609da37c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c057dd8 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d3da7ef dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x856fbd44 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8facdacb dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaf32a0ed dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1bc51f1e usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x9a2ff23e xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xfa6ae7f9 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x35017f64 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8f8bdb7f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcae4355e cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2ef7604b dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x38fc2710 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3f988ccc dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x49773158 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5b1bc2db dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x76f0c7a4 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x83b53ce1 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x89180abf dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb1536344 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x16f6a151 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x22b5f829 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 0x8b891e28 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x90700ea6 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x94225edc dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x95cb954d dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xefdfe1dd dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc18f4d84 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd6cf6d1f usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf0362104 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfa5a7f96 dvb_usb_nec_rc_key_to_event 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 0xb01f321c 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 0x34800f64 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5e9be9dc dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x673764b3 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f6122b7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe5fc6a0d af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x11763372 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1edcdacd dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2da5cccd dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b281275 dibusb_i2c_algo 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 0x9bb9ce0b dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb29470ae dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd9e8c786 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf820ce37 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfd88a022 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x26615e56 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6cc41142 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcad4b6de em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdbe2f7db em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1f66858f go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2d7bcdc2 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6c3b171f go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x705ca0ff go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x751d198d go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8b1f46c1 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8bf77d04 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa1c01558 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb0d27533 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x00cce419 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2081a8a1 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2480a738 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x39117d71 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4212be7c gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5892bce6 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8a82d7ab gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbbe89087 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbfdc978e dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd1d5fd7f dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdd6a99ae dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xddba5712 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x914dc7a1 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xab2097d0 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2b161e83 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9f41ae02 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5ce0495e go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6f1135e8 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7a826b92 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7ebe5568 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x90c62ec8 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x92627f56 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaf76cf19 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xba4fe6f1 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc501282e go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0f87f383 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x380f300f gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x412e1715 gspca_coarse_grained_expo_autogain EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xffa2e207 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5c6e8933 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x77a988f9 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2c9fa48c v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3c7f01e1 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5d9f6ffc v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc700b338 v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe15ca933 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfdb8d7f5 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa2054241 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb68a713b gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xba6fe7e0 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcec833f2 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xda4661f8 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x86dc270d ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xad1b26c7 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0408c796 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x12bc0e79 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x675b6f8b v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc188f770 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc4eaa8de v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe15d2c77 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0d882920 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5dd82555 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x62b446e0 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x87593ab8 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9eb3549a v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6e5968c3 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x842b08a9 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xad3d8148 v4l2_m2m_get_vq EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00528d4f v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x010cbaf6 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x012409be v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02b090c6 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04a2deb1 __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x064a92ac v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x078dd0c3 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x065ff9bc video_unregister_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0932aed8 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x099dbb60 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09f8cb04 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09e3da63 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a09cff5 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5d0a70 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c17997a video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d9246fe v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10754112 v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e9e016f v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1eff6f9f __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25901d13 v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x298de7db video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b5a95ab v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ea6df5c v4l2_g_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 0x3736462a v4l2_subdev_call_wrappers EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40c0a9cd v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x457243af __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x486bac83 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x492e8710 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4abd7804 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e9e7636 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51385256 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5314950a v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a9ce3b9 v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60e8c170 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6350d4e1 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x638c1543 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ec92a4a __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x736de758 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x751c37dd video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76960fb7 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79ba4e51 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ab72a9a v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b8e84c4 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bfcb668 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ebd9255 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43dac983 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e0ceeb7 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x570a4ed4 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b188c8f v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5eb402f4 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6028155b v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6577e746 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fb1402b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73a84cd7 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7725f9b2 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c500b01 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d31e7e6 v4l2_ctrl_poll EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x810fa823 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x825eeb84 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x836ecc91 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88f46b29 v4l2_ctrl_subdev_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f24eb16 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x901a3348 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa047f7a1 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa42123a0 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8c76e15 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacd7722f v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae6b4a59 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x915b719b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96c51888 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98cb8115 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b3912e5 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa000f2f8 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1a18d5e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2843b0f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4be72ee v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5fe6eb5 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9c8275b v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaae4aedb video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad880968 v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb95c023b v4l2_s_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd35a324 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2a92b12 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc645eed3 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc76ba5a4 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc2bb403 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbeb368f3 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc44eb764 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4e32277 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5fd9944 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc84277c5 v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd06a75f5 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd07bea93 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0f61d30 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd12a7e08 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdd5dd59 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd09a1907 v4l2_ctrl_subdev_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6e0344a v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8206182 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddb1f45a __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3c5c6ab __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb56628f v4l2_ctrl_new_std EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3777a7c v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe47f185e v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6cc6a0d __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed2f6d86 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4fbeb28 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0d2a8e2 v4l2_ctrl_new_std_menu_items 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 0xf7839334 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x297254c8 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x38e674ae rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa28c1f72 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb22bc23c rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd0c2664c rpcif_manual_xfer -EXPORT_SYMBOL drivers/memstick/core/memstick 0x09d231da memstick_next_req +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd7e92a6 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff2b555d v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff8b3fca v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x1bdac13b rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2b62a927 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x62cb2c26 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc6877ef1 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc84526be rpcif_hw_init 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 0x2acb5f24 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3bfe82c3 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a7c304a memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7d6a94c9 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c2400b7 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa363bb91 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xafe3d1b2 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2b01430 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd142ff52 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfa850278 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xffffe40e memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x34997db2 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3cc812bb memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x45e256bc memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa62916a3 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xac4e1087 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb020c218 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbe6146c5 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbfde7529 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd0223d9a memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xef478cca memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf0ea96df memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfc8dca22 memstick_set_rw_addr EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1061889d mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22db8cd8 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2350bc15 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f5396d3 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x456ba603 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4bcb765d mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cf657f7 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d78b271 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x076386b6 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f6886c3 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bb355f5 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dd7ded3 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26df5f97 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d9a83e8 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f8a8486 mpt_put_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50312875 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x531e4688 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ce2b048 mpt_reset_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x716c8508 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x631e798c mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f25da01 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71a18108 mpt_event_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7de3e97b mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80c749bc mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8453c204 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d1117c2 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e417659 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8859bcf2 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89e91a56 mpt_raid_phys_disk_pg0 EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9adc647f mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa26f2d18 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5b36283 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa83eded3 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac2ca831 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3856227 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba34c644 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc20a8fea mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xccb2330c mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdaa1530c mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99c74d90 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9dde44ad mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9ce1283 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab96d87e mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae4d063e mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc83e9824 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc92aff6d mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcde2b807 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd556d124 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd942e118 mpt_send_handshake_request EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdfd8c6fa mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe1e07fa2 mpt_raid_phys_disk_get_num_paths EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf09ab2fe mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8ffc22c mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd14af96 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0dea61da mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f252ba2 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15338c5e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16770ab9 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x254d1b72 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x294f7925 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4deaf63a mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58c8ea85 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ace2c0b mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f7bb421 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x611e300b mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6206f570 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63eadf3a mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x642a68a6 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ed255e3 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x75554670 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83ded55f mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0dd925d mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1aab4cc mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaaaf98b2 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb2d6e7fa mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb0b964b mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf3f4cee mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe9d838fc mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xedc84d0e mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0fc74c1 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc3fe776 mptscsih_suspend -EXPORT_SYMBOL drivers/mfd/axp20x 0x3fb222ac axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x4b048303 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x4daf73a7 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x1a1ed456 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x7945fa5a dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x9c91dd1d dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa85ed2ba pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe0f4207a pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b113583 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c515133 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a68f139 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44eb676e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4be89832 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f017917 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x918975ae mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa07676b0 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaa8c68fa mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdda4d7fd mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xecf7cf6e mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x68da10a0 qcom_pmic_get +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef3118dc mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf449380d mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfbbf01d9 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfcfd9053 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00e7b2ea mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x049ee5f1 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c82c3b6 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x101a0ca7 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14777a0a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23179f7b mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26fed1cf mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cb97f16 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43be7c06 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4974cafe mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5375f70b mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68aa6f56 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74e67a81 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7985c85c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d1c6807 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8877d207 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa48f33a3 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa537fd2e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd0f0df9 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd63e9c9 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3ce705c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8eaff95 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc48166e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce659af8 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1b6cbac mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe944c411 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf34b6c91 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/mfd/axp20x 0xb0e1a51f axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xbb4e8b26 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xbd2e6438 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x77d0f8d3 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc4fa5acb dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xfa99e459 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa4323612 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd39a0044 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x133557da mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x155ba3c8 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a2eb9b0 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x43a10293 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5170d37b mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7d37d9ca mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x801f5573 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f45b34a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa53dcbf2 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xadc26f5b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xebf8b0c2 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x99547f8c 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 @@ -2570,215 +2570,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 0x1546853b wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x1c0bdcbe wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x277c3ea2 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x29097c78 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb81e3c8f wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xe2dad2fb wm8994_irq_exit -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd1e7cb9b ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe05e1af4 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x510e7cf9 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x61d726e3 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x6334c760 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x6c7a483a wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xab2ec897 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xfc56c54d wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5104c3eb ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa3b33160 ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x2ef78ebb c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xffc09b71 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0b7d5fbb tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x0d1477fb tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/c2port/core 0x30bbfd45 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xf7aadc48 c2port_device_unregister EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x19577d73 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x2fd861be tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x30565c8e tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x3e70e41a tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6549889f tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x6ba3a167 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x6befbcd3 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x782d0826 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xc58892d0 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xdf2d156f tifm_unregister_driver -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x16abb7f7 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1fb388e6 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2eb8836b cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9d0e96b7 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd748ab97 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3220bff5 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4082066c dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4d3ee3af dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x81190c30 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x839e9980 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe74f9a84 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a51fabf cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3b457189 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x571442ff cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x751f567c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9252ff67 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xad04e930 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe7e51294 cfi_read_pri +EXPORT_SYMBOL drivers/misc/tifm_core 0x10214956 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x37e1cc3e tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x3aa37f66 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x50515c2d tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x5c5d8047 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x804a7d61 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8120f585 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8d0e3b47 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xbb0d71a7 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcfec1629 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xeccc872c tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xff94bc12 tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1b8213be cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6f70e661 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7bcfe57f cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc0eb0141 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xdb5131d5 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2d4ab154 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x38848348 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5109518d dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x83dfb57b dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x2827eb63 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x2b191ae4 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x27408c9c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x344f3eab cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4c38a5cf cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52a55704 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab5c78c3 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb5a44fb8 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd521f724 cfi_fixup EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x26034faa map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdc9261b8 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xddb76de6 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xeb36bc26 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x86aa7d01 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9f1caaa0 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x694dba7d simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x99806369 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xa2acbfe5 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0952989c do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0d0056f4 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3e5aa158 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6830d553 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xd3219b93 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1aff2175 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x230055fa simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xd77bca25 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xf2d88bcf 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 0x729dd019 of_mtk_ecc_get 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 0xcf573f94 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 0x0832c255 nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0a17c07c nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x102f854d nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2e29cb33 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x38f983f1 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x450b004a nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c3ae4fd nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x56eee172 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x645e955b nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6a2d865f nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x79fb7bd1 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8739b863 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9cec72a9 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa46061fd nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaa780b11 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb48a868e nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb734a562 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb9cb7aac nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbce803d8 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd187ec5c nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd937ce89 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x06c3c333 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1d541976 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x211ef6d0 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2578b3de nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x29bd40da nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4701496b nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a77848f nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5ccf5da0 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6d49ba28 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7ab71199 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x81243c23 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa6b52d77 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb23f11d2 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb4f2c789 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb5f9e095 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcacbf0f9 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcba5529b of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xce947529 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdb40ec02 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf8a81121 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xebb3322d nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xee8426de nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf495845f nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x02f5f765 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x3e97acf2 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x822a976d flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x93a93e28 onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x358ab66d denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa88299af denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x11c40c81 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x312a01ba rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x356fd1c7 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x42ec1722 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5a101563 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x650cc411 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x77b1c3fc rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc8041505 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xf6338cf7 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x061785bf rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0ebd569a nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x14240e31 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x18abf923 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x244ed215 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3b9af23d rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x41febcdd nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8641e7fe nand_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9671c19e nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9dfb7053 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb3a363e0 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbf7fc2ec rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd071b8f0 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd8bf4a99 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xebaa34b1 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xed0034b2 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xed5a6078 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf005418c nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x9c489204 elm_config -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xa9fd8250 elm_decode_bch_error_page -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0df89914 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f8480d2 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d542aba arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x59759e8f free_arcdev +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9150778f rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x93a435d7 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9ebe09a5 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbe3442e6 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd07e77cc rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1c557a6 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xefacc4d5 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf0e01743 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfb6780a1 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x49722f09 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xc4be6269 elm_config +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3062309f arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c53011c arcnet_send_packet EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77b07709 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ab00f9c arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e55bd36 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa72058fd arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2cac3cc arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc1065a67 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca952e83 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x834e3436 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8fa40012 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xae6fd7ed arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5586b07 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4245662 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd373170e free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdee786fe arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2fbbe03d com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6438a2e7 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf4101850 com20020_check -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x39048780 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x728b8f4b ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xc89743be ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x73dc1d27 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xf72f6de3 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03041e65 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08521903 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b980f2a b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x183c240e b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f451610 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20cad979 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2368d726 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x247aa643 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x262e70c4 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29223ab9 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33e13702 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40e1d130 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x41be12c5 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43c9bfcf b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4457e9fb b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46011682 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47f0e8ca b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52b00b61 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53dd01b6 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x560ed25e b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56ccc5f3 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58bff7a3 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x592d7846 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79f23891 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e774fb8 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8375acbb b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8aac9d00 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9629437c b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa11eb86b b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa64ee330 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafd1918b b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0122cfa b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3db99e9 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba350501 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0a042cc b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde7f1e5c b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe56b3aec b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc3c84c3 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x031d5ead b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x110ef05b b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1a141551 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x99c0e29f b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3bae8e3c lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4df23ddc lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf42e0e6a arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf9542801 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x30e361ed com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdbe94e82 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf2951ea3 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x2646ae5e ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xafbb4147 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb3266772 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x34bf7a82 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xb38395a9 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00a2d9de b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0775c401 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08937a55 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0bc864c5 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c04f387 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2281ae7c b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x238fb4eb b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b84a044 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f25dcca b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x351233e8 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c6511b2 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f5aac1a b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3fe4a6e8 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43b3e237 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e48a1c8 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cb24f49 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6097cf3e b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65794ed9 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c6032e7 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d804d6e b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90af62fc b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91c752d1 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a8d0e97 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f327eb7 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3f843a6 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb6b57607 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb755b46c b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb9207b6c b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbaa6308f b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfb7612b b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9350742 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca125b16 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd09674bb b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4213aa5 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd75300b6 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd198564 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf306d882 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7b1e249 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x035fa6d1 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x207baff0 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x58ca2c8d b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfd6af15c b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x68c21263 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x74d6f9e2 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x98eadb13 lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc6516431 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x0497e6e3 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd1acfd8d ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd1b88246 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x483923d2 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x01983d62 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x401573da ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xe815f679 ksz_switch_register EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe3a588c9 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xffdafa2b vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x457013f9 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x71f5117b xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb63e591c vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc1fd463b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfb705d90 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x597d7759 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 0xaa326a13 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 0xdc0d7739 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xedef3446 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0637ce1a ei_tx_timeout +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd217396d xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd30182b0 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x080a8b4c ei_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26d95c7e ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f82a002 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f9b44e3 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ea7bae9 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5bfcdf36 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6b6824d8 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x90a2e1e9 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa8752737 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb152d1ef __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1e7fd175 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5004f53a NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x870b4082 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x91b7f6dd ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1a123a2 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd124b092 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd230247a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe27cbed0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe4d114f4 ei_poll EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd8db105f bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x0259f763 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xee6cddbc cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7b3715d8 cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7c75a7d2 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xdab3f469 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0c2c1a8f cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xd56d0b79 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 @@ -2796,433 +2796,432 @@ 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 0x042f15f6 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e7341d6 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f90b51c t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e347dfe cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24caf15f cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2afdfd68 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x54266366 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fae59c1 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x912597bd cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa20f2d6a dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa608b82d t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3097b96 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4a54d2b cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd74ea03e cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde121ae3 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf794ddd5 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03262bfa cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0333e689 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05738ac8 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0859ee3f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c8116e5 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e5d5733 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1d623e48 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1ee70b99 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x591fe221 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61b98a34 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7605ffdd cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78357fb2 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92cc1401 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9e4337bf cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb99de479 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9f5eaf6 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeef00802 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeefd1b3a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf882b157 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcb4ce1b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b180380 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b1f36b0 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dce6c21 cxgb4_l2t_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x161c29f5 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1991dc28 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1aa57bb7 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bf12e56 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d998fa7 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fe71689 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2090dce5 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27291013 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2997ffd6 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2de02b1f cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x328a84f1 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x359ebe85 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x36737b1a cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b890856 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2326b887 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2458e660 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27af1ad5 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42cfb7b4 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e8380e3 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50d81ef0 cxgb4_smt_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61fd6d25 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62488416 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f026302 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9645ff54 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96e32596 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b9de533 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fce34a4 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa15b7304 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa456ac0a cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5b7afad cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8514f7b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51e85feb cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x680db127 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce6d45f t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7530c043 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7867e563 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a18fdc6 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d2a1a3d cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e1a9ddd cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ffc189b cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8014114a cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81bad03b cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8359d533 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d2606d2 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91719239 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x989c28b9 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a34dff0 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa28e937e cxgb4_remove_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae26453a cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9dcd78e cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbadd0002 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc879b105 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcaf8876a cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xceb7fb5f cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd654a2c2 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa121004 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac0844ed cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadfed8cf cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae46572a cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae50e44f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb316cf3d cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb40ab4ce cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8c335c3 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbffd2094 cxgb4_remove_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6ea4d82 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd92deb66 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda1f89ae cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda23b0ab cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda5d29e3 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe879a37c cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe964025d cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf28b9b38 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf370a76d cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6f20d4e cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x12be95dc cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1a2cc4cf cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8024b1f cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda7ec0be cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xddbf93da cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe699b5e3 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8d787ec cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe919fd77 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecb32a7e cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed138093 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedeb20b1 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2efbfca cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff00c145 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0e2dbfce cxgbi_ppm_make_ppod_hdr 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 0x5986064a cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8f5e151d cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x955e6966 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xda81e06a cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf6a08d53 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x194cdd73 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8740f2c4 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x98ce449e vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa4d5d7be vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb8d20f67 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xff984bec vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x008f1b6b be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x312c4786 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3589aad0 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4e8f58b5 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7425f13d cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa5c14818 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbb8f98b9 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x21b6dfb9 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2eb8032f vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x543e2e1b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x545f0aa1 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x82d21875 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x95526d0a 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 0xd0a72679 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x9f016a6c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe781fdd2 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 0x53d6e126 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xd57e05e0 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x6adc8e53 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x1a20336b 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 0x28ffe272 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb4e48dc3 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xca98c740 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdc3602f0 fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5e971ed6 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x965883a5 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x877bdcc4 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb20ff9bd fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xe3233ebc fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xf0df8082 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2f262a78 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3b80830e hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x47cfa305 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5764e2a8 hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb87ba1fc hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xcabbea97 hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe96016e5 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x63bb7ef7 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x70156be9 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8ac5136d hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9d12fe03 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbfee6f6e hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc2b9f015 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd4c8a20f hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdd74e794 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe1e3de0c hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x1d768c21 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xdcb6a29b iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfac9dc7b hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x399a2f34 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x21f6191a hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x28dd1209 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3061e2ec hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x38eb5fda hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x77b4f323 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbeddb4fd hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe89f5ec4 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf8cff33c hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x43aa3444 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe5081885 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 0x2c399dcf otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2c757223 __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x317c3eae otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0e3e2e7f __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1113961c __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x304b9728 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 0x435d8c60 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x36a3016c __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3a202951 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3d65318b otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4282b1a8 __otx2_mbox_reset 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 0x4b1f664c otx2_reply_invalid_msg 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 0x5490baa5 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5deb2643 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4e5159cd otx2_mbox_get_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 0x695ecb2c otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x74be69d8 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x816cee8e otx2_mbox_check_rsp_msgs EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x91efe308 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x94b7137c otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaa573a53 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x928334ec otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9421093f otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa740f265 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaf78dfe4 otx2_mbox_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 0xb151efce otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb1b875b0 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc7cfc050 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcd03af48 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 0xd11f6826 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xda87b937 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf7eae67e __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x000a14be otx2_config_pause_frm EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0db0b4ae otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0f345988 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x13e56211 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1b434552 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x22c3909f otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x28cea780 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2af6bb17 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3d49c0f4 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3ff5649c otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5a34f525 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5e0e17ef otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6a47f0c4 otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6ffc3d64 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x77fc7edd otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7897160c otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x856982a2 otx2_config_hwtstamp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb0799971 otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba243d74 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba7b12e7 otx2_shutdown_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc314cbae otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc5bac7fd otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc87e6149 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc95ac95e otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb67b759 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd4ead64c otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd8f2efbc mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xda50a3ad otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdeae04dc otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdf7fcce7 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe41e0576 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe935658f otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf40e272b otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf9555e26 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6716580f prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe9b5a4e5 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05b34716 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5aa994 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ee92ed mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1617ea14 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c57fd7c mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f6a355b mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bd00fc1 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ca8b62 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf99b43 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ec11cd5 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b974269 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5731af17 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609a4a28 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x657a254f mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67a94b21 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68b03432 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a8cd2ca mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bcdaca2 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c4bcb22 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d783c6a mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74de110e mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7520d94c mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0d5c1761 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x11cdb7fa otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x19eaea6c otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1e49a447 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x229130b3 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x27aec328 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x32721657 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x38b512e8 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3a7d8db1 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3f75ecb6 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x48329a9a otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e0f58a8 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x51832255 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x64065dea otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6dbc052f otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6dc5f70c mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6e064255 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7003e209 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x70b22b9b mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x70c177bb otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x71da4048 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x841d67d9 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x88f38270 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x972714e0 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xad7b834c otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xadc214fe otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc0400144 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc1f471d7 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc6b604aa otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe9c6fc3b otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xea24c4e9 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xed1ace0e otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf0201613 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf169f8e6 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x38afc815 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7783cf8e prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ba1b4c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066d4e6d set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c2df708 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f6c28fb mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117992d8 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16a045cc mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x186949c2 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b03211a mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a453cf mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273f8256 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b118a52 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2be90eea mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d55560e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ed9ec5a mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d0b791 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b0210c mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x357c26c8 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35c36b63 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c76d5d mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49304280 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x572c53c3 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c2181b1 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a24d4b9 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x752fc065 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7db0aae5 mlx4_is_eq_shared 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 0x80eeda42 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x810d6217 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8de441ae mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1e544e set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f5c736 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d817ae mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7a3b95 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f425f32 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa004027c mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7f059c4 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4de049a mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb622bd06 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc71358d mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1cfe520 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6543e75 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e3c93b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8f273c7 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb1aabb6 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2cc5c1a mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf784e50e mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b56954 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb1bd9a4 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03062af0 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06f65253 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a74752c mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d022698 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d44afc6 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86e66475 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8843112b mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91230b1e mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91b2c338 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98fec6ea mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a518a27 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafe65c04 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4651a00 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfcbf5a0 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22ffbe6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc718dd4e mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd686298a mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe05c80ec mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a2a515 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8f36aac mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea4c6d99 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf676809b mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf78106d3 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaa48242 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x038ade65 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06804dd3 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075073f0 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0752825d mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08b19ff8 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a4b2694 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d602b95 mlx5_lag_get_num_ports 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 0x1496fee7 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14c3f1f1 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d0c076 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8755f2 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ac34607 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ba275f1 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14719c16 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14ee5a1e mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15412475 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e1476a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19af485f mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b3825be mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c13cbbe mlx5_eswitch_get_core_dev 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 0x1e38486c __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e7ad440 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a7d687 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b93145 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2273f957 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f0d582f mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22036ecc mlx5_lag_get_peer_mdev 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 0x2385fd95 mlx5_core_modify_tis 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 0x27e64505 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28fbb7d7 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2faed6b9 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32390a21 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32e89fe2 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x264a2e5d mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27615898 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e2dfa2e mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ea7d07d mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec28280 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31ce90fd mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32ab8366 mlx5_core_destroy_rq 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 0x33f9157d mlx5_eswitch_get_encap_mode 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 0x3b3d149b mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bd8dbe3 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42da06b2 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4399bcbd mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44fa18e6 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48bc3cff mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49fbb2c0 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4adbf3a1 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d564dd2 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x354cf867 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37554e85 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x387387da mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38973fcc mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aedb15c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cb38744 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d4df656 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x401ee395 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40f0cf6a mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x471621a1 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472315ef __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b35aa6a mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b90da46 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d54162e mlx5_core_modify_cq_moderation 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 0x4d8d03fb mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x501565fb mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e17995 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ec69e3 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e148d0e mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f7cfcba mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e9beef mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x537d7d8d mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5576d881 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 0x55da3510 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e914f7 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571fd44f mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x574a3c42 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5850e3f5 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59915f0b mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a75b91e mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55dd2801 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x573bf9d0 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5855a04d mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59036253 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59165dca mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aef029f mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ba2a138 mlx5_lag_mode_is_hash 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 0x5d4595b7 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e81ffa mlx5_create_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 0x61a13aa9 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x628b562b mlx5_core_query_rq 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 0x64b3e59a mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6511245d mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6724ac25 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692fffcc mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b1b5224 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc0b642 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c1668db mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2d1017 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e6f4a56 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb7b450 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710478b0 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71b45652 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bb597a mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64e63780 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cddee20 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f25cb7d mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f65fbdd mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7094f428 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c7fa9b mlx5_lag_get_slave_port 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 0x73f19531 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7535834c mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75631538 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7639d984 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76d3ae02 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775b86cc mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b14b60 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x793cee96 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x799afc2e mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a322278 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2b4068 mlx5_qp_debugfs_cleanup 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 0x7c72118b mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e241c5c mlx5_modify_header_dealloc 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 0x815db77c mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86548a1f mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83987aee mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85347b56 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85fc3696 mlx5_core_query_vendor_id 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 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93300575 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ea54d6 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f6beb9 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x940e3b01 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95051e8c mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88cf15c3 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a3aed5f mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ccc11e1 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1921f6 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x900a61f5 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a1d415 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f25fc2 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965ad7ae mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96746653 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 0x9906f82f mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a7e97f4 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c6b087a mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x984f61e1 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9877def2 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991a3412 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a864a48 mlx5_create_cq 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 0x9e28b3d1 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9faf5abe mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9df9f80f mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e5a7149 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa082b9c1 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0d78207 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39b07f0 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7c92efe mlx5_eq_notifier_unregister 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 0xaae5ef2b mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab1ec9c7 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9ff259f mlx5_eswitch_uplink_get_proto_dev 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 0xacfb6d52 mlx5_fpga_sbu_conn_sendmsg 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 0xad72a71e mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaef76f16 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf0838ea mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe61f99 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb24bf3c6 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2fe65b mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06f2189 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0ad4d4e mlx5_lag_get_roce_netdev 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 0xb2d85646 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6da4e79 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3da82a2 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb46b7641 mlx5_core_dealloc_transport_domain 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 0xb9000c4f mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93b0c8c mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97f7566 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9aeb823 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba1e8ac9 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb79d8e7c mlx5_core_dealloc_pd 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 0xbbae54a8 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd694e63 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2fa1f1a mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52db5e6 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc611ec9e mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc67c7fb5 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc70cf289 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9e91691 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca7322e7 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaeb2df8 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaf914ec mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbf607c5 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb5794a8 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbcf3e0d mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbd329a9 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdbd3063 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbecd9e12 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06f82d4 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f121c1 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2dca551 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbdc632e mlx5_eswitch_add_send_to_vport_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 0xcc29ef0d mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce47066b mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf22dd2a mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcebc5e09 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf260fb8 mlx5_add_flow_rules 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 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd44ff6d3 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd496e3ed mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd13b8c24 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd507b2d4 mlx5_packet_reformat_dealloc 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 0xd7616e6f mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda5da59a mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe08d6d9d mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0dec226 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2eaff77 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe410503d mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe484833a mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7631d45 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91123c2 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb904b95 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd297c64 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe093bde5 __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f5cdc2 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57e6f3d mlx5_core_modify_rq 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 0xe97ea44c mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea678cd7 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe932ea58 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe93dda09 mlx5_core_destroy_tis 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 0xed9b76c9 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf425cda3 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4968ca1 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5262f47 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf59223ac mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf594f461 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5f98d14 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b08550 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec56796e mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2eca0e mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee260d49 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf078a4eb mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf30d713f mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56078a1 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf63c846c mlx5_get_flow_namespace 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 0xf9285724 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf98e8f5a mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaba9840 mlx5_vector2eqn 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 0xfc905df5 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd388286 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe54092f mlx5_fc_create 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 0x032c8bc8 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07db2f63 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0c2ac43a mlxsw_core_rx_listener_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 0x0e2c011d mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f45e52a mlxsw_core_trap_state_set 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 0x15801382 mlxsw_afk_key_info_put 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 0x185303a7 mlxsw_core_driver_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 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 0x29ed6e26 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 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2fcd229b mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31e14969 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3429f59f 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 0x3e9fd35d mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x41c9c3fa mlxsw_core_traps_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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x48302ce3 mlxsw_env_get_module_info 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 0x50154a74 mlxsw_core_driver_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 0x503a376d mlxsw_env_get_module_info 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 0x5a939205 mlxsw_afk_values_add_u32 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5acd55ac mlxsw_core_trap_register 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 0x5d2d28fb mlxsw_core_skb_receive 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 0x666fe733 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6857bf9e mlxsw_core_rx_listener_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 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset @@ -3235,33 +3234,36 @@ 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 0x86ff1346 mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8b351e08 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 0x97ef9e48 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x924817f6 mlxsw_core_bus_device_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 0x9be0366e 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 0x9e41f494 mlxsw_afk_encode 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 0xaa2d204e mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaabb3ace mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5f332a0 mlxsw_core_trap_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 0xb75a33ae mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb81ecf47 mlxsw_core_rx_listener_register 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 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 0xc1223e6a mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5245b4f mlxsw_core_port_devlink_port_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 0xc935dc44 mlxsw_core_skb_receive 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 0xd21722b4 mlxsw_core_max_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd26b0e3d mlxsw_afa_create 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 0xd383067f mlxsw_env_reset_module 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 @@ -3269,146 +3271,144 @@ 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 0xdc72b6f0 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde44007e mlxsw_core_skb_transmit 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 0xe098cb43 mlxsw_core_traps_unregister 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 0xe7e3948a mlxsw_env_get_module_eeprom 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 0xefec2b1f mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9d689bf 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 0x0f9a2c18 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1fe60dc7 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x317be3d4 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6b6c50e5 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00ba623e ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00e28a2a ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01dd1f76 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06206359 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a6bbb11 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1137d833 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x27f2d0cb mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2f6e1b5f mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x121cc37e mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb05fd8aa mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0014113e ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02026406 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0320d2cb ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03f4061b ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x043ab9c8 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09520d1e ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x097906b7 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14f09fec ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16ea8932 ocelot_sb_occ_tc_port_bind_get 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 0x199f1faf ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19eeb8ac ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d1a327d ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x284b90d4 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28e9c0b4 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2be76666 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c802254 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d13b730 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bb4074d ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x277a02cf ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a528909 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a8bf4c4 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b4bbb82 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b8dfb3b ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ba2941f ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d013fbb ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2eda8db6 ocelot_fdb_del 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 0x30b47514 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x335e198b ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36043909 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37e1e52f ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40c5db38 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x309ab6cf ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3173cc3d ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33c48217 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38984ffa ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38b8e6bd ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ddfa2c9 ocelot_get_max_mtu 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 0x4ae6e1cf ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ddaaf9e ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53b33aec ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54a781df ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x555fee99 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56dd80e1 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5912f23b ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ce253e1 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x652d2ca0 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67320f72 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6971c02e ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ae15c11 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b707d20 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e2881eb ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7020e654 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73b54c7e ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7505c9d7 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3fac27 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f76d278 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c1e5021 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c489bf5 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d83df54 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e275543 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4eb85af8 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f244554 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5134d7cb ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53399c08 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b76b706 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b76b8ab ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60d969f2 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61f90d3e ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a04303 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d9b6af7 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x763873dc ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7cac9ed1 ocelot_sb_port_pool_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 0x86b911c5 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89112afa ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8be13985 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80bcc762 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82c846e8 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82d2ee53 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82f49de5 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85eff0e9 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8dc1bc3b ocelot_vcap_filter_replace 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 0x91ae5eea ocelot_port_bridge_flags EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x983bcbb1 ocelot_ptp_gettime64 EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7e8c60f ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa08bd4ee ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa28e008b ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa49dc396 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5eb91e4 ocelot_init_timestamp EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab7abf66 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaba56445 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf705231 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1b31804 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1ca3886 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2892086 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9650d64 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaadc6d73 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab12ce8f ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2b22165 ocelot_vlan_prepare EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7ab124c ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9a90582 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba5e8fd2 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb2398b4 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb399c3f4 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7b0a683 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb93f44e7 ocelot_devlink_sb_unregister EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcfc469f ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd285ed8 ocelot_mrp_add_ring_role EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc576f92d ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9603c6c ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcafef1bc ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc7694ce ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc373bc43 ocelot_hwstamp_set 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 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1e09523 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1eeaceb ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2c2c11c ocelot_port_txtstamp_request 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 0xd76c86ef ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb0a52ee ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbf28f63 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcd79b40 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde346fbb ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6665af9 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe69c1e8e ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7b6e7d0 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe37778ff ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5beaaf0 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6074599 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe623c74b ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8708c32 ocelot_sb_occ_port_pool_get 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 0xedab8b65 ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf11ecf74 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1ec1ead ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7ad4c7c ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb7cd59c ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc06227c ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd19ce94 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee16ba77 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf097182e ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5e14181 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb7d344f ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcc9d942 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe97a3ad ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff8a308a ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0160e0ff qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x60dfb9d1 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7df4b402 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x59bfe25f 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 0x9d2f9887 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 0xceaf58cf qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe377b19a qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x162949ef qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3a46be90 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0144a856 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x12f53d9c wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x27cc0c5d wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29c7e0f9 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3d0515dd wx_clear_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x60762c18 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x73b29aec wx_set_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x73dc28b7 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7ef836ac wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x870c3ee1 wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x948bf4d7 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa00c68e3 wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa9184a52 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb13b66c8 wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd25bae00 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd647b954 wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xda9641b9 wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf7f09333 wx_host_interface_command -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x24524d32 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5e3a6904 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91265bb5 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbf1c4b82 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xea738d2d hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xef80a3d0 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x1cca9e36 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x588c5130 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08ed1773 wx_set_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1041cf28 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1e24eea5 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x21604efc wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x31e62c77 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x523b76be wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7f068e2b wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8a84ff8b wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x91ead232 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x92b80dfc wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9c6f9cd7 wx_clear_rar +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbadea4d8 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbf82f081 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xce552383 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdf4d4544 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xec12aeaa wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf7dbd989 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfc6dc47a wx_stop_adapter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x14494f28 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2f2edee5 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5737d530 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6b1aff17 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2056b59 hdlcdrv_register EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok @@ -3416,1074 +3416,1074 @@ 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 0x5b19d8e9 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x69d42c69 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x8a20043f mscc_miim_setup -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x0f536c42 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x54b2a09f xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x5fff1efd xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x91cbc5e8 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xce517e39 xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb4b0700c bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5fa6a3c7 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xaf7e38b4 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdf9b8dfd register_pppox_proto +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xaeb7376c cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xb84bb812 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x9a9a6d70 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x74b7459a xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x7a14c9e6 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc830386a xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd00b7b59 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xeb960bfa xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x9c92f090 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5f37dc31 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8724e268 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd6a1ecb5 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xf17f440d pppox_ioctl -EXPORT_SYMBOL drivers/net/sungem_phy 0x98ff7fa8 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x32d89f6d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x3d8f6563 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x72afb372 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x77281a35 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x78623549 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x9b1424d4 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xdc0678d9 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xf2414e4c team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x52bc379f usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc7090a5c usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xeba4acae usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b96bc7c unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ca09cac alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d53ea03 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4c797f45 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6fb7caaa attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x77605434 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x87e866cf detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc12322f9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd12833ea unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa4914b1 hdlc_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe46f067c register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xdf7236cc sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x12e17a68 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x5c8856cb team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7ab02423 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x8d447af8 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x978c4449 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xcef0d97b team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xde76c501 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe03834d9 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9de92cb0 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb23ea31a usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbd4210df usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d03d038 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x25b8f517 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x477415ac alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ec31fc6 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5d12c89c hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6462ab8e unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9109232e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x91769850 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa9b4143c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd7676da detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x081c8f97 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0ca643f5 ath_rxbuf_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3e31128b ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42e19ded ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d0b7411 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1fcc1687 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37a829f3 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3d380d96 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x508aff90 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53379e14 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6d90f43e ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x89c1067c ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95e2de43 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4bb838e3 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6efb9532 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8d3aba4f ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9c345ac5 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9ec876c1 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1128cc7 ath_key_delete 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 0xcc0f5035 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdd2f9535 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe7a3cbe6 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xec942e44 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4145357 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xba4a2420 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe63bcdef 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 0x0e8d1bcf ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x108bc56a ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x111f5a2b __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1595cc42 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18176652 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22e33544 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24c35912 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2545a33a ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26a92e9e ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a6bb932 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x336c5820 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x359c943f ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x382cd45e ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b370394 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c8ef86a ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f446afe ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x417cbecb ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42cfc08c ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d403b6e ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50f72337 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59c02274 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dc35eb7 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6040950d ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6635aa2f ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x673479e2 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7709850c ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ba757e2 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82937554 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82cfba20 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87b4914e ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90a8b43d ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91cc7729 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99851e42 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b025731 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02d312b2 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x094c133f ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0abe8056 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0cc4ac5f ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1612d73b ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x177af6a5 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17a39b7a ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18426981 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2414f264 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26798e77 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2cf0913b ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e6db997 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38692b5f ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38fcdc3a __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b21f6b7 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b954629 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c494e60 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46b6618b ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53822f45 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53f93173 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57188506 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59cab50c ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e817322 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f87c6f6 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x647bf2a7 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e93ff0d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74d440d2 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7905759f ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f160753 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8aaf21e2 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d70302f ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f66a653 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8fd5ffe4 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90f6b355 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96ed20a8 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9899f26d ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x990808c7 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fac9454 ath10k_htc_process_trailer EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa54d6f3b ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa68956fc ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaca327b7 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8b46a59 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca1cc944 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd70a3bd ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd734cd3 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2ed69f3 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6b64e88 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8bacecc ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaace270 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb7e0c76 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc1d6af3 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc25a473 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcc18815 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd13be87 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe26f0e92 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea28d43f ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedd0f061 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeed336bd ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5be32da ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5f2c0b6 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x068304bb ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x087d4699 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0cd630af ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0fa4afe0 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b5e61d7 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39c7487a ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e84fe1b ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x40b09c46 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x49af8082 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4bd82bb0 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4e348746 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x50232991 ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b0e4ce0 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6000f646 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa439858b ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4cba219 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb05ed542 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0e7a802 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbccf204e ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc01ccaaa ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4799dc5 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4d0375f ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd24cd34 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfbeac44 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd83eeeda ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaaa7651 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe22eb09f ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe286b8f4 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeae62848 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2441672 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf88264ab ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfb2774fb ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x15b16fe7 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a02cbbb ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ffe7e49 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x242a4f15 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2759f2f6 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x28ee6795 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34e26cf3 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e68cb70 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x458fa32e ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x493b24d0 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f4515b1 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x509dfdc4 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x51dc53ee ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54a70b1c ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x582246ef ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x600862f5 ath11k_hal_srng_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6eb99f71 ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f99e141 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71a0fdf9 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x77fd5a2c ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x799b94c1 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x80267b87 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x82af8f73 ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8dde1679 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6312c07d ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x63188b16 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x649496eb ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x66950020 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x73e7854b ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x773a9a01 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x77ef2915 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7f0237ca ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83ee4d64 ath11k_debugfs_soc_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa530c668 ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad8da54e ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2c5bc2a ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc3d9faf8 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8ff0729 ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcff8765d ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf025b66 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe1b352ce ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe2f6206e ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe392ccde ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe5e87409 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb1bb2fe ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb9762bc ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee6a27cf ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c59e50b ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa5138dd1 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa542de5a ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa695d27c ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa75f46c5 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaedeca86 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xafcbdcc8 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6bca88b ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc4473ed5 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc5e1cf82 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc39d595 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf0fde73 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd9c0bd29 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe25ace13 ath11k_core_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf401e7c0 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf5ae9f84 ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf62e6de2 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf6892b09 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd796e74 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf6fb1f69 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfafa3b29 ath11k_core_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x19e03c36 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2fef6c2f ath6kl_core_tx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5193ee22 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x548e3085 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x756e899a ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77c39bcb ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81a99804 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x634b2188 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x68f9c6d6 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x71a4eac6 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7473df27 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8ab421a1 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 0x9497bd2a ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa108b9f5 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaa234b66 ath6kl_cfg80211_resume 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 0xc1dcb784 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xee8ad476 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7ddec84 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0348f633 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e4e2907 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13e613c6 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x180a8ffd ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b873e72 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d1df343 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc3854136 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb2369b7 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd85a2d44 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdf85634b ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07b2ce58 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0df4827f ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1047d43e ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x179d6fbf ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c0cf675 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d1ec716 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3342fceb ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3dbb232a ath9k_cmn_debug_modal_eeprom EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53730eeb ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56eda1a5 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x591310b3 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b4529d6 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d90e0e6 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d930c9f ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x827ad259 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91aac76e ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9bd4ffa6 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba763759 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe85f967 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc234e3d9 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3d1aa75 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc84b6f53 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcaf61aab ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x580f7b2f ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f239361 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x769d6d36 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x776888b2 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8319d05e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8fcb1947 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x964fa4ec ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ac6347b ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb144d49f ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0b9b5b3 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0e3721f 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 0xf846099a ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa58d610 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02190889 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0623d7aa ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d1683c5 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea9a2b24 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf57e2ca4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9ae308f ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfad2603b ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0172f09a ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x083ac71c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08b1cf28 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08e03ad3 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d0d4431 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d7ab18a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dc5a8a5 ath9k_hw_set_txq_props EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10c2b047 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11eff212 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x122f428e ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1292d591 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12eb73b4 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15a9c4a8 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16bfea45 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19fff40e ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b8d2989 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c0c2a8d ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ee9c4a5 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x208b37a9 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21413748 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x246fb861 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2493fbf1 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bbc7b1e ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c8c46f4 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d168ae6 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3048f9c6 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ba40a5 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3282d682 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x329d37a1 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32c0c242 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353544ee ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3631f963 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37389b86 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37d4a9f0 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38d66396 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39d46a73 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aee012b ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e3d8099 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44a2c3ef ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44c6eed1 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e1045d3 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56c2ec42 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dcda0b6 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc81bb1 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x619776dd ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68aa3a60 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68e92ccd ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b7185a0 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d293ace ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ed4ed39 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71b31443 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71cc365f ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73b801a9 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75540f23 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75bf1ddf ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782cea27 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84b409c0 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x878e0f46 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88a578a8 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89baff84 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c6b4ba0 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ec3cf4f ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f0bb791 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90ca3e27 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91eeb8cc ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91f4e65b ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92439061 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9474601f ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9502ef81 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c5d301e ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d7aaabc ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd98604 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1c01e57 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa20e06c0 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa44c906d ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa87a9b30 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac092872 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaddbb594 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaddee6ee ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb48e3115 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb68987b3 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb958014a ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdd492c8 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc13be986 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc514a01f ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc620bcb0 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7e07cc7 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc94bcd78 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9bc8c0d ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc1c977e ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc7deb96 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd577efd ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0849e1e ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5384a91 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7fbaa64 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8f23cf3 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda487dd6 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb1a008 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xded6b32c ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf889704 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe548061d ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe87f6aff ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3b8ce84 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf43d01fb ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf571b9ba ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf646eb00 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa24d2bd ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa408bf1 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcf358eb ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffa46e0c ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffc563ea ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x10d906f9 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x21923281 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x838596d8 atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x08f9d944 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c73e41b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fa68e5e ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x115cf4dd ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x136a2c9c ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14866be4 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x148bf5ed ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x163e9de1 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1650e66f ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b672b40 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cef857d ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fc7d8d9 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2115e7c5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2338fc4a ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x244185be ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24a9b150 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24c3a1f5 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x260df10a ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e7d1675 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x333be9d6 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x384f02e7 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x388b8a50 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x394c66f9 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e73e677 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41dd7be3 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x426dd0df ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x427d227c ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42b5c609 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4549e0bc ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4786cfe1 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49ca3d53 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b03df24 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b4dd750 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ce31e40 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4db0b510 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50022a6b ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56957e9f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57221b27 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5841b30e ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58ce1fac ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a0213f3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eb47612 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ee9e24d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ff53de8 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x630d30c3 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64bad474 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68bfc253 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a225276 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bbe1e2e ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70185af5 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x729ca0c0 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72e32742 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7426fedf ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x743d836d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74bbeebe ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81557494 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x817fadd5 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8503e7c9 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89192613 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b8a13f3 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1cf6a8 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e0587f7 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91a52966 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x988ac42f ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98b8f1e5 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a1a4e57 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a362a44 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f3d66e9 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5905c85 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5b88fbe ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa64e079f ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7382abf ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa79f273f ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaae88e84 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad39e906 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae1dafd6 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf6539ff ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb24597bb ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb34c5089 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb748843b ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba87c752 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbafdb04d ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe91dfd1 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a4d5b7 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1d173f9 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3bc49d0 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc70dce06 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc73e0bd5 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc822513c ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbe21d19 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd350d5eb ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd89ff778 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0953dfb ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1f97c33 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe39a4b01 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe535ae79 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7680189 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb21334b ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee5eb201 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2391378 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf99fa5f8 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd2e6b42 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3067c386 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x804ec56b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa52f687e atmel_open EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c475527 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3387ee69 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x533f83da brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x59f5de8a brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6a7c8b2b brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x861c95e7 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c6d25be brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c15dfc1 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1c3fd20e brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x242e3151 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x38c07d91 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e1644af brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x472a2991 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x78000435 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x827eedcc brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x90ed2501 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9565d0c2 brcmu_pktq_mlen EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb6050091 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc89390c6 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb7fac53a brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbeb9b96c brcmu_pktq_pflush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd7ce7395 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xef2bb2b9 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c242301 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36212182 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x380c2d8b libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x387d2532 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4aee6169 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4b4b0c99 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x548a338e libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60d6a871 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6ce16684 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x717a43c0 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f74c765 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9718332c libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa45d3826 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbddfe244 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc397aa7f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcac38862 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdf21f671 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4a83002 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfa3a14e8 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfdb9d054 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03964a60 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04390563 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06aad907 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07c1a5c3 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ab57202 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13ee46f5 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x152d7940 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x179b19de il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19be1afb il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19d9030a il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a82305a il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1affc63c il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bf1d38c il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x202762af il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20ae020a il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20ae66f5 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23f27030 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x248f9afe il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24b56cfd il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x259811a1 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8058bd7 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f873a6c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x12a6ec35 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27b4e641 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4f8b8420 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67df5bb4 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x68a6151b libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6be13d55 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x730683af libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7490100b libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75031eb8 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x77a5d89b libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x92d35753 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa12956fd libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbaf5720c libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc71fae17 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc9986dc3 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd864f5a4 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe2d39567 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe79db5f4 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfde1ec51 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x004f9232 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0174b4f4 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c1f1b51 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d45b7a4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ab17d30 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e354991 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e63a1ad il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fa349fd il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23f5d018 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25cb1b75 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25eba86d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x263d275b il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x265ffee4 il_mac_flush EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d0516e5 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33bae249 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3441e98e il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x387593db il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e580593 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f8608c2 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x327e60c0 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32b3d8b5 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33d5afe5 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35b76938 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36548a5f il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x366d8bb3 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x382d1a35 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b74d8a1 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bb73347 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c3bc0ea il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cf84cbf il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40773c0d il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x413c36de il_get_channel_info EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41a479eb _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44b81737 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45567ffb il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51212914 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ab66fc7 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5db91082 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e84dd51 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ebaf0ec il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f6a50d6 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x608b9583 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x634a773c il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d80d4d il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x642d909a il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64e64b47 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6891700b il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c3dfbf8 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x754458e5 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77c6fe74 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a2878c5 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bc0b37e il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c60776f il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e675b38 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ebcce22 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83733308 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x861d0578 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88caa794 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88fa78aa il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8af0eded il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b8e264d il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bf7e5a9 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9245980f il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93ff1520 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x958207bd il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x993a472e il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b67b0e5 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x420a59d8 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4234fffa il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43bf1c2e il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43d4c8ae il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45b57d94 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b1a37fa il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c6702d9 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c75bd50 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x528b9445 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x555339bc il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5647d941 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64be7011 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x674fbbf0 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x683e19ae il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69efd844 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6adedffe il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bce99da il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c0260b1 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70c82e52 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70dc8a72 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7483e70b il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74b61951 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x758cb455 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78026675 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a6a98d1 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b5ebbc6 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x812e04bf il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81d11183 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82f8d56b il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84d77271 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x874c2ce8 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87a1a733 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8943d9ec il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ad492d0 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90ff9f78 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92b6d9b9 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9405ee60 il_usecs_to_beacons EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f049a4e il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa37bae76 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac21d6ff il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3267e98 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3f9118f il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9dae61d7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9efa1df4 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa230b765 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa27bf337 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4f0cfdc il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa63398a0 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9cca6a7 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab62307c il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacad5e57 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0842852 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb184f416 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb26aecf8 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4494789 il_power_update_mode 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 0xb857a8c6 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbab1c4e9 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc6624e5 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf57c599 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf60bffd il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc70833db il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7c78d0f il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc81e5c3f il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8faa5fb il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb54df9b il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcda5cdb2 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf0d7c27 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd395b97f il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8e3d0ac il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdad6ce15 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbc9e91b il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc55e498 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde9e2df1 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe110920d il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1789407 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2a98362 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe409dd06 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe57cbd5f il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe586b545 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe810d328 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe91250ec il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb567d0f il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec0cc2bf il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xedddc83f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef862ab1 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf31cc9b9 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf46a6fff il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb98071ed il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb0a7f3b il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc847005 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf85dc4b il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfabecf6 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1a9cdd4 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1b47a3c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd61ddb4b il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd99d116a il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdabb2e89 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdafb9bf4 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1f24813 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe28edf61 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6b90d51 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf084b8db il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf30e272d _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4074cfa il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf43cc8a1 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf67c7e72 il_free_geos EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf76c50a4 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf98bfe4e il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f7c4b2f iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22e0c140 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa7a7a1a il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b102a23 __traceiter_iwlwifi_dev_ucode_event 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/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5bdf6ea8 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x806b4680 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74012382 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 0x9f20a10f __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1e86a80 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __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/intersil/hostap/hostap 0x0e508afd hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1af3358a hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x332351f1 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x40755a4b hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4094b8fe hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x41775585 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a09dd70 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5cc1959b hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e27e869 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d3efbcb hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6ed24c9a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7312d52e hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x10cefc54 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a098238 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1be6d70d hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2588a98b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27584c47 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38d56ad0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4696fa28 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d3bca0b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e7e925f hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e4675b3 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63abe87f hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x64b53dcf hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6afb5dd5 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x72126940 hostap_check_sta_fw_version EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x769985e1 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78d376ea hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7dd33fed hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7e2a7828 hostap_init_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8bab21da hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f6cf98b hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9167f9e1 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac2e2d68 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb328468a hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x89e3f8e5 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ac7cd9d prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8181c1d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb24bfcce hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb3c64565 hostap_get_porttype EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb6fd47ad hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbc4815f9 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbeabe7af hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcc0c249e hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd118ddcc hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeaecc23d prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeff08005 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2993d6a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3a78bdf hostap_set_encryption EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11535253 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x23ebfb59 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x62e3e2e8 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6a299e71 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ff831af __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7e707306 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x80050907 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b94110b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfd2f79b0 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x20f6c3fb orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3b6a0caa __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4b5a55d8 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f5993ed __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x748f7cbc orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x86ad3209 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a02ce62 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8ff7b786 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x92817a28 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x96c8d9b2 free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb28ede8d orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbc445d1a orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbed08848 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc56bf268 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce05b7e9 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe9468ab9 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb6efe11 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb48f9b4b orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb7bd77fb orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd390c34b alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd56b958f orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdadf5bea orinoco_tx_timeout EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x1cbdfacf 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 0x0cdf104e rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x025355e4 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08e8a6c2 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1163bb9b rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f7bc4d4 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd42535b0 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x953c7187 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x009810e4 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05b56a38 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0718ce82 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11393db4 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x129b196f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18f0186a rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f61c422 rtl92c_dm_init_rate_adaptive_mask 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 0x2d583cc3 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2fe16e5c _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x321d3bf4 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33e67dd3 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35f1e502 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43f3c52a rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44a27e12 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x516b2469 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c95e203 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c4f83bf _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d29ab0e rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6de44062 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x731866c9 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75c0fb96 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cf5c5b8 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e783d8f rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8aed9b2b rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f1cc2d5 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90aeb774 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93c53bc7 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98b5ee4b rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4917364 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6102219 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8e5bfe9 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac6c6b1b _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaca13c6d rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb60cbf81 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd09a650c rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4340dd8 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd439ee5 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfd12154 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3e34445 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe881baa8 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef7ace4e rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf03948ee rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf10874ea _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf511b862 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0ac1a302 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x68d13808 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc928eed2 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfb83e3c0 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x303931a8 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x30b669c4 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x68f2c6f8 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc9a15b1e rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0203c91e rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x022d7140 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02a97254 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a7c2754 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2592d768 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a50b84a rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d77cc39 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e10b50a rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f089e58 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47d06796 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b1672dd rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5529fb1a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61836e27 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x689c788f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b9ec335 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74d23c6a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7827edd1 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a97e44b _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fc33c7a rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8162c00e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81f2f691 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x870a6d13 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9831e45f rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9facc7be rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa50a85a7 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa71d460e rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac059405 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3d3d94e rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb47538e6 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6302fa0 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc85ecf95 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcccc4e86 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0907982 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7ce9f43 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8ae6abe rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd95047c0 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1d38514 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6ec2cc3 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x38154593 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x58d9db3a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x87782b0d rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb4a24f30 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6351e91f rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x67b226a5 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8c6d8f13 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x98c42b72 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x056991f1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05b1d9fc rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bf150aa rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ca23bc3 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0de1a728 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f48739e rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1926b2ca rtl_process_phyinfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1baf6e62 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c72065b rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x297c6f8e efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bd2cac2 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26512c6d efuse_power_switch EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f5a73b0 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x51e8d78b rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4071475e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48540c6d efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x496fdefa rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a991428 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x567bc9ec rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x568002dc rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x614a8137 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x682104fa rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7aed6933 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87a5d8b9 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60e1b311 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bc61597 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72fbe9aa rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a8140a1 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e202f4d rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5da0972 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf826582 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc30fc90d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda8ca84c efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4e1b84f rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9968ecc rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x937154cb rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94f3377a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x997d042e rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99a1afc1 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0e8db79 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1151768 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa646d60f rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ea03ec rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc16294c0 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1de9d7c rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5baeafa rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd74d9dde rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7a7e6bb rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddbc6cd1 rtl_process_phyinfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec13e2c5 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf404edee rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6eeedb7 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb9a3a64 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffbcd279 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x6a30787e rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xf7f00ff3 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x81d002cc rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x6e1269f2 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02b3e0ad rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x04e0ef38 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0aef77d8 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cfa8e1e rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1413af1f rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c40d62c rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc53c8d rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e8c862f rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x269013a1 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x296ee5c8 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b4fe5f5 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2de8020a rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3dcb149 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfae5e915 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xfbabf1c2 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x666b864f rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x104b8b70 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xff89e04e rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x003451dc rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0205a8b9 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x080f361c rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1094bde5 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11d754cb rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1206f170 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16223a0b rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1645160d rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b6605be rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1eae8e89 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28ce227a rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33960e80 rtw_phy_cfg_rf 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 0x3704ff1a rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x396ce45d rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40e69951 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37b26c8e rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3932abf5 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40832ac5 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4168e94d rtw_fw_c2h_cmd_rx_irqsafe 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 0x48c423fa rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ba3c170 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c27acd1 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x44e38dc2 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45c47e26 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47333062 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x494f5f2a rtw_register_hw EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x522bfc17 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52b39e36 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5615670d __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58042927 rtw_core_deinit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d1bd26c rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f7f404d rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60d01e1e rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x779c76a5 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83dfd9be rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84fd1b33 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8cd86332 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fb1073c rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90d4e8bc rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94ece891 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98a252c7 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9936f67c rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa289f2ab rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa355bec9 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4f86313 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa846f9e7 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa700f75 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaca7d705 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf8dfd12 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3411e4d rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7b7e03d rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9c03caf rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2a532d2 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc3b70d50 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6101211 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7ca39d5 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc81cd9b7 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc90f06fd rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9f61620 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0582c2c rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5637cd2 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd657d181 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7135310 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8888cf1 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe026bb94 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9d2da46 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2917964 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4492eea rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf610d411 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfaca50a4 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x80040c8e rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x902af8ff rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xac1b0e89 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xda034d40 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x05d68f98 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x27ec391d rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x39756e03 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x4eebbcf3 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xd54ef09c rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0343a237 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0d112624 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10bd561e rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19defad7 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x375c0ccf rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x409bbac3 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41ffd9a9 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4894a27d rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b8462dd rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f5104f3 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x58168a82 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a1f3b77 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bec0515 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d597f0d rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d7ec5b8 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6be105e4 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c28454a rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e17af23 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x708beb18 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71921757 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75a62580 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79ebb2da rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b362d6d rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d01f5d2 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f11e980 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84c4816c rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8be7b512 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93ffb0cc rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96e1c718 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b3ed70f rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9fe661ea rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa165247e rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2d663c2 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3336737 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa64a066b rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8c38407 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa944729f rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafb2c8cc rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb13b91b9 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb18be3ee rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb536049f rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbfde5a32 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1eaa08b rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda6dbed5 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdab53ad3 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf90ed5c rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe52d8ad4 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2590247 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf34effe5 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf942015a rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb8f5ed6 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4a5655f1 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x83dac90f rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa148f0bb rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd290591d rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x169cbf08 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xa86ac6ab rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x7a86a545 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x0d1877b5 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x96bd3bda rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x009d836f __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x00e0a13f rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02a25978 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a371c25 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13c8b0f5 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14655eda rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1853dd21 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e6fc8c0 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x225d6c14 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x262b79e0 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x288d9bdf rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e57fdec rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3324dad6 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34424181 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34efe4fd rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x364fe647 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x388b5b98 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a2dcf93 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c8b2f43 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x42b77671 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47aed6bb rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x488b8130 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49c20c09 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4de1024b rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x528c1d03 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56531e6c rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5be82451 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x615c926a rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x62fc5a7c rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x674a170e rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6aa30579 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b396baa rtw89_core_query_rxdesc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x709f33e1 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x71368053 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73ffd59d rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7473e445 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74962366 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x751eb1b8 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x781f6ac2 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x798af1f2 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ae16d09 rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c883429 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x861193de rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x88bc105f rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f3856b6 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x915ce9ab rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93a8f6d3 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94c00314 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b5771e3 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b97b000 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9cfd89a4 rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa2e0fb9c rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa34ff683 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb6e63846 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb97a137d rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd11f731 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd66a769 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd82186c rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe8b306c rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xccd3628d rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd92a682 rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd18b5b7a rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd20fe527 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd46828d4 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd556ae35 rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd64a6b32 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdae21a06 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb19313b rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc192ac4 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdcbfa3fc rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdd40f13b rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8307291c rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b5fc352 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ec49d07 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1b5a748 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa2fac4a2 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7f5e0b4 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa972a846 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa95b078 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaaececc4 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8331096 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbbe84770 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbdc9713b rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc46babbf rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc6dd2953 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc97510e9 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdf81bf1 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9d44952 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9f144aa rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb457caf rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc01a705 rtw89_ser_notify EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb59ca48 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee80c588 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0ae7534 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0af2c6b rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf34d81f8 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6effd55 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfce343b4 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0738f856 rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1011d5b8 rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x152e0981 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x43eab336 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7eea651 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xebd9aca1 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec1444ed rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee10b87c rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf196d78e rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf2b014f2 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfce74d34 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x02a3e8cf rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x143e0dd7 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x23619d9a rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3894228c rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5c536e7d rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x67ab61fd rtw89_pci_ltr_set_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 0x892f75fb rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8a110d38 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9b9d9d01 rtw89_pci_remove 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 0xa267c1ba rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa8d93c39 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbf91191d rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc461eb3a rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcbc2af27 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd1db2614 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd6cd8925 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdc8977d0 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdf1aef7f rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbf4b723d rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbf68a22f rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc256f684 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd53118a6 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdcb8956a rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe610303f rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf19b1953 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf4f8b94b 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 0x600e2f63 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7b1c651e wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbefecfa1 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbfc67a0f wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd8e92523 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x59962383 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x77acccaf fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x20a47e29 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xae3d3195 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x18510e15 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x236a9fa8 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe5ad5352 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xe39944cc pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x71fae966 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9afb06a5 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x10b8276f s3fwrn5_remove +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xcec803f5 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0049b16d wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x08496535 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2c927602 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe323abfd wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x14553442 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf3ca243a fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4262ee2e microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xb0bb27ca microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2e9a504a nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x302c1a3f nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x309e88a0 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xb44734c7 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa3d20e40 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc71d7500 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0318a4b3 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4dd1c547 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5a82cd48 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x61c3e151 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x86fd2f7e s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9a1e997f s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xee55dff7 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x053dec25 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41f477be ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x68675b63 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa3588111 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa5c51362 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd88a328a st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd99dabb8 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb0e59f9 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe08940d5 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe902424 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01e893ec st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09a57139 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d624fce st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f74b444 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1758bdca st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x35859921 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x39cd5b52 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x563c60bf st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b380618 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7a2dfdaa st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x906b2332 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xab070c11 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd2a1adcb st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8fdeacc st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc64bebc st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5980790 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1c52817 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf68d55a1 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/ntb/ntb 0x05f90c89 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x1045d8d7 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x13762afc ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x23c186b0 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x2ce447b4 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x75353c81 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x960c1cf9 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xa84f2671 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xa8a0c318 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xab42363c ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xafba7222 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xb1a4cb7d ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb4fd7f9b ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb6b008d3 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xc02b368c ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc1c84e54 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc513a90d ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xe384dc1e ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe5688e3d ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xfdd22228 ntb_unregister_device -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1b3154a7 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x399f7ff8 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x2398f68e __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x23db14a7 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x2e576042 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x470f3ff8 parport_unregister_driver +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2276a826 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7b5b0da3 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x817245b7 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87dff51d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a70f2d6 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x93ba6ef7 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa20d4746 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa36b94ff ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcabd7fd7 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd975a7e0 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x064c5036 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d23b8a8 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0e2d7f2e st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1c47e5f6 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x29263eed st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x387bbcfa st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4608bb11 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5dfc5dac st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x661ec95d st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b534dc9 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f1264f4 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91a2ab47 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94afe643 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a8af9df st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd77d72d2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xefa41f9e st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1ac66f1 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf7991136 st21nfca_se_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x007c2e25 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x097630ee ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x0ea0bc15 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1bf02fd8 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x24788f2c ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x539bb047 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x686f2974 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x73b68de9 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x7bbed8c5 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x8fb0ea0e ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9b07afaf ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xa8a0f1c1 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xad71b53a ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xb0f1c6d1 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xcceeb0e1 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xd73f255f ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xd9216448 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xdea9e90b ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xec721a2f ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf72ef379 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x820b4cf1 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x90af79d0 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x01cdebe8 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0228af12 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x07388b57 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x0806868f parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x10301058 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x25fa7777 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x29c9e10d parport_release +EXPORT_SYMBOL drivers/parport/parport 0x2e51e5a4 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x392668f2 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3ac1931e parport_wait_event EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x53a56769 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x55558e0e parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x5831e3b0 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4de1d690 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4dffa13a parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4ebec632 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x50a85956 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x582b6f77 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x59b690b9 parport_negotiate EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5f462213 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x661403a0 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x6aea66e2 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x7a59a7e4 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7dcb121c parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x8ad6e278 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x914d1fd4 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x99c7da4f parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xa1d8461f parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xa2adccdd parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xa609bba1 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xa7eaa159 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc3818aa3 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xc63c83a6 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xdc53a4c6 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xe4a1c1b9 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xe51bb591 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe69e0f54 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe8e49e09 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xf13801ed parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xf40ae724 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xf55973af parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xf77ea529 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xf96f5908 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport_pc 0x5a96fd7f parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x63a4b5fd parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x208955d0 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/parport/parport 0x5ef4615d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x712eecb1 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x844f2ddc parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8b53c86f parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8d1305f1 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x93031d28 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x943d432c parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x9762538e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xaa6ce893 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xadd65792 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xafa52c27 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb1c3f663 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc014a123 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf9652e93 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xfec91377 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x4ae454fc parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x8aab984d parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0234e46b pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0b48d9c7 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1fa093ed pcmcia_parse_uevents EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x226163d4 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a3edc8e pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2f4f782d pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb4bba4a0 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41b8bc84 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47b6affe pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7910dfe5 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8da1673b pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa8676504 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xad23b920 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcc1c2f1d pcmcia_socket_class EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd61df5b6 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd9be71a3 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf301e667 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8f1dbe9 pccard_register_pcmcia EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfbef6da1 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x5c12fed0 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0271191e cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x366873a4 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb949be55 cros_ec_suspend +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9b3d8b0a pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1b69531c cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3d130290 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7a174cc8 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xdfe765d6 cros_ec_register EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf737f48f cros_ec_unregister -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x0f51b78e rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x2400cdbf rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xdbe80dc7 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x5d89e4a2 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xab6b6e16 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15eb6c01 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25e6e17f rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x316de1a5 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fa0b5a7 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51286c38 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7099f4d7 rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7760eab5 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7cc80af3 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84cfe61b rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x913bf504 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x93c8d931 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9d0751ad rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb62f3c9e rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5737e28 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde0ec681 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdea27921 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb93d512 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeeb0dcf6 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfd3231a9 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xdabff852 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2f75f1cf ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x34ddc8ec scsi_esp_unregister +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xc7e20e4a qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x0f340605 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x59490b1d rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11d30e56 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x22fd753e rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2df425a5 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3424cea8 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3667f7e4 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x39094f87 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x58b97b84 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x716f4fcf rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x717a11ac rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7276ed15 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa70a84fc rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xad306617 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb65c4b1e rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd24e9856 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde94d085 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe36db132 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe4e466e6 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf107e768 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf5442537 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x40332cc9 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xce2f5a17 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3e996378 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4dfef08c scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x833e0ab2 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8d16800c scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x09b49220 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x31e51151 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3df19518 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x661fc308 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7433fb5d fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x99ff352d fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa97ef0fd fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5a636b6 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde8dc5c0 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe1f608e2 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef54d588 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x070332cb fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2ac527 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b6b988a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7e030fee scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8ee85ad5 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x94da5d37 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x084af4a1 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x381c45f1 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c7f1d01 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x62770c06 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x64cab47f fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x742e4bfb fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7597aa56 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x900bec25 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaef5ffb3 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfa291867 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd830198 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x003d9034 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d00c634 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x156bcf26 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x157b7038 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1defb8e0 fc_lport_flogi_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25b9911e fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24daf06b fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25d5a397 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29ea3cc9 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b40791a fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c599d39 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30ab5704 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30fd9486 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x335f5d40 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3898b9c5 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e95a69b libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x420fefeb fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45af4959 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4df04e68 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x515c3249 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5266d341 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52c11f55 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5577e602 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x568fa555 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fb34dc6 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x309712b6 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x445753cf fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x452761ed fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4783d88c fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a31d920 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b838694 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d5ab341 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fb576b0 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5239ab85 fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569dd730 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5829360d fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab74c43 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a31c890 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63ecb74f fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66062c12 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75bf3a8b fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77bfb19f fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c3cacb2 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x685b4dbc fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69f18656 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a11cae2 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b2db184 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x752b9bde fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a7f4786 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a974b2b fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f6882d8 fc_fc4_deregister_provider 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 0x83b535f5 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87c548ce fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88e6b1ae fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ed2b314 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9175fe51 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x938011f0 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b7129b0 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x856f3a4e fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8676ad46 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86feeb5d fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f4dbe8a fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9743ad8c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x997f61eb fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c88ac43 fc_frame_crc_check EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d792ef6 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f61c4a5 fc_rport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7e56b72 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabfcb0df fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad6a2af5 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb01e42ee fc_rport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2e30bdd fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8835aa6 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8e14166 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3a82883 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3cc6915 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc485933f fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc60a9713 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb76ba58f fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9ac2481 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbaaf97af fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5e09ac5 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf1bb7f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd916cc08 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd884268 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2dfffb7 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd43db0d1 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd662b2be fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd98d9767 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc93fcd7 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe44b484f fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebae667f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebcde671 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecdf99fa fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf229ce76 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecd162f7 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xece9cd98 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedc9867b fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf322a14e fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf53a8f8d fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8b4caa5 fc_rport_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdc9286a fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe05c18d fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x150b0805 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2cedefa7 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4628e1bc sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd384b8e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2b114b91 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x455c5fda sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4804a334 sas_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6f4a6302 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2902e87e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb208374d sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2506f89b 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 0x0927299f qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5d0b3ce3 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e91f91d qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ca5508f qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb187a215 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcaf6763c qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcba0629f qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcdad40eb qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd89c9c0a qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed5523df qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf999ea9a qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfed4148c qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/raid_class 0x45b61cc6 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x9fe5b812 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xd509081d raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b6be098 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c6169b6 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e6650af fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2258e9b6 fc_block_rport +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0ecd2aa4 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1bea37d0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x21a1fa52 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x285122f9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5610c486 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x564f9599 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x59340086 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x834f3c03 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8c82e4a0 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x923a23fc qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbeb07fa1 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc92c1c2d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/raid_class 0x7f7617d7 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x8b973f4a raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xfc953621 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x015f0aa6 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1047e0cb fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e41e08d fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27a8ac23 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x303ce91b fc_eh_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3aef8799 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x698a5c54 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x71981850 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x99a039ca scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa8be48f2 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc17bb7bd fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd6d41c72 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd959672b fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdef76230 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdfe9cc39 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf379c783 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd1e33a1 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfda48d99 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0778f8d2 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c2a72bb sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20c69f69 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x245afc8e sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d68660a sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e874233 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x311e0dfd sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32ae68da sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36454da0 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d9ea332 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e218ddf sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c76a8d3 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bf686e4 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e7ee62a sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x719c06f7 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8dffa446 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fcc197b sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9dee487 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae5e0932 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae8e373d sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3b46c53 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd194eaf sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe82a69d sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc939ccd2 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd5086dd sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1ce6c31 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1f63132 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3ad76ef scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf95d5c42 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x004dc3ac spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x40693dac fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x416b9f08 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x492f7e67 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x63c624fb fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83f1af98 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8ada23cf fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8f471bb3 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa3931829 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa69b7966 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf201b8d1 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf392a935 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf8d1453b fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08f797b0 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0de858e5 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44d9eaeb sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49c99ede sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c47407c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e5d2f34 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5081f9e1 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a797966 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63747009 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e1cf818 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x717cb11b sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x739255df sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7982a113 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86d85fa6 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d389304 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94e20b6d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a001686 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a1e5e78 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab7b0f74 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb9ed66f9 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb29ed73 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1adb319 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6be94d6 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe78f2f36 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee3634ea sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xefadf63f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa3dd5f6 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfe4455c0 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffd3aa9a sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x256c6841 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x266429b4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2c9a64a4 spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x476cb89a spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x49a2ef03 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa339e7fb spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xae8440e5 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x09130acf srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb504f325 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdc67884d spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x39be7f73 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x52dcba8b srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5af07580 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9b4304fa srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa88a2b7e srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x78d09461 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xaec0bdbc srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xccbbb536 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xeb71692f 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 @@ -4496,9 +4496,10 @@ 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 0x1152797e cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x149b84d8 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x11e6c220 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3535b1a7 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3ef640c9 cmdq_dev_get_client_reg 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 @@ -4506,446 +4507,445 @@ 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 0x61433952 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 0xb57fd0ee 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 0xe9b0e26e cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x88919fb1 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf45b8726 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 0x03d42e3b geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x22521fb1 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2dde7c25 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2eb71216 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3a1a1147 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x409633cc geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6e9286ce geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x802449a0 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8d686bfb geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x92538b67 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xab831872 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc54bfaa7 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcbf83c3f geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcda39e6e geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd8f3bf86 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xda3868ba geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xef5d3d36 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x16e12fa3 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3369313f geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3580c402 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4597416d geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4aefefba geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x527b2389 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x53366ade geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x80db5db5 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8813a66f geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x914b3f68 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb952321f geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc0aa1d44 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc5fef25d geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd62a65c2 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd7b1ff7d geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe41f9fb8 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xeb76ef46 geni_icc_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x3dfe0c72 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7cee1ce8 qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x24546ef6 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x41053151 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x44bdaf42 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4bd76f1a qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2c1f3fbf qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x560815e8 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x52b49227 qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6a797b11 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9f730047 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc0d6975e qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe07a7ea4 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe7478d89 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9cb90bc4 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb0745db4 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb8692ab3 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb9338a2b qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbb82eb84 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc345cafe qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdf4c056b qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf94a5289 qmi_txn_cancel 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 0x9e1b2a12 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x028d0f35 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a74afc1 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x6fe8a0b4 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x00706e16 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x077fa69b sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c9cbcbb sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1afb645f sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b25aa85 sdw_read_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x24b07e4c sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30ec7139 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2764fe62 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b556c70 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2d8ac50b sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2e429c95 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x397b6f35 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4049aff5 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3d108f56 sdw_update_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x53d6ec0b sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58268f99 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58d458b3 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ee540f1 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e649de6 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x51cacbc0 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5203e76d sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b353230 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ae15646 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e02300f sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x69c7a166 sdw_show_ping_status 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 0x793c031d sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7eb1e5c9 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x851b1055 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x89188179 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e62b6b6 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x91a0b5be sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93e55405 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9db15eec sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x768b8232 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x83222839 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x83b22d34 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85dde13b sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xadf1a3c0 sdw_show_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3b7a846 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa676dd4d sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa960aa7 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb26e231c sdw_clear_slave_status 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 0xcf1058b4 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4b2ecd4 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc105aff8 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xca6f666c sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd3b4857e sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe01ed8af sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xec9d58de sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeeac8bf3 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef6b4656 sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x06471d11 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x17df8eb9 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x186dcede cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2785fd09 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf7df2f26 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x05992f0c cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1106d58d cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x13cfcf61 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2772976b sdw_cdns_exit_reset EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x36d81f86 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x40889107 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x528b88a2 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x80397f20 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa3a201fb sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa7021d19 cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaea03355 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb3343918 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc0507589 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc3d84183 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd60cc415 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf72b06d7 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf9cceb75 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xa6ce7e27 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x029d2464 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x043f6074 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x0b9d31c7 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x135248d4 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x193d9caf ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x32658216 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5559c3b7 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x860f9909 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x90dbe797 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x92f496d2 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x9352bbb0 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x9517e6f3 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb0c0a034 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xb791adb0 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xb8b80d43 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xc203788c __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc41bb9c7 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xc5ed86ed ssb_clockspeed +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x37503402 cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8229c2c7 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8790e62e sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb3a8e183 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc5d0f4fa sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc6862b0e sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd6653b83 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdd3da9a1 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe064d031 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe80f2c80 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xeb0b6cc5 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf228e48e sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf6d453f4 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xbae93ced sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x28c9d656 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2fca382e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x37b41374 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x4271e05d ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x442b6c89 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x49c489c2 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x4bedb598 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x4e33af23 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4f5f3079 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x5c4625db ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x660ab8ce ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x6a1ac8ce ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7fb78f39 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x87f0f23b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x8cd5ff7d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xa2120bc0 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xc23f7cfb ssb_pcihost_register EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd8020df7 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xccad38b9 ssb_bus_sdiobus_register EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf593ff10 ssb_pcihost_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00490504 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06c2e158 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d0505da fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x270a5436 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e9500e9 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42c7a390 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51e9491b fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e7c5fe3 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5eeac9c5 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ef20e2d fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65e39a20 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b6f1949 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x708df613 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76305897 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x85ecfecd fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x900034ba fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa0ea5d06 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf1b8e17 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7bb449f fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc8aefcc fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc289370b fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf0c205e fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe76272f5 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf40a5504 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffed2218 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4b2cdc1e gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb2449efc gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe785a496 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb28f5ae5 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe2ea36fb ade7854_probe -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1151644c nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x88c49b1f nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09fabf4d dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bb60393 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d51cde0 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13d46a45 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a6119b9 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bd2f5f7 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f149935 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21db711e rtllib_wx_get_essid +EXPORT_SYMBOL drivers/ssb/ssb 0xf870ea6b ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf8e0cca2 ssb_commit_settings +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1012de3e fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x16b6ce68 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1aba89b0 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f9a3332 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x234178a1 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24347f2f fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30056a0d fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3bcd0125 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60c011c6 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61661a29 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61c35e0e fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62501a84 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x63bd6699 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66be9a76 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x721e47c7 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a481c9d fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3b2b4fd fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac213c6b fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2bfb01b fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd14ebce5 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4da5a84 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe03213da fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeaa311d0 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf887ee18 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffefd821 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x0fdb152b gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x20c27ff2 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc7811856 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xdc664803 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x5184ca5d ade7854_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x9b3929f1 nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xf106ad4f nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x045e713a rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04c907d2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05f94524 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0db89cc3 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e879fd3 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x206fd02b rtllib_sta_ps_send_null_frame EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33688c99 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34f801e6 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49f5ddc6 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x519bd2eb rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x527b133a RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b11ac1b rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5eea30fc HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6984c5d6 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69afea83 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dda816f rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e762193 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x742f3c41 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b373851 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x805802c8 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x842d6924 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ae38c03 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d28ceb1 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa50c5a19 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa3db7ca rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad75af0e rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb06871f0 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb661b2c7 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc19514c rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0424cb8 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc75d2dd2 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9a5065f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca723a70 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc4da0e3 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3ca3d73 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd54b0790 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd85d2cb9 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddf6a893 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b6d196f rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d499eb6 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d85b144 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2df51bc8 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32b0c286 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3360fbe0 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x358b1161 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38fcc448 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bb3f46b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42ed938d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4442196e notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44c4bd5b alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x467a2081 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47e1a98b rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51d2909d rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x599bd49b rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b4e04ab RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d409258 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5da0d9de rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60e9fa46 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67d9f835 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7294c22b free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x764dbe28 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b268b04 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x910e1c27 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9bced510 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e4a72f6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa293b270 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa79c199d rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba0ee1df rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf6ab218 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfefed1f rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc104dfdd rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc334a586 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc514281a rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdf94d9f rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd12fcf21 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd246739 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddaf5d69 rtllib_wx_set_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf240adff rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf50ad750 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf64d2763 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6507650 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf77e3ac7 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf854b650 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa42cb38 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfbc1a793 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd25434a rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x036b0a3b dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04a30903 ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08864441 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d9f8675 ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c097a33 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e3d6f63 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed2664da rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0aa07a2 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4e3ebff rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfef9be2e rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0206f805 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03fc6e1c ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x047e62ba ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05cc8e9f ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09ee12fc ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b7ba271 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ec253ce HTUpdateSelfAndPeerSetting EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2339e9e2 ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x356b129e ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x362e7bb8 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a0f204d ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bc126a5 ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ef6ada6 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4044123f notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4830f605 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cd4c402 ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d91c851 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53f71451 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x567874fe ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f87d6a9 ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6440d16a ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65eac7f4 ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66197efb SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fe79439 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42c6dd41 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4433143f ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eff4087 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f6f5afd ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5390ab89 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53dbbfe5 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58e7ff98 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a772449 ieee80211_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dac5668 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f5817eb to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71e2cc01 ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7482d75c ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x753bc487 ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76712d0e ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84007f89 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x844d9b37 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8633f962 ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89a269f9 ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aef79b7 ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bcb9030 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91cd68c3 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e74cff4 ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2098fff ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4216b51 ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa623133c ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2d1c6bc ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8cb7ca6 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce5652bd ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd78111c4 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e3d7ea ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1d72878 ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe29a3836 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cf648bf ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7785a405 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77e22d26 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ccf3db6 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8155aa29 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8313304f ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83a6bb9f ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c4d979d ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e2fbe18 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f772a88 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x927536d9 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9312ae24 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9750869d ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x977d1a4e ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97ef60dd rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d11147b ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa12b7ce6 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa67e4605 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaa92cbd dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc0234cf ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc16f4ded ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2ea7852 ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc45fe535 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4ba3071 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2bc5123 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd83a6199 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd916ff63 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb1878c5 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdca93b46 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe05d1849 notify_wx_assoc_event_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4b97f35 ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe73b920c ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7cbb4e3 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9f5eb6c ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefcc9c1c ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf775af7b ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfece2367 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x024ca19e iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x062a8114 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08b17f42 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27663ce9 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a16a5df iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b2039f9 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x397d2746 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d35dd1c iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d970464 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b9de96 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4135d20e iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48df1d78 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50bdfdf4 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52bb60c9 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x579afa04 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a650a35 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d6c6f03 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fbb26f9 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67e3682f iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68b051e3 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ea63c44 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b7391fc iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c0629f6 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7eaf0969 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87c966a6 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87d0f512 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bfb0e95 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fee6e7c __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1623465 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa522dd29 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbaf728a8 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc15dfbf iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1cfbd9e iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc34726fe iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc65def2e iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6d021d3 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd154636f iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1bdeb2c iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3156b0e iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0238b5e iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5169b76 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8a0f72a iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea4787ab iscsit_free_cmd +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed5689b8 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed74b7c8 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed7c1866 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef617479 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf577d42b ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8643984 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb64a779 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02a42a27 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x069f0856 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a96b37b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c73ea1e iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a1fdf12 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21f54d1b iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24e7efce iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c9ebe80 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2fdea568 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38f6808e iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d1497fb iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4728be85 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ffe8951 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56ec7cec iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cb5fb4f iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62bd36a7 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x746c94e8 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78472fa9 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c488547 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e74f873 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81d08fad iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8566b2f6 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89d6684e iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b2204f8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f215cfa iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9528bf68 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x955f619b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e147078 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f38295d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa22f9942 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6b66802 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb6f1160 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1c9a011 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc897bf49 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9dc9cf4 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce6e364c iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3418990 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4cf5efd iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5879b02 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd752c4cb iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe502f8da iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea5f77cc iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf02c58e1 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 0xf53ff391 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbcfa1ba iscsit_aborted_task -EXPORT_SYMBOL drivers/target/target_core_mod 0x02f74ca3 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x05b4e659 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x05c45c81 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0617b07f core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x07cdb821 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5b6d34d iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd9f3433 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0162730b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x01f5c189 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x021861f3 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x0373222c transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b4e1e7f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x0cfe0262 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d3dbff0 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fd545fa core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b37a9a2 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e093590 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ea976c5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f1696ce transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x14f7938d target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x15394e82 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x16fc4adb sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x19cba3dc transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x249f525f target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x28ab6d4e transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b423285 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c6c08cd transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d271024 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ec37ea1 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x154fb565 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x156eb901 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x18cefe0b __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c01199d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x21984c11 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x221eb05a target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2361bec6 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x256c6117 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x271efc45 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2cbc0656 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d509d0e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x32c55940 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x34daba13 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x359195e4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x38826bdf core_allocate_nexus_loss_ua EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a8120ba target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3db895e6 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f50adfc target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x44ffbb0e transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4633d4df transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x46e5739c target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x49acd7f2 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c6533f9 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x58e238cf transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x593cbd7f target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x593e35c3 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a6cf9fc target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4334554a target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f36eab7 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f674c1a target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x509dcf0b transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x53f5e1f6 target_cmd_init_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x65c01bfb core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6655a41f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6910e303 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6da95522 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x733000b7 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7494e70f target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x76045eae transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x80d388e6 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x816ebf33 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8300d730 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x8add51ea target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8beee6d4 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x902af02b target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x915fb921 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x920581d1 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x95b38b05 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x976ed89e spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x978d887c transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3b1bfa5 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa88f4a1f target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c124ad9 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cabb30c passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d80e1e8 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x65037a31 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x664df785 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x68c2acec target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f902df3 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x70987bfb sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x73817327 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x74599ba6 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x79fce8d3 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x823ae3fe core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x836c5672 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x869f5ff2 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x87b55da1 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x8812c95c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d7adfaf transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ee487df target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x90319fc0 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x90693bf2 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9812740d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x996eb3c8 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de1ba72 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa497ee81 transport_deregister_session EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5789004 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6129230 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6a09280 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8ea52a7 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc6e1e24 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe728d04 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3decaae transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc575fd04 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xc5d49203 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xc61204a3 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xc715d0a7 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc6b3c07 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3345f4a target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5db3947 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8179b5a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9dc40d3 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd06834d core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xe248c6e7 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9d11a7a target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xeac976f8 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xeafbe5c6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xafc784bc target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xafdde6e6 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb27109aa core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xb31361f7 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb51182df transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6b09891 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb21ecbb target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbd1a908 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdc1cf5d spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xc121f27f target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc17dbac8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc465c748 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc468af63 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdae36f0 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2e67649 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb71add0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe10e4a80 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe19f435b transport_generic_request_failure EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x0557e431 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x34a5bf65 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x52a5b1c4 ufshcd_shutdown -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x673acf86 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8aea89e5 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8e50634e ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb7004ffc ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xbb2def36 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x02e78f69 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x1f2f6b20 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x9ec1b39a ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xd15659ba ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8de218e9 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x423d27f0 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x04e368af sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3338592f usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49a62a97 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4b87cb3c usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x52655d89 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x63db5cc1 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xacdbe843 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb2bcd21a usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc1d9cca8 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcf881e5d usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe722b69d usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf300165e usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x313ce5e1 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd9041802 usb_serial_suspend -EXPORT_SYMBOL drivers/vdpa/vdpa 0x4a71bd81 vdpa_set_status -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5d7a66ae mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbe2d4b43 mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc863e875 mdev_register_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdb03414e mdev_unregister_driver +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4195449 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb50e263 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcad30f3 target_backend_unregister +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1298395b ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2879bc52 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2c290666 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x605993af ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x795b148d ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x89c7bafc ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9ffa5711 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf8668546 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xb942ab3b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xfe238d44 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x2f30ae77 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xa0d7df90 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3b92d060 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xc8a05026 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xd6fbfc0e sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x06d57664 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25a7dbe3 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5f5e0107 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7051f4ec usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x824d2284 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac3b9ac5 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb17e8633 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd3f3d6c4 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd4519cef usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xddfc7066 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xebf1eb12 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7b812a7c usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xad1b0bfd usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0xe7d87ce0 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x26cdfab7 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x38cb784e mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x71b02460 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdd08419d mdev_unregister_driver EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x4ff14197 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x1b60d48a vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x2216cbcd vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x414c4c3f vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x8436f4a2 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xeb45a35d vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x0eed58fe vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x5dfedb3f vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x3d0c1a7e vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xb776adaf 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 @@ -4976,134 +4976,134 @@ 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 0x055fa773 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x78810feb lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8a4926e8 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc2cd5491 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x16696f9b devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x83c09d01 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa42a2c71 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc2aab750 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 0x1c991ac0 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x272ef20b svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2d9e5b0d svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5dd71ad0 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6db35d64 svga_get_caps 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 0x96b605b8 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaf008ebc svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8fe20996 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbb2f9ddc svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc70a2a3f 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 0xdb061b32 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdb569dc8 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe220f8bc svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf6c4070c svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x8d8ddd50 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xbfeae76a sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xdfadf114 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x05288a13 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe69c234c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x579552fc sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0f566e1b 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/cyber2000fb 0xbb2f18ca cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x00717309 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xdafffc86 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x203b3301 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x63067b5e matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xacb3a6b9 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x153bb65c matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2f4cc152 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4adc2961 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcb10f8dc matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xcd37156c matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x985a1cdd matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x00b3bcae matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8cd1a77b matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x90ec99bd matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xccd9b2e0 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x5923e545 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa02a61d1 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x06bceff8 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0f69394c matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x267b9b38 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x21108841 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5d1c570d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb243514b matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd56e11f8 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x5c3d6bae matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xeadef51d matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x48d3a52f matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb2eb5da6 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf4122ac4 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf8cea710 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb7f454e0 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb8058398 matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3e70ca3c matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8ab56374 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc0ee86fb matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x723c95c2 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8a643224 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa609114f matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb77ac020 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xeb0e6291 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xec5992f8 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xec6283fb 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 0x11fb4e33 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2279788b virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x47f72b55 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x60491651 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x36267ef8 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3681273d w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb4590469 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf7d470de w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x121fa2c7 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x2611e56e w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xca6a2bea w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xf337385a w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x0779ed18 fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x082ad10c __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x12da6aff fscache_relinquish_cache +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0939800f virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2661cf43 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2be47b39 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xed6a7574 is_virtio_dma_buf +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc8549ccb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xcbf9e1f0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb5153862 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdd86a825 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x1ce3a617 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x4706a97d w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf9c05321 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xfc38f993 w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x091389b2 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x16c1bbec fscache_withdraw_cache EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x24d8818c fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0x2b8315f6 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x26227681 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2c9f1a44 __fscache_acquire_volume EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x324e18fe __fscache_unuse_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x32a861a4 fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3f938a1a fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3fedd58b fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x446252bb fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4b457b28 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4fa3a60e __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem -EXPORT_SYMBOL fs/fscache/fscache 0x6336c710 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x6b0fdec9 fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6b293f97 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x5d147255 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5faed794 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x659fd6ba fscache_add_cache 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 0x7105c8c1 __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0x76005483 __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7a2d5e66 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7160d087 __fscache_relinquish_volume EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x8d407131 fscache_resume_after_invalidation EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x9a9e68fd fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x93dcc56a __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9d54e27d fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa15b22b9 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa7046554 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0xaa80bc4e fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaa792cf5 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xac6071bf fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xafa99564 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xafdb022d fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb32b0b50 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb684cf35 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbc5294ea fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xbcfe8675 __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0xbd32b249 __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc0b9ef54 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xc287463e fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xc610b851 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xc6c502bc fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xcf66d7f1 __fscache_begin_write_operation -EXPORT_SYMBOL fs/fscache/fscache 0xd268094b __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0xd825e3ba fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0xd8dd487b fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xf6037693 fscache_wait_for_operation -EXPORT_SYMBOL fs/netfs/netfs 0x04de7f96 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x1df278b2 netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0x35f2e70f netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x9387c4df netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xa0bb718c netfs_readahead +EXPORT_SYMBOL fs/fscache/fscache 0xdcc68a39 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xddae9f7a __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdecb2f04 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf0f5a563 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xfcb2ccc8 __fscache_write_to_cache +EXPORT_SYMBOL fs/netfs/netfs 0x072bda50 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x57a7d364 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x5e87b23f netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x5ebe8ef0 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xe4480e36 netfs_readahead EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x920471fa qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9cb953a2 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x9ce16dea qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb15bdfa0 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xe8b9d8ad qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf4550220 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x09651289 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x152762a9 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1d552faa qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x4591ed61 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa74b4bf4 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb2001eeb 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 @@ -5130,14 +5130,14 @@ EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x77ff614f 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 0xabf5881a lc_seq_dump_details 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 0xeb947a2f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xea29373f 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 @@ -5176,848 +5176,848 @@ 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 0x732a744d lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x834267da lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc464ace5 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc9fe9d08 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xceb6540d lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd5d2dd6a lowpan_register_netdev -EXPORT_SYMBOL net/802/p8022 0xc5499dd8 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xd1d4426d unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x32ff5165 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x903b1bb3 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x093ed804 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x0ad287b2 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x171c0f8d p9_is_proto_dotl +EXPORT_SYMBOL net/6lowpan/6lowpan 0x274b3b48 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x332bffb5 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x57bc0c4b lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9bd1e9f6 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xad4fc656 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd000b276 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0xa3ea4c0d register_8022_client +EXPORT_SYMBOL net/802/p8022 0xd1ebc5ee unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x5a888a97 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x942334fc unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x011a4e44 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x09595b43 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0998463b p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0b68e289 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x0ca9b50b __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x0ed31a37 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x1e213f7d p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x1e7de4cd p9_client_disconnect EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x2f7bce7f p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x3328eae5 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x35bf1087 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x38374eb2 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3948fa96 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x399318fb p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2f7d18c8 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x39d819ad p9_client_setattr EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x407f081d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x4002cf06 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x402bcb67 p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x49737e5d p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x4b234eca p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x42fdb1a1 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4b67013c p9_client_fcreate EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4cbd6a2d p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x58b7da82 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x5a59fa1f p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x67833328 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x6fe6103d p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x7291e46b p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x740367f1 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x74331267 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x4cac2432 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x527a557b p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x57e7c1ce p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x5b3a9ee1 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x5bde3d0d v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x5d2a2404 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x5ebe3b72 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x64513ffe p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x689ac6ab p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x7942325f p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7b03d3ef p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x8df70261 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x943af319 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7b7fce24 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x7f7073a5 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x8b39a3d8 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x8d75f68e p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x945a3545 p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x96c4e17e p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x9870dcef p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x9cb8d338 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xa149e439 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xa356017d p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xac5ad1ff p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xaf6062f0 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xaf93a73c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9e791b55 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xa19858f0 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xa2054580 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xaae3af48 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb0bd0660 p9_client_mknod_dotl EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xb9e1eed5 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xc2cd09b8 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xc4a5153b v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xc50fff7c p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xc94ddf38 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xcc3f228f p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xcd9e609c p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xbb9a74fb v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5769f3a do_trace_9p_fid_put EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd569248c do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0xde607ab9 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xe0e42ed4 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xe4d5125c __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xe54a9a5e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd426f0ce p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xe12cf1cf p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xfb95d858 p9_client_write -EXPORT_SYMBOL net/appletalk/appletalk 0x1f3503ad alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x76f39395 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x9f1a478b atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xd07c0e68 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x046e5f87 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x05478ad1 atm_dev_lookup +EXPORT_SYMBOL net/9p/9pnet 0xe7bb0370 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xe90b2b00 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe9fc931f p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xeaaa7eb7 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xec25c8c9 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xf7a11f45 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xfaa4fb28 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xfbbefe31 p9_client_unlinkat +EXPORT_SYMBOL net/appletalk/appletalk 0x26954390 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x8c7334e4 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x8ea4e164 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xcfc901f6 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x00c3372f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x0ad2cf2a atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x11496711 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1ada5f18 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2b945546 register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x37b5f832 atm_charge -EXPORT_SYMBOL net/atm/atm 0x38570d79 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x58b76b69 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x5d8d5707 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x87f6af21 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9aa6a71e vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x9ecabdcf atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x5dd979c1 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x67270259 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x7df20eb3 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x9fca2fc5 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa949c1a6 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xa9735aa0 atm_charge EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xe4786eb6 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xecc98b2a vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xef6cf0a8 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xb01b9416 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xbbe8ff2d vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf2b27b3e atm_dev_register EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0caf7b05 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x0fe05c55 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x1ba83c71 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x227ebbdb ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2c3207d7 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x49bd2f5e ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x598bf84c ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x7c961eeb ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x8db8955f ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x55be3630 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x6dfc3002 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x7388f418 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb9876bdc ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcab06a60 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xda4a37da ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x02a732fb l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03e05c33 __hci_cmd_send +EXPORT_SYMBOL net/ax25/ax25 0xf0b2b309 ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01bd3fa4 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0226091f hci_recv_diag EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x08360e04 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0891430c bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d83262e __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1009422d hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10a5b44d l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b9da868 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c4c06c7 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13fd78be bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1633afee l2cap_conn_get EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x261d3bf6 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2be653ee hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36f5a96e hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b4ba1d7 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c85fb60 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x462b4ecb hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fe2a2ca hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x559fc3d3 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a2af4cf bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ab56a96 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ace5256 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca50d4c hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dbf8cb2 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5eb456ac hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61de10e7 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66420534 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x72cb4d5c hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x74324043 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22757eca bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x256a3962 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x396d05f7 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3992e5e2 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cb9c040 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43b96c43 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47be11e0 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48e59546 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49883466 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b81a707 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d0c3dec bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x515b6513 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5329c978 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x586f2bba l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58f7630c l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e32b150 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ea56119 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e4fe3e8 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7403e08b hci_conn_security 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 0x7d3a74a6 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c7befb5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ab822b2 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8efb42a7 __hci_cmd_sync_ev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x95078f1b hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x963e030b bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x966c29b0 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x98012edd hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b2e6754 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e5addf7 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9539c8b __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc042ebf9 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4f79ee7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc778fab9 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc884d02d hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca82502d hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcacd2f3d bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1b2be02 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2186b1e bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95dfc161 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x969335d7 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4496e32 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4f31dc8 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa657e6a1 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6d07939 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab8368d0 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaee011cb l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb840495e bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd053713 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2da5796 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc392c695 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc560abc3 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc757914c __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc4d7d40 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1125452 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f36aea hci_suspend_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd869ef97 hci_resume_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf948feb hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef0956ca bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf363f8f6 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf69e4ce2 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf709cdd6 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb4870ae bt_accept_enqueue -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0d74df60 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0fe5dfff ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x86693173 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb01b42f2 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1a659dc ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf570ad2e ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0193c2b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe65d046a hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe76d3156 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeba5e680 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee068671 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7fc1ca0 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa43f7f9 hci_release_dev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x159bb2bb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x224af4c1 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x90533197 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb849ff0d ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd01d0070 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd136b852 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x0f186ca9 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x190a8045 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x186db2ce 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 0x3b368739 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 0x7b286d4b caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x6acccb51 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 0xae7eaea5 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xcec0dfdb caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0xef97247f cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x595f8a6b can_sock_destruct -EXPORT_SYMBOL net/can/can 0x62978a55 can_rx_register -EXPORT_SYMBOL net/can/can 0x87f5bd7e can_proto_unregister -EXPORT_SYMBOL net/can/can 0x8b70180c can_rx_unregister -EXPORT_SYMBOL net/can/can 0xddfea01e can_proto_register -EXPORT_SYMBOL net/can/can 0xf7e8ab40 can_send -EXPORT_SYMBOL net/ceph/libceph 0x00972337 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x01ad5aa6 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x01c55b9c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/caif/caif 0xfc64babc cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x1a19e048 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x4ce57623 can_proto_register +EXPORT_SYMBOL net/can/can 0x6b593f68 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xa2dbc52f can_proto_unregister +EXPORT_SYMBOL net/can/can 0xc23b9715 can_rx_register +EXPORT_SYMBOL net/can/can 0xcec5a270 can_send +EXPORT_SYMBOL net/ceph/libceph 0x03de79bd ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x05875940 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x0759410f osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x089b0a55 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x089d3710 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x08e4c12c ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x0a7d73a5 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x0d865773 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x0f92e3c8 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x0c381185 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x1012d432 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1043e9a8 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x1079d646 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x11aa8a6e ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x13b11639 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x14b8502b ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x1505cb91 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x164d83b0 ceph_osdc_notify 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 0x17e547ee ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x183ef42b ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x19d0ef26 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x1aeb570b ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x1c95e1e2 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x1ff056d2 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1d2eaefe ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x1e0b7906 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x1e344d76 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1f6c5ee8 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x200313d3 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x20367808 osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x21df4ff7 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x225539a4 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x27832887 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x27f5f884 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2a31bd04 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x242286eb ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x276ee6b1 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c681c18 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x31e7ebe6 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x32467d9d ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x2aa88849 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x2ba14f33 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2c25f345 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x2f44f8cd ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x33013c20 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x36eb7161 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x37e78e4d osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x38f1ae20 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a62bacc osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3ed6108b ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x3e8741c3 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x419830f1 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x44ba136d ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x4634f391 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x46391c8a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x41d8a2f5 osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4a422966 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x4869d9c3 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x4a08e657 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4d45288f osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x4df4d054 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4b660439 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x4c0f97ce ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x4e15dbf3 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x547a0b56 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x54960fdf ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x56843aea ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x51523201 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x52001acc ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x552e1eaf ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59e38346 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x586b358a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x598fd8a5 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b0105d3 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x5c08b2b1 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x5cbfd9dc ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x5f7212fc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x5fd0615a ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x6223134d ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x635cb078 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x637524e1 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6695c703 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x66cf142e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x660d2982 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x69dec124 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x74612467 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x772a99a5 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x774b8a71 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x7868cdf0 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x789dd0fd ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x78ccf4c5 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x7fb14df7 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6c7e142c ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x74ed6ac9 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x762199b9 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x796f0080 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7bea6c25 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x7ced2e73 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x7ed7c95f osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7f8eb133 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x83694752 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x85cd3750 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x860368b0 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x86ee5bb0 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x88b21dd1 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x8943be57 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x8ab66ec1 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x8d7fdbfd ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x8ef54997 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x8f2487f0 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x914a2255 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x9272aae8 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x872135b2 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8846d929 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x89ae032d ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x8b72808b ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x9026a1aa ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x91d65db0 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x93425cf3 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x941455af ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x98e46f90 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x998da0c6 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x999a84ea ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x99de43e1 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9a14542c osd_req_op_cls_request_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c84bf8c ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9dc87dba ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x9e5eccb1 ceph_open_session 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 0xa4677218 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xa2452e77 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa4af110b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa59e913f __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa5b48929 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa74604cd osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xad5d7438 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xab49dd6c ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xabee1ff6 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xad95aa86 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xaf54f29d ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xae1a58cb ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb09ffc3d __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb2f170b7 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xb4e64cc1 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb57991f7 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xb7189fa9 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb6dd2a82 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7926f6f osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xb9dd5b7d ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xb9eba36e ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbbad44e9 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xb7f9db7d ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xbd115be0 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc2b7c25a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xbf3a2bce ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xc148de1b ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc42b4edf ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xc4b8f546 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4f4e3e1 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc5688b66 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xc6b08597 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xc944ebb8 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcaa4aebe ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xcb1af835 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xcb863f26 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd2825599 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xcaf1b246 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xcbb67287 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xcc0c3517 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xcd541e73 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xce94efd9 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xcef640b2 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xcf4693c3 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xd2b0c16e ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd3b8a6e5 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xd3d63814 ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd5271f9c ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xd667cfcb osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xd81e5bb5 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xdc66088d ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xdded9265 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xd88bdd9d ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xd910f7e0 ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe6f8038a ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xe4b19136 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe80e29b2 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xe9032ac9 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xeb1ff036 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xeb3ede4a ceph_copy_from_page_vector 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 0xf4511310 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xf4819cf7 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xf55dc6ed ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xf64cf0f3 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xf87ed434 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xf9bae360 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0xfff4d073 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6ff87d37 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xccf75a62 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x05a0341b is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x294c6dae hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x74be9ede wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7c543a45 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x91a5a801 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa3420ede wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf11fee3b wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf16a2ea5 wpan_phy_find +EXPORT_SYMBOL net/ceph/libceph 0xf6dd775a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xffbd2736 ceph_cls_break_lock +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x42de3e28 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x600384da dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x81e2721b hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x9fa8b460 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x091d2866 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x51bda9ff wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x796a6534 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7d8e0e2c wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9c466742 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc875ed69 wpan_phy_unregister EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x617d2eef __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xec4aba6b __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x5619c6ef __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd14e1c3f __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xeb97aa64 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xab7a9cde ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaf751e08 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd38830f6 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe18f9950 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4f7b2dd2 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5bf99bf8 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5f620b57 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x74b50505 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x09fd44ed ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x32e4da17 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x63c3a166 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xffd91f82 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x588d79b5 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x86ea3248 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa6957aca udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12b573f1 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2ba3114f ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x36a2b0c6 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3cc04f20 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3fde1ade ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67b0d746 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c3fb835 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f9bed58 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbe1ba12f ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9dadf84e ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdf0f2d8b ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xec0bcfe5 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7639bf2 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0xdaa50d74 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xf62ce1de xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x83f5d7b8 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xeab6d10e xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x0c8f0962 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x224f0a90 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x422d482f lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x57afe505 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x7f5d660e lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xce3692e8 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xda798159 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xf4fc8391 lapb_disconnect_request +EXPORT_SYMBOL net/ipv4/gre 0x22e183b0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xab7fcc25 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc453a0a8 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc4c9cd90 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xee0145f4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0ed7d892 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8291180c arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x964bcf3b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe2e3bf19 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1da499ec ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb71af58a ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd62e70fe ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf07dbf4e ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x62453c27 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xcb2087a0 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x9aa1d664 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x09287d52 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4acb03a3 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6cc1c8e2 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x80c5e624 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x80e0f642 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8ebc19a0 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x91e58896 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbec7ceaa ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xec83fc4b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3e801b78 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5d35599a ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6ea189c4 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x84e29f81 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xeb3edb26 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xf0792da6 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x25041340 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdbe79ae3 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x0d93e67a lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x11df7d99 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x1c2ae2fd lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x3e9bcc53 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x42d1668b lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xa69c7427 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xaae59b75 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xe4216815 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x04bb474a llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x082c2f8f llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x43a1e72f llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x3cb95b2e llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x563e3982 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x78a21e48 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x92d0aa5c llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x9995831d llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xe1b4e145 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xfa555262 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x05171d33 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x068add99 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x070d5267 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x0a7900f0 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x0b299c40 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x1439008c ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x172bb624 ieee80211_txq_get_depth +EXPORT_SYMBOL net/llc/llc 0x8014f5fd llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x99396bf7 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xcbf777af llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xf24b7139 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x0042f7f2 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x01069010 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x02999da0 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x058014fc ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x093f2068 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x0b61305a ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x1451cf14 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x17c26340 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x1832a0ce ieee80211_beacon_set_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1afa9650 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x1a6041af ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x1c383630 ieee80211_beacon_get_template EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x20a3e273 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x22a909b6 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2316b7a4 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x25dfc769 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x28b38f0d ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x2994191d ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x29a3c2b8 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x2ac49b76 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2cbb3869 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x34e64b3f ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x352252bb ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x37a29f68 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x1da553e7 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x20b38308 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x217e8c91 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x26acbfa2 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x32cc6da2 __ieee80211_create_tpt_led_trigger EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3c4818e8 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x3d757174 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x433b7cbc ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x43e1cc3d ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x45b9ee5c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x47dfb145 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x48f6f4ef ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4e668b78 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x5321167f ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x55657854 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x5d385b2b ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x61d99494 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x641a36c2 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x654b49ea ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x668b882d ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x68ec7282 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x699f6824 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x6a5a13c3 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x6da589e3 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x6fabfb74 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x71ac1fb2 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x71c21ae2 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7428a66b ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x78445aa3 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x7ac6bcb3 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8466ae05 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x87c5b51b ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8a881e30 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x8cc1d5f4 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8e948e00 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x8f2fe98f ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x910fb401 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x934f5083 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x93d3e47b ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x95e2c6cb ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x422896b0 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x42e34a62 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x43c9d051 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x4534c6d8 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x47ca2505 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x4ae0caea ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x4c86bace ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x4eaa0558 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4f3b4525 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x53b0e321 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x53c7ed79 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x53e469a8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x56493061 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x5771f13e ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x5bd9074f ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5be1e390 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x5c2fac1f ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x5cb84035 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x6168ba46 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6528e32d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x671d2d7e ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x677d779f ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6c5742dc ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6e81bbaf ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x6f9ef012 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x71781bab ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7264e2a7 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x7a53d4e6 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7aaa7f00 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7b8a2a12 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7e2dc0b8 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x856424a8 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x8c24b099 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8eb5ad55 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8eb6720a ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8ee5458d ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9248000e __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x93ff9f86 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x9419791d ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x98ea6db6 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x98ef57ba ieee80211_send_bar EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9963de9d ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x9a7005fd wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x9c242fc1 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x9c9f842e ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x9ed38523 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa045f61d __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa1299cfc ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xa40d1ecd ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa4408e83 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xa46cfa3b ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa81f4129 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xa9b38340 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9a927567 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x9a978663 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x9ec4313e ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xa1694b1f ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xa2800ac1 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa3ac4b04 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa3f33dfd ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa750f6f7 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xa93944a8 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xa9a939f9 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xaa70393d ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xab34280b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xadb79c03 ieee80211_cqm_rssi_notify EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb4d902c0 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb5a95833 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xb5cad99a ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xb7f61bf2 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb85eb7af ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xbe0209a2 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc1843b29 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xca65a886 ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xcdf37112 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xced24266 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xd0632807 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd069df2c ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd49562df ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xd507c038 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd604c0a4 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xd62567eb ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xd7d84ca4 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xe153c077 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xe161d208 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xe3f331e8 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xe5e0dd74 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xe91a4445 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xe9a6d5c0 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xec82d10c ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xedf301bb ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xee73b242 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xee86d595 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xf1f52dfc rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xf7d4a6aa ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xfdcb4100 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xfdf0e89b ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xfe011e04 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xfefc7354 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xff3ca1ad ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac802154/mac802154 0x0064d91f ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x02c1d555 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1ff383b7 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0x37e07414 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x7091cbe7 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x83d007e5 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc83074ce ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xfc986d91 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0xff9079fb ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29ba1bd7 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c67ca90 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5722d10d ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5becccb5 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e8f81ad ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6f2fdf66 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x925ec8f8 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9516032b ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x999497ba unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaae41860 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1fd241b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2570e1b ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0e53844 ip_vs_conn_out_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb7ea4455 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xb9bf74e8 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc0cba2ab ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc4416215 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc70d4d1f ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xcb359805 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xcf1f290b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd18ee83d ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd1c1f79a wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd2362762 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xd475c199 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xd553473f ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd7490ae6 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd99d0265 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdaaf6241 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xdcea5db7 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xdd6033b7 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xe0399129 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe39cfb0d ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xe83d1f93 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xe8b4cc72 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe92957e8 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xebe68e42 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xedca50eb ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf03f21d0 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xf46ea3bc ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf6287499 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfbb79349 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfcebf2f6 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xfe697625 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfe8fcce4 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac802154/mac802154 0x1bac00c2 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1eaffade ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x687d6df2 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x842a8005 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8c73d08c ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa131b887 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc9273473 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xe92c095a ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xee76ab23 ieee802154_xmit_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c4dd436 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x121eb0cb ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x245ac4e8 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f9ad017 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x399ef377 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6abd38de ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b8ca67a ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b1b2817 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b530013 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8dffa26e unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9aecdd95 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa90d8700 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba818bf0 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc4515564 ip_vs_conn_in_get EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6831c2f ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec71904c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeeed9d4a register_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5c35b59e nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4f80e3ee 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 0x1019787a nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x15963035 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5004265b __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xefc03bf2 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x0c1c5d0f nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x3610d5b8 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x9b08ad02 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xca27db57 nf_nat_follow_master 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 0x26878643 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x30c4b916 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x387725f6 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x1a71d9bf xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x37193b18 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf5f6f5 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3c097e42 xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4c494cb0 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4e118c72 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x6de929af xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x8d609b94 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x92611bb7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x70756a82 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x75e3e136 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x9921bc4e xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xae2c302a xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbbc98535 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xce3a3ebd xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xda8b025f xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xfaa0890e xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x06f2336b nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x12d32136 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x145758bf nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x300fed3f nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x3ab9b559 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x46a4fd20 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x0038453a nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0cbf1741 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x1480ba56 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1fcd91ed nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2bfc4dae nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x381d8918 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3f2e3044 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x3f5c7ffb nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x47540548 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x48e95aa6 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x50ca4774 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x54f4be80 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x73e3dee8 nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x794a61aa nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x79f0c835 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8c5677ec nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x90f78847 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x9dc41cf6 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x9fb5a5ea nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xb039c866 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb1b5d8c1 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb1e857f1 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xd629cdf7 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xdab2304b nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x84202a65 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x9c4fef83 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9f1debde nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xcb4d0ef4 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xd6db57c3 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd8db8bd3 nfc_llc_stop EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe3e45b98 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xe6391aef nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xea673098 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xf51f62df nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/nci/nci 0x0812a127 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x199eaeef nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x25ace8c7 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x312a539a nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x3d8192d8 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x5098672f nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5c365dcc nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5d86189f nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x68ef6601 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x6b9d5f4c nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x7e6e1e43 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x81bf9203 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8a2a77ef nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x8d388e8f nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8ff48a45 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x90dc79a1 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x98b54f99 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xa1aa94ac nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xa7f97121 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb5ce2406 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xb9c81768 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/hci/hci 0xdf2014cf nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf881d732 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x03a2bb3a nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x05e06c32 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x06475860 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0ba280d1 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0c139b84 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x10e66134 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x13b73c7a nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1d270338 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1e1da718 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x2455b626 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x260ccb5f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x306d593e nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x477f6b92 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x4b820c21 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x4baaad88 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x58603c14 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x620b670d nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x85d5b2ce nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x95202535 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x996c03df nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x99cfdc0a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa9a1edee nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xab7b7094 nci_nfcc_loopback EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc253d26a nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xcb7686af nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xde0909d3 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xe0536eb5 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xebaf7840 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xf2419bd6 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf384d3e6 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xfcd72fbc nci_core_init -EXPORT_SYMBOL net/nfc/nfc 0x14ba5e39 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x1c0aaeaa nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x1c7eb5e6 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x1f516bdf nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x2ee04138 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x2f26f07c nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x360d30ee nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x36f00973 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x37cdd58f nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x4746ecea nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x4e771bae nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5f204a38 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6221a4f9 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x6487798d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x70d58dcc nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x9b9ff073 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x9df3a8c0 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x9fa71c0a nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa59d838e nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xa6c13a09 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xa901cdf1 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xa98ba7c1 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xbb260165 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xe1b6f093 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xefa612c8 nfc_class -EXPORT_SYMBOL net/nfc/nfc_digital 0x90407aeb nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x96924850 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x9d09ee2e nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xa7dcb365 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x3034dc3f pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x36d2a2e9 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x48d1532e phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x5dd7b915 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x5f3762ad pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x6870f358 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x747fa287 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xb39d145e phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a85dfd0 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c6078d4 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x23c47717 rxrpc_kernel_end_call +EXPORT_SYMBOL net/nfc/nci/nci 0xdf7abe80 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe1192753 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xe5855c02 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xef70301c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf628bad5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xfa194fb7 nci_recv_frame +EXPORT_SYMBOL net/nfc/nfc 0x00c62a32 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x00e00675 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x0c01e707 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x1546d1b1 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x2029e50c nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x32023480 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x3ba9f5ca nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3e1d8b65 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x42b2e611 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x4a61123f nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x676dc5cf nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7dd38064 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x7f32b1b5 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x91ae6f5e nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x955d1a9e nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x95a0aa67 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa1ded97a nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa3ec6669 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xbaa1de94 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xc73a4819 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xc78b1574 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xcf1a732d nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd0d36f1d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xd80cecea nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xdf207bd2 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x417b23d5 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x51bd6463 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x81e294fc nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbff68d5a nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x4518db52 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x570195d6 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x74c2b442 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x75650e1b phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x8a8c9fb3 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x8f4f5de5 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa896a99b pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xb525bc9b phonet_header_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0936610b rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0b3d3ee3 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0e4be51b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x234669c1 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3198876c rxrpc_get_null_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3906412e rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3da46c00 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b485d4d rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x535d5419 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ba6fa1a rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d2f149e rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d36152c rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ab08d50 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8687e0fb rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa5c5b0b4 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc2e7ef07 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc650e93f rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe19c18c1 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe98764d9 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xec3105a4 key_type_rxrpc -EXPORT_SYMBOL net/sctp/sctp 0x705da152 sctp_do_peeloff +EXPORT_SYMBOL net/rxrpc/rxrpc 0x32fee8aa rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3376f047 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x574acab1 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6c89634a rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x85ef37e9 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8fc82193 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa4c5196d rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8c4e8f8 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb32f4ff9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc5f3f7f8 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe0bf4eca rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7432e5a rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf91f9231 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0x26a847a3 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x81d0d5f4 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x907b0a14 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x9673f579 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xbcb29e3e __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xc5a0dcfb __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xc6c557d9 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xee78631a __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xf6037b45 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x073db0d7 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x13d26bdf gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x75444f10 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e3d3376 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x56256e69 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8d5eda5 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x4cdb1030 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x95d35631 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xde6bfc6e tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xdf50d786 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x257c2766 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x002913f5 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x008bd8ca cfg80211_send_layer2_update +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x201a74ba gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6bfdfff7 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdac899df gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x0b30d3fd svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1e00dac3 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x98ad1b84 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x4e70906e tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x61169edf tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x68c46efa tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xcfa1e801 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x430455aa tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0022506e ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x008e0bf6 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0106bf3a regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x016462fd cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0a395d37 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x072ca560 cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0f8a37db cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x1046ee3c cfg80211_chandef_usable EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x11af8cd9 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x135926ab cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x15232351 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x160548de ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1467e82e ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x14fa2833 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1508b246 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x16f343ac cfg80211_chandef_usable EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x192b4104 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x19ab7198 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1c11bcd7 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x1c5202f8 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d1b609b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x20ae262c __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x269f8012 cfg80211_scan_done 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 0x2908ee72 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x2a121f3d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2b93eea7 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2c87c332 cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x3307065d cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x334b3511 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x35d6d54d wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x27dda520 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x2fccd496 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3025e8dd cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x302f859f cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x32d2c9ec regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x33063e8e cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x35abc0e5 cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x36875fa0 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x37db10c5 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x38a48cd2 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3945c483 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x3d2ad0a2 cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x3dbe72fc cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3f59c4c9 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x40158db4 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x41d3a958 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x421cd139 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3d330361 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3e4943c2 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x3fdd8a72 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x405ae06c cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x41bf1d11 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x42e0e9cc cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4325b778 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x4390b4d5 cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x441cf17d cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x466a3def wiphy_unregister EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b716be7 cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4d9ef511 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x4f47d21b cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x5155d223 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x522fee34 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x536206b7 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x536c8a17 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x557e6dc9 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x5408b779 wiphy_read_of_freq_limits EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x55a18044 cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x5813b28a cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x5a2589c6 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x5afd515f cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x5b83e179 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x62ce1dc8 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x6477678d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x6558c399 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x660265e2 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x55d7cb40 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x56045b8b cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x586e2798 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x59a65f3c wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5c206b2b wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x5d6f7f31 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5f628548 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x61aa8cfd cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x67d92770 cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6af3949d cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0x6babbd82 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x69dfa5f0 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6a5a7b7e wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6d27d9b7 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x6e70c53d cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x763719f3 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x774b3453 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6e2604d2 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x723135fc cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x73c8e0f2 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x7459aaff cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x776265ae cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x77b1e6f1 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7956e5bb regulatory_set_wiphy_regd_sync 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 0x7b33b504 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7b6a815a wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7d3f3b23 cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x81c12e8c cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x831508d9 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x868019b7 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x8d302746 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x8d935a4c cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x8439fc27 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x85c753b0 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x85fd209a cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8a5b72ba __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8a6eb933 cfg80211_pmksa_candidate_notify EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9539c32a cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x95b37b85 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x971a9451 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x90898980 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x94034422 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x9412d4c6 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x96ab71ec ieee80211_get_channel_khz EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x98b64bc4 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x997aa95d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x99f4a187 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x97fe00b4 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x98f63148 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x9c0e8f8d cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9cfbbe02 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9d9abe25 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x9dd2f2d2 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x9dee3e19 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa863576d cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xaa08cb78 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xaf07d377 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xaf597b55 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xb0f9f244 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xb21e19cb cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xb5032131 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb64a5ddd cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb6bc8865 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xb74cf948 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xb8256be3 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xbaa35644 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xbd62e262 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xbe8f0408 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xbed122fa cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xc002c938 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xc46fd598 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9d9ae74e cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x9f10670c cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa629027a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa83c36ce cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xac05984a cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xac377d85 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xac7f0f05 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xb2bacdfa cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xb3434c67 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb37b32b4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb47414cd cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb4b9e549 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xbe126b83 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc5bd6a5e cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0xcb80300f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc7e000bb cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc97f7638 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xcb3694b6 wiphy_register EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xce38642d get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xce6be3d5 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xcfe82e5a cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xd1b17b1c cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd2ebdd4d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd40e4150 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xd4502cab regulatory_pre_cac_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd87eb763 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd6eafde9 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xd80caa86 freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xda5cee44 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdbae8c05 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xde12ad49 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xdf888f83 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xe05a6ac4 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe3752c55 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe9cc18d8 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xea19e766 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xf053ccff cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xf285184d cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xdd46eb46 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xdd5db982 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdd888ac4 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe190dad2 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeaae15d8 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xed919529 __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf4993476 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf681d586 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xfb5ad8a1 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xfbcc6b0c __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xfee93b9d cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/lib80211 0x177ec032 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x20f4a9c6 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x2948c91f lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7d152bd3 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xafa96ecd lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xf12eebe4 lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x34b0b45f ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x378b4262 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x119e1d3e snd_seq_create_kernel_client +EXPORT_SYMBOL net/wireless/cfg80211 0xf839defb cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xf9f5b0c4 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xfa9a9dd8 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xfcb39aad cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xffc374fa cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/lib80211 0x056cf7d8 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x072ede5b lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4909bdfe lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x787d331c lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd8db8a6a lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xdf62b3f6 lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xe5633461 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x4f1383c8 snd_mixer_oss_ioctl_card EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x60fd4798 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5220ce16 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 0x7109147e snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcc521541 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd3ca088a snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xf07f752c snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xff385320 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 0x833a3e07 snd_midi_channel_set_clear EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set @@ -6029,434 +6029,434 @@ 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 0x4d019272 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x02cd66bf snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x05e06922 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x071889d0 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x07beeb0e snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x09471299 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x0f324471 snd_ctl_replace +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x75204c87 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0165a039 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x0eef1cdc snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x239c659a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x23086ec0 snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x250d9b70 snd_pci_quirk_lookup EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3bece992 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x40e8b26a snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x44b33e2f snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x45d253c6 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x3adc65eb snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x419e368b snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x444d906d snd_mixer_oss_notify_callback EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4ab2a257 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x56155003 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x5ad5a7b1 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x5f5e2648 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x660e50a3 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x6e450951 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x729055b2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x4ff90679 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x51f8ae18 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x56118d55 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x57d69e99 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x5e83d5ff snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x60c732d9 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x67400c44 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x6af16c97 snd_component_add EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7a6956db snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x7ae66b10 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7bc8c82c snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x7de33745 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x81f35a81 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x834bf584 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x84fb1143 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x88ef9f70 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x8c4d8608 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x7be2d30c snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7c58a64c snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x7c75c11e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x82e9c6b7 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x84c2e2fd snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8853c651 snd_ctl_unregister_ioctl EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e80756f _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x8ec26ea4 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x8f06ea5c snd_jack_add_new_kctl EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x949dbce5 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x96950c91 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x9aaa0c63 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x9d48a156 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x9239f353 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x938b7e61 snd_ctl_replace EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xaa391235 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x9f85c285 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xa274a1fa snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa818957b snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xa8578e72 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xacf72856 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xaefc2340 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xaf7d8d8f snd_ctl_free_one EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5d14e23 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xbac3dbb5 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xbbdff8df snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xbe630b26 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xc1998671 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xb614a728 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xb8732fca snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xbb4fb2ee snd_power_wait EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc80497f5 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xc7e90ed4 snd_ctl_boolean_mono_info EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcf409482 snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0xd001ad15 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd3b17dad snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xdc3e4d9f snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xe6bee831 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xeb953a07 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xf32f1315 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xf8c7d6e3 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xf957c483 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xfa0ccba4 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xfb0ee2a9 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xcf37a0ca snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xd0f4cb59 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd243dcc4 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd3b4be42 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xe232fbd2 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xeb387f0f snd_device_new +EXPORT_SYMBOL sound/core/snd 0xeb80ef7b snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xebe8d832 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xeeb2f7c8 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf557e226 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xfa197a0a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xfee0c0be snd_info_register EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x158db30c snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x20e9146f snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xf98262d6 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x749510d0 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x86539284 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x38d17f2d snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x0357f5f1 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x0291cfe9 snd_pcm_set_managed_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x05c8157b snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x05d001c1 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x05f45d29 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x070e5f4d snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x09956917 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x0ad34ef3 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x10562b58 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x10b50b65 snd_pcm_lib_preallocate_pages EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x11fd6cf3 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x17aa4420 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x17c65f79 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x185ace6f snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x19f96e4a _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2c5d2511 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x2c9324ae snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x311e5f1b snd_dma_alloc_dir_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x3327e029 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1db13c90 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x27e7afcf snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x347b66e7 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x34d3396a snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38f1f41b snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x40abd090 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x41be2750 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x425ef096 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x433ef4f8 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x439769cc snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x4944b6ab snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x4ce96ae6 snd_pcm_set_ops 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 0x52282c3c snd_pcm_set_ops EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5e3c96cb snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5e8610f5 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x61758fed snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x640446f9 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6026ef46 snd_pcm_lib_malloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6da979c3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x6cd96d37 snd_pcm_hw_param_last EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x76e632bb snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x7bfc79c2 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x813a3d38 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x72d92a6c snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x73e93518 snd_pcm_open_substream EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x849706d0 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8b0c36bb snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8f6d64db snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x8f7ffb3f snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x8b762bf1 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x8dd471ef snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x8e2b0af2 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x90e97528 snd_pcm_suspend_all EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa0a488ae snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xa0ef091d snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xa3dcc70c snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x99676e7b snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x9ce5879f snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa1ac2895 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa1cb079c snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa967e986 snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb0454159 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xb4bef829 snd_pcm_set_sync EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba78b295 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xc7635dcb snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc7d7507a snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xc8544321 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xc9df7a75 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xcae21e7c snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xcd5f8b1c snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xdace4736 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xdd88e21d snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xdf80d57d snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe2623e8b snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xbcb4bc58 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xc07b362c snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xd1b89c59 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xd240ff4b __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xd2538212 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xd2be4135 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdb5cd0f4 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xde22a7c7 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xde7faf23 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xe20df443 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xe47ce1ea snd_sgbuf_get_addr EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe596eac2 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xe6b396f8 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xed479d9c snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0xf2799a16 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xf5e6f72e _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xfb6e5141 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xe696c60c snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xec32c155 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xeed76be7 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf0dd6bc6 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf8901c6b snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xf9c0c0fb snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x01e174aa snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x15634fa3 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1709e8d3 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x197cdd82 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ed1a99c snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x340ba791 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3459374a snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5f92f9ea snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x61913fae snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x65651351 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x70502463 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x711ca6d2 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x857653a9 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x955383e5 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ccfd46 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbdaad6e snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8e6696a snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf655a5d2 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x18cc13d4 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b8f1329 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2cac940c snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2e31822e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x44c58e24 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a2b61be snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x591573bf snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68a119fc snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6dc41435 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f627500 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ea4fa17 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9ace31ad snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa473bb26 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xad0e3de7 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8a95a85 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdb7f1d33 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe244fbb3 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf0dcd32a snd_rawmidi_proceed 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 0x513d74d7 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xdb61910f snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x117afafb snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x1f52701f snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x57c90958 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x584018a3 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x8cd019bd snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x97621619 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x99e2d8f7 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xbf4039ee snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xc3585776 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xc3baeafa snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xec1640b2 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xf6dcd187 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xf8629a3f snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xfbfea5ed snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xfc80b209 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x00b94268 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x03d141f4 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x0936cdc9 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x245f1753 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x2d3616b6 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x33e1b665 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x4ed0d699 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6badfa7d snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x70267117 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xa32bcb9c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa3885e8d snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xd72d184b snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xebb01ec9 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xfcc5d22a snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xfe36986b snd_timer_resolution +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x4232a313 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 0x74615ded 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 0x52df8e2e snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x57685244 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73fae120 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c7e1f41 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6cb6f53 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc33bd2b8 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc58cf8df snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd553a45c snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf4f88bca snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05fae13b snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1ba7a317 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x310bf65d snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x37eacc95 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6fd95524 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb41c7d66 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xddf39c9f snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe1e13c91 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf0798ff9 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1e3ff157 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 0x64a859d7 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x694f11d1 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7c8895ab snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7f08a58c snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb455a050 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc68cb00d snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd1455ed7 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd223b6ba snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x49bc09b6 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5fe1c138 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x85772995 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa4c13e9a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xabd358b1 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc68e2fe2 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd0985a4c snd_vx_suspend EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf561c92a snd_vx_dsp_load -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0727e1fb amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x090ca858 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c1ce86d cmp_connection_establish +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf9b4959c snd_vx_load_boot_image +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x124b7b17 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b284f90 amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21bff9cd cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x346b35db amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35b53519 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39d69731 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e51c467 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4abebb19 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c6f48e8 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x529dc856 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22f92d09 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28c4cb3f avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e7e9f3a amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3850dd11 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d7366fa fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40f63b76 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e46966b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52732aa7 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59afbc0d cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ad556ff snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fb12b3d cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65a18af5 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ee06b77 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9359e2da fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x947e1fcb cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95c3a65d amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8394b9a amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2848377 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb497c0a2 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd5b5106 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc913160f avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca297415 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8748e4f iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdce1add1 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe5a97915 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9a9816d fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5609f3f4 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59de4046 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a623e4f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a7cc4ec fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x60a7ef70 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x624eda4d iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x626668ca cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x845a41ad cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x856b41f0 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8fd05fd3 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c11d40f cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9fc945a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba8875ce amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc24d1152 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7fe3760 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcdee3594 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd92c6c78 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9d55546 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6c9bef1 cmp_connection_release EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x472068a2 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/hda/snd-intel-dspcfg 0xfe0c53a9 intel_nhlt_get_endpoint_blob -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x01a065d1 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xcf0ec26b snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x25e73493 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2dc5a7b9 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6dc7bed9 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8d583220 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb6bc5e14 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd1de0ce3 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xddf4bfe1 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeac82fc0 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc0515355 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc616a00b snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd37ddf0a snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfa526d04 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x579b093a snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x70bdba5b snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x19b34c27 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2361b1a4 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x446dac51 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5c2db9dd snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6ee80191 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeb694372 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0d017362 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0fa67796 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x21f8702b snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x862084f7 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xae614fae snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd910f405 snd_i2c_device_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0d8843e8 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11dc240a snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x191271b8 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c7899a0 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x228372d6 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x28778f7b snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x37080854 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x516f7233 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c7aafe9 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7dc50a8b snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad90fa05 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaee3ad54 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9895bd1 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc1e04b5 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9302603 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce27008a snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdcdbb518 snd_ac97_resume -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x08006522 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x329e68b3 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x374e7e7d snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x50689efa snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6f4895b0 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x88191df0 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd9d7c65e snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdfb9bbdb snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe07ff414 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x18366dfe snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x60acd4ef snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9251d4ee snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x015dfbe3 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07282956 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08eddc66 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x179eb564 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d3e853d oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a40f2dc oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ea28cdf oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37bc7bc8 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bf82390 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48880dbc oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c20fb73 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70099583 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x759e12fa oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9cd10952 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa92fca2a oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xabc9e014 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xadcbebd5 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc264dd8 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc17c73d3 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf17a8094 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x781b8735 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x81afbdef snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd86a20a2 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe0df26f8 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe8e4ab91 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5f44ad7c snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc58785ee snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x175842f4 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x83c50069 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x90833209 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x91e1d384 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbc186dd4 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc9ac2fac snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdd7be3c2 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfe9dd047 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0b038c1c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa682d445 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc9b3c114 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xeddef176 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3cde0819 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf97fda35 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2cd8e4ce snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x369082bf snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x63e41879 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6e88e722 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x73f8b122 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe4bf7b61 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x075bc1a5 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x29e0a2e5 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3e3a78c6 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x55565340 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9ffd339f snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb6abdac5 snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ac14bf2 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x112677cb snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2df0887e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x354d8d95 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x36ecdfc3 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4432a760 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a54e4a1 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5f41e5b6 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x630ed421 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x913f67c0 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x949a6714 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa0d95c69 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa81f2248 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb2891888 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb851f3ab snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7f98f7f snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf730e67e snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x01149f52 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0ce7fd04 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1d162730 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2e02cae3 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8d995b2e snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa0caf009 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xad79d937 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe939636c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xed473cac snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x06b8b75f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4cf6f106 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x640f828b snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b63cacd oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0bb62188 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x104390f2 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15527102 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16f1ae84 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1b988706 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26fd426d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4128864b oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a4983a4 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5adbd2d8 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x609e52ce oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x78345939 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c90a11f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9387f5ab oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9eceb592 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa68d6b90 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbdf0ac3b oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd27cf7ef oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee1675e1 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xffe30e41 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0e7c9afc snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x96e71c0a snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb5cb563e snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe56da1be snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xea0bd22f 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 0x7531ae39 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x935247c4 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xafc1fbe7 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x3297c883 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5f2281bc wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x5d087bce pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa839cff7 pcm3060_probe +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x50abaf25 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x813f9bea snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xe5d1d71b snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x8cde33e8 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x2a7c30f7 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9e1c2ec5 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xdfd86838 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x33948981 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x57e14196 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3018f725 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6cab2b0b aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf15eb67f aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x842a129d aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xc7948f97 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x1fc9e70f wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc6546e93 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf90e4c00 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0b27af44 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xaac45275 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfdc6f867 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x2ca769a9 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x342a16f3 aic3x_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x74cc5eaf wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x55f7e551 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 0x7ff3ab30 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 0xc611d48c 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/codecs/snd-soc-wcd-mbhc 0xe5e43615 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x248761ca fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7c03e8e0 fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xd2326407 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbec358ca mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xdbdf7cb8 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x620d8678 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xbd756b2c q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/snd-soc-core 0x2f19e3fd snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x00498e38 imx8_enable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x4cd51aa0 imx8_disable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xc9532b60 imx8_parse_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xe2814993 imx8_dump -EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xa4b3d9da mtk_adsp_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c05537b sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x128f9e03 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x136889ad snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1519430f sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1630c6c7 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b89e57e snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d6b947c sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x241179be snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x261ed281 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a6a3858 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c7736e7 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x3e74bf02 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x7bda6a02 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xea142b70 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x42596d43 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xb96befef mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x05e07127 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xd7d30fdc q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x86c5032e snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x5835daa6 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xa5637782 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xb130339d imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xf3f20bbc imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x684871bc mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02bc9641 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c98fd0a snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1112da0b sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13de67d8 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1512ef42 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x151a02d0 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18bed8ba snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cb41f1b snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x273d5282 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2788f1f4 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2cacf20d sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x330d04e8 snd_sof_pcm_period_elapsed EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x383918a5 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x386eff9e snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3eac0654 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44b1691f snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a14d993 snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b02b58b snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x54edd708 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e1246ef sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69f26438 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e600430 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7119809a snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73d48a9a sof_compressed_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7615eb44 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7aa6bd0a sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x921aee8b sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x954cad7b snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9758ac22 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a4c3f6f snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b5b0645 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9fc4c85e snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa465fab8 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa85a8b0e snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8f5a2ce sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae4603cd sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0b37ad4 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb254ad37 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb46801ae sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6e1ca17 snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb70d5616 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb823fa59 sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc001a300 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc36d4af4 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7d83c2b sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc9dccbe sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce440cd3 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce925d08 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf5a9467 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4c14577 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4f3455c sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7b1ac4d sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd98f81be sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea1cd320 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb39f104 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf17e844f sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf40fb5d2 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf81d07d4 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x312536d0 sof_of_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x43a25a6d sof_of_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x91d9beec sof_of_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xa05ae144 sof_of_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x827296ec snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x69bec998 register_sound_special_device +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e952190 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45d6931e sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4713abc9 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x479c6cb9 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x495d8365 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x54da1fa2 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ebdd27b snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x619bb56d sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x636b64f1 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x67b634d0 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b6a41c4 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ddfb8ed snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84e7e3bf snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88c4f1dc snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b199877 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91396f32 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x924fb63b sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96135edc snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x979a8d36 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98892034 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x998ba267 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9fc81f8e sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa567f522 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa63556a4 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9d1f290 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6348561 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb985dd8c snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfba91d2 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4187d32 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc608fd13 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc75629ba snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd2919b0e sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5a1d553 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd309581 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdde89cbd snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde9a49e9 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe04206dd snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0aaa226 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7d219ad sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2122ec4 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf39f45c5 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4bbddba snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf74390dc snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8fc0ff2 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe364bc2 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x33822daa sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x536c7052 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x92dccd94 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xf58335b0 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xc49dbcaf snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x366894c4 sound_class EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa8c9b488 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xb6ba4428 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xbeee5fe1 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xdd5c2e9a sound_class -EXPORT_SYMBOL sound/soundcore 0xe2d480c2 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xfefdf6c0 register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2c72f0e9 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x621f735e snd_emux_free +EXPORT_SYMBOL sound/soundcore 0xd6371dfd register_sound_special +EXPORT_SYMBOL sound/soundcore 0xdb5656aa register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1e782a0e snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4fba956c snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5b30e64b 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 0x92c88e49 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb54e3c55 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd468930d snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfd1a761a snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7d9ca459 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x833b4a94 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x92712531 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 @@ -6466,5844 +6466,5844 @@ 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 0x6140b48f __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 0xd3fdaca6 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x000cc9e1 param_set_invbool EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x002f170c mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x0043bbee rproc_detach -EXPORT_SYMBOL vmlinux 0x006577cd __break_lease -EXPORT_SYMBOL vmlinux 0x006ad424 inet_add_offload -EXPORT_SYMBOL vmlinux 0x006e772b textsearch_destroy -EXPORT_SYMBOL vmlinux 0x007965be kernel_bind -EXPORT_SYMBOL vmlinux 0x008a8479 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x00150c4c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x001c2da5 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x002cea3c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x00455ebc config_item_set_name +EXPORT_SYMBOL vmlinux 0x0056a483 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x0057ddec filemap_map_pages +EXPORT_SYMBOL vmlinux 0x0069315c pci_clear_mwi EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x0096cd47 rtc_add_group EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c394c6 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x00d2bf79 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x00b5233b __folio_put +EXPORT_SYMBOL vmlinux 0x00b6f0de vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x00ce9e21 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e35b5a generic_delete_inode +EXPORT_SYMBOL vmlinux 0x00e51ea8 clkdev_drop +EXPORT_SYMBOL vmlinux 0x00f2843d crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x00f798e5 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0105ae2f unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x010c9c55 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x01132481 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x0113a79e kmem_cache_size +EXPORT_SYMBOL vmlinux 0x01151e4f param_set_short EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x01196a0f jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x011e80a8 key_unlink +EXPORT_SYMBOL vmlinux 0x01246684 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012cfe7d bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x0129cffd pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x01311174 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x01402524 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x01442abc cdev_set_parent EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x0162875e security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x0167034f kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0x01677a5b neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x016d4680 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0152829d flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x0160d7f2 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x0162939a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x016dde4e of_node_get 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 0x01ae3f38 udp_read_skb -EXPORT_SYMBOL vmlinux 0x01b459e5 inet_offloads +EXPORT_SYMBOL vmlinux 0x0188f9c2 input_grab_device +EXPORT_SYMBOL vmlinux 0x018ec59d skb_seq_read +EXPORT_SYMBOL vmlinux 0x01947476 locks_free_lock +EXPORT_SYMBOL vmlinux 0x019a33a4 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x019c3b3e skb_eth_push +EXPORT_SYMBOL vmlinux 0x01a35896 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b95abb skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d0f811 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x01d30d0c device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x01d9e2a5 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x01c80e02 pci_request_irq +EXPORT_SYMBOL vmlinux 0x01caba20 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x01d15c00 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x01d8934a seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe -EXPORT_SYMBOL vmlinux 0x01fe2a64 path_is_under +EXPORT_SYMBOL vmlinux 0x01f14e75 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x0202ed4b kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0209228e pnp_device_attach EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02119fa4 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x02187c00 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x021a3840 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x022826fa ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x022d08a4 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x0237d346 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x022b7d10 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x0235b29a mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024bf930 rproc_boot -EXPORT_SYMBOL vmlinux 0x0251fddc sock_create_kern -EXPORT_SYMBOL vmlinux 0x0263c6b3 register_qdisc -EXPORT_SYMBOL vmlinux 0x026ce566 rt6_lookup +EXPORT_SYMBOL vmlinux 0x024b1f64 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x025e77ac phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x025ea8d6 mdiobb_write +EXPORT_SYMBOL vmlinux 0x0260b8f1 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x0262a6ab tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x026e23e5 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x026fcd51 d_instantiate EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02872a66 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x0278bdd2 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029f718e mpage_writepages -EXPORT_SYMBOL vmlinux 0x02aa097b tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x02abd938 dquot_resume -EXPORT_SYMBOL vmlinux 0x02acbd16 rproc_put -EXPORT_SYMBOL vmlinux 0x02b26fb1 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x02b871dd netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x02bf329b flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x029b5c7f xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x02a739dd fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x02b5fa0c __seq_open_private +EXPORT_SYMBOL vmlinux 0x02bb8372 __folio_start_writeback EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02d7977e of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x02eef4ba scsi_print_command +EXPORT_SYMBOL vmlinux 0x02f41287 dev_add_pack +EXPORT_SYMBOL vmlinux 0x02ff96a4 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x0301a48a folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x0303d4bf of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x0305c0f2 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x03134428 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x03290b7d neigh_direct_output +EXPORT_SYMBOL vmlinux 0x032a5959 fb_class EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03408730 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x0340ccc3 dev_change_flags EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x035d1438 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x03601040 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036b11e0 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x039544dd ipv4_specific EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a20fc2 irq_set_chip -EXPORT_SYMBOL vmlinux 0x03ae3471 follow_down +EXPORT_SYMBOL vmlinux 0x03a9fc8e __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x03af3dd1 neigh_lookup EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03cfbabd lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x03d1fdbe fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x03d6774d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x03d85190 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x03e70a33 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x03bf3fab devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x03c717c6 empty_aops +EXPORT_SYMBOL vmlinux 0x03c9e55b of_get_mac_address +EXPORT_SYMBOL vmlinux 0x03cf740f kmalloc_caches +EXPORT_SYMBOL vmlinux 0x03d991cd sk_dst_check +EXPORT_SYMBOL vmlinux 0x03dea075 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x03df302a msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x03e526bc skb_vlan_untag EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0401b325 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x04157b25 proc_set_user +EXPORT_SYMBOL vmlinux 0x04091ce6 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x041215fb netif_receive_skb +EXPORT_SYMBOL vmlinux 0x041f7d95 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x04342389 dma_async_device_register EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0471f90e csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0479d33c super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x04837cd9 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04922139 __invalidate_device -EXPORT_SYMBOL vmlinux 0x0493fdfd block_dirty_folio -EXPORT_SYMBOL vmlinux 0x04a9bc10 done_path_create -EXPORT_SYMBOL vmlinux 0x04ae9f3e __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0x04b5c494 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x048988bf dquot_destroy +EXPORT_SYMBOL vmlinux 0x048cebe9 dquot_disable +EXPORT_SYMBOL vmlinux 0x049a4c05 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x04d20593 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04d3f88f __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x04d49cea dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x04e0d105 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x04e93022 proto_unregister EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ee8893 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x04ed2fca inet6_release EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051c1d69 __pagevec_release EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05227eb6 xfrm_state_update EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05392126 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x0541b76f skb_pull +EXPORT_SYMBOL vmlinux 0x053fdbee sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0559a477 pci_set_master +EXPORT_SYMBOL vmlinux 0x05482ade consume_skb +EXPORT_SYMBOL vmlinux 0x0552022c forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0557b3a6 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x056686be fasync_helper -EXPORT_SYMBOL vmlinux 0x05681ed5 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x0572f11a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x056f4cf6 skb_dump +EXPORT_SYMBOL vmlinux 0x05840ff6 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x058d5bcc ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05abc7c2 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x05bc0cf2 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x05ac913b __fs_parse +EXPORT_SYMBOL vmlinux 0x05b5a8dd tcp_poll +EXPORT_SYMBOL vmlinux 0x05c735ee genphy_read_status +EXPORT_SYMBOL vmlinux 0x05c769cc netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x05d9c096 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x05da87cd inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x05efc60a sync_filesystem +EXPORT_SYMBOL vmlinux 0x0605fbd0 cfb_copyarea EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x061316a0 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0623139d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x061ce418 may_setattr EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06354e07 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x06556f5c __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x06595fe0 kernel_listen -EXPORT_SYMBOL vmlinux 0x0661f58b dquot_release -EXPORT_SYMBOL vmlinux 0x0665a395 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x063fcd23 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x06452226 md_write_inc +EXPORT_SYMBOL vmlinux 0x06688e5e generic_ro_fops EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066ca15e inet_stream_ops -EXPORT_SYMBOL vmlinux 0x06740b3b pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0674a43c blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x0678f47f md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x067df35d vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x0680b3aa vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x0685cdbf mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x068e9a1e give_up_console -EXPORT_SYMBOL vmlinux 0x068f5788 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x06906d59 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x06987f99 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x069da251 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x06a4c785 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x0673ddf5 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x06984869 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x06aaf2da neigh_seq_next +EXPORT_SYMBOL vmlinux 0x06b16606 sock_wake_async EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c4a824 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x06c5ddfa folio_alloc EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06e883ca dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x06eca4dc vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x06f61fd6 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x06f65b1c seq_open_private -EXPORT_SYMBOL vmlinux 0x06f6dcf8 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x070091e8 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x0706eed5 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x06fc08ee nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x07132928 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0712f664 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x07142ea5 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x071ba6fb udp_sendmsg EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073e3cdd __do_once_done -EXPORT_SYMBOL vmlinux 0x07427cb2 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07464f2e tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x074d58d5 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x075492d0 udp_seq_start +EXPORT_SYMBOL vmlinux 0x075c2551 __phy_resume +EXPORT_SYMBOL vmlinux 0x077032a4 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x07782c5a inet_dgram_ops EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x0795827e vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x07847bf7 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x079185f0 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x079809b0 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x07a8828d mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07adbcba devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x07b74631 dev_add_pack -EXPORT_SYMBOL vmlinux 0x07c5c4d1 vfs_link +EXPORT_SYMBOL vmlinux 0x07aaea28 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d00678 param_ops_uint +EXPORT_SYMBOL vmlinux 0x07d35494 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x07d7bb3d input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07db2cd1 sk_net_capable -EXPORT_SYMBOL vmlinux 0x07eb13cd pci_enable_msi EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f587b6 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x07f8f8ad input_register_handler EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x08088b77 km_state_expired -EXPORT_SYMBOL vmlinux 0x081178b6 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08191f00 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083c7ab2 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0840606c ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x0863dbc9 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x0865e0c3 single_open -EXPORT_SYMBOL vmlinux 0x0875ff9f vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x087b459f _dev_warn -EXPORT_SYMBOL vmlinux 0x088c3b4e sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x0898a52d set_posix_acl -EXPORT_SYMBOL vmlinux 0x0899112d rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x08a56093 seq_bprintf -EXPORT_SYMBOL vmlinux 0x08d79298 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x0843d13d dquot_transfer +EXPORT_SYMBOL vmlinux 0x0878be09 __destroy_inode +EXPORT_SYMBOL vmlinux 0x087cc948 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x0889c48a page_mapping +EXPORT_SYMBOL vmlinux 0x0899aeef __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x08a98e9f kobject_put +EXPORT_SYMBOL vmlinux 0x08b395d6 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x08be8290 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x08d97788 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x08dff784 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08f78bab netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x08fae09e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x08ff200a poll_freewait -EXPORT_SYMBOL vmlinux 0x09061466 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x090eb389 generic_perform_write -EXPORT_SYMBOL vmlinux 0x09116955 unlock_page -EXPORT_SYMBOL vmlinux 0x092af677 d_instantiate EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x092fb70c fs_context_for_mount EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093a5c9a fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x094b618d ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x095846ac dquot_drop +EXPORT_SYMBOL vmlinux 0x095a16bd ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x095d2fdd pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x095ffa2d __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097a822f tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097b5f96 submit_bh EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09977bc6 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x0992d14c simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x099521af fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x0996d858 send_sig EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a45296 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x09a5fede get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x09a65fb5 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x09ce6853 security_sb_remount +EXPORT_SYMBOL vmlinux 0x09d19347 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09ec0c8b dentry_path_raw +EXPORT_SYMBOL vmlinux 0x09f1fa10 sock_recvmsg EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -EXPORT_SYMBOL vmlinux 0x0a008330 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0c6aa6 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a273b2c pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x0a2c618d pci_release_region -EXPORT_SYMBOL vmlinux 0x0a333aaa starget_for_each_device -EXPORT_SYMBOL vmlinux 0x0a48efdd scsi_ioctl -EXPORT_SYMBOL vmlinux 0x0a4d1ded simple_statfs -EXPORT_SYMBOL vmlinux 0x0a54d30a __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0a5bd9bf input_release_device -EXPORT_SYMBOL vmlinux 0x0a656bbe import_single_range -EXPORT_SYMBOL vmlinux 0x0a76d2db param_set_long +EXPORT_SYMBOL vmlinux 0x0a23eb56 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x0a24c9ae jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0a3348b7 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x0a3fdef5 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x0a450483 of_match_device +EXPORT_SYMBOL vmlinux 0x0a47a80e jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x0a54f2c3 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x0a5cdb32 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x0a65e1b0 of_get_compatible_child EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7fcab3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x0a807cbb pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a9ab6d0 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x0a9f861e iget_failed +EXPORT_SYMBOL vmlinux 0x0a9cfcf8 ps2_begin_command EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa5a2ca input_inject_event +EXPORT_SYMBOL vmlinux 0x0aaae4ab ip6_frag_init EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab84ec2 blk_rq_init -EXPORT_SYMBOL vmlinux 0x0ab90071 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x0aba4dd5 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x0ac256aa tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0adae24c nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x0afac4e3 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x0afbe192 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x0afd0215 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x0b06c586 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x0adad28e skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b21b11c phy_device_free -EXPORT_SYMBOL vmlinux 0x0b224014 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b3164c8 nf_log_set -EXPORT_SYMBOL vmlinux 0x0b35ea41 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x0b406665 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x0b57aeb6 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x0b62d219 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x0b43721a configfs_depend_item +EXPORT_SYMBOL vmlinux 0x0b4b44cb xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x0b50e0be fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x0b584c92 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x0b5edad3 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x0b61bd9c inet_ioctl EXPORT_SYMBOL vmlinux 0x0b637467 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x0b652789 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b93a673 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x0b9a0174 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x0b7933d9 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x0b90e011 I_BDEV +EXPORT_SYMBOL vmlinux 0x0b93c9c9 d_add EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bbd139a mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0bac567d scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x0bbb5959 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x0bbea2b4 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd304b9 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0bd3114f folio_unlock EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0bed292f jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0be96a03 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x0beee100 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf5f2d7 __bh_read -EXPORT_SYMBOL vmlinux 0x0bf7d82a ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c01c60e simple_write_begin -EXPORT_SYMBOL vmlinux 0x0c07a68b secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x0c161414 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x0c021ffe regset_get +EXPORT_SYMBOL vmlinux 0x0c0501c7 folio_migrate_flags EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3b7cd3 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x0c373597 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c59f424 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x0c5d0940 of_device_unregister +EXPORT_SYMBOL vmlinux 0x0c6023d6 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c820f9d config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x0c86b5a0 wake_up_process -EXPORT_SYMBOL vmlinux 0x0c9e2850 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x0ca04e48 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x0cad3e7a lynx_pcs_destroy EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb7674c nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x0cbb6d77 set_anon_super +EXPORT_SYMBOL vmlinux 0x0cc2b553 netdev_emerg EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0ccfb048 nf_reinject +EXPORT_SYMBOL vmlinux 0x0cd4d558 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd7bf64 locks_copy_lock EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdd41e6 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x0cf1955f i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d1d9c13 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x0d2253fe __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x0d162630 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x0d1f6804 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x0d1fbd13 unlock_buffer EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d334843 __register_nls +EXPORT_SYMBOL vmlinux 0x0d39b2e4 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d46c5ef clk_bulk_get EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d697411 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x0d936dbe vga_client_register +EXPORT_SYMBOL vmlinux 0x0d54a5ab sock_no_bind EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0dc9e8cb filemap_get_folios -EXPORT_SYMBOL vmlinux 0x0dd2ea53 import_iovec -EXPORT_SYMBOL vmlinux 0x0dd724af free_netdev -EXPORT_SYMBOL vmlinux 0x0df4c07a dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x0dfd8af5 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x0e008d4e __serio_register_port -EXPORT_SYMBOL vmlinux 0x0e0a5d73 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x0e1429d2 qdisc_reset +EXPORT_SYMBOL vmlinux 0x0d9caa02 d_add_ci +EXPORT_SYMBOL vmlinux 0x0deeacfa iput EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e18c4b6 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x0e1d38a1 lookup_one_len -EXPORT_SYMBOL vmlinux 0x0e26e20f path_has_submounts -EXPORT_SYMBOL vmlinux 0x0e276551 fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x0e31616b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x0e3dc7c2 devm_iounmap EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e519473 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x0e6f51a8 param_get_ushort -EXPORT_SYMBOL vmlinux 0x0e6fc626 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x0e79a589 user_revoke +EXPORT_SYMBOL vmlinux 0x0e49f3e0 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x0e4f4f19 scsi_device_get +EXPORT_SYMBOL vmlinux 0x0e5e877d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x0e6d17d3 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0e826509 register_shrinker +EXPORT_SYMBOL vmlinux 0x0e8dcc8d sock_setsockopt +EXPORT_SYMBOL vmlinux 0x0e999e68 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x0ea22902 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb1beb6 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebf5b49 tty_lock EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eed0a66 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x0ed59449 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x0ed6ce18 ip6_xmit +EXPORT_SYMBOL vmlinux 0x0ed94ba2 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0ef88d68 skb_tx_error +EXPORT_SYMBOL vmlinux 0x0efaa2b3 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x0efc806f folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x0f09a2c8 setup_new_exec EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f18761b __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0f1905d9 netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f1e3a67 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x0f2e3f19 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x0f365835 nla_put_64bit EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f54623e cdev_init +EXPORT_SYMBOL vmlinux 0x0f58a01f qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x0f594f10 vma_set_file EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f6a1c26 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x0f83e2f7 stream_open -EXPORT_SYMBOL vmlinux 0x0f869ba7 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8ef6d3 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x0f9b0012 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x0fa1ae83 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb07064 config_item_put EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb4fd9c arp_create -EXPORT_SYMBOL vmlinux 0x0fb834ea tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x0fd76a8f udp6_csum_init EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe04d22 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x0fe1a247 d_exact_alias +EXPORT_SYMBOL vmlinux 0x0ffbab23 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100140dc ps2_init EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x1001b30d tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x10211a1c __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x1010097a generic_file_mmap EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x10352661 __mod_node_page_state EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1039b02e xfrm_register_type -EXPORT_SYMBOL vmlinux 0x1042ed60 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x1054a508 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x105852e0 thread_group_exited -EXPORT_SYMBOL vmlinux 0x10593ef1 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x105b0d58 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x105c365c poll_initwait +EXPORT_SYMBOL vmlinux 0x105fb049 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x106194b8 eth_header_cache +EXPORT_SYMBOL vmlinux 0x1063aa1e skb_kill_datagram EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x10713efe of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x10724b10 __netif_rx -EXPORT_SYMBOL vmlinux 0x1073fcf6 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107d1540 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108a9845 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x1089436f request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x1095373b nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x10997277 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x10d16fc0 skb_vlan_push EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e1e02a dcb_getapp +EXPORT_SYMBOL vmlinux 0x10db56e0 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x10dcf56f tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10fbaa63 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x10e8f92b pci_release_resource +EXPORT_SYMBOL vmlinux 0x10f13b12 tty_register_driver +EXPORT_SYMBOL vmlinux 0x10fcb171 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111d5658 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x11201006 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x11210078 ps2_end_command -EXPORT_SYMBOL vmlinux 0x113e939c linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x114169ac inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x114bd3c9 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x1151df36 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x1120a044 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x112b4f6f init_net +EXPORT_SYMBOL vmlinux 0x1140a998 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x11412b46 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x11441dde proc_mkdir +EXPORT_SYMBOL vmlinux 0x114e6438 build_skb_around +EXPORT_SYMBOL vmlinux 0x116c3f39 dput EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117a0341 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x1182ea72 finalize_exec -EXPORT_SYMBOL vmlinux 0x118895c6 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x118b3d80 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x11a9f959 phy_init_hw -EXPORT_SYMBOL vmlinux 0x11b486a3 page_mapping -EXPORT_SYMBOL vmlinux 0x11c917eb dm_get_device -EXPORT_SYMBOL vmlinux 0x11cb22a5 netdev_crit -EXPORT_SYMBOL vmlinux 0x11df8be0 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x11e03bdc pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x119a3615 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x119efda4 write_cache_pages +EXPORT_SYMBOL vmlinux 0x11a2cd16 __module_get +EXPORT_SYMBOL vmlinux 0x11a4e7db dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x11dab635 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x11dbdd52 phy_disconnect EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11f0446a phy_detach -EXPORT_SYMBOL vmlinux 0x11fa0fae __block_write_full_page +EXPORT_SYMBOL vmlinux 0x11f3621a handle_edge_irq EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x1208a691 dquot_free_inode EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120bc6d4 mmc_command_done EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x1236bdb3 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x123e51cd xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x12425fd1 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x1242dbb2 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x122217ba mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x122dc3c8 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x12488818 nf_log_set EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124ebdb9 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x1263f7ce tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x1270b9b1 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1276318a start_tty EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x12814d7d mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x129479d7 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x1298c1d0 acpi_bus_get_status EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12a9de39 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x12ac05ce blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x12be108b vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x12c600f5 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e3fa17 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x12ce9684 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x12d94b19 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x12e7a59d rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x12ee4ac6 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fb390a twl6040_power -EXPORT_SYMBOL vmlinux 0x1308d122 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x130adffb to_ndd +EXPORT_SYMBOL vmlinux 0x13008064 simple_lookup +EXPORT_SYMBOL vmlinux 0x130586c7 input_open_device EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1311b453 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x13116f56 dentry_open +EXPORT_SYMBOL vmlinux 0x13131897 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x1313b3a1 dst_alloc EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x131f061b device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0x131f9ec3 scsi_host_get -EXPORT_SYMBOL vmlinux 0x132a62e2 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x1334fd2d generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x133757ae fput -EXPORT_SYMBOL vmlinux 0x1342c113 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x13487730 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x134cae71 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x1365f4f4 inet_addr_type -EXPORT_SYMBOL vmlinux 0x1390a35e bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x139b2ee8 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x13321fa7 seq_vprintf +EXPORT_SYMBOL vmlinux 0x1334dade of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x13396f07 __fput_sync +EXPORT_SYMBOL vmlinux 0x1361dbb5 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x136e18e3 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x137e7e8a vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x13981725 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x139e2b95 input_reset_device EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13a0949a init_special_inode -EXPORT_SYMBOL vmlinux 0x13a0c793 md_write_inc -EXPORT_SYMBOL vmlinux 0x13a32b0d ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x13a720a0 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x13a92708 mpage_readahead -EXPORT_SYMBOL vmlinux 0x13b44629 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x13bf083b udp_pre_connect -EXPORT_SYMBOL vmlinux 0x13c2d0a8 bio_endio +EXPORT_SYMBOL vmlinux 0x13b1e403 tty_register_device EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d6d100 dev_uc_add +EXPORT_SYMBOL vmlinux 0x13d322eb dm_table_get_size +EXPORT_SYMBOL vmlinux 0x13d64b29 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13e87514 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x13ff573e md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x13ff9963 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x13dd3960 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14209b11 filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x142ebc6f elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x142efb1f fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x1434fc98 default_llseek -EXPORT_SYMBOL vmlinux 0x145e136e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x14340006 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x1438ef4c inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1469b097 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x148945e2 __free_pages -EXPORT_SYMBOL vmlinux 0x148efc58 datagram_poll EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14acdeb2 clkdev_add -EXPORT_SYMBOL vmlinux 0x14b5f9bc __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x14a6e60c nf_setsockopt +EXPORT_SYMBOL vmlinux 0x14af22b7 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x14b2ca69 mdiobus_write +EXPORT_SYMBOL vmlinux 0x14b4c046 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x14b4c9f9 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x14b86eb3 unregister_shrinker EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cba077 module_refcount EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14de9790 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x14e70128 input_flush_device EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14fa97db __nd_driver_register -EXPORT_SYMBOL vmlinux 0x150a7e37 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x14f7a7b7 fb_set_var +EXPORT_SYMBOL vmlinux 0x15140ee4 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15339f0f ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x15446e72 del_gendisk +EXPORT_SYMBOL vmlinux 0x1537a9f3 d_find_alias EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x1548ec95 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x154bec72 proc_create_mount_point EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154d3167 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0x154fd231 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x1551e5f9 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x1554b507 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x157d42e4 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x15848c5c __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x15954980 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x1596535f pci_clear_master -EXPORT_SYMBOL vmlinux 0x15a8ba0a netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x15578997 may_umount +EXPORT_SYMBOL vmlinux 0x1566b5a9 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x15698a3e __mdiobus_write +EXPORT_SYMBOL vmlinux 0x1576fcbe md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x15799c8c seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x159aa734 mii_check_gmii_support EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15ca8880 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x15cae5d2 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x15ebcad0 ndisc_ns_create EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16248584 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x15facadb cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x15fb7a6f blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x16633cf2 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x16651ee5 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x16771324 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x167953cc sock_no_socketpair EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16825fcd cont_write_begin +EXPORT_SYMBOL vmlinux 0x1688ded4 ps2_command EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a5219e flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16aec20e update_devfreq +EXPORT_SYMBOL vmlinux 0x16af01ae __free_pages +EXPORT_SYMBOL vmlinux 0x16b66b4f unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x16c51382 fb_get_mode EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16de2922 dump_page EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16f0ff1e simple_rename -EXPORT_SYMBOL vmlinux 0x17095a78 edac_mc_find EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x171401dd mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x1723fdff simple_get_link -EXPORT_SYMBOL vmlinux 0x1746fd7d dst_init -EXPORT_SYMBOL vmlinux 0x17482164 seq_read -EXPORT_SYMBOL vmlinux 0x174d6584 __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0x1761a58f netif_receive_skb -EXPORT_SYMBOL vmlinux 0x1762b207 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x177dd389 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x17203d6c elv_rb_add +EXPORT_SYMBOL vmlinux 0x172d3c55 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x1768e53f alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x1785a352 amba_driver_register EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x17b3c13d filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0x17c99a2c vma_set_file -EXPORT_SYMBOL vmlinux 0x17d9b7f0 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0x18000a47 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x180381ef neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x181cd013 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x181e943b mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x1825d9e6 tcp_prot -EXPORT_SYMBOL vmlinux 0x183253ac param_get_invbool -EXPORT_SYMBOL vmlinux 0x1832e538 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x178c4f6f blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x178d5fc6 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x17914b9f inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x179f129b __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x17b93098 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x180976cc mount_subtree +EXPORT_SYMBOL vmlinux 0x18130b72 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x182a284a xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1853933b vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x185b9ffd xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x186402d2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x18452e46 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x18684a7f vme_register_driver +EXPORT_SYMBOL vmlinux 0x186cff57 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x187301a9 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x1878b330 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x1886ab69 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x187b1a49 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x187b6ba0 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188e6561 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x188de507 sock_i_ino EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188f5039 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x1891bb63 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x18a6a5a3 put_cmsg -EXPORT_SYMBOL vmlinux 0x18a75302 __destroy_inode +EXPORT_SYMBOL vmlinux 0x18965522 console_start EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18bdac71 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x18be846b tcf_em_register -EXPORT_SYMBOL vmlinux 0x18be9858 blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x18c73f2d register_md_personality -EXPORT_SYMBOL vmlinux 0x18ce1bb6 kobject_add +EXPORT_SYMBOL vmlinux 0x18c5b787 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1903a8d3 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x190d8c6c sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x19152118 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x191c8c76 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x1924d5a7 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x18f38cf3 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x190ac723 vme_dma_request +EXPORT_SYMBOL vmlinux 0x1924559f qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x192ada80 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x194fe1eb __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x19516fb4 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x195208ac gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x19526989 inet_stream_ops EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x1953f7d5 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x196705c3 vif_device_init +EXPORT_SYMBOL vmlinux 0x196512af dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x19930731 node_data +EXPORT_SYMBOL vmlinux 0x1991489a dma_find_channel EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19ae2b7b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x19b5bb92 seq_release_private -EXPORT_SYMBOL vmlinux 0x19b62435 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x19bbfdeb rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x19b83092 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c9299d pci_pme_active -EXPORT_SYMBOL vmlinux 0x19cb0e02 mount_single -EXPORT_SYMBOL vmlinux 0x19eb0426 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x19f85848 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x1a25c6aa pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x1a3cc8d8 __skb_pad -EXPORT_SYMBOL vmlinux 0x1a451b21 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x19bda48a vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x19c2bee1 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x19c5ca1c sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x19ccea59 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x1a07ea68 __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x1a197a26 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x1a235538 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x1a3e23e3 mdio_bus_type EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4c4bb6 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x1a762f83 netdev_name_in_use -EXPORT_SYMBOL vmlinux 0x1a7cff1a fget_raw -EXPORT_SYMBOL vmlinux 0x1a8f96a1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x1a50f971 kobject_get +EXPORT_SYMBOL vmlinux 0x1a564880 mpage_readahead +EXPORT_SYMBOL vmlinux 0x1a579172 block_truncate_page +EXPORT_SYMBOL vmlinux 0x1a6206ef sock_bindtoindex EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9c984f page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x1aa6e4c6 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x1ab1fac4 clear_nlink +EXPORT_SYMBOL vmlinux 0x1ab109c2 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x1abe9755 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1afea142 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1ad9fbb7 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x1adf9ef7 bio_split EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b29310e twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x1b360cf4 mount_bdev -EXPORT_SYMBOL vmlinux 0x1b387d4f mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x1b46d164 may_setattr -EXPORT_SYMBOL vmlinux 0x1b47c32e inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x1b151f27 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x1b46c761 rio_query_mport 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 0x1b627d1b inet_frag_kill +EXPORT_SYMBOL vmlinux 0x1b5ed55b of_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6a3b98 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x1b6a5a13 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x1b6b9e14 would_dump -EXPORT_SYMBOL vmlinux 0x1b752e4e set_nlink +EXPORT_SYMBOL vmlinux 0x1b72a2f7 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7e34e6 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x1b7ecf23 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1b8f4cca nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x1b7b9f17 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x1b7d6240 genphy_suspend EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1b9c0312 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x1ba4884e sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x1b90a81d phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x1b9c8892 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x1b9c8b62 fs_bio_set +EXPORT_SYMBOL vmlinux 0x1b9ffb29 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bad3529 phy_print_status EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc53bb6 param_get_charp -EXPORT_SYMBOL vmlinux 0x1bcaa566 bdi_unregister EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bd5c643 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x1bdd1e24 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x1bf12f56 dev_load -EXPORT_SYMBOL vmlinux 0x1bfaa586 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x1bfbadb7 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x1bd77311 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1bdbcf66 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1be1e708 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x1be34721 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x1bf9bc02 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x1bfb2ffd mmc_free_host EXPORT_SYMBOL vmlinux 0x1bfff46a nla_append -EXPORT_SYMBOL vmlinux 0x1c04c61a init_task -EXPORT_SYMBOL vmlinux 0x1c08ec45 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x1c12aab1 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x1c2a7c27 lookup_one -EXPORT_SYMBOL vmlinux 0x1c2f5a10 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x1c4817d1 netdev_update_features -EXPORT_SYMBOL vmlinux 0x1c50e1d3 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x1c5723f9 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x1c1b3eb2 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x1c22c366 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1c26aff9 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x1c2818d4 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x1c34f5af input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c7d8631 vme_dma_request -EXPORT_SYMBOL vmlinux 0x1c81082e ppp_unit_number -EXPORT_SYMBOL vmlinux 0x1c852bb5 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x1c8d1990 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x1c6581e0 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x1c8b2801 put_disk +EXPORT_SYMBOL vmlinux 0x1c9ca640 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x1ca0ffd4 skb_copy_header +EXPORT_SYMBOL vmlinux 0x1ca59e20 seq_bprintf EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb6c291 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x1cbbfbca free_cgroup_ns EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd0a93d cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x1cd41ee8 of_chosen -EXPORT_SYMBOL vmlinux 0x1cd78f95 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1cc304e7 con_copy_unimap EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cf45237 framebuffer_release +EXPORT_SYMBOL vmlinux 0x1cf54e2d kthread_bind EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cf79d7c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1cfde96f skb_copy_bits EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0ec4e0 param_get_long -EXPORT_SYMBOL vmlinux 0x1d189a91 kset_unregister +EXPORT_SYMBOL vmlinux 0x1d135eb5 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x1d16f4d7 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2940d9 __alloc_pages -EXPORT_SYMBOL vmlinux 0x1d39cc54 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x1d3ce5b2 param_set_bool +EXPORT_SYMBOL vmlinux 0x1d299707 cdrom_release EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d53362a secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d74c4bb phy_device_create -EXPORT_SYMBOL vmlinux 0x1d7a2efd tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x1d840ba7 seq_read_iter +EXPORT_SYMBOL vmlinux 0x1d745526 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1d823909 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1d861095 netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1d972fc7 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x1d9ab769 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x1da079d6 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x1db27315 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x1dbe55f6 eth_header_parse -EXPORT_SYMBOL vmlinux 0x1dc1173c proc_create_data +EXPORT_SYMBOL vmlinux 0x1d9690d1 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x1d9a7c8e __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x1dacd2c4 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1daefc44 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x1daf8e8f sock_alloc_file +EXPORT_SYMBOL vmlinux 0x1dc1c31c input_unregister_handle +EXPORT_SYMBOL vmlinux 0x1dc53e0a kobject_init EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dc9704b nexthop_bucket_set_hw_flags 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 0x1de63d38 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1deb6a33 sock_dequeue_err_skb 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 0x1e1b4dd0 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x1e241ffa unregister_key_type +EXPORT_SYMBOL vmlinux 0x1e2724a1 __inet_hash +EXPORT_SYMBOL vmlinux 0x1e46f015 seq_write +EXPORT_SYMBOL vmlinux 0x1e554881 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1e5e7709 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x1e5f2879 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x1e627b54 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x1e6643d7 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1e69dc94 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6eb521 kern_unmount -EXPORT_SYMBOL vmlinux 0x1e7f668d xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x1e82f852 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x1e940a33 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x1e6e1c7e pci_find_resource +EXPORT_SYMBOL vmlinux 0x1e79873e kthread_stop +EXPORT_SYMBOL vmlinux 0x1e828c66 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x1e8bd22b vfs_create +EXPORT_SYMBOL vmlinux 0x1e938549 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x1e94f5fd get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x1e9bdac1 pci_enable_msi EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb5c2cd sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x1ec1f953 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x1ed20e4d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x1eb2c75d __bforget +EXPORT_SYMBOL vmlinux 0x1ebb9bdb dev_mc_sync +EXPORT_SYMBOL vmlinux 0x1ec8d55d lease_modify +EXPORT_SYMBOL vmlinux 0x1ed8d772 build_skb EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee2aede tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format -EXPORT_SYMBOL vmlinux 0x1efa4465 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x1f04b83d elevator_alloc -EXPORT_SYMBOL vmlinux 0x1f20afbc dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x1f4209fb buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x1f00d22f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x1f0903e7 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1f0e91f2 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x1f23898b of_iomap +EXPORT_SYMBOL vmlinux 0x1f2670f0 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x1f49e1eb generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f6032ec kernel_read -EXPORT_SYMBOL vmlinux 0x1fb2a726 from_kuid -EXPORT_SYMBOL vmlinux 0x1fb6516e ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x1fb9f1bc mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x1f5c7536 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x1f679174 arp_create +EXPORT_SYMBOL vmlinux 0x1f6c0d0a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x1f707067 __pagevec_release +EXPORT_SYMBOL vmlinux 0x1f78a6f7 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x1fab7f7f vme_irq_free +EXPORT_SYMBOL vmlinux 0x1fb6aeaa devm_memunmap EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbfc9ed migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x1fc3e7e1 sock_no_listen -EXPORT_SYMBOL vmlinux 0x1fcb246d get_fs_type +EXPORT_SYMBOL vmlinux 0x1fc0af80 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x1fcedcdf ___pskb_trim EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd4e1fd genphy_read_status -EXPORT_SYMBOL vmlinux 0x1ffc382c i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x1ffec12f ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x1fdbbc56 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20145866 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x201e7f46 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x2044bd65 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x20268b80 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x20318ede tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x2036c92c free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x2039976c tcp_connect EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204bac5c inet_addr_type +EXPORT_SYMBOL vmlinux 0x204bc4c2 __scsi_execute EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204ebd4d d_obtain_alias -EXPORT_SYMBOL vmlinux 0x20506aef filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x205a31a0 dentry_create -EXPORT_SYMBOL vmlinux 0x206119a5 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x207f8d40 vfs_llseek -EXPORT_SYMBOL vmlinux 0x208afcd0 generic_fadvise -EXPORT_SYMBOL vmlinux 0x209dd6c5 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2059b7d3 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x2070b875 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x20979f06 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20aac941 napi_enable +EXPORT_SYMBOL vmlinux 0x20aeca0d qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x20b327c9 phy_device_remove EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20cbbd51 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e216f1 is_subdir -EXPORT_SYMBOL vmlinux 0x20e5719b vfs_create_mount +EXPORT_SYMBOL vmlinux 0x20e78924 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x20e855a1 tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20eae6fd skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x20ebb527 sock_efree -EXPORT_SYMBOL vmlinux 0x20f1a520 vme_slave_request -EXPORT_SYMBOL vmlinux 0x21008b0d serio_open -EXPORT_SYMBOL vmlinux 0x210118e6 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x21020195 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x212ac9b7 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x213a2e54 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x20ee6a48 input_get_keycode +EXPORT_SYMBOL vmlinux 0x21065a88 genlmsg_put +EXPORT_SYMBOL vmlinux 0x2138fcc6 validate_slab_cache EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x214533f1 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x2148a1c9 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x216ccc01 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x2170fc42 misc_deregister -EXPORT_SYMBOL vmlinux 0x218a69a6 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x2157a61d fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219efeb9 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x21a87a69 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x21aa26cb vc_cons -EXPORT_SYMBOL vmlinux 0x21ba82a3 sock_no_linger +EXPORT_SYMBOL vmlinux 0x21a58f54 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x21b00349 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x21b215cb sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x21b390d7 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c437b7 fs_bio_set -EXPORT_SYMBOL vmlinux 0x21d8c8d1 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x21c8de00 read_cache_folio +EXPORT_SYMBOL vmlinux 0x21cb96df pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x21d28994 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x220239a2 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x220e1796 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x222d8ded blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x22180d5e param_get_bool +EXPORT_SYMBOL vmlinux 0x2221fb3c ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x22244373 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x222e737c blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22335c62 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x2230e35b unregister_md_personality EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2249ee5e xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2267d0ee vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x226943d0 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x2270e044 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x22895445 bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x228f0fd6 d_delete +EXPORT_SYMBOL vmlinux 0x2277ab5d security_path_unlink +EXPORT_SYMBOL vmlinux 0x2292741a blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x2293f771 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x229aed1a pci_unmap_rom EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all -EXPORT_SYMBOL vmlinux 0x22a440df udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x22a68839 dev_driver_string -EXPORT_SYMBOL vmlinux 0x22b2bc69 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22ba7065 skb_copy -EXPORT_SYMBOL vmlinux 0x22bca7c4 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x22c4d56f pps_event -EXPORT_SYMBOL vmlinux 0x22dbc567 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x22dcd805 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x22ed7552 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x2313d20e netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x2347b76d lock_sock_nested +EXPORT_SYMBOL vmlinux 0x22b4231e bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x22bf2f60 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x22dd1798 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x230b8cc4 skb_clone +EXPORT_SYMBOL vmlinux 0x230f31dd __mdiobus_register +EXPORT_SYMBOL vmlinux 0x23218333 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x23271a48 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x234e476a km_state_expired EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x235fbb24 pnp_request_card_device EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x2365b170 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x23739f63 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x236b367a security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x23730394 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238cd7dc of_find_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23a78c8b rproc_shutdown +EXPORT_SYMBOL vmlinux 0x23a4f76f kmalloc_trace EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c615b3 netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0x23c9e51a mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dabaf4 __register_chrdev -EXPORT_SYMBOL vmlinux 0x23e336da genl_register_family +EXPORT_SYMBOL vmlinux 0x23daf3c2 security_sk_clone +EXPORT_SYMBOL vmlinux 0x23f0b042 __skb_checksum EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fa3f9c pci_release_region EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2402f1f8 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x24064d41 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x2412d6b9 skb_tx_error -EXPORT_SYMBOL vmlinux 0x242e4d4c get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x241f8ac1 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x2424e120 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x24284099 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x243047de security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x24331528 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2444f920 unregister_netdev +EXPORT_SYMBOL vmlinux 0x24531119 rproc_del EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b0dba ip_output -EXPORT_SYMBOL vmlinux 0x248151bf param_set_ullong EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24b669b1 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x24c6f913 inet_shutdown +EXPORT_SYMBOL vmlinux 0x248a7bb0 amba_release_regions +EXPORT_SYMBOL vmlinux 0x248b7277 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x249746d5 md_flush_request +EXPORT_SYMBOL vmlinux 0x2498d619 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x249f2920 unregister_netdev +EXPORT_SYMBOL vmlinux 0x24aa1c8f skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x24accc9e of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x24ad971e dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x24b33515 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x24b55462 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x24c34198 phy_start +EXPORT_SYMBOL vmlinux 0x24c737d5 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d57a35 d_rehash +EXPORT_SYMBOL vmlinux 0x24dc036b dquot_scan_active EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24e80feb page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x2515a42e xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2508030e generic_writepages +EXPORT_SYMBOL vmlinux 0x25106e98 param_set_copystring EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252eee5f tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x25353818 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x253839c6 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x2528b347 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x2529ffa9 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x2562d274 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x256cbb60 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x257e2c6a input_release_device +EXPORT_SYMBOL vmlinux 0x257f68fd copy_string_kernel EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2584c1f1 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x25825073 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x25850a7e rt_dst_alloc 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 0x25a2b7aa tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x25cdb4ec xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x25d72a9e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x25a409ea phy_init_eee +EXPORT_SYMBOL vmlinux 0x25a4d17d rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x25be13ae mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x25dceca3 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fe96cd param_ops_bool -EXPORT_SYMBOL vmlinux 0x26077a0a netlink_ack -EXPORT_SYMBOL vmlinux 0x26086745 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x25eb3bb8 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x25f88680 tty_port_put EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x261c6b2e simple_fill_super -EXPORT_SYMBOL vmlinux 0x262d7864 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x2639a13d cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263d3530 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x263db956 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x263f6d1c netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x26427d94 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x26644a73 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x26713068 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x26764b28 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x2647a2bc security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x265b1f41 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x265c5860 netdev_info +EXPORT_SYMBOL vmlinux 0x265d975d md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x265dcec4 skb_put +EXPORT_SYMBOL vmlinux 0x265e8622 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x2679e0a9 thread_group_exited EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x269db8e7 d_invalidate -EXPORT_SYMBOL vmlinux 0x26a09557 ps2_init -EXPORT_SYMBOL vmlinux 0x26a9088f ip6_xmit -EXPORT_SYMBOL vmlinux 0x26ac45f1 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x26baa262 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x26d5fb48 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x26a08940 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x26d81b26 param_set_ullong EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26ed4b7d tty_register_device -EXPORT_SYMBOL vmlinux 0x26f9047e open_exec +EXPORT_SYMBOL vmlinux 0x26f37798 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27163906 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x271a4dc8 generic_setlease EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x271fa2ce tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x2720994b filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x2720e0ac devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x271d4258 param_get_long +EXPORT_SYMBOL vmlinux 0x271e7a9a jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x27318658 filemap_fault EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d2cee __nlmsg_put -EXPORT_SYMBOL vmlinux 0x2759cf30 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x274a492f mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x2768dc85 block_commit_write +EXPORT_SYMBOL vmlinux 0x2774f8c2 ip6_dst_hoplimit 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 0x27837fb0 alloc_fcdev EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27b3ac0a skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x278fafbd vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x27a15160 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x27a52575 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x27b34d20 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27bd5a47 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x27bf07ec noop_llseek EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27da2bcf get_cached_acl +EXPORT_SYMBOL vmlinux 0x27dd26ff tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0x27ec3546 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x27eee10f current_time -EXPORT_SYMBOL vmlinux 0x27ff8802 simple_unlink -EXPORT_SYMBOL vmlinux 0x28177102 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x27e10728 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x280b90a2 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282ce01c __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x282e668b dev_uc_init -EXPORT_SYMBOL vmlinux 0x28363af2 register_quota_format -EXPORT_SYMBOL vmlinux 0x284a5850 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x285ea935 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x2865fc29 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x28663780 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x2818b09d netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x281f7de8 tty_port_close +EXPORT_SYMBOL vmlinux 0x282c372e dump_skip +EXPORT_SYMBOL vmlinux 0x2833b0ba dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x283c13b8 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x28558261 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x2873e684 sock_kfree_s EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287d1abf tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x288c9ff7 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x287e1382 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x288381ed block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x288f0608 __register_nls EXPORT_SYMBOL vmlinux 0x289771bb commit_creds -EXPORT_SYMBOL vmlinux 0x289a34ec uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x289e05df zpool_register_driver -EXPORT_SYMBOL vmlinux 0x28b213f5 f_setown -EXPORT_SYMBOL vmlinux 0x28bafaf7 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x28bb649e sk_common_release -EXPORT_SYMBOL vmlinux 0x28c3de52 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x28cc04f8 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x28d85403 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x28dfc63d netif_skb_features -EXPORT_SYMBOL vmlinux 0x28f05aaf textsearch_register -EXPORT_SYMBOL vmlinux 0x28f77755 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x28981b00 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x289cf384 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x28aa869e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x28afc27f unregister_filesystem +EXPORT_SYMBOL vmlinux 0x28bd897d drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x28c87bf2 kill_anon_super +EXPORT_SYMBOL vmlinux 0x28de9b7c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x28e2ed90 get_vm_area +EXPORT_SYMBOL vmlinux 0x28eab3a2 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x2907f0e4 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x2912abe8 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x291449c2 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x29098fe9 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x29165604 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x2956c19c phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x295b2eb1 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x29228bc4 param_get_hexint +EXPORT_SYMBOL vmlinux 0x292dd03c new_inode +EXPORT_SYMBOL vmlinux 0x29339bdd sock_no_sendpage EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2969f765 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x2968f9c9 md_reload_sb EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x297f9a91 nf_log_unset -EXPORT_SYMBOL vmlinux 0x29b08dcb tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x2996c498 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x29a8ebc3 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x29b3f15c tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x29b8ed0b devm_clk_put EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e3adb1 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x29eae661 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x2a01013c inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x2a1e95da scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x29f7d510 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x29fa96fa bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2a215e9e phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x2a2e55d2 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a4b2ab7 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x2a5dc3e2 xudma_get_device -EXPORT_SYMBOL vmlinux 0x2a5f7942 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x2a6841a4 seq_puts +EXPORT_SYMBOL vmlinux 0x2a36ff20 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x2a39871b make_bad_inode +EXPORT_SYMBOL vmlinux 0x2a3c085f backlight_device_register +EXPORT_SYMBOL vmlinux 0x2a66dedc dma_pool_create EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a76018a try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x2a773f7f sock_alloc -EXPORT_SYMBOL vmlinux 0x2a7bea29 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2a7f30bc alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x2a8441ec pci_enable_device_io EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x2a8f612c unregister_cdrom EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a98a299 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aab4186 vga_get EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2af79b6d inet6_add_offload +EXPORT_SYMBOL vmlinux 0x2ab4b125 of_chosen +EXPORT_SYMBOL vmlinux 0x2abc22bb uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x2acb598c netdev_change_features +EXPORT_SYMBOL vmlinux 0x2ace1bbf pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2ae4c5f8 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2af3d827 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x2b095958 vfs_rename +EXPORT_SYMBOL vmlinux 0x2b0f83b6 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x2b123310 fc_mount +EXPORT_SYMBOL vmlinux 0x2b178959 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b2a48f8 netdev_info -EXPORT_SYMBOL vmlinux 0x2b2f2717 security_sk_clone +EXPORT_SYMBOL vmlinux 0x2b52dbb0 scsi_print_sense EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b5cf350 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x2b818529 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x2b872764 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x2b904d6f phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x2b5a38d4 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x2b66b402 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2b71c7ca pps_event +EXPORT_SYMBOL vmlinux 0x2b88ec70 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x2b918cf6 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x2b9bab81 __ip_options_compile EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba18fc9 pps_register_source -EXPORT_SYMBOL vmlinux 0x2ba3f4ed reuseport_add_sock EXPORT_SYMBOL vmlinux 0x2bae204e mt_find EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb81b2e user_path_create -EXPORT_SYMBOL vmlinux 0x2bbedfce tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x2bc28a02 dquot_alloc EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bdb0825 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x2bec859d tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x2bf8f9d8 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x2bde807c __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2be5daae __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2bffbce8 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x2bfc9590 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c4a187a key_revoke +EXPORT_SYMBOL vmlinux 0x2c4f21c6 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c568b82 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x2c56ebb5 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x2c5921e8 has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x2c5d0495 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x2c61b869 cfb_imageblit EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c75f5f6 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c851240 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x2c8541b4 elevator_alloc EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c9b7fbf generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x2caf3942 param_get_int -EXPORT_SYMBOL vmlinux 0x2cb9db7c pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x2cbb9200 mdio_device_create +EXPORT_SYMBOL vmlinux 0x2cb636af __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd87fe6 mdiobus_read EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce40d36 d_alloc -EXPORT_SYMBOL vmlinux 0x2ceccd30 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2d0d8580 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x2d0fda5f simple_getattr -EXPORT_SYMBOL vmlinux 0x2d12e87e inet_stream_connect +EXPORT_SYMBOL vmlinux 0x2d0d4a86 inet_bind EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d1e740c blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x2d29573e fb_get_mode EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d389eea configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2d339671 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d4bb5ee vfs_create +EXPORT_SYMBOL vmlinux 0x2d3d412c iget_failed +EXPORT_SYMBOL vmlinux 0x2d42d6a1 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5d88a7 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x2d6626d6 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x2d8e5bd0 rtc_add_group -EXPORT_SYMBOL vmlinux 0x2d8e6ea3 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x2d900604 inet_put_port +EXPORT_SYMBOL vmlinux 0x2d509121 scsi_device_put EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d9352d3 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x2d936734 pci_scan_slot EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9f92de skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x2da12eec keyring_alloc -EXPORT_SYMBOL vmlinux 0x2dae3bab dev_activate +EXPORT_SYMBOL vmlinux 0x2db0dec9 register_console EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2de2dcfd nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x2de89022 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x2dff33ae netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x2dffd7e8 skb_trim EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e151846 dcb_getapp EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2a424c _dev_err EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2d0063 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2e348b36 tcp_read_done EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e485eac qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x2e495ae0 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x2e4a7555 scsi_device_resume EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e6cb965 of_root -EXPORT_SYMBOL vmlinux 0x2e6eb4b5 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x2e8e1153 tty_devnum -EXPORT_SYMBOL vmlinux 0x2e9ac65b key_type_keyring -EXPORT_SYMBOL vmlinux 0x2eb850b1 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x2eb89ebe ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x2e5c674a phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x2e67ec73 discard_new_inode +EXPORT_SYMBOL vmlinux 0x2e6e0002 tty_unlock +EXPORT_SYMBOL vmlinux 0x2e72928a scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x2e8d9ebc pci_irq_vector +EXPORT_SYMBOL vmlinux 0x2ea43212 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x2ea4edc5 param_ops_long +EXPORT_SYMBOL vmlinux 0x2ea777fc proc_set_size +EXPORT_SYMBOL vmlinux 0x2eb2c440 page_pool_create +EXPORT_SYMBOL vmlinux 0x2ebe4669 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed45230 kern_unmount_array -EXPORT_SYMBOL vmlinux 0x2ed90897 skb_split EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ef51389 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x2ee5aba6 simple_statfs +EXPORT_SYMBOL vmlinux 0x2ef8a6d7 param_get_ushort +EXPORT_SYMBOL vmlinux 0x2f034428 __bh_read_batch EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f10dd54 input_register_device EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f17f135 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x2f1871ca seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x2f1f8ac9 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x2f2c1384 __udp_disconnect EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f35c841 of_iomap EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f554fcb proc_remove -EXPORT_SYMBOL vmlinux 0x2f629268 blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0x2f723e2c mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x2f53b2b8 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x2f65a713 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x2f681c82 dma_set_mask EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8c994f no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x2f8e0bd9 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x2f8e688c xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x2f9eba2a input_grab_device -EXPORT_SYMBOL vmlinux 0x2fbfb9f0 inet_select_addr +EXPORT_SYMBOL vmlinux 0x2f9ace29 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x2fc676ae gro_cells_receive EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2ff6947f nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x3024568a mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x302bd609 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x3036e189 scsi_add_device -EXPORT_SYMBOL vmlinux 0x304558fa pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x304a2b85 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x305e235b pci_find_bus -EXPORT_SYMBOL vmlinux 0x306e2788 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x308c22db dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x30969270 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2fe6b301 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x2fe7be5d kernel_bind +EXPORT_SYMBOL vmlinux 0x2ff0b92b phy_driver_register +EXPORT_SYMBOL vmlinux 0x2fffa08d kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x301167c0 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x302dccfc vga_put +EXPORT_SYMBOL vmlinux 0x30587791 inet_frags_init +EXPORT_SYMBOL vmlinux 0x306e3a29 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309bb884 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30aae5cb phy_stop EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b357b9 ping_prot -EXPORT_SYMBOL vmlinux 0x30b5e4c6 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x30bc5b9b tcp_peek_len -EXPORT_SYMBOL vmlinux 0x30d6ba6f udp_sendmsg -EXPORT_SYMBOL vmlinux 0x30f078ff ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x310627e3 folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0x31092395 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x30ce948d devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x30d3dbf5 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x30f1286f ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x30f78049 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x30fbdb34 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x310135b9 block_write_begin +EXPORT_SYMBOL vmlinux 0x310ae1a5 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x3122d0f9 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312b23cc mmc_hw_reset EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x313b9d83 pci_select_bars -EXPORT_SYMBOL vmlinux 0x31561ed2 config_group_find_item -EXPORT_SYMBOL vmlinux 0x315e2c90 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x3189b887 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x3198502c unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x3163704a sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x31651226 _dev_emerg +EXPORT_SYMBOL vmlinux 0x317665df xp_dma_map +EXPORT_SYMBOL vmlinux 0x317e0840 file_path +EXPORT_SYMBOL vmlinux 0x317e7680 genl_notify +EXPORT_SYMBOL vmlinux 0x3197dd96 do_splice_direct EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31a5e8ca simple_setattr -EXPORT_SYMBOL vmlinux 0x31aacf1a napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x31afd3b5 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x31b5903c fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x31e0807f ip_frag_next -EXPORT_SYMBOL vmlinux 0x320aae9f blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x31c8a9a5 phy_attached_info +EXPORT_SYMBOL vmlinux 0x31da8722 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x31ddde82 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x31e80f02 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3220132a rproc_shutdown EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x3223105f __skb_pad +EXPORT_SYMBOL vmlinux 0x322bbe59 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x322dd2d4 scsi_scan_target EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x323e0026 try_module_get -EXPORT_SYMBOL vmlinux 0x32496019 skb_seq_read -EXPORT_SYMBOL vmlinux 0x3266e80f pci_get_device -EXPORT_SYMBOL vmlinux 0x327537be input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x325009fa tcp_parse_options +EXPORT_SYMBOL vmlinux 0x3258f44c pci_scan_slot +EXPORT_SYMBOL vmlinux 0x32611b65 get_thermal_instance EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x329f3fd3 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x32886aaa padata_free_shell +EXPORT_SYMBOL vmlinux 0x328e9d72 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x32b0f0f6 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x32c1a009 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x32c83ef6 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d8b470 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x32e5e160 pci_dev_put EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32ef2de0 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x32f0ab67 of_get_child_by_name EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x33142bb6 mr_table_dump -EXPORT_SYMBOL vmlinux 0x33167c03 pci_read_vpd_any -EXPORT_SYMBOL vmlinux 0x33304af9 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x335193bd bpf_link_get_from_fd -EXPORT_SYMBOL vmlinux 0x336155ec prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x3307499a wireless_spy_update +EXPORT_SYMBOL vmlinux 0x330d3eba iterate_supers_type +EXPORT_SYMBOL vmlinux 0x3350fa80 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x33519743 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x3355bf01 noop_fsync EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range -EXPORT_SYMBOL vmlinux 0x3370b78e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x33732647 __check_sticky EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33753d3b skb_unlink -EXPORT_SYMBOL vmlinux 0x33769be3 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x33803db9 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x33830305 crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0x338d7133 input_setup_polling -EXPORT_SYMBOL vmlinux 0x33a35c56 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x33cddd51 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x33d5d679 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x3380c2fd rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x33992108 phy_loopback +EXPORT_SYMBOL vmlinux 0x339fec8f load_nls_default +EXPORT_SYMBOL vmlinux 0x33db6075 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x33dd78e9 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x33e1b767 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x33e2fb7a tso_build_data +EXPORT_SYMBOL vmlinux 0x33ecc568 rpmh_write EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f8f5bf rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34023155 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x341b899d mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3413fc92 clear_inode +EXPORT_SYMBOL vmlinux 0x341fb367 vfs_setpos EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x346882e6 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x3472c6b3 inode_init_always -EXPORT_SYMBOL vmlinux 0x347f1409 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x349ca20c super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x34354bfd d_path +EXPORT_SYMBOL vmlinux 0x3435946e lease_get_mtime +EXPORT_SYMBOL vmlinux 0x3442d3e3 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x3448acde set_binfmt +EXPORT_SYMBOL vmlinux 0x348dcce7 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3496a5fd devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349e1be1 of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a2384e pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x34a42e45 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x34a70704 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x34b3d4cf skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x34bf5929 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x34c27b0e generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x34abe6e2 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x34acdbd8 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x34b2086c dentry_path_raw +EXPORT_SYMBOL vmlinux 0x34bd5716 find_inode_nowait EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34c89076 tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34ee8654 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f48c72 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x35054c80 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x34fa384d ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351b6858 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x351d9a31 mr_dump -EXPORT_SYMBOL vmlinux 0x351f0d01 pci_restore_state -EXPORT_SYMBOL vmlinux 0x35245eff xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x3522a625 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x3526ab6c dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x3529342c tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3541ea8e t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x3554f4d6 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x354ca259 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356be6a0 sk_error_report +EXPORT_SYMBOL vmlinux 0x356b981b set_capacity +EXPORT_SYMBOL vmlinux 0x3594ed86 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x359c2822 pci_remove_bus EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bd23cc amba_release_regions -EXPORT_SYMBOL vmlinux 0x35d1978f generic_file_llseek -EXPORT_SYMBOL vmlinux 0x35d252af ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x35de3f00 of_match_device -EXPORT_SYMBOL vmlinux 0x35e63d7c fifo_set_limit -EXPORT_SYMBOL vmlinux 0x35e8e3d1 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x35f27fd7 slab_build_skb -EXPORT_SYMBOL vmlinux 0x36027ecf phy_device_register +EXPORT_SYMBOL vmlinux 0x35b1d36f __netif_napi_del +EXPORT_SYMBOL vmlinux 0x35c0394e phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x35d0e194 zap_page_range +EXPORT_SYMBOL vmlinux 0x35d10408 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x35dee15d cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x35f48cec pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x360916e2 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360dadda create_empty_buffers -EXPORT_SYMBOL vmlinux 0x361b629d netdev_printk -EXPORT_SYMBOL vmlinux 0x362989f8 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x362e0ee3 amba_request_regions -EXPORT_SYMBOL vmlinux 0x36397c0d show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x3643df5a devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x364512ab set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x3617e968 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x361a1b47 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x361c5744 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x3633a22c _dev_printk +EXPORT_SYMBOL vmlinux 0x36412f97 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x36453c33 phy_device_register EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365c7212 skb_ext_add EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3662c204 notify_change -EXPORT_SYMBOL vmlinux 0x3678dbe3 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x368de09d page_pool_get_stats -EXPORT_SYMBOL vmlinux 0x36941bb6 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x36956431 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x36b69ee0 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x3670754a remove_proc_entry +EXPORT_SYMBOL vmlinux 0x3677d77a md_done_sync +EXPORT_SYMBOL vmlinux 0x367d6911 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x36856a3f udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x3689e6af __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x369282d2 clk_add_alias +EXPORT_SYMBOL vmlinux 0x36930173 fman_port_get_device +EXPORT_SYMBOL vmlinux 0x36a60fa8 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x36a85379 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x36af08ab __of_get_address EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36b9f96b inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x36cbd899 sk_wait_data -EXPORT_SYMBOL vmlinux 0x36e93f25 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x370609e8 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x36cd7d16 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37134516 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37247d39 proto_register -EXPORT_SYMBOL vmlinux 0x3727a1dc dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x372adca1 pskb_extract -EXPORT_SYMBOL vmlinux 0x372b65e8 processors -EXPORT_SYMBOL vmlinux 0x372b748c mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x3723b4a9 clk_get +EXPORT_SYMBOL vmlinux 0x37301151 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x37310cb0 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x3736597f netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x373e52a2 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x37412c00 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3747fa94 kill_anon_super +EXPORT_SYMBOL vmlinux 0x37461808 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x3746edac __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x374cbfd3 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376124a8 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x3779eb54 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37958699 devm_ioremap -EXPORT_SYMBOL vmlinux 0x37a49242 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x379a7509 skb_eth_pop EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37bb73ef cros_ec_check_result EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c12deb tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x37d0a5d1 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x37db3ab9 xfrm_lookup EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e33d84 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x37f68470 unregister_nls -EXPORT_SYMBOL vmlinux 0x3807de1f __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x37efc02a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x37f3b381 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x3801654e xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x381107c7 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3850fdf1 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x381d4c48 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x382df433 kern_path_create +EXPORT_SYMBOL vmlinux 0x3833bbde jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x38401d1f mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x384a843e kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3862b51c bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x38547fca get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x385c2c38 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x38769341 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x387ef50a jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388a35d4 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x388a515a mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x388ac583 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x388d1603 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x388f6f52 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x38a36ab8 eth_validate_addr EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b0f598 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x38bb1d41 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x38c30802 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x38d89a14 inet_accept +EXPORT_SYMBOL vmlinux 0x38d1a465 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x38d23c4a fb_validate_mode +EXPORT_SYMBOL vmlinux 0x38d376fa mdio_device_create +EXPORT_SYMBOL vmlinux 0x38df656a max8998_bulk_write EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38fb3c7a mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x390a0040 sock_bind_add EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x3922fd2e __inet_stream_connect 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 0x393c2476 param_ops_charp -EXPORT_SYMBOL vmlinux 0x3941eec8 dma_resv_init EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3946f931 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394b80dc jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x394d5421 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x39506f18 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39567ef4 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x39584865 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x39609b59 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x39637d78 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x3969de50 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x396d1497 d_find_alias -EXPORT_SYMBOL vmlinux 0x3975f63e mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x398cad30 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x39919c41 fb_class +EXPORT_SYMBOL vmlinux 0x3977d593 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x397a3e5c netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x397c4d73 find_vma +EXPORT_SYMBOL vmlinux 0x39923662 bio_split_to_limits EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399acefb imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a36a60 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x39aa0419 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x39abcbd4 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x39aea5cb send_sig_info EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39bb598d md_set_array_sectors EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39be9ae5 bio_put EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x39cc5e9d md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39e521e9 ip_defrag -EXPORT_SYMBOL vmlinux 0x3a10cdf5 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x3a1921e2 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x39f3a368 notify_change +EXPORT_SYMBOL vmlinux 0x3a18a82f ip6_output +EXPORT_SYMBOL vmlinux 0x3a1ade08 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x3a2d2077 follow_pfn +EXPORT_SYMBOL vmlinux 0x3a429c90 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a6f378a pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x3a7344e2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x3a500360 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x3a591a3c phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3a6046e8 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x3a80845d inet_protos +EXPORT_SYMBOL vmlinux 0x3a9700b8 pci_enable_device +EXPORT_SYMBOL vmlinux 0x3a9eff15 folio_mapping EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab3894a folio_write_one +EXPORT_SYMBOL vmlinux 0x3ab46583 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x3ab7944b tcp_add_backlog EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac5c8fd xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad1f448 __sk_dst_check 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 0x3ade99ec get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aeccdd4 clear_nlink EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b0e1351 rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b1b0c20 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x3b1e4900 pci_bus_type +EXPORT_SYMBOL vmlinux 0x3b1ad6c6 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b33911c twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x3b35f92f simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x3b3f6e96 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x3b4d8c1e netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0x3b544f61 kthread_bind -EXPORT_SYMBOL vmlinux 0x3b5ad760 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x3b620e08 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x3b64188c devfreq_update_status +EXPORT_SYMBOL vmlinux 0x3b48bd11 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x3b5c01be tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x3b5c8947 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6df9b2 simple_transaction_read EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b727dc0 udp_seq_start -EXPORT_SYMBOL vmlinux 0x3b7299b1 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x3b895a56 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x3b7bc004 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x3b7f7d72 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3bc1e7ee configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x3bee504d skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x3bf8d05c tcp_child_process +EXPORT_SYMBOL vmlinux 0x3b93d022 fb_show_logo +EXPORT_SYMBOL vmlinux 0x3b94c53b mdio_device_remove +EXPORT_SYMBOL vmlinux 0x3bc3132b read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3bea0d7c fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x3bfdcdee __nla_put +EXPORT_SYMBOL vmlinux 0x3c0896f8 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c1391e6 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c222c6d i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x3c2b3dd9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x3c2f217a get_fs_type +EXPORT_SYMBOL vmlinux 0x3c30e433 configfs_undepend_item EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c355642 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x3c3f977f jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c62d2b5 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3c776a6c pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x3c813935 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x3c40ef13 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x3c4c75bb genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x3c4dc29e phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x3c8721f4 get_task_cred +EXPORT_SYMBOL vmlinux 0x3c89e9c7 nf_log_packet +EXPORT_SYMBOL vmlinux 0x3c8e7e00 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3c965cd2 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x3ca9227e phy_do_ioctl EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3ccfd0c1 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x3ccdd600 i2c_del_adapter EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf97c43 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3cfb6d65 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x3cfd479d netdev_update_features EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0595f2 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x3d1a7b07 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x3d1e9aa6 inet_release +EXPORT_SYMBOL vmlinux 0x3d0c0447 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x3d0de8c2 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d217a1a iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x3d4e7bef inet_frags_init -EXPORT_SYMBOL vmlinux 0x3d79fa55 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x3d8b2a95 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x3d8cc7ff submit_bio +EXPORT_SYMBOL vmlinux 0x3d2604ed tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x3d4bd787 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x3d68a768 dma_map_resource +EXPORT_SYMBOL vmlinux 0x3d8f90ca block_write_end EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d95a303 _dev_info +EXPORT_SYMBOL vmlinux 0x3d96333a serio_rescan +EXPORT_SYMBOL vmlinux 0x3d9e2173 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da5447b input_get_keycode 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 0x3dbd4f29 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x3dbe11b6 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3daede32 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x3db5ab1d devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x3dc35934 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc78a4f uart_write_wakeup EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcf84bc inet_recvmsg EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd43340 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3de1897a __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x3ded0ea8 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x3df24f09 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3de5ad30 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfb89b3 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0e8300 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x3e1a9ace xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x3e257e6c iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x3e26eca3 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x3dfec5c1 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x3e00d8e5 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3e17482e scsi_host_busy +EXPORT_SYMBOL vmlinux 0x3e18d146 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3e1af26d jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x3e2761e4 scsi_done +EXPORT_SYMBOL vmlinux 0x3e36b8df vme_slave_request EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e441146 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x3e5f4d51 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x3e6e908b send_sig +EXPORT_SYMBOL vmlinux 0x3e537eba blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3e56f30f of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x3e5f247a config_group_init +EXPORT_SYMBOL vmlinux 0x3e6aaf67 param_ops_short +EXPORT_SYMBOL vmlinux 0x3e7394f2 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e8d1d4a dqput -EXPORT_SYMBOL vmlinux 0x3e91d8f1 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x3eb3f9a7 xp_dma_map -EXPORT_SYMBOL vmlinux 0x3eb4d271 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x3e837fde tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x3e9deaea genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x3ea783f0 generic_write_end +EXPORT_SYMBOL vmlinux 0x3ebf7408 simple_write_begin EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed4221c pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x3ee083be tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x3ee7a1bd kernel_write -EXPORT_SYMBOL vmlinux 0x3eec0994 __folio_alloc +EXPORT_SYMBOL vmlinux 0x3ee4a769 posix_test_lock +EXPORT_SYMBOL vmlinux 0x3eeb10db inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0c7463 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f2fb60b key_link EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f37b574 pin_user_pages EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f48c9be dev_trans_start EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f682131 kobject_put -EXPORT_SYMBOL vmlinux 0x3f836c68 param_get_hexint -EXPORT_SYMBOL vmlinux 0x3f851bf0 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x3f87c303 kobject_set_name +EXPORT_SYMBOL vmlinux 0x3f78f16b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3f7ca852 dst_discard_out +EXPORT_SYMBOL vmlinux 0x3f7dbe9d netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3f82437b vm_mmap EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f910af6 nd_btt_version -EXPORT_SYMBOL vmlinux 0x3f98e922 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x3fa7987d inet_bind -EXPORT_SYMBOL vmlinux 0x3fa8134d acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x3fb1f713 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x3fbf1643 _dev_info +EXPORT_SYMBOL vmlinux 0x3f898f58 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x3f8da7aa noop_qdisc +EXPORT_SYMBOL vmlinux 0x3fa18203 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fce30dc proc_create_single_data EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd8f0a3 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x4020f107 input_open_device +EXPORT_SYMBOL vmlinux 0x3fe59dc1 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4014ecaf nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x402e2bfc udp_disconnect -EXPORT_SYMBOL vmlinux 0x403d4c82 __filemap_get_folio -EXPORT_SYMBOL vmlinux 0x404112c5 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x404c4d1e dev_addr_add -EXPORT_SYMBOL vmlinux 0x405a5ba1 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x405b84f5 of_get_next_child -EXPORT_SYMBOL vmlinux 0x405c5887 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x405f8679 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x4064672e mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x406b3af0 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x408222fc request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x40258a0e register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x402afcc5 finish_no_open +EXPORT_SYMBOL vmlinux 0x40469b8d pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x4061025a bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x408219a1 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot -EXPORT_SYMBOL vmlinux 0x40871378 clk_get +EXPORT_SYMBOL vmlinux 0x408c5d71 pci_release_regions +EXPORT_SYMBOL vmlinux 0x408e6caa __traceiter_module_get EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a806d0 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ae5273 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d6e12d zap_page_range -EXPORT_SYMBOL vmlinux 0x40e0cb6e pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x40ea3757 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x40d5adb7 fasync_helper +EXPORT_SYMBOL vmlinux 0x40e62f00 input_close_device +EXPORT_SYMBOL vmlinux 0x40ea6535 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x40f5a9c5 phy_validate_pause EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x40fb1d03 bdi_register -EXPORT_SYMBOL vmlinux 0x40fd206d tty_name -EXPORT_SYMBOL vmlinux 0x410ba325 lynx_get_mdio_device +EXPORT_SYMBOL vmlinux 0x412207ed netlink_ns_capable EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41352438 key_invalidate +EXPORT_SYMBOL vmlinux 0x4136a32d ip_defrag +EXPORT_SYMBOL vmlinux 0x4144fdc5 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x4147edc3 rproc_da_to_va EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x415d644b sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x415fbfac devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x417863e3 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x41861896 input_free_device +EXPORT_SYMBOL vmlinux 0x4155f65b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x415ad948 generic_perform_write +EXPORT_SYMBOL vmlinux 0x41623fbc __post_watch_notification +EXPORT_SYMBOL vmlinux 0x4171bbc3 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x4179df09 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a17712 netdev_features_change EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41a7ea39 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x41c03320 folio_alloc -EXPORT_SYMBOL vmlinux 0x41c45180 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x41a5f134 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x41aa6bc3 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x41af34cd fb_find_mode +EXPORT_SYMBOL vmlinux 0x41b0c49f filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x41bb4dbe folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x41d4321e mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x41eec846 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f149ae send_sig_info -EXPORT_SYMBOL vmlinux 0x41fd1b4e dump_skip -EXPORT_SYMBOL vmlinux 0x42084c35 invalidate_disk -EXPORT_SYMBOL vmlinux 0x420ac55b napi_gro_receive -EXPORT_SYMBOL vmlinux 0x421d4a17 genphy_resume -EXPORT_SYMBOL vmlinux 0x422624a1 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x42316f65 md_register_thread -EXPORT_SYMBOL vmlinux 0x42351f59 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x42358e70 get_task_cred +EXPORT_SYMBOL vmlinux 0x41f5588f jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x42353c9a param_set_bool +EXPORT_SYMBOL vmlinux 0x4235a778 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x424141c6 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x42446057 pnp_device_detach EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4251f3cd block_invalidate_folio -EXPORT_SYMBOL vmlinux 0x4254c57d blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42624b99 bmap -EXPORT_SYMBOL vmlinux 0x427bd872 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x427ca453 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x428370ce mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x428c78f0 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x42a5b430 backlight_device_register +EXPORT_SYMBOL vmlinux 0x427c0133 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x42828248 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x42911514 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x42a27a1f kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x42bbff7b pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42db784a request_key_rcu EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f56d65 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x42f54d0a nf_log_trace +EXPORT_SYMBOL vmlinux 0x42f59c7b ppp_unit_number EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4307ccfe config_item_set_name -EXPORT_SYMBOL vmlinux 0x431591c0 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x4336d56c __seq_open_private +EXPORT_SYMBOL vmlinux 0x43099545 trace_event_printf +EXPORT_SYMBOL vmlinux 0x430f8543 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x432379dc scsi_print_result EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436732a5 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x43674b37 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x436a6b25 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x4379bf97 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x43583968 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x435cab41 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x436c0d20 ip_options_compile +EXPORT_SYMBOL vmlinux 0x437801e6 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437d0dc9 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x437eba55 folio_migrate_copy EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4388f522 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x4390fd74 km_report -EXPORT_SYMBOL vmlinux 0x439416bd md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x439ed7ff phy_print_status -EXPORT_SYMBOL vmlinux 0x43af8661 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x43aff75b buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x438e4e35 gro_cells_init +EXPORT_SYMBOL vmlinux 0x4399bdf5 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x43ad4dd9 is_acpi_data_node EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b786f3 t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one -EXPORT_SYMBOL vmlinux 0x43d22486 sget_fc +EXPORT_SYMBOL vmlinux 0x43cb6ff7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x43ce40df tcf_exts_dump EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43edb5ac da903x_query_status -EXPORT_SYMBOL vmlinux 0x43f7b641 keyring_clear +EXPORT_SYMBOL vmlinux 0x43dcdfd9 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x43e5d4f6 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x43fb7f3e dm_put_device -EXPORT_SYMBOL vmlinux 0x440124ae mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x44019a26 register_netdev EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x44098f08 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x4426940c __scsi_execute -EXPORT_SYMBOL vmlinux 0x442feebd dev_uc_sync -EXPORT_SYMBOL vmlinux 0x443df4d3 arp_xmit +EXPORT_SYMBOL vmlinux 0x44180c9d bio_endio +EXPORT_SYMBOL vmlinux 0x441cbbec from_kgid_munged +EXPORT_SYMBOL vmlinux 0x442193be fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x44448ff9 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x44559b25 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x445dad00 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x444f399c proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x44514b2b ip_do_fragment EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4478a16a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4465a9ca ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x4469c6d2 pci_match_id +EXPORT_SYMBOL vmlinux 0x447ca6dc neigh_app_ns +EXPORT_SYMBOL vmlinux 0x447ed0e8 dentry_create +EXPORT_SYMBOL vmlinux 0x448addb7 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x44907834 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x4496fd93 mii_ethtool_sset EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44adaf43 update_devfreq -EXPORT_SYMBOL vmlinux 0x44b372b6 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x44cf5727 param_array_ops -EXPORT_SYMBOL vmlinux 0x44d24ea9 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x44afa6a5 lookup_one +EXPORT_SYMBOL vmlinux 0x44b433ef skb_expand_head +EXPORT_SYMBOL vmlinux 0x44c1e2b9 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x44d2dc2a sock_wfree EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f6773f ps2_drain -EXPORT_SYMBOL vmlinux 0x44f6a3ab of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x44fdb1c4 register_fib_notifier 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 0x45203ac2 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x45299702 of_find_compatible_node EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453755ff d_add_ci EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45441d89 generic_update_time -EXPORT_SYMBOL vmlinux 0x45496a43 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45b20c4a udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x45be33a7 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x45c00439 of_match_node -EXPORT_SYMBOL vmlinux 0x45cdba05 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x45d2f9af pnp_possible_config -EXPORT_SYMBOL vmlinux 0x45d5d19e arp_send -EXPORT_SYMBOL vmlinux 0x45fb42e1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x458a708c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x45936889 follow_up +EXPORT_SYMBOL vmlinux 0x459b8cea inode_get_bytes +EXPORT_SYMBOL vmlinux 0x45ae5316 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x45b18041 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x45bd375b pcim_iomap +EXPORT_SYMBOL vmlinux 0x45dff50d cad_pid +EXPORT_SYMBOL vmlinux 0x45e04bf8 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x45ec95ee input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x46096cf2 unix_detach_fds EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x463c5bcf reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x463d97b6 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x464b83db dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4656afc0 padata_free +EXPORT_SYMBOL vmlinux 0x46597c38 mmc_can_trim EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466bc3eb pm860x_set_bits EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466c225c d_alloc_anon +EXPORT_SYMBOL vmlinux 0x46776654 blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46829641 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x4691d0dd bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46ac45fe dm_put_device +EXPORT_SYMBOL vmlinux 0x46b2cc80 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x46b9ec20 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46c589d7 __bio_advance -EXPORT_SYMBOL vmlinux 0x46cea2df devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x46dff022 of_match_node +EXPORT_SYMBOL vmlinux 0x46fdc83f filemap_get_folios_contig 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 0x470f3f10 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x47100218 logfc EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4744bc41 param_set_int +EXPORT_SYMBOL vmlinux 0x472ca78b scsi_register_driver +EXPORT_SYMBOL vmlinux 0x4740f67e mii_nway_restart +EXPORT_SYMBOL vmlinux 0x47523672 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x47552a94 scsi_remove_target EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x476c502b netlink_net_capable +EXPORT_SYMBOL vmlinux 0x475f1d5a __brelse +EXPORT_SYMBOL vmlinux 0x476d7f96 tcf_exts_change EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x478055d9 skb_copy_header +EXPORT_SYMBOL vmlinux 0x478fef9a set_cached_acl EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47a482d6 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x47a4c382 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x47a6a006 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x47a8ba89 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x47ae6a4e hmm_range_fault -EXPORT_SYMBOL vmlinux 0x47b2daf7 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x479b019e vfs_mknod +EXPORT_SYMBOL vmlinux 0x47aa9dae dqget +EXPORT_SYMBOL vmlinux 0x47bfad90 skb_unlink +EXPORT_SYMBOL vmlinux 0x47c0d9d1 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47ca704f fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47e22ac6 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x47e387c1 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x47ea875e scsi_host_get +EXPORT_SYMBOL vmlinux 0x47f1a7d5 xfrm_state_update EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x48169301 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x48171bd4 d_lookup EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x482945b2 dev_get_stats EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4833e7f0 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x483c0690 iov_iter_gap_alignment 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 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485bdb7b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x4859e2a3 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486296fe set_page_writeback -EXPORT_SYMBOL vmlinux 0x48678313 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x48826385 freeze_super -EXPORT_SYMBOL vmlinux 0x4894f134 phy_resume +EXPORT_SYMBOL vmlinux 0x4860b0f4 skb_ext_add +EXPORT_SYMBOL vmlinux 0x486be687 tcp_filter +EXPORT_SYMBOL vmlinux 0x487d8d07 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x4888b917 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x488b0bcb eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x488d10c6 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x4895737e blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a7bb0a vme_lm_request EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b1e932 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bd7f8a rc5t583_ext_power_req_config 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 0x48d9d728 tcp_disconnect EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x48f25088 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x48f8a764 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x48de7307 phy_get_pause +EXPORT_SYMBOL vmlinux 0x48e18136 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x48fc27dc dup_iter EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x492a83c6 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x492f0b27 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x49395d5c dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x494b9df8 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x490c6cad generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x49247b59 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x492d81cf phy_modify_paged +EXPORT_SYMBOL vmlinux 0x492fe8cc end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x49363493 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x495e3297 register_netdev +EXPORT_SYMBOL vmlinux 0x4966c578 dev_uc_add EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x4974187e get_tree_single -EXPORT_SYMBOL vmlinux 0x49765bbd genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x497ae475 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x497b9473 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x497befcf __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x49803e87 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x4984a040 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x497895a6 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x498f3922 init_task +EXPORT_SYMBOL vmlinux 0x499b40c0 param_get_string EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a5e948 generic_read_dir -EXPORT_SYMBOL vmlinux 0x49a8d2e1 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b222dd security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0x49bc48bf file_update_time -EXPORT_SYMBOL vmlinux 0x49c9f161 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x49e8668e km_query -EXPORT_SYMBOL vmlinux 0x49f369ec pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x4a211332 param_ops_string -EXPORT_SYMBOL vmlinux 0x4a37a403 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x49b60c63 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x49bb9886 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x49c55687 __kfree_skb +EXPORT_SYMBOL vmlinux 0x49dc2419 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x49e38ebf devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x49fd736c scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x4a166068 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x4a1c42e6 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x4a25eb14 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x4a2736ae page_pool_release_page +EXPORT_SYMBOL vmlinux 0x4a395d53 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a3b5591 noop_fsync -EXPORT_SYMBOL vmlinux 0x4a47c58d __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x4a49c188 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x4a49d286 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x4a576de0 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x4a64739a netdev_emerg -EXPORT_SYMBOL vmlinux 0x4a6b1993 tcf_classify -EXPORT_SYMBOL vmlinux 0x4a76f2eb dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0x4a7fab2d devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x4a89243c sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x4a8c91bc max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x4a8e3162 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x4a92d183 param_get_ulong +EXPORT_SYMBOL vmlinux 0x4a5d3cee vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a940250 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x4a95237a blackhole_netdev EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ab4e51f sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x4abff794 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x4acb8ea9 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4a9cc5c0 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x4aaeffe2 __alloc_skb +EXPORT_SYMBOL vmlinux 0x4ab4a792 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x4ad7a94a nla_put_nohdr EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aed39a2 request_firmware +EXPORT_SYMBOL vmlinux 0x4af0ee42 path_has_submounts EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b1bf35e locks_init_lock -EXPORT_SYMBOL vmlinux 0x4b2c5bf0 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x4b3bb7b3 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x4b0d554e netdev_crit +EXPORT_SYMBOL vmlinux 0x4b137f5f devfreq_update_target +EXPORT_SYMBOL vmlinux 0x4b3532e3 generic_listxattr EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b4c9bfc filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x4b588e4a folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x4b495cf5 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x4b502b9f fqdir_exit +EXPORT_SYMBOL vmlinux 0x4b5195cc pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x4b69378b tty_port_init EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b7de6be mdiobus_free -EXPORT_SYMBOL vmlinux 0x4b8dc2a9 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x4ba3bc5b flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x4ba4e70a mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x4ba52c90 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x4ba8f9ce rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x4badb17a task_work_add -EXPORT_SYMBOL vmlinux 0x4bc1d83a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x4b78223e reuseport_alloc +EXPORT_SYMBOL vmlinux 0x4b88a760 skb_append +EXPORT_SYMBOL vmlinux 0x4b8fe012 km_policy_notify +EXPORT_SYMBOL vmlinux 0x4b9f5cd9 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x4bb1457a vfs_statfs +EXPORT_SYMBOL vmlinux 0x4bb7f895 con_is_visible +EXPORT_SYMBOL vmlinux 0x4bba001b rtnl_notify +EXPORT_SYMBOL vmlinux 0x4bbd87e5 devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd57575 sget +EXPORT_SYMBOL vmlinux 0x4be81628 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x4be9721f iov_iter_npages EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0b42f2 scsi_host_put +EXPORT_SYMBOL vmlinux 0x4c0ff7b4 edac_mc_find EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c528a11 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4c5502c4 register_cdrom -EXPORT_SYMBOL vmlinux 0x4c8a4497 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0x4c96e9f8 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x4c98db64 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x4ca2236f mod_node_page_state -EXPORT_SYMBOL vmlinux 0x4cb23ab2 unlock_buffer -EXPORT_SYMBOL vmlinux 0x4cba4462 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x4cdf2635 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x4c68214b mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x4c6e8a32 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x4c7ac096 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x4c88bdde sock_set_priority +EXPORT_SYMBOL vmlinux 0x4c8cd92d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x4c9247d5 mdio_device_free +EXPORT_SYMBOL vmlinux 0x4ca93242 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x4cab26e8 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x4cad88a5 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x4cb6cfe3 folio_add_lru +EXPORT_SYMBOL vmlinux 0x4ccf5ebc skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x4ce66e65 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x4cee1bfb mr_table_alloc +EXPORT_SYMBOL vmlinux 0x4cf9dcba skb_pull +EXPORT_SYMBOL vmlinux 0x4d03e85b rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1238cc pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x4d179ddb __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d54e824 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x4d47c1f6 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x4d559497 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x4d5a150a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x4d61a046 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d6a4b4f devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x4d6c50b6 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4d6c6d1c scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d93478c ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x4d9b36d3 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4dc9d2c9 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x4da90c94 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x4dbed6da inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd4f05b md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x4de18229 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x4dd2c979 dev_get_stats 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 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e059af2 kset_unregister +EXPORT_SYMBOL vmlinux 0x4e1037cd fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x4e1229b9 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e25f8e8 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x4e2b1dae udp_ioctl +EXPORT_SYMBOL vmlinux 0x4e228d5f rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x4e2334bc dcache_dir_open +EXPORT_SYMBOL vmlinux 0x4e2902ac tcp_read_skb EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e4124e2 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x4e44e0a1 inode_init_once EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e4f2b06 dcb_setapp EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e55843e register_qdisc EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e690fdf rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7834ce gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x4e87fadd skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x4e88312c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x4e7f45de simple_get_link +EXPORT_SYMBOL vmlinux 0x4e94b9fd set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4e9a316e i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eacd539 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb6eed2 qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0x4eb84a64 fb_set_var +EXPORT_SYMBOL vmlinux 0x4ebd1fc4 follow_down_one +EXPORT_SYMBOL vmlinux 0x4ebf4768 acpi_bus_get_status EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec73c2d build_skb -EXPORT_SYMBOL vmlinux 0x4ede44e2 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x4ee10243 start_tty -EXPORT_SYMBOL vmlinux 0x4f0f77d8 input_match_device_id +EXPORT_SYMBOL vmlinux 0x4edd91f2 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4f068588 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x4f167cdb skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1cddc9 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x4f1deffe inet_ioctl EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2abb5e xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x4f2f3047 dev_get_flags -EXPORT_SYMBOL vmlinux 0x4f3760ff jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4f2fb37f config_group_find_item EXPORT_SYMBOL vmlinux 0x4f491352 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4f4a6353 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4f4ae7a6 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4f546962 bdi_register EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f5ea155 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x4f65f2a4 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x4f75f9b2 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x4f7c3d34 keyring_search +EXPORT_SYMBOL vmlinux 0x4f5c907f netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4f6cba2d unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x4fa0e119 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x4fafb329 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x4fd073c0 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x4fc05a77 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x4fc59a1e tegra_dfll_suspend EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid -EXPORT_SYMBOL vmlinux 0x4ff76d0b pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x4ffa6637 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x4feb883e ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x4fed1849 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x4ffb1ad8 path_get EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x5002d3f6 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x500383b7 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500a0faf dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x501bf9ed kill_litter_super -EXPORT_SYMBOL vmlinux 0x501e0730 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x5017a7a8 simple_unlink EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5025dc9a unix_destruct_scm EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x50327856 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x505d87a3 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x503cdbca stop_tty +EXPORT_SYMBOL vmlinux 0x504e5513 __folio_lock +EXPORT_SYMBOL vmlinux 0x504e8049 max8998_update_reg EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506294cf tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x506d15bf xfrm_state_walk EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5079e804 tty_unlock -EXPORT_SYMBOL vmlinux 0x508181de pci_request_region +EXPORT_SYMBOL vmlinux 0x50855ee5 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508c0fcd tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x50914005 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x5094d518 simple_release_fs -EXPORT_SYMBOL vmlinux 0x509b1071 rio_query_mport EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50abfda5 security_path_rename EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50ba12e5 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x50bb8942 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x50bc9cd6 xfrm_init_state EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c69cfb vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50f76a5b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x50d80873 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50f9e5dd d_make_root -EXPORT_SYMBOL vmlinux 0x51012575 pin_user_pages +EXPORT_SYMBOL vmlinux 0x50ff1df2 netif_device_attach EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51063ea2 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x512bb217 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x5105fd5f _dev_warn +EXPORT_SYMBOL vmlinux 0x51069b6f proc_remove +EXPORT_SYMBOL vmlinux 0x51275b65 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x51276f8d module_put +EXPORT_SYMBOL vmlinux 0x512e2d08 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x5139a439 from_kprojid_munged EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec +EXPORT_SYMBOL vmlinux 0x514490c2 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x514cb658 register_mii_timestamper EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5151a18b register_netdevice EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516994de tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x518c70ed param_ops_uint -EXPORT_SYMBOL vmlinux 0x5196a929 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x519ca030 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x519d63e3 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x517b0a07 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x517c545f __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x517d6bf7 generic_file_open +EXPORT_SYMBOL vmlinux 0x517dd0a4 from_kuid +EXPORT_SYMBOL vmlinux 0x5184632f phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x51946c04 write_inode_now EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51aa73d2 phy_error +EXPORT_SYMBOL vmlinux 0x51aa5427 free_mdio_bitbang EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x51b71e3a key_type_keyring +EXPORT_SYMBOL vmlinux 0x51c24b2f __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d175ad iov_iter_zero +EXPORT_SYMBOL vmlinux 0x51d99971 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x51e37215 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x51e8f982 uart_resume_port EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x520aa3af mdiobus_scan -EXPORT_SYMBOL vmlinux 0x521b38e0 cont_write_begin -EXPORT_SYMBOL vmlinux 0x5230c533 scsi_host_put -EXPORT_SYMBOL vmlinux 0x525cee75 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x521350cf alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x52464f11 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x526649b7 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5277acee tty_unregister_device +EXPORT_SYMBOL vmlinux 0x5284520f tcp_init_sock +EXPORT_SYMBOL vmlinux 0x52868f5c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x528d4cc0 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x5291971c config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x529575cc of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529ad4df xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x52a15b10 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x52a1f900 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x52b70062 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x52c60445 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x52d1d519 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x52d3b732 sock_pfree +EXPORT_SYMBOL vmlinux 0x52d5c5f9 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e149b8 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x52dd52ab iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x52e62d0e sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x53028559 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530d6ac8 __breadahead +EXPORT_SYMBOL vmlinux 0x53122db5 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5315e04f flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x534e4319 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x53559449 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x53850ae0 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x534a32aa netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x53659636 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x53880a2c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x5399089e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x53a15e49 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x53a16d90 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x53a1aee4 pci_read_config_word EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53ea570a ppp_channel_index +EXPORT_SYMBOL vmlinux 0x53d2a02a rpmh_write_async +EXPORT_SYMBOL vmlinux 0x53d77172 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x53ec7806 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x53eda9e8 phy_attach_direct EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53f0a8c3 xp_free -EXPORT_SYMBOL vmlinux 0x53f704dc d_drop -EXPORT_SYMBOL vmlinux 0x53f81222 netdev_notice EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x53fa9b46 cdev_device_del -EXPORT_SYMBOL vmlinux 0x53facde3 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x53fdb8f2 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x5417cc19 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x541c3f66 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x5424e0bf kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x54293f8b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x542b55f5 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x542d3342 seq_lseek +EXPORT_SYMBOL vmlinux 0x542ff3af scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x543425d1 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x543c6ecb xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5446082f iov_iter_revert -EXPORT_SYMBOL vmlinux 0x544d1231 file_ns_capable -EXPORT_SYMBOL vmlinux 0x545de89c page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x54669abd rtnl_unicast -EXPORT_SYMBOL vmlinux 0x5471ae45 fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0x5476285f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x54779a0f pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x549a107b __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x54a1fd95 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x54adb7c6 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5440af5f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x54480ed1 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x54602530 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x547ebf97 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x547f7d1c input_get_timestamp +EXPORT_SYMBOL vmlinux 0x5494ee31 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x549c0467 follow_down EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54c05085 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x54c6aa27 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x54cc015a register_framebuffer -EXPORT_SYMBOL vmlinux 0x54d9a123 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x54d9ec8c security_sb_remount -EXPORT_SYMBOL vmlinux 0x54daf19b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x54c3cdd7 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f11e87 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x54f61f55 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550955ec input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x5510579e sk_alloc +EXPORT_SYMBOL vmlinux 0x5517e50e mfd_cell_enable EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55256d13 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x552ece8e input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x55364777 ilookup5 -EXPORT_SYMBOL vmlinux 0x553d61a5 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x55437745 __bforget +EXPORT_SYMBOL vmlinux 0x55398727 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x553a5803 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x5540ea6b tegra_dfll_resume EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5562e7ae sock_wake_async -EXPORT_SYMBOL vmlinux 0x5565ba1b vme_bus_type -EXPORT_SYMBOL vmlinux 0x556eb8eb mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x557b8a51 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x55543418 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x5565086d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x556cc67f sock_gettstamp +EXPORT_SYMBOL vmlinux 0x557d2546 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x558c7516 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x5596817d tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x559fbe64 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x55bf6176 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x55c0f503 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x55c86fcf vfs_getattr -EXPORT_SYMBOL vmlinux 0x55c8c9e4 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x55cc5542 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x5593b8ca send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x55970504 iterate_dir +EXPORT_SYMBOL vmlinux 0x559e653f of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x55ae176b dquot_resume +EXPORT_SYMBOL vmlinux 0x55b8a604 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e620d5 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x55eb8141 kern_path -EXPORT_SYMBOL vmlinux 0x55f739d4 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x55ffadcb d_find_any_alias -EXPORT_SYMBOL vmlinux 0x56077221 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x560e248f flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x55f64387 begin_new_exec +EXPORT_SYMBOL vmlinux 0x5603a086 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x56069984 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561771f9 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x5625e5aa _dev_printk -EXPORT_SYMBOL vmlinux 0x562cf0d7 d_path +EXPORT_SYMBOL vmlinux 0x5621010d skb_checksum_setup EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x566a397e pci_claim_resource -EXPORT_SYMBOL vmlinux 0x567bf161 netdev_warn -EXPORT_SYMBOL vmlinux 0x567f60af tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x56649de8 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x56801363 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5694c711 vme_lm_request -EXPORT_SYMBOL vmlinux 0x56a09f80 netlink_unicast +EXPORT_SYMBOL vmlinux 0x56882e68 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x569aef8b pci_get_class +EXPORT_SYMBOL vmlinux 0x56ab9a78 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cebaa7 flush_dcache_folio -EXPORT_SYMBOL vmlinux 0x56fcec05 stop_tty -EXPORT_SYMBOL vmlinux 0x570488d6 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0x5712a0a9 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x5727d13c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x56ce1470 device_add_disk +EXPORT_SYMBOL vmlinux 0x56ee25ac register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x571564f7 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x571703b8 __ps2_command +EXPORT_SYMBOL vmlinux 0x5717451f pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x5717d09a vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x573d0b0f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x57400e34 bio_chain +EXPORT_SYMBOL vmlinux 0x57461972 dev_deactivate EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574d79b7 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575ff983 mount_nodev -EXPORT_SYMBOL vmlinux 0x5766ff73 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x575e2674 mmc_put_card EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x578e032f mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x576bbb6e __napi_schedule +EXPORT_SYMBOL vmlinux 0x576d6d02 rproc_free +EXPORT_SYMBOL vmlinux 0x578d9694 folio_migrate_copy EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x57924e0a is_nd_btt EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579b32b2 registered_fb -EXPORT_SYMBOL vmlinux 0x57a1d17a filp_open -EXPORT_SYMBOL vmlinux 0x57a282b1 serio_interrupt -EXPORT_SYMBOL vmlinux 0x57baab38 kthread_stop +EXPORT_SYMBOL vmlinux 0x5793a809 param_set_uint +EXPORT_SYMBOL vmlinux 0x5794ca5f tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x57965d18 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x57b9ce73 max8925_set_bits EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57be05f4 sget EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57dfb11f __post_watch_notification -EXPORT_SYMBOL vmlinux 0x57e29688 mmc_put_card +EXPORT_SYMBOL vmlinux 0x57e91d4b xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x58030103 uart_register_driver -EXPORT_SYMBOL vmlinux 0x580572b3 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x580619ce tcf_action_exec -EXPORT_SYMBOL vmlinux 0x580feddb simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x58125a0b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x580647a8 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x580cda3a touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x5819240f kernel_recvmsg EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58245c2c pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x5825e3d6 dm_io EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put -EXPORT_SYMBOL vmlinux 0x5827e5b2 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58365644 pci_dev_driver EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583d888f bprm_change_interp -EXPORT_SYMBOL vmlinux 0x584726cd generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x583bff4e scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x584e79e7 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5855ef2f bio_uninit EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x586971ca xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x58695c53 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x586979a3 dump_emit EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5882c585 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x588e7774 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x5892ff27 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x58944574 rproc_add_carveout EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x589c5fad free_task -EXPORT_SYMBOL vmlinux 0x58a2f2c0 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x589976dc pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58aed575 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x58b2b4f7 ps2_handle_response EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b4f868 pagecache_get_page EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bfa888 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x58cad869 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x58b76eaa bpf_link_put +EXPORT_SYMBOL vmlinux 0x58bc8036 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x58cfb38d backlight_force_update +EXPORT_SYMBOL vmlinux 0x58cfe85b __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x58d586a5 phy_free_interrupt EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x58dedce1 tcp_ioctl EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58eeff76 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x58f5162a ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x590752e2 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x5909bec6 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x5923911e unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x58f546cd udp_prot +EXPORT_SYMBOL vmlinux 0x590027f1 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x591c8e4e serio_reconnect +EXPORT_SYMBOL vmlinux 0x59324897 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596876a0 genphy_loopback -EXPORT_SYMBOL vmlinux 0x597df209 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x597ff10c tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x599136d8 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x596e6573 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x59816a28 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x5983ce11 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x598eff8d dev_uc_init EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599beeef of_phy_connect EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b44c8c netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59cb8e0f dst_alloc -EXPORT_SYMBOL vmlinux 0x5a02642e netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x59edabad flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x59f9659f freeze_super EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a3140ae of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4a255e __vfs_setxattr EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a55efde sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5a4e4b87 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x5a57bd42 udp6_set_csum EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a653767 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x5a92004c param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a92a5c1 dev_disable_lro EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa033f9 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x5abd30a2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x5ad3d689 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x5ace8064 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5b1c483f __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x5b1e28f1 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x5aebb30b kthread_create_worker +EXPORT_SYMBOL vmlinux 0x5aec36d9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x5b119527 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x5b1f72ba bio_init_clone EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b3693f7 write_inode_now +EXPORT_SYMBOL vmlinux 0x5b35183d phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x5b370d47 skb_split EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b65cf6f msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x5b75308f cdev_alloc -EXPORT_SYMBOL vmlinux 0x5b9edad8 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x5ba9921b vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x5baaa2bd phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x5bad9533 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x5b66f950 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x5baa824a set_create_files_as +EXPORT_SYMBOL vmlinux 0x5bab54c4 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x5bb28ffb eth_gro_complete +EXPORT_SYMBOL vmlinux 0x5bc209b3 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bcfac43 can_nice EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be31c47 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c04d11f zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x5c17197d security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x5c18bc1e migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x5bf9d853 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x5bfae901 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x5bfe9fe1 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x5c12d5e4 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x5c1a01ef dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x5c25ddaf tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x5c2678c5 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2b0df3 eth_header_cache +EXPORT_SYMBOL vmlinux 0x5c2a136e elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c4b47b9 __find_get_block -EXPORT_SYMBOL vmlinux 0x5c75d05a ndisc_ns_create -EXPORT_SYMBOL vmlinux 0x5c833b6e of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x5c906d37 readahead_expand -EXPORT_SYMBOL vmlinux 0x5c98e0af neigh_connected_output -EXPORT_SYMBOL vmlinux 0x5cc453f2 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x5ccd32d3 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x5cd8e1fb blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x5cd9b666 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5c3fd821 netpoll_setup +EXPORT_SYMBOL vmlinux 0x5c44f466 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5c55bab3 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x5c6d5515 tcf_block_get +EXPORT_SYMBOL vmlinux 0x5c7eb2a3 __check_sticky +EXPORT_SYMBOL vmlinux 0x5c87a5d4 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x5c8deb55 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5c90d591 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x5ca726aa ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5ca77aeb kernel_sendpage +EXPORT_SYMBOL vmlinux 0x5cae9e1e __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x5cb27f75 config_item_put +EXPORT_SYMBOL vmlinux 0x5cc71af4 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x5cd5e2ba mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf558f3 put_watch_queue EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d050421 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x5d10c80f component_match_add_typed EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d1a0f89 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0x5d1a1e87 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5d1b2bd9 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x5d2f71f0 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x5d406e09 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5d4687a6 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x5d12d079 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d539760 cdev_device_add -EXPORT_SYMBOL vmlinux 0x5d6501ae locks_copy_lock -EXPORT_SYMBOL vmlinux 0x5d709eca mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x5d78a864 kill_pgrp -EXPORT_SYMBOL vmlinux 0x5d920dc8 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5d94c7ac simple_dir_operations -EXPORT_SYMBOL vmlinux 0x5d9508fe thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5d49b151 set_disk_ro +EXPORT_SYMBOL vmlinux 0x5d872bab simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5d87fa38 update_region +EXPORT_SYMBOL vmlinux 0x5d9a4793 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x5d9c6a7c vfs_get_tree EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dff01a5 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5dba5385 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x5dbf92d1 filp_open +EXPORT_SYMBOL vmlinux 0x5dc771ba devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x5dcc60be of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x5dd561d5 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x5dda54b5 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x5e0242ac i2c_register_driver EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0c59a1 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0d64ea vfs_symlink -EXPORT_SYMBOL vmlinux 0x5e1ab406 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x5e2bbaa8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x5e2ea080 sock_no_connect +EXPORT_SYMBOL vmlinux 0x5e309e44 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e423065 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x5e69e2f5 devm_clk_put +EXPORT_SYMBOL vmlinux 0x5e38ec17 netlink_unicast +EXPORT_SYMBOL vmlinux 0x5e44607b iov_iter_bvec EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e77c378 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8ad4c9 mntget EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5ea113f7 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x5eb9632b md_check_recovery -EXPORT_SYMBOL vmlinux 0x5ebc1a8d fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x5ec25927 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x5ea0ac7d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x5eb179e1 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x5eb1876f compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x5ebf7f49 register_md_personality EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed7fc6d blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edeb009 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x5ee4fbd1 pci_iounmap +EXPORT_SYMBOL vmlinux 0x5ee65ae7 fb_set_cmap EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef6a768 of_find_property 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 0x5f16a12e filemap_release_folio +EXPORT_SYMBOL vmlinux 0x5f12aa0e flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x5f2791f5 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2c4dd1 netif_device_detach EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x5f3ed316 mmc_start_request EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f575074 devm_memunmap -EXPORT_SYMBOL vmlinux 0x5f67d7e6 of_get_cpu_node EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f7f1965 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x5f7e425c of_translate_address +EXPORT_SYMBOL vmlinux 0x5f8f6d19 bio_init EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9e6397 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x5fac7459 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x5fad2d77 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5fc090cc xfrm_input EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fe65ea6 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x5fe8bead jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x5fe93ed6 pci_iounmap +EXPORT_SYMBOL vmlinux 0x5ff42d2c ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x60033f87 devm_ioport_unmap 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 0x600dc666 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6027baff node_data EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604902f1 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x605447db nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6059abd2 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6060d340 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x6060fc6d xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x606633e4 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x6072c9f4 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6071738b __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x607e1657 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x608e5a6a pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60965f89 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aa6de6 phy_device_create EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60c00b8a ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0x60c769ee ip_options_compile +EXPORT_SYMBOL vmlinux 0x60bf42af genl_register_family +EXPORT_SYMBOL vmlinux 0x60c0f7f3 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x60c1b57b xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x60ce86bc task_work_add EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60eaa586 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x60f523f7 lynx_pcs_create -EXPORT_SYMBOL vmlinux 0x61036f94 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x60ec1e90 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x610ead06 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x611bd61d secpath_set +EXPORT_SYMBOL vmlinux 0x610ff785 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x611f0e5b mfd_add_devices +EXPORT_SYMBOL vmlinux 0x61204dd0 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614a0989 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x614f9c46 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x61551610 sock_init_data +EXPORT_SYMBOL vmlinux 0x614e6d46 dev_uc_del EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x61693862 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x616aeddf genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x6178eb80 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x617a29b3 passthru_features_check +EXPORT_SYMBOL vmlinux 0x617482d8 dquot_acquire EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x6183418f pci_read_config_dword EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618c7ca8 scsi_target_resume EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x619cbdc6 neigh_lookup -EXPORT_SYMBOL vmlinux 0x61b49db8 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x61aa132c pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x61aba938 nonseekable_open EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bc9efb pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x61beffc3 dma_resv_add_fence EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e8bf9b sg_miter_start EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620a7bda inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x61ecaa41 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x61f405f0 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x6201ff30 d_genocide +EXPORT_SYMBOL vmlinux 0x6212c678 inode_init_owner EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62198756 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x6228b736 phy_suspend +EXPORT_SYMBOL vmlinux 0x622090f8 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622c4adc devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x6232d13f xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x62454c02 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x625c7c44 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x624e2766 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x6252b91b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x626a4c01 lookup_one_len EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628d3704 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x628fd923 phy_driver_register +EXPORT_SYMBOL vmlinux 0x62875960 inet6_add_offload EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x62917eb9 pcim_enable_device EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62a3211b md_write_end -EXPORT_SYMBOL vmlinux 0x62a6db7c netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x62ab2bf9 tty_kref_put -EXPORT_SYMBOL vmlinux 0x62bc4ad6 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x62d76e59 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x62bded66 keyring_search +EXPORT_SYMBOL vmlinux 0x62d739a3 inet_register_protosw EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x6310706a timestamp_truncate EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631c6109 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x633bba2f unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x634713b5 single_open_size -EXPORT_SYMBOL vmlinux 0x63554555 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x63585219 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0x63751c97 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x6397ad15 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x6320bce3 key_alloc +EXPORT_SYMBOL vmlinux 0x632a04a4 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x634fa2f9 serio_bus +EXPORT_SYMBOL vmlinux 0x6355d0c4 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x635cbae4 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x6367457c scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x637c3e04 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x638fca40 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c3a549 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x63c5f410 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x63e8d3a2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x63b83a8b inode_needs_sync +EXPORT_SYMBOL vmlinux 0x63c76b12 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x63e7b549 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63edde93 mdio_device_register -EXPORT_SYMBOL vmlinux 0x63f11a56 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x64060a86 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x63edeeb1 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x6410eb27 devm_ioport_map EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6419c9c0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x641380af of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x6416e357 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x641847a3 rproc_put +EXPORT_SYMBOL vmlinux 0x6427f1e8 dquot_initialize +EXPORT_SYMBOL vmlinux 0x642e8f52 softnet_data EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643643dc eth_gro_complete -EXPORT_SYMBOL vmlinux 0x64384599 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x643250dd fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x64326000 fman_port_bind EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x64569907 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0x645d4ee1 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x6468742d blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x6476822c blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0x647d4075 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x646b1a8a inc_nlink +EXPORT_SYMBOL vmlinux 0x6479ac54 blk_execute_rq EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6495ca5d skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x649aec55 __icmp_send +EXPORT_SYMBOL vmlinux 0x649f0845 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64baee50 neigh_for_each EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bf2f5e vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x64c6c165 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x64d2b151 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x64d73185 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x64f03faa file_path -EXPORT_SYMBOL vmlinux 0x64fcb758 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x64f8f047 misc_deregister +EXPORT_SYMBOL vmlinux 0x64fab58a serio_close +EXPORT_SYMBOL vmlinux 0x65009acb d_prune_aliases EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65141b82 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651e0c1b skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x651f3103 ether_setup EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652a5b09 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x652baf46 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x6527b707 nd_btt_version EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652fd6cc phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x6534bd76 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65443ad4 param_set_hexint EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x6546c27a input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x654d3658 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x65515832 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x65595e7d csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x6579c9a8 rproc_del +EXPORT_SYMBOL vmlinux 0x657b0620 input_free_device +EXPORT_SYMBOL vmlinux 0x65881c67 skb_copy EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658f5b76 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x659c695e blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x659f4faf vfs_statfs -EXPORT_SYMBOL vmlinux 0x65a946ee deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x65ae9b29 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x65b35971 acpi_notifier_call_chain EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x65bff9d7 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x65ce6a5f d_add +EXPORT_SYMBOL vmlinux 0x65bc3a2e nf_ct_attach EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dfc413 of_device_register EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x660a2439 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x6615387a sg_miter_start +EXPORT_SYMBOL vmlinux 0x65f440ff fwnode_iomap EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x6626ffc2 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x662e8c34 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x664a9b8b eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x665a1912 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x6650cbd2 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x66581650 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x6659d27c mr_mfc_find_any_parent 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 0x6668771b get_user_pages -EXPORT_SYMBOL vmlinux 0x666c4fc0 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6671e014 mntput EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6681d541 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x6682e103 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x66899930 blk_put_queue -EXPORT_SYMBOL vmlinux 0x668a3720 console_stop +EXPORT_SYMBOL vmlinux 0x668825af elv_rb_former_request EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x66905751 sk_stream_error -EXPORT_SYMBOL vmlinux 0x6698ff09 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x6690e206 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x66a90651 vfs_setpos +EXPORT_SYMBOL vmlinux 0x66a404dc get_tree_single +EXPORT_SYMBOL vmlinux 0x66a51d3d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x66addc81 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b0efaa inode_to_bdi EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66d1f25c mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x66e0d4e8 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x66f3a840 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x6711adbf netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x672b322f proc_mkdir -EXPORT_SYMBOL vmlinux 0x672f57e8 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x66c3d247 import_iovec +EXPORT_SYMBOL vmlinux 0x66e4e8f9 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x6718ba32 seq_pad +EXPORT_SYMBOL vmlinux 0x671bff23 dquot_get_state +EXPORT_SYMBOL vmlinux 0x6739961f pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674e88d3 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x675bde2c skb_dequeue -EXPORT_SYMBOL vmlinux 0x6779c832 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x677cf873 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x678a9455 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x67600321 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x676fbb7b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x677e04ed sock_create EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x679ed241 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x67a2a472 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x67a41ec8 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x67b008c1 clear_inode +EXPORT_SYMBOL vmlinux 0x678f8be9 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x67971c50 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x67a6deeb pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x67ae3315 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x67ae86fd inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67d0d23e mdiobb_read -EXPORT_SYMBOL vmlinux 0x67d71079 pci_dev_put -EXPORT_SYMBOL vmlinux 0x67e24ced vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x67f0111f xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x67f27749 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x6803f859 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6808e3b4 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x681f1f5a dput -EXPORT_SYMBOL vmlinux 0x68436fb8 napi_build_skb -EXPORT_SYMBOL vmlinux 0x685211bc inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x686d5b6d input_register_handle +EXPORT_SYMBOL vmlinux 0x67cf3afe ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x67d900fc __register_chrdev +EXPORT_SYMBOL vmlinux 0x67daa0fb eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x67ee34a2 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x68018184 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x680718c0 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x6816339c of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x68225fb0 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x68397b68 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x68618b47 rproc_detach +EXPORT_SYMBOL vmlinux 0x6863e7a9 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x68789f22 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687cde1d dquot_initialize -EXPORT_SYMBOL vmlinux 0x6888d139 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x688f15fc dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x68961f01 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x689816bf serio_bus -EXPORT_SYMBOL vmlinux 0x689a3b45 make_kgid -EXPORT_SYMBOL vmlinux 0x68ba9ed9 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x68cdc0fe proc_set_size -EXPORT_SYMBOL vmlinux 0x68e540fd md_done_sync -EXPORT_SYMBOL vmlinux 0x68e560b3 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x68f09c53 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x68ae010c amba_request_regions +EXPORT_SYMBOL vmlinux 0x68c2f205 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x68c3169b twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x68e25a5a __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69112f6a ram_aops -EXPORT_SYMBOL vmlinux 0x6916a779 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x6939f638 vmap -EXPORT_SYMBOL vmlinux 0x69470f5c find_inode_nowait -EXPORT_SYMBOL vmlinux 0x69591b46 __netif_schedule +EXPORT_SYMBOL vmlinux 0x69142acc thaw_bdev +EXPORT_SYMBOL vmlinux 0x695adaa1 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x6960f13c param_ops_ulong EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x6975eba0 of_graph_is_present -EXPORT_SYMBOL vmlinux 0x697b490b tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6983b6d1 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x69c64d34 input_set_keycode -EXPORT_SYMBOL vmlinux 0x69c67c65 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x697ffe04 tty_port_open +EXPORT_SYMBOL vmlinux 0x69c2912f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x69d9c773 sk_stream_error EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e16fc4 fman_port_bind -EXPORT_SYMBOL vmlinux 0x69e77a48 key_alloc -EXPORT_SYMBOL vmlinux 0x69e865a8 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x69eb0578 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6a014670 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0416a4 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x6a175db2 kobject_init +EXPORT_SYMBOL vmlinux 0x6a1a5b74 sock_no_accept +EXPORT_SYMBOL vmlinux 0x6a1e183d page_symlink +EXPORT_SYMBOL vmlinux 0x6a28f4c8 config_item_get +EXPORT_SYMBOL vmlinux 0x6a32a084 deactivate_super +EXPORT_SYMBOL vmlinux 0x6a357929 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a42ec78 inet_csk_accept EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a582687 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5f908c scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x6a5f27a2 insert_inode_locked EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60d6da amba_device_unregister -EXPORT_SYMBOL vmlinux 0x6a613740 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x6a6858c0 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6a637b10 PageMovable +EXPORT_SYMBOL vmlinux 0x6a67ccf7 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a8d33ff fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x6a752a29 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a9488a2 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x6aa79e2f blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x6aac4506 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x6aac73c3 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x6aad4a6c fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x6ac2dd6d ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x6adb3cf5 d_splice_alias +EXPORT_SYMBOL vmlinux 0x6a90c8d8 mmc_erase +EXPORT_SYMBOL vmlinux 0x6a918015 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x6aa8d184 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x6acaa800 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x6adbcc57 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6afb543c dquot_disable +EXPORT_SYMBOL vmlinux 0x6afdf18b xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6b0673be d_exact_alias EXPORT_SYMBOL vmlinux 0x6b079231 alt_cb_patch_nops -EXPORT_SYMBOL vmlinux 0x6b129fef qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3964a9 drop_nlink -EXPORT_SYMBOL vmlinux 0x6b44b338 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x6b3dcc18 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x6b4e5bad input_allocate_device EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b64837f __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x6b7d7069 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x6b8395f0 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x6b758d03 km_report +EXPORT_SYMBOL vmlinux 0x6b7b6811 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x6b80dd99 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x6b822d44 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b89e547 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b94888d security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x6baaf8e3 mdiobus_read -EXPORT_SYMBOL vmlinux 0x6bba8ce6 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x6b918920 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x6b9401c3 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x6ba95937 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x6bb082f8 get_inode_acl EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc74457 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bd4d1f8 security_path_mknod EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bed06b4 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x6bef8756 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6be9aac7 vme_dma_list_free EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bf29113 phy_attached_info -EXPORT_SYMBOL vmlinux 0x6bfe1c0e simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x6c14b586 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x6bf94a89 crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c23e932 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c270355 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x6c403c65 put_fs_context +EXPORT_SYMBOL vmlinux 0x6c416c2f lock_sock_nested +EXPORT_SYMBOL vmlinux 0x6c45b4d2 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6ba997 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x6c6ac6fd tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c861162 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x6c8fc7c5 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x6ca101c0 scsi_done_direct EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cc192cc sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x6cc2a7bc __of_get_address -EXPORT_SYMBOL vmlinux 0x6ce8fc79 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x6cefa5ae get_tree_keyed +EXPORT_SYMBOL vmlinux 0x6cbeea2e kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x6cd6512f __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6ce50781 tty_name EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf7a03f tso_build_data +EXPORT_SYMBOL vmlinux 0x6d01a84c blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6d1338ca unmap_mapping_range EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d1d398c pipe_unlock EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2c2139 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x6d2e765b input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x6d3c9aa0 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x6d4bfa5b vfs_tmpfile_open -EXPORT_SYMBOL vmlinux 0x6d51f688 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6d2cf1c1 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x6d42ac96 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x6d49684d mdiobb_read +EXPORT_SYMBOL vmlinux 0x6d4a5b79 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x6d531927 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d6d0568 gro_cells_init -EXPORT_SYMBOL vmlinux 0x6d7150aa skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x6d68e819 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7dc094 dev_uc_del -EXPORT_SYMBOL vmlinux 0x6d7e7e8d fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x6d8b72f3 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x6da28297 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x6d9e8c5a tcf_register_action +EXPORT_SYMBOL vmlinux 0x6da0f458 skb_dequeue EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dadfd73 cdev_device_del EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbedadf dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc5d777 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x6dcbb75d tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x6dc5dd35 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6ddcc419 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x6dee1014 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x6dd78ba1 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x6dd7b1ac eth_get_headlen EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e15575d udp_prot -EXPORT_SYMBOL vmlinux 0x6e1645f4 param_get_string -EXPORT_SYMBOL vmlinux 0x6e1d0a94 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x6e1e7053 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x6e3e06a5 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x6e47f7f1 empty_aops -EXPORT_SYMBOL vmlinux 0x6e550318 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x6df1f08e devm_of_iomap +EXPORT_SYMBOL vmlinux 0x6e053423 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x6e0d4c7e vm_insert_page +EXPORT_SYMBOL vmlinux 0x6e12f058 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x6e13880e genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x6e30f4f2 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x6e480b93 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x6e48244e backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x6e4d8aaf invalidate_disk EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5d47c2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x6e5d0c89 register_netdevice +EXPORT_SYMBOL vmlinux 0x6e624ce2 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x6e662ed6 tcp_child_process EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e72b584 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x6e7a5cc6 acpi_dev_uid_to_integer -EXPORT_SYMBOL vmlinux 0x6e7e247b rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x6e910dfa __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x6e943925 pci_get_slot +EXPORT_SYMBOL vmlinux 0x6e786b4a nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb5a314 serio_close -EXPORT_SYMBOL vmlinux 0x6eb92f0b km_policy_notify -EXPORT_SYMBOL vmlinux 0x6ebeb7d3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x6ec0f979 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x6edb5236 kill_pid -EXPORT_SYMBOL vmlinux 0x6ee3c301 simple_open +EXPORT_SYMBOL vmlinux 0x6eb0265e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x6eb614d5 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x6eb77489 cdev_del +EXPORT_SYMBOL vmlinux 0x6ebacff0 __netif_schedule +EXPORT_SYMBOL vmlinux 0x6ecc26ee finalize_exec +EXPORT_SYMBOL vmlinux 0x6ecc91cd of_device_register +EXPORT_SYMBOL vmlinux 0x6ed4fa70 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x6eebd7a7 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6ef1740e from_kgid_munged -EXPORT_SYMBOL vmlinux 0x6ef80fe0 sock_no_bind -EXPORT_SYMBOL vmlinux 0x6ef99734 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x6f032aa2 rpmh_write -EXPORT_SYMBOL vmlinux 0x6f12c54f netif_device_attach +EXPORT_SYMBOL vmlinux 0x6efe66cd netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x6efe99c8 inet_offloads EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f38b997 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x6f3c1b3a mmc_request_done +EXPORT_SYMBOL vmlinux 0x6f253575 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x6f2b3473 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x6f2e357e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x6f3f167b of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f468522 __getblk_gfp EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r -EXPORT_SYMBOL vmlinux 0x6f4de57d dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f63a15d netdev_features_change -EXPORT_SYMBOL vmlinux 0x6f696c32 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x6f7c0014 device_add_disk -EXPORT_SYMBOL vmlinux 0x6f86fc22 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x6f8e4ade i2c_transfer +EXPORT_SYMBOL vmlinux 0x6f6fccad __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x6f8e902e phy_aneg_done EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f97aa89 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fbd7aa1 genl_notify -EXPORT_SYMBOL vmlinux 0x6fc10920 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x6fbd4025 noop_dirty_folio EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd14d21 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x6fd287a0 bdi_alloc +EXPORT_SYMBOL vmlinux 0x6fd13454 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x6fd45e20 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x6fd672b6 has_capability_noaudit EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched -EXPORT_SYMBOL vmlinux 0x6ffad82a netif_device_detach +EXPORT_SYMBOL vmlinux 0x6ffe3345 set_bh_page EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x700ca44f tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x700dccd5 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x7022c686 input_allocate_device +EXPORT_SYMBOL vmlinux 0x701bb4cb tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x701ca7d7 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7025d717 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x704c7ab9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x704d12d5 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x704e7667 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x7051b81d padata_free -EXPORT_SYMBOL vmlinux 0x70585652 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x70661c5f genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x708a7caa filemap_flush -EXPORT_SYMBOL vmlinux 0x7091015a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x703cfd25 request_key_tag +EXPORT_SYMBOL vmlinux 0x70482115 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x706a24c3 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7076e556 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7092020a pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x709ddaf6 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x70a3fbd3 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x70ad64e4 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b1c535 phy_connect -EXPORT_SYMBOL vmlinux 0x70bb8fb2 dump_align -EXPORT_SYMBOL vmlinux 0x70c69115 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x70c8f690 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70e7bf78 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x70f59431 md_integrity_register -EXPORT_SYMBOL vmlinux 0x7103dc4b cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x71151615 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x7124553d phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x70f150d0 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x70f4085e phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x71038096 param_ops_int +EXPORT_SYMBOL vmlinux 0x7103b4b5 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x711191eb blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x711384a7 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x711577f3 mark_page_accessed EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7133a5df scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x712e2d66 dqput +EXPORT_SYMBOL vmlinux 0x713d1238 registered_fb EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x71585fae d_drop EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x716a8d2e __devm_request_region +EXPORT_SYMBOL vmlinux 0x715c4e6f acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x7161cbc1 pci_pme_active EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x719d1481 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x719cf5cc twl6040_power +EXPORT_SYMBOL vmlinux 0x719d9bb5 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x71a36b48 block_write_full_page EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bea7df skb_dump -EXPORT_SYMBOL vmlinux 0x71cb574e ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x71aa3cae get_tree_bdev +EXPORT_SYMBOL vmlinux 0x71bce32c tcp_mmap +EXPORT_SYMBOL vmlinux 0x71c4bae2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x71d01708 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x71dc78cd flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71e84f05 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x71eec79b load_nls -EXPORT_SYMBOL vmlinux 0x71f39012 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x71fdb238 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x71eedd8c iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x71f45726 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x71f700c5 filemap_flush +EXPORT_SYMBOL vmlinux 0x71f90550 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x71fb5668 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x7204946a rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x721aa355 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x72230e4a scm_detach_fds -EXPORT_SYMBOL vmlinux 0x72234e6f param_set_hexint -EXPORT_SYMBOL vmlinux 0x7242be77 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x725b135b unlock_rename -EXPORT_SYMBOL vmlinux 0x725f0c67 input_register_handler +EXPORT_SYMBOL vmlinux 0x72118e93 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x721b5f35 sk_capable +EXPORT_SYMBOL vmlinux 0x721d0c33 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x72306892 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x72338d5b freeze_bdev +EXPORT_SYMBOL vmlinux 0x72354ac1 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x72461279 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x7269bb60 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x727de424 mem_section -EXPORT_SYMBOL vmlinux 0x72a17a11 skb_queue_head +EXPORT_SYMBOL vmlinux 0x728f84b1 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x7295b20f nd_device_notify EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72a7d41a kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x72b05794 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72d1c058 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x72c1ec79 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x72d07769 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x72dc10e2 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x7302fed8 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7312fa57 simple_nosetlease 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 0x7326929d netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x732f0ff8 read_cache_page -EXPORT_SYMBOL vmlinux 0x7352f7ad sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7351f191 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x73554189 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x735b7162 iov_iter_zero EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736cf833 end_page_writeback +EXPORT_SYMBOL vmlinux 0x736dca63 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73969860 sk_wait_data EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a6fc6e inet6_bind +EXPORT_SYMBOL vmlinux 0x73a29e24 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x73a2e058 param_ops_bool +EXPORT_SYMBOL vmlinux 0x73a5a261 scsi_block_requests EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73ad6162 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x73bb12ab tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x73c40c48 dma_map_resource -EXPORT_SYMBOL vmlinux 0x73c7c608 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x73d55ae6 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x73e36569 neigh_destroy -EXPORT_SYMBOL vmlinux 0x73e3f6a0 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x73ef53fa md_write_start -EXPORT_SYMBOL vmlinux 0x73f2c247 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x740d67c7 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x740f185d inet6_protos +EXPORT_SYMBOL vmlinux 0x73cb37f0 of_device_alloc +EXPORT_SYMBOL vmlinux 0x73df71c3 inode_insert5 +EXPORT_SYMBOL vmlinux 0x73e64e94 napi_disable +EXPORT_SYMBOL vmlinux 0x73f4b41d acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x740877fd processors EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x74182119 truncate_setsize EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742a720f page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x743370e7 tcp_mmap -EXPORT_SYMBOL vmlinux 0x743a1c1d md_reload_sb +EXPORT_SYMBOL vmlinux 0x7430d11f bd_abort_claiming EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x7446e6f4 devm_free_irq -EXPORT_SYMBOL vmlinux 0x744af6ee ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x744d7e20 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x743ff3de pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x74528d4c dev_disable_lro EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7469c2cb skb_clone +EXPORT_SYMBOL vmlinux 0x746a1c69 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x74739dda block_read_full_folio EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7480d96a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7481e7c6 sock_edemux +EXPORT_SYMBOL vmlinux 0x7482333a input_get_poll_interval EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74846d2a dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x7489bf7a vc_resize -EXPORT_SYMBOL vmlinux 0x74b21c12 dma_set_mask +EXPORT_SYMBOL vmlinux 0x74b5619c sk_mc_loop EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bbf7b7 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x74bfefd4 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cd3507 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x74d9846d phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x74db19c4 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x74c9ba7e generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x74da4532 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x74db0df3 sock_sendmsg EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7511b31d xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x75415441 sync_filesystem -EXPORT_SYMBOL vmlinux 0x75532ab6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x74ea45bf dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x75353a45 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x753da168 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x7552e874 dev_addr_add EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7579e97a pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x7580f028 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x75844681 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7577629b jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7588ea50 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x758e2f05 unregister_console -EXPORT_SYMBOL vmlinux 0x759a130c dev_mc_sync -EXPORT_SYMBOL vmlinux 0x759d4f3e jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7588636a is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x758bab6d tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x7597fd9e user_revoke EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bf3de8 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x75c0b212 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x75d05c7e of_device_alloc EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e36c34 napi_complete_done -EXPORT_SYMBOL vmlinux 0x75e73d46 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x75e80829 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x75feb78f clk_add_alias -EXPORT_SYMBOL vmlinux 0x76032377 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x76045572 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x75ee8cfc generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760dbe04 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x760ac195 set_anon_super EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x762bc70f fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x762c73dc follow_down_one -EXPORT_SYMBOL vmlinux 0x76399968 tcp_req_err +EXPORT_SYMBOL vmlinux 0x762800c0 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x763a4876 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x763e6d97 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x76400028 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x764626ec tcp_release_cb EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765348dd xfrm_register_km +EXPORT_SYMBOL vmlinux 0x764a1617 pci_disable_device EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7661033d jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x76685ce0 devfreq_add_device EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76745544 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x7671ae29 ipv4_specific +EXPORT_SYMBOL vmlinux 0x7679a296 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x76812637 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x7681a648 locks_delete_block EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x768ea48d rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x768cd272 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x768d11f0 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x7699757b xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x7699dff6 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ac4007 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x76b3defe scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x76b6616e nd_device_unregister -EXPORT_SYMBOL vmlinux 0x76bbd4a2 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x76cef93d vm_mmap +EXPORT_SYMBOL vmlinux 0x76a262bb dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x76a3c065 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x76a75cd5 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d51caf drop_super -EXPORT_SYMBOL vmlinux 0x76eeb67e page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x76e1a136 fman_register_intr +EXPORT_SYMBOL vmlinux 0x76e5b12f ilookup5 EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x7704a2ef inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x771b3b25 devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x77252ebf register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x772ccb1d rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x76f3d46a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x77097469 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x7721d1ee inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773b7c51 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x7750fa9d sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x77532852 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x77694b15 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x7780f0c9 dquot_transfer -EXPORT_SYMBOL vmlinux 0x778fb0fd mark_page_accessed +EXPORT_SYMBOL vmlinux 0x775eeb1e of_get_property +EXPORT_SYMBOL vmlinux 0x77618040 input_set_keycode +EXPORT_SYMBOL vmlinux 0x776cd623 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x77718ac6 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77a0382e generic_ro_fops -EXPORT_SYMBOL vmlinux 0x77b6f9e0 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x7798e1dc rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x77a0d8d9 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x77bbf2e0 vme_master_request EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c96f71 mii_link_ok -EXPORT_SYMBOL vmlinux 0x77dc4ef2 proc_symlink -EXPORT_SYMBOL vmlinux 0x77ddcae7 path_put -EXPORT_SYMBOL vmlinux 0x77e21bb8 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x77caa675 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x77d49cd4 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x77db4851 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77fa8a86 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x77fd2bca dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x77ff06b4 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x781e4d7d tty_port_close_start -EXPORT_SYMBOL vmlinux 0x782ecd12 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x78348397 phy_attached_print +EXPORT_SYMBOL vmlinux 0x781396f5 passthru_features_check +EXPORT_SYMBOL vmlinux 0x7814edb0 kill_block_super +EXPORT_SYMBOL vmlinux 0x78214322 init_special_inode +EXPORT_SYMBOL vmlinux 0x782adf42 i2c_transfer +EXPORT_SYMBOL vmlinux 0x78336b90 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x7838f872 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x783dab52 add_to_pipe EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784a17dd I_BDEV -EXPORT_SYMBOL vmlinux 0x784e40a5 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x7864108f of_node_get -EXPORT_SYMBOL vmlinux 0x78894b85 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x788bfc5c tcp_recv_skb -EXPORT_SYMBOL vmlinux 0x788c67e7 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x7848cad4 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x78499f3d sock_no_mmap +EXPORT_SYMBOL vmlinux 0x784b60ec qdisc_reset +EXPORT_SYMBOL vmlinux 0x7864f525 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x78678e71 to_nd_dax +EXPORT_SYMBOL vmlinux 0x786d6972 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7878e5bf xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x7879241d unregister_key_type +EXPORT_SYMBOL vmlinux 0x7879ea5c neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x787e78ab mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x7880ae64 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x7885f146 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7888fc9b mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x788e0466 request_key_rcu EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b2e311 nf_getsockopt EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bc0e4f netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x78c3cb42 pci_release_regions -EXPORT_SYMBOL vmlinux 0x78de9292 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x78b8e1fa tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x78baaf1f udp_ioctl +EXPORT_SYMBOL vmlinux 0x78d8467c register_cdrom +EXPORT_SYMBOL vmlinux 0x78db6386 block_dirty_folio EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f4445c md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x78f72d13 posix_test_lock -EXPORT_SYMBOL vmlinux 0x78f89b50 param_ops_long -EXPORT_SYMBOL vmlinux 0x78f9c2d4 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x7910f043 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x791241ff write_cache_pages -EXPORT_SYMBOL vmlinux 0x791a4ca6 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x791c6727 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x793566d6 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x79419b8a xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x794a792e bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x7975e089 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x78ed4f12 pci_restore_state +EXPORT_SYMBOL vmlinux 0x78f41934 sock_release +EXPORT_SYMBOL vmlinux 0x79143392 param_get_ullong +EXPORT_SYMBOL vmlinux 0x792f1339 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x793002b4 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x793064e3 netdev_err +EXPORT_SYMBOL vmlinux 0x794e5a95 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7951c455 vfs_symlink +EXPORT_SYMBOL vmlinux 0x796ca943 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x7976b4c8 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x797daf01 param_ops_hexint EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7986576c dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x7987d6cd locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x799332a3 phy_attached_print +EXPORT_SYMBOL vmlinux 0x79964ee8 genphy_read_abilities EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79b25d15 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x79b32811 do_SAK -EXPORT_SYMBOL vmlinux 0x79cde356 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x79d1f78e set_capacity -EXPORT_SYMBOL vmlinux 0x79ef4cc5 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x79fc52c2 flush_signals -EXPORT_SYMBOL vmlinux 0x7a02fee9 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x79b85b4c dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x79cd111f dquot_free_inode +EXPORT_SYMBOL vmlinux 0x79dfe0f2 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x79fc42d6 dquot_file_open EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a224eae of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x7a2a0472 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7a2711bf cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a2b77da igrab EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a33b2d6 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7a3b9d19 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x7a417968 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a6f1b05 scsi_print_command -EXPORT_SYMBOL vmlinux 0x7a918f2f jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x7a9492a1 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x7a60b134 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x7a76257e dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7a80335a pnp_start_dev +EXPORT_SYMBOL vmlinux 0x7a8207ac __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7a841318 unlock_page +EXPORT_SYMBOL vmlinux 0x7a871d0b sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aca86f2 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x7ab3e137 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x7abf1c69 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7ac0a49b __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7acc0d6b __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7accc3a6 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad3317c __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7addc7d4 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7ae8238d iget5_locked -EXPORT_SYMBOL vmlinux 0x7af06e26 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x7af9f269 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x7afa770a tty_port_put +EXPORT_SYMBOL vmlinux 0x7aee0535 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x7af6f3a9 t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b11cc93 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7b1206cc dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7b25812e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7b28c0b5 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3df54a flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x7b4b18c1 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b507757 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7b53b7b6 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b61831f tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7b68e965 seq_puts EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8a8e75 bio_reset -EXPORT_SYMBOL vmlinux 0x7ba2f2a3 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7b8f3c97 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7baa8517 pm860x_reg_write EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbbacf0 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbe50f8 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x7bc65036 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x7bc7ff25 unpin_user_page -EXPORT_SYMBOL vmlinux 0x7bc80577 vfs_get_link -EXPORT_SYMBOL vmlinux 0x7be3018b __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x7c04a5dc jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x7c0bc3a1 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x7c166d88 generic_write_end +EXPORT_SYMBOL vmlinux 0x7bc60a4c skb_free_datagram +EXPORT_SYMBOL vmlinux 0x7bf61195 audit_log +EXPORT_SYMBOL vmlinux 0x7c03df59 textsearch_register +EXPORT_SYMBOL vmlinux 0x7c0d40f7 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1bd68d dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x7c1f29f8 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x7c273179 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7c352677 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7c444c29 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c59bbf3 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x7c6a05a2 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x7c6c0c64 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x7c89780b inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7c8e7b06 ip6_output +EXPORT_SYMBOL vmlinux 0x7c5637c1 to_ndd +EXPORT_SYMBOL vmlinux 0x7c74dbfc devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x7c7b2e34 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x7c9b3262 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7ca6a58b textsearch_unregister +EXPORT_SYMBOL vmlinux 0x7ca9087a of_phy_find_device +EXPORT_SYMBOL vmlinux 0x7cb1a52c scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x7cb424b6 blk_queue_io_min EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7cdbcf9c serio_interrupt EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ce7580f pci_irq_vector -EXPORT_SYMBOL vmlinux 0x7cea02f0 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7cffe0a7 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7d00c0df free_cgroup_ns EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d11c9f1 current_in_userns EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d18262c pci_enable_wake -EXPORT_SYMBOL vmlinux 0x7d1a71ab __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x7d21515e inode_init_once +EXPORT_SYMBOL vmlinux 0x7d1e368c scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7d24217a mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d39ea6f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7d4058e2 __serio_register_driver EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d5fd89f d_genocide -EXPORT_SYMBOL vmlinux 0x7d73bbda tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x7d703c6b sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d8b5ab3 input_flush_device -EXPORT_SYMBOL vmlinux 0x7d992352 __ps2_command -EXPORT_SYMBOL vmlinux 0x7d9a4c1f fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x7d9f5b10 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7d9a39e7 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x7d9d83d6 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7da98ec7 dev_get_flags EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db6c9f2 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7daedf4b vfs_llseek EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd0fecd get_watch_queue +EXPORT_SYMBOL vmlinux 0x7dde612d __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x7dde93d2 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7de64ed3 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x7df9ed5e phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x7e03434a devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e134f84 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x7e23ed28 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7e1fa933 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x7e23625d iov_iter_get_pages_alloc2 EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3e08e6 vme_irq_request -EXPORT_SYMBOL vmlinux 0x7e5a7468 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x7e3cc5ec vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x7e442fd5 page_get_link EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e652bbf pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x7e67f281 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x7e77289e d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x7e7c5c55 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x7e93f9eb add_watch_to_object -EXPORT_SYMBOL vmlinux 0x7e9a62f3 seq_lseek +EXPORT_SYMBOL vmlinux 0x7e65be0e unix_attach_fds +EXPORT_SYMBOL vmlinux 0x7e797c9f sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7e908eba netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7ec04839 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x7ecc9bdc freezing_slow_path -EXPORT_SYMBOL vmlinux 0x7eec049e sock_i_ino +EXPORT_SYMBOL vmlinux 0x7eb8f3a5 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x7ebdee5c irq_set_chip +EXPORT_SYMBOL vmlinux 0x7ebf4882 napi_build_skb +EXPORT_SYMBOL vmlinux 0x7ecbb7fe tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x7ed0c429 icmp6_send +EXPORT_SYMBOL vmlinux 0x7edecad3 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7eea8821 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7ef2cbaf __wait_on_buffer EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ef75327 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x7eff9db2 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f08df40 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x7f1741c8 config_item_get -EXPORT_SYMBOL vmlinux 0x7f1d7221 scsi_print_result -EXPORT_SYMBOL vmlinux 0x7f1f31c9 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x7f05eb9a xfrm_state_free +EXPORT_SYMBOL vmlinux 0x7f0e7563 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x7f100f36 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x7f10f444 phy_write_paged +EXPORT_SYMBOL vmlinux 0x7f1d5a0c ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3e5f8f pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x7f41856d kset_register -EXPORT_SYMBOL vmlinux 0x7f42a00c security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x7f4c3700 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7f333db5 simple_getattr +EXPORT_SYMBOL vmlinux 0x7f4376f8 pci_get_device +EXPORT_SYMBOL vmlinux 0x7f4b545c param_get_byte +EXPORT_SYMBOL vmlinux 0x7f4bd48d eth_mac_addr +EXPORT_SYMBOL vmlinux 0x7f4f70f5 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5d2e82 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f6ad989 md_flush_request +EXPORT_SYMBOL vmlinux 0x7f65ba4c path_put +EXPORT_SYMBOL vmlinux 0x7f66ee08 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x7f75f94d inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f933184 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7f8fac18 inet_add_offload +EXPORT_SYMBOL vmlinux 0x7f95a271 km_new_mapping +EXPORT_SYMBOL vmlinux 0x7fa15513 sock_create_lite +EXPORT_SYMBOL vmlinux 0x7fa9c3bd unregister_binfmt +EXPORT_SYMBOL vmlinux 0x7faa1aad skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x7faa5f9e inode_io_list_del +EXPORT_SYMBOL vmlinux 0x7fb96a3a bdi_put +EXPORT_SYMBOL vmlinux 0x7fc73675 inet6_bind EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd61795 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x7fda22c6 param_set_long EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe172fb tty_port_hangup EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe3e52b begin_new_exec -EXPORT_SYMBOL vmlinux 0x7fe64587 audit_log_start -EXPORT_SYMBOL vmlinux 0x7ff1a92f elv_rb_del -EXPORT_SYMBOL vmlinux 0x8001159b sock_edemux -EXPORT_SYMBOL vmlinux 0x80036bf1 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x801280a3 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x803055ca kernel_getpeername +EXPORT_SYMBOL vmlinux 0x8000eebb mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x802be774 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x803feec7 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x8043005a pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x8055056e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x80406354 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x80712bd7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x80749688 seq_dentry EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x807bfd0c open_exec EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x8090b9ba unregister_md_personality EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809e2f5e dev_mc_flush EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80ac315c skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x80ae726b scsi_partsize -EXPORT_SYMBOL vmlinux 0x80baba4d devfreq_update_target +EXPORT_SYMBOL vmlinux 0x80ae109b security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x80ba7765 device_get_mac_address EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d15bcd fman_port_get_device EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e2d979 mntget EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80eea636 netdev_alert +EXPORT_SYMBOL vmlinux 0x80ec509c fman_reset_mac +EXPORT_SYMBOL vmlinux 0x80ece1b6 vfs_getattr EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8118632f d_set_d_op EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811f3675 fman_bind -EXPORT_SYMBOL vmlinux 0x812ed137 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x81348d24 tty_port_init -EXPORT_SYMBOL vmlinux 0x814a786c pnp_device_attach -EXPORT_SYMBOL vmlinux 0x814c1188 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x81513918 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x812640c6 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x81489846 migrate_vma_setup EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81678500 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x816dae69 __register_binfmt -EXPORT_SYMBOL vmlinux 0x8183baaf crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x816abb57 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x8179bce6 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x817a3585 single_open +EXPORT_SYMBOL vmlinux 0x817d0127 ipv6_find_hdr 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 0x8191ddb2 pci_write_config_word EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81aa08cc phy_error EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81c214ab fd_install -EXPORT_SYMBOL vmlinux 0x81c87b21 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x81b77d0e vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x81c0bf36 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x81c15e69 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x81cc6669 f_setown EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x820c6fea __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x820fbd88 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x8235f09b ip_check_defrag +EXPORT_SYMBOL vmlinux 0x8207115f unload_nls +EXPORT_SYMBOL vmlinux 0x8235c70c pnp_release_card_device EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x8242b626 regset_get_alloc -EXPORT_SYMBOL vmlinux 0x8243015d pnp_device_detach EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x825a8288 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x825ec32d twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8277e564 netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0x827e33a9 elv_rb_find -EXPORT_SYMBOL vmlinux 0x8286611a truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x82899c72 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x82bcc9f5 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x8263dede devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x827040e1 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x827c39b5 generic_fadvise +EXPORT_SYMBOL vmlinux 0x827c96fb dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x82851b6b rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x82c84206 __lock_buffer EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82ce5603 ps2_command -EXPORT_SYMBOL vmlinux 0x82ce92c2 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x82cfe9cf iov_iter_init +EXPORT_SYMBOL vmlinux 0x82d522a9 make_kgid +EXPORT_SYMBOL vmlinux 0x82ea5a4d neigh_connected_output EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x8313051a ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x83286e7e netlink_set_err -EXPORT_SYMBOL vmlinux 0x834c3b7f param_ops_bint +EXPORT_SYMBOL vmlinux 0x82ef8cea devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x82fda123 dev_mc_init +EXPORT_SYMBOL vmlinux 0x83009a32 param_get_int +EXPORT_SYMBOL vmlinux 0x8331c0d3 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x8344042d dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8350ac1f inet6_register_protosw EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x836a94d7 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override -EXPORT_SYMBOL vmlinux 0x837a5dcb param_set_ushort -EXPORT_SYMBOL vmlinux 0x837ddbb4 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x8389122d flow_rule_alloc EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83954d6c phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x83ab4ce6 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x83ccd2c2 seq_path -EXPORT_SYMBOL vmlinux 0x83d0b3f7 netlink_capable -EXPORT_SYMBOL vmlinux 0x83e38772 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x84152d0f tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x84194a37 skb_store_bits +EXPORT_SYMBOL vmlinux 0x839de4c4 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x83aa9349 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x83b2d51b scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x83c5e378 inet_release +EXPORT_SYMBOL vmlinux 0x83ddf3ee of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x83fb8354 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x8443daba of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x84391365 elv_rb_del +EXPORT_SYMBOL vmlinux 0x844a5c55 file_modified +EXPORT_SYMBOL vmlinux 0x84517d79 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x84550e3c kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x845cead2 tcp_close -EXPORT_SYMBOL vmlinux 0x8474a503 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x84646ea3 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x84680006 dquot_release +EXPORT_SYMBOL vmlinux 0x847542af udp_pre_connect +EXPORT_SYMBOL vmlinux 0x8478754f scsi_device_resume EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84819ce6 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x8482229e tcf_qevent_init EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8489d7b5 cdrom_mode_select EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84a991b2 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x84abd5f2 devm_rproc_add -EXPORT_SYMBOL vmlinux 0x84b6a99f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x84a1a83e dump_align +EXPORT_SYMBOL vmlinux 0x84b6e94b phy_read_paged EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c4be5e dcache_dir_close -EXPORT_SYMBOL vmlinux 0x84d983b7 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x84e3440b km_new_mapping -EXPORT_SYMBOL vmlinux 0x84e96813 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x850aed1f mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x84cd4fe3 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x84ce226f netif_carrier_off +EXPORT_SYMBOL vmlinux 0x84e77817 inet_listen +EXPORT_SYMBOL vmlinux 0x84e99047 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x850fa535 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x851a5537 scsi_device_get EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x8525c8d3 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x852bf0a1 bio_chain -EXPORT_SYMBOL vmlinux 0x85379c96 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x853e6137 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x854855f4 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x8550f45e phy_connect_direct +EXPORT_SYMBOL vmlinux 0x8521776a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x85286660 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x85331654 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x8550aa9c sock_i_uid +EXPORT_SYMBOL vmlinux 0x8554dcb3 block_commit_write EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856ec38e __scm_destroy -EXPORT_SYMBOL vmlinux 0x8574febb kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x8571c9aa blk_finish_plug +EXPORT_SYMBOL vmlinux 0x857b8e07 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x857e45c7 kill_fasync +EXPORT_SYMBOL vmlinux 0x8584c916 pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8595b937 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x859d6483 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x85a3ed35 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c7cfed ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e653d9 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85fe32c2 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x8600a547 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x860e06c2 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x86136335 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x861de0f8 nf_log_register +EXPORT_SYMBOL vmlinux 0x85fdfa9a xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863cc1eb page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x866173b6 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x864fac96 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x86591718 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x8662c51f get_tree_keyed +EXPORT_SYMBOL vmlinux 0x866678ae uart_write_wakeup EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x8674b618 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x867cc53b bio_split +EXPORT_SYMBOL vmlinux 0x866adab2 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86b692d2 security_sock_graft +EXPORT_SYMBOL vmlinux 0x86a0e84f seq_path +EXPORT_SYMBOL vmlinux 0x86a59709 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x86c48b74 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x86c60152 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x86ca4c1a __phy_write_mmd EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86de2722 param_set_uint -EXPORT_SYMBOL vmlinux 0x86de43b0 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred -EXPORT_SYMBOL vmlinux 0x86ef3cc8 ata_print_version -EXPORT_SYMBOL vmlinux 0x86f3aa55 fqdir_init -EXPORT_SYMBOL vmlinux 0x86f79176 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870bf08f blk_sync_queue -EXPORT_SYMBOL vmlinux 0x87100b83 fqdir_exit -EXPORT_SYMBOL vmlinux 0x871d2960 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x87387784 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x873bd558 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x8758f75f pnp_get_resource +EXPORT_SYMBOL vmlinux 0x86fc14fc __skb_get_hash +EXPORT_SYMBOL vmlinux 0x86ffe5ea serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x87056e31 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x8710aa7d __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x871305cd skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x87222d84 param_set_byte +EXPORT_SYMBOL vmlinux 0x8747e228 d_instantiate_new EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87678f3d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x8775ee7b fb_blank +EXPORT_SYMBOL vmlinux 0x8776d33a blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x8780de3f tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x878926e8 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x8789a9cc put_disk -EXPORT_SYMBOL vmlinux 0x8791bfd0 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x8791f541 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x8793c414 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x8798fb14 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b5ca71 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x87bf9285 tty_vhangup -EXPORT_SYMBOL vmlinux 0x87d40a7d folio_account_redirty -EXPORT_SYMBOL vmlinux 0x87d476a5 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x87de5222 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x87c24fe8 md_check_recovery +EXPORT_SYMBOL vmlinux 0x87cbb0cc amba_device_unregister +EXPORT_SYMBOL vmlinux 0x87d475a3 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x87e2d662 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x87e484a5 nla_put -EXPORT_SYMBOL vmlinux 0x87f090be tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x87ffafc1 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x880b1d3e migrate_folio +EXPORT_SYMBOL vmlinux 0x88076929 msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x88111738 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x8818c65c devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x881afd56 __neigh_event_send EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x88483cf7 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x884afaf7 xattr_full_name -EXPORT_SYMBOL vmlinux 0x884da357 elv_rb_add -EXPORT_SYMBOL vmlinux 0x88573b29 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x885aebb8 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x88622c0a xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x88642923 of_get_parent -EXPORT_SYMBOL vmlinux 0x886b15e2 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x887804ce vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x882299c1 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x8823c9ac tcp_shutdown +EXPORT_SYMBOL vmlinux 0x8841f40e xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x8842ebfa bio_reset +EXPORT_SYMBOL vmlinux 0x884ab7cb __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x885b2746 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x885cbf8f dm_table_event EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888fcf78 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x88926970 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88abced2 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x88ca520c bioset_exit +EXPORT_SYMBOL vmlinux 0x88bbfe5b console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x88cc5afa phy_write_mmd EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e3959e flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x88f87145 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x8911134f gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x89138f97 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x88ebba3b km_state_notify +EXPORT_SYMBOL vmlinux 0x88f781ef tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x88f993d5 vm_map_pages +EXPORT_SYMBOL vmlinux 0x89126d16 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x89285746 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x893e06b2 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x89446bf9 dev_get_iflink EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8946fb62 set_nlink EXPORT_SYMBOL vmlinux 0x8948cdcc cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x8950eceb tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x895211ec qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x89574925 mr_dump +EXPORT_SYMBOL vmlinux 0x898472c4 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8985600b pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x89933c56 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89a09c02 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x89bd9e18 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x89c067fd dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x89cbad1a tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x89ccbfd7 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x89d67eca mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x89e0ef20 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x89f003a4 cdrom_release -EXPORT_SYMBOL vmlinux 0x89f70a22 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x89fb842b tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8a0b3994 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x8a145419 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x8a38ba8b ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x8a4523ab nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x899f2ccb param_ops_ullong +EXPORT_SYMBOL vmlinux 0x89b5d063 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x89c8ba24 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x89d8d150 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x89e26636 __serio_register_port +EXPORT_SYMBOL vmlinux 0x89e4f6b7 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x89f74989 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8a02dcb1 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x8a0a4fdd tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x8a0b0783 proto_register +EXPORT_SYMBOL vmlinux 0x8a1308fb splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8a273e76 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x8a2cb322 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x8a2fd95e netif_rx EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4b24a8 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x8a5ba4f5 pci_disable_device +EXPORT_SYMBOL vmlinux 0x8a6313b7 neigh_for_each +EXPORT_SYMBOL vmlinux 0x8a6e1101 d_invalidate EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a848505 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x8a980f5e sock_register +EXPORT_SYMBOL vmlinux 0x8a82cf6e sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x8a845490 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x8a8c9ec6 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x8a958738 flow_rule_match_control EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9d7d6a _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x8aad2bd1 dget_parent -EXPORT_SYMBOL vmlinux 0x8ab25318 sock_rfree -EXPORT_SYMBOL vmlinux 0x8ab5ebc4 bio_free_pages -EXPORT_SYMBOL vmlinux 0x8abb5919 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x8aa4ad93 nd_device_register +EXPORT_SYMBOL vmlinux 0x8abfb43f framebuffer_alloc EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8acfafe6 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x8ad1ced4 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x8adb13b6 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x8ade84cf tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x8af1fd4c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x8accd339 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x8acdbae4 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x8afa312f vfs_unlink EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b2e33b0 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x8b06ba2c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x8b07d0e2 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x8b201783 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x8b27be40 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b3041ca phy_start -EXPORT_SYMBOL vmlinux 0x8b3be6cb of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x8b4dcb24 neigh_xmit -EXPORT_SYMBOL vmlinux 0x8b4ea049 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x8b4b3df5 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8b58cb1e tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x8b5fdbfb is_nd_btt +EXPORT_SYMBOL vmlinux 0x8b608a33 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b77941e ipmr_rule_default EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b81eaa9 security_path_mknod EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8ba6f4cc padata_do_serial -EXPORT_SYMBOL vmlinux 0x8baf1f68 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x8bb03132 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0x8bb05944 genlmsg_put -EXPORT_SYMBOL vmlinux 0x8bb68ce7 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x8bc5a84a tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8bb5671d elv_rb_find +EXPORT_SYMBOL vmlinux 0x8bba454c xsk_tx_release +EXPORT_SYMBOL vmlinux 0x8bdc46a5 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8bdeb54d ram_aops EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bec029c of_device_unregister -EXPORT_SYMBOL vmlinux 0x8c0734bc phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x8be2da3d of_platform_device_create +EXPORT_SYMBOL vmlinux 0x8bfa34f2 tty_lock +EXPORT_SYMBOL vmlinux 0x8c0c88f1 pneigh_lookup EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2b27a6 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x8c2fd0fe ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c42dff7 devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0x8c6bd80d devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x8c63f4ae ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x8c6e1b7a mr_table_dump +EXPORT_SYMBOL vmlinux 0x8c71882a scsi_partsize +EXPORT_SYMBOL vmlinux 0x8c728bfe fb_prepare_logo EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8cb049 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x8c8cb39b blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8c889ec2 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x8c9dced1 pci_set_master EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca1325a fman_get_revision -EXPORT_SYMBOL vmlinux 0x8ca2cd9a dev_change_flags -EXPORT_SYMBOL vmlinux 0x8ca6af02 __fput_sync EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cc9ad40 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x8cceb240 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x8cd1b9de mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8ccd7317 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x8cd24f5b finish_open +EXPORT_SYMBOL vmlinux 0x8cd9a4bf fb_pan_display EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce31f03 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8ce4b58b tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x8cf65d61 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x8d16f3ae devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x8d222279 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x8d306f18 sock_wfree +EXPORT_SYMBOL vmlinux 0x8ceb6702 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8cee4d32 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x8cfaf005 ip_frag_init +EXPORT_SYMBOL vmlinux 0x8d0b6941 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x8d150481 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x8d27093e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x8d33de84 bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d3c466d trace_event_printf +EXPORT_SYMBOL vmlinux 0x8d361610 blk_get_queue +EXPORT_SYMBOL vmlinux 0x8d3adbfb flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d440769 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8d41739b sock_init_data EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d56e7b4 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x8d6e6db6 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d74618c __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d781a32 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x8d87ea61 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8d775e23 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8d903ace sk_net_capable EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8d9d386c sock_kmalloc -EXPORT_SYMBOL vmlinux 0x8da61372 par_io_of_config +EXPORT_SYMBOL vmlinux 0x8da5a298 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x8daaadb4 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x8dae30de dev_activate +EXPORT_SYMBOL vmlinux 0x8db2ae05 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x8dc32a02 udp_disconnect EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df7fed7 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x8df8a7a6 tcf_idr_search EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e028005 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0x8e0904de inc_node_page_state EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e28a914 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x8e38fb7d find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x8e29951b netdev_notify_peers EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e44f979 dev_add_offload +EXPORT_SYMBOL vmlinux 0x8e4520b3 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x8e49a01a __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e5b6cba fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x8e6fa9b6 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x8e8c2770 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8e564c63 dst_destroy +EXPORT_SYMBOL vmlinux 0x8e6d4fb4 _dev_crit +EXPORT_SYMBOL vmlinux 0x8e7210ce dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x8e7d3b9a sg_miter_next +EXPORT_SYMBOL vmlinux 0x8e911111 current_time EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea8b5db scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x8ebf7536 phy_attach +EXPORT_SYMBOL vmlinux 0x8e9b9c70 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x8eae6084 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x8eb074e1 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x8eb4e3f2 vme_slot_num +EXPORT_SYMBOL vmlinux 0x8ec7092b dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed36fb8 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x8ee6c8a3 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x8ee83670 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x8ee9c4d8 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x8ef0ee05 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8ec87d94 set_user_nice +EXPORT_SYMBOL vmlinux 0x8edc6785 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x8ee98bcb kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f203755 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0x8f2156f7 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x8f2b3d87 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x8f2f2eb6 fb_find_mode -EXPORT_SYMBOL vmlinux 0x8f35f1b1 xp_alloc -EXPORT_SYMBOL vmlinux 0x8f4dc028 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x8f595be0 sk_dst_check -EXPORT_SYMBOL vmlinux 0x8f5a577d logfc -EXPORT_SYMBOL vmlinux 0x8f6c2074 generic_file_open -EXPORT_SYMBOL vmlinux 0x8f7d2304 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x8f8317dc phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x8f98f571 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x8f32cea5 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x8f40c7ac sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x8f4ca939 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x8f52bf19 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x8f5354cd __f_setown +EXPORT_SYMBOL vmlinux 0x8f918f14 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x8f920113 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb3c87f cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x8fbe7097 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8fbe9fac pneigh_enqueue EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds -EXPORT_SYMBOL vmlinux 0x8fd429f9 touch_buffer -EXPORT_SYMBOL vmlinux 0x8fe30d81 d_move -EXPORT_SYMBOL vmlinux 0x8fe3aed9 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8fefd696 starget_for_each_device EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ff9258d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x8ffc40af tty_vhangup +EXPORT_SYMBOL vmlinux 0x8ffe2226 bmap EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900da8d1 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x9007d349 pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90364fbc security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x904ec823 input_set_timestamp EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90638817 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x906a076e xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x90867dbc mii_nway_restart -EXPORT_SYMBOL vmlinux 0x908a4d9d ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x9098c1c1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x90578d55 fman_get_revision +EXPORT_SYMBOL vmlinux 0x90742224 is_nd_dax +EXPORT_SYMBOL vmlinux 0x907ed022 stream_open +EXPORT_SYMBOL vmlinux 0x907f941c dev_driver_string +EXPORT_SYMBOL vmlinux 0x90a76ae4 fput EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90b38109 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x90b6f0a0 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x90ba262d of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x90c4694f clocksource_unregister -EXPORT_SYMBOL vmlinux 0x90c7a544 bpf_map_get -EXPORT_SYMBOL vmlinux 0x90c8c84a fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x90f0ad10 param_set_bint -EXPORT_SYMBOL vmlinux 0x910339bf pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x91094445 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x911331be dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x90b2469c ptp_clock_event +EXPORT_SYMBOL vmlinux 0x90d0c14e simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x90d6579a phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x90ee5dd5 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x90f33836 bioset_exit +EXPORT_SYMBOL vmlinux 0x90fb2c76 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x91210f5c blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x913d6956 param_ops_byte +EXPORT_SYMBOL vmlinux 0x911f57bf read_cache_page +EXPORT_SYMBOL vmlinux 0x9132a20b qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x91417547 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x9147e71f irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x914c458b scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x915cf21a ps2_drain EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x917e0779 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x91883a9b fget -EXPORT_SYMBOL vmlinux 0x918ba9dc iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x9191f475 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x91871295 secpath_set EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a02d22 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x919ed807 fman_get_bmi_max_fifo_size EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b39e16 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x91b8ed48 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x91a95115 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91df96fb copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x91c0ce76 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x91cecc96 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x91f62be4 _dev_notice EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f905e4 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x91fc655b lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x92015cb2 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x92034ab7 dev_addr_del -EXPORT_SYMBOL vmlinux 0x9209c564 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x920d1248 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x92216b48 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x91fe9930 iterate_fd +EXPORT_SYMBOL vmlinux 0x920b2d9b netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b07f4 tcp_check_req EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923bf2ad pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x92429946 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x92498126 bio_free_pages +EXPORT_SYMBOL vmlinux 0x9251bca8 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9257116d __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x92647788 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x926b2b2d xfrm_user_policy EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states -EXPORT_SYMBOL vmlinux 0x927677d2 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x926fbadd pnp_get_resource EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9282af15 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x928b0735 generic_fillattr -EXPORT_SYMBOL vmlinux 0x928b58fe __module_get EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9293f320 read_cache_folio +EXPORT_SYMBOL vmlinux 0x92931c54 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x929e9072 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x92a1db26 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x92a0239a qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x92a9826b key_put +EXPORT_SYMBOL vmlinux 0x92b11d70 fiemap_prep +EXPORT_SYMBOL vmlinux 0x92b71558 file_remove_privs EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c847eb pci_request_irq EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92cd9bd0 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e1fd7f netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x92e26a33 tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f31d9d __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9300af65 tcp_time_wait EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93372988 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x9348f162 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x934d498b mntput +EXPORT_SYMBOL vmlinux 0x9311fab9 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x934160e9 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x93428753 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x9353c939 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x935951f7 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x935ed405 register_filesystem +EXPORT_SYMBOL vmlinux 0x93696eab block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x936e961c __alloc_pages +EXPORT_SYMBOL vmlinux 0x93739d1a try_module_get EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9384edf8 udp_seq_next -EXPORT_SYMBOL vmlinux 0x93995ceb hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x93a44107 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x938cb7f0 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x93a55ca5 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93ba41d4 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x93c4ee5e ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x93c9fafc fb_firmware_edid EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93de651b md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x93fc1f07 simple_lookup -EXPORT_SYMBOL vmlinux 0x9419d400 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x9421d02f phy_start_aneg -EXPORT_SYMBOL vmlinux 0x9421d4f7 block_write_full_page -EXPORT_SYMBOL vmlinux 0x94235ac9 set_binfmt +EXPORT_SYMBOL vmlinux 0x93e0b45c simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x93eb91f0 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x93ed6e26 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x93f2c9e7 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x940741fc kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x940ff085 d_obtain_alias EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942a768c page_pool_release_page -EXPORT_SYMBOL vmlinux 0x943a9c96 key_task_permission +EXPORT_SYMBOL vmlinux 0x94388562 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x94532b8a blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x945a8197 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x947c7f0b scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x94811adf tty_write_room -EXPORT_SYMBOL vmlinux 0x948826cc skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x94909163 inode_permission +EXPORT_SYMBOL vmlinux 0x9467b52e pci_enable_wake +EXPORT_SYMBOL vmlinux 0x947b6a7e nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a4c3d0 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x94adddfd iptun_encaps +EXPORT_SYMBOL vmlinux 0x94b05f25 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x94bae2ed unregister_quota_format EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94be1df3 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x94bef65e xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94e0fa9a __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x94efd88b devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x94fbfa90 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x94dd5259 proc_create_data +EXPORT_SYMBOL vmlinux 0x94eed2ad ata_std_end_eh EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9530b7b2 crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0x9532d53d inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9508e3b0 sock_from_file +EXPORT_SYMBOL vmlinux 0x951a0df8 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x9530c9f3 pps_unregister_source EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp -EXPORT_SYMBOL vmlinux 0x954159b4 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x95459969 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x954c11c7 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9555ab75 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x955b076c xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x955f9aef netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x956c1ccd netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x957712e9 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x95814427 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x9598ad41 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x9559cada __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x958e06a0 ip_check_defrag EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95b37331 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x95bfb0dd security_path_unlink -EXPORT_SYMBOL vmlinux 0x95c2a913 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x95c967e1 amba_device_register -EXPORT_SYMBOL vmlinux 0x95cfa27b pci_dev_get -EXPORT_SYMBOL vmlinux 0x960271a5 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x95d610c5 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x95d78652 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x95d9c695 import_single_range +EXPORT_SYMBOL vmlinux 0x95f1ee2c param_set_ushort +EXPORT_SYMBOL vmlinux 0x95fe18f5 release_sock +EXPORT_SYMBOL vmlinux 0x96039d5f kobject_set_name EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x962cff22 tty_register_driver -EXPORT_SYMBOL vmlinux 0x9638ccd6 locks_delete_block -EXPORT_SYMBOL vmlinux 0x963d9702 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x964597d8 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x964b6e63 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x96668a33 key_move -EXPORT_SYMBOL vmlinux 0x9667bee7 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x96782d32 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x9632ce29 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x96395054 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x964c40fe pid_task +EXPORT_SYMBOL vmlinux 0x966b416e ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x9679922d sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x969c0195 key_link +EXPORT_SYMBOL vmlinux 0x96ab8844 pci_iomap_range EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d58140 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x96cf6059 uart_register_driver +EXPORT_SYMBOL vmlinux 0x96d3b21c blk_integrity_register +EXPORT_SYMBOL vmlinux 0x96dbe05d md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96fa1ed6 dquot_file_open +EXPORT_SYMBOL vmlinux 0x96ecdac7 simple_link +EXPORT_SYMBOL vmlinux 0x96f83775 max8998_read_reg EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x97034896 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x9718243d mmc_detect_change -EXPORT_SYMBOL vmlinux 0x971e3f27 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x972d1230 request_key_tag -EXPORT_SYMBOL vmlinux 0x973d428d dquot_commit +EXPORT_SYMBOL vmlinux 0x970a82a4 _copy_from_iter EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x97412e28 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x974164b2 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x9754ec5d iunique -EXPORT_SYMBOL vmlinux 0x976011a0 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x97893c58 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x97893f3f mmc_erase -EXPORT_SYMBOL vmlinux 0x97a547b6 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x97437cea pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x9748b742 tcf_classify +EXPORT_SYMBOL vmlinux 0x974fecec netdev_warn +EXPORT_SYMBOL vmlinux 0x9756228f dquot_quota_on +EXPORT_SYMBOL vmlinux 0x976fa247 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x977774e3 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x978712be of_clk_get +EXPORT_SYMBOL vmlinux 0x9795fdf8 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a95615 pipe_unlock EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97bf9c38 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x98021c62 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x980cc4b1 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x98118913 pcim_iomap -EXPORT_SYMBOL vmlinux 0x981ac15e tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x981fd890 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x97fef59b sock_no_listen +EXPORT_SYMBOL vmlinux 0x980d719e skb_push +EXPORT_SYMBOL vmlinux 0x980e5f93 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x983a3b91 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x984d335a tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x98ad4e76 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x98ba19d6 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x98bcf7f3 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x988091c1 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x98826d90 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x988b152f d_move +EXPORT_SYMBOL vmlinux 0x9897ff9b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x989ad829 inode_init_always +EXPORT_SYMBOL vmlinux 0x98ac9389 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c2ac5c simple_link EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cc0e70 inet_protos +EXPORT_SYMBOL vmlinux 0x98c94382 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d6f28a tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x98db86fb tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x98df6cf0 dma_resv_init EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ea3a03 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x98f8d1e4 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x98fb183f ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x9900f46a mii_check_link EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x990ee412 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x991c14f2 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x991c94bf inet_register_protosw -EXPORT_SYMBOL vmlinux 0x99214a64 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x990f6fd8 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x99255290 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x992ea302 vfs_fsync +EXPORT_SYMBOL vmlinux 0x993094bd of_get_parent +EXPORT_SYMBOL vmlinux 0x993195be phy_detach EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993ce469 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x994ea477 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9953bb31 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x9959106c jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x997404da devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x99544891 __d_drop +EXPORT_SYMBOL vmlinux 0x99599339 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x995e3af1 sockfd_lookup EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997799a8 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x997e0f5b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x9990c668 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x9990d739 phy_init_hw +EXPORT_SYMBOL vmlinux 0x999324a1 of_device_is_available EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99c3c258 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x99cabb39 audit_log -EXPORT_SYMBOL vmlinux 0x99cb41f9 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x99ced126 page_symlink -EXPORT_SYMBOL vmlinux 0x99d09d33 set_bh_page -EXPORT_SYMBOL vmlinux 0x99d197a3 freeze_bdev +EXPORT_SYMBOL vmlinux 0x99af4e40 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x99c73702 bdi_alloc +EXPORT_SYMBOL vmlinux 0x99cf2a4c mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x99d03610 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e64e93 misc_register +EXPORT_SYMBOL vmlinux 0x99df4b04 nf_log_register EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fbc973 inet_getname EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0ec2f4 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x9a187cea mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a3e5ac4 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x9a4412e4 __scm_send -EXPORT_SYMBOL vmlinux 0x9a4c2788 pci_match_id -EXPORT_SYMBOL vmlinux 0x9a4d745e ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x9a351f39 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x9a410bb3 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x9a576750 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x9a580ad1 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a75bf5b pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x9a9c7944 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x9a73e9fa set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x9a8c381e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9a9fdb8a mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x9aa8eda0 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab45479 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x9ab57082 cdrom_open +EXPORT_SYMBOL vmlinux 0x9abbb8b6 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9ac49bd7 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9add0f0e eth_header EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aec142f retire_super -EXPORT_SYMBOL vmlinux 0x9af41031 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x9af7155f _dev_alert -EXPORT_SYMBOL vmlinux 0x9afeaf13 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0x9b10f90a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x9af5806d pci_iomap +EXPORT_SYMBOL vmlinux 0x9b071854 __put_devmap_managed_page_refs EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1743c6 inode_to_bdi EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b3355ed udplite_prot EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b406167 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x9b40dd81 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x9b3cd563 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4a76bc tcf_register_action -EXPORT_SYMBOL vmlinux 0x9b547761 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0x9b6becb1 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x9b5a6c26 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x9b60583c phy_drivers_register EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b6ddb11 file_update_time EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9ba5afee md_handle_request -EXPORT_SYMBOL vmlinux 0x9bacd63b page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x9bb85f71 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x9bbb59de devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x9bc83485 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x9beebb39 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x9bf5219c filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x9c068914 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x9c075e6c cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x9c0e5529 __sock_create +EXPORT_SYMBOL vmlinux 0x9b90a535 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x9b9988f6 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x9ba7fae2 input_setup_polling +EXPORT_SYMBOL vmlinux 0x9bb7a596 __scm_destroy +EXPORT_SYMBOL vmlinux 0x9bbd07ec write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9bc7559b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9bc9767e folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x9bced199 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x9bd2fdfe to_nd_btt +EXPORT_SYMBOL vmlinux 0x9be20e5b flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x9bfe822d cdev_add EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1b0df8 put_watch_queue EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c2475a6 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9c39e2fe xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x9c3c91a7 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9c4c2dd3 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x9c59a0af twl6040_set_pll EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c63fe36 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x9c65ed8c mmc_can_trim +EXPORT_SYMBOL vmlinux 0x9c6b2d92 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x9c7b485e _dev_err +EXPORT_SYMBOL vmlinux 0x9c841ad5 set_blocksize EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8fb14e phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x9c95a181 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9c98a9d3 alloc_pages EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9c9d1459 param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb1b128 complete_request_key -EXPORT_SYMBOL vmlinux 0x9cb342e5 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x9cc27e18 folio_write_one +EXPORT_SYMBOL vmlinux 0x9cc0e637 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x9cc31250 __scm_send EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cda8c3b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x9cdf034b locks_remove_posix EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce31051 file_remove_privs -EXPORT_SYMBOL vmlinux 0x9ce68e92 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x9cf134e9 page_pool_create +EXPORT_SYMBOL vmlinux 0x9ce9d98c keyring_alloc +EXPORT_SYMBOL vmlinux 0x9cf203e5 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9cf8ed5b lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x9cf97899 key_reject_and_link EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0dcecd create_empty_buffers +EXPORT_SYMBOL vmlinux 0x9d1169bb i2c_clients_command +EXPORT_SYMBOL vmlinux 0x9d13035b inc_node_page_state EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x9d28ee00 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d35b0f6 console_start +EXPORT_SYMBOL vmlinux 0x9d32b15a udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x9d3f4271 kset_register +EXPORT_SYMBOL vmlinux 0x9d410628 sock_register +EXPORT_SYMBOL vmlinux 0x9d42f7a5 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x9d5e6be7 seq_release EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d76e1ce of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x9d88643b xfrm_input +EXPORT_SYMBOL vmlinux 0x9d715c9a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x9d7f6057 thaw_super EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d99ec5a pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x9d9f39eb sock_kfree_s -EXPORT_SYMBOL vmlinux 0x9dbcf533 bio_split_to_limits -EXPORT_SYMBOL vmlinux 0x9dd6e271 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x9d96a345 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9d97c6ef mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x9da00ac1 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x9dca7999 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x9dcd64c6 rproc_add +EXPORT_SYMBOL vmlinux 0x9dd5bd6e simple_rename EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de0c720 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x9de97862 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x9ddf47b5 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df29145 rproc_alloc -EXPORT_SYMBOL vmlinux 0x9df677e5 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x9df71065 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x9e02fa09 tcp_sync_mss EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0f6301 dev_lstats_read EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1f4a83 sg_miter_skip EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e3743de netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x9e3929d0 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x9e3a89ed sock_set_reuseport EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e519ffa set_page_dirty -EXPORT_SYMBOL vmlinux 0x9e58f4d5 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x9e53245a blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9e5ba354 submit_bio EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6d24f8 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x9e7692ef to_nd_btt -EXPORT_SYMBOL vmlinux 0x9e7aa72b mmc_free_host -EXPORT_SYMBOL vmlinux 0x9e7cd86a phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x9e6d1a12 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x9e75b7ae tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e926b15 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x9e8f2399 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x9e90781b blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9f0a5d vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eb0133c i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x9eb136a3 param_ops_int EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb1a086 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x9eb8b002 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecd3188 alloc_fddidev EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee1187b rfkill_alloc -EXPORT_SYMBOL vmlinux 0x9ee69405 dquot_alloc -EXPORT_SYMBOL vmlinux 0x9ee6bc06 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x9efc5597 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x9efcc07f mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x9f2e1a8a filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x9f3dfb51 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x9f3fdbe8 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x9f4315d2 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x9edcbed5 netif_skb_features +EXPORT_SYMBOL vmlinux 0x9ef5fdcd nf_log_unset +EXPORT_SYMBOL vmlinux 0x9f03be2d generic_block_bmap +EXPORT_SYMBOL vmlinux 0x9f10c6ed mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x9f14fe59 set_page_dirty +EXPORT_SYMBOL vmlinux 0x9f153362 cdev_init +EXPORT_SYMBOL vmlinux 0x9f1befe0 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x9f30c0e9 vmap +EXPORT_SYMBOL vmlinux 0x9f322141 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x9f332137 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x9f3476c2 console_stop +EXPORT_SYMBOL vmlinux 0x9f422004 iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f6e3911 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x9f57fd24 iunique +EXPORT_SYMBOL vmlinux 0x9f5d7fcc security_unix_may_send +EXPORT_SYMBOL vmlinux 0x9f761511 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x9f7a3247 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f7f01d3 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x9f82045b security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x9f92e22d from_kgid +EXPORT_SYMBOL vmlinux 0x9f8c0693 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa47a14 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fd852e8 end_page_writeback -EXPORT_SYMBOL vmlinux 0x9fddcc73 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x9fb79853 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x9fd8fc1e slab_build_skb EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff86747 mdio_bus_type EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa000ab65 km_state_notify EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0145c44 vga_put -EXPORT_SYMBOL vmlinux 0xa018d21d is_nd_dax -EXPORT_SYMBOL vmlinux 0xa018e169 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01f747c inc_nlink EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03e708f ip_output EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0456cb7 folio_redirty_for_writepage EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa056e796 lock_rename EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa05dda2a sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xa0642780 thaw_super -EXPORT_SYMBOL vmlinux 0xa0752e39 __skb_checksum +EXPORT_SYMBOL vmlinux 0xa065fde1 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xa0754907 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xa0773db9 inet_accept EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07d80cb mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08d7631 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xa094db1c pci_read_config_dword EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09fbd5f dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xa0a6b240 iterate_fd -EXPORT_SYMBOL vmlinux 0xa0ad9d66 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa098603c cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa09d342f d_alloc EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0aede5f pnpacpi_protocol EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b34ade dm_table_get_size -EXPORT_SYMBOL vmlinux 0xa0c308bb pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xa0c883a5 generic_listxattr -EXPORT_SYMBOL vmlinux 0xa0d45361 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xa0d47462 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa0b26ea7 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xa0b9a9bf inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa0bfe010 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xa0d6fdc0 file_open_root EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e6a1f0 setup_new_exec -EXPORT_SYMBOL vmlinux 0xa0e8ffd9 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa0e65e5e udp_push_pending_frames 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 0xa0eee521 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa0efb502 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table -EXPORT_SYMBOL vmlinux 0xa0f194b0 ihold EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1169825 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa1205b15 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xa13d6228 pci_find_resource -EXPORT_SYMBOL vmlinux 0xa1436859 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xa1a86b6d ppp_input -EXPORT_SYMBOL vmlinux 0xa1be9f56 flush_dcache_page -EXPORT_SYMBOL vmlinux 0xa1e0690f mmc_get_card -EXPORT_SYMBOL vmlinux 0xa1f39be1 seq_release +EXPORT_SYMBOL vmlinux 0xa10cddda skb_find_text +EXPORT_SYMBOL vmlinux 0xa11edcd3 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xa1256d5a mount_bdev +EXPORT_SYMBOL vmlinux 0xa1463eac tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xa14efb87 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xa158c088 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xa15dacac devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa1730b67 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xa1730e45 phy_resume +EXPORT_SYMBOL vmlinux 0xa185f575 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xa1ab51f8 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xa1bfe1ac generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xa1cdbe7e md_integrity_register +EXPORT_SYMBOL vmlinux 0xa1cfcf55 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa21cc7fb blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xa2231b58 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24e59c6 skb_checksum_help EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa253956a pci_request_regions +EXPORT_SYMBOL vmlinux 0xa25c9fc5 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xa26136db copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xa26155d6 udp_lib_get_port EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa28a5b12 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xa28b0e01 generic_file_llseek EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa298e3df of_find_property -EXPORT_SYMBOL vmlinux 0xa299e2a4 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xa29bd831 dev_trans_start -EXPORT_SYMBOL vmlinux 0xa2af36bd io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xa2b2ecf8 scsi_print_sense -EXPORT_SYMBOL vmlinux 0xa2c20a09 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xa2962c7e make_kuid +EXPORT_SYMBOL vmlinux 0xa2b6b954 phy_stop +EXPORT_SYMBOL vmlinux 0xa2c0fee9 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xa2c483b8 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid -EXPORT_SYMBOL vmlinux 0xa2d1aab9 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa2d2e5f6 input_unregister_device EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2ec5d89 skb_condense -EXPORT_SYMBOL vmlinux 0xa3085170 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xa308d373 address_space_init_once +EXPORT_SYMBOL vmlinux 0xa2fadb15 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xa3063c1e configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xa30d392e mmc_set_blocklen EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa342df2c rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xa34a48d7 security_path_rename EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa37e8c1c _dev_crit -EXPORT_SYMBOL vmlinux 0xa380eaad crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xa389ccdf kobject_del -EXPORT_SYMBOL vmlinux 0xa38fcbc5 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xa39020f8 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xa3acc9e5 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xa3ad0672 tty_port_close -EXPORT_SYMBOL vmlinux 0xa3b60f37 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xa3561aa2 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa3665c5d skb_copy_expand +EXPORT_SYMBOL vmlinux 0xa36cc30c blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xa371e97e security_inode_init_security +EXPORT_SYMBOL vmlinux 0xa37488cf netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xa395ca49 of_find_all_nodes EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c2f73e of_get_property -EXPORT_SYMBOL vmlinux 0xa3ca2b62 icmp6_send +EXPORT_SYMBOL vmlinux 0xa3bf545e readahead_expand EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d84f52 qdisc_put +EXPORT_SYMBOL vmlinux 0xa3db51bc jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xa3f34a81 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa401ba31 folio_end_private_2 -EXPORT_SYMBOL vmlinux 0xa40d05fa tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa42711c9 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xa43c58b8 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xa4215a2e vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xa424233e truncate_setsize +EXPORT_SYMBOL vmlinux 0xa42ab469 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xa42bbcb8 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xa4385685 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xa43e80c8 simple_pin_fs EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xa4458b97 md_set_array_sectors EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa44f8891 mmc_retune_release -EXPORT_SYMBOL vmlinux 0xa45035a8 skb_checksum -EXPORT_SYMBOL vmlinux 0xa453fe69 filemap_fault -EXPORT_SYMBOL vmlinux 0xa454eb3a kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xa477f007 page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0xa482a723 of_phy_connect -EXPORT_SYMBOL vmlinux 0xa4887451 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xa48bddfc unlock_new_inode -EXPORT_SYMBOL vmlinux 0xa49803b2 vlan_for_each -EXPORT_SYMBOL vmlinux 0xa4b039f5 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xa4eec6c1 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xa4f55ca2 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xa44b1841 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xa46a7efa vfs_ioctl +EXPORT_SYMBOL vmlinux 0xa47beb26 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xa4955b48 __bh_read +EXPORT_SYMBOL vmlinux 0xa495c196 cdev_device_add +EXPORT_SYMBOL vmlinux 0xa49ef296 __block_write_begin +EXPORT_SYMBOL vmlinux 0xa4abb226 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xa4b9a5ea cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa5005b5c register_shrinker +EXPORT_SYMBOL vmlinux 0xa51b3d68 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa568ec85 kill_block_super -EXPORT_SYMBOL vmlinux 0xa56d1fab flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa556a1d6 da903x_query_status +EXPORT_SYMBOL vmlinux 0xa55839f3 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xa558dc01 inode_update_time +EXPORT_SYMBOL vmlinux 0xa562955c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xa566c6b4 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xa58574bb tcp_splice_read EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xa5929dcc vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xa593131a md_write_end EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5b15695 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xa5c333fe mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xa5c4cbc9 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xa5d57038 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xa5e1efcf jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xa5ebe03c tcf_block_get -EXPORT_SYMBOL vmlinux 0xa5f58ba2 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xa5976f21 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xa5c3602f pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa5d22b85 mii_link_ok +EXPORT_SYMBOL vmlinux 0xa5daa2a4 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xa5dd64a3 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xa5de1edd fb_set_suspend +EXPORT_SYMBOL vmlinux 0xa5f39ca8 tcp_recvmsg EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa5ffd78b tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xa603e953 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xa60569f7 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa638e6d2 component_match_add_release -EXPORT_SYMBOL vmlinux 0xa641667e inode_update_time +EXPORT_SYMBOL vmlinux 0xa63e2986 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa6544ca1 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xa6561d05 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xa65e5d43 redraw_screen -EXPORT_SYMBOL vmlinux 0xa662c644 unix_get_socket -EXPORT_SYMBOL vmlinux 0xa6777353 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xa658f836 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xa668fc2e find_inode_rcu EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6882674 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xa68a13ac dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xa68dd3ef devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xa68e4f0c skb_append -EXPORT_SYMBOL vmlinux 0xa698356b security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xa6883be3 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa6b5ef69 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xa6c1dfd0 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xa6d01008 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xa6d1ab5f devm_of_iomap -EXPORT_SYMBOL vmlinux 0xa6dfb1f6 seq_open -EXPORT_SYMBOL vmlinux 0xa6ec21c9 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xa6e75148 __sock_create +EXPORT_SYMBOL vmlinux 0xa6f796b5 dget_parent +EXPORT_SYMBOL vmlinux 0xa6fcb2b5 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xa702981e rtnl_unicast EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa7133fcf acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xa7162f21 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xa7179cca tso_start EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7223059 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xa722962d dquot_get_state -EXPORT_SYMBOL vmlinux 0xa74252f7 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xa7207bb4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xa72a5269 param_set_invbool +EXPORT_SYMBOL vmlinux 0xa7315929 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xa7363cd7 input_register_handle +EXPORT_SYMBOL vmlinux 0xa742ae99 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa74cee47 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xa7514b3f fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xa7566caf unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xa760a683 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xa7610519 module_put -EXPORT_SYMBOL vmlinux 0xa762f6b7 vme_register_driver -EXPORT_SYMBOL vmlinux 0xa7772dc5 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xa752b8e2 blk_start_plug +EXPORT_SYMBOL vmlinux 0xa76a2a61 seq_putc EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7a03233 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xa7a17c74 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xa7901adb __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa7b2c973 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7d91ee4 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0xa7e2b398 netpoll_send_udp EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa80771bf seq_hex_dump -EXPORT_SYMBOL vmlinux 0xa81326a9 serio_reconnect EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa81de0c3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xa81fff1c pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xa8240f47 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xa82869a3 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84569a1 single_release +EXPORT_SYMBOL vmlinux 0xa8470a1d inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa84b4e91 blk_rq_map_user EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa84d983a fb_blank +EXPORT_SYMBOL vmlinux 0xa8527968 nf_register_net_hook EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa8537c6e fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8776d46 kmalloc_trace -EXPORT_SYMBOL vmlinux 0xa8854361 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa88712db pcim_enable_device +EXPORT_SYMBOL vmlinux 0xa89363d8 tty_port_close_start EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a2b7bc put_cmsg EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8b30a30 input_event -EXPORT_SYMBOL vmlinux 0xa8b6262b inet6_offloads -EXPORT_SYMBOL vmlinux 0xa8b7a4b6 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xa8c9e10f vfs_mknod +EXPORT_SYMBOL vmlinux 0xa8a90bf8 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xa8a9be14 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa8b55406 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xa8b9f3f7 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xa8bef373 msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8e3f893 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xa8d38eeb dev_set_alias +EXPORT_SYMBOL vmlinux 0xa8d8d533 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xa8d99a64 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f5458a i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xa8ea1e75 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa904692a tty_check_change +EXPORT_SYMBOL vmlinux 0xa8fa238f mfd_remove_devices EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91dfaf1 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xa9350f3e jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96eafd3 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa96c47c6 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xa97281eb dma_sync_wait EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa984201f mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xa987a8a1 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xa98e853f end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xa9b3a2fe acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xa9ba9677 dm_register_target -EXPORT_SYMBOL vmlinux 0xa9bba765 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xa9c102a0 clkdev_drop -EXPORT_SYMBOL vmlinux 0xa9dbf738 blk_start_plug +EXPORT_SYMBOL vmlinux 0xa9c5c330 d_instantiate_anon EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9f0ec3f bio_init_clone +EXPORT_SYMBOL vmlinux 0xa9f8a41f sock_cmsg_send EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa24d27c bio_uninit -EXPORT_SYMBOL vmlinux 0xaa26d0da gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xaa327a1b eth_mac_addr +EXPORT_SYMBOL vmlinux 0xaa1e4496 netdev_notice +EXPORT_SYMBOL vmlinux 0xaa2b256e folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xaa31a7f2 simple_open EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa5773f9 simple_transaction_release EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa77eef9 param_set_short +EXPORT_SYMBOL vmlinux 0xaa7588a6 d_tmpfile EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa819aa7 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xaa862186 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xaa862ca9 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa4de53 vfs_mkdir EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaa77e49 seq_pad -EXPORT_SYMBOL vmlinux 0xaab0f2de padata_alloc -EXPORT_SYMBOL vmlinux 0xaac5c71f rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xaaaf3262 sock_kmalloc 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 0xaadddd88 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xaae14670 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaeac917 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xaaf44470 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xaaf1cb53 simple_dir_operations EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab059666 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xab0ea936 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xab21d437 skb_put -EXPORT_SYMBOL vmlinux 0xab2584ed tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xab090197 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xab18687f mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab3ea10f genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xab4cd796 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xab594c3d locks_init_lock EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6b86a6 __bio_advance EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7ff1bc seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xab8f42d2 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xab8f6faf sk_ns_capable -EXPORT_SYMBOL vmlinux 0xab97434f netdev_offload_xstats_enabled -EXPORT_SYMBOL vmlinux 0xab9f736b locks_remove_posix -EXPORT_SYMBOL vmlinux 0xaba29a09 sock_bind_add +EXPORT_SYMBOL vmlinux 0xab78d6d6 vfs_get_link +EXPORT_SYMBOL vmlinux 0xab8edba5 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xabb42425 set_groups +EXPORT_SYMBOL vmlinux 0xabbdb1ae of_clk_get_by_name EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabcb3b08 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xabce1986 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xabcf285a fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xabd29174 uart_match_port -EXPORT_SYMBOL vmlinux 0xabe38db8 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xabe91606 remap_pfn_range EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf4e0bf flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xabfd7fbb vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xac095488 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2bc759 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xac1f63ba __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac35ec44 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xac3ba19e generic_permission -EXPORT_SYMBOL vmlinux 0xac4ad534 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xac391127 tty_write_room EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac609fe1 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xac7a7ee8 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xac937d3e alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xaca64dba jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xaca9c022 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xac6db401 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xac7dc12a pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xac805854 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xac893698 cros_ec_get_host_event EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb14109 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xacce8926 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd920f2 phy_connect EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace8ff78 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xacec441e tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xacec64aa vfs_unlink -EXPORT_SYMBOL vmlinux 0xacf15221 set_disk_ro -EXPORT_SYMBOL vmlinux 0xacf1765d md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfaddb5 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xad017ce2 pipe_lock +EXPORT_SYMBOL vmlinux 0xacf9c2dc simple_setattr +EXPORT_SYMBOL vmlinux 0xacfbbaf1 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xacfe812d vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xad0103f9 bio_put EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0b5365 phy_init_eee -EXPORT_SYMBOL vmlinux 0xad0ef4f7 dev_set_alias -EXPORT_SYMBOL vmlinux 0xad11658e mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xad0f9654 uart_get_divisor EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad140b46 sock_no_getname +EXPORT_SYMBOL vmlinux 0xad2af808 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xad2baf4c kern_unmount +EXPORT_SYMBOL vmlinux 0xad3d73d4 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad47287f mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0xad51dfd4 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xad492e97 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xad676f35 tcp_prot 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 0xad73b191 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xad845d15 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xad968c85 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada736ae phy_get_pause -EXPORT_SYMBOL vmlinux 0xadaaa2fe acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xada99133 of_node_put EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb49e90 rw_verify_area -EXPORT_SYMBOL vmlinux 0xadb5ea1d __serio_register_driver -EXPORT_SYMBOL vmlinux 0xadbc07c3 tcf_qevent_init EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd2f055 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xadd6f4a8 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xaddfa533 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xadff65df d_alloc_name +EXPORT_SYMBOL vmlinux 0xade2c364 kill_litter_super +EXPORT_SYMBOL vmlinux 0xade47e27 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xadef8592 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xadf74f25 input_inject_event EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae28dd63 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xae2c109f iov_iter_advance +EXPORT_SYMBOL vmlinux 0xae2c5859 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xae2d4104 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xae312062 may_umount_tree EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3352c3 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae482ee3 inode_insert5 +EXPORT_SYMBOL vmlinux 0xae3b9637 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xae3d188f tty_kref_put +EXPORT_SYMBOL vmlinux 0xae3db416 pci_get_slot +EXPORT_SYMBOL vmlinux 0xae59f431 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5de40f ip_fraglist_init EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae67ca30 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xaeab64b3 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xae918235 skb_pull_data +EXPORT_SYMBOL vmlinux 0xae9843d3 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xaea81539 padata_do_parallel 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 0xaed0bed7 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xaef31c6c get_phy_device -EXPORT_SYMBOL vmlinux 0xaef7d3f0 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xaf39d905 kernel_accept -EXPORT_SYMBOL vmlinux 0xaf3a4fde register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xaed39b69 get_cached_acl +EXPORT_SYMBOL vmlinux 0xaed41b9b mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xaedbdc80 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xaede919c d_splice_alias +EXPORT_SYMBOL vmlinux 0xaee18d3a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xaee5611b netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xaef888ea tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xaf083d9b sock_set_mark +EXPORT_SYMBOL vmlinux 0xaf2e1153 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xaf2e628c netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf414241 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xaf4152a2 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xaf4b8648 kernel_connect +EXPORT_SYMBOL vmlinux 0xaf401465 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xaf40c9a8 from_kprojid +EXPORT_SYMBOL vmlinux 0xaf43666e pnp_stop_dev EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf6789f4 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xaf70ee01 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xaf71ad86 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xaf735add invalidate_bdev -EXPORT_SYMBOL vmlinux 0xaf81e7e7 dev_mc_add -EXPORT_SYMBOL vmlinux 0xaf870644 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xaf88084b cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xaf8d328e mdiobus_write -EXPORT_SYMBOL vmlinux 0xaf926a09 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xaf9d6ce4 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xafa3fdaf setattr_prepare -EXPORT_SYMBOL vmlinux 0xafa509b5 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xaf5b8f70 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xaf606885 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xaf62dd5e register_quota_format +EXPORT_SYMBOL vmlinux 0xaf6401e6 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xaf6bdb97 key_task_permission +EXPORT_SYMBOL vmlinux 0xaf6e194f blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xaf791bb2 inet6_protos +EXPORT_SYMBOL vmlinux 0xaf7d2689 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xaf889969 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xaf8ad7fe blk_rq_init +EXPORT_SYMBOL vmlinux 0xaf954ed1 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xaf9da595 of_device_is_compatible EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafbe4111 generic_write_checks EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc11cde mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xafc29326 pci_iomap -EXPORT_SYMBOL vmlinux 0xafc3cf20 thaw_bdev +EXPORT_SYMBOL vmlinux 0xafc23e97 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xafc2fe60 dquot_operations EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafcb5993 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xafcc0ed9 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xaff6e39e pci_resize_resource +EXPORT_SYMBOL vmlinux 0xaffc0f7c phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xb007fe40 security_dentry_init_security EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01dd9c2 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xb0383123 phy_find_first -EXPORT_SYMBOL vmlinux 0xb0484533 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xb0272043 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xb02b8a7a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xb02cf4bc arp_xmit +EXPORT_SYMBOL vmlinux 0xb03a09c4 netlink_set_err +EXPORT_SYMBOL vmlinux 0xb0422536 is_subdir EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04e7a9d pcibus_to_node -EXPORT_SYMBOL vmlinux 0xb04fa048 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xb0510ea9 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xb0542e7b tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xb0550964 wireless_send_event -EXPORT_SYMBOL vmlinux 0xb0588a27 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb0965fc1 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xb0822f03 proc_create +EXPORT_SYMBOL vmlinux 0xb093e65a max8925_reg_write +EXPORT_SYMBOL vmlinux 0xb0994434 scsi_remove_host EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a103e7 key_revoke -EXPORT_SYMBOL vmlinux 0xb0a1a6fd __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xb0a4dfbc inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xb0b6532e dquot_destroy +EXPORT_SYMBOL vmlinux 0xb0bd0f1b sock_alloc +EXPORT_SYMBOL vmlinux 0xb0bebc8c clkdev_add +EXPORT_SYMBOL vmlinux 0xb0bf9980 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xb0c3e49b seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xb0c509f4 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0ca8e05 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xb0cbcadf dev_set_threaded -EXPORT_SYMBOL vmlinux 0xb0d7c73e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb0e0fb11 inet6_getname EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e45c10 bpf_link_put -EXPORT_SYMBOL vmlinux 0xb1076552 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xb0f9f7a3 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb121902d d_rehash +EXPORT_SYMBOL vmlinux 0xb126d4df phy_connect_direct EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb149ac03 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb15213bf flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xb1753f2a from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xb17f7ef3 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xb1bb6155 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xb17afb9f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xb1889e4b blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xb18930d5 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xb18a4504 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb1a2c171 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d5805c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb1cc3b4e netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xb1d95c91 filp_close EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb20223ae padata_free_shell -EXPORT_SYMBOL vmlinux 0xb2078d58 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb1e9c4e9 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb205ec60 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xb2184eab tcf_block_put +EXPORT_SYMBOL vmlinux 0xb22ae754 unix_get_socket EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2353b46 free_buffer_head -EXPORT_SYMBOL vmlinux 0xb23ec10b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xb25dc4a3 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xb271508f mdio_driver_register -EXPORT_SYMBOL vmlinux 0xb27d048c scsi_done -EXPORT_SYMBOL vmlinux 0xb27d3ef7 con_is_bound -EXPORT_SYMBOL vmlinux 0xb29be023 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0xb2a0adb6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb23f83a6 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xb25946e2 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xb2601d58 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xb270fa30 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xb27ca00d mmc_detect_change +EXPORT_SYMBOL vmlinux 0xb2925d07 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xb2a6b6e5 redraw_screen +EXPORT_SYMBOL vmlinux 0xb2b08a70 vm_map_ram +EXPORT_SYMBOL vmlinux 0xb2b9c70d i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb2bb3f07 bdi_unregister +EXPORT_SYMBOL vmlinux 0xb2bca145 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bd4468 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xb2d352b2 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xb2ce5699 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xb2dce42c __phy_read_mmd EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2ed4075 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fe71bc mdio_device_free +EXPORT_SYMBOL vmlinux 0xb305a2fb dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb324ead8 softnet_data +EXPORT_SYMBOL vmlinux 0xb3109bcb dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb3311205 simple_empty +EXPORT_SYMBOL vmlinux 0xb3363528 md_handle_request EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb34e191b mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36e8293 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert +EXPORT_SYMBOL vmlinux 0xb38ce2e0 proc_symlink +EXPORT_SYMBOL vmlinux 0xb3a4f868 buffer_migrate_folio EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3ad3657 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xb3ae411d ilookup5_nowait EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dab7a8 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb3e6b448 put_fs_context EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run -EXPORT_SYMBOL vmlinux 0xb3f14b43 unregister_quota_format 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 0xb3fee410 sock_no_getname EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb40e2791 bio_add_page -EXPORT_SYMBOL vmlinux 0xb41f4d12 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb4051adc tcp_seq_start +EXPORT_SYMBOL vmlinux 0xb4123b47 is_bad_inode +EXPORT_SYMBOL vmlinux 0xb416c116 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb41a092d tty_check_change EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42723de ihold +EXPORT_SYMBOL vmlinux 0xb449131b xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xb4499226 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xb4532435 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb4574b92 rproc_alloc EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45e65c5 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xb481978b rpmh_write_batch -EXPORT_SYMBOL vmlinux 0xb48c266e netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xb4850fd2 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xb488194e d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xb4896597 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb4979f1a has_capability -EXPORT_SYMBOL vmlinux 0xb49ed815 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xb4ac052c phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xb4d301f6 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xb4d8f5ad put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xb4e8215b filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xb4eb0e43 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb4b14ef5 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xb4b2f7f3 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb4b9ee3a devm_ioremap +EXPORT_SYMBOL vmlinux 0xb4dad9f6 bioset_integrity_create EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f2a3f7 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xb4fd8c84 tty_port_open -EXPORT_SYMBOL vmlinux 0xb5105dc6 may_umount_tree -EXPORT_SYMBOL vmlinux 0xb5176e16 config_group_init -EXPORT_SYMBOL vmlinux 0xb52c8b5d serio_rescan -EXPORT_SYMBOL vmlinux 0xb52d4a36 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xb53bf7f5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb4fa4344 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xb50ad7f4 rw_verify_area +EXPORT_SYMBOL vmlinux 0xb51d55d0 serio_open +EXPORT_SYMBOL vmlinux 0xb5217695 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xb526eef3 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xb52addd6 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xb53ec367 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb542ef7c dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb54f29a6 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb55791f1 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xb57a0cb2 __do_once_done +EXPORT_SYMBOL vmlinux 0xb57adf7d devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0xb59f1a37 fman_register_intr EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a73a38 acpi_device_hid EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bd53a6 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xb5c50164 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xb5cc1828 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb5d7d3e2 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xb5c0eaf8 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f00aea tcf_block_put -EXPORT_SYMBOL vmlinux 0xb5f43216 md_update_sb -EXPORT_SYMBOL vmlinux 0xb5fc6939 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xb600bf0e scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xb60a0ee7 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xb5e94801 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xb5eb3012 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xb5ee9ffc tty_unregister_driver EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb627eef2 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xb6286de6 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xb62c2a5d seq_putc +EXPORT_SYMBOL vmlinux 0xb622263c ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb65366ad dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xb6539fc4 __neigh_create +EXPORT_SYMBOL vmlinux 0xb63c47bf scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xb6414c2f pci_assign_resource EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb66133e1 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0xb66eaf51 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb69290cd mmc_command_done -EXPORT_SYMBOL vmlinux 0xb692e53c pps_unregister_source EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb698d759 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xb69e95d4 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xb6a5f1da touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xb6ab5362 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb6a45491 dev_set_mac_address EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6bdda7c vlan_vid_del +EXPORT_SYMBOL vmlinux 0xb6b35033 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xb6bbab7a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xb6bfaf14 rt6_lookup +EXPORT_SYMBOL vmlinux 0xb6c6d8df skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xb6c95f6c sock_create_kern EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d44f9a seq_write -EXPORT_SYMBOL vmlinux 0xb6d5ecc1 release_pages +EXPORT_SYMBOL vmlinux 0xb6dd0376 generic_update_time EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e83bb6 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xb6eaf2d1 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb6f449d3 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xb6fd7bc1 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb6ed5365 seq_printf EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb700b965 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xb6feb89a netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xb6ffea3c mmc_start_request EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71d08fc inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb71b957d blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb72cea4b pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xb7337329 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xb722c84d pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xb72545ff get_user_pages EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb74b1415 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb74ab274 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds +EXPORT_SYMBOL vmlinux 0xb765837e jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb7786597 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xb77ebe07 module_refcount -EXPORT_SYMBOL vmlinux 0xb77f78b4 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xb784e5b7 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xb77de14f __SetPageMovable +EXPORT_SYMBOL vmlinux 0xb77ef2a7 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xb7879ca9 ethtool_notify EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78af5da __scsi_add_device EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb799fac7 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xb7a0dc12 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xb7ac69c5 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xb7b51578 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xb7abc477 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xb7b23dc4 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d12091 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xb7d6fa05 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xb7d95ae7 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xb8053658 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb7f36f86 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xb80466f3 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xb80a64dd con_is_bound EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb828c7b1 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xb80db43a mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb8205f5f xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xb828893a shmem_aops EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb8536a73 tty_hangup -EXPORT_SYMBOL vmlinux 0xb85f63f8 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xb852a17f fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xb85ecc8f ip_local_deliver EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb8630187 md_error EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb872da40 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xb877a67b neigh_direct_output -EXPORT_SYMBOL vmlinux 0xb87d1694 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xb87d48a3 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xb875d73f of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb879fae7 neigh_update +EXPORT_SYMBOL vmlinux 0xb886599e padata_alloc EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89e37e6 posix_lock_file +EXPORT_SYMBOL vmlinux 0xb8a17302 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xb8a8593d flow_rule_match_ports EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b1461c blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xb8cd8d5d ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xb8dc47c3 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xb8dec179 locks_free_lock -EXPORT_SYMBOL vmlinux 0xb8f961de sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xb9057f63 __kfree_skb +EXPORT_SYMBOL vmlinux 0xb8cb0906 genphy_resume +EXPORT_SYMBOL vmlinux 0xb8d6636b pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xb8ee0eb4 ip_getsockopt EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90f1fcb param_ops_charp EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb93940f9 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb9397d94 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xb92ccd90 init_pseudo +EXPORT_SYMBOL vmlinux 0xb93bd703 ppp_register_channel EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb95bbf3a ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb9707cb3 pci_write_config_dword EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9797abe dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xb9868056 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xb9967a8f __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xb97342ad devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xb98dd251 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xb99ddc87 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xb9a501d4 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9d165f1 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xb9d1ab9f dma_alloc_attrs EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ebefa8 fib_default_rule_add EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb9ff43a1 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xba01ae1e nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb9ff0af5 netif_tx_unlock EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba470ca1 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xba23cc24 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xba39ea74 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xba43a7e8 dev_addr_del EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4a273c new_inode -EXPORT_SYMBOL vmlinux 0xba4b3004 __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xba513f31 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xba5b8d7f pci_fixup_device -EXPORT_SYMBOL vmlinux 0xba6b0f9a scsicam_bios_param EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba7a0677 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xba7c2eef xsk_tx_completed EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbabecbd5 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xbac3207e from_kprojid -EXPORT_SYMBOL vmlinux 0xbac55a27 key_validate +EXPORT_SYMBOL vmlinux 0xba9e0288 release_pages +EXPORT_SYMBOL vmlinux 0xbaa12889 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xbaa8c369 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xbab4a80d cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbace597b netdev_err -EXPORT_SYMBOL vmlinux 0xbadac2bc skb_find_text -EXPORT_SYMBOL vmlinux 0xbadefc72 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xbae0f382 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xbae38fcf phy_read_paged -EXPORT_SYMBOL vmlinux 0xbae52f16 __bh_read_batch -EXPORT_SYMBOL vmlinux 0xbae64006 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xbae8c373 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xbaf05a3b page_readlink EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0c1a79 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xbb12dbf5 input_copy_abs -EXPORT_SYMBOL vmlinux 0xbb1d0608 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xbb0b9af4 rt_dst_clone EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2d5abb qdisc_put -EXPORT_SYMBOL vmlinux 0xbb2d9b5a __block_write_begin -EXPORT_SYMBOL vmlinux 0xbb49c4c1 blk_get_queue +EXPORT_SYMBOL vmlinux 0xbb3e2102 d_obtain_root +EXPORT_SYMBOL vmlinux 0xbb3fd775 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbb452d6c xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb51716c inode_init_owner -EXPORT_SYMBOL vmlinux 0xbb52f1d6 acpi_bus_unregister_driver EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb808dd9 vfs_rename EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbe112ef inet_sendmsg -EXPORT_SYMBOL vmlinux 0xbbfd8ba4 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xbc1a9e28 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xbbb0aa97 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xbbd2886f dm_io +EXPORT_SYMBOL vmlinux 0xbbda5928 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xbbddaad3 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xbbdf9f32 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xbbe5d18e vfs_mkobj +EXPORT_SYMBOL vmlinux 0xbbe840f2 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xbbfa616f pci_set_mwi +EXPORT_SYMBOL vmlinux 0xbbfb46c2 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xbbff02e9 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xbc0650f8 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbc12d9aa qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc315e20 brioctl_set -EXPORT_SYMBOL vmlinux 0xbc3c9ac9 d_set_d_op -EXPORT_SYMBOL vmlinux 0xbc55d83d devm_register_netdev -EXPORT_SYMBOL vmlinux 0xbc571b5f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xbc81c4ab jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xbc82ea1c __skb_get_hash -EXPORT_SYMBOL vmlinux 0xbca612d4 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xbcab1966 cdev_add +EXPORT_SYMBOL vmlinux 0xbc288755 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xbc34717a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbc395c4e tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xbc42f2e1 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xbc514b38 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xbc5f58ff posix_lock_file +EXPORT_SYMBOL vmlinux 0xbc673834 pci_select_bars +EXPORT_SYMBOL vmlinux 0xbc6ba040 do_SAK +EXPORT_SYMBOL vmlinux 0xbc77f3fd mmc_register_driver +EXPORT_SYMBOL vmlinux 0xbca31758 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xbca415f2 eth_header_cache_update EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb2555f vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xbcd32f74 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xbce3ab79 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0xbd13bd05 folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0xbd1f4804 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xbd1f74e3 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xbd203f43 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xbd24ad5e tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xbd3a3106 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xbd41ec5f proto_unregister +EXPORT_SYMBOL vmlinux 0xbcd65045 udp_poll +EXPORT_SYMBOL vmlinux 0xbcee72f8 ilookup +EXPORT_SYMBOL vmlinux 0xbcf1c0dc free_task +EXPORT_SYMBOL vmlinux 0xbcfa8113 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xbd102cb2 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xbd1442c8 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xbd179f5b skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xbd20122a iov_iter_revert +EXPORT_SYMBOL vmlinux 0xbd20be51 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd51d2f6 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xbd530d28 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xbd585245 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xbd4b641e disk_stack_limits +EXPORT_SYMBOL vmlinux 0xbd5ed286 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd669dc1 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd8df87b __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xbd956599 cdrom_check_events -EXPORT_SYMBOL vmlinux 0xbdd7093c devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xbddd4af8 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xbddfbf8d xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xbdeed9a9 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xbd772db6 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xbd7747e7 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xbd8728ba scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xbd8a071a dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xbdad3f13 _dev_alert +EXPORT_SYMBOL vmlinux 0xbdbd2adf of_graph_is_present +EXPORT_SYMBOL vmlinux 0xbdc22fed request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xbdca5353 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xbdee6a6e napi_get_frags +EXPORT_SYMBOL vmlinux 0xbdf45ff4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xbdf7e861 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xbdf94cc9 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xbe03713e nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xbe0c6611 key_unlink +EXPORT_SYMBOL vmlinux 0xbe109162 param_set_charp EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe186dec phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xbe1eb6b5 sync_blockdev EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp -EXPORT_SYMBOL vmlinux 0xbe3b4efa reuseport_alloc -EXPORT_SYMBOL vmlinux 0xbe3e0b48 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe57f2e6 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xbe5994da param_ops_short +EXPORT_SYMBOL vmlinux 0xbe53a04b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xbe53f2fb udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xbe54a274 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5c2573 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xbe5ee2f7 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xbe6a5b79 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe7bbf5b netif_tx_lock -EXPORT_SYMBOL vmlinux 0xbe7bd2f0 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0xbe89be8b devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xbe955190 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xbe9eaa55 sock_create_lite -EXPORT_SYMBOL vmlinux 0xbea8fcef napi_consume_skb -EXPORT_SYMBOL vmlinux 0xbec86f45 udp_poll -EXPORT_SYMBOL vmlinux 0xbef1a61f mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xbef2d8bd wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xbe71683b mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xbe8cf9f9 complete_request_key +EXPORT_SYMBOL vmlinux 0xbea6e678 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xbeb8d9e0 kernel_accept +EXPORT_SYMBOL vmlinux 0xbecf3011 bio_copy_data +EXPORT_SYMBOL vmlinux 0xbed7c42a tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xbedcf749 eth_type_trans +EXPORT_SYMBOL vmlinux 0xbee470f2 vfs_link +EXPORT_SYMBOL vmlinux 0xbee90d2e dm_table_get_md +EXPORT_SYMBOL vmlinux 0xbeefe091 backlight_device_unregister EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbefa64a3 dev_mc_init -EXPORT_SYMBOL vmlinux 0xbf03ee09 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xbf07de52 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xbf16c490 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xbefd37ff datagram_poll +EXPORT_SYMBOL vmlinux 0xbeffb9c0 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xbf18e268 vfs_readlink +EXPORT_SYMBOL vmlinux 0xbf1f7de3 keyring_clear +EXPORT_SYMBOL vmlinux 0xbf2031aa phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xbf2e4c22 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xbf45aafc qdisc_hash_add EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6499b6 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xbf74a3c6 iput -EXPORT_SYMBOL vmlinux 0xbf760de6 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xbf7e6498 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xbf8f3768 copy_highpage -EXPORT_SYMBOL vmlinux 0xbf9b0d0c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xbf717360 param_get_invbool +EXPORT_SYMBOL vmlinux 0xbf7acd79 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa3f0d9 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbf9e7553 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfcba18d skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbfaeb020 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xbfb4caa1 km_policy_expired +EXPORT_SYMBOL vmlinux 0xbfc6b754 skb_queue_head EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfce187a qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xbfcedfda configfs_register_group -EXPORT_SYMBOL vmlinux 0xbff8cdb0 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc02ab140 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xc0336c9c sk_error_report +EXPORT_SYMBOL vmlinux 0xc035d3d0 bpf_map_get EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc0454fff genphy_suspend -EXPORT_SYMBOL vmlinux 0xc0495948 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xc04a3280 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xc04dfc39 vme_master_request +EXPORT_SYMBOL vmlinux 0xc03c0c85 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xc041bbaf jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xc04d4d51 vfs_fileattr_get 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 0xc08df352 backlight_force_update EXPORT_SYMBOL vmlinux 0xc08e7a05 nla_reserve -EXPORT_SYMBOL vmlinux 0xc09798e3 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xc09f07d3 block_read_full_folio -EXPORT_SYMBOL vmlinux 0xc0aca751 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xc0c9b53f dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xc0d444b0 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xc0947bd9 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc0a1ef46 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xc0d7fa52 mpage_read_folio +EXPORT_SYMBOL vmlinux 0xc0e1ab6c xfrm6_rcv_tnl 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 0xc1188aeb seq_file_path +EXPORT_SYMBOL vmlinux 0xc0fffae9 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xc10ac018 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc1442705 fb_show_logo +EXPORT_SYMBOL vmlinux 0xc11ec604 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc13eefaf dev_load EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc150888b ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15491a7 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xc15225e4 genl_unregister_family EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc15842e8 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xc15ac44a sock_efree +EXPORT_SYMBOL vmlinux 0xc15f5a6b netpoll_parse_options EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16be5d7 mpage_read_folio -EXPORT_SYMBOL vmlinux 0xc1b51cbe __phy_resume -EXPORT_SYMBOL vmlinux 0xc1bfe28f of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xc1cecb87 kmem_cache_alloc_lru -EXPORT_SYMBOL vmlinux 0xc1d4a5ac dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc193b07d genphy_update_link +EXPORT_SYMBOL vmlinux 0xc1a0bb80 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xc1b9fe4d param_set_bint +EXPORT_SYMBOL vmlinux 0xc1c80f14 inet_put_port +EXPORT_SYMBOL vmlinux 0xc1ca5485 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xc1d4c2b4 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1de915a blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xc1da0d51 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xc1dbce36 touch_atime EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1f5a156 pci_clear_master EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc211e7fe fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0xc21d812b consume_skb -EXPORT_SYMBOL vmlinux 0xc21f9ead rpmh_write_async +EXPORT_SYMBOL vmlinux 0xc208e267 mmc_release_host +EXPORT_SYMBOL vmlinux 0xc20b7bbd __getblk_gfp +EXPORT_SYMBOL vmlinux 0xc20bd42f flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xc216c09e kobject_del EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc28c404b twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xc2953aa6 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc23e8da1 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc2486670 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xc26d84ca mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xc2829248 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xc29ad899 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2b797b6 devm_release_resource +EXPORT_SYMBOL vmlinux 0xc2b3ee81 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xc2c56fe5 seq_open EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xc2d06dd6 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xc2cbe19f pci_set_power_state EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e43c49 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e6c99d drop_super +EXPORT_SYMBOL vmlinux 0xc2ec3eb8 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc301f9fb eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc305137b rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3175e73 inet_getname EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc336df42 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc3431fc5 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xc3462001 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xc361f161 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc3651510 security_inet_conn_established EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37653ad blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xc3782154 vme_init_bridge EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38b5f38 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38f5143 devm_memremap -EXPORT_SYMBOL vmlinux 0xc38fe403 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xc396af90 dquot_operations -EXPORT_SYMBOL vmlinux 0xc3991e1e udp6_set_csum -EXPORT_SYMBOL vmlinux 0xc3accb8b tcp_sendpage +EXPORT_SYMBOL vmlinux 0xc3927bc7 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xc3b4a34b bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xc3c70ec4 md_register_thread EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d3661f mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xc3e0706d get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xc3eeb697 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xc3efe974 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xc3e97cdd dm_register_target EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc4141aab tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xc4089987 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4223f8c __udp_disconnect +EXPORT_SYMBOL vmlinux 0xc4295d6e _dev_notice +EXPORT_SYMBOL vmlinux 0xc4296196 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc434a702 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xc44a7395 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc4345321 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xc4374800 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xc43afae9 tso_start EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc4679077 nf_log_trace -EXPORT_SYMBOL vmlinux 0xc46e4cbc tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xc461298d of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc471f02e gro_cells_receive +EXPORT_SYMBOL vmlinux 0xc4764a7b jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc478ccc0 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xc47bdbee dm_kobject_release -EXPORT_SYMBOL vmlinux 0xc4932f23 of_clk_get -EXPORT_SYMBOL vmlinux 0xc494b351 __folio_lock -EXPORT_SYMBOL vmlinux 0xc498a1b6 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xc49f8781 dm_table_event +EXPORT_SYMBOL vmlinux 0xc4abed3a __register_binfmt EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4d8680b kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xc4d909b4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xc4e49b9d try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xc4ed15df dma_resv_fini -EXPORT_SYMBOL vmlinux 0xc51fbe5d devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc4b47105 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc4ebd763 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xc4eea396 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xc4fc6c9a param_array_ops +EXPORT_SYMBOL vmlinux 0xc515d1a7 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc5177883 unlock_rename +EXPORT_SYMBOL vmlinux 0xc51b6067 param_get_charp +EXPORT_SYMBOL vmlinux 0xc5200966 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc52a13f2 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0xc533e4ea vm_insert_page -EXPORT_SYMBOL vmlinux 0xc53ba6f9 folio_unlock +EXPORT_SYMBOL vmlinux 0xc52b86f6 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xc5389ac1 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xc5469a09 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xc548c15c add_watch_to_object +EXPORT_SYMBOL vmlinux 0xc54d2d1a alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xc55be5d5 rproc_boot +EXPORT_SYMBOL vmlinux 0xc5638248 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc575c174 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xc5781da6 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xc578518c flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc57df791 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc5838c90 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc59020e5 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59b2616 rproc_free +EXPORT_SYMBOL vmlinux 0xc59ffde8 pci_find_bus EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5a34334 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xc5a3e79d iget_locked +EXPORT_SYMBOL vmlinux 0xc5a52c75 of_node_name_eq EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5b84c32 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xc5c90f7c __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xc5d01ee8 regset_get -EXPORT_SYMBOL vmlinux 0xc5e60df7 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc5b7fb6c iptun_encaps +EXPORT_SYMBOL vmlinux 0xc5c47a24 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xc5cb3375 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xc5d38b09 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xc5e5a07c clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5fd8658 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xc60cd4b0 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc5ee3861 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xc5fe1d4f skb_checksum EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60e446a ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xc6161b7c ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6270a70 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6326c14 ps2_begin_command EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63407f8 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xc63ae922 proc_create +EXPORT_SYMBOL vmlinux 0xc65c8865 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc65ef927 tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66b147e pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xc676ef22 ip_local_deliver -EXPORT_SYMBOL vmlinux 0xc689c7d3 filp_close -EXPORT_SYMBOL vmlinux 0xc68c92ad dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc699e7b4 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc673e27a bio_add_page +EXPORT_SYMBOL vmlinux 0xc67571e5 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc68cf1c2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc68f23a8 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xc6962724 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a505d5 pnp_is_active -EXPORT_SYMBOL vmlinux 0xc6b37d3c __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xc6b6c462 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xc6caeb06 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e069ad skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xc6ebf138 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xc6dc7d50 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc6dd3ab4 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xc6eb5fd3 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f70a7c ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xc6fabac4 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xc6fe555a xen_alloc_ballooned_pages -EXPORT_SYMBOL vmlinux 0xc7046421 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7113af7 __inet_hash EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc73c3fe1 ilookup -EXPORT_SYMBOL vmlinux 0xc743ec51 simple_rmdir -EXPORT_SYMBOL vmlinux 0xc74ef75a pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0xc76f3ab1 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xc7700e18 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xc77436de i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc7252a21 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc72863f2 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xc731e477 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xc755fb99 free_netdev +EXPORT_SYMBOL vmlinux 0xc75a4cfe generic_write_checks +EXPORT_SYMBOL vmlinux 0xc7611fc3 param_ops_byte +EXPORT_SYMBOL vmlinux 0xc7657b8b xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xc7790217 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xc77f56a1 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7902c47 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xc79da6bc xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc79c869c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xc7a4f802 __breadahead EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a5eb65 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xc7a95ec6 iov_iter_kvec EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7b36a0c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xc7b62b57 finish_no_open -EXPORT_SYMBOL vmlinux 0xc7ba8099 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xc7bd53d7 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xc7b25892 inet_frag_kill EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d1205e dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xc7e0c479 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xc7e8d29f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xc7fb1966 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xc7ff7206 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xc7f8c792 pcim_iounmap EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc81d6a3c dquot_acquire -EXPORT_SYMBOL vmlinux 0xc82a1032 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xc82eab99 kern_unmount_array EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc83f465a uart_suspend_port -EXPORT_SYMBOL vmlinux 0xc8428e62 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xc83ed9ea ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xc8462d0e security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84b60c2 eth_header -EXPORT_SYMBOL vmlinux 0xc84d18c9 netdev_change_features -EXPORT_SYMBOL vmlinux 0xc84dc39e xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc84be9f6 seq_read_iter +EXPORT_SYMBOL vmlinux 0xc8527676 skb_store_bits +EXPORT_SYMBOL vmlinux 0xc854430d devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xc8659fd3 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xc866e4ab unpin_user_page EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87e3d2d sock_set_mark +EXPORT_SYMBOL vmlinux 0xc874aa85 register_framebuffer +EXPORT_SYMBOL vmlinux 0xc87d9958 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xc8805576 filemap_alloc_folio EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc883f048 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xc88c4dc6 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8930627 dec_node_page_state EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b39a81 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xc8c2914c netdev_alert EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8dedabb pci_free_irq -EXPORT_SYMBOL vmlinux 0xc8ee8ac9 dma_find_channel -EXPORT_SYMBOL vmlinux 0xc90fbaca xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xc91113ce flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xc900e17f nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xc9088324 udp_read_skb EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc921257e dmam_pool_create -EXPORT_SYMBOL vmlinux 0xc934185b udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94386b7 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xc94e09bb netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xc947fe95 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc95b9970 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96d9e07 mmc_get_card EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc994e887 follow_pfn +EXPORT_SYMBOL vmlinux 0xc985f6ff scsi_register_interface +EXPORT_SYMBOL vmlinux 0xc9994e9e i2c_verify_client +EXPORT_SYMBOL vmlinux 0xc99abef6 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a2deff ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xc9a4be24 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xc9ab5fcf dquot_quota_on -EXPORT_SYMBOL vmlinux 0xc9aeec6f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xc9bb89f6 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xc9d95e1d tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xc9d9d2cf ethtool_notify -EXPORT_SYMBOL vmlinux 0xc9de7cf3 netdev_state_change +EXPORT_SYMBOL vmlinux 0xc9a02ac5 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc9a36583 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xc9befb10 udp_seq_next +EXPORT_SYMBOL vmlinux 0xc9c21b68 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xc9d242b2 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xc9dd5c19 mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e6d168 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc9ea598c tcp_md5_do_del EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9f329d4 ps2_end_command +EXPORT_SYMBOL vmlinux 0xca128fbb tty_do_resize EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca208bad skb_set_owner_w EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2649f2 fb_pan_display -EXPORT_SYMBOL vmlinux 0xca31814a pci_release_resource +EXPORT_SYMBOL vmlinux 0xca341389 dcache_readdir +EXPORT_SYMBOL vmlinux 0xca3455fc dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xca3b06f2 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4a53f0 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xca52d33c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xca4bc55e netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xca4e6170 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xca4ed88a inet_select_addr +EXPORT_SYMBOL vmlinux 0xca5b55d6 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xca60be3b dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca7bad11 __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0xca8243bc inet_del_offload +EXPORT_SYMBOL vmlinux 0xca646467 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xca691f91 d_lookup +EXPORT_SYMBOL vmlinux 0xca6ac25d inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xca79b63a unregister_nls +EXPORT_SYMBOL vmlinux 0xca8169fa sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xca862b49 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xca89b5b0 __generic_file_fsync EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9404ba tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xca949ecb nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xca940f49 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcaa4696a sock_no_linger +EXPORT_SYMBOL vmlinux 0xcac547f9 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xcac77821 done_path_create EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadb3cc3 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xcae3495d _dev_emerg -EXPORT_SYMBOL vmlinux 0xcae36a4e ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xcaf443a9 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xcae3ef21 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xcafae7b4 inode_permission EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb058a59 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xcb1a92b3 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xcb03a747 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xcb107ecb __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xcb1728ec of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb5ef564 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xcb3d90b8 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xcb431354 napi_enable +EXPORT_SYMBOL vmlinux 0xcb45389e seq_file_path +EXPORT_SYMBOL vmlinux 0xcb570c19 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xcb7329e6 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb863d51 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xcb8865fd xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xcb8e0d4b qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xcb932ee6 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xcb94a3dd inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xcb981b56 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xcbbb4be3 bioset_init -EXPORT_SYMBOL vmlinux 0xcbbcb162 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xcb7ec714 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xcbaa6fec reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xcbb089fe kernel_write EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc69c7d bdi_put -EXPORT_SYMBOL vmlinux 0xcbc810ea crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xcbc8b4fc config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcbc92a2b fqdir_init EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd59ab0 folio_end_writeback -EXPORT_SYMBOL vmlinux 0xcbd74fde nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xcbe41e96 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xcbe779af scmd_printk -EXPORT_SYMBOL vmlinux 0xcbf0d6d3 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xcbdac273 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xcbfb0766 __icmp_send EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcbfbc1d4 module_layout -EXPORT_SYMBOL vmlinux 0xcbfbd2d2 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xcc076df7 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xcc185d98 phy_trigger_machine EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xcc2d530b param_ops_hexint EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc41da05 sock_pfree +EXPORT_SYMBOL vmlinux 0xcc426992 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc506bde md_update_sb +EXPORT_SYMBOL vmlinux 0xcc587558 key_validate EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc64c43c sock_setsockopt -EXPORT_SYMBOL vmlinux 0xcc7514e7 skb_push -EXPORT_SYMBOL vmlinux 0xcc7ea2e8 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xcc87045f put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xcc9a413d call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xcc9aba26 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xcc64006a mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xcc793711 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xcc81447d pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccc22c18 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xccc6e001 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xcccdcc11 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xccf722ef flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0xcce7abe4 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xccf2556d kernel_getsockname 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 0xcd07ce5c get_inode_acl -EXPORT_SYMBOL vmlinux 0xcd0e4552 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xcd0ff995 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xcd10550e param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xcd1682c7 input_close_device +EXPORT_SYMBOL vmlinux 0xcd15cbec fs_lookup_param EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd517d22 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xcd5bae60 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xcd8589a7 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xcd2882ea memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xcd30f245 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xcd3683d3 proc_set_user +EXPORT_SYMBOL vmlinux 0xcd3bc584 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xcd3bca78 of_root +EXPORT_SYMBOL vmlinux 0xcd4acd3e single_release +EXPORT_SYMBOL vmlinux 0xcd4cf712 __break_lease +EXPORT_SYMBOL vmlinux 0xcd549551 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0xcd6f8875 pci_free_irq EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8d49b5 tcp_read_skb -EXPORT_SYMBOL vmlinux 0xcd90f09e pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xcd9d92b5 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xcdaef9cf default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xcdbd3329 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcd9a8509 input_copy_abs +EXPORT_SYMBOL vmlinux 0xcda252b3 has_capability +EXPORT_SYMBOL vmlinux 0xcda51465 netdev_printk +EXPORT_SYMBOL vmlinux 0xcda571ee inet_recvmsg +EXPORT_SYMBOL vmlinux 0xcdadd786 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xcdb8852f lock_two_nondirectories EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcfb489 __i2c_transfer EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce22d494 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xce0fd770 vif_device_init +EXPORT_SYMBOL vmlinux 0xce10ea1e generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce28c3da key_put -EXPORT_SYMBOL vmlinux 0xce2a15c9 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xce4adc13 md_error +EXPORT_SYMBOL vmlinux 0xce34474d pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r 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 0xce7a8854 seq_release_private EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce80c9d5 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xce8bfb7e generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xce99b6e9 devm_request_resource +EXPORT_SYMBOL vmlinux 0xce997de2 tty_hangup +EXPORT_SYMBOL vmlinux 0xcea49238 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebef80f sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xcec6cdce dst_init EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced99b5e dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xcef1136b cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xcef2c4b8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xcefacfb5 simple_recursive_removal EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf047f80 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xcf20f49b netpoll_setup -EXPORT_SYMBOL vmlinux 0xcf21c765 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xcefe56d3 free_buffer_head +EXPORT_SYMBOL vmlinux 0xcf10af69 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xcf232f91 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf3a7a8f fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xcf2f19b5 mount_nodev EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf450ce4 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xcf3bf4d0 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xcf4027c5 mii_check_media +EXPORT_SYMBOL vmlinux 0xcf425a7f neigh_destroy +EXPORT_SYMBOL vmlinux 0xcf48b5b7 fd_install +EXPORT_SYMBOL vmlinux 0xcf4aecfc __pci_register_driver EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf57e4a8 __napi_schedule -EXPORT_SYMBOL vmlinux 0xcf631885 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xcf5312e8 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xcf5fc726 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xcf74cfd3 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xcf826258 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xcf87a05c xfrm_register_km EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfae0129 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xcfb7f0d3 km_policy_expired -EXPORT_SYMBOL vmlinux 0xcfbd2ca4 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xcfc331c4 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xcfa86fea uart_match_port +EXPORT_SYMBOL vmlinux 0xcfbe4811 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfca6ca7 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xcfd22503 file_modified +EXPORT_SYMBOL vmlinux 0xcfcc61db pskb_extract EXPORT_SYMBOL vmlinux 0xcfd4978f __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe36b7a xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfedf3dd mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xcfef8a62 fwnode_iomap -EXPORT_SYMBOL vmlinux 0xd011619c blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xd0147294 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xd02acc48 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xd032abcf neigh_update +EXPORT_SYMBOL vmlinux 0xcfeb9e2d pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xd0220f54 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xd03dacc6 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04cc73d inet_sock_destruct EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd065e159 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd073f3df nf_reinject EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0866747 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0cf234d pneigh_lookup -EXPORT_SYMBOL vmlinux 0xd0e75b21 mii_check_media -EXPORT_SYMBOL vmlinux 0xd0f64e55 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xd10c6893 dev_close -EXPORT_SYMBOL vmlinux 0xd11f476e noop_dirty_folio -EXPORT_SYMBOL vmlinux 0xd129aaf1 scsi_done_direct -EXPORT_SYMBOL vmlinux 0xd12af673 dev_mc_del +EXPORT_SYMBOL vmlinux 0xd0c0abcb generic_read_dir +EXPORT_SYMBOL vmlinux 0xd0c2341e netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xd0e0ca6d dm_get_device +EXPORT_SYMBOL vmlinux 0xd0f9ec29 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd0fb292b jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xd10e9489 blk_put_queue +EXPORT_SYMBOL vmlinux 0xd11fae7d seq_open_private EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd14e74a7 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xd163a25d file_open_root +EXPORT_SYMBOL vmlinux 0xd13861bd nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xd13d5143 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xd150acc1 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19e5003 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xd1a729f8 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xd1accbcc mmc_release_host -EXPORT_SYMBOL vmlinux 0xd1add16a seq_dentry -EXPORT_SYMBOL vmlinux 0xd1d547c0 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xd19b65de blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd1c1024a vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f4fdaa nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xd1f98407 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xd1f9b740 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd21c39c9 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd206928b xp_can_alloc +EXPORT_SYMBOL vmlinux 0xd21162af tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd230e7f7 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xd2335ec1 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd23f8c69 dump_page -EXPORT_SYMBOL vmlinux 0xd23fde4b ip_frag_init -EXPORT_SYMBOL vmlinux 0xd240e906 kill_fasync +EXPORT_SYMBOL vmlinux 0xd2287200 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xd22f56bd sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xd23df434 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd24725ee fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25a1f57 mpage_writepages EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd262b976 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xd272d127 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xd2760bd8 __put_user_ns EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2a1b0aa pci_write_config_word -EXPORT_SYMBOL vmlinux 0xd2a4af66 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xd2a6e373 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xd2b824ae pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xd2bc0d5e mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xd2c54399 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xd2ccdfa2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd298b4a0 lock_rename +EXPORT_SYMBOL vmlinux 0xd2bb3b48 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xd2bf1678 mmc_request_done +EXPORT_SYMBOL vmlinux 0xd2c46540 pci_stop_and_remove_bus_device 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 0xd2fa840c unregister_cdrom -EXPORT_SYMBOL vmlinux 0xd302b355 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xd2f9f58e dev_remove_offload EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd322b329 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xd341dca7 make_kuid -EXPORT_SYMBOL vmlinux 0xd350743d input_set_capability +EXPORT_SYMBOL vmlinux 0xd33894da iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xd3520594 retire_super EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd355236d sk_alloc EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35ba97a always_delete_dentry EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd35de71e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd35e6811 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37280d1 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd373531d scsi_add_device EXPORT_SYMBOL vmlinux 0xd378fae9 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd37b425e param_set_charp +EXPORT_SYMBOL vmlinux 0xd381e531 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd38fcdf3 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0xd3a66b7a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xd3a91ad4 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xd3961416 vme_bus_type +EXPORT_SYMBOL vmlinux 0xd3a2dd73 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd3be30b8 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xd3c3d36c dquot_commit +EXPORT_SYMBOL vmlinux 0xd3da0a63 d_make_root EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4215524 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xd4484350 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xd4539cca vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd40ef63f get_tree_nodev +EXPORT_SYMBOL vmlinux 0xd4336693 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xd44821c6 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xd44c1e5a of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xd4553947 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xd456bbc5 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4677b15 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd4697c10 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xd46d69c7 noop_llseek +EXPORT_SYMBOL vmlinux 0xd4636d7e __netif_rx +EXPORT_SYMBOL vmlinux 0xd46889bc netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4850911 dump_skip_to +EXPORT_SYMBOL vmlinux 0xd484d2d2 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xd49df8e3 of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4ad84bd pci_iomap_range EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c31bb0 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xd4cbfa64 inet_frag_find +EXPORT_SYMBOL vmlinux 0xd4cf1d07 pmem_sector_size EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4de6e97 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xd4f27746 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xd4f8511b blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xd5064be8 register_console -EXPORT_SYMBOL vmlinux 0xd5129630 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xd512eb3a sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xd5139e70 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xd5252403 build_skb_around +EXPORT_SYMBOL vmlinux 0xd4d1eda1 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd4ea7896 inode_set_flags +EXPORT_SYMBOL vmlinux 0xd507e583 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd50b8a9b netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xd5104dea param_ops_bint EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd529c1e2 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xd533b444 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd53086ac xp_free EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd53fe762 inet6_release -EXPORT_SYMBOL vmlinux 0xd55a54da page_get_link -EXPORT_SYMBOL vmlinux 0xd55adbb4 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xd5609cb4 inet_frag_find -EXPORT_SYMBOL vmlinux 0xd56fb787 sk_capable -EXPORT_SYMBOL vmlinux 0xd5918734 dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0xd592d2ad jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xd59d8e70 phy_loopback -EXPORT_SYMBOL vmlinux 0xd5a5bba4 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xd5371dae napi_complete_done +EXPORT_SYMBOL vmlinux 0xd5409ef6 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd54952c7 d_delete +EXPORT_SYMBOL vmlinux 0xd54eb31b of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xd552469f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xd5569b6a acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd58191ca tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd58f2530 unregister_console +EXPORT_SYMBOL vmlinux 0xd5936d74 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xd5a04620 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xd5a7129d devm_register_netdev EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cb34ed dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xd5d7f3f7 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd5bfb0f3 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xd5cf13ee pci_write_config_byte EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd605cc55 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xd602cada par_io_of_config EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60d519d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd60f1013 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd6176813 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xd6190871 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xd6196d66 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd62462ab devm_release_resource +EXPORT_SYMBOL vmlinux 0xd625aed3 kernel_listen EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd62f4899 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd632a5cc finish_swait EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd653558a prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xd6592f98 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xd6596e23 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xd6667ad0 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0xd66bad0d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd64d752a max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xd6516cbc drop_nlink +EXPORT_SYMBOL vmlinux 0xd654ab4e pci_find_capability +EXPORT_SYMBOL vmlinux 0xd6662edf folio_wait_bit EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd674cd5d arp_tbl +EXPORT_SYMBOL vmlinux 0xd68af81c netlink_capable EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b56952 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xd6bfae66 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xd6dd235b devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xd6dd2805 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd6b78640 ping_prot +EXPORT_SYMBOL vmlinux 0xd6e9eb7b mount_single EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ecad63 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f97286 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70c51df tcp_close EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat -EXPORT_SYMBOL vmlinux 0xd7215f6a mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xd7273e00 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xd714bf46 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd71cc09e vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase -EXPORT_SYMBOL vmlinux 0xd73c0888 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xd73ba973 call_fib_notifiers EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd753fa84 sock_no_connect +EXPORT_SYMBOL vmlinux 0xd7568d92 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xd77d05b1 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xd7859994 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7adb5e5 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xd7b3bafe pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xd7c24d53 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xd7d10b8c dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dc09ee udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xd7e00753 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd7d7e995 pnp_register_driver EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f3fc4a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xd7efbdc3 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd7f8aadd set_page_writeback +EXPORT_SYMBOL vmlinux 0xd7fb88ac __inet_stream_connect EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd80f7f36 param_get_uint +EXPORT_SYMBOL vmlinux 0xd807d5ba input_register_device EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd826fb4d tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd81ac41e pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd82dc718 dev_deactivate -EXPORT_SYMBOL vmlinux 0xd82f3ccc ndisc_send_skb -EXPORT_SYMBOL vmlinux 0xd82f549e free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xd8345f9a pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd83eb775 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xd84c3b84 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xd863732b __mdiobus_read -EXPORT_SYMBOL vmlinux 0xd8691d5e genphy_update_link -EXPORT_SYMBOL vmlinux 0xd875b9b3 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xd8516784 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xd87235e8 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xd878b3f0 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xd8961bc4 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a4aeda scsi_report_opcode EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8a9d9ab migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xd8abbff0 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8ba41ed param_get_ullong -EXPORT_SYMBOL vmlinux 0xd8c0c02a acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xd8c0f5c9 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xd8c523c8 __fs_parse -EXPORT_SYMBOL vmlinux 0xd8cca730 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xd8d4e9b2 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xd8deb68d xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd8b7b367 ip_frag_next +EXPORT_SYMBOL vmlinux 0xd8d1d204 param_get_uint +EXPORT_SYMBOL vmlinux 0xd8d4ee2b thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e1d7f0 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xd8e894b7 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xd916843a xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xd91bf9a0 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xd91ec3a7 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xd8ee65ca blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd8fca01d reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xd9090e2d uart_update_timeout +EXPORT_SYMBOL vmlinux 0xd90aeeb0 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xd91b68c7 max8925_bulk_write EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd925012b tty_devnum +EXPORT_SYMBOL vmlinux 0xd9251b75 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xd927221b devfreq_update_status EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9490c05 __alloc_skb EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94f602a of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xd950e514 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xd95865b4 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xd95f2d11 filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0xd970b523 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9911016 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0xd9987cd8 make_kprojid +EXPORT_SYMBOL vmlinux 0xd987ea9f kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd98f33bc pci_map_rom EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9cdd4dc sock_recvmsg -EXPORT_SYMBOL vmlinux 0xd9d66fd3 tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9dde4a0 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xda01f79b dev_mc_add EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda38a91b netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda48df55 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xda4b93ea dst_release -EXPORT_SYMBOL vmlinux 0xda539282 cdev_del -EXPORT_SYMBOL vmlinux 0xda83fd5f param_get_short -EXPORT_SYMBOL vmlinux 0xda8b45dd pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xda8c2c59 devm_iounmap -EXPORT_SYMBOL vmlinux 0xda95f65b sg_miter_next -EXPORT_SYMBOL vmlinux 0xda9f7dc0 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xda9fb88d fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xdaa123eb ppp_input_error -EXPORT_SYMBOL vmlinux 0xdaabc324 nf_log_packet -EXPORT_SYMBOL vmlinux 0xdaabc5a7 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xdabca9b7 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xda3e213d platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xda4aba16 dst_release +EXPORT_SYMBOL vmlinux 0xda5b106c cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xda979cd2 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xdaba2810 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdaddb7c7 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xdae409a8 sock_from_file -EXPORT_SYMBOL vmlinux 0xdae42fe1 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xdafbb488 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xdb13086a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xdb1faf2c rproc_add -EXPORT_SYMBOL vmlinux 0xdb307cc8 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xdb4f9097 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xdae0aef9 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xdb08bcf5 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xdb17fbcf netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xdb1a3dd1 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xdb21a921 kern_path +EXPORT_SYMBOL vmlinux 0xdb25bed2 vme_bus_num +EXPORT_SYMBOL vmlinux 0xdb2a90c0 bioset_init +EXPORT_SYMBOL vmlinux 0xdb356140 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xdb40cb9e nd_integrity_init +EXPORT_SYMBOL vmlinux 0xdb4f1969 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xdb57cdbd fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xdb5a9852 dst_dev_put EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6fc694 igrab +EXPORT_SYMBOL vmlinux 0xdb7600f4 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8cad6d add_to_pipe -EXPORT_SYMBOL vmlinux 0xdba4d06b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xdb7d559f remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xdb894666 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xdb8d0450 submit_bh +EXPORT_SYMBOL vmlinux 0xdb9281cf simple_fill_super EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbedd378 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xdbe5ec03 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xdbe9e08c __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xdbef287d pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xdc0cc69a __dquot_transfer EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc18a83b scsi_scan_host +EXPORT_SYMBOL vmlinux 0xdc24ca9c scmd_printk +EXPORT_SYMBOL vmlinux 0xdc2c5e4a xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3b22b2 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xdc3db534 tcf_action_exec EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xdc468d42 make_kprojid EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc58b567 pci_map_rom -EXPORT_SYMBOL vmlinux 0xdc8ded4c skb_vlan_push -EXPORT_SYMBOL vmlinux 0xdc9496c4 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xdc9a8012 get_watch_queue +EXPORT_SYMBOL vmlinux 0xdc5d8a26 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xdc7e8a02 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xdc86f610 load_nls +EXPORT_SYMBOL vmlinux 0xdca28383 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcacf4a0 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbd9889 find_vma EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdccd11e5 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xdcd9b68a path_get +EXPORT_SYMBOL vmlinux 0xdcc54489 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xdccecc45 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcf530f0 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd08c946 phy_write_paged EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2b611a netif_rx EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd40695d vfs_mkdir EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xdd62004d devm_clk_get +EXPORT_SYMBOL vmlinux 0xdd505221 vme_irq_request +EXPORT_SYMBOL vmlinux 0xdd50f3d3 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xdd52fb2f show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd65e2a1 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xdd675833 security_sock_graft +EXPORT_SYMBOL vmlinux 0xdd6bf8af arp_send EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd819587 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd876ec6 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0xdd93c544 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xdd9798ec vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xdda93874 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddad88f2 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xddb67b98 fsync_bdev -EXPORT_SYMBOL vmlinux 0xddcf4d69 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xddd60711 mmc_add_host +EXPORT_SYMBOL vmlinux 0xdde5d4a8 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0xdde810cc dns_query +EXPORT_SYMBOL vmlinux 0xddedadac amba_driver_unregister EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde0c78a2 param_set_ulong -EXPORT_SYMBOL vmlinux 0xde26259f __quota_error +EXPORT_SYMBOL vmlinux 0xde210bba rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde32af48 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xde393eba cdev_set_parent +EXPORT_SYMBOL vmlinux 0xde2fb75f fget_raw EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde5452ca set_cached_acl -EXPORT_SYMBOL vmlinux 0xde547d0b __mdiobus_register -EXPORT_SYMBOL vmlinux 0xde5d8bfc pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xde50ff09 pipe_lock EXPORT_SYMBOL vmlinux 0xde67419e sg_split -EXPORT_SYMBOL vmlinux 0xde6de813 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xde770e4e dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xde7e9917 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xde93b1c0 dst_dev_put -EXPORT_SYMBOL vmlinux 0xdea9297d inode_get_bytes +EXPORT_SYMBOL vmlinux 0xde700200 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xde8d83a5 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xde91af8a __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xde984317 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xdeab78ac scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xdeb9f48d devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xdecbd8e8 wake_up_process EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee70189 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xdef0ccf0 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xdef227e2 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xded6ebc7 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xdee170bf component_match_add_release EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf057e60 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xdf1d920c dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf26844a of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xdf25d216 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2e047c file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xdf354766 d_instantiate_anon EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf42542a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xdf3ea2c6 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xdf4ee373 audit_log_start EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf606aaa kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xdf5f3fc2 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xdf5f6be1 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf7ac9ea qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xdf8048ae vm_insert_pages -EXPORT_SYMBOL vmlinux 0xdf8720ce pci_scan_bus +EXPORT_SYMBOL vmlinux 0xdf6c7966 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdf6ed470 netlink_ack +EXPORT_SYMBOL vmlinux 0xdf83833c kill_pid +EXPORT_SYMBOL vmlinux 0xdf8463dc tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf900256 bio_init EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdfbac76a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xdf9a75fc alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xdfa398f1 vga_get EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd0c990 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfdbb918 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xdfd99fde xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xdfda6a14 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xdfe2009f md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xdfe3a5d1 param_get_short +EXPORT_SYMBOL vmlinux 0xdfe68e07 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xdff25f20 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xdff49207 dev_mc_flush EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe007f72b serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xe00feb85 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xe0127ca7 pci_choose_state -EXPORT_SYMBOL vmlinux 0xe01f0cf5 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xe0047df6 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xe00af2dc peernet2id +EXPORT_SYMBOL vmlinux 0xe00e2573 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xe01ae4af tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe03fcdae tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xe0406892 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe047384d dm_table_get_md -EXPORT_SYMBOL vmlinux 0xe05ed92c proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xe04d4734 touch_buffer +EXPORT_SYMBOL vmlinux 0xe05c401f set_posix_acl EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe0819614 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xe0822ccb padata_set_cpumask EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe090de9a tcf_idr_search EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe09cabcc devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xe0a5e972 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c08550 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xe0c85bea md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xe0db6ddc __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe0cbb5f5 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0xe0d73da4 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xe0d9efec filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xe0ead3b1 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xe0f07de2 find_vma_intersection +EXPORT_SYMBOL vmlinux 0xe0fd30d7 default_llseek EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12e49bb qdisc_offload_dump_helper 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 0xe15255b7 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xe154b4ec unload_nls -EXPORT_SYMBOL vmlinux 0xe15795b6 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xe15da8c6 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xe1721881 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xe196dcb0 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0xe19826b3 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xe1b916bd sg_miter_skip -EXPORT_SYMBOL vmlinux 0xe1cb9b9c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xe1445b2e of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xe146956f iov_iter_discard +EXPORT_SYMBOL vmlinux 0xe1691f5b nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xe1893458 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xe199f744 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xe19aaf2c __devm_release_region +EXPORT_SYMBOL vmlinux 0xe19e36c6 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xe1a15fde dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xe1a385bb register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xe1c78ed8 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xe1ccc4ab dcb_setapp EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1fd7b87 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xe1ff2338 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xe2096574 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xe1edd7a1 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe1fc9cd4 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xe2054f39 tty_unregister_device EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2246428 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xe2256f8f param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xe2314ff5 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xe2517ca2 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xe253b7a8 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe2559b13 ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0xe26045cd vme_slot_num -EXPORT_SYMBOL vmlinux 0xe266af69 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xe23135c0 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xe23dcebb mdiobus_free +EXPORT_SYMBOL vmlinux 0xe25964b1 d_alloc_name +EXPORT_SYMBOL vmlinux 0xe25d6f6c sock_rfree +EXPORT_SYMBOL vmlinux 0xe263d15b uart_unregister_driver EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe29050f0 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xe28e8f54 scm_fp_dup EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe2ad6818 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xe2c87779 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xe2a9d8b4 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe2cbba2c fs_context_for_mount EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe3046bf1 skb_pull_data -EXPORT_SYMBOL vmlinux 0xe3071ffe fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xe31ea86d writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xe320d4c9 nd_device_notify +EXPORT_SYMBOL vmlinux 0xe2ded25c cdrom_open +EXPORT_SYMBOL vmlinux 0xe2fc64fb dev_close +EXPORT_SYMBOL vmlinux 0xe30665a0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xe3196413 udplite_prot +EXPORT_SYMBOL vmlinux 0xe31a5bfa configfs_register_group +EXPORT_SYMBOL vmlinux 0xe31d424e __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xe326ede2 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3315dd1 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xe3339589 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xe36a1506 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xe36f44cc __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xe373193a page_readlink -EXPORT_SYMBOL vmlinux 0xe38e3f09 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xe33f6873 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xe37bed2d mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xe3842807 dump_skip_to +EXPORT_SYMBOL vmlinux 0xe397c754 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe39a9726 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39e03c8 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3bac595 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xe3dcbb6f __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xe3e11a40 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe3ae3cb6 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xe3e43da1 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ec993d qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xe3ed1691 inet_listen EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4007f74 tty_do_resize -EXPORT_SYMBOL vmlinux 0xe406897a flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0xe406f135 deactivate_super EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe40de763 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xe429ee32 iget_locked -EXPORT_SYMBOL vmlinux 0xe42c4c26 mmc_add_host -EXPORT_SYMBOL vmlinux 0xe42d6fb9 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xe4109fe5 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xe4242105 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe427f0ff tcf_idr_release +EXPORT_SYMBOL vmlinux 0xe432250d nf_ip_checksum EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe4417ab2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe439222d iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xe444f4de __quota_error EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe460bd1a lynx_get_mdio_device EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe466e426 dma_pool_create -EXPORT_SYMBOL vmlinux 0xe4791171 block_write_end -EXPORT_SYMBOL vmlinux 0xe479293f pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xe4a749df __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe4697b29 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xe487eb78 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xe48d065a iget5_locked +EXPORT_SYMBOL vmlinux 0xe4a13d80 setattr_copy EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c5e60b generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xe4cd11bd icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xe4d07f75 generic_writepages -EXPORT_SYMBOL vmlinux 0xe4e16c3c fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xe4e99309 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xe4f93404 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe4d08a74 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xe4d1ed7f __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xe4d5ce51 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xe4e0324f blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xe4e443cc tcp_conn_request +EXPORT_SYMBOL vmlinux 0xe4e9be64 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xe4ef02d3 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xe4f9eee8 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xe4fac6dd __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe500ba1c security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xe5179854 register_key_type +EXPORT_SYMBOL vmlinux 0xe51ee417 udp_gro_complete EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe53278f6 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xe5588f80 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xe5644233 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xe56d7b75 neigh_table_init -EXPORT_SYMBOL vmlinux 0xe5765bcb do_splice_direct +EXPORT_SYMBOL vmlinux 0xe525fa46 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xe52b97d1 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xe55c3119 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xe564c99e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe5666c0e fman_bind +EXPORT_SYMBOL vmlinux 0xe57f560c vfs_fsync_range EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe582eaa4 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xe583ef50 kobject_get -EXPORT_SYMBOL vmlinux 0xe5865c72 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe58693b0 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xe58714ba security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a5f00a scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xe5ad44c7 dst_destroy -EXPORT_SYMBOL vmlinux 0xe5bb43f8 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xe59f3154 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xe5a135e6 pci_save_state +EXPORT_SYMBOL vmlinux 0xe5a759eb input_match_device_id +EXPORT_SYMBOL vmlinux 0xe5b1528f cfb_fillrect +EXPORT_SYMBOL vmlinux 0xe5b6e39d vfs_rmdir EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e1af3a bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xe5f0a07d shmem_aops -EXPORT_SYMBOL vmlinux 0xe5f1c570 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xe60a597f folio_mapping -EXPORT_SYMBOL vmlinux 0xe6219129 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xe637fe67 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xe5ca569e dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xe5cb23bd sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xe5cc80c2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe611b05c netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xe61f2254 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xe623287d of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xe6313c39 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xe6323505 single_open_size EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe686bb5d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xe68d20b5 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe65b8455 file_ns_capable +EXPORT_SYMBOL vmlinux 0xe6644553 seq_read +EXPORT_SYMBOL vmlinux 0xe667c3f0 pci_bus_type EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe6b35620 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe698f44d fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e21dfb init_net -EXPORT_SYMBOL vmlinux 0xe6e73b31 lease_modify +EXPORT_SYMBOL vmlinux 0xe6ece48f bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe6f202c2 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fa1fa8 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xe7225487 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xe72504e5 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72e29f4 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xe7591f0b dev_add_offload -EXPORT_SYMBOL vmlinux 0xe76474cf dst_release_immediate -EXPORT_SYMBOL vmlinux 0xe7692967 can_nice -EXPORT_SYMBOL vmlinux 0xe76cb68b __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xe76d5977 dentry_open -EXPORT_SYMBOL vmlinux 0xe7712c1a __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xe7735d1d kern_path_create -EXPORT_SYMBOL vmlinux 0xe78146ad security_unix_may_send -EXPORT_SYMBOL vmlinux 0xe7993993 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xe72fb296 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xe73462e2 pps_register_source +EXPORT_SYMBOL vmlinux 0xe73d90e9 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xe755b2b6 from_kgid +EXPORT_SYMBOL vmlinux 0xe76889ba twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe775f3b2 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xe7793c84 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe796134a fget EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a9d415 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xe7a5cc32 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7b7458b xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xe7bc4088 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xe7c3f43c vm_map_ram -EXPORT_SYMBOL vmlinux 0xe7cef2ce capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe7c63915 sk_free +EXPORT_SYMBOL vmlinux 0xe7cf4c24 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7df879f truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xe7dfe0fc truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe7e40c83 tcp_filter -EXPORT_SYMBOL vmlinux 0xe7fac7e3 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe7d52648 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xe7e7370b phy_device_free +EXPORT_SYMBOL vmlinux 0xe7e8bd7b wireless_send_event +EXPORT_SYMBOL vmlinux 0xe7ee9d39 setattr_prepare +EXPORT_SYMBOL vmlinux 0xe7f52e6a udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds +EXPORT_SYMBOL vmlinux 0xe804d2bd fs_param_is_bool EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe8186f6e sync_file_create -EXPORT_SYMBOL vmlinux 0xe81ec108 arp_tbl -EXPORT_SYMBOL vmlinux 0xe82a3c12 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xe82f839a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xe856cf39 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xe85c5f99 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xe84d7e22 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe8597bd1 config_item_init_type_name EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86c1692 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xe884a046 skb_trim -EXPORT_SYMBOL vmlinux 0xe886f943 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xe88d0f5a pci_find_capability -EXPORT_SYMBOL vmlinux 0xe890d70d pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xe8964c78 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe8735b8a pci_scan_bus +EXPORT_SYMBOL vmlinux 0xe878d344 inet_sendpage +EXPORT_SYMBOL vmlinux 0xe87c4946 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xe882436c copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xe899813f page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xe8a084f1 framebuffer_release +EXPORT_SYMBOL vmlinux 0xe8b4b18b lynx_pcs_create EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8bb9341 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0xe8be2056 is_bad_inode +EXPORT_SYMBOL vmlinux 0xe8d26812 acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8e00361 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xe8e691aa ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xe8f4e996 tcp_poll +EXPORT_SYMBOL vmlinux 0xe8d36d9e dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xe8dd718c neigh_event_ns +EXPORT_SYMBOL vmlinux 0xe8f545f1 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xe8f5c3a4 __dev_get_by_index EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe8ff7125 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xe8fc0689 param_get_ulong +EXPORT_SYMBOL vmlinux 0xe9004547 genphy_loopback EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe90ce659 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xe910cdfc input_unregister_device EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92f4fee update_region -EXPORT_SYMBOL vmlinux 0xe94484aa tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xe94e117c filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xe926afdd neigh_xmit +EXPORT_SYMBOL vmlinux 0xe9394794 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe93c4ad2 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe93f2e1b sk_reset_timer EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe953ca81 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xe97525f1 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xe978bbe9 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xe9805d9c nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xe98a2710 pci_get_class -EXPORT_SYMBOL vmlinux 0xe9914ad0 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xe997cb7f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xe966ad84 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xe966b949 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xe97c0a68 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xe97c24bb remap_pfn_range +EXPORT_SYMBOL vmlinux 0xe987315f filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xe98ea575 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xe9a54414 xudma_get_device +EXPORT_SYMBOL vmlinux 0xe9a5d2a5 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xe9ac8e71 phy_find_first EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9ba56ef vfs_fadvise -EXPORT_SYMBOL vmlinux 0xe9c71f94 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9e630fc skb_expand_head EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9ee39c7 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xe9efc2fe pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea095208 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xea0c1743 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea288d87 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xea20a9a6 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xea250316 devm_free_irq +EXPORT_SYMBOL vmlinux 0xea2bc351 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xea3236fc __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xea327e2f fs_param_is_enum EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3f670d nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xea4de6d4 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xea5592f6 folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0xea68d8a7 input_reset_device +EXPORT_SYMBOL vmlinux 0xea3d15f4 brioctl_set +EXPORT_SYMBOL vmlinux 0xea45837b __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xea4f3569 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xea57996b mmc_can_erase +EXPORT_SYMBOL vmlinux 0xea5d665e tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xea6a2322 pci_request_region +EXPORT_SYMBOL vmlinux 0xea6cf48d folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea72f9bc configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xea82d56e __brelse -EXPORT_SYMBOL vmlinux 0xea8e4bdf dup_iter -EXPORT_SYMBOL vmlinux 0xea90e22a block_truncate_page -EXPORT_SYMBOL vmlinux 0xeaaafd29 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xeaab1605 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xeab2837e eth_validate_addr +EXPORT_SYMBOL vmlinux 0xea7fe694 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xea8363d4 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xea96ab80 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xeaa5b359 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabe89ac mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xeabbf59f pci_disable_msix +EXPORT_SYMBOL vmlinux 0xeabc121f mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xeabe04c5 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb1aaa20 udp_set_csum +EXPORT_SYMBOL vmlinux 0xeb0ec57d devm_clk_get +EXPORT_SYMBOL vmlinux 0xeb14e74c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xeb177748 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb26b23f rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3b0577 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xeb42fffc backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4a98fd dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xeb525a12 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xeb589dd3 generic_fillattr +EXPORT_SYMBOL vmlinux 0xeb624841 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xeb66dd90 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xeb79def6 timestamp_truncate EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb8e5ddf eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xeb99dcd3 vfs_readlink +EXPORT_SYMBOL vmlinux 0xeb8d37bf tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xeb9dba0c __sk_receive_skb EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeb9fe164 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xeba44f8b nlmsg_notify -EXPORT_SYMBOL vmlinux 0xebb00b3c fman_set_port_params -EXPORT_SYMBOL vmlinux 0xebc94358 netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0xebdcb4cd dev_open +EXPORT_SYMBOL vmlinux 0xeba57844 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xebc481a6 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xebc7674f path_is_under +EXPORT_SYMBOL vmlinux 0xebccca62 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xebd387bb inet_del_offload +EXPORT_SYMBOL vmlinux 0xebe00fee kobject_add +EXPORT_SYMBOL vmlinux 0xebe124bc posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xec0f27d3 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xec18ac63 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xec1d36ae imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xec1f8ff8 copy_highpage +EXPORT_SYMBOL vmlinux 0xec2b8518 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2cbccf dma_fence_describe EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec2e91c2 generic_setlease EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec36ed10 inet_del_protocol EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5a0116 tcp_read_done -EXPORT_SYMBOL vmlinux 0xec770440 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xec890b93 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xec896015 dev_addr_mod -EXPORT_SYMBOL vmlinux 0xec976866 bio_copy_data +EXPORT_SYMBOL vmlinux 0xec5c660d sock_wmalloc +EXPORT_SYMBOL vmlinux 0xec6436df scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xec81f392 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xec91bb57 vc_cons +EXPORT_SYMBOL vmlinux 0xec9ea299 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xeca47739 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xeca72a69 flush_signals EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecabeef0 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xecaea67c fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0xecccb14d __d_drop +EXPORT_SYMBOL vmlinux 0xecac071a bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xecaf43e9 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xecc932ae pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecee6717 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xecf6271e __dec_zone_page_state EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed020cc0 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xed06ae75 vm_map_pages -EXPORT_SYMBOL vmlinux 0xed08e459 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xed1379de generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xed1c14da release_sock -EXPORT_SYMBOL vmlinux 0xed1e79d1 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xed35055d pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xed4ac377 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xed55b3a4 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xed06309e inet6_offloads +EXPORT_SYMBOL vmlinux 0xed0e3dfb udp_seq_ops +EXPORT_SYMBOL vmlinux 0xed2d6cb4 clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5b9cad lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed677943 kernel_read +EXPORT_SYMBOL vmlinux 0xed7ef2a4 vfs_fadvise EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed935eb6 sock_i_uid -EXPORT_SYMBOL vmlinux 0xed9a033d rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xed9afa9f blk_integrity_register -EXPORT_SYMBOL vmlinux 0xed9ec461 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xed8dec85 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xed907797 get_phy_device +EXPORT_SYMBOL vmlinux 0xedb73bc6 cdrom_check_events EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbd7ec9 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd08d88 register_fib_notifier EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xedf0caba ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xee149d5e vlan_vid_add -EXPORT_SYMBOL vmlinux 0xee1525ff iov_iter_advance +EXPORT_SYMBOL vmlinux 0xede07ca8 poll_initwait +EXPORT_SYMBOL vmlinux 0xede7bf05 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xedf6c358 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xee1179fd inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xee2b0f24 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee391a4d blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xee47a4fb input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xee53645c __ip_options_compile +EXPORT_SYMBOL vmlinux 0xee366896 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xee406cef xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xee416fb6 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xee564bc0 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5b8ec6 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xee6ebcd4 phy_disconnect +EXPORT_SYMBOL vmlinux 0xee59bca6 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xee7b121b reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee80af9f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xee7f2c4c xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee91cd12 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec440b6 phy_device_remove -EXPORT_SYMBOL vmlinux 0xeec604ca dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xeed3c96d unix_detach_fds -EXPORT_SYMBOL vmlinux 0xeed7b83c PageMovable -EXPORT_SYMBOL vmlinux 0xeedda7d0 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xeec314de devm_request_resource +EXPORT_SYMBOL vmlinux 0xeecc8c22 pci_dev_get EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeefce880 iterate_dir -EXPORT_SYMBOL vmlinux 0xef1452ef folio_wait_bit -EXPORT_SYMBOL vmlinux 0xef19e4b1 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xef2a8d5a dst_discard_out -EXPORT_SYMBOL vmlinux 0xef3a196d dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xef4345dc dma_async_device_register -EXPORT_SYMBOL vmlinux 0xef764109 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xef7b665f __folio_put +EXPORT_SYMBOL vmlinux 0xef11a38f tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xef15f918 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xef235c42 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xef6e82fe of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb54709 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xefb96fa4 finish_open -EXPORT_SYMBOL vmlinux 0xefbcd30e kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xefcc11ec inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefcebafd security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xefddde95 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xefddff99 pci_request_regions EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff35951 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xeff6df44 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xeffb7642 pci_enable_device -EXPORT_SYMBOL vmlinux 0xf0008cfd seq_vprintf +EXPORT_SYMBOL vmlinux 0xeffab207 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0026f5e dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xf0114176 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xf01147a9 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xf000fae0 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf010ebd8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xf0155441 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf0362fd8 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xf04c353b of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf03774db mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf04097cd bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf05472be __find_get_block +EXPORT_SYMBOL vmlinux 0xf072cc89 udp_set_csum EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf07f1690 dquot_drop -EXPORT_SYMBOL vmlinux 0xf08bd428 mode_strip_sgid EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09f6a52 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0xf0a7c196 simple_release_fs EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0d653eb qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xf1141094 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xf114d55e fiemap_prep -EXPORT_SYMBOL vmlinux 0xf1165e79 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xf0b90ae3 generic_permission +EXPORT_SYMBOL vmlinux 0xf0b9d451 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xf0c18d8e sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xf0c1fa42 input_set_capability +EXPORT_SYMBOL vmlinux 0xf0c8bf33 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xf0cb3ea7 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xf10197ef alloc_buffer_head EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12165c6 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xf123fa37 of_translate_address -EXPORT_SYMBOL vmlinux 0xf136c3c0 skb_eth_push -EXPORT_SYMBOL vmlinux 0xf141aa65 of_device_is_available -EXPORT_SYMBOL vmlinux 0xf1485235 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xf14de3bb peernet2id -EXPORT_SYMBOL vmlinux 0xf1578d0b mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xf1619167 follow_up -EXPORT_SYMBOL vmlinux 0xf1689dcc filemap_map_pages -EXPORT_SYMBOL vmlinux 0xf16abd75 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xf16db4a6 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xf17d27d4 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xf17e3b91 sock_no_accept +EXPORT_SYMBOL vmlinux 0xf127457d inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xf12fb2c7 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf13db2ff adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf15a3857 netdev_state_change +EXPORT_SYMBOL vmlinux 0xf17774aa key_move +EXPORT_SYMBOL vmlinux 0xf17bb094 padata_do_serial +EXPORT_SYMBOL vmlinux 0xf17e2438 __neigh_create EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf1843fac sock_release +EXPORT_SYMBOL vmlinux 0xf194cc1f md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19bc996 eth_header_parse EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream -EXPORT_SYMBOL vmlinux 0xf1b6ff59 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xf1bb0b0e tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xf1bc2c67 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xf1c169da devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xf1c19d38 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xf1c9b04f param_set_byte -EXPORT_SYMBOL vmlinux 0xf1cddefe d_obtain_root -EXPORT_SYMBOL vmlinux 0xf1d35207 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf1bffde4 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xf1c477d1 kill_pgrp +EXPORT_SYMBOL vmlinux 0xf1d45239 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xf1d68a38 seq_escape_mem EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dd960b init_pseudo EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ec5495 request_firmware +EXPORT_SYMBOL vmlinux 0xf1f2a1f0 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf20f8b6a configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xf2073f6e cdev_alloc +EXPORT_SYMBOL vmlinux 0xf226de2e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf2295fa5 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf238d670 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xf23b44c5 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25901d8 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xf24e2303 vc_resize +EXPORT_SYMBOL vmlinux 0xf24f4afe blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xf2573c45 dma_resv_iter_first_unlocked EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf270f0f6 to_nd_dax +EXPORT_SYMBOL vmlinux 0xf2824142 migrate_folio EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf299c4ee task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0xf29afb93 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xf29d1609 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xf29d8d96 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xf2a5ed05 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xf2965b1f qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xf2990086 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2ae2730 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2ce5657 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xf2d66e81 blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0xf2d6d1e7 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xf2dfd86f copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xf2e4832e dqget +EXPORT_SYMBOL vmlinux 0xf2c7050c sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xf2e59de8 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ef85ab flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xf2e6a3b4 vlan_for_each +EXPORT_SYMBOL vmlinux 0xf2ef74c9 super_setup_bdi EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f7f0a5 fc_mount +EXPORT_SYMBOL vmlinux 0xf2f6d95b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf30be575 nd_btt_probe EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31a65bb napi_disable -EXPORT_SYMBOL vmlinux 0xf321de0d pci_save_state +EXPORT_SYMBOL vmlinux 0xf32510dd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf326b432 flow_block_cb_free EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xf335e512 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xf33f08bd genphy_read_master_slave EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34b3d63 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xf34e6930 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xf34fee8b xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35da8e3 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xf35e0205 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xf35bcaea simple_rmdir +EXPORT_SYMBOL vmlinux 0xf35c3a51 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf380ac7c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xf389b373 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xf38b2cab __splice_from_pipe 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 0xf3985741 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xf39ec7a1 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3a72c12 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xf3aaac81 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf3bac891 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xf3c72afe request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xf3c94ca1 of_node_put -EXPORT_SYMBOL vmlinux 0xf3d022fe param_get_byte +EXPORT_SYMBOL vmlinux 0xf3c13805 misc_register +EXPORT_SYMBOL vmlinux 0xf3c27201 md_write_start +EXPORT_SYMBOL vmlinux 0xf3cccf17 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf3d54452 phy_driver_unregister EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e1b1ea rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xf3f8c80e pid_task -EXPORT_SYMBOL vmlinux 0xf437392d ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf3e1b3a0 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf3ecfb64 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xf3f2c4e5 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xf4315c45 mmc_sw_reset EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf4493b79 alloc_pages +EXPORT_SYMBOL vmlinux 0xf442f548 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xf445fda9 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf45db4f7 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xf46d4fde mdio_find_bus +EXPORT_SYMBOL vmlinux 0xf4589963 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf486ec23 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xf48c24ee pci_fixup_device EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf499abf9 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xf49b887d load_nls_default -EXPORT_SYMBOL vmlinux 0xf49d0877 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xf4a9c85c flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0xf4ad5f52 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xf4b0e435 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xf4acc976 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xf4b1ca6d phy_suspend EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bce96b request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xf4d66f36 scsi_device_put +EXPORT_SYMBOL vmlinux 0xf4ba0dbe fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xf4bff8cd md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xf4c26944 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0xf4ce777e sk_common_release EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4dc6ebd dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf4e6b200 user_path_create +EXPORT_SYMBOL vmlinux 0xf4e72af9 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f5dff7 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xf4f72fca noop_qdisc -EXPORT_SYMBOL vmlinux 0xf4ffd52e netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xf5000d4b vfs_fsync -EXPORT_SYMBOL vmlinux 0xf5021f93 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xf50d8889 __folio_alloc EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55c25c3 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xf587b422 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xf590ace4 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xf592184c netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xf59cb8f1 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xf57e97d6 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xf58218d2 kernel_connect +EXPORT_SYMBOL vmlinux 0xf58e4c35 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xf59ce067 mark_info_dirty EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5bc2111 setattr_copy -EXPORT_SYMBOL vmlinux 0xf5c24538 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xf5def888 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xf5e7b874 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xf5c801fb jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xf5d2676e xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xf5d4324a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xf5e494bc __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf5e6bfb1 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5eb6253 mii_check_link -EXPORT_SYMBOL vmlinux 0xf6197b41 seq_printf -EXPORT_SYMBOL vmlinux 0xf6253e3f __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xf5e8afd1 current_in_userns +EXPORT_SYMBOL vmlinux 0xf60ad955 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf60bfc60 ppp_input_error +EXPORT_SYMBOL vmlinux 0xf61009f5 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xf6171bb3 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xf6185609 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf61d2a45 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64fae10 block_write_begin -EXPORT_SYMBOL vmlinux 0xf65810c4 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xf646df83 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xf65839bf __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf65faa82 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66ebe1b cad_pid -EXPORT_SYMBOL vmlinux 0xf67416b1 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf683bbfa qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xf69fc66b dcache_readdir -EXPORT_SYMBOL vmlinux 0xf6b0daf3 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf6cdb822 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf6db72c3 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xf6e288b5 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f8c217 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf6fe00cd i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf70519ed __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xf708f4f3 sget_fc +EXPORT_SYMBOL vmlinux 0xf72ef7d3 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf73176f1 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf75a7092 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xf75b420b generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xf7656445 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xf7659e26 neigh_ifdown EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf76eefdd do_clone_file_range +EXPORT_SYMBOL vmlinux 0xf76d7a75 dev_set_mtu EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf775b2e9 sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0xf77c9cb0 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf79a216f crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xf79f1e0c pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xf7a06ed3 __put_user_ns -EXPORT_SYMBOL vmlinux 0xf7ae1c8d netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xf7b7a06e cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xf781f211 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xf7a70a31 fsync_bdev +EXPORT_SYMBOL vmlinux 0xf7ca291d kmem_cache_create EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7e88c97 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xf7e4e279 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xf7e920c3 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xf7e926cb of_get_next_child EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf809b5e4 tcp_connect -EXPORT_SYMBOL vmlinux 0xf80edbd1 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xf80f5c56 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf7fd2df3 devm_memremap EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf8145954 param_set_copystring +EXPORT_SYMBOL vmlinux 0xf81d5208 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830e559 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xf839023d vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf857bd76 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xf86f672b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf84f623c sync_file_create +EXPORT_SYMBOL vmlinux 0xf85b8a63 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xf85e611c fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xf86591b8 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable -EXPORT_SYMBOL vmlinux 0xf88f052c nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xf891637c scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xf8ae8fa9 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xf87bf1d5 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf8bd58f5 dev_open EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8d3ff77 mdiobb_write -EXPORT_SYMBOL vmlinux 0xf8de25c4 inet6_getname -EXPORT_SYMBOL vmlinux 0xf8f4500b sock_set_priority EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf901dd90 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xf9128c82 aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0xf919dbcf mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf8fd6482 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xf913ea9c param_set_int EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf9215e44 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xf93208c5 address_space_init_once EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xf937f935 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xf938810f iov_iter_alignment EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9413d64 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xf9424802 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xf95410f7 mount_subtree +EXPORT_SYMBOL vmlinux 0xf947ced2 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf94880a4 dev_addr_mod EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf95c82e0 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xf95f8e0f register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next -EXPORT_SYMBOL vmlinux 0xf96df65b netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xf96c6475 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xf96f8dd4 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf973764e d_tmpfile -EXPORT_SYMBOL vmlinux 0xf98e9073 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xf9a364a1 __f_setown -EXPORT_SYMBOL vmlinux 0xf9a4489c rtnl_notify +EXPORT_SYMBOL vmlinux 0xf99d740a rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xf99ed4e2 __remove_inode_hash EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b14b3d grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cd2014 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xf9d0c146 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf9ce2254 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xf9db0934 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08909e pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa1ad334 con_is_visible +EXPORT_SYMBOL vmlinux 0xfa1ee8c1 ppp_input EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa315e1e nonseekable_open -EXPORT_SYMBOL vmlinux 0xfa44188e nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xfa44301a pci_read_vpd +EXPORT_SYMBOL vmlinux 0xfa39e0c6 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xfa4c21c3 param_ops_ushort EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa4fcb34 blkdev_put +EXPORT_SYMBOL vmlinux 0xfa4ee89c pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6555cd phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xfa70c24a vme_register_bridge -EXPORT_SYMBOL vmlinux 0xfa87ae6a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xfa9ebd25 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xfa63a331 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xfa8ac6db neigh_table_init +EXPORT_SYMBOL vmlinux 0xfa909688 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xfa91425d inet_stream_connect EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab13d08 nd_device_register -EXPORT_SYMBOL vmlinux 0xfac299b4 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xfac3f8ed kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfac87601 generic_key_instantiate EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfae92924 ether_setup -EXPORT_SYMBOL vmlinux 0xfb0e7bc4 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xfb13f267 __devm_release_region -EXPORT_SYMBOL vmlinux 0xfb23c62d tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xfad76541 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xfafae664 simple_empty +EXPORT_SYMBOL vmlinux 0xfafd5208 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb37307a __scsi_add_device EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb41ca90 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xfb5985f9 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xfb5d0cf2 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xfb66c67d add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xfb41b113 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xfb4262c0 phy_attach +EXPORT_SYMBOL vmlinux 0xfb53f554 input_event +EXPORT_SYMBOL vmlinux 0xfb5fa70a twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb8a8739 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xfb9f888e get_user_pages_unlocked 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 0xfbbdc052 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xfbb8bdd2 del_gendisk EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc892ff neigh_table_clear EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr 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 0xfbf05c28 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xfbf2705f dump_emit -EXPORT_SYMBOL vmlinux 0xfbfd3d57 set_blocksize -EXPORT_SYMBOL vmlinux 0xfc042809 napi_get_frags -EXPORT_SYMBOL vmlinux 0xfc0f0ece md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xfc15f4da ip6_frag_init -EXPORT_SYMBOL vmlinux 0xfc192a3b folio_add_lru -EXPORT_SYMBOL vmlinux 0xfc1a41e0 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xfc1cbd27 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xfc299d45 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xfbf7caa1 give_up_console +EXPORT_SYMBOL vmlinux 0xfbf98fe1 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xfbfc4976 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xfc299d26 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xfc2b9dbb poll_freewait EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc464ab6 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xfc4aaf5f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xfc51ba87 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc62e95d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xfc5b3171 __splice_from_pipe EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xfc71a434 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xfc72f552 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xfc7343bb finish_swait -EXPORT_SYMBOL vmlinux 0xfc76e788 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xfc6ae34c xp_alloc +EXPORT_SYMBOL vmlinux 0xfc74a9fa skb_condense EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc8a243c mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xfc8d0aa6 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xfc91199e amba_device_register +EXPORT_SYMBOL vmlinux 0xfc9579ae module_layout +EXPORT_SYMBOL vmlinux 0xfc9c52dc dm_kobject_release +EXPORT_SYMBOL vmlinux 0xfc9d63aa inetdev_by_index EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca3cdad padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xfcab7a70 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xfcabf16f __bread_gfp +EXPORT_SYMBOL vmlinux 0xfcbd5e06 blkdev_put +EXPORT_SYMBOL vmlinux 0xfcc65a90 ata_print_version +EXPORT_SYMBOL vmlinux 0xfcccecbd mii_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce23052 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xfce9859b touch_atime +EXPORT_SYMBOL vmlinux 0xfcd5402f jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf302f3 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xfcff9b5c in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xfd11aa03 param_get_bool -EXPORT_SYMBOL vmlinux 0xfd21427d netlink_broadcast -EXPORT_SYMBOL vmlinux 0xfd577991 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xfd037a72 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xfd23a14d fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xfd3b5853 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xfd4c34b3 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xfd538c80 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfd754004 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xfd8a2d88 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xfd8cae75 register_filesystem -EXPORT_SYMBOL vmlinux 0xfdc5ccaf phy_aneg_done +EXPORT_SYMBOL vmlinux 0xfd68ccad tcp_req_err +EXPORT_SYMBOL vmlinux 0xfd6dee7e no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xfd859d65 would_dump +EXPORT_SYMBOL vmlinux 0xfd8efe2b fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xfd8f60ea inet_shutdown +EXPORT_SYMBOL vmlinux 0xfd90c6b5 netif_tx_lock +EXPORT_SYMBOL vmlinux 0xfdb748fc dev_remove_pack EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdee6067 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xfdf5850f uart_resume_port +EXPORT_SYMBOL vmlinux 0xfdd34f27 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xfde6084c ptp_clock_register +EXPORT_SYMBOL vmlinux 0xfdef5391 pci_choose_state EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0609e1 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xfe0a3a69 discard_new_inode -EXPORT_SYMBOL vmlinux 0xfe1809fa sock_no_mmap +EXPORT_SYMBOL vmlinux 0xfe0d8056 try_lookup_one_len EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe20a4c5 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xfe2f5dd5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xfe216af8 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xfe2ab14b pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfe2c8dd4 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xfe338843 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xfe3b89e2 key_invalidate EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe502426 mdio_find_bus EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5e78be flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xfe5ecba7 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xfe791b60 iov_iter_init +EXPORT_SYMBOL vmlinux 0xfe7a1fb4 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9a2178 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xfe9d192d get_unmapped_area +EXPORT_SYMBOL vmlinux 0xfe986e6a __devm_request_region EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea5c3ac dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xfebb5f8d flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xfebf95de scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xfec5e2d3 set_create_files_as -EXPORT_SYMBOL vmlinux 0xfed34374 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xfed88387 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xfea45ae5 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xfeb354bd of_get_next_parent +EXPORT_SYMBOL vmlinux 0xfed2a839 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff12f93d dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xff11c54f param_set_ulong +EXPORT_SYMBOL vmlinux 0xff1b08b7 mmc_retune_pause EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff4e77fb register_key_type -EXPORT_SYMBOL vmlinux 0xff57cbb6 get_vm_area -EXPORT_SYMBOL vmlinux 0xff5b61b8 sk_free +EXPORT_SYMBOL vmlinux 0xff5da7d7 vga_client_register EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6cc351 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xff71ef38 param_ops_string EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff82b183 nf_ct_attach EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8a48a9 set_user_nice -EXPORT_SYMBOL vmlinux 0xff926bc2 sock_create -EXPORT_SYMBOL vmlinux 0xff99ac50 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xffb1ff67 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xffa16324 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xffa2e434 tcp_check_req EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffb9abdc mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffce2f33 sync_blockdev -EXPORT_SYMBOL vmlinux 0xffdd66ed vme_irq_free -EXPORT_SYMBOL vmlinux 0xffe13c37 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xffe30c42 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xffea5b32 may_umount -EXPORT_SYMBOL vmlinux 0xffeaa72b __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xffeec18f amba_driver_register +EXPORT_SYMBOL vmlinux 0xffde4c9e mdio_device_register +EXPORT_SYMBOL vmlinux 0xffe5dec3 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL crypto/af_alg 0x031d4fb5 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x31c68adf af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x3ad28d0c af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x497732cb af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x6c19d9e9 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x81fcda03 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x87157802 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x9498fdb6 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x97cfb96c af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x9d9c5687 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xaff87296 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xb1e0ef07 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xb5136e3e af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xc00762fc af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc4111b60 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xc8f912c7 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xec69bcb0 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xf73c8f79 af_alg_poll -EXPORT_SYMBOL_GPL crypto/aria_generic 0x09e64a82 aria_set_key +EXPORT_SYMBOL vmlinux 0xfff3ac7a km_query +EXPORT_SYMBOL_GPL crypto/af_alg 0x01cf0511 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x12a33548 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x20a98050 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3d96ae9e af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x5a5c4aac af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x674f7458 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x696e0af5 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6b02b9a5 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x9eba3074 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xa2171d0e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xb755e8f7 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xc5f86f6c af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd839769a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xdefaf7b4 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xf89719c4 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf915ba43 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xfd508752 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xffa4ad47 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/aria_generic 0x2582014d 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 0x00919b65 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8c2a4d22 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf6dc809d async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9dcd1a31 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb69b8fee async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x01d09f87 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7bb9fd7f async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7bbc48fe async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb3d9c9db __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x754d861c async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb332e39f async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd2424d3d async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd5f9768f async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6446c252 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x575007ed async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc9146078 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x81b04ef3 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xab417b0f async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x158670f0 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc6deafd8 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcb989b87 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfe143c79 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x394f2d97 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x49e90ebf async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5b60c2fb async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8fa97d01 async_xor EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x745d26b6 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2886aaf5 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x07c570c0 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x52dd4e0f cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x39369b1c 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 0xe30c19b1 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 0x292a6ced cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x29559715 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x55ef4979 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x7aa51b0d cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x7cbc6d76 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xbfb4675a cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xc5736c74 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xc67fd6f9 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd5ab39f0 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xe2494381 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xe283d93d cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xe9036042 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xefadc789 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00b1c437 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x16f4fe74 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c2fdd45 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x34788d45 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3c216832 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4598df50 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x75adb0e7 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x96142db1 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9b346944 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaee1f9f4 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb35133a6 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc2a5031f crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd565d349 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6473171 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1ef19a4 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x103e0f58 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1117469a cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x12d468cc cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x39edde20 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3d54672a cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x424600f6 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x56de89cb cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x60b4b59b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8d28e92f cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x9606e59a cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xaec41779 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb8eb0ffa cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc904edd1 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1121c038 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x21bfca30 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39b77bf4 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ee6dbd2 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6feff476 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x78961383 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x90b74243 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95abfaf2 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9c934151 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa92d345f crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcaa574f4 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcf4481bb crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde96b22f crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe8e97fff crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf834a83a crypto_transfer_kpp_request_to_engine 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 0x9276355a 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 0xe661a328 serpent_setkey 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 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xf366a793 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xec8f49b5 twofish_setkey EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x106a264b spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0c121bd0 spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2c019986 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2c2b2ee1 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x39a49e19 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1eba0631 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x26cfe565 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x36222da3 spk_do_catch_up_unicode 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 0x48e4625f spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x58562741 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5effd949 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x62782de9 synth_add 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 0x88cc4507 spk_synth_get_index EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8f7ea66f spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x97c1920b spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa5197f06 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9ae8bd54 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa57c4c17 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa91cdb87 spk_synth_is_alive_nop 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 0xc319c604 synth_putws_s EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd102d9e1 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc7210541 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd59d9e83 spk_ttyio_ops 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 0xdd74fbaf spk_var_show EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe31cd010 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe9f90cf4 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf1ba07af synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf9c66660 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfe56b6b5 synth_add -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x04612b17 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x41c3f568 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe9711ca6 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfb2d4129 synth_remove +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x001afcd5 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x11ef8699 acpi_nfit_desc_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 0x520130d0 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5520754b __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa0ff7d93 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x647949ed __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x74f25966 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x843af4bc 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_platform 0xc364b68c __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x5439c704 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x63890eff __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xa17bacad 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 @@ -12331,190 +12331,193 @@ 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 0x55d7e05c linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xb616a363 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4a5cb333 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x91913b39 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe695a0b8 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf98a83cd __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6e3cfc6e __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc001e13e __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x29b54984 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xfb2555e7 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x19d1187a __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3ce22361 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x442a9d12 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5b04c4a6 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x975cce02 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa811a257 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x115856a8 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4dca2a54 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9af19948 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xed4b61e3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8770d28c __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xde5580b1 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x170f9146 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x196998b2 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20137f25 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21f72bcd bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2991d14d bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x520305e7 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fb3bb42 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7074d845 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75fed4c4 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x858602b8 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8867d85d bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x88ac034b bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ec1b9be bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x943325f3 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa00b7ee4 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf38474a bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf63d69f bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9dd3486 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc3351f1 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5ae3d7f bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe5d4557f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8570186 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee007cf1 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6eea6bc bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x15046afa btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x340574da btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3482b6fc btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x55142ea5 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5858cf0a btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5d7a1aca btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x813a62f2 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd1b05d2a btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16170ef1 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22920e4a btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x27dc2193 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2eb84301 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3fd0a288 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eb17233 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bc8b1cd btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6bfce687 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6f31e847 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7922979c btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86d4324e btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b6dea7c btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0a2a465 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xabac49ea btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb9bd5c2d btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc70c16d9 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xea306e7e btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x01ed0596 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x254337ee btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x26cc4829 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x287ab9d3 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x31963bd4 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x91b9dec3 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9ebfde93 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaec797d3 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb1601fa0 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc620b62 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd72809d btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4e4eb723 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xc7d7840c btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xcc9a5404 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x503e48e3 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x98399f1e qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcc6b74d2 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd421a3b2 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf5c16b8a qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0202670e btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x17bd1919 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x68168f4e btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x36a0afdc linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x6dd8dcae linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x48f63b98 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x865e033b regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x8d48455f __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x093d3287 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2c0955b8 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3e528dc9 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xae0fb61d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xf0c386fb __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x1327f6d6 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2fc4e913 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x376a1e98 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x98d30089 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1c2e6beb __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x2d834272 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x838d554c __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbb76bb12 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbda14454 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf91078f5 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x923b7089 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbaad5a7a __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x08d85b54 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11d21f59 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x123d0488 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e8a6d2f bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25face7b bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f0ce0e1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f5dc808 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3440ccd2 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x547cd133 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56bc0e9d bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6842b2ba bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75fd89e3 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80269e64 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x89c0ee77 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9241a133 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xabc63ef0 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2a732d4 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd691503 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9c79d6d bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcf6d3587 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdeaffc5a bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb32bbe4 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb873738 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf935d570 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x39641bf6 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x478df854 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4f9215c0 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x79451159 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x86c528b0 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x90b66eb2 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb113a1a2 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd989c151 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0eb488e0 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x135b90ee btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18573d87 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18ec8dc2 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ca7246f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2f360400 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x304df017 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x43123acb btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e365d65 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6d7e8923 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x903b22e6 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xacb0fa70 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc96cc30f btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd2cb8084 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe08eb375 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe526558d btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf6768c09 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x00bcae34 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x24f231ba btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4e4e190c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x55f93867 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5c06e7e4 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5d89e024 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x954f5a3c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9c4358ab btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf86fa60 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe13d9828 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf4c10716 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x84b53d98 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x930c0652 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xad6ced42 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x10b05b35 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x113a1410 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7d3f01bf qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fe79ce7 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc92b5f72 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1cdcb5c3 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x45157b60 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x703100fa btrtl_download_firmware EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc4939830 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd64bb149 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf323467e btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5aa89712 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9c72eac3 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd3d9f62b h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe305c711 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x10ee340d mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x54c046be mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7a9c08f1 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc56dfcfa mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd0e79523 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdb535c09 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe727aa44 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xfcb41f4d mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x10e6a70e mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1a79ef22 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1c50a24c mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x22e85eba mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x37f75acd mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x48be64fc mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4d03abfc mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5c96f868 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x66b9e506 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70551289 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x713bc328 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x79017e21 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x795a95e6 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b14c576 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x827abb13 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x990a7473 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa4a7f1fe mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaea193fc mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb1915d77 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb1da3fdc mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbae5886e mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc53d10b1 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd1be7058 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8fea2f8 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdc6475e7 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdd560e14 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe12d8e5b mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe39c8777 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe63fe066 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf2e61fd8 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf3f3a0fd mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x296e2187 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x83f783a0 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb41e1fd4 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xeefbf0ad moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8cf01c5b sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xfdcf420e __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4ed2f627 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa1bc62fe meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xb8a9a1b8 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xebe56521 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb2d98510 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbcaaeaf1 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xce35251a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5c20f295 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x658caa11 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaab98d8e hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xecb62947 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x222d62a8 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x281ffdf3 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x74e55b16 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7509f9d1 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x88447fa7 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdc3b8144 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe756694d mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf10d8933 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x00ab9f2a mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x04190299 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0ae9656b mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0cb42b41 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2944b332 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x30a1b345 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3919d98f mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3d2a4fb8 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4598324f mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x46790264 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4cfd7c05 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x516abe03 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5ca1aaf1 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x633a222b mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x716a2109 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x71908747 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7297a1dd mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x82b6773f mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8ff792de mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9b2c51d2 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa0ce768 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaabf7ba3 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xafcca599 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb2aa1008 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb4aaf438 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbef0e9a4 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc2aa3575 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdcd3ba60 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe990d7e6 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xef7f6768 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf0486436 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x62898674 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x81ba9068 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xaff3b40b __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf335329d moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x2e323baf __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x4901dba3 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x1a4ac0bd meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x26f0d58f meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xfcbd0229 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xad84d6d7 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 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 0x10130b21 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0fb17b27 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x11c09e22 devm_clk_register_regmap 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 0x233e5373 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x247e1ab3 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28ec912b clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2aed7c9b qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x36c735a2 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x37e60158 gdsc_gx_do_nothing_enable 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 0x3e946df0 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3f241869 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x407cd4e2 clk_zonda_pll_configure 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 0x4563359f clk_disable_regmap 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 0x48f25103 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4987b989 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5217eb68 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5524687f clk_trion_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5919d5f8 clk_disable_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 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67b1b450 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 @@ -12522,7 +12525,6 @@ 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 0x7af758c8 qcom_cc_really_probe 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 @@ -12531,154 +12533,152 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops 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 0x94ef2db3 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 0x9b699a6b clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c1fb4be clk_rivian_evo_pll_configure 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 0xa95ed447 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaba920e4 qcom_find_src_index 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 0xb2793a78 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb424085e qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops 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 0xc7ef9b24 qcom_cc_register_sleep_clk 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 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 0xe04400b3 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe40a1db3 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops 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 0xf845ea56 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf981c3e3 qcom_cc_probe 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 0x0268c5d1 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x11a0d7f4 sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2daff1b3 sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x32f41831 sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x7e4dcc87 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x87534930 sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8fd778bb sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x92ddf949 sprd_div_helper_round_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x944a9aa7 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x96559702 sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb7e0ba80 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc494f8b8 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc6f9400f sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeb2e28e9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03118d59 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0418fb72 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0555fd76 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09a1a86f comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x183a919a sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x227afa5d sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x347b11e0 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x39c67dcb sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4dc5e16d sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x55497324 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5cece9ea sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5dcd42af sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x68e67b7c sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8b907c0a sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa4fee866 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xd75238cd sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xd8f6ce4e sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe0106577 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x024d0e07 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03bd1f2c comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0963e130 comedi_check_chanlist EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd50790 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e749e7f comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x11d841d2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1800c962 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d580f78 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b3f0142 comedi_request_region EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25f42e8b comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x270516c9 comedi_dev_put EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fb35bde comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3ecefaf6 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x342efe70 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x357610fb __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x39b147a9 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3bdbd62b comedi_buf_write_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45063a0d comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a119f7b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x43a94692 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x489c1c95 comedi_buf_read_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56b79a21 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6efae348 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f60d177 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x791f2873 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7e7b5825 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5225b3e8 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x527d88f8 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x55c4debf comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x582c713d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a8ebd83 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x605b2312 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7120f223 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x77d1cae3 comedi_readback_insn_read EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x853dcf3a comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d24975b comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x903dc58c comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa07421f1 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xacb5916c comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaebbcda7 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5cabbd0 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f4883ec comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa4b28aba comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf0d3620 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb0e65286 comedi_handle_events EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9c6de0c comedi_alloc_subdev_readback 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 0xd5424ba8 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9eaf5e3 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1bc683a comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc3625d47 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8d02c57 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc9eae8ee comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd2ac4b4b comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8f42d23 comedi_dev_put EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe0168ef2 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe58e5c60 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe66088b8 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf28319c4 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6bf73ce comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf91e508e comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x52843585 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6a1cc394 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7c761b75 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7c7dfc97 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x825cd94c comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9e7d09d0 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd52f575e comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfd2f8607 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x42de3869 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x87240d39 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa5af8870 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb50ee100 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb62a1d78 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xee4df8e4 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x3e31ce2d addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8cb7b50 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8e2d863 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xebc7723e comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xed2fc638 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2d8ddfb comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf564827a comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf72ab067 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfad1ad3c comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x09219b01 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x19493849 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x29cf0bf6 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e66e526 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x36e02de4 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8a7b5bb2 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x947e9c5f comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xae862b8b comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0b5a63a9 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x183d951a comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4579f89b comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8b658bf2 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa9f94236 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcfe6d569 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x07b27db9 addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x643cdc10 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xab3da4b2 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x66318513 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0f786d43 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x26e52259 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2c27254c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5be765bf comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5cc6aec3 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5d0dc5c6 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6a3c19bc comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x803817ca comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x89fbb42d comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8f63857d comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdf884620 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xecd7b436 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf6afacc4 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x24e16664 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x396501e9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xdd33358d subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xa9297f88 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0333a149 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0505f624 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0b01181f mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1590c096 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2bef5ea7 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x441e15be mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x552615fc mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x69d603d6 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c31ed05 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6f0df9d0 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x724432af mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8b029435 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9ff010db mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xaf0fb5da mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcaa03d50 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd369916 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x0a2956a9 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf2e6f50b labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xba846e99 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xc14f5e87 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x470207ad amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x41595488 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x44091604 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4c46db0a comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x53c44c4e comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x618f7a48 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x623f17b6 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x625ceb48 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7514fe93 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x93cea64e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9e152a62 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa5925f14 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc73aac97 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfe85d22a comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa07606b8 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa4047eaf subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xe09d27ac subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xf1746aa5 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0055619b mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x02c5ee8f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1cc41c91 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x20e8df62 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x437c049d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x456cd98e mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5d846d08 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60e1ca86 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x62f8ad8a mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x70498964 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa7907f18 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd43a0e3e mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdf979ec9 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe25c926f mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe72a9b9e mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfb12a5b8 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x01f9c29d labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc4ace493 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 @@ -12689,907 +12689,904 @@ 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 0x0447c71f ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0d5639e9 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1327ffe4 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x15253d7f ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x19a5677e ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3c4ef3e8 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4a50d92a ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x61f70c7b ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x757efb90 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8d4d3143 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9392cc47 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9e4ab24a ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb9f3e9a5 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc81d111c ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe19aaec2 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe33a13d7 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x45245e55 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x687cdfc5 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8181b6d7 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa6323e51 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb8bd3937 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe0f8d916 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x19502ddc comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x76e6dc77 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7d3089b3 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa57db680 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbefb92f1 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe4308032 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf471f8fe comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x17bc4338 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2fb20b18 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x329e177f ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x36df5bf1 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x43a69084 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4c4e831f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4ec71c53 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4faa0fee ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x612f9464 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x79967f7c ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa04cf8d8 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xafee2acd ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb256809b ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb3cd1dbb ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdb8b0d0b ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xed7768a7 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2879a3f5 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4f74189e ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x61e8e547 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc0325576 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd077627a ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd1dad605 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x17479efb comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2236b984 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3627b171 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb2f17c9f comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb82d60d1 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe9a791fe comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xebd9a04e comedi_dio_bitfield2 EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x326c2090 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0161b8e1 hisi_qm_regs_debugfs_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x09707fb8 hisi_qm_regs_debugfs_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1450d0e1 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x16b3f286 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1dd5869b hisi_qm_wait_mb_ready -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1f44154b hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2813cc18 hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x39e32b98 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3a830528 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3e7e7f05 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4bacd0d0 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x50286eb1 hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x514c532c hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59930218 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6215ee28 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x67dcb8ca hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x72e90fa2 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x73d9baab hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c32a94a hisi_qm_acc_diff_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x82fd972e hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x844ba284 hisi_qm_mb -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x925adfe6 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x92e2a8dd hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9e483bf6 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9ea0c770 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa1dbcb58 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa4e73e4f hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xac689ff5 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xac8899b7 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xadbc0bcf hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb5e96e98 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb9c83ecf hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbc67aea3 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc7b0a246 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc7bd9e17 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcb66a995 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcf8088f6 hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd462f005 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdc83f67d hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xde8d0a28 hisi_qm_get_hw_info -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfbdcb95d hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x7d60c739 hisi_hpre_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x2daa1971 hisi_sec_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xbdd0438b hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x6a3ffa15 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0b7c2627 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0df79c07 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0f13618f hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x158fbacb hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x179d3906 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x17f69fad hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x275e8379 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x29313908 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3d72a705 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x431dcaf8 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4b4b3195 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4c97985e hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x57ea247d hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5b57336d hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5d7f0403 hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5ea7bd26 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6742fb34 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6b252d4e hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x70299886 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x72d256e2 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x81059e0c hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8635ba40 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8747a0a5 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x87e407e6 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x913b83a8 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9a5a9481 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa1897b80 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa7394652 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa812f1b7 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb00fe9d8 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb1750987 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb1b15dea hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcdda0547 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcfc663ee hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd46c40f8 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdbdefce0 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe76f34f6 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb9ae611 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeddcd52e hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf5520397 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfb9a26dc hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x4ecf3334 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x54a09813 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x1139abe6 hisi_zip_get_pf_driver 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 0x549b447b otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x01fbfa34 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0260a068 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x065dcb4e adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0db63d28 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1912c82c adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b3c99f9 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b98f982 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20d4bbd1 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24070e59 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2601bc09 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x284918cc adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2a7252c8 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2aba0542 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ba119a8 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xe1884e36 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06844a54 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x088f9f41 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0ff8822e adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1cb91760 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ba570ae adf_vf2pf_notify_shutdown 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 0x2e91e1c1 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3059c284 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x37c738e4 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3c8a3733 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2e54c42f adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34755aed adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a29b430 adf_sriov_configure 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 0x425764d2 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x45380838 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x553fd743 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x57b959e0 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5974f08f adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5bca9040 adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d2226d9 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63fe1cf7 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c5e8538 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x73815377 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x76fb923e adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x776f4a9a adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7b37f24c adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e55ac0d adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f9d144b adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x90f08a89 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9129c470 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9aba3ef1 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c45e074 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c631d46 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9cc77ff4 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9da37f78 adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e30f9af adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa0015717 adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6bede0c adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa9efc5d5 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa2561ee adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad1eab2b adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb18ab503 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb32f60e4 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbd285077 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf47685a adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2716ed3 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ed96d98 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fd0dfea adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x415d80f1 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x41640da1 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5b0b7195 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5f802e9a adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x631692d8 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x64b081b6 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6e8eefc2 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x75de66f1 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x795484e0 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7aa4863f adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ad129f2 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c896a28 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d5b0935 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ed09b55 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8458b0e7 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84f03c89 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x86973ddd adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ef58032 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9334ca53 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94330a39 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9485837d adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9abfbf22 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e20acdc adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa06036f0 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa0e77018 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa13ef5eb adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa7a8a226 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad56c33a adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb920da84 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc44015c2 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc4ee8591 adf_vf_isr_resource_alloc 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 0xc5a6ecdc adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc73842b0 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc6f3f739 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc71a89a6 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc75d6b28 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9b45267 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbe94592 adf_cfg_dev_remove EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce0c44a1 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce6c06d2 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd0baf749 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5d6bef1 adf_gen4_ring_pair_reset 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 0xd690190c adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9b74ce7 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd8669008 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9f6a978 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdc1225e1 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xde7784e3 adf_reset_flr 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 0xe3d7a3b0 adf_cleanup_etr_data 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 0xea80809f adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf628a6ce adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf696b326 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7ec294e adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x17e5509e dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x5990a285 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x89757c6d dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0dc178fc dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9546e8f1 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa58e93fb idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbc7a371d dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc28005f4 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd6c77411 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xda5c4d67 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdb9e6398 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe2f5496b dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x194b9247 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x321c755d dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x357b25f8 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x78fff08b dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0b20f90 dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa0ce351c dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xce42b1ab dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd6643380 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd9b8d797 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf804def3 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x064e6b6b fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1fc3e644 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3f169c9b fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x48052ae7 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x51780f22 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x65673b18 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6cfdabec fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7493b5be fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7bd4f8c1 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x862d52d1 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8ccffd83 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2427a43 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe5e60b1 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe9ac801 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc2122f45 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf67ab19a fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfe775d53 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x55b22c1e hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xaba87e28 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x4f9a0e3b fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe620f717 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe68f6c58 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe6c0092c adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea8d42aa adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xede55d57 adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xee62ec95 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfc4b8085 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff54a085 adf_dev_start +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x19400205 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xdd2e7396 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfb238a3d dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0dbb43cd dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x40d0e19f do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x44accf1b dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7dce79c0 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x87332892 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa3fb893a do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xac575490 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xca783e38 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcc60eef5 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0190f6cf dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x16ae7e1a dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x32ba8167 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4014b253 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5466aed0 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x691a4da8 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6f97c18c dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x7fd0a2d3 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8738689e dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa93c1a15 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x181f288e fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x199a78d9 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x27286330 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2a1fff95 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2cb9b1ca fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x49cc436e fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x765fe14b fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7f80bf8d fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8d029d1d fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x927ed9a8 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9aae697b fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa6963ce3 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbec5c39a fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe35aa65a fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe60d6e30 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xea1212f5 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf419ab5b fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x54826f02 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb961b970 hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xd9bc580a 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 0x6cf67562 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8d67c0b7 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb3b13e47 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xe8d4728b ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xfea98962 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0df0e9de get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x0318a129 mtk_adsp_ipc_send -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0a7d1d2d stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x018413b5 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xbd256253 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd3f2619d ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xdc63d322 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xe6c49d38 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x4a3bba8f get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x51379fc2 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 0x9078a013 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 0xb7205b57 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x086da6ae __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1aa10440 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20e7e8c9 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2bc813dc dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x32ed5388 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a567392 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61f5e232 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x842693c3 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8afab55e dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90864c8e dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90d04d4c dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9cb7835d dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9ccc69c6 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8096143 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaa9cbdee dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xba386e44 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc2c0ff1 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xddefe6f2 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdfd6df47 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe0f5059d dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6c6c330 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe9901ac0 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfc309f48 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xad133849 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0935a4dd dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0cd1e8c0 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x21b1a95b dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2436fd98 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e832f99 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x309b466c dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x30e7b2fe dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f4745db dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x43695b8e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x49ab5d24 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x533fecf3 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x55870f7e dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6f48f7f2 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8295778e dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa06ccca4 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7ae18b5 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xad8459b3 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc9cadbf dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbebc1314 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc283fdf4 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb4594c6 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdbd83ae5 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4b2b32b dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x03487900 fpga_bridge_get_to_list 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 0x264b2329 fpga_bridge_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2e97d101 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b9e0e04 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5d995832 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95f608b8 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc0fd92c9 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdcb86acf of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xec4bdfaa fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf679dc5c fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x17b3a158 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51e72e0a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5add8dcb fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x64b7093a fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x65d651b3 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ecda0fc devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81205c84 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x88948c5f fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d917ec9 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3932bae fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe1b60239 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe5c94131 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf14eabf4 devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x31faf1df fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3c2da195 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x899d0ea2 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe08aa2b0 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xed4018af fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0733d3dd fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3af989d7 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b9cc366 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4f65ae49 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x57bc4c6b fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb40a64e0 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd5fd79f8 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe92fe212 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xed361329 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x00d48b89 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x207fe6e1 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x21f00e0d fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e7e4ece fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x30a3c90d devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3db065bc of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4789f363 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x51523ca5 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x76d34d80 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7918cf00 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8c0424e0 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa2514d20 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa314d75 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7d3ed3ba fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x80e3cc68 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa4745494 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe0c50dbc fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf9ea3da7 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x07b7d9f6 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0960a20d fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x38cf62cd fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3978d7f4 fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3b1b43f3 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3d2ee2e9 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x495b9d04 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3c5084cb fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5d334645 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5e6b2a6b fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x77bdc3f7 fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb9f1d605 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x793b264f fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x793d63fa fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa6bc0f6b fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd3be019b fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd4c7b43d fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x95d33802 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd3495af5 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf77c25aa sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x510805e7 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x66f6cf2b gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fd03751 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc67b2d57 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe09569ed gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3e522388 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3e6fd563 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcc33354c gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcc3afa41 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf30c3819 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe020c2f6 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf982315c fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x843d67b4 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x4af79a71 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xe4d299fc sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0d5d56f1 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6b6312ff gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9b23a24b gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc6ef0c08 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd6889465 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x415a87fb gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x55744c4f gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6cd1a204 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x75920636 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xeec9af2e 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 0x5a2e3787 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd1d1a286 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x1d70ff38 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x70169bb3 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x94d39d3e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x04145611 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x3778db16 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x9b33fe08 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x01006f60 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1b8039c2 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2bf2cba2 analogix_dp_resume 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 0x69402896 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7dc35186 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8e17a4d5 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae8aea60 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xafe74623 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd615ce16 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4b08fec9 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4b2d2b74 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6e446a7a analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x89df626c analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9d67a585 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xae9fa5f3 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcc6f1ba7 analogix_dp_bind 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 0x0b343c69 dw_hdmi_bind 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 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 0x36b94638 dw_hdmi_probe 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 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6ce0ee71 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d47cb72 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 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 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc90ff115 dw_hdmi_set_plugged_cb 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 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 0xefbd894c dw_hdmi_probe 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 0x27e86f43 dw_mipi_dsi_probe 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 0xbadc4dc4 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xfefd2f43 dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xa2ee5239 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x31e34b3d of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x374f8233 devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x68642273 of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x86895a6e __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x8a973210 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a9eaf2a drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x475361da drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xab0d5d18 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xd820cd84 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0fa256e1 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x25e2b03c dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x2ff001c2 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x626cdb3e __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x646c6e1f devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c0ccd5b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2f6701e4 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3fbe480f drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c117b22 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6664b3c1 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 0x6737864a drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x712eba3e drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ed207cf drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84b70160 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87581bb9 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9083d099 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91d02ce1 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9a3f64d7 of_get_drm_panel_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa19d0877 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6cd750ed drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x768d312e of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84a6f840 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x88210c11 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89d1177f drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8d51adfa drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x94420260 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa080888c drm_bridge_detect EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc3b6e5d drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbd6069a7 accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbf29719c drm_of_get_data_lanes_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3195e83 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7c90a82 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcef6a431 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde392215 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3081f68 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xecacf110 drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf326e7ce of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8d0d761 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc1227fa drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc1eb629b drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc8e06678 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1590cf1 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd52b999b drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd97cd91a drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7d071b6 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xed4b9060 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfacdffa1 drm_bridge_hpd_disable EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x06317d8d drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x12e388d9 drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1d1d7339 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4865fd41 drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4d4220e3 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x52a57c78 drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x70cd9207 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8cefeefb drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xac16b6b2 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb5ff1e42 drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe68d45ef drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfbc43bcc drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0dfaf03f drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1fbe4471 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3153593e drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x35031a51 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x500bbe77 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5028604c drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50d70b7c drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8f164742 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb9b5319a drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfd6ba75d drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x056b6332 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x08f4ca52 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x1ba869fd drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x299cb52e drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8144232c drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x96ec2a5c drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd357ae74 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe57a7f1e drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1ed5ea20 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0d178c93 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x36292915 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4bdae7dd drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5198ebb5 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x526f573a drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5f73c227 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5f8071fb drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x752e4ebf drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x82e70a20 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x88814a1c drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf09f1aaf drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfa1d58f5 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0274635c drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1cd43a2c drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x24ef1bdb drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6ffcf2f9 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa65b8ae1 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaddfd607 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb3b39c09 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb8241298 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc1c522d8 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd62a0f04 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0bae3257 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x14d95b4d drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x20bec2da drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2c7c0381 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xae1eb9b3 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc7445e96 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc8a75301 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xda95276c drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1e180500 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 0x3798c71d meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x53d43355 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x62fdd424 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x688cd5da meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x93c36d3a 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 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xc5ecedf5 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x1bfe5e25 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc44d8edd s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xc3e0426f pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x28e15146 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5b1393d9 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xde927d83 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf2a19b75 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x1ce41ccc rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa37e9e63 rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd1e55fb6 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xe07055ef rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x69660f53 rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xd3a329d6 rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x563922e5 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xad104785 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc1a04f43 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x7667be93 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc2a2de6c s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xef3eccb9 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5ee2f26b rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x8104448c rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9504e4e6 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xdfd57f23 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3ae274f8 rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x541e6b5c rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x79e732b8 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xad042be2 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x5241157c rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xaf8760fb rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4cb679bb vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4d69bceb vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5c2c89da rockchip_rgb_init EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x1c202e44 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x598b1351 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xf6be6389 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x3e9f58c3 host1x_memory_context_alloc -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x93b38966 host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xfd64ba6d host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x210ceb3a ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x2dd3782a ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe3b5a79f ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x34adacb5 host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x8cc5026c host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xf73961fd host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0051900e gb_connection_destroy EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0643cc0b greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b020210 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11534d22 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04180ec1 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x056c41fe gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x07e29108 greybus_register_driver 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 0x1a5642d5 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1db439d9 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x207a3a11 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x21648c55 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27c3d9a0 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2918598d gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3786fdca __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b729f30 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45430e58 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ab279fe gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e1fb265 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f1c2daa gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34ec0f15 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3686a909 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45e7a520 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x485bb3e4 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f0b8e81 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x560dc31a gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x563c7ba6 gb_interface_request_mode_switch 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 0x5d727f8a __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d7f7a8c gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ec5a114 gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65fa57c8 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68fac0a1 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69ee565e gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6becb1c7 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64802786 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6680aba3 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66862ca0 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69c8d2ff gb_debugfs_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f09c67f gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x773438c3 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7939349a gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b2e279d gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e5b62b1 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f03a0ab gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x80d35185 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6ed38962 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a6609c6 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7dee36dd gb_connection_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e7592bb __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x921f1005 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93f143e0 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97183f87 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f251cde gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8de70b93 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9567d8a5 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa085549 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae6ff015 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb568cfb6 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6bf21e9 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca9b3e90 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1a0355b gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2327310 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9deaa74 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbd4b2294 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf96233a gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc06f0a16 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc185f816 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc553f646 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc70cc358 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb498d83 gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6144d80 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd75fdef5 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc60f0cf gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf2df153 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe296d328 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe975083b gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8665396 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde17cebc gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdeb73a92 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe96d470d gb_operation_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeec0a72a __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa17e328 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0186edcc hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x01afa6a1 hid_dump_input +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf13f81d9 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3c97803 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5dab092 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9450ea5 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbea3df6 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01467739 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02bdf66a hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x030399fa hid_compare_device_paths EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c7b4e39 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f561ca4 hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x14bc949c hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1980f91c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07f6b503 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10c1aaf6 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14289dbf hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1942a2cf hid_field_extract EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a3fef0c hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1bfbbb5f hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x25208243 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x319341b2 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x323c4435 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3316dce3 hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0x337854c0 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x361f964a hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ca18fef hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x50492344 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d4672ed hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e239c47 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6081d779 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71e253e8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7db224c5 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7de29189 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b6e2f65 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1eea47aa hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25309032 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x30a37c97 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d55b645 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x409efb1b hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40a17365 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43b84b5a hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47605937 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x494aa158 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54545174 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5999366a hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6625759a hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ae7b295 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75d9e956 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x780dc258 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b072d9e hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bd13409 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x826c935b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x889e1c96 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a5f616d hidinput_calc_abs_res EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e02c7d7 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99310201 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cb8f4d1 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d62f989 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d6f1940 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa10bef3d hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3d53eef hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa774579e hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9e7e3b8 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xada686bb hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7276ce6 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8502835 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9556996 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc08763cd hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc33b9564 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xceac5e9a hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6ba6cf7 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7f43096 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbf641d5 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe04248cc hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe04e66bf hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe184e3c3 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1ee0e5b __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4092a4e hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8f1e621 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xecb8ef31 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4b4b675 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf59c1aa7 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x932367a2 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b7eeba9 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e5b33e2 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa088975b hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xac38875b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5a62a2a hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba0bae2e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc00f9faa hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4b6d942 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca0bc9a2 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb0b5a42 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbd35ba0 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdf1408b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3a8c51f hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5adb532 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd85dae3d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdee85e3a hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe65a0ae5 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe88acd9b hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf53a86e6 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf92dd64c hid_driver_reset_resume EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc3a41a6 hid_setup_resolution_multiplier 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 0x992dabb7 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30deef96 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4ecc5f3d roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x601992db roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9444cb65 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbdf24ec8 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd0e6b1c1 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x429ea99c sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52bb3438 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x78ff158a sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8bc94874 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9cc4c25b sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xae01232f sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd40ec1f7 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd71b6456 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xebe9a139 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4167a137 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x60f9b14c vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1030490f i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1b1f83ce i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x22735e41 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x25a89c0e i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xcdf27b8a i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x525185bd surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x5907a0b7 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb7b11181 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x44b779a8 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8925682c usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdfad0258 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42a793f4 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x69fd7e27 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x373afa74 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f4787c2 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f519973 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x86db83e9 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd8ed11c3 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe389574c roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0149b0fa sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x182cea89 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x36fd61e8 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7822db08 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbecd2b93 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd559acc0 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe88a1c2c sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf5fe42f6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf763d4e6 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x5118cfe3 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xbd82b403 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x24202092 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4a3282dc i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x55dde547 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe983488f i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xedd7d3a2 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x302614ac surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x55177623 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfe2733ec surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7d9ab88a uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x24cce453 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf3c2fdef hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b708136 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x132707d6 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2a8fca44 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x45b0868e hsi_alloc_msg EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f0f02c1 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6f06d8ff hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80f3fab2 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8322da48 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c03583a hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c490038 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa2052054 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac28cd62 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2678c97 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb911cda0 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbcc12d94 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe92db31 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbeae2bfe hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5f5974f hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd979136a hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdc0b195d hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4c596be hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09c7dfbb vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x23213abb vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2d09e174 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x52a63983 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f0ff936 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x69956a2f hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b71e1e5 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6b38ccf hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3c02587 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7d35889 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc0a8eb11 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4a72af5 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd90d6f63 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xded22a7b hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe5f7d649 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6bd3132 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf8346f95 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0450f507 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b24e5d7 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0f07713f vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2e7285ec vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2f0e87d5 vmbus_recvpacket_raw EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x320846fe vmbus_driver_unregister EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x32599dda vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38413e1a __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3980909e vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4215dac2 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42c646e4 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43710637 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x348b9593 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3512223d vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3b955ef6 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d0ecaa7 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43ad4bc3 vmbus_setevent EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46e12cf1 vmbus_allocate_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4ce530b0 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4d0ebdf2 vmbus_set_sc_create_callback EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62bbd4db vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6c33706b vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6de6ab9d vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7a3a2587 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7ca68349 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e1157fd vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8686469d vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x97b3b2e0 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa7e910b3 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xab5997e6 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb89e723e hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8e88f4c vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca5272df vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcd75b2e0 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcfcc33f0 vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd6ca021e vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdd743623 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf8dde005 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x29177162 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x56ecd626 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c4088aa vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62d6085b vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74a2b40a vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74d22c95 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7938e77b __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x967284ab hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2c061f1 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb7fa6b48 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb9f24101 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xba3a2b6c vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc8965408 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcbfaa627 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd5d62bb0 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe0fa8670 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9a38df5 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xff09bd11 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8ced1a26 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 0x179bc254 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x203bac79 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x27f7d005 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3a27a4e7 nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x583bee8f nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7c4c2c68 nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x029bc803 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2d7c25a3 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3244b97a intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6423ae63 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x673b9672 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x86ff3f4e intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2e26462 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe2e740b1 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf6dbbc00 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x316eaf5e intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x43fbeaeb intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x46d317cb intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x11a81d8e stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1b2abf51 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1ba49b0f stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2363db96 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5fb62f3c stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x64aaf1cc stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x66eb43b7 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcb210802 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xed2c8d31 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xbc844f8a i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0c31214a i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6aff68c1 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9412cfa0 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb5aad3b6 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x35791798 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5032e250 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7ca32a8e i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x99f35fe8 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0392fdd8 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06890db4 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0af3074b i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x16965e3a i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x25789b2f i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x26acff94 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x279d2463 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b78e262 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3109df10 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x31fe7d45 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3447be44 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3cbd1877 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b52e883 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f7eea79 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1ff16562 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x20f183a3 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x58634cf6 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6188cdd5 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xb1ac5c24 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe81e5300 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x15606395 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3fe5f020 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x407dcda3 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x47713825 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6c456071 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa8a7aab8 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbe5da4e8 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xecb98e7b intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf092c08c intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xae2d16ca intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xb09d527b intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf93c51d4 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x07b368a0 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5e43101f stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x663dbc4b stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x811d7350 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9ab2ba7a stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xadfb196e stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc121104b stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc7c55ad0 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc8646a5f stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xf116143a i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x366c8819 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x44a4b187 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8447be53 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc13f62c8 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x08025c42 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2735d762 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8a4e229e i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcb9c8a8f i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x00fa5d17 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2d33b655 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3cf3c488 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x49f48de8 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e3a04a0 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x56c64fb8 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b1a1278 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b92e2fe i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x643c9d51 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x650738be i3c_master_entdaa_locked EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x77ed0f60 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x79ceb165 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80247b5b i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa9cbf472 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xabcba64c i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0062766 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbabf42d9 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd26fd076 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdacdd1ff i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf1e99746 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc79acec i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfda3ff10 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x77c82e60 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fcb6614 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81e06554 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x859da266 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8af019bc i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa03b513f i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaddef4c2 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb86b6c69 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe3e5cb3 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbec92b3e i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbf79d483 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcf19fd6e i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd76f6b4b i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe92d346f i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf4670097 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf644ad49 i3c_device_free_ibi 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 0x38d1028c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x50a9316d iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x4ed6f713 iio_channel_get_all_cb EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x88f0aac4 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 0xb101c165 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0afb21aa iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x13a96208 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x48c79d16 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x624ee44b iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6e10cbf3 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7d589e73 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7eca2ca9 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7f76436a iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x896567ba iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x89ac3674 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa55456bc iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfb2c1901 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x4c635fc5 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2b13e554 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfa420248 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x12f5e373 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x151e8739 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x24b6d114 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2524ccac iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3a11ddf1 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4b88569a iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6e114236 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x874a3014 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x87c6087a iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d26c8c2 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd80a173b iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe1e656a9 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x81b6c8dd devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x0bd78a00 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 0x89aa9274 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x35f46fd2 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 0x30e5c815 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xa9eb782f devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0b8bd594 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x23197574 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x46846818 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6ee8e011 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ca718a6 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7f58ebf6 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x8fa0bcd2 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xb0ca71b4 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0097e0a7 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x196ee6da cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x38d5e247 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x58ee70cc cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x668748fa cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x68254ee9 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7171af56 cros_ec_sensors_core_read_avail 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 0xa4a398c7 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdbd12dd9 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5ce4253 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf83c8343 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfab40214 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x03335442 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0a06f493 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc466ea29 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x4b84c7b5 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00c605a2 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x054c07cb iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0769054a iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bc6b030 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x115d19ee iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12c227d5 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x163ec0c0 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c010c07 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20410a65 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbde24d03 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcdc32945 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe7527903 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfb38c207 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x07411e09 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0b1b209e bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x74831c5a bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xfccc5976 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x05abb28d iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08d12c38 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0997f52f fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10061976 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x100895f9 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10e645dd iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18479efc devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x184a49c7 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c0234c1 iio_enum_write EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3196d0dc iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36df3740 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b9d7886 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bc1911f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x489c9be9 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dcbfb60 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2954925e iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bd1eeb2 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d9c39a5 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e26095d __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33f4ce6d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ba53135 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47f67899 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x487d66e8 iio_read_max_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ee772c0 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f8fc013 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50137310 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58609cf4 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ea8125e iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63755575 devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64ce88da iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x66634537 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73562fca iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85658160 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e764900 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9814d778 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b63171b iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1e87309 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3eeb39f iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5ad63eb devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa759ed69 iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0d75cf7 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4695fe1 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb771e4b0 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8385381 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc02ba7b3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc23056bb __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5e54e2a iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc81d9399 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8429c0b iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8a24648 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8c047bf iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca2189fd iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca4dc62f iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb0de67c iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce13d828 iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce54d132 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde8874ac iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1a25650 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe378dac5 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3f8c9ec iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8328156 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef90ff66 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x548f4d90 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x567c6176 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ef34322 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64db1bb7 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x657c3a5e iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b1771ec iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6c6e86d3 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fd66953 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x776a3938 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d9693aa iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80ec9a8d devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c29b4a3 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x934e6353 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9431c001 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96a573ea iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x979f4083 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97dd8fcd iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x989a75dc iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d808709 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f28db24 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0d6efcd iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3d28cdf iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaefbf38a iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc0a50e1 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcfad47f iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd1d3c93 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0e252ac iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc50c1bc8 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5b1cb54 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc656617f iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca675189 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1fcb901 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3b9ae49 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7622ec8 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe890b544 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf472133c iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa499bda iio_pop_from_buffer EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4156f667 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x46f99844 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x74b1d893 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x769c3796 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8e544926 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x92d9d0c2 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9705fdf3 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd3a856f0 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd5a4e177 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdebaa1dd rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe06c8fc4 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb9720a0 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x1b40f4fa input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8f1deab7 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x56917679 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x06cf8152 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0a9585d2 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f252f6d rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3df01c06 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3f9ecaa8 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x50fca3cc rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x68441759 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x84e49c49 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x93a1ff62 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa5773d31 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe31f20a0 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xee840c08 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc76a0d41 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6bcf27ba matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x4c23ee83 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x19a91162 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2afdce7d rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2b7410bc rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2f13bd0f rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x54fc612b rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71921dcf __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x89e23307 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e46c79c rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6274f5d rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbf637e3c rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcac012bd rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd8325e4f rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf7e8e58b rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb67338a8 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbfbd7541 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd23aa0a9 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5578f53c cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9f1f8b21 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x50e7c8ee cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7c61acf0 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3bc7581a tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8208f4e0 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc1594f8f tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcde3b675 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x35c83c34 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x430ff644 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4b4b0534 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5005cfec wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x58c88b78 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x60013a11 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a77bb65 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ed6f63a wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x76b51715 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8111d228 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9cafcf72 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaef3481a wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x1c9c3333 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x244552f5 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0801f8e9 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x141cab94 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x18303e8d rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x19e2633e rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x24f45bf2 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x31bb436c rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x32684a1c rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5166fc83 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7dd59a86 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa909be80 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xae993374 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xda791e08 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf23deff6 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x01916565 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x87c89c60 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa08c1270 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x04bb629c cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xac2296bd cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x566e5c92 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xfd722189 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x898460ab tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa84bcbc8 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbcb9244f tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfd3a70af tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26af2dcf wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x357528f9 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39765f97 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39b73d09 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5de37c8f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d0896d4 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x862ed5a2 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe2bc59a0 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe8624253 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5357527 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5dc5f09 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfd730876 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xa4f0f78c imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf18b2f4f imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0253e279 qcom_icc_bcm_voter_add EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0xfb2a74bd of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x31cd3b04 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x40b2b95f qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x68ef223d qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x82fd2f04 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc555a691 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd3c43288 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x19f5faec of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0f32e8d9 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4116fd14 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7398af78 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8583ed4a qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc5bf85f2 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcbd0b2c3 qcom_icc_pre_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 0x02ebc532 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x334509b9 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x42ea5e4c ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5fae8c73 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70357c37 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76ec62c3 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8639c8e7 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe50af1f5 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe84c8f80 ipack_device_add -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2f6eea7b led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x30422826 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46599cf8 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52d29e44 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x73913097 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ebf350e led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4b58b5e led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcbdf8210 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x141d6267 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x314eca76 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7d9a0596 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x81ec7bb5 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdc2c08ee devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x014711f1 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x076bc4ee lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2153724c lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x391cd86b lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xac1132e4 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbec7f4c2 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc31ce8ae lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc7581653 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xefe1f1e8 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf369ee71 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a6e73e1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a9cc00f ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4d7a01cf ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6252f7f3 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8af70aad ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa5bc7368 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa76a9260 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe715130d ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf7c1570f ipack_device_del +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0a28eec5 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x181c1b4b led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1d70584a led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x31769e82 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa521b8cb led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc543933d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc75d778e led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf5d8c281 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1ef052bb led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1f4c2f9c led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x20d69254 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5d7f38a7 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa53456cc devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x094d7979 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1f095227 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5373242f lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x827ef687 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8fa741b5 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9a5c4a24 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd109394e lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd9c06e12 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe977f662 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf671c2a5 lp55xx_update_bits 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 0x022d9960 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __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 0x0826e917 __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0fbd03ce __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10351da1 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10634ed7 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11570477 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x148cf5f8 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e1293a5 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1657ada0 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x170061aa __traceiter_bcache_invalidate 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 @@ -13599,26 +13596,25 @@ 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 0x26fe045b __traceiter_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 0x284a6bff __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a66314c __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f5ebe29 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32d675bc __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33479940 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x377846ba __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4638e696 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d066811 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d9ff36e __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x414bdabe __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a00f586 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4cd44160 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x513c1b0c __traceiter_bcache_btree_write 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 0x5b19d829 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d4ab070 __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 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested @@ -13631,72 +13627,79 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87ded29f __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87e2e16e __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c80d606 __traceiter_bcache_btree_node_free 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 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ad82cb7 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cfeda3a __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3969d10 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa2d06ebe __traceiter_bcache_request_end 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 0xaf5f40ec __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb22385ba __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3324be9 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb36cc2ac __traceiter_bcache_journal_entry_full 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 0xbb76d867 __traceiter_bcache_btree_node_alloc 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 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 0xcd45fff4 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5c10c92 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfd0e9ea __traceiter_bcache_bypass_sequential 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 0xe42d6ba9 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5b25000 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec602ee7 __traceiter_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 0xef583b34 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef9ef29e __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf12e4c04 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5349e5a __traceiter_bcache_btree_read 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 0xfb3d6c67 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0d0160d7 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x120360a6 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x12ccf156 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfe83a36d __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfedaad2b __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0e1f0c7d dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1092e60e 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 0x22872aef dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2364efc0 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2510e19f dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28f16820 dm_bio_prison_free_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4263aa5f dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x48c45dbb dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x51000b8f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x46dec8a3 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x47f53281 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5455fdf0 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5ee4551d dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x64063ec0 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x67a40f0a 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 0x75faa5a1 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x88c5c4ce dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x911233ac dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa53607f8 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9ede9d0 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xadeb280a dm_bio_prison_free_cell_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 0xbc70907f dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbff1b229 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc384227b dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc7c3f963 dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe9b6e1e7 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xea283f54 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeb2d4d19 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec2c3344 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfef1faa0 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcfe319d dm_bio_prison_free_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x11d0f410 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 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty @@ -13707,7 +13710,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data 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 0xa4e4b3f6 dm_bufio_client_create 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 @@ -13724,8 +13726,7 @@ 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 0x32f8af5c dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3722ca22 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x348424ad dm_cache_policy_register 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 @@ -13733,30 +13734,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 0x96bc073b 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 0x6ffd430e dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x72f31c3f dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5f3b67bc dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfc192d61 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 0x1e65601e dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x25265dec 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 0x3b02c780 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57c1f26f dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5b0f16dc dm_rh_dirty_log 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 0x78faa435 dm_region_hash_create 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 0x99eacde0 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa5f5a62c 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 0xaad6f9bf dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc491b4d2 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd54ffb31 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xef0d81f6 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 @@ -13769,7 +13771,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x109eae1f dm_btree_walk EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15a2bf57 dm_btree_lookup_next EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1b6d11a4 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1d0d53f7 dm_array_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2842d760 dm_bitset_resize @@ -13784,6 +13785,7 @@ 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 0x46ad212d 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 @@ -13833,59 +13835,59 @@ 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 0x10243a3d cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1ab86707 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x31608ec4 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b029e20 cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5121ca54 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x52f80a3f cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x534aff28 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5baa9fce cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x713b7ace cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x71894bb3 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x83dfdce2 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8c156708 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d501d3e cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10dcd68f cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1bd7bdb7 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2781b492 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2ca832e1 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2e83dbce cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4c34cc16 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x538d1379 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x59723d67 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5eeb51a0 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x60fcdeff cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7ba80c1c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x874cf001 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8badb024 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8bef2dd9 cec_notifier_conn_register EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa0954ed7 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa967dcbc cec_s_phys_addr_from_edid EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaeedcfcf cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaf7bd4bc cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb74726e2 cec_register_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 0xd72c5305 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd9b5d294 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xda6932ef cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe79d7abe cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xee29a4bc cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xefb4fa9f cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfb317144 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xff674964 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc3c9f271 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd17f7030 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf2419c7d cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf93527f0 cec_transmit_msg EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0948c3af smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1324a30b smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2deb5003 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31f0f0eb smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26041c17 sms_board_led_feedback 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 0x3b40b3e1 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40eaf472 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c392cd7 sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4c3325e2 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d21a2ae sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ae81991 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70c9da4d 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 0x86656a88 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x88867336 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b985a09 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x87f0e455 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99903bc9 smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa37ac1c9 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3c14341 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb108957c smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb598de2a sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa7826e83 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb805e8e3 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcaa54f0d sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdb65c5e4 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff1edc90 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc0198118 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc9720ec4 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd6db4f22 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd98fbb97 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe4f34a9d smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe7e2b228 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe8bb4b53 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf77bbe48 smscore_unregister_device 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 @@ -13903,403 +13905,403 @@ 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 0x020b24af vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0062d6a8 __traceiter_vb2_buf_done 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 0x1c60d457 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23823551 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0abf837d vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x148e52b5 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1a4ed13b __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f090e13 vb2_core_create_bufs 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 0x349874b6 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x371468a7 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x409ffb80 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x40f78c7f vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4627be9f __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46897ef4 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f00d1ff vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f0a17a9 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54ce189a vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x623a6cbd vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x275944fa __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x281299a6 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2cfbbbfe vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x305d4bcd vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c156772 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4242e5e0 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x457b7361 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4592183c vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c474f9e vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x540076db vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5fc63bdf vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61ae1e95 vb2_write EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x69598d99 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a64f716 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c7d8cd1 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d37735c vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91c3625e vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x98eb2514 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ea08f31 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f7c5876 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa0e11c05 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa965f95c vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xab7a6129 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x67472e34 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x73fad73e __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74369017 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c2aa6ef vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x833f1165 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8581a649 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87c2bb2f vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa8aa9283 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa9d8edac vb2_read 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 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca73cc35 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5088ba7 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd61c6361 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe5e1482f vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce199fba vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe174c6ee vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf91f66c5 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x402b62ee vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x836be379 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x04334b8e vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x271a5bf2 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01456eed vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01c3a845 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02be2b43 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d81a74f vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1025e6a6 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d399f70 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1ea4d180 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x208695a1 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x20dcd6d2 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x26a942e7 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a89d0ef vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35151e04 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35e4fe0a vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43276942 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46af887d vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x55d53738 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b6a1890 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d9d89c8 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ba832df vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b577ae0 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85cf48ea vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8bdae26f vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3878e8f vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3f082e6 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6eff10c _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9d9ddc7 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb78c897 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbea71be4 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe1a1e7cb vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf22d40c0 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4ba2e35 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7bb4d84 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7da1229 vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff42a833 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x73d9e751 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3971eac3 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc6b8d186 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd88d9718 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x682cddea as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x51fd0d51 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x6284da6d gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x4d990d70 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x632a32ef stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb5e3fc77 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb2f7856c tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xc75fdae6 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xfe35738e ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x05afe989 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0c599fd3 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1f1f5863 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x37944f87 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x79840ab7 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x925ac17d max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9a1e18a8 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa36cf504 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xac599c33 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbd8e1622 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xda78bb93 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdf0977e8 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfe334de0 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07566d0c media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bdbc570 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x145627c6 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1539944a __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18c5a61d media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18ce1fd1 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1a54602f media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fa05b48 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x339331a1 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3575b9ca media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x366b3d8a media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3eabcd69 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f8ffd41 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41a3d1a9 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42dc17e1 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4619bf6a media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47d1c6b6 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x494a0654 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a7a57fb media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cec1dcb media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52858254 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52a7f6b1 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x555d2bef media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55d2b978 __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5631ee57 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5739ef53 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d881459 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d95af36 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x615c72d5 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x653c4975 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68359252 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7303ce5b __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73998010 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b5e7506 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9948c8e0 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a8ad820 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b492d3b media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1813f29 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4620f33 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6b86f76 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa80891cd media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac76f826 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1639aa0 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4a16b2d media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9511065 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcbdb8de4 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd765616 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf7391fe media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd25575d5 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3076bfa media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb1b4336 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0505d86 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xff2536de vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x057b4477 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x4eda9b7d vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x32265338 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xb296a307 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x055aa777 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1fb94ff7 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21fb33e2 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x222750fb vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x27ca60ff vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x283f674d vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x38eaaee5 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f4646fa vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f90603e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x477abc0b vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64ee05ff vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6694d9fa vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6e86aefc vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7400cf07 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75ff3c9c vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x833a0e76 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x842701d0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97ff0a11 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9cee3673 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa31b31f1 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa41f10dd _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad58c88d vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbe6bde06 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc34caf0a vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc6e94040 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfd86a9d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd04f0660 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd9904369 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdd9d1e19 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe74de894 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0399b1b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf27dee6a vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf86ccf33 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf9513ba0 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x51ede4f0 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3925e50b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x8a83fd52 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcd0fb258 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xb47ed190 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x0b711584 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xa1c9cf03 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xe610a82c mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xcf5ed25c stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x3b3b2d3f stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x62069955 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xb41d7048 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7cee9d60 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x42f47adb max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6a5b3af9 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6a8f4109 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x720d433b max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7f20aa2c max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8ef09019 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9a8d86b1 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9d7e3015 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa56e99d2 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbdf2ccf9 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf2b460c max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd85dba6a max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf78a2927 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x130c6c36 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13b50545 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c71b56c media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e2ff24e media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x201c6cd7 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x204107d0 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21eca631 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2554771d media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3bbc8b8e media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47c90ece __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x483375e7 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48fcdc32 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b02ef97 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cf3c255 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5302e77a media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57bc5cb0 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61199f2e media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65f8eea3 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x669c8577 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e823bab media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71c5d87a media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71fdb02e media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b0e8e4d media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ec42fa7 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80ac38cf media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8b8b2824 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e3f5799 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a062230 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ad7abb9 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9da4b2dc media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5ce20ca __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa82ce687 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaae9cade __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac16344f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2e70e44 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb61a137c media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb80a2c91 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe2c30d6 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc09ee9d8 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc4e0e7c1 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc54a663c media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc6962df media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc6c574e media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2301d5d media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdbf2d575 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdfad8844 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe21be895 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe583a07d media_create_intf_link EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe811698d media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf154cc46 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf6217f84 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05546f54 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x10b77e74 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11c9e96f mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x345a8276 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3584b5f2 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x433337fc mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x59f2bc07 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x672cfb84 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80f09403 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83f583a3 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x91e61411 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95157943 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b3c0356 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae7354a2 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0204ea5 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd001375 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc697ccab mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc8722674 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf1de1a0 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c9c15ce saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d612e44 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0df8cc28 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26736827 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x331daa3a saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x44263364 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ea62e71 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x64a725ab saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66bca435 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x74682f74 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79757d61 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7e437f25 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83f8a783 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9b976021 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa4a33b28 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacc4be0e saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7348a70 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc6aab377 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfddc6eaf saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1ae8cfab nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x228d0a4b nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3b2cf645 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3cc3c277 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x425bbfd2 nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x46de626c nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x47928f41 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5c0fcb79 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x974c48c0 nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9fa62a6e nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa8168c51 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc1896a18 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce7a6820 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xedc89cc9 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0e658f0e mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x12c19904 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x449efe17 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8e203c97 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xd4356c31 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x14c3c472 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x2d0fd4ae vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x4d3de708 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8bad7a8a vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa58ca134 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc45de1ba vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xce50a451 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xfc4fcf39 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x006c8a1e venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x08f482b2 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b11f412 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e4e4eca hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1fd65726 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x256ee640 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed55d106 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef0c7d82 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf071d81c media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2a6bf8a __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7d5df78 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf9435063 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb065cd73 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08526415 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1daaf9eb mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x33a412ca mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3c6663fb mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d8da648 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3e86af0c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4e734a19 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x569de5cc mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6149d2e5 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x63a91e12 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6c6b6f23 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x827731c7 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8eef18e8 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b563e77 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba550f6b mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc30183d2 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdc552790 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe82b0483 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe454a07 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x011b89b1 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08a15a50 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x271dff34 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f29d3b5 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x36b8588b saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x425219e2 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x454a6d5a saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f9127c8 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5cefbb99 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x78f62003 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ccd3706 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d3aa93c saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xab7ba929 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc057d1fd saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcedcc355 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdf18b488 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe07ceab9 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa9de774 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd3dab32 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x00fe3209 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1116cb63 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x133f552e nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x27d5fce4 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2e1bdeb1 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x343b50e7 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x59f13dc8 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x711a3de5 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8c62c39a nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9b6bb3de nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdce98729 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe209b8ab nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xebc318b7 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfe346a5c nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x5b024028 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x949965d2 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9976f867 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xb9828c1b mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xe5c01948 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x188bedf5 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x18c25dcc vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x1e11f7ac vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x4290448f vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x488b4e40 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x51e7159d vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa1a7c416 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xe2fccc69 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x092992bb hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1180070a venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1ee51643 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1fd60acc venus_helper_set_multistream 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 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3aa11cb6 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3cdd242e venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f618b7b venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f8734bc venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f98eeb8 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x407bf2e6 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x45054d47 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4ace7862 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d0698cd venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5773079d venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x58bd611c venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x614e32d2 venus_helper_change_dpb_owner -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d3f467a venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x71f6dded venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x73292dfb venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x77a3d309 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d5d15a9 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7da9d5ee venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8290ad0a venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x88e3fb00 venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8a33517e venus_helper_check_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8abaec7a venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8d88dd91 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92ca71a6 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x985b6a91 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9cff1255 venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9de261d1 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9fde01bb venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1ae10eb venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x34aa6e5a hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3562729d venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3b91599a venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x40ce1abf venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41201e14 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4343d666 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4659ed4d venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4ae97cec venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b25f6cd venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4db8b413 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4e90cd79 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x557baa12 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6127c8d7 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62edc4ad hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x635cff69 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6518f157 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x68f40694 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e7f8a0e venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x710dfc73 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x73a165dc hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x73ae9f7c hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7c05f346 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7c46ce26 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7c5fbc57 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x80478dfd hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89299f6a venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89829f76 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92bfd660 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96e676e2 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x98efc203 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9a239cbb hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9a42c3f9 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9d32bc7a venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa0904937 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa09a5f6f venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5843fe1 venus_helper_get_opb_size 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 0xba863c41 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc49d6441 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc9168d50 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd07494b7 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd19a23e4 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc2a44670 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc6836a82 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc730f677 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc8458abb venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcd8f6e4e venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd11382ed venus_helper_process_initial_out_bufs 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 0xd42ed056 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd5e4f895 venus_helper_vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd6d7ca2d venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd8abd57a hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd9c93db3 venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe2961e2f venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe9f0f91a venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xecae726f venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeece003c venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf13e8a24 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf1b74bd9 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf53f7b5b venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf6d2a512 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfb0d863b venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe9d33b07 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf0f3b41d venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf211487b venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf259df17 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf2c50201 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf4536a7b venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfcae12cc hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfceed882 venus_helper_vb2_buf_queue 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 0x7bfb9552 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x92bff12f 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 0x23634957 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x2743e67a vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x31f4487d vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x46d86a4c vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x54046bab vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9aca801c vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe40d9d15 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1c372183 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x3cf973dc vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7e23b5bf vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7f66ed4c vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9fe7eda7 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb0d7e7cf vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc3018929 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xd810f6f1 vsp1_du_setup_lif EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x474182cf xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5f9f3666 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6c91eb28 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9f4e6652 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x55a21476 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x59d1fad0 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5f9aaaac xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x88406bd2 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x97558e09 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa3444524 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa5aec9b2 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 0xce0f80e0 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdfa9155d 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-vtc 0x2c4ad831 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x25dcdea8 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 0x858770fc radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb55c5ebd radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0bf49b4e si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3e268d3b si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3f5d7241 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6a4be35e si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8663aab2 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x01fb36b7 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d1a7092 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x200849a9 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x846c5a6c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd8c6bd50 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0fb5fdfc si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3d37d87d si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4f67f483 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc01b3a2a si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xed98af5f si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0ed20a15 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x163bec52 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1756170e ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18b3c85b rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x24d23e10 devm_rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x40e75bde rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x491b9691 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a77afad devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7260e0b4 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74227de9 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8012c47c ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89820163 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89f70639 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98248680 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaeba705a devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x50446f57 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x54d78d41 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5def02a8 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x69217af7 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bbdfa11 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9093296b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf366e49 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb1e1f009 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 0xbecaf26f rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd820f2a ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2464e45 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda3661b8 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7571079 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf08315b rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2723cd2 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xddc8bc8e rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe76acc7d rc_keydown EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xbb030d8f mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd2725a6e microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x704d37d4 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x3b0a9d1e r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xc3397901 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xaed15df5 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x87578307 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xce16ba69 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x67716290 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc2b7e7ee tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xce2c720d tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x77b749a7 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb921076c tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9638cb1d simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0086743b cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfcc8a8a0 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5583fed0 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x1b06f3f9 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xc80a7011 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9bc7f7ea r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd3b2cf11 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x00c96313 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x01bf3216 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x07dae75f tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xe9a9b3d8 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x40f4a345 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4e0a7365 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf96f98ef tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xfcb850e5 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xfb1e6518 simple_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x023acc35 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x076c6a16 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x37b2fb3c cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x40bf9c57 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4dd1ea5f cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x53c1c0c6 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57a25496 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5ffcfdb8 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d1f9869 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f5151f0 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x871c887b cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d5ca69a cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa325ec21 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb689077e cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xddc415c1 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8293ec0 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf85dfd13 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe7d29c7 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xffa6456b cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xbecab0fa mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc11d31e2 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0b1fcf0d em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d1ed289 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d54e241 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x373ee2b8 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x49b3f03e em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x668aba88 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6a50fd33 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b81b898 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0fe990f6 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x296fad09 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2bdca897 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d17a7a6 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5359ff24 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61f77ff0 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6eb47c38 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x736624d6 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7a1241c1 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8099fda2 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80e59438 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x87892425 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8cfe9565 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x959b3ba7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae515798 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbe81ec9b cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc40ee8bf cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc584f663 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc976861f cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x562dc2b9 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xd40d8d20 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a2e42ec em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x25ca61b2 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f0a7d34 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x33310771 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x37d236d0 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a30692d em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4c303cb8 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e7c27a7 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f4b5700 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62d5fe9e em28xx_stop_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7b051e6a em28xx_write_ac97 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8cf8e829 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8fc3b011 em28xx_write_regs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cc7c220 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa2f6e389 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb25e585c em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb855ff54 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb601038 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf137c4e4 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf4174487 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc1e08e8 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfca3fb57 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0b7e1261 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5144c652 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcb7f19bd __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe29c4852 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xffcdd265 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x932a2ec7 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9407486f em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa956e14 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9d11cdd em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb3f6cb1 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc39875e5 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdcc26a8f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3dce621f __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9ee5a4dc __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xbdb44189 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc85bd2a2 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xed8cd1fd 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 @@ -14317,20 +14319,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 0xa3a0b92d v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd6ba00bb v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe04441e0 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3dda18c4 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x45ac4d9a v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1e1d4bcb v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbe881027 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbf1a3ab5 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x159b0f17 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1a40a14d v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x23915aaf v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x27d891b0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x37fb10f2 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 0x627e261c v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6d9667de v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7ad8c51a v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x98512fee v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xad836c4e v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb27a6553 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc6b7a370 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd6d63962 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x620a6a6b v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x769b920c v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8c378ae5 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb7595ebf v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd8795405 v4l2_async_nf_parse_fwnode_endpoints 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 @@ -14339,53 +14341,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 0x0039aec3 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01d6aa0e v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11dcd2dc v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15a61572 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bc571b2 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e4c04b5 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26684133 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28af1524 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x410fe84e v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x433a4fc4 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4cfbbe2e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f9337f6 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x51520799 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x593c9cb9 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6852fbf9 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69158089 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cb4abe5 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f24313e v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06ad64ca v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a8a9918 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x128963ea v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12ae8c5e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fdd82d2 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22fd822f v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23a01914 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2470431e v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b56f400 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x352afece v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x380480f1 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4cb04389 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f046504 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54ea2e71 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f33f6ce v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f7ea979 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63595c1d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63d58ecf v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f2aeb82 v4l2_m2m_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x793a4283 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7941b2d9 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c468ff5 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84a73bee v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84e5f89f v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b3a31d9 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8eb87e9d v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90225838 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dc1fac3 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ecc408c v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0400a12 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa47c26b8 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5707c04 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba1042ca v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3b62b46 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc69cf0e8 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7428ff16 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88835814 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b2dce52 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c790d9c v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95811ad9 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98e88bc5 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98f0c509 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a76de19 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d383dcb v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e9fdd9a v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa9a2d89 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab8b6e0e v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaddddc41 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb088884e v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1730b10 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf588c11 v4l2_m2m_buf_remove_by_buf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9b93419 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2a185f0 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd50d0bc0 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5ca826e v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd75d1da0 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd99d12b6 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb3dd4de v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd1b992c v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc768c7d5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3294f11 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd98d8814 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9bc3b53 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe214fa6a v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea086781 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef1bd3b9 v4l2_m2m_ioctl_try_decoder_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 0xfe99ca40 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xffe654ca v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf242f1cc v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xffa94502 v4l2_m2m_qbuf 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 @@ -14395,345 +14397,345 @@ 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 0x16b8440b videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26793df0 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d82d337 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fab4a34 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30598c6f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x316a57ce videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4421bf91 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52baa78e videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57f01416 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63178cdc videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77de4c60 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x938008d9 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93d32ac5 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95eb14bb videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb39ddbdc videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6866111 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6c37395 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf11f956 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1db1fce videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc3a907e5 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc68e0aec videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda75ae8f videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9b56156 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf59ce3be videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1aa123b8 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2c1d7a9d videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0662f71b videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06dd625e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x070dbc75 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x14dac5d8 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x23c8b869 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e1c0131 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46f2b110 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x48b6ade6 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c052188 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e5dde8b videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e96efe5 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x738c5f94 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7ae38fe9 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fdd691c videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8697e0df videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bc3e352 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ab7fbe9 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa1ea407f videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb4a34615 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7250ac4 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc59fd0a4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc69a6bfc videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe776f7db videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf67dc317 videobuf_alloc_vb EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8805abf5 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd86a7a78 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x50e45a36 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x690a27fb videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf277c160 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01df475d __v4l2_subdev_state_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0522397b video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06909fc4 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c5f5767 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cf12716 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eb53cb8 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f1cd3e8 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9159b849 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc00f66b4 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdc5c8cd6 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe05b10b0 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2c465432 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc2df3952 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xee5e4339 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ac3117c v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d01f89f v4l2_device_unregister_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 0x145f68bd v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x166b38c3 v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a4d83a8 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f28b686 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a016f09 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2432c0a6 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x256aaa02 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27eaccf8 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29a8667b __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ac08f15 v4l2_fh_del EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f4c7cb7 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f99e72f v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x315f85e9 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31741d72 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32906150 __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3685497b v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x410f9ec0 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4220a219 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x426140bb video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4323e56b v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x433869a6 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4436cad3 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e64684e v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ffd272d v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x311d09ce __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3161563b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31fa11cd v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3766f1f4 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a178fa6 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a8ee7e4 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f3e86b5 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43671bc5 video_device_pipeline EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45d3f250 v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47cfedca v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48cd19d2 v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x538c57a8 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x552ec51c v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65806730 video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67af3eea v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51093a3e v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51275f7a v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51467646 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52dc55fb __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x544a8a4f v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58d1bd56 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x593f5cd1 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59da9555 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5acc3d3a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b196b86 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f3f2ecd v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x614d82bf v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61e34eac v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63e59db7 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6518e192 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d132673 video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f28e2ba v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70c2fc18 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x722cbef5 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7451578b v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74e1f213 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x762ef9d9 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ad90c3a v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81c02de4 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82ec881d v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x842143e1 __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x857ad0a6 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87329483 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c3a0152 video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f86d973 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95cedc03 v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ce6cec0 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74ef19a6 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x850de020 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8734ee81 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87838854 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c31b0d1 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e657bb2 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90651527 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92845015 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92c00525 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9483044e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b8a582d __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d6cac15 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9dd0d2ea v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac8e43fa v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa53753fb __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab3465c3 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 0xb022e44e v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5831a99 __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb83648ce v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb997d6fa __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba5f2acd __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcd7ce7d v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0003e01 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc011a8b2 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2ff65fc v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2cf8b7f v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb58e43e6 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf08425a v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0cc8f31 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3167b57 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc853d129 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9a827be v4l2_fh_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd02a88a5 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0d96693 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1e1d817 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb3855d9 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc9ef7bb v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf3ddbf5 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfd89c0c v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd37862f9 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd863a312 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd98fdfc1 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1eaf860 v4l2_subdev_link_validate_default EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3e05d3b v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4376627 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4d31c60 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe758121c v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe780e99e __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefa49938 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5e363d2 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8374031 v4l2_i2c_subdev_addr 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 0xfaced2c0 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x956d441d pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa53603f0 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6b1a7b5 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9553e14 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x27a20d67 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x639308b1 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc78dbd49 pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe7425b2d pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x03db67f2 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0ae36df9 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0269c761 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0c6cf6a6 arizona_clk32k_disable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x31ce9bf3 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42595046 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4474597e wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4827e64e arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x489c5591 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2baa83cc wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x381a1994 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4f5e9753 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x548cceff arizona_request_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5ffb7bc5 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x63048c4b wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x67c1badc arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72f65abf wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x68924280 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x80e33367 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8433c049 wm8998_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8de76183 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8fa50e82 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa1b7c133 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x95c116bd wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa343157c wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb239a719 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb931fd9d cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbcd4bf39 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcc9dcfce wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xce7a97a0 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf33c02ce arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5d422f0 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1bfb1824 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2807c96b atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6ea0c7d0 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x948f9092 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xab4288f1 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc74eada8 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdd915da8 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xde522bf8 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf13168ed da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1f1957b arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd6f9d7f1 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf2f8346e arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfb4aa35e arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0a696eec atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xadaccc2f atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x273cc66d da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x32d3f303 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x845ffc1a da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9f72fd4b da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb2de44ec da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb6cec184 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe3d2b253 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 0x0ef6eb77 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x33e2e346 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x626a644e kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x699381d8 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x717c79c4 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76a30c6e kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7a53f5d8 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa03101b3 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x04a00db0 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6d63855d lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc4a2e2e6 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x411a694c lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x514cfd7e lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x53bb03f3 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c56eead lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x93627c80 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc1a1099f lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf2a8808a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x612bf847 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9f4ef6dc lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb3d4c35d lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x03dd6af5 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0472b42e cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x047f686e cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x05e2efae kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x06cef47d kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2790890f kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x36f1ccca kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x94ddf11e kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa2462300 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaedb1de0 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xec8bb249 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x092d27ec lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x41fd4769 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x83e1c5ec lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x13362426 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e07e422 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x55ed8392 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fae7221 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa49b3e0f lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe082c715 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xffe3b604 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x923ffd39 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb9fe149a lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc6ea6e69 lp3943_write_byte EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x133caf68 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1ca7c39e cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1caa1fde cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ed558e6 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ed884a6 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33f3afd3 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33fe7393 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e611ab3 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4747a922 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x474a7562 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5502644f cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f92de92 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f9f02d2 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6de045ea cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6ded99aa cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6def7236 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70c6b2df cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x70cb6e9f cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8796384b madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa723ef26 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa72e3366 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb53377d5 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe416f22a cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe41b2e6a cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe727eeff cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1082f54f cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x108f290f cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d6de3cf cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x53b7e843 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x53ba3403 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x754b096e madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x81b44cda cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x83faf13f madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8452b5ba cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x845f69fa cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9974428f cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99799ecf cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa73ac60 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xab06d9f7 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xab0b05b7 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3d3ae47 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3de7207 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb85c7461 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc767a8b6 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc76a74f6 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda415f83 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda4c83c3 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe128d1c1 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe833c4fb cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe83e18bb cs47l85_32bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x536ff62e mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5c2eb8d3 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7897b44b mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x87b644bb mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x95b9b1d3 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc70c0f9b mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0e6b34b cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0eb6f0b cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf6f92e5c cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x55ab0695 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8fd59418 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9dda6170 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd2f8cfcb mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdd602a50 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfd42dae2 mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0ebad778 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x280252c1 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36ba139a pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3e02eb96 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b8a4419 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c2d628a pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x90fec2c2 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad1eca39 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc3121334 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd0ee0c70 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf125eea pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xedf260b4 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1ccbb619 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xeb892f33 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x00d5036d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x955b7f3e pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa4084e5f pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdd8dc218 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe2cd7a82 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3415c7b0 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x37112380 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4899b51b pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x59517394 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5ae82b83 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71c4479c pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73643557 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x882871ec pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x90bbe0e0 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9f8bf06e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd1bed1c8 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5ff91b0 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x111de535 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x61472c11 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2fe7895f pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x591e1e00 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xce36618f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd28600d7 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe9aa9808 pcf50633_gpio_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8a3e216d devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x818af98b 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 0x0a8a6c36 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f1112fd si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b082685 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20c8bb0a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x290964e7 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2aa3d261 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33a87da1 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b3df0d3 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x572cb5e0 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58a5efd1 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59a05082 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59bfa4be si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f886dcd si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x617ac073 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62b4719b si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67e6da04 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6dc78933 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6eac567d si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f6b41e9 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79cf0709 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7cd8b966 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8add3868 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c53380d si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99eaf794 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa34de2d9 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbc57e4c si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc68b0c5f devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd4ae5f50 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd5b6eb10 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6d5d677 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9542a4b si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3a3bcfa si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8672c52 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfce8477e si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1560abce sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x45393151 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6f84061e sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf7b2ea56 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xff74ffcf sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x4d2811b9 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x08ff5be0 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x684001e0 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37276294 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8f1fc4c9 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x97db0362 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc92179ae am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2ed977c4 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9dd04fa0 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf03fd421 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xffc8c365 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x18699bbb tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x893ef4e4 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xeaa084b5 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7dcafa14 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x19f7b53b alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1b143cf9 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x648a2544 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x69adc13a alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6e0ee627 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa2e0beea alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfe7eae92 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0980a878 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1271933b rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1e4e9f4e rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x215d6720 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x22f41e6f rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c74cfe6 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d65af2f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3fe87168 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f4281e5 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5af1b1e5 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5d5ea023 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e38f09b rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x621d5c21 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x66901fd9 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x70d10ec4 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80264fdc rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d73d3c2 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9c45d61 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb00c4086 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0c24203 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc9dc0599 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcd86ae53 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe8cafff6 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed79f4ab rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x227192c4 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2e1f3bb4 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2eb06968 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4e305ab7 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x52156d8c rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x58f8e43b rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x608b4c95 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6577fccd rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x764f516d rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9a3c0038 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcc976324 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd58c9a5b rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf18849d8 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x099a6e77 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x88f4d6fd cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8f2e8330 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc1810245 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x087c74b8 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d507026 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d78d9d5 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x223c74b7 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23aff4c6 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x344bf9c5 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b5d4aec si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e5fbb52 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x539ca5e6 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55421f3d si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a7350da si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ed1c6a0 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e7eaaa7 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f5e2878 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79bc40a8 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98c5eb0c si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa35ac136 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3b058f9 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaadb98da si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac4abd37 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7035337 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9fb7f72 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb9078f1 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbecff56 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0d8ba68 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe376ae69 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe92790bf si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed403c09 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee00cbdd si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf05af850 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf75631e4 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf78964a4 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8bd0899 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb97e8c2 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x04605c18 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x26f2e9d9 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x51c7b3e2 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6eda6519 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa75baec0 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x64a0115c sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x6dc3ce18 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xe46baec5 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0cdace94 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb6d9a9f2 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcd9ed388 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe1c2b7b9 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x37580f20 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x497a8065 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x783a9576 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xbd4a2c91 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x17ed8e48 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa3f12c16 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xcc888e56 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xf8bdd1df ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x14e66d87 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x280bee62 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x68ebca7e alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8d8e3aef alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc2d0d29f alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xce6ba6cc alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd319ddc0 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06432525 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08c7ac90 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x16489a31 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x18bafd8a rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x247996ca rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37a8a234 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4a7df875 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x574b4781 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5a1074df rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x78815564 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7ef10022 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x83121bd9 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85fe684b rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d80d677 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x96b5734e rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa172c396 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab7b74f1 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xafc4ce8c rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb40e2fb1 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb583ce0e rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc107bbd1 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcedb4bc5 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd7a4581f rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdfa3f981 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1a1536a5 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x31e46da1 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4110a78a rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x462709c1 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6d4196be rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f4ffeba rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x73901f17 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x87f9fd25 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8c2d5ade rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8f619184 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x950fe433 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa789d991 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd03c430e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x02207215 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x04160eb6 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x11b5278c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe7998619 cb710_pci_update_config_reg 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 @@ -14747,2963 +14749,2967 @@ 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 0x2a8647a9 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x575296a8 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5eb15943 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcbe2aac8 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd0139866 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd4720463 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6b59f51 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfec74470 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0f042aed lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1e056a15 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3d5136db lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5a3468c2 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6761fbab lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6d32277d lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc5bdfa8d lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xebbac55a lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x8f405ad3 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x034a67e6 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6a4f4c7a enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x77df8bb3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9daa2079 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaf9aa299 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd928d076 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeaa33a6f enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf331f61c enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x24b2d6a3 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2ba2a7ac lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x37c5830b lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a5bdb41 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x574aee18 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7abaec6c lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x81b3df67 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaea1cb90 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x9a8522ae 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 0xb98ea18f uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd451ac5e uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdd5eec70 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x46647569 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xac81df1b uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xbb9eabbe 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 0x4b43fd79 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 0x5cf423fe 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 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 0x6f486332 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 0x936d6857 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 0xc955e37f 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/misc/vmw_vmci/vmw_vmci 0xf642bcfe vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x21e34ca9 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x44349071 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x79f3855b dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x1d523673 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xc857038c mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xd9b17062 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xdb9fd5f2 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x2d6bdd1a renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x50b799e3 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07171785 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b1754c4 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0c588b2e sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c64bbdc sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x282366ee sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29970452 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36d6d46b __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43a68e81 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x54ad0e6c sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6076d25e sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67291b1f sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x676fa82f sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d5f6ded sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e1b6293 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81113ad4 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81a77ca8 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x890130ac sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89afa44f sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f6fe72a sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f9ec9a7 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fac2caf sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa027b928 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0325c35 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0c70385 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa21738b9 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7f7c3dd sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab744d5d sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4307adc sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb914a1da sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb929957f sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba5621b7 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbf255d2 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc279201e sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc36ca4da sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd20004f5 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd23e48fe sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdfde49a8 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe01dc476 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe8b812f7 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeda08318 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf34d3090 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf914ba16 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0fff1d10 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x101dfc31 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1576c2c6 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x578b3fe5 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x76414a2e sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8f4c6e03 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xacbe008e sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb94cc32e sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdf047ba1 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2697e209 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x308da17a tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1a0b466f dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3fef81de dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x84a81fdf dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x3c7ba2f2 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x5b95c72f mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x9aa1d5be mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xf56f9d00 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x4d47c983 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x67563381 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x016d65f6 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b93064d __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d6dcd36 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1221ff98 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12d48358 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1361b2ec sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x138755cb sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1749426f sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x22c0ba12 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2af0f18c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x316eb464 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x343eda3a sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x424d00d9 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x42de5c06 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x466ecb58 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b0a4e87 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x552fccd8 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x573d822b sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5bd5bd4f sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d26f88b sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6255f612 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x753a0c50 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c6cb76e sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82693ad1 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89092a7b sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bf9eb60 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9e64689d __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa323d0e8 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa559a1e7 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xabf8cce7 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadf548a3 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4409e51 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4920384 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc3987b11 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc416f7ca sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc60b60ba sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd403b6d3 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd52dda64 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc711a1f sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdeb94101 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe39f8bb0 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf70c0bc0 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x374072c1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4248ae1e sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5ab42077 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6d346d28 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8323e7a5 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8d5b855a sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb9baaad5 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe8e88884 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf7acf258 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x030a2b5f tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x275fc8a3 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 0x4584ad81 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8eea4576 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x915328ee tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb7107d1c tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc9e62d5f tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xede11fd6 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf8a1c1cf tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/most/most_core 0x2c96a796 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3ee96e6a most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x477865d7 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x5c91dbdc most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7a49c172 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x897e13d5 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa20a6dc8 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xaa7ece01 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb00dbb57 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb28c7389 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb913b0b1 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb9320639 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xda95ea58 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe0aec08c most_put_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x00d9cd90 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3ff0e878 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc2eecdee cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x20647a8c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5e36315c cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd39db50a cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb1a31c0b cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x28ddf3f8 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3679a62c cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x49db7ba6 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x286fb225 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x496e8970 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x008e0b70 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x008f77aa of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00ce2660 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09ed5e8e __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e4a8049 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x113104d1 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x134aff4e mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x160f2659 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18a46a7a mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a951569 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b131c12 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d05aae6 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20082454 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26847983 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29ac7afe mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e03bcff mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2fd46a3a kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f22e39b mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fe4f6a2 mtd_writev +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x524aff9c tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x55a98944 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5c02a9b4 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x98f61213 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb9fb9446 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xeaa98fd7 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf553afe2 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1498d498 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x185daa6d most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x30f64a89 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3d9bbbb4 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x67614f82 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9559a574 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa3360b1b most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa73584ef most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb5664e2b most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbcd3d4f4 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe75790d6 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe8b3370f most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xea6985ba most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfea5981b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x13044c63 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2c2d698b cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xee1a69f5 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0c90de97 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x72c29547 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xff691111 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x9d57b810 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x005ae75a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0fff57cb cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x71fa6b4f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x48c44c14 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x6dd10a93 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03ba149b mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0723a8f2 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07802c3b mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09b9cd02 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a23b0e6 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11380b3d mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1dda2c40 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ecfb2d9 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f4c40bf kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x253ab8cc mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b6ce5d3 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30f4e20f mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x32fd5eb0 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x354de642 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x395f5fa4 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4162de20 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x43ad37a7 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ce62f57 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f30dfe6 mtd_device_unregister EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x522d055c mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60393bfd mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66e28a63 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66f12745 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6763263c mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ea12134 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x728f1a22 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76d8d2a8 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e64e450 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81ae31b5 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81af5fc6 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8547bad8 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89666233 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8dde8185 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90f67833 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1b994cf __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5bdc5a5 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa6d4365a mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa94dab0c mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa6b4dbd mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae7b2a90 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0ad544c mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1aa7d58 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2354672 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57e613d1 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b480ef0 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68104df9 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73096824 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78b2ed7d mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78dec06c __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a30e550 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a6eb8f1 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c35e591 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f02f4ee __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x878f616e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8939f746 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a506351 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c6fca5d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d43f72b mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d91afc1 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98cc7c33 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9aeb533f mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9f768d84 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac8faf54 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae50714c mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1c3eec2 get_mtd_device EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb94a38a4 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5137edd mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8a4dfac deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdbc2d70d mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe86a9dff mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecb9c4cb mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xede0f79b get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee7103b1 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee9df7d3 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1f568b1 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfc7f36cf mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x11896495 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x825ec07a add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9fc5bb80 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xacc054e8 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf8a8e968 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x164ade5a nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1aff7a8d nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x27f8cf1b nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ac22dfa nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x443139fa nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x454e4d41 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5b30a924 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x78d6c61b nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8134320d nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8271df81 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84ff7292 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89a9e4a6 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91f93cf3 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9f0703e9 mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa087390c nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa81cc770 mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2bc948b nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc4404da6 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xebc006f4 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec893921 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf4cdc7e1 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf81ea242 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf95145c6 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd552854 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfed6c2fa mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdc1cb9ee onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe22567a5 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1faf4085 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7ff65c3f brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xff956864 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x2d7d0c6f denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0ed5eac5 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbaed18c5 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd08b2a5 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4045344 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb419d95 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb6a60f3 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf660fb1 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd72e36a9 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde5fe890 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0fba354 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe62a4225 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeeb48d94 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb93d045 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfbeb53cb mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x088d0aca register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0a4c2f59 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x145c89e9 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd218ebf1 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe00f5601 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x046d2523 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x07345242 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1ce623d0 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21e2db85 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x239343b7 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25d8d107 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25dc67ce nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29be1288 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x395b7cc0 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3ce0ceb7 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x44b3e1dd mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x538acab1 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x53a5ef7c nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x58fd4ed5 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cb09de7 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x62f3e7db nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x99d11ece mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9a79dccd nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa72a96fd nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa7df7fb4 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb05e31c9 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc24fa90d nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd46e86b6 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd812042a mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0cb0600 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7249bdf1 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdd097451 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x26217066 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x662241ca brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xf41b1320 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x40efb060 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a94cb06 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 0x19a496cc nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x198aea63 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x224ad5ae nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2c8508cc nand_write_data_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x308dd462 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x35a5c2b1 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3df60786 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3fe404c9 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x48294ca5 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53fe2ea9 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x344e3eb1 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x400312f7 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 0x5b54949a nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6058544e nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7e46e837 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8232e46f nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x886f42a9 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ccf69de nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ed6b6ff nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x98a90479 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa1ea602b nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa922d21b nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaf241eaf nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb0f412c1 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcdf33e2a nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6091ff81 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x63ecc40b nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x72fafc64 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x97be1ea8 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9c82eaa9 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa51fa96e nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc0a5bb56 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc73ef438 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcb62185e nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc516515 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcd582c20 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf903a96 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0d4c532 nand_read_page_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 0xe364ccc4 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf88dcc15 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf8ab3696 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xfc11a858 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x67706474 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xbe1c3bee spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x29014a65 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x33a4cf77 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xda06e25b nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe0214d18 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe4f4eca1 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe61becc2 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa7bf57e nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x50471bb5 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x46c31d07 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x868c48ff spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f506dac ubi_open_volume_path EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x47b90d50 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ae4956b ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6161034a ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x45b5c232 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x58a3305d ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fb60b01 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x75c259a8 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7f37c29b ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9414f3a6 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc09db0e1 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc88ff400 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca402308 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd35f9be8 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7f23614 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf1497602 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x889be8ab ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8ff6ec41 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x98de9c6b ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa214261d ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb94ba311 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc3582c12 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcb79254a ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xce4c6497 ubi_get_volume_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb4e8f5e ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe2ae6e9 ubi_leb_read_sg EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x116f0e2a mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x166a5baa mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x16eea538 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x480b4ae2 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6048d728 mux_control_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x656e35dc devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6daac12a mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1b4d7c58 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x23367a68 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x270575d0 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6452ec75 mux_control_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x919222ac mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa138ccb0 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa95460f5 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc5313aac mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xca549e50 devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4f4d4de mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8111a9e mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x835a7453 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8b80d40c mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x954e76ed devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb5570f0e devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc19f83b4 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcb021eae mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8a1dfff mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xda5ddbd4 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe7f60db1 mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x93a6d0ef arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa13a335e devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0c907336 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4788d0fb alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6458cb20 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d116e66 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc3b3bdb1 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfb77b14c c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x770bb610 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x88e2db1c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9de935ce free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa499f7b9 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02174822 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cf590eb unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0f5715fc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfe9df675 mux_chip_free +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9535ae1b arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x953be7d6 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2500d06f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2c5db061 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5b1156d3 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6dda9ea3 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x956af79d register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x984369c3 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x22e9f91b register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x661d9991 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x98562961 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x99fc3b42 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x05fe3036 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x08aea6cc can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e439d7a can_rx_offload_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 0x155ee353 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x15b307ef alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ad23a0e can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c941fdb register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23d20c77 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x253b70e7 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f751f96 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x487f34c8 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53a569b5 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55b685a0 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b4ccdd4 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bb5ceaa can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5d91092a close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1916ec7e close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x210703ef alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c7bdf5d can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2ebbb2d2 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2ed0e7a4 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x300bc7d7 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x31f5b4f5 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x42d139e2 can_rx_offload_add_timestamp EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62078af0 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6687bae1 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a483c85 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8bf9d34b can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96d0c743 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9a5d6cc2 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4aa821d safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa22c317 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb09148d5 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba50f3c4 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8f15a7e open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcdc6065b can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe248f374 can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe587c911 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe67a9675 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c2d8b99 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x763449b6 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x83038943 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x84c7dbf3 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ac08512 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9c6f6078 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f02a090 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabf1fbe6 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaceded54 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5a2f229 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbeda3504 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc94afc3e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd7076cfc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdae730b0 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde938b72 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe1abf243 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe3208447 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe4b2e62c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe55fe22a can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe76eab31 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xef3a2bf4 alloc_candev_mqs EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9fc475a can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x160de132 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6402e2a2 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7ff8ee3a m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x80c3bb0a m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcceb9df5 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xceaafac4 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf7261e5d m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfd99f6f6 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x27d0261d alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x397280ff register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x19de770a m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1b6e232a m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x42547706 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4c1685bf m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x958ed210 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x97fd395c m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc8ee8d66 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfae7e397 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x424aad95 alloc_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa6c42dff unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcdcefd16 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xbec6b3de lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xc194a427 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x9e3ca1f9 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0641c53c rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x233beba5 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3f0bdbde rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x42bdc1c9 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x433665e9 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x51e16e92 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5bad50c7 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5fccfc6b rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x69d45a58 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x84c358be rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd4ac4304 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd7029d56 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x792fe5b9 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc44a3383 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x859639a3 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xaeb4d9ae enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6f409f10 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb09d336a unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe39eca7d register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xdbe8b6c5 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x06488d8e ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x97ad8a44 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x025752dd rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0c05512d rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0c35003c rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2cc94105 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x35c0a42c rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x38de1adb rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3fd0d9b4 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5445afab rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x94152ef8 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa3f1b2aa rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd47da061 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdd3d68b9 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x15038b33 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x34ee6ee5 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x1d0b7483 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xcdd52824 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd0a846f2 enetc_mdio_write 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 0xe8ecfcf9 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x12236c07 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x15a4fd9d fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x35b9b59c fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3aa3f493 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4afe6bde fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7679b5f1 fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x82c8c5f8 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb478c307 fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb7d5eab7 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc12147ec fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe3faaba4 fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x02091442 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe2ca4120 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x00d50162 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x05b3c3d7 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9a9b259f ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc92f34a0 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd5b76ecf ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x3817a4b6 otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xe55462d4 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xf101935c otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xf6116466 otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x054e043c __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x055493a6 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066e42dc mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07cd9545 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0859a563 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0add3501 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aeef81d __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dc82afb mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14853dbe mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1676b745 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a417715 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c091392 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2a6b5a mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e855274 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2095ed4e mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2476d0e8 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b39f77 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x251d8a9f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2594d36f mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x265467bd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26d6c35f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b8db4fe mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2df43bb5 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3025ff32 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32efb3e1 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3987fb5d mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9b039b mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40d453e8 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4118fa91 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x414e9c80 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42a08ffb mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4327788a mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45230fdf mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4579cff1 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48417948 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dcd0d62 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f11cb72 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52b66bf8 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54d031d4 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ab7f4f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58820d61 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x592b8805 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b1da7dd mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c16c17 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x641f9168 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e75a82 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b3b07e mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6708b23b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6756117a mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b1d311c mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f33680 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x735bf990 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7aa15e42 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bedde00 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8123b278 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x847184de mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8526f681 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87c24eb2 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87dc9d3c mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8911a932 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8928b787 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a0ad7d6 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f4fc096 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x924be321 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9352c34a mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93c9c887 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93e153e1 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95c38b93 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95db440f mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ebc7b2 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ebda6e mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9827b00e mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9839a514 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9955eff1 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aa10353 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d003c02 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee3ba07 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa24e020d mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa37a1f84 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa385f709 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e87b89 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b5de12 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab30025e mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb030025b mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1a40366 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2a8da42 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46f2569 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4c2f808 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a64b92 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73a6a4e mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a4a9cf mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb85c145c mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb90f3f3f mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd31f08b mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdd84e8b mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc102daf2 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ea0ff8 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5849153 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5cbe9a7 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc817020d mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae6bdf6 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbcf5640 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc3524b8 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd4a31de mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe02486a8 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe267d96a mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3216ebf mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb4d877b mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba8076c mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebfd50b7 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec6ce2de mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecbc1406 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef3341c0 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf27d9225 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf728513e mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf75343d8 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbe7f8d5 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca4efc3 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc0773f mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdf05c43 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffaca555 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0321ffda mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0664a38d mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06b64071 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06d79ba0 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x186d9fc0 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x37717a85 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4c766a50 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x61e87459 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6590821b fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x77205c09 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb1a64945 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb936cee0 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd412bbd5 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe2c9323c fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf3656441 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x02c833d6 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x46bc8b3b i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3e894139 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4daf9bb0 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6aaae7fe ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa1e5f30a ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa3b82cf0 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x080c4e08 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x1093887b otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x31d398df otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x9bd22b09 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00edee6e mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x044bac16 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0526b609 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07869a62 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08184f1a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5f11e3 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df35900 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f359af0 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fe9bb0c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ef8b7c mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12f0427e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x137f425f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f16820 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x169f2e52 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f248c5 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c324b42 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21dd0ac6 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22e49ace mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23fad7ad mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28acdeeb mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c7f1547 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d046ac0 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e44be6a mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1e6065 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f64d588 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x310886d9 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3262d13d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32dc8b0c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34427765 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x357c3b1a mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3644485f mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d6433d1 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de39deb mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fb125e0 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42c854e6 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46174743 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a740940 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b200648 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc33932 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4df0e32c mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5192a502 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51b5d694 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x520a7eb0 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x554a9b4e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56c20a51 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cb6c28 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b6008a7 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60eecef2 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63ebd09d mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640be47d mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b04401 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6563e448 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65c2aa22 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66cfe312 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67eb59bc mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x695dbcfe mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cf8ca8b mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72d61718 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x769f427d mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76fb123d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d9f4111 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81c03d98 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8671f2b4 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87a3d374 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88af062b mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x895c341a mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89cd3919 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8af7080c mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bd109c9 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c940e0e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc701f5 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x901b3332 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x952e2f95 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9772c76b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ad47037 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b706735 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba2757c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dedc0a1 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e4e8cde mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee45aa2 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4859210 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5554504 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6c9a8dd mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c16f34 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaae05a51 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab2aee58 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xace0ddac mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafbfd640 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1e17dc6 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4366968 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4d27e12 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5477276 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9e5e79e mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2bc025 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaba661a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbba93a6 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0e24bf mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2be1026 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ff50b8 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6885f90 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc92ac52a mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9cbaf0c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1a2ad8 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf54d56 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd17f243 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdd60cfe mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd24eaec2 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a8155d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd65a8fd4 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0b51b3 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2b7ae4 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4a992b0 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5b70fd8 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeca353e4 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0a7945f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf45da190 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4e159c7 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfabc67c8 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf99b27 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd403693 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff6843c6 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004e22fa mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b4d75d mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x060da957 mlx5_query_nic_vport_qkey_viol_cntr 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 0x0a2a6f43 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c440b9a mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f482dc9 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c0fb5d mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13092edf mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x139db902 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x189c1738 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f8da71 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b52558 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e813f36 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30761ffe mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a1bb33 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33fb1bce mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37a56e5d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d35a71f mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42528f2e mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c837b5 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4603bef3 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b341855 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d1a3d9b mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e28441f mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e343dfa mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565b8dab mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5721a5c6 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6d4c3d mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d7ccf0d mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ec33fba mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x641a1fdd mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6faf8b61 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x715f1641 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x733ae01b mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd9da56 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c40274a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cd92b5e mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb928a9 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd90f2c mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12903190 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24f86cd0 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2518c9a7 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25d81d97 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af9b24e mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bdfbbc4 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c1c7075 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e11aaf1 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33193961 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x332c2f4c mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8f8d98 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x464e940f mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49be060b mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f9f42c8 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50339876 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5036365b mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bb20004 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e2787b9 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e9b2eb8 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f172c97 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x605a184c mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60eb9f4f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6114ab9a mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e833d5 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68627015 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69c84bec mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be33a18 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c216448 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70519506 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a68e590 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b11d1ce mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f451372 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a12a83 mlx5_set_port_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 0x82560125 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x863992d5 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x894113c8 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e985df8 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9195bbf3 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a78f985 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bcba7b9 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d7d45fc mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d842ed8 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb54eec mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7023b10 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8347fa0 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a01216 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b95feb mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb627235c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf6b818f mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26011cc mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4373654 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca58be0 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ec5951 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f47709 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe043347c mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe53cf1be mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea1f56e3 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeda3f958 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0794900 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21741e2 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfefc1dac mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2bb66d2b ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2c816613 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf13f86dd ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xfde6210d ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4ec1adaa devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86c083cf mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88143afc mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x920be107 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932a7c7d mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d0f75d6 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f444d59 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0d13d8c mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa64504d3 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa76dc9f7 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ef8edc mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab51d67f mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab84e7e0 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1300647 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c0f5ed mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c8cb73 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc3dc4fb mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf22596c mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc55b51bd mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc71dd83b mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac1faff mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb81f1df mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf4f53a3 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd87c84da mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9956d8e mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5b50627 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe99b5bb1 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9aebdce mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c0ba70 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa1ec5b7 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb357a5e mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2f5023f9 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6d0b7bd1 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8043676c ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd5390e67 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x35fe0e36 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 0x018d7fbd ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02a2658b ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x036e9880 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b330734 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0dbe8439 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d0b950c ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27af0f0f __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33e5bad8 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41b3a558 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e3125c9 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ec9888f ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5694cf02 ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a325859 ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x614192ea ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6210e73d ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62d3f1af ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7370ad28 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bdb0ef6 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8136cef7 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8662913b ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8674dd8a ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87569192 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ca8b059 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0609415 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4dd6128 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa97464b6 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacebbc86 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4b3d2ca ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc72b997 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdbc22c4 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdc00062 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc458e4f2 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd05dddb2 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc90dc1e ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe217223e __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed3983e7 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf83cc745 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff4de307 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0542d96d ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16bf9245 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17b0a7ff ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18fedee9 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fb855f7 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e78bd49 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f8b9c51 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36710b86 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41b3376c ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bad270c ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c19a0ae ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aa5e0b8 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fc68327 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63524249 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64368693 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e4be300 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f103af3 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9695c73f __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a05fd3f ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bf92b36 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c232e2a ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d369d93 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad88c435 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4b1eebb ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9336922 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1f2fe99 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccd6a4bb ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd15e3a0 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf633660 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd26d5c5e ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda2df66f ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdabe23ca ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe674bd23 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7df6d69 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb101383 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedc1917b ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf739f8f3 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7a11902 ocelot_cls_flower_destroy 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 0x13bc0163 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x294d0d59 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x12c35754 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x33b63c33 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 0x6c196118 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x85f9f827 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6a85f55e 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 0xaba682c3 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfc536f3e stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x051eb1ae stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4ecf6406 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x981ba0e2 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xac7ad31b stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdaf23cb8 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x070980c5 am65_cpts_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x38e92f12 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9a218b23 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa24614cd stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc0612e27 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6b8dfe0c stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x791f3dcd stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcfd11c23 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd27f4f40 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf655d340 stmmac_pltfr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x68ecb5bb 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 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 0xf8666bd5 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xf356dbf6 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xf5289377 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4111d032 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x66b7b163 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xaf561040 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe0cf1583 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x8573991a geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x113f9391 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x70b31009 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x740bfe19 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbda93ee9 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfadb60f3 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x680ccf38 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3a253702 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3f3a66e3 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9f204f13 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe4b5b958 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xe280563c mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1439abde w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x50a435f5 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x90430615 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf40b9ec4 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0xeb73242a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x652d2eef ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb27bd27b ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb2dfe319 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc137cc99 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfccf1c32 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0xdd8595d9 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4f310b8f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x54dca8b7 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x85fac637 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcf7d7328 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x2cdcbfcf mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x828db9b8 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3e76eedd net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x415fc154 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0xe7d00af1 alt_tse_pcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1437c7c1 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1ae620db xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3bccb3e3 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8fa5cb1b xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xa48950b7 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x100c71b1 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x73f7c45a net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x6dd66158 alt_tse_pcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x14a84578 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x22fcd60e xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x378f392f xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3b7e8240 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x65570e49 xpcs_do_config EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcf2e9002 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd4b93016 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03bf6eb4 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0711fd28 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x097c2f10 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d322fc3 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15006090 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x164d4bc8 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1cdfb09c bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f23b27b bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f57f630 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x235037ec bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2438a65c bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26eb09b6 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28ad4594 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33192cca __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x345fbcea bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35453ad6 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3802271c bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ef003f0 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43389715 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43af744d bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x553e63b0 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x570f2e21 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x593bf81b bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a35fe07 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7233a1f7 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f4bc53b bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x977546e8 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a11235d bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb4a93f2 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc8b5cfd bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda426574 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde068775 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe20c93a bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffd52db9 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x52ad5aa5 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd174cf93 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04f7a241 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e6e56b6 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f5f01a1 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ce0c124 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x348ec7ad bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x389d70b8 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x391019f6 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e7ac5f5 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x412cb573 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x439b1c86 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44d03c3f bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c31ad67 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a47de0a __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5cc75f5a bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e7e1b4c bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7e32b3ef bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83e077da bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8766cca0 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa37c9844 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa63ef2e bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf338075 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xafbb6a38 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb667a8b4 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc25650fc bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2a2d2bf bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5cd7325 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1fe2d30 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf818660 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe05768a3 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe3b3e339 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6ef05f3 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5e479d4 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf80e7109 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc655347 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xa0ff5299 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xad4af233 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 0xee37fe6f bcm_ptp_probe -EXPORT_SYMBOL_GPL drivers/net/tap 0x14100338 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x4413b946 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x46bbad06 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x73b0ba16 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x7efc1ba4 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xaf1e1f2a tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xb47bf095 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xd6a360a8 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xe6360418 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1150bb2a usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2cc8662e usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6b2baeda usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x99dc3c3e usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa289caaa usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd8502f20 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xff12bca4 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0520f976 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x074c8d1b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2910cfae cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x61e418c6 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6856284a cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8bc889e7 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x97aff00e cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xad496987 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc32ea9c8 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3644124 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfc8d51c6 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x0c899130 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e512873 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1392f8f5 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x417c47fc generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c4d6bfa rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x74273640 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe8289180 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x126284e7 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14d2e854 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e60d1f3 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x226e50b7 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a3224bb usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42a1d8af usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44fed946 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4949ffda usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54219562 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58302b3e usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cea3d36 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e8c4d83 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82bb99b7 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83e417f8 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85c9673d usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x878796d8 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bb80031 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x983c7782 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9be43e8f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d437ccb usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f159322 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaba36f0b usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc068ef74 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2c1d37a usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd74109d5 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd99cb863 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdca8b69d usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe66efdca usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedbe7b8f usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa934e20 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbd0559a usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff5b72e0 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff795133 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffdd9df3 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4e5bc090 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7a0277b0 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe1327221 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe594b4ed vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x54850750 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58edde13 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d7c31da il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6af9a219 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ff1cc4e _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93ebc358 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/tap 0x0dc98386 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x3e73172b tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x54d79e89 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x5ec2b2ae tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x62c91530 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x86ade358 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xa3118804 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xb99340f9 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xda1c0beb tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3fce66e4 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x64e80cc4 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6e79e083 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7d22fac4 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x963a1686 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcb352068 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xff804822 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25e39846 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3cc59067 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3dbdc20e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5145f8e8 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x57df54a6 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x84c83ccc cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93469ad5 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95b3623f cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcd1f7c3c cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xce65bc75 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf66aa416 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x66a85ed9 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x06382ee0 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x18b9228c rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6fb71887 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x83b86997 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x964d5103 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbae96c16 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a9c7209 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20c00637 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29741a2e usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2fe4c85c usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33e574e3 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x390f20e7 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ff8899a usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4177a5f6 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49aa43eb usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52501700 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c00de11 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67ec3b9e usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bf8e20d usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72f9f4fa usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a571c49 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8246567f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a6dee90 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x966ddabb usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x983a4a5b usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4c5aed8 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa64daf76 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab3ed6ed usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb19b6949 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3895d5f usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4bbc747 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4ec4efb usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4599356 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8949301 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdffb071b usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe45d17b7 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4328b53 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbd52730 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe1c0ca3 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff0a6c57 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x07d5b5ec vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x577d509a vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe8dc89fd vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf735f577 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xf7e00c1c libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c1cad9e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3be1304e il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eda4d6d il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9157cff9 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd2ab760 il_remove_station 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 0x1374025f p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x22232d0b p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2523a320 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x28e173bb p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3167a11c p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x47c295e9 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x629ad9b6 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd4c55ed8 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf260636b p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0fd78a84 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x206d15c1 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x21d31ef9 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4400fb5d lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x75a4df7b lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x94fa3e71 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x96141fe0 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa26ebe15 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa4d1a947 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaf7a100f lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbc9929a1 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca53ca6f lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xccc250c5 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd401037d lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd5782651 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xead2c935 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0f69d3fa p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1fc8b809 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3d84eb4f p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5ccd598d p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa184198b p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xae793ad3 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb1407b43 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc63db09f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd8b0ef45 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0166e962 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1aefa2cf lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x33c4841c lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3970c2e9 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c151846 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x49569a5b lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x75ddcdef lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c7a8ee7 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x906e0786 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb56b5ca1 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc04d9888 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc5f60507 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdb1f13f2 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe1db82d1 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec7bdb23 lbs_host_to_card_done EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3e12a492 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x572ab0fa lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6afa1149 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7e28620d __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf86a65c1 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6c907eb2 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6d557814 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7b513d6e lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9f4e0a50 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa09af9e0 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbeaf1aca lbtf_bcn_sent 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 0xc8bd0f71 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcd95d883 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd2a9d179 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe73e67bc lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03e84c09 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07fb4342 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1172db56 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x14bb04e1 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x167ddcf9 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x428f2923 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x450b4f41 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4838ce47 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x488075d0 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4c2b4ad4 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51a5aaf3 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57fb7eff mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x781d979a mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x82569a05 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9026eb14 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9735ce1f mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb133a700 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5c540d6 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc183b9ca mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc214d64b mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd381fdbe mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xceb7174e lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd1ae2494 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07afadc8 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x08d5b40b mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0a9bb3d8 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11dd5d39 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1c559746 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a53f574 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x50c44fa3 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51f319b0 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58fdd9e6 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5dec53d4 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x72ddc32b mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8266c2e3 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x83e183bf mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x850b3df2 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x919d2d52 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9836f5bd mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9da7b0f5 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb43c1b21 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba931ae1 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf22882e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbfd3eb6a mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1f9076b mwifiex_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe22ef13e mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf7946fea mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff57eb37 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0292f5b7 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03e6e8a8 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05bc6930 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d16ddfb mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0df0666f mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0effc506 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x100aa5a3 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1151b91a mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x173cb616 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc15acdc mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfbbedb56 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01c47061 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03ea7369 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09405e8e mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ab0d7c5 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c45a178 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c518cda mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x120e6839 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x160e0e67 mt76_tx_status_unlock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bec9caf mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c6d6a5e __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d3b9737 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d9b008b __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1df8483e mt76_wake_tx_queue 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 0x226a0ce7 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22872fd3 __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25599e1f mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2709464f mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bf6ac3c mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d75a908 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d9fb37e mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x330bdb20 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x379c03be mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x390c6b90 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d694797 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x404a520a mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4136a60f mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x457388b5 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49152208 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56bb28fe mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c51b30e __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20094f6d mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21725a89 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x222f8e80 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22ac5080 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24f768e0 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25b59243 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x263b7e65 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26b16a4a mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d28c3b8 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32f22bb5 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36a8e7f4 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a460648 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fda35c3 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4078b4ce mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x413ea88a mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43bc7b49 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x443324f8 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x448342e7 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x462fa72f mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48bb0de0 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d6212eb mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x526fad63 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x576765b7 mt76_put_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64356fc1 mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x663131f6 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66f0fd7b mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bead1c6 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c06f76f mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f5246a2 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7427a67e mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76a54ebb mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x773e1a4d mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77ff4aec __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x788c2bd4 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7896e4a2 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7eeaf362 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x610d29e6 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6122b4f1 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65bdc6ba mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65e94f20 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66507229 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a429970 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7346e4eb mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7688cd18 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bf80457 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e62db85 mt76_mcu_rx_event EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81464d95 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8355e87e __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85d458d4 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86bbaf18 mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x877e5403 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87de7508 mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b0ce355 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bf8b89c mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x910f9d7e mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91e4efa6 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9280c5b6 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96068c0f mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99858054 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ae21b96 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e5e3351 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa277a828 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa461094b mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5390a42 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa936f06a mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa969d5a2 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9bb914a mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad4edd48 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe055634 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe0b29b8 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3dac4c0 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc436a699 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8769d359 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x888e7d5a mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89b13c04 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a5e989b mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d53bcf2 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93a3cfd4 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98eadbe6 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b6dac2f mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9db19e13 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3f7b9cf mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4945bb3 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaeb6923c mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafef3cbf mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb01f7a5e mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5d3635d mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb81e53e8 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbac8fc4f mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcedb8b5 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe8dd2f3 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf103a1f mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1b0bdb3 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 0xc79daf86 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc819a6db mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8c8ad1d mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4be71f5 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd519aae2 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd71914b1 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7425bdb mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde493021 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaf25a92 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd8f6416 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd222d060 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd25a829d mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3e6e223 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8cc67b9 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc6e7c32 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd9f14ec mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xddb32628 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf0e3e96 mt76_set_irq_mask EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6bfb343 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8bb451a mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf00e8007 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf06d9c04 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1dcc6d3 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4a963eb mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa9b8ee1 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfee8e320 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x019d0e66 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04a6e30d mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0be1bff3 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x105205b1 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1af0222a mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ce80745 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cee3caa mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2069ade2 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23937754 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x326f1094 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35060623 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36afe44a mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3acb9e3a mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3de4c379 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x486e58ae mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d5e5a25 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4eac2d94 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x513f9229 mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5603fe8f mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57d43135 mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d25cb7f mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x608315f2 mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60f1b15b mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64e29ae0 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68b15598 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a5081f3 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ad60448 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c6295d6 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72eee344 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x772ef6d1 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78ca3a6e __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ba4ea75 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e516aa3 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f23ec85 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d6cb2d9 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8dac69f3 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4f04e0c mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe80eb6e8 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeffa4d80 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf110dce5 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf315c7ef mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5956db6 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8b3bd5a mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa0819d0 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfed065c1 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0150523c mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0346bb66 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03e6d44b mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08ad685a mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0eb4bd6f mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0ecf9742 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0ee1ef47 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1441df10 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14cd343b mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16b659dc mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17aed543 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1e59bd2b mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ead51d4 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ee9e961 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29a542e6 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a8d971a mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3393bc76 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x349382c3 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b6f2c39 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cc2e199 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x425bc0bf mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x449cd97a mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4840b3b8 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e0aeb8f mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f495462 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51288e21 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53e57dc6 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5764877c mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a9c91a2 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5bebd7d6 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c840fa4 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61c40407 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x632dbc6f mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a39a7d6 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6cc3b196 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e2edc39 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6eb9197f mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ec6d51f mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70e6fc8c mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72c16999 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d4aed68 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8441e04f mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85b28d8c mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86ba200f mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d646c71 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ff5cd05 mt76_connac_mcu_sched_scan_enable 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 0x960dbc69 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96424fa7 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98baa19e mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9cbbd3e0 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2207c68 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2343b88 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa51ba364 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6d1ab3f mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8f17364 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa91b1c94 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xacfbf6e3 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf839e2e mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0b11948 mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb132f2d6 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3a0a91d mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb51724e6 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb815bacc mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb88c59f8 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbef09c1f mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbfadf527 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc377be32 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4636239 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca53b580 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd718624 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2e8707f mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3228d95 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4af8965 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe26c2960 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2e0e198 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe35824d2 mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe49f4a80 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4d570d6 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe749c3ac mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe78c5f18 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8a9d206 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xefb2fcd6 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf31b81e4 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff705eb7 mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0cb27580 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1acdee67 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3537a478 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x61fd6751 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x75577152 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x77185dd1 mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9f91e562 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xab503256 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcf0aff5f mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd5ef958b mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd9d5f9a2 mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdc2d911c mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdd9953a2 mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xde321f2f mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb5533ad mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf3fb4432 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x072dc533 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x16dc8580 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4a0ce712 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d96de58 __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x53a5f732 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5e3d5ef9 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x735ddddc mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8903f496 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x94f8d050 mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9efcd537 ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa2288db8 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb8145ee1 ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc6ad7b0b mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdfa63dc1 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x129d54c7 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d4f94c6 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1eff81d6 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x36a5a95f mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b4f1990 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ca6792e mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4cb4f91a mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64bcaa11 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x68363c18 mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6fd3c784 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7636335d mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84ca3c85 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ec991f0 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x920c909e mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x92425bea mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95833530 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9bc517de mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa477c523 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa6131ff1 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb004d920 mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2b16b50 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc902de4 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd339bd9b mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe9d3c58a mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeef167e6 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf01ed278 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb123f10 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe67a948 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x1e46cde2 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0a5a9b7e mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x916bfe05 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x952f06f1 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x95aaa06d mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96b13bdc mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x985f3cc4 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9962d319 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ac8df26 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9af565d3 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9cbd3895 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d52d2ab mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e278545 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaadffc6e mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0d70fb1 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0ecc127 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb76459ca mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9f8b859 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0a98912 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0d3fb45 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0d77703 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7a87371 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb33d07e mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7305efa mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xddc2bdeb mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4830f53 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe886795f mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2f1fcd4 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfcd63248 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd7257cb mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x005f7a49 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0848a2ae mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2f110955 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x300b5513 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3bbf3e5b mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x48d70a85 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x513b60c8 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x67e676f0 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9afefce8 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa976e298 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc098ea6f mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc3f9e5d4 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd0c64497 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd60913e6 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdb907b28 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xed7af2ab mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x044a05e1 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x048e1ff2 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x28257028 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x28c6b535 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x33f732d4 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x45cdb469 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x48a67c33 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4a73e708 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5bd1bc23 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7c81e2fb __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x89db708f ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbdde4c3a mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdcd25ec9 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdf263e3e mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0c75df6a mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f4660e8 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x118fd6a1 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b9cfaf9 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1be2f1d8 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2639880e mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b9ce989 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d725931 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x378f4033 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a5ead36 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5303b022 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x55ec6adf mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6133fd86 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x66f3c460 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71b9d414 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x72d84d33 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x80d37075 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xab11d827 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac890c98 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2038677 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb4ba1a13 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc4b4578 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4e0c1ff mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcea79132 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdb8c2429 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8a227f6 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4668f57 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfa7a675a mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x3f72fab0 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 0x523cf349 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7a16ca3b mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7f8406d7 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x435efdb8 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x54b8342e mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6ce408c4 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8f27b335 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xac428863 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb9269c26 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xec69d406 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x046891f6 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0845e8bc mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08e7c6c5 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0dc6192c mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f5079a7 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18ce22c9 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bca7597 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2474d81c mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24eeebc2 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x275b5cb6 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x299d7094 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bee0037 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c8899c2 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d0d59dd mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2da7a8fc mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x319f4352 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32c7c9fd mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bca554c mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4300a98e mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45325a6d mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46d58386 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a35c317 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52426047 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5289ae9d mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5860d6ba mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x555ee51d mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x95395b8a mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xdef3d587 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf99767b6 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2ad38ab8 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3ab896ea mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x539343c7 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x54b94dff mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x592f20cf mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbf0144dd mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc17c2c42 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x047f7df5 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x092ed6ea mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c948823 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0dc69292 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0fd435c6 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x154f2eef mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1974d1ac mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b42c970 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x246a6c13 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24e219a4 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25dee52e mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28b6f38a mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2df6cde4 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2fb94fb7 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3337617e mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x396eec13 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b7279dc mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3fd0fb06 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40d09745 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46f54b53 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48e3a004 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a72b847 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4dbfc706 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4feeaba6 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5173752f mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x540f5018 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x566fe43c mt76x02_init_beacon_config EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61dab558 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68dc58f9 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68f8dd4a mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a188a58 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b72d217 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c613e1a mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x700716f5 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72b9b84f mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x733f0c7f mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d58d348 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x60b8c20a mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x60e2779d mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62bb918e mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62f98b81 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x637f3483 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67023c07 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6793bbde mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68a3c057 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70c8d013 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7141764f mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71d84587 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74579884 mt76x02_update_channel 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 0x78f4e801 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79e0348b mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b953c41 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f904ae6 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84a96520 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x856c548e mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e726b57 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7df803e3 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83303daf mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x837695f0 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8dc285cb mt76x02_tx_prepare_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 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b6deb3f mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bb6c6d2 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa32b556f mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4674dac mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4d1fd03 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa52030f mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x980ebe10 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98a91de6 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9fc2f67d mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa78c9330 mt76x02_configure_filter 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 0xb2f99ed8 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8fb4c2c mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb956f59e mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba2a6cd4 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba4de012 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb373cdb mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcdea846 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1bd5546 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4d846e1 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd900484b mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda50fe94 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc1c689e mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd30a9b5 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddc8932a mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde3e5115 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1c4f0ac mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec7b7d4d mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf83f409a mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff096ed0 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2a51b1d0 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x56ff5b02 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5ba5af89 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x83be38c2 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x875af500 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbf31c9c5 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xebf134c8 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfa12c329 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f192c99 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x12c3d3ef mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x250629b7 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x285f263e mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x342c5473 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3cc4bc40 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f6aa9b2 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5900b8df mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63cadba4 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x74a8c61d mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x836e5ec3 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x909f7a41 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb5808d76 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc659af9e mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf851a76 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd911c3f0 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe31d7aa4 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf9bcd3d5 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa423853 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbd8498f mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x074fc1ba mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x091105af mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0d97a101 mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1618c4da mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d648779 mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x530a0952 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x59a2d1e3 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x68e37380 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x738aac72 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x87d5c994 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8fd98e1b mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa9461fb0 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaa6f014e mt7921_check_offload_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc2fec4a6 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc6799383 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcd7311d1 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd1f7c7cc mt7921_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe11d858a mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xea35bfd7 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xeff1a4dd mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf3dca3eb __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf8918cd0 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf968f8c9 mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfe7a0d5f mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3285642e wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5096ee7a host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x745fe0e0 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x80b34cbb wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb704b0a8 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc637716a chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc6a59161 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x084dec31 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0fbd6512 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2da3d658 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaed5676e mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf3ccf2e mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1ce2cb6 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3dda0fd mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb64f73a7 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb29cd00 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcaeece1d mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb8da152 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xceb9511b mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd02bd506 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd535d6b7 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb27782c mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4dcbc58 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe83469ba mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9c75049 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea7aa68f mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2a8b2a3 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfed718aa mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x25a5b192 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3da8543d mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x861b2991 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x90762fda mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x98b59148 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcb023223 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd789ed7e mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe45aa7ce mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x03b3d212 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1754907f mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x223c1c38 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4a702624 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4c0a8502 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5206c8f5 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53ad5edc mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x556d2bc6 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5b82c300 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60d786a9 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9dfbdb33 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa049257b mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa6898b78 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb2c09fb4 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xba5a3213 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc9ed3270 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xda3bc5b0 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe0f72827 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4d9f43f mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf7c9e0f0 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x04204559 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x07ba47db mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x08d9529e mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d3879ea mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d40679c mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x20f38960 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x47b78f60 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x495f4021 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4db4a41e mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x66dc6c66 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7deeeecb mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7eb259f8 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fdc362f mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x878897b4 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x907bca23 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x90cf4966 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa342b658 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb08f7cac mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbde6e61b mt7921_check_offload_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xca0fd3c6 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcd8a4a4e mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcf66635e mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd0639170 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe88c9694 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x018f68bb wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x16113e6f chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x28a14f52 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3ee290f7 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7ac4dce0 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb036d0e7 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xed74d5f2 chip_wakeup EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x42e56890 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x785e6b1d qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x96b3f2e6 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0150f2fd rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c86e6bb rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0deb5a26 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10e68627 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a23140b rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a89c3db rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32c19db6 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34fa6d95 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x367db3fe rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3972ec0c rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x443e6afe rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c341b12 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d085aa4 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d2320ca rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5242e062 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54685bc6 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c5b9f16 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f20af0a rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66f46f97 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6738ade7 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cbf9064 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74c38074 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7eb88a22 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8234a011 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83614b97 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83f81abf rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f3275f0 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x900746c1 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92840a1c rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e10799d rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa054b5b8 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa22b113b rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa569c1ff rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafaa18d0 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3031e6f rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb95d6300 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf2dd9ff rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc6d55bb9 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7c114a9 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd4eeb2ad rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc4a9a12 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe488c064 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea0b4d5b rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfaf818a4 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e383ab5 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x19ffb366 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1a13ab0c rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f2f33f6 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x36eb761d qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x45cac4a1 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5edc70a7 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7aad1feb qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xca1756c2 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf98d845c qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x091eae95 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0cc8a999 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x173c9f20 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2590da7a rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2617bc41 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e734e32 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x436f0d47 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x472d13d0 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48636891 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ce84058 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f685ed7 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64209490 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x652ef148 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72d40731 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7698f599 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7997434c rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a4338b5 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d8f4940 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x800cb28d rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80194d45 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x827b28fb rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84b87eed rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85c74300 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a25fa9c rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b634e69 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bb3860b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x938908a8 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94a787e6 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98490e88 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c445672 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa2fc8e6 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4a06a98 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4b05a7b rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc31bccbb rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd26bec58 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd4cbeeb5 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb48bd55 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbcb1f37 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe265cac9 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe829e381 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xebbdc692 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec8ce0fa rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5a56ea3 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd1d4583 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x00cb8b0f rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0d313dc6 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0d8e68e0 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1244de9f rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x15f44774 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2291cc8b rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25de1d27 rt2800mmio_init_registers EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3bbcaa70 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x376474c9 rt2800mmio_clear_entry EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x40b861ee rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4b8e269a rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x427d5f8f rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4e447a9d rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54de29f1 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x58270491 rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x851c3d80 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8bae88d9 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97c86ef0 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x60b664d1 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x62cf12f1 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x71c01410 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7cdf193c rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9fc4e557 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1afcdc6 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb6cf655 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8978297 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf9ee6a79 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x079e6731 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x090ad183 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10898372 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12b83c38 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x152fd920 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b6ecf51 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1cd902f6 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x225c5f95 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27103b35 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bfc1bf4 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30c8388d rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32390adf rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38064647 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3896a2e1 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38caf23c rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3beda7d6 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x429faa4a rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44a03688 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46a8499e rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x476b94c9 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ae9a1ea rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ef6d42c rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c0dfa4b rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ef5a88c rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64bd1bc5 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x663e6a3d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x667fb404 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67783d32 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c83d469 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6db7d7f4 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73a02f29 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x794f3afc rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8132b271 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81b72ab9 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87962c1f rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f45791e rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaaf843b2 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6b79889 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc77ebf34 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc86d9ae4 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5d2d055 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee7f30b3 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf28187b5 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf354de89 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf80412b8 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa081ed4 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe5c33e1 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x01185bae rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x285e8311 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x41dcc2b0 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6a2d2529 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x717f2036 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x19b23428 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe5f3ba51 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf4855807 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1fdb4877 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x37eba97b rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e16e2c6 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x487320dd rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5e866568 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x60fe4e54 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x729daeea rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x78c62d07 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85e2db30 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85ee6c7a rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9636f9b7 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9c2d300 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb2ed3f52 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdca495b5 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6eb72e8 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8101027 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92200601 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4703642 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb720c5e rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7c205ba dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0156695c rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x028965d7 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a119d46 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a4db1bc rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11b197df rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2cfda8f4 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b8d1207 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xca42d42f rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04f9035a rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0cc89778 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d64cc74 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0dbc02bf rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x111ee890 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13b0f23e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22cac2f1 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x230670be rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25e45cbf rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a6c9446 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2de2a2bc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fed7f58 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x308ea20f rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x321a3486 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3222c0c4 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c05d84f rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x411c34f1 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45b0825f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f187934 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52bd32f0 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c97b98c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x626197ec rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fc754e7 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x80c7e891 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x868635fa rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8964dfae rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8cf80bb2 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d131307 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d794cd0 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa257675a rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa94172fc rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5e120d3 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc67d7d06 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc86aa5e8 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1a31825 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7f099ae rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda3e7364 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde1f43a4 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde8e5540 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeafdf505 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeba42e68 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedfab621 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf35a3a20 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6f13fe1 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd60ea72 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffdf687f rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffffe284 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x029ac0ad rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x26449327 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9b84af93 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd24b6cd5 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf5121944 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1ebc693f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc179f0f6 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc4518822 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x04d93021 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x19bc36af rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3c9ff254 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x54a5aa60 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fdfe0e3 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8033e3b4 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x96ca9f3a rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x99485e43 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa0efd1ec rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa18e81a4 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa697cf4c rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc45b6229 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4bf9055 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd8d22bbe rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe832466e rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe97b3e2c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33262dd5 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45f64aa9 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x467f67e4 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa6667d2 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0030b127 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x05ca3920 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f48a718 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a8bffd8 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f24675e rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26c1eebf rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28da986e rtl8723ae_firmware_selfreset 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 0x76155042 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77ee06ea rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cee8d58 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8344473f rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86f7e32c rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x420dc453 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x485676b7 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f1d170c rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x571b8bf4 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x726291aa 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 0x95049de9 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a67787e rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b076030 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d59a8ee rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9cff812 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa5b5cfb rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb370ec54 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb779a383 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd4af8ef rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2e15e8a rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda2e5513 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5b321e7 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2079e81 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x054bd7ac rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b0f82d2 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f6c1550 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x902e7576 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3dc5f98 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb692bbf9 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc6abff4 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbed2a063 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf62576d rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc07cc8b9 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc531602a rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb929a78 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd191710 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7c0068d rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe84b78e rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x030c477c rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13707537 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 0x2d53eabd rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2daef150 rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31e11d28 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33491a29 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b3ace34 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bf6dbe8 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31ff8356 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x434c26e3 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a51f127 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ce004a9 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d0222f2 rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54f5e7e5 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af72343 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fb3a1e2 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x677bd806 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b663622 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52164a47 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53b7a72b rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b395c82 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68b90c54 rtl_init_rx_config EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6dd57c4e rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e0a7948 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82ae9d5a rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x784e45f7 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81205588 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x832a7ddb rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94eaf12b rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94eded50 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96074e03 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 0xa3d31136 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7231c79 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacaf896d rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe4ca265 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe52094b rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3671c51 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc63c992b rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0df0dd0 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb772c09 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe09d1899 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb88e92f rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb017fafd read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb21dd01f rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc811a77c rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce9b307b rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec1c0889 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef0b6d96 rtl_get_hwinfo EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x69201efe rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x73c849b6 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x89d89806 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x65b9a72b rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6cbff6f7 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6f19f04f rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaa49ad59 rsi_91x_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf568172c rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfe61d927 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2986af60 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x780f8ea0 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9a93a320 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xae37b3c4 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x399f287d wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x735e3488 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xba3cf595 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01ad868d wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02c6df8f wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x037b9fc5 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf8c9bef9 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x37111c93 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5a857d85 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9346cfd1 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa5024ba3 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6c6d0d07 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd90f1cce wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xfed7be8e 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 0x0ddeb95b wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ef678fc wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b306e98 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ba8ed66 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b1db15a wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f59de74 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x123a0060 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fbbc0c6 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 0x23ff5f47 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25f6bcb8 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x292b7f46 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30679897 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30caeeba wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3940064c wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39a7c8b7 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41c4d2bc wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x429f7427 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x449125b7 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4961580c wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bdbf79d wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54fef232 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57b23dfc wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5adc21c8 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x636f3e51 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65342017 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74ce4a58 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75313fa0 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78f91f9d wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x241acfb2 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x259ef3b8 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x271bc177 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e388e80 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f059e09 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3044f139 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ebbebc2 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42f7d780 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5125ddb9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52bc1c38 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5306d316 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b67507f wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d3c3195 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f2bcba2 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7105adb6 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e83578a wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8108ccfb 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 0x8de99dd3 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91d3cfae wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92905b3c wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4e36c98 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9a4dbc5 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2dc8599 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9250950 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0a32cb9 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc542db5a wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd12c1053 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd63caaec wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdae71e7e wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfff25b1 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe083394e wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe950ad47 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6d9ddc3 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0b5b0ca3 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x896d84de nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xaab94434 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfb9353dc nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4ac8e854 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x50a943a1 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x547928ee pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6029a79b pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbf1f2c34 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcbfb32b7 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8754e5e8 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x883952c3 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cd5ba98 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f0718eb wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99748ced wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b9da5a8 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d9ad127 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa02ca122 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa205372d wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3fe709b wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0861edf wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2e99675 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3c45c54 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccb5f348 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd14e5cf9 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1818c4c wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7adf75e wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd91252d6 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe37f5c2f wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe39aa9cf wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe67b546f wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb5a3e72 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1b57b5d6 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x634bc960 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7d731ffa nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfccfb10c nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x38a84979 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x42645a5e pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x520ebabb pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x65c5cd22 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaf1a7d37 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd6e373bf pn53x_unregister_nfc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe884bb48 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x528e55a4 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8df5a0c6 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9cb4475e st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb08a8c44 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb8077f26 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9a417e4 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcab6bb89 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf5ef9c26 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x647a6150 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xca48a151 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe4eec33a st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe8f86a9e pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0d004d16 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1817d44b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2eccd7fe st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x389b212a st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3b1c94ff st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa4b0b0d2 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xac6962c7 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbb2ca9b5 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x4b27fa64 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x57f06ade st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf60a90a7 st95hf_spi_recv_response EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x170fdfd2 ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5325df50 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7bac87e3 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 0xbeb11580 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xac307157 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 0xf2aafc6f ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x42c187a3 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xb4710a49 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x0f5e32b0 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x9c84dd7f 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 0x13a670d1 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 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4631fbcd 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 0x55c3288d 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 0x780989d1 nvme_auth_dhgroup_id -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x78715f89 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 0xbf443f20 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 0xdc7351c3 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 0x00d4065c nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x059bb3bd nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06d19472 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x107d6333 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1144c3f5 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0541319c nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07a773cd nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08ad856b nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b732710 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d010413 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10333a94 nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x193046d7 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fe6462d nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26521655 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27684b82 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2930b318 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b4db7a7 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x304529fb nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e7c5c85 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11e677dc nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1803fca9 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x18abf599 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a383abb __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1aa96a8e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c7d0c0d nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f2cf16e nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x217cfeed nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23a2351a nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25a33032 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d24b4c9 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31e0d303 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x351e020c nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b80ac2b nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46593e96 nvme_stop_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c786689 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56997c48 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58b57aea nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f9cdee3 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x538cbb0a nvme_unfreeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6963fcfe nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69b8f594 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b1b09e7 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d79f71f nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6dd870d3 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72985a3e nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x763f0989 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ecaa138 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6581efbc nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67360b5b nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x688f89e2 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7231b2c9 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x788306ea nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e3a0076 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fc5ce3f nvme_quiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84d05a08 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85afaab1 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88b45d57 __nvme_submit_sync_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x997a9294 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c814f2a nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa00fa40a nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0443680 nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2da9c33 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb50e726d nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb68fe10a nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb869bbe6 nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2df5eb6 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5581ad8 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcaca903b nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xccc16a0e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fb9ac7d nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92dd9af6 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x933609a3 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93a74746 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a3c6e16 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1539e87 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa27ee1fb nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6deb433 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9b2af5b nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbbb97ed0 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbcab483f nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2e1073b nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc54d24d0 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5a1bcef nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8d1390d nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca90d332 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0839baf nvme_init_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4eb464c nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6c6d86c nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6f73137 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd94cbe53 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb33c0b7 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd9ea770 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf36660e nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8585993 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9d4fa5f nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xebabdb8c nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec635fd4 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed0d6546 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef4f690f __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf13ecb10 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3dc2f06 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6c0e20f nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdaeb19a nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0d3be0f1 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x53705f30 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x57ea8bdd nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5e78de27 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d64fa0f nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc27a406 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe43bbb64 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf446b7bd nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7f756dc nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe46de81 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x018d73d0 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2b87433f nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5c00a897 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6b9bdf64 nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d7c9aef nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8a48ab4a nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa078e1ab nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa29744d0 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa320bd0e nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8b68649d nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x913a3e2f nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x96a341d1 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9d20b56a nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xadf826f2 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd30a87b6 nvmf_unregister_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 0x547c82da 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 0xf9be5770 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2499a281 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x01ca379f nvmet_req_uninit EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x42914b8a nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x47ba5c0e nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x55304ad6 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x73f17fd3 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x77cec5bc nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x917e7c44 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x91c707c6 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9bf4ac87 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe604f74e nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe625dec4 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x695cbfff nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9bea6afc nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xab0c181d nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb313d726 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbe5a82b8 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc354256f nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd47db36e nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd8c082c8 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe9b76a7e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf2cf5a14 nvmet_register_transport 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 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 0x8dab008b nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xd927f222 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 0x1e68a642 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x365b26c1 arm_cspmu_sysfs_format_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x595dcafb nv_cspmu_init_ops -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xec29df65 arm_cspmu_sysfs_event_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x050f4c64 hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x16a4b2e1 hisi_pmu_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1c89cb6f hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x18c51a8c switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x4adb8c4d arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x856c6edc arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xdce9b280 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x025e5c9a hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x090ee2ff hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1e674eab hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2aca6639 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2ec70230 hisi_uncore_pmu_enable EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x42107bd5 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x49f351bd hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4acdb25f hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6cd1406d hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7c33fa54 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa3952328 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xae9af5ef hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xafec0e0a hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb3797688 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbe4a3f9f hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbf00cdeb hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc11a10cc hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd02d0ca9 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf7edd288 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x62b516f8 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x65153947 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x870194b1 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x93f59f5a hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa1411955 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd2a02bfb hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd3a4bfdf hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe2c376a4 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe2d4a353 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xede218e6 hisi_uncore_pmu_disable EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x5600a5a5 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x03707140 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x09ab7710 tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13b2ad8e tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x14c5ba7c tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x16d57976 tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4ed2305c tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5c9c0e1d tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6adab2c9 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x81fdb500 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8e8e4860 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x96d0df6b tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa35cec3c tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa40bf059 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa99ad272 tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb2498726 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb72c0f4d tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc0b798a9 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdb9d9ccb tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xde6652e3 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xff0b55a8 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xff9398c0 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xff503c6e sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1ce1cd4a tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x22234f85 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x280208b1 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3e072981 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x40014484 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x470c4176 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x55cb89b3 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x76e305ad tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x832f18cc tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x87fd6268 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x986e5db8 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb1c94de9 tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb21b6d31 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc18957bb tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe27d5efb tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf86b0efa tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfdb79a9b tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfe3e5d59 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xff3c129f tegra124_xusb_padctl_soc EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x804327a2 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9ee30db8 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb038834d mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x3adbfcd7 lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x839b0bbf lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc70379c0 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd7beae2e cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x484bd6c5 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd125f3c3 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xe15e572c mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xbf2a53e4 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xd4037950 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x947a490e cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc0511361 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/surface/aggregator/surface_aggregator 0x0109acb2 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x014a49e5 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0dd2568d ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1504bd30 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15810735 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21a4e872 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31fe6119 __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x36eea387 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3d77ed8f ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x41353e1e ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x42d19602 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x462449ee ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x538ca02f ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x55916b03 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6a6a0dd8 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x75b08dd7 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x781c2be7 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x90e61812 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6b7cb47 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xae8e59cb ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf031ece ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb0cd4391 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbdb6e389 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0c0b14d ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc210b2f5 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc26c302c ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x06195837 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15526dbf ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x19599f30 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2a9af24b __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2d9c3e49 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2e51fab6 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3c7a598c ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x495d3244 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4fa694d3 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x568bd374 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x59626894 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5fe07d35 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x64b6e110 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6e13a839 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x71fce15e ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x76056d7b __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x77e767b3 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7809fd7f ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7a0740f2 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x830a20c2 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8fd6b4fa ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c1f39e9 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9e92897e ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa7ba5c2e ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbb5d97b0 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbd4305b4 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc257048d ssam_device_get_match_data EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc92895ff ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf234def ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe5134f95 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xed7172ff __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xef36dffd ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf0f3af43 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc84a7e29 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc8cc60e0 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xca586c56 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd6a4ea78 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe041d017 ssam_controller_get EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x62211cc9 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8f46ecb1 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 0x7366626f devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7a636ddc reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb2e0f92a reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfef4e7bd devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x112455a6 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x32005ffb bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xad3d5cbe bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x75c26d3f pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xaedb2ac9 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc7588fc9 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x64dcbcbb devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xca1d3bfc reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd974bf18 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xedf2238a devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x3bcce875 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x99fdacbb bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa110c36f bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbe1d8de5 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc6663718 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf40acc7d pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x314276ff ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3c1c69b2 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7510eb8d ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x995fa140 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa7b6ffaf extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbba0d2c3 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd5f92a62 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xee32ce14 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3490cdc9 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x37b0c800 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x43c8adca mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb5f5d564 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf32a4389 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xbb663a87 rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3fbc74a2 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x78315870 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x81824e69 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x92018a87 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaab4e948 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc64854d1 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa7d9632d wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1d116e2f scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2727396a scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4be51cb8 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8539d6ce scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xaeb47fa6 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xec7998d6 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf3972e11 scp_get_device +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3244fcc9 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x38d2633a ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7f8a7257 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa2b5f41b ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcffe13a2 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd0c62b54 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd4f4c8a0 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd5bd659d ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0ce8c92b mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4b301d14 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x70019aff mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb102c174 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc0c7cfdf mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x06e4f29c rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1ca1d5d7 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x485c42d6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x670b834a wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7d921c18 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd85ae9c9 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xda853bdb wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7e3c81d8 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1735f603 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x30aaea17 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5fcc1428 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6b89a771 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7b5f6b0f scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9c0fda02 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb99e74b2 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 0x5ab8c728 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa8b9f9b9 scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbe90d321 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xd5eba91b scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe4967f8e scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x09006314 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x333e186c scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8eb40872 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x937eb512 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xb8c4892b scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xba7215bd scp_ipi_unlock EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x18acef81 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x25829185 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3f4602e3 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6483658e qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6c8b513b qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc9f3f5ed qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x34165863 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x538ce235 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x549a5315 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6dc685a6 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7160a960 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x71703953 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa45d0bea qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc39c50cc qcom_add_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdd4b21f4 qcom_register_dump_segments EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7f82f2e2 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x81cf84ac qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa8a0b791 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb142637e qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc1c45a5c qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc7eae51a qcom_q6v5_deinit -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc814dc16 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x263b8bbd qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x317c882a qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7536d4ae qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x88703a02 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb0c74307 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xca19a1da qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdf310dfc qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1031ef13 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x48f56a40 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xc2a3a42a mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xf7e2742a mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x77177ba5 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x983f1065 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 0x6b37b253 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ed8189b cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1594e606 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15ae8b5d cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1748df0b cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2884d8a5 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35da2a63 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e6931ec cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x486bde12 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4efbf975 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fa41df2 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x518cad00 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bfed31e cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d630641 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68cacca3 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6abab4dd cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b531879 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7202272d cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b7f3e1a cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f785701 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f9f845f cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xd22f6367 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x054319bf cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10a6d9e1 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1195c17a cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17534ec6 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17a59ced cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x211b83a4 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27590908 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c75d130 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d6e6ca1 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32bbd9e4 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41123ce2 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4217e0ed cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x497caca7 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a0d93d7 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b0ebfce cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c4db208 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5230441f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x531846e4 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55d170e3 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cc786be cxgbi_set_host_param 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 0x89aecd1b cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ba718c8 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x950d613b cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9b2dba5f cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa09f5ad8 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3285e5b cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa33fa87d cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab446a10 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf400bbe cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6258cc6 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb81bdaf1 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb5c2784 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0c65cac cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc96b9e39 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc988c7b3 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc13fa90 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf94877a cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd38e0300 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbb99047 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe01f4363 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec691d86 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90b50aec cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d61655f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9dc3ba62 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e860dc2 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa739baa2 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa98210a5 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad85fb14 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae6f97cc cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb48fb6f7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf7b4e5b cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0af5ad0 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc14852f9 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3c559b7 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbc27f4b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc6c2324 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfec8345 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0ff2bea cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe250d5af cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea01e504 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed6583d6 cxgbi_get_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6758c2d cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf739903c cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9ca1b07 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c1ef4b0 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cc11382 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x297dd4de fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f31956a __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e73f66e fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x401a51b2 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x73a182fd fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6bd5005 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7a67060 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf275bc44 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9d64d1a cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfaa1728f cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc153058 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x26dd559e fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2aa7cae1 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x30b51ecb fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a0ac935 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e61e67b fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x510448be fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x54f000d0 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6bfb1b91 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ba8be19 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8c62e039 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d555cfb fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a5cab18 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab3f0098 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad08e68b fcoe_libfc_config EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0b64af8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0767efa fcoe_link_speed_update EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce9b52ba fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcf1e4b8a fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0382ead fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe514aa7f fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeb8562e6 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe634c8f2 fcoe_ctlr_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9d0cfbf fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x988d30ea fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe7b9625c fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x00b11d47 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x08dc51ff hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x10128d26 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x19ffd60b hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x37bf6478 hisi_sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x38085791 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x04b5067b fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x4f6f322b fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x00f1ab0c hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0d3b0f83 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x355956d2 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3da0c050 hisi_sas_slave_alloc 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 0x44c5e5df hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x44d8d3cb to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4955c876 hisi_sas_remove EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5be8cd74 hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5d7a6c86 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6bb7e2bd hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7161a70d hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7648a34c hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7b16142f hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x84f66ac1 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x878eb768 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xab013561 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x66c2a36e hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6e3799b8 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x72ccfd0c hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7770e3bc hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x81249b53 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x82cffc5e to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x96cf7237 hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9c51365c hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9db75447 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9ec29d8e hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9f4887f3 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaf6511ba hisi_sas_remove 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 0xb787e453 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb9c7e629 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbefb06c9 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 0xc81db38c hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd4a32d3c hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd6dee732 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdf15ef42 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe14adf1c hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcccaf03e hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd2fb92fa hisi_sas_scan_start 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 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xeb22172d hisi_sas_controller_reset_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 0xef1e7376 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x146ce98c iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x330c907b iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x469efaa1 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x630d66eb iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9634ab25 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaae7c004 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd21f6774 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xed8752f9 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf828311f hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf8ab05be hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfbb760c7 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b6e7db4 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1ca562b0 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3939b7d9 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6e7ead22 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x79fcfde0 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd4d2e645 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe32cc2d iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x662c6b8b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x028f698d iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0489e7e4 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09a56cd9 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09d444b7 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09e2052d iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10b5ad8d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03f2692f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05d3169f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0986dac0 iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b3e133f iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d82afa4 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x227b83da iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2562a888 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b30bc52 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x304298de iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3094d910 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35e6eba2 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x391b7b3d iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b55b987 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e65584e iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fc6671a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x295c28a4 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b6fd94c iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39373d6a iscsi_conn_stop EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ab61cf3 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5150a17c iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51b22069 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51bcb583 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x535059f1 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x630e2c60 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x739d431a iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75550ae6 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80fb9c51 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x871547c6 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c705f5b iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bb4b230 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c9caf16 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d7e7ce9 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f18b772 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6496812e iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64b75842 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66d15164 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ae832f2 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f3545a3 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7de06814 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f3b7d22 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82bd1a14 iscsi_conn_start EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e38dc5d iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e58ae29 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f746e81 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9371c91c iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95f9c580 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2a872b8 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafef5243 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1af02b8 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcc6f31d iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd3baeb2 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0d8bf08 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1a31e0f iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1f986e8 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc615e598 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc88fa210 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd20454aa iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd32c1ec1 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5f4f936 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9224532 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb01844f iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde7d798e iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe470f600 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fdf15e6 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98815561 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x996ad030 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a71821a iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d2df7fa iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2033db1 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa71ec8e7 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa76a97d4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb07b1ab9 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb43b4c5a iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc0c04cd iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe892b4f iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3578d9d iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3e0741b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3e0a768 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6e9058e iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd5a0d65 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8b98680 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0d35e10 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2a9b59c iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe34f5fc2 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe683f347 iscsi_complete_scsi_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecc92f11 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x337eb0d7 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x390296a8 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3dd8543a iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x479837c0 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a46a233 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b34e806 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b028102 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88eb1170 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92181732 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a558590 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa2628d48 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3f4f4a4 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3589e89 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6ef5130 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xefc69005 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4c62762 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf7067d41 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07602601 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b50e952 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f63cd71 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e31f93b sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a5d4b9b sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31f2c52f sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x337212cc sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x343cbef3 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ab9fda3 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b8eebbb smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cc4c962 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x521931fe sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52c95b86 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54e130fc sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64d61fff sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c0219df sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d09755f sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e9600c0 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7545e427 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77ff0347 sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x781117df sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89d859e4 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a32ac99 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98fe64f7 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f763928 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2d1915d sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa8fdb5e3 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd69de0d dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe5f863c sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4e1c850 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc630ad86 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3a2c7d3 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd881ce63 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe66eba44 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf299b703 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7d0ce77 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xab5dbac3 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x016c5982 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02acdb17 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xead89649 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedaeae9c iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf43ea486 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4f9e5c9 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x037fa4a6 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13bdaa23 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37baf333 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x59eadbbe iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5a8de68c iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5da4d141 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69f85079 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75bcdfc2 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x979a2478 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9b496dd3 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9bf788ce iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa10796be iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaa1c9eea iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6c7af50 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3312b35 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd68bb09d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe64a870b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cfc023e sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11092ae9 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a17569e smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1fc6f827 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2684338e sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2888ac40 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x294b4c57 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2beefab9 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3350ec6b sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41e315d8 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43081102 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x485f2961 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50fca4db sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5421d708 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5efdffa9 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66957127 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67811392 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x777e11e6 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x857334c2 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e36a1bd sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e1f3aaf sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e5da410 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4d498e4 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7d22003 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabb3b55d sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae4c2765 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae669cb7 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb489d09f sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6f6c52d sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbba6f896 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4849d27 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc63c5ec9 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8f9fdac sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedadf09b sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7352ee3 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb9a567b sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x80b4af98 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x011a250b iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x026abda4 iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d97447e __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d98ffc6 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18e890fd iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a3c24c7 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f31ca19 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20089c3d iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e60b7a7 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b2a4604 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0eacce96 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17eba69c iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cd3d3aa iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21d68d21 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24c9336c iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f2a2ad6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36a536d7 iscsi_is_session_online EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b3fb2f1 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b49e505 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d88c8c0 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4189de15 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x462c53f6 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x479c11c6 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fd1dfcb iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5185e536 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45512f12 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x494ad189 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55c2b8ce __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57141cfd iscsi_destroy_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68d44248 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x694d46cf iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d898af6 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e274d2f iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e5d365d iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d16be68 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6df77564 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70008dc3 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70e48b01 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78105561 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x840e7e38 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73d7642f iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7528587e iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ba768d6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83763e10 iscsi_put_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84cc3212 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8533fb5b iscsi_add_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a890c12 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e8507eb __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x905f03de iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92d747a9 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x963e25e2 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a24d589 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa629f5cb iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b2e9aa0 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95f48639 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96fffff7 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa58f10ed iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_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 0xb5f30b0c iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb857cf2c iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb028af03 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb91eb477 iscsi_recv_pdu EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc752dcc iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe3d716c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc27eb36b iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc663fbb8 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7c280a1 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7c96514 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8d3136e iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd243ef74 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcf3ae2d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbec4cb2f iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc051c739 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc360e558 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6484cf1 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc77e7a95 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd40940c5 iscsi_destroy_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe143a301 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1f2d9ba iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4a86570 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde4bcfe2 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf11af66 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1fb1e9b __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe583bb0a iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2176ba5 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffccd09a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6ef0318d sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7e66c5cf sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8435da74 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfd4fb3c1 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe95c1208 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe97598e0 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea3af937 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec10081f iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedef842a iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee7adc13 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf91d6c63 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd3ba0d2 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd9dfef2 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2e6d85f0 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4a0a91ab sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcabe9717 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeeba8d60 sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x87b59f1f 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 0x089a058c srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0e287f90 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xe547d525 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7468b7a5 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x87cc6b0f srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc0ab7d88 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe9873156 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x056cac3f siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x265533d8 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5d31d7a0 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x67fd36e9 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x973c6e47 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xab83c650 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0b5ed007 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b3152ce slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d9f3f28 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f59de54 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5960801a slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a15ffe2 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c2a4b87 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78520186 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79dba5d7 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7b65e166 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9453d2b8 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa1c04069 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa40e385a slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6e24127 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaa1c1d48 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad58890a slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc089f4a0 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc52d80bc slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5aead3c slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccabf2be of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcdddd6d2 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdb4193ac slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdfb03d53 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1b22bc0 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf27229f4 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbe5525c slim_stream_enable +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2efe8ffe srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x57c21f92 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6a0fbf16 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x860ed51b srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf7a3dbb6 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xffc84714 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x25a9588f siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x80025948 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb57cb987 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb63905e4 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd9abf6eb siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xde6fa18e __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c7e94f5 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2c3266b0 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x53a11228 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5758adb4 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b8f39a8 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5bf09f64 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x685d1763 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7227fb57 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8aefa4d4 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8bd97772 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96c43045 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e25f219 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa4eb4afa slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa51b61f7 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb7491d45 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc15e8807 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5331a91 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc6172e19 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9991ac9 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcd027d1c slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcd9853a7 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd069bf89 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd5abf760 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd85b00f2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe08da2c1 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe3ab1684 slim_stream_free +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x31438be1 meson_canvas_get 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 0xe5da128d meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0e74e1bb apple_rtkit_poll -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x33d7f477 apple_rtkit_shutdown -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x38211409 apple_rtkit_send_message_wait -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3bf19c40 apple_rtkit_send_message -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x581bedeb apple_rtkit_reinit -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5c576eab apple_rtkit_is_crashed -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x790b4414 apple_rtkit_boot -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x79b954c7 apple_rtkit_is_running -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x79e76f47 devm_apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x80b97967 apple_rtkit_start_ep -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x98d2aa9c apple_rtkit_wake -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc5161e3a apple_rtkit_quiesce -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x88d7ff24 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0ee4cb96 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x535a3925 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x70686bd6 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x750e90e4 apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7e6dbb4c apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x86ce0eca apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x8f2c7f33 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9834a0c8 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9dbc10b5 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9fb558f5 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xbd651311 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd096356f apple_rtkit_poll 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/apple/apple-sart 0xffff986a devm_apple_sart_get 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 0x3f8992eb dpaa2_io_service_release -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4442e2b5 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x46cf6d4d dpaa2_io_store_create 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 0x77130c08 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 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xbc5cae86 dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2a294fa1 gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x41293f2a aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5dd4d7f2 gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7664a44d apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8239b240 gpr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8a2e0c5f __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x921ffb4e gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6677478 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xf05eb43e dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xfbd6059c dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2b5ae77f __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x49ed5c29 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x4e94f678 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x62b13b92 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x75c30f27 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe2a57514 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe9c87369 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xea184ead gpr_free_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 0x7b4d6b32 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8413268d qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x96a4d4ea qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa00c3b9d qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x010614ec qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x57c5a685 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x870098e5 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x97ada9cd qcom_mdt_read_metadata EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x44065353 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x99415fa1 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb2d80dd7 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x3160aae1 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x417f8c41 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x33d3d4a2 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb280e867 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcd2aedb9 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x4c729614 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x5d431ad7 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x449a2922 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x45a9fd16 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa2b3d3b1 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbcf3ac90 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc28539f1 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xca919e70 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x12bd5555 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x36e4649f spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcaa612e2 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0110f275 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07db2468 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a7aac49 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39d1a740 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ae8dbf0 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3ef96e79 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x548b5917 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x655f9d92 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c67816b spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6fb0679f spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x798c6caa spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82cfb66a spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8334eec8 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x99fd80a0 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f38a2b4 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf0f3799 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0447950 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc1e39922 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf035e3ad __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x1f3d1d7c ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0159df9e anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0ef3de11 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1febbc92 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2d092e35 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x32d54072 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3a51c250 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4ea842ed anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60ca0b96 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8ea9f353 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8f26f1f2 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcf497a20 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd70bfe62 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdd17ae17 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x26908684 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6db6d018 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6fdbd2fd spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x870174a3 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xae12fd1b spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc0349a3c spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0af58a36 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x941f8d60 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9abd2c02 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x08b80d73 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f2eb820 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c37400a spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x36a3e22c spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5ba15f0f spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c0ea39a spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x74e91d79 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x86af992e spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8de02a95 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f5ada91 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa17724ed spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa230766b spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb49ebd9c spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb5e26668 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba6ada15 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcc7f3060 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd356b11 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd668281b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec7729f4 spmi_device_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5c35c7b3 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x01043a32 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0fce2c51 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x15a14f04 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1db1369a devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x380bd315 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x570b4969 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xada14854 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb26ab9c3 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb4a1cd8a anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe921d4f7 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe9fa3981 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf5f152ae anybuss_start_init EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x043f9d1e fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x47a14a02 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9fdd6e6b fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd40f728f fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0e7247b0 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x182411f9 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x381fb5c6 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4ad06010 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x593f0757 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6636aeea gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x86aea38f gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9f6ab3bf gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb48a4da0 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc6459876 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd5aaff31 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe167f93e gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb0990cd gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x00f4e644 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0fb3f6f5 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x45df232d gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47443483 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9272d954 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa3c2c04b gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa6f132c gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb537df8f gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbdf1fa71 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc0159f06 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe298d15a gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeedb8168 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf3ec3faa gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfd87bc5c anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6503a257 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x97d8f9cf fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc19adf9b fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf99953ac fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x07c60167 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1348d00b gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x49bfe7ea gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x56fcb7cd gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x669fb516 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6ddbe171 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x739d7f32 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb89cc494 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcd93a9c5 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xda2a2e10 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdf051335 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe008b6c8 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xff4be6ef gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x322589f1 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3958c152 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4075efd6 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8a7a912a gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8e70e62a gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9f29af61 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaade2be5 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xab7ff83e gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbaba2323 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc17a23de gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc56950f6 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe5d4ee11 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe9824c62 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 0x1bd8ea19 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 0x4e271527 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 0x626df798 gb_audio_manager_get_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 0x87cb0b36 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 0x57428e87 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd7e3a5a7 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0a72b688 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x645d7e3e gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xe28865d2 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x000ca7d8 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0f36ba33 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x167e5877 imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1f93f887 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2107fa8b imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x24ec75f5 imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x335206e6 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x34b77bd2 imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x381ce61d imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a2d90a2 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x49171c1c gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x523087a3 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xc3c74db7 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xdb80d27b gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x9c3804bb adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x00089234 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x04626039 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x04b21007 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0c6d3642 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x129709fa imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2798c712 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2e40be64 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x36b79b4e imx_media_free_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 0x49a034a1 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4c725312 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4cc346fc imx_media_capture_device_remove 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 0x563dc23d imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x746cb468 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8ed0a4ae imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x913c142a imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x93f86ada imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x95216e3e imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5e5686af imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6375fa65 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7f5bdc68 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8c14379c imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8c5f5ae6 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x93f642c5 imx_media_capture_device_register 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 0xada96d60 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb2cf7b38 imx_media_pipeline_csi2_channel 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 0xc0b10d23 imx_media_free_dma_buf 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 0xc4a5496e imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc2179ec2 imx_media_pipeline_set_stream 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 0xd6753a43 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd81da748 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe61ff1fc imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe7d47cef 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 0xf913c949 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0305dfd7 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xeb9929c9 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x036d18ca codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x05ea83b4 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x07bfdd5b 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 0x19cae822 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x160e0c2d amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x17e303f0 amvdec_remove_ts EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1fe29857 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2300f829 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x27bfd58e codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x32616a07 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x32aeb8fd amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3b238564 codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43da2c3c codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4b8ff782 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5de0d94e amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2f9f7ae0 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x37085e46 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3cbedbb9 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x424bf5ef amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x50db63b0 amvdec_dst_buf_done_idx 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 0x6bc464c4 amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x71edab91 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa408ef28 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb533ecb6 amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb70424ab amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbe470936 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc5686aa3 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe07caf93 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe0c28160 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xedb9b7ca amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8aa5e9be nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x9973f101 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd3d24d4d nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9fc450a5 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa6ab3f65 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xbd4c6390 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf85a8b45 target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x234bf885 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x28d1785d tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bbbcdac tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f7be5ce tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x52cc85a2 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x56445777 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x72ac6a25 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x787b84b9 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7541bdbc amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8a9af4bc codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9db1cd73 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xae5937f9 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb6a68da0 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbfb04e3a amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcd838c5a amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0463929 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe9b01baf amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe9e6d7e5 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf134f4b2 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x77fa85c0 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x817bd5d2 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8dba7c3b nvec_msg_free +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x173bac7e target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1f49ed8f target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x25ab02f8 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 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 0xd75ca4c9 target_queue_submission +EXPORT_SYMBOL_GPL drivers/tee/tee 0x00e9afa2 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x056653cc tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x16cc5472 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1db2ca34 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x566a6b66 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5bb14f62 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5e6b0c1d tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x655986dc tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x65d2bc09 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71fc36d9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a626f07 tee_shm_free EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8c4a1431 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa4297c1d tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa865d698 tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaad4cdbc tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb36a05e5 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbc922e39 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xca77cab5 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xccfc5f55 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd103b665 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd50dac9a tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5b63804 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe34c40f6 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe8bf3b34 tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb2db6e0 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1fad91f tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa7fc8747 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xadad44e7 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc07449f6 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc29edf0b tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd58b2de6 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd79fea0b tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdf8a5606 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xebaec1de tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xefda884d tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfdb4617a tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01723c0a tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x04a18832 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ea05b92 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1b3d2075 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x324776b1 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x09c60a2d tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a079cbf tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0cc7d076 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2600998f tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x35868ea1 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x35fa393f tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3736e1c1 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x378537b3 tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x402d40ab tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x41b57437 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4c06e53f tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3fe6cf20 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x47c24477 tb_xdomain_find_by_uuid 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 0x50b5670b tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6024dcfd tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5603746e tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5795e735 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a192f33 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6459d986 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73351bca tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66df8fe9 tb_xdomain_type 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 0x84ec69a0 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x888065dc tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8fc40b95 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f70a61c tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x92e9378c tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xad5b73c7 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb374f0a1 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb97cbea4 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe7b2a3f tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc0c59841 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd3f6ede4 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdc189c84 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdedd98a6 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe0b35bf8 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe693f675 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb1c7783 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xed220094 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc4ef2b62 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcf29716d tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd2b6bedb tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd47f4f7f tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf403c257 tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1dd9d882 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x207f4378 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2299bd9f ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x22e08c00 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x26170219 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x325afdec ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x37525e9a ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3d500113 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4c2b0955 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4e88c86b ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6c6bcce6 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x70a87db0 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x06906e2b ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0e03dad6 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1daa41af __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x241a97dd ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x27cd96e7 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2db836e1 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x31e85933 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x33da1928 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5e4d138c ufshcd_update_evt_hist EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x728540f2 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7aa1eaaf ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x85a564e1 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8c55c2e2 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8eb0b96f ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x904ab698 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa79d7b2e ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xac4ef688 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb26de22b ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc3522484 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xec5b3bf2 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf94f13f4 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff303646 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c51edfd ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x87d26bd9 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x88ddab56 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x94526166 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa6616756 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xab2eab8f ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb051ea11 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb6524165 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbcaedae2 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbf0e8ed4 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc2d62783 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe70feb27 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xec00919c ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeeb22769 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf49be645 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xffb34ddc ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x00d42591 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 0x61f15680 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x664dde4d ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7709b476 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x75a4f26d ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0b3dde9d uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6db5ee1c uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9f49e7fc __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf8b46a13 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa2c0413a usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xaa0d3034 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x10ff7431 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x12a7d733 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x64abd15e cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6a4dab26 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7dceaaa0 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa82a2fab cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcc46494a cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd5d7b011 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf33fe4c0 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2218b41c ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4c8d8752 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc023a96b ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf9f42b77 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2a6428ef imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3fe518be imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4e1767f5 imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5010f676 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xceab751d imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf7ef8ab9 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x31c57d6a ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x355ca713 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x37b89064 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6c84f26a ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x89e8ef31 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbc324626 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0a763482 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x136f22ab g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x192ba1f0 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x27060747 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x27da2c8c u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x29c33574 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4bd52ade u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6a82363d u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6d97c1fc u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7f4c1172 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x89a4e0af u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x89edc543 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8d699517 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8ff6e3c8 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb76cd466 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x19512d7d gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2065574b gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3a2dc1a1 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x448ac252 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x479d5d42 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7687e102 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7bef8cc4 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c6df1fb gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7d12384e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa9632a9f ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x422cf03a uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6f78a429 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa11ae7e9 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb224f0a1 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc6f77d7a usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc7291a38 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5697c2e1 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7b820015 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8936f901 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8c0bb306 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9b06d356 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb97cb699 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xca2f64d2 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe16904b5 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf47c5485 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3586176b ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7903a5aa hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe3140ead ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf17ed51e ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7c9d7bdc imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x88728377 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa6d07109 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc3293393 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc8da498d imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd59ccb9f imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1dd30304 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbf59d023 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbfbd908d ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc1e10ac4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd1a1465e ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe4bc1e01 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1d7e3017 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x264709ba u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x26526ce9 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4e906fd0 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4fda4bf5 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6cd1830b u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7d79e36d u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7d8b9945 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x81768a3b u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa7a2c757 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb2c79457 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe0408502 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe27ebc8f u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe368c175 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe537b084 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0bf7d5b1 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x148f2f74 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x19ef0141 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1d067e1e gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x34ac21c8 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x35284954 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x47316a6b gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4c4b783e gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c92d5ac gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7253af0e gether_set_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x91a18e05 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e98508e gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb7a7df92 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd418d845 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd78edfe5 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdfd5d754 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb5ceafd gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0b1e9dc6 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a27099f gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8cf6ca1e gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9fd9b1b4 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa01d6053 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc79b230f gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd2918547 gether_get_host_addr_cdc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4f70d810 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5a737a42 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 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbb9309fc gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbc6e8201 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc23d2305 gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc788baab gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xccf64924 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 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1dad9f38 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6861e065 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 0xe9c12df0 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xea0de819 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x020b50db fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0708e452 fsg_lun_fsync_sub 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 0x1fad2e68 fsg_show_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 0x2e745562 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x33a0b195 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x29a66c2d fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b3924b9 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e84a625 fsg_store_inquiry_string 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 0x409b1060 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x41cc9091 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 0x4b569630 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x50ec2198 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x53f9b6ec fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4f1f39cb 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 0x67c0748c fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59caafe6 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x68ef4ec2 fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7dbc6650 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6d8632a8 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6e7c9c3c fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f4072be fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x817e7576 fsg_lun_open EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x85cdbee9 fsg_store_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9dc02fb3 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa10ac332 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 0xa891951b fsg_store_cdrom 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 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 0xc6c2a27f fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9c1f575 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbd98fb00 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc29c204c fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcde3b5c2 fsg_store_nofua 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 0xd4c1c5cb fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd886ca13 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeadea9e9 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd81661fd fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc983fbb 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 0x00ed9a87 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x137981c5 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x13c52274 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x16a6ff18 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1a1e428c rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x218aa111 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3805b371 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fa58be8 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x80d00296 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf5fa51c rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb12ccd48 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd146b4fd rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xddb6a801 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe8e1c9d1 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xefb19c75 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x059e2953 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x12537cd8 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x25412e1c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x375b83ae rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4240362b rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x482957f1 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52217606 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6cf995e7 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x74f37fd5 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7ce2df99 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d47e12e rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3c72a5c rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbc28e6be rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbcb9d80b rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbdb3d4bb rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde15ff0e rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06cfe38c usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c1e7b0e usb_put_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11056402 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d0ad6c1 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2666bf4f usb_function_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2be456aa usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x321375ae usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32984edd usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3bcfbe98 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40144431 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x425bd4d2 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x323ad16b usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42e0c905 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43883e6b usb_assign_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x521abed0 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5536921e usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d2182f7 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bbd61d2 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dec0511 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e276734 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x628dc74c usb_otg_descriptor_init EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83b08535 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8bd8834e usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8de97c52 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e0e8ced usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93881ed4 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa260bd02 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa81a68a9 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb97181fc usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe5561ae config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcddd38c3 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd09298cf usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74d7a40c usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e0b3287 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81b1a6bc usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9486193a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x965df832 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa29de053 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7ad4d44 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa93f283d usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa94df51e usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xab038596 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xab654e56 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad7c1dbc usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafa63600 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb76da096 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7a20ba8 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbeb48416 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc03fdfaf usb_ep_autoconfig_reset EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1a80549 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5a47dda usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2be4078 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd84a5eb8 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda0e9ee4 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4324e01 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe55038ce usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf37a51ec usb_ep_autoconfig EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf479d6cc config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa8f92c9 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffae99c9 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x07f33052 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x32ae88d6 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4476114a empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf627f335 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0bee7298 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2100017d udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x251c65e3 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4b313eb7 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 0x6050dd55 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x666166ec udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7c87bb3b free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x901c0f77 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdffe4a68 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfdf9b50d udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6eaa4cd0 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbc8e7aaa init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd552a0e2 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xeccf96cd udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf799e70b 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 0x01b708ac usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x037c7fb7 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x059dad0d usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x075cfc77 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x167fa044 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29dce26d usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1023e2c6 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e0b4264 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x219a1d9a 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 0x37ba162a usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3dce0b5d usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c7e4ed4 usb_gadget_map_request_by_dev 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 0x467b327d usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a3f0be4 usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50345c85 usb_initialize_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x612a6e00 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ccc5548 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77400900 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x78146a41 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5396bfca usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5698ad2f usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x597eb925 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x624375fd usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64b1f42f usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6687ec94 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x75785e7d usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x762a3215 usb_gadget_ep_match_desc 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 0x84fc7b94 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x868d9e66 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x90f25a90 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93c82bd0 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d083c90 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7d0dfa14 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93c302f0 usb_gadget_udc_reset EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97cce261 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b91b467 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9fbe04fc usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa055b7a usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab809803 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94780ef8 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x979cf9c0 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9aef1626 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa912c18 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 0xb0cd6c21 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb50425d4 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe578783 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 0xc1786ab3 usb_gadget_map_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 0xc89c720d usb_gadget_set_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd0d26ed usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe94b522f usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7c396c2 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xd278e602 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x59c9844f ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6ee8adc0 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x18481432 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4504904d usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x520084ba usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa11866c5 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbccd1ff4 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdd228ac8 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5a44dc6 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5bd06a3 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5928c01 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x05e5037c musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce7af93f usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda6616f6 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9e4d4e1 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xefa06b5d usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf2002127 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf730f884 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfcc0d3ff usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x4b215479 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x475b279f ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb9ca19e6 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x097a6c4b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x203c617f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2df81444 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x30615059 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8fa8ace5 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7e68e8a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc1b9df38 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf22d1697 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xff9ddd42 usb_ftdi_elan_write_pcimem 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 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x41559677 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x61cd4927 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x43f90e77 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4757eedd musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x562132dd musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x57277baa 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 0x96084f20 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa35a8cdc musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc9641b9d musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe6e62394 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xee0460af musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x25513185 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4b0ecc1e usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4fb28321 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa56e1aec usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xdc586d39 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x285d0324 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4843545c tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x556e0860 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5c81f26d tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9037dc30 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5065cf7e usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x018a7842 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0b265df9 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12c12bdb usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2ce7f28c usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36651019 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4929fc37 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d3cbae5 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6fe61964 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71c44c90 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7236fb75 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b5eec57 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fdaacfe usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa47e577 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac861846 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xad901584 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb757e239 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8c86175 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf1473b1 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4d94b2e usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff3599b0 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc4718f81 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xd77c3a86 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x339700e6 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5a389f15 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x702e327d usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9badc465 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe57d82b0 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x76f2335c isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x8a5eae8e tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x970173cd tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xabd6d777 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xba202e41 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf2737587 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x112210f0 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x11251bf4 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1addd0b2 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2553bbb3 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x445f0862 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4785d883 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4b14aafb usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4e10aa45 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x642c0b16 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d17694f usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84fb707a usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9bf1faac usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9c681177 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa99ca0ad usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabc1d1d1 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabf14f20 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbb9970e0 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc365f4e8 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4c873ec usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc8d5a8f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x1d115293 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x3db9ae93 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x39d7de9a tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x783f0401 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 0x8d8e165d tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x88e40efa tcpm_register_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 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x044c45e8 usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x046b61f2 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08373844 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0fa2ee1b typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11b44a08 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1217f73f typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c6d0c0 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15685721 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17c10391 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x186b5030 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bd19837 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x09fd8993 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bd96d2c typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1326f04a typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x180188e9 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2596d0fd typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a0afbb4 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2be397b1 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c5641a0 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3645e8bb typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x36aaf962 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c794cec typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3cad724b typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x465946bd usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x494b735e typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ada5266 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b9e62eb usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5369a4b4 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5581f159 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a3a3a6 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58788563 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b834f6d typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641227cb usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66790457 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e853211 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3070fe1c typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x313b2a2e __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3314bc66 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34599628 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x369db400 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x383a6302 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a314922 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f0e3ae3 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f117948 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f488400 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48dc78c4 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x496a1373 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ca8461e typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f38142d typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fc690cc typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x559dfa36 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57644ec3 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59895729 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f06c1f8 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5fb80965 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x641d3b15 fwnode_typec_mux_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x704c4da7 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71e11fea typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x745c968b typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7816c567 typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c90854b typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80bcb63f typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81e76753 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d65495f typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7363e76a typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7441c6e5 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x758fdfc7 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x789c2ee9 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c9a5e2c usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82d1c15b typec_switch_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8652857d typec_retimer_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86d64c2c typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87e3408c typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88ab98ad usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a9e38c7 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ab50c41 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ec60585 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a745092 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ba164ea typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8eb75379 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8fb68d52 typec_altmode_enter EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9155de3f typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91be13ff typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x924c1319 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96879abd typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9955fd78 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b4813ef typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cdfa105 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x928b2e16 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95db0063 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x990c2c96 typec_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa37c37fc typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5ba4926 typec_retimer_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa71f132a typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1d7f650 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb8ca3d2 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc200cd0b typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb329793 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb46bfcb typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd27fa46 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdaf3435 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xceece553 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa941b8d5 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac32d90d typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xafb66437 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb09e9b38 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3b21be0 usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb480e26d typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7d41bbb typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbce4df7c typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfda7719 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2626d90 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3495a72 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc91f645c typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca396105 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca55712a typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb14caa9 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcdeb7541 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd24d0f55 typec_altmode_vdm EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5d74454 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5dd4756 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd70c650c typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc12bc2e typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde2ef71e typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1025839 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe44b1b9d typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8a8ae07 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb02e1d2 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfe7b895 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6276e21 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe85909a0 typec_match_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0f88f83 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef2caca7 typec_plug_set_num_altmodes EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8a8f5af typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9e0bc2d __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb1f6e08 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1e4a82d typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf42656fa typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf47d2313 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf55dc76e typec_set_mode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3d2327a6 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x44ea419f ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x452d119f ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6d7f3064 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x93901d8e ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb32ef172 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbfec9170 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdb67376e ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5e616fe ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d558441 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d9fe09b usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3463d1d1 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3d650867 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x43fa369a usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7662969b usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1ad2e9ac ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x413229fd ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x66c68d98 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x74d8774e ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa0dbff7b ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa8511fc6 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb11f3638 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbd99eb4d ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc072cf0f ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0b483068 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c2a1af2 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x55cd4a5e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x55fc46f8 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5b80f197 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5e65a635 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5fecdaaf dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x61ea88cd usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d72bf3f usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x84d0afff usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x89939820 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa7763a86 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa9ce0db9 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc2b2b2f0 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa0c272f5 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacf7a2f7 usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd1c4ded4 usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf546ff4e usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0dd017f9 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0e7d41c0 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x273d7767 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x40fc40ac __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x44a35119 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb9c57db4 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc7ed4a9a vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xddd35da5 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe7680b8e _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf652f4e4 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfc56fc15 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xce50e415 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x48526584 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0765ea67 vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x120af5f9 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22a9fa85 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22fcc0d3 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x31054947 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xecc77708 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf2b4e4c9 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0adcce6c vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x11d5cae0 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x232b6f54 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3521fd56 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x419333b8 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5204ea92 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x568c54f9 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x61efff24 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8ba9614b __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb3f6501d __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb51e2ede _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x51a8f360 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xc9624cee mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f19e965 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1641ac60 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4a1bf3b9 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 0x52a47a29 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x535c3e47 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x551557bf vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5c6e4a39 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x705fc5ef vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a45a429 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x81a4eddf vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x86070f64 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x94368dea vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb6eaaecd vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb9579185 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xecd495fb vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee9f5bac vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf45eb171 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x12f1ec22 vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x24292b9f vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x27687cb3 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6ee58c00 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x747b17f2 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7b125f3a vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xad5f223e vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb36688ed vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcc6b7e6d vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe9e4fa27 vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x07bedf59 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b0b1a90 vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x11f92a3c vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x263c6903 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37485059 vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3c6c5ce4 vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3fcfd105 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5c8e83bf vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x772bb960 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7821b41b vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8206ff80 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8d79346c vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x908fd7bb vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x97abd299 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9a822e94 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd0d3f892 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd1ad4f00 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd337b6cc vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd353701f vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe51c0d79 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6f7c757 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf4052432 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf4a81d19 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2325b7fd vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6d132de9 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x77d5b920 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8ab1ce4c vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8fe0ea88 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9286d47f vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa0b3d469 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xab59c0da vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc1814ae2 vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe0d70cf7 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x05677477 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x09ba9bd5 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1d14619a _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b09a46a vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x393b178b vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3e77300a vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x461c3469 vfio_assign_device_set EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a9c3e74 vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4b65982b vfio_file_iommu_group EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7155b62a vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x717a8551 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x768f1301 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b503b13 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6bdf3c00 vfio_register_emulated_iommu_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x804e567d vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8280bfe4 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xba241eb4 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xce3322f8 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2c0d468 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd4700a89 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe691c325 vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf9b2510c vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00e30222 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02d57dba vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b87f18a vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x272deab4 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c7e073f vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32b477df vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40134941 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f7815de vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54bcafd1 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5756f93d vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x607d0e6e vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x642f1c61 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6508b1b1 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b26d1c3 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d8d893f vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fd8e190 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73bda61c vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x756158a4 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7893a331 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7afbc2a3 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c5f3280 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d90e453 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e07c1c0 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92186c72 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93d34822 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9cfedf85 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x802834da vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x896dfae5 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8de790b4 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1fdfa71 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xce530e7e vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcf019fa5 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcf521e2e vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd0c856a5 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd9d77bdc vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd690ebd vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xebcadd17 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf0eac009 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf5df94d5 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08a245b4 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x198d43fa vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d19a93e vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c75e64c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3463a425 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x378ab109 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3853a1ad vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c5e45ff vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d804f15 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e58cb52 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x443c4fbf vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x471885dd vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cd7f8e6 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c16df1b vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ec82854 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fc0cf84 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63afb0ea vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7729bcf0 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x791e02b0 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b597832 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ec2cdb9 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0e85aa6 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4975658 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6b062c5 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6ed1487 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7e5384d vhost_dequeue_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadd5976f vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4fdc44c vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc29c1fb2 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcaa1bdb9 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbc3b1a9 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd424a7c vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2902541 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3719cc7 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1b21f5e vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe238ad5a vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe99acedc vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea9eb53b vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf464ea90 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9efbc6a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa97cd28b vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb77ba8f9 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2325a88 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc45fe9da vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc872e614 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcad3e25a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd079a5f9 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6b51d66 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7131180 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9bebee4 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdedee6f1 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe3bdc505 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe71483be vhost_add_used_and_signal_n EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe2299f8 vhost_signal 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 @@ -17714,393 +17720,393 @@ 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 0x286eb76a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x68dd96c6 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f9dcc33 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaa4873a9 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb07201b5 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd1d2f02b ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe27b00f4 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xecc93eaa fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8f8726f8 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x963ee7ab fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5d27fb6e sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x841df144 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1a094f4c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x36508cf5 w1_write_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x26a40fec ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x83b7131a ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8cffc920 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc00c1b47 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd55732ab ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd6540c3f ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf4091a9d ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x18dbd712 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x1a0dbe7d fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5498cd28 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7afd990d sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb4c1dd34 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x28fd87bf w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x57b1604a w1_reset_resume_command EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66be7e66 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7bf0c773 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x80d37274 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x93a27470 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9ceb5423 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb27e547a w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc90c3e3d w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd8556143 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe354cbd4 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1a93aad8 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x47d5e47b xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6b7e937b xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbb43c89a xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe8f12f4c xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5ea44447 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xcf15e2e6 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x07ce0bb1 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3197d71f dlm_posix_unlock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6fa707ec w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x76dcb775 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x890c5fa5 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x932221ba w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9862f701 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f5ed4ce w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xca6e85b8 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd486040 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xff2caa05 w1_write_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0359ff90 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x86a0e863 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xab6bc55c xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbacf34db xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc3943d22 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xa86804e2 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xcc0a556d xen_privcmd_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x601ca23d dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x75f08e43 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa92ef824 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc0862386 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 0x147b89c0 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c179dc2 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x51493be8 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x64552e6c lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f8a9c2e nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8ecefc68 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1b91c42f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x330efeb5 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4a560815 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c9be7fd lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x642bc74e lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85be75c9 nlmclnt_done EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf7113cd2 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xab05202c nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0012b0dc nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00edbe0f nfs_pgio_header_alloc 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 0x042c22e2 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x058848ad nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07cca1c3 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080203ee nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ac9ca68 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ae46a7b nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd9d23e nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10931de1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0466121f nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x063630c2 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a35734d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aab4918 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b7fd642 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c3ee52d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ea7e182 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1133a58a nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11924874 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19214aa8 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19f86105 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aaca865 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b50949d nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b7f1ce0 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c06b520 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20d3d1c0 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20f6bb80 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1290ad62 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12d875ec nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13a6580f nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13d3ff36 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16db8b41 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x174d6053 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cae2d8e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce155f3 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d46c9b1 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d4c60dc nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e4c2215 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20c3134f nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20fb14ca nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2461870a nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24cb1a2e nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x267f8380 nfs_async_iocounter_wait EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27ac0f7e nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27f8bece nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2972953b nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29a1c3e1 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b1f7180 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26f1fc7a nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x282948cb nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2873cd11 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28a04309 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dcdac3a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe170c4 nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x316e77d6 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3196a178 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32dfec91 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x336e1059 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ef5714 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3615b043 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3873fecf nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38a69fbc nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x376abba5 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384c0b1f nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a09ef53 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4cb7f1 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c426fd9 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb688c5 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a386b96 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a71cced nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c070935 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d1a3855 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dfed0b4 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e2b9a6c nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f58c6fe nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f8c5fa1 nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b5ee60 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427c79de nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4437e0b7 nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48afe1d3 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b438777 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b811812 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44ea8b7f nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4884fff1 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4892ed5c nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e740a7 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a5e00cc nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b626e19 nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cc98641 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fb36e70 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5041b623 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507bc7c6 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cbf464f nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f342d3c nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a658b5 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51615c3c get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ee3701 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55f27166 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cb7886 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51eb838b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5424e8e6 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55cff5e4 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5639085d nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58c8301a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58f0e25b nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x599c2606 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b71d53e nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bab97d0 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5baddf59 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c210d24 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e60e835 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e7836dc nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e95835d nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6060cafc nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x615de727 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63178e10 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6622101a nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68dddf20 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a757c0e nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bbae51f nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c488dd2 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a0126b3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b211706 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b5ba77e nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be994ac nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e66804d nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605077ba nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60a9d395 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60ef97a3 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62221e16 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x639a70a3 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67162f28 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6790f6a8 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67b61b47 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b924fa7 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e9186bd nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f39510b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fdd4656 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x711b06d8 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b6b677 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x757d4530 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75f1f2d6 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a82c8cf nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80033a2a unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8292c2df nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76a30989 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77224d32 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7be3c95e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f4c1aa0 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ff929b nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a8db8d nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85e1b69b nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85e61c95 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860d4039 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87309cee nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x880e18ff nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8974e52c nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac37ffa nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c3789f3 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7c4a07 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d547428 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d78bcf7 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e61aa68 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x852772e9 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89e402fc nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2a25ac nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a65fb3b nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b4f3629 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c63f267 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c6f05d5 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d3f4053 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f95364f nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x901f8c71 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x906d249b __traceiter_nfs_xdr_status 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 0x91d680ca nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92f55a9e __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d3045c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93a954b3 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93f08d5a nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9692bf6d nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979d63da nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98289ab8 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b1072e nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99096b9e nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0d34d2 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fa7d2cd nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa58f203f nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a491be0 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa10a28ed nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3ebb247 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa81d3efd nfs4_label_alloc 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 0xad0bb2fe nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeca2cea nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1545ca1 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4941166 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb87860e6 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb03ec74 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf2b88bf nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfea0ffc __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0e9a77c nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15fef0b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc34b7b49 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1720426 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb36cb96a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7a1c74a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb83fed3e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8dc333b nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf10e3a1 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0527c98 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ad2141 nfs_drop_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a504d6 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ef629f nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc678da21 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ad1b2b nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcabc8332 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf12dd5e nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf1bd37f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd461eca7 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4623bcc nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a510b9 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5b91977 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1eb2b7 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda866d77 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7fa9ba8 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8387bd4 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8e5b865 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce6c2739 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02aec21 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1f5958b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3763cf5 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d1d319 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d4d9b0 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7b0e747 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda78bc73 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdad7013e nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb7bb8b8 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde11d160 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde392f77 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde65a661 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e0319c nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe39462b4 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe66d96b9 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb1bebf0 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5b750f nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfc44087 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe135009c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe526e098 nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe862da3e nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecc817af nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcdb661 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee1ca2d3 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6b76b5 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeecfc585 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf037c2ef nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2d5f326 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf81aa3fb nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe853af61 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaa4ef19 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeabc8f38 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb7c8571 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebdff74f nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec4ade8c alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0416f76 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf197200d nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf33588db nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf458d767 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf50ba368 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ef1718 nfs_sops EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb6be349 nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7b1563 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdbfaed0 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa5b760e2 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x000da6a6 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0058e6de nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x028861ff __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdd6a288 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8a684a63 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x053268c8 nfs4_schedule_lease_moved_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06a1e029 pnfs_generic_ds_cinfo_release_lseg 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 0x0c08882a __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b206381 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e0174fc nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f32980e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f60aa89 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f831eb6 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 0x1003e723 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x112294bf pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13d451b4 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c2bf943 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20ece87f nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x243de133 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x112b995e __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x133e2ed3 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18993db7 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18bcba4f nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a046764 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b09078b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b78283b pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fbf807d nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x212a73b3 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x258e37f5 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25b7bcc7 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2670df28 pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2adc3e62 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b9c4317 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e702a68 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d12dcb6 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fc9500e __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31a01969 pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x351e7819 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3685cec8 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e6d6b6 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a8fe819 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7a4778 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4090954c pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4367efa2 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49fa37cd pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fea3bcc pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5190dcbc nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38288de1 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e4894eb pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e68f710 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f9523d0 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a647e4 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4506b47b nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46155e05 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d00e652 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fc6217b pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x553efc21 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56b3c5b4 nfs41_sequence_done 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 0x5a4e2447 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b3ffb64 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5be8f9fc __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d61c1e8 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f0d7069 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f2cff5e pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x615c3ff8 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62f31df5 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x689af997 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69203547 __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c9044fc pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f9c7903 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fc8eb18 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72a3dd92 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a0d4a1 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f80c69 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76798540 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f95f89 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7767b359 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bb5189b pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7458afd5 nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x790bc4ec pnfs_destroy_layout 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 0x7cafe67a pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7aeb87d0 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c7a6c7b nfs4_init_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 0x7ea1fef8 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ed3a6fa pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8117c472 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8372006a pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8673df3c nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87cb1e8e pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89fc9afb pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dc18e60 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90e7b22a nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92078ecf pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9532d9df pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a5d7bec nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cb6b7a3 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8deee0e6 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94246dd6 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97595c9c nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c9961e8 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d06be62 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8f729ab nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9b9b3d8 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3de239e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb833644c __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9875f67 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba09df88 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9a57cf4 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad9f4217 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadc5959f pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb061a6fe pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0d5d265 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb159ac63 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4571c99 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4ab65b4 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb595e073 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb741fc17 nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaba14b4 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0f2c75d nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2716097 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc34e2201 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc15f43d2 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc171a8be pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8b75523 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc29d516 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7e5eb3e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb2bb8b6 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbcf62c0 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc5dd187 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd04730fb nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd246e076 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7e8e4cb nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad2be63 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc05f1ea pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5c110dc __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd688ccbd pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda5e3ada nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddaf9c5a pnfs_nfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0a96cf3 nfs41_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3000fd0 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe50a2d86 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe70d2c7b nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75388f6 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75ff681 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3048174 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe48eb6cc pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe54d90f0 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5c37985 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe638efdf pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed649062 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedd559db nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee01b79a nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4baca65 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5aa76d4 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeee90c50 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3e3aa08 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7191803 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf85ab35b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf95d063c nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfabc1699 nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0db6b02d opens_in_grace 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 0x14197a35 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8480351c nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdff2ca6e nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe253be3f nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9233986e nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0dbd3f14 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3cffaf58 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x507e3a34 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9ae09502 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb2e1bb96 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdbe52413 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x63a46ce4 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3ba8ec29 o2hb_setup_callback 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 0x5f9bf605 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x63279d40 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x70047d7b o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8e5b15a8 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94a50318 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 0xaac1d37b 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 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 0xdf1c2987 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe63662d8 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf16f148c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeb58b4fc o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf3a4ed8a o2hb_register_callback 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 0x151a2ece dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x577a59af dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3be29d2a dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x77ebd6bb dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa1aa770a dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x81d5aa80 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa31416be dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcd31e0d4 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeff33f7d dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf6bea3e7 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfa8e3fe8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeca90e31 dlm_print_one_lock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x02f8b6fe ocfs2_kset 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 0x346acd80 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x289a2cb7 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2dc04dc4 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6718e47f ocfs2_stack_glue_unregister 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 0x96e842c4 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 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc815823d ocfs2_stack_glue_unregister 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 0xf31eb75f ocfs2_plock -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x21c60ffc register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x61f69989 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x1651f1c4 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xae9f9843 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd523417a unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xf092f738 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd2b4684c unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd7e3e015 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 @@ -18122,8 +18128,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 0x33fb8d0c notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6c7ab162 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0d64b7fe notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x691c8287 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 @@ -18134,1074 +18140,1074 @@ 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 0x045bb6f6 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7ce0af05 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x09e8096b garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x16f88eb1 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x54215edb garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x68e0d735 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x8c2d7fd7 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xa8030b53 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x86e88992 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x89b668c2 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xa9b7bf70 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xbd0a4ca1 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xc8ec8dc6 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcc27a035 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x212491a5 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x7f7fe864 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x82b957f3 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xbc8fa448 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x64ec3d6e lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa493b79b lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1073d724 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x123a9843 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x8b3f8880 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xa600d542 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xebc1b8d6 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf2911e2e garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x019e0b47 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x66378e68 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x78b062f9 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa11a34d0 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd5ec1b0b mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd6baab5b mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0xc308de25 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xd44049da stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x004fee91 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc44ce0a2 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 0xa1daca97 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 0x04355def l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0d443587 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1a46bff2 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1e37cc3c l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64a6d18a l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8f93c676 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa292b40b l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab0e7041 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xca01743b l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xd7958d9d hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x023e6c6a br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x137fec69 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x14313d0f br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1fdfd7d0 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x21fe7a43 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x23b33f47 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a2ccf16 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x33aaa783 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ae3a619 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b44aff9 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fbbbbcd br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61569146 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x73a95a01 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a0a07ee br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ac3fe76 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c29e2a4 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x92c1bf2a br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x95c6f731 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cffbdba br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa0d1641 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2531c38 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd41e7fde nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3a3a17e br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf936753a br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa2882cf br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/core/failover 0xad0a928c failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xbb84bc2d failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xc259d233 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0133c844 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0360c048 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0367ff99 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x08e094d9 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e59b066 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1347a406 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaf270dc9 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0f6413e5 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x10a9e3f2 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2576368d bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x49c03980 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6048b252 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa06b9299 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc03de12e l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6e49b4e l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd463d6a9 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x30cbc793 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x04b87425 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x104a3176 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10cf3337 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12c1a7ad br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x166c0fe2 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x201464d5 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x20bba232 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x292e722f br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2f22fc5e br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x37fb3162 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45bc7d5b br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ef7a414 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x564dca1a br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76aabc8a br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x78d0ec35 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x89c3f7b2 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9314e1b9 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x94f07ab9 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97cad2ed br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9db0e067 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae407c59 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb183756c br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc2533668 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe7b4eb91 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa34da54 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/core/failover 0x48dc7bda failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x81c4c5df failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xe106b020 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0569437d dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x091d5e12 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x18101d25 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1abe6253 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x376e0881 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ea9f515 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x40b0e41e dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x464656b7 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a44bc75 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bba8a12 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19fca057 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bf1e537 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22a29013 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b97843b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33a10665 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34eebe12 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x477c33e9 dccp_rcv_state_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dbdf963 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55ac7c2f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x570cd7fa dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5784448a dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e96f747 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69f83edc dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x71c0dff5 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x766bdfb8 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x787226a9 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60ba93fb dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63d24aa8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b182a14 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x713c4472 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x733ca252 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ad0a87b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd57e92 dccp_sendmsg 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 0x841b6a69 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x89b94f1c dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a069c94 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8dfd14e8 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f488b27 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x880a9dbe dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90ed03b3 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x947c20cb inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96c6ba4a dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x983ece61 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xab3b7aa9 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb793caa8 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd9735eb dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x963eaf4c dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb58e55d6 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba67ed29 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc07105d7 dccp_close 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 0xec7d8fc3 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed67c1f7 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf425c063 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9cf6784 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1aa71ba2 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5d5b00bb dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b1bbd05 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x73a8a4ac dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9f614742 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa9f6fb00 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x079a09c0 dsa_switch_find +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc746ed2 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2fc7079 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb1f0c38 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffb3412c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0277e20b dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x220de72c dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2b828171 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5d26a609 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc2471128 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd0588e9d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02a00a49 dsa_tag_8021q_bridge_join EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x221a4775 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3189ece8 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33bbb2b2 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fd2904a dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x146aa0f9 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15695972 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d0b4af4 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2699ffa0 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x281da4a3 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2953673b dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a828674 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x358f6ec2 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3fdb6eba dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45923ae4 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42865b4f dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46e6518c dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d305756 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x627060f3 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62899875 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66b4014c dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6b6ce2f9 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71978052 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7218bd37 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7eabfbb3 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82908df5 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x835213eb dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ed6fa50 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94b7b99c dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99b9992a dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4d111d09 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x531dbbbc dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5b1508be dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60304daa dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61ff735d dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x633475c4 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x686af7b1 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x73640b3d dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x78d23646 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8da195dc dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9049fe8a dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa04fab0b dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0763b7a dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa399646b dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0eb413a dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb337c2a1 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6f1ec22 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa16dd8a9 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa22a68eb dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa25809e0 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa691f672 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb0cf5f5 dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xca00f752 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd01fa534 dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0cb01d4 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee3c20be dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2b2b96a dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf80c5621 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9c2987b dsa_devlink_params_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f50bdf3 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x216c3804 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x57359908 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x67a946ad ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3d2b3f3d ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x59577ba3 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf2584e5c nl802154_scan_event -EXPORT_SYMBOL_GPL net/ife/ife 0x1915e013 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa92068d6 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb10e65e8 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf2b637b1 nl802154_scan_event 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 0xb7a065b9 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x57dad7a9 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd915ffec esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe161d4cb esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x2907595c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x453fb676 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2509f173 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x460d373f inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x565d1379 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x735b250b inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x75c990a3 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbdb866db inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4c35177 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf0c86d76 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa0c2cf4 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa02d3c37 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08757cfc ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f7ca185 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f930df2 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x65f0cadd ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73b62ef7 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79c59b42 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b14588e ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e314937 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e5b2493 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f63913e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7d47aea ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xabf46270 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4314229 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7d27c6a ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd20bf685 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc5e1feb ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfec30098 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x56e15ba5 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x2fbcc1e1 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x03a1256d nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa91f39ad nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xdaaa575f nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x10b9c889 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x41cb7e93 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ac7f869 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6fcef4ea nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9ed8204f nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcacdefac nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdede0db6 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xdf085359 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x18234e5d nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x955ca3f5 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9d153945 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7bef4776 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xeb7ad284 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04ff3e6e tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x37adc2db tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3e725f6b tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8046eb7b tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc739f5a9 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x04b661f0 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0d662ed3 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0fe3b37c udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x57e606df udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x67c87866 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x864836b0 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd4cc9c95 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd68beff5 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x23aefa73 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2b395e44 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x364d6874 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x920270ca ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf30920d0 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfa355c62 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x212da502 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4921a167 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2bd015f7 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x829c14ac nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa7f9c03e nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb9b87778 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xdd410e51 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x01c5e0b6 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2fd48d06 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x30af34b8 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4a3f9f28 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb04beafa nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb99bd736 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc6cd92d3 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x586ff230 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0575815d nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x27ab824f nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xff9a43ab nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa22a2cd2 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb3c18080 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d90bfdb l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x223154db l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26c63ff2 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2eaa7800 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49302194 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f70101a l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6547e70b l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69538028 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b960968 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7bd76538 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84370d44 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86d60c16 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cfa6092 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9913fc21 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2b5e6ba l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad4ed716 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd0ae765 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca51e781 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd7b3593 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfbc841a0 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfd007f6a l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xaec584d2 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ife/ife 0xee5f2529 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xff259361 ife_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x119e471b esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x3a55c6e8 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x96683c67 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x05d47bd2 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x27d2262d gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x01762e4f inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0fdbd736 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6c5d220c inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8921a710 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8f154688 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9dae269d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa9af4a6f inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb64c98cf inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc92ad244 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x80c6bf67 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x069bd76e ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x223f5563 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5293eef7 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53e80343 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53ec3774 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c08fa14 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d74424f ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7cf55691 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83188192 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8cdbb7e0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9369a7c7 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb211f8d8 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2157186 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbed2c10e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc34bb87b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd6a0765 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeac91a38 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x544ed073 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0caeec98 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b7fd6a9 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7f886020 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x588b261d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0edd4e24 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2609fe97 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x74f8c0f7 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb97acb2d nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc8051da6 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd2e6bd59 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfd0ed36f nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x6ee1f430 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x229f3e85 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6c73dcb1 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf3d97d25 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6e627303 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x924d5d00 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x151cc54e tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb5e11dee tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbb07a1db tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xce2b1f90 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe8f41038 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3140752a udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x36752dc7 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x39fb3cde udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x789b79f0 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7b0e1bd1 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa914120b setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbaec1fd1 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3a6e2c8 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0522e7c1 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x97508e6f esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa99a3362 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x81887dfd ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb4a7854f ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc2d7bd7b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x31e2790d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7c2dbd9c udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf5610144 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x025b53c6 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf73156ab nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xfbafc075 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8812f240 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x13da4d23 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x47182007 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d4e494b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4ec610d0 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x66d44d94 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb5d3edbe nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfd06328d nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xe9865559 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x033f6694 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4dbf9730 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7520e578 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x18efc303 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x54640495 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08e80fde l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26065c60 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2669b1a4 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d4c6d9f l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2daced71 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4919d767 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51dcabb3 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52f33e57 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59eee4d1 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b9d2d76 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73b48965 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9627b208 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa440802a l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc65ad5cb l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc7bd60cc l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcbca7dad l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcee17172 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd035922e l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd68af518 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea10b0d9 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf30e7283 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x309d4c74 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x47b9170a l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0690ee2c ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x07a559b4 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15be028e ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3b6379a6 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0cd6639a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11cc0c87 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15c7ec34 ieee80211_gtk_rekey_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x177cecf4 ieee80211_color_change_finish EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1fd91a92 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27ac4e66 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29ea5e76 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ef05a40 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2f01dfce ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b5e0881 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x42c562b1 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fff1c66 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x558b4826 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x62e61a40 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x68653981 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7409bc59 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c6863a8 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x811c26bb ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x24f4fa4a ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26093566 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2dbb52e4 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x338b5d14 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4366196e wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b2fd1b1 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fb42bfa ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fd8d8d6 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x635e0e59 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x855a202d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f8d0b99 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x94baef88 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a6391dc ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9b9d47f4 ieee80211_find_sta_by_ifaddr EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb458766f ieee80211_iterate_stations -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf5d8589 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc62bd8f ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcd5b6340 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa831ab3b ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2cbdb83 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb682eb08 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7a88e95 ieee80211_gtk_rekey_add EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd563917c ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9e2b34e ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdabc0bc7 ieee80211_find_sta_by_link_addrs EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedc00cad ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf29277bc ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0ff4d9e1 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4666cbaa mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x660b1a65 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8b2eaf9f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2499760 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf33b9a4c ieee80211_iterate_interfaces EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe789b16e mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x000830e3 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e897543 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1063c1c5 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x159729b4 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x229e913f ip_set_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa1e51603 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xaa098eed mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcbef68a2 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd007e30f mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdeed06d1 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x06961dc4 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x112db6c5 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 0x2360cb0c ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2518e77e ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32074b81 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x50867605 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b539af7 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c8ec138 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f5764a6 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4611f289 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63f6bde7 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69aa50b8 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7dfa4c38 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 0x8c16ca8d ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97013852 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95304289 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x961b4bf6 ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0c8fb2c ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc183a85b ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde90182d ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1164765 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe30568e5 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf172b914 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa48fe04a ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7ff4047 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7550080 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd87dd8d5 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe16e41a6 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec5c9b22 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0b23b3a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf298b549 ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7d7713b ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x15eed37e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x674750fe ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x90f69f97 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9b9f2bc0 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x02101e0f nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x312044c7 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5edeb481 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x656eba34 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x885be9b3 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfac874ef ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x281a1a0c ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc15e6418 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc2e7bb3a register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc30a51ed ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1a1f22b5 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ea1dfdb nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x618760dc nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaa7d8d7b nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcac4ced9 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 0x04dddcf4 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x050a6aff nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09d6b0c0 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a7d01fa nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0be81245 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dd0d564 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dd4ac78 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f4da2a4 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x101fc0ac nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x132ca9b5 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15bc2c80 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x181014f4 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19db9357 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c869285 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ce3b9d0 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2185f3c1 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23afbd8c nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x242e0073 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x262bcedd nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26b1facc nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27283052 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27b37300 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e1f6268 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e6c6996 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x176d9644 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17f147f0 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18326a69 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19b1601f nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b1e5a9c nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d09b36e nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f708324 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x251389a3 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x277ca33e nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28aa3414 nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d5767ff __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3009fd4d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34b4b8d8 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37d7e094 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b8764f2 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fffa59a nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42a0c26a nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44427907 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45447657 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45c639d7 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x486212d9 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4879384d nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bc09ad7 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c90acff nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x557ca9a4 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ac58fc0 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ba338b5 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f55751a nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60c85782 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6146ebfb nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fb7ec0f nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3298df77 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35070897 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38c5d8af __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3964f4c6 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4548114a nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47355231 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49db3b99 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f08578f nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50b0c836 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x547ff0f5 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x553fa635 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55edfcab nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59101b04 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x636cfbc2 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64bbfb97 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x659db0bf nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x669219c0 nf_ct_l4proto_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b4048e2 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cd0fddd __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7475b47b nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x765811de nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77ab6392 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b8dd7de nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b921a62 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f34a100 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86aa203a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b43bae5 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a8fe1a0 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b9b2d4d nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x715a4316 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72f8fe7d nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75994469 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76f6b1ef nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77e8cfd8 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x785f8270 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x794251eb nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dc55291 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x896b2c6b nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aa18180 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c516b49 nf_ct_get_tuplepr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93983e93 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9567b3ad nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x963366f2 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x994366e0 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9060a265 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93658fee nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b4d3c1b nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d4738e3 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9db05de5 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f09805e nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fc93533 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa24dd5e6 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2cecc3f nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3158618 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6a50f2a nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa92b0583 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9d6c16d nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab98e213 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabdde3dc __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f5e53dc nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa205fabb nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa26d0ada nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3a030d5 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeffc0fb nf_ct_deliver_cached_events 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 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb525c5c2 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7d91b67 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8312956 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8cebcf0 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb76a2615 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7f2860a nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba98fd1d nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb206f34 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdbd57ad nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d9202e nf_conntrack_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc395591c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc22c87b0 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc32a7a4b nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc38bcb29 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40d0713 nf_ct_helper_log EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb097bc6 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf4fd14a nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfae52cf nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3f5fc30 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc68ca43d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc726c768 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7d0b07b nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb899782 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc061dce nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce3b42ff nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf176c8e nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3ad7b8e nf_conntrack_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5ecd126 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd60271ed nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6579574 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8dcaaa5 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd90e9ae2 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda1cc1f9 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda8a04cd nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb09741d nf_ct_timeout_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdca2deb3 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfcda7ed nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6925548 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbd6b65b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcddf658 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3e11ca6 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6e6020e __nf_ct_change_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeea9c23f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf11b47e5 __nf_ct_try_assign_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf67f52c4 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbb85d38 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe1f592d nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6e6fa98e nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xf02a9cfb nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xeafbbe96 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7496a247 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc9fb71b nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4548e3f1 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc6e2e6a4 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0215d89c ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1809128c ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x58e4a9ba nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7d773170 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9ac73eb8 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb4f700b0 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xea264168 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc9e8d542 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x62c8abcd nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x017f9fe1 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x404a3005 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8f270539 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0eceed61 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x10c4b002 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x161011ac nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1fa78c0f nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30e8be46 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4409bd9b nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53687558 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x59b53b6f nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6e2041a8 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x726ff7d0 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9cb6b3ff flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa29a8a14 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa69603e5 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9ac38d4 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaabd80d9 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb203d52 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf00c9adf flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x12939d69 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13261db1 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2fb36516 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x37b270ac nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x9887714a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x552bae9c nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2e25d756 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x332a0a1e get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcfdeff8c nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf60fc08b nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x798bdea1 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x46db4f55 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x62ea62d9 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa69231ae ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xac16e578 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb5e51c6e nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb943fe9e ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc05afdd9 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc905981c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xc4f9ef6b nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb366b76d nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc08a2e2a nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf1a7691d nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0986294d nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e9b175a flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x38c8ceeb nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x65008a05 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76340468 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7682ab14 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7bf8ae68 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7d10947f flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x834f3ed1 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x83966312 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb0535c86 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd1a44110 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdbdb33ca flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2c8a13b flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe92f579c nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf4d3141a nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf5169150 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x060c7457 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2092035c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2ce4d688 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 0x432a2dbb nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x467e6bce nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x59d1833d nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c990fe8 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f1feea7 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82faa569 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8cb9be67 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa04fda70 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc052ab25 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc4ef4dbf nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5c56116 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc6ff483d nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4c538209 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e570680 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x633ba117 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x753d3561 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7e23ed64 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f7891bc nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9d5f0ee0 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb2fe10b8 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5719931 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb93bcde7 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc38b1be3 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcdbbab98 nf_nat_inet_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4e45878 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfed32275 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe3fa5d06 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe400733a nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf0eebcaf nf_nat_alloc_null_binding EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2de8abea synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4939e0c7 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4aaec1bf ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5dbe4d62 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x62eabd5d nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x67461a09 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9059d0f2 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9a23c7e3 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc797b563 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc9e5149b nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8376725e nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9e1e8b9a synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb834e914 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbd7bf884 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbdf6879e nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc409f2bf ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf6b1e4a4 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00aba34f nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03048dbd nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04b5b827 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x052e0f19 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d7c9671 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x195d0804 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e81c822 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x234262f5 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x285a2010 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2945802b nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f65522f nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdda423b4 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe324d674 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe4ed5525 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xed7b87a2 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf5566f45 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0658c3ff nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0bbfe7e4 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0fe8b7ad nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14087d7d nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1457d7fb nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x153e5ce9 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27d07401 nf_tables_destroy_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f5907e8 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34c27eee nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c0d85e3 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c6cd968 nft_set_elem_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46147f39 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4678b45d nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4840c19c nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48c84ca5 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41f5386c nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x423b3d28 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x449f58a1 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cac4af3 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x543c1f8b nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5086f551 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51a7cc1b nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x524d8a46 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c83ebb0 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ca55039 nft_register_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f546b3a nft_meta_inner_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63337e13 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bd7367f nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8de7ca60 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a42772c nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaace6b61 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad9a8cb0 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x605ae503 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63ba95bb nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63f6408a nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6498413b nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6716a0a7 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x762c1121 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81c90aae nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8322ebbf nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a2d031a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e18f135 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x916d87d5 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93b749a2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9528b107 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa07ea6ff __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1361991 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1da537a nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaeafc829 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0721e28 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7ee4d4a nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb864a4b nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfdea3d0 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2cb58b7 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf74b988 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0fd1bed nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9376a5c nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2ec2148 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5ea276b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc854b914 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb6b492e nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xccb17173 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd9c3bc2 nft_register_chain_type 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 0xe591ab86 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe93dfa37 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef020be0 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf23636c1 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf49e0fa3 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4c7c252 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf688a2b3 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa337c3b nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc00f93f nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x057dd515 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x28699b52 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x30669513 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x33bdb414 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc449783 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x15126722 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2aa01f13 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3f11b220 nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d039966 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7f39dfbf nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd33b80c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xafc4dfd2 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc4dafdb7 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc7c389ef nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x29a94aae nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x652c648d nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9f8a62e3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfce4eabc nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1f446c42 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2b959d0c nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9554b4b9 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2960ead2 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3c9516a2 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe8c33f90 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x83e2f1c6 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8f3edd41 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa8477475 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe1642a55 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xea6f0da5 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x19eb3393 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5f563a08 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x229f1032 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3be678b3 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3d269f87 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x98ed2cf2 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf0a73795 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x098822de nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x67b6b83a nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x83cbc353 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd4b6e6bf nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xea9b5280 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03f1d572 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04774d2e xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0865e169 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e4cf12d xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x158e5176 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16c3d044 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37a47d6e xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6933ccd2 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ac70a23 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bd3deb2 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77885921 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78454b66 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x09e25f10 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0cb52dd1 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11b64ffe xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3415afac xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f4833f0 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x493b82c3 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49acd536 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57ac4c71 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x717807c7 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x753e2893 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x753ec880 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x795eb8b1 xt_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7c395947 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x816c6ed2 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8519310c xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8818c414 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cfee79d xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9334ef4f xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a57177e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95050f02 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x98801dbd xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6a0a294 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2aa6619 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6a2f6be xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf56cd8a xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb0685f0d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb52a2723 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc6d6c09 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6bc17ac xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf25c293 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 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1cb41a8 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe6ce6d84 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf46284d0 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfadae5bb xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x85871958 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdf7a5500 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4e406f34 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xabecb4ad nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc763a155 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7114e84b nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x82cbf494 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaf242e5c nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x287c8c79 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x5f75635a nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0aa31f81 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x179f27a3 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6fc7fb56 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x84c65a69 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca57bb58 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf9b9b18a ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x7e69fd4f psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xb034dca7 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xb8b823bb psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xd332e912 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6334005f qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x74305509 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x24a2448f xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa5795d6d xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x382b9bb7 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4812cc03 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa7d04a82 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1463db4f nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x51a5581c nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xec713606 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x4105a5cb nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xa51b6a06 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x01102954 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x037028b7 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1d7232d2 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4b5f3d97 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8309c8ee ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe03b7b99 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x4a496e45 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x53dc538f psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x64e30ef4 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xbe29a4c2 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x44a4553c qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9d693211 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe1ceb1a5 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb989a252 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x099098d5 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x0995f635 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x104c17af rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1f633f63 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x04b99fac rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x0a083c33 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x17d64ae2 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x26e42be0 rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2f232857 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2e493146 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x34157ee3 rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3aef9917 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x396c642c rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x493cc5b3 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x5170011d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x52e109c4 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x564cbe39 rds_info_register_func 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 0x5946c0b6 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x5ef7748e rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x69e2f583 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6cef1c9f rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x764c015c rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x7ca88beb rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x81aedaaf rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x5d54e645 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5d5aabaa rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x604ed2de rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x6439a8a4 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x698a7a94 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6fb8ab6c rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x788ef4da rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x7b24e2bc rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x8080886d rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x88833a33 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x9500a1c6 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x8a9b72cb rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x9cf06095 rds_conn_create_outgoing EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x9f74b3ee rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xa71e090b rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xa7ab604a rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xbd55da52 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xbeb714bd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa24f7a3c rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa81fbc1d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xbc952fcd rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc7acb669 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xd3c73956 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xda95147f rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xf05a0957 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xf4930de3 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xf707caf8 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xfdf859d3 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xfe8f4803 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc98ce79d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xcefc108b rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xebb9eee3 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf9fae4bf rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xfc4e59d5 rds_atomic_send_complete EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb70f40ec pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe0e2de09 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x86faaad3 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc34097b0 pie_drop_early 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 0x09907039 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x7c867aa9 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xd5cd5e99 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe19342dd sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x0f47a935 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x6cf964d3 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x6dbd3b79 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x798430c1 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7a61438f smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x80e28dda smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xb476d214 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xbceec41e smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xbf3e3792 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xd36812c5 smc_hash_sk +EXPORT_SYMBOL_GPL net/sctp/sctp 0x21ca52a0 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7766a60d sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7b27e55f sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8667b4b2 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0dd2bade smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x255466dd smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x446e25dd smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x6c0c20fc smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x849960ad smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x9d63b35d smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xb2d4ad64 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xbf7c71f8 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc9d7582b smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfec45309 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 0x465a53d8 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3b36407a 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 0x5f67e881 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcda316eb gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd24aa49e svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x51c3876a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x51e93bf1 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8254677c gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00eefb89 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0184f8bc rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ca5495 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031ccf34 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fb2010 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04d703ae svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002e4465 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e67101 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a29c1f put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03cb90d9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045054a2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x047ad46f xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f5435d rpc_sleep_on_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07475274 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08465ad0 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089bb1e6 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c00569 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c3bcaf rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af71ca3 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0ac4f4 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9eca8a xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecde77d xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1043f933 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10f6edc7 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13a8742f sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168575c8 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1763b1fe svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17c4ff8c svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183dd515 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x195c3ec7 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a958daa rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b48ff1e rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b903095 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c4370cd xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c48879f cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d43b2e4 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d43f912 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d5dcf04 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06e781d1 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092802dc rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a13d586 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8e6ee4 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4c38ad rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4ee132 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc1b3b1 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d7e4cc3 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee81190 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1015d5c0 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x118b9539 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x127d4609 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14910d5c xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14ce5612 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f678af xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x160ee7e7 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182697c8 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183bee56 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187df3b3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190efc7b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19310e32 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b7bac5 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a1895bf cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b039766 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c44257d xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dc00240 xprt_unpin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4975ff rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eaf8aa0 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f39bf77 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5ea680 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x203c6879 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x204e5fa8 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21361aa6 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2192a8e3 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245b1505 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258ba5f9 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2625ecb2 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27cd359b rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c1d576 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee009a8 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3bb7fa xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222a86c7 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x233e854c svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24340f24 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b4b9c8 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e331f8 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2726bc39 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299891a4 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac55e04 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf7ec9f xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c67b53c csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca78d7d svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e8ebc3f xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f5e791c rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30f27d6d svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3159dd5c xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29728ff1 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a4cbc39 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a809188 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af22add rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9784c6 rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32beb14e svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x336033ae svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34972147 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33343645 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33536ce2 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34892622 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349c4c65 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34cdc539 svc_xprt_destroy_all EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35938a0d rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x366c91a1 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x367eb5b7 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e1da4b rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374d3824 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37dd27b4 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3614b61e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x367f885e rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37422979 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378b7269 rpc_clnt_show_stats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38acb357 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d285c6 xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ee0ea8 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c219392 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c8da4e4 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c3f94d8 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c86b0f8 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3de9df7f svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e93e6ca cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f6cbf82 cache_check EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41bf976d xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433670e4 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x436df815 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43fb55ac svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443a7cb5 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4782fdb9 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47919d26 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47baa40f xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47db8850 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x492babd1 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x496f52da rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40336b94 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d0aa93 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x410d47a9 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a97335 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41b51b35 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41ea52e1 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x450a2bb3 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45924513 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e9f3f8 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4891e2aa xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48a3ca05 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a8839a9 rpc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd1cba0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc9bff7 cache_seq_stop_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e7e0ee5 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dd63a7a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5a734c rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb475ec svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a23eb5 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5220920a xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x527dad9d rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5306027a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50954ada xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e756c1 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513c914a rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x520a25e8 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5241e2d2 rpc_call_null EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54746055 cache_seq_stop_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55063cd2 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551c5a28 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56dd11e7 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56e84149 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f1165a rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d8541a xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5804a09e xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59754c3f rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5519a3eb xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5823459e unix_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b22bdd4 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b70752a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c24aff8 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc228be rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d528de4 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d0afed4 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb5b129 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc80e96 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601b240e svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61d267e8 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x634b90f8 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648f1378 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6521fd4a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61d4e803 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x638f628b rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6434fb1e svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65416b9b rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66736bbe rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ada7df rpc_wake_up_first EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681fb1d9 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e5803f svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a490fbf rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b604375 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb08eb0 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7044d657 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70bcfc2f xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6765b6ce xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c0db92 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x695075ba svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7449a2 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b8e5766 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cd23bc9 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d015741 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7049ba1d rpc_setbufsize 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 0x72efef3f rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7351810c xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7527310c rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777b71d3 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78139184 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782cf0e4 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d720da6 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7989eb rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da312b4 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7333cb77 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73d199c7 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744fa7b1 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745b0508 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x747cab05 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e1ef63 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e42501 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7513d56e xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x765efb70 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x769d673d rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7786a017 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77989a80 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a34155d xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b40ce29 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d275568 rpc_clnt_probe_trunked_xprts EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e85a52d svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7c3ef1 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fad5c42 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803cf893 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8091f821 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x812cb747 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8148618d svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81bd663c svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82814e60 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8393a4a3 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e2a5d8 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88cb5b44 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8953dc6f xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b2735ed rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c616a06 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6b4020 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d9161a9 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dec04f4 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924ba261 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92fd35cb rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ae6687 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93defa2e xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ba4114 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95156774 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801dd31e svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8086161e svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8208d5fb rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x826c9f37 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846c35e9 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859ea757 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87fd3b71 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88939a1e rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b322b0b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be60a4b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d4de704 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e82021c svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3df2bc svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x904e60dc xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90aca8b8 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x918a0c15 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x939e659a xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93cbdc80 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9410bac6 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9584f0ba cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967707d5 svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c9fa07 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fa44f4 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c39fb1 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a6af90 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b27388 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98174b73 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x984792e8 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98faf737 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9960607d svc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a39b121 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5adbd8 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cbe31aa xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa10571 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff09e53 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0043740 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01355c0 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d46139 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa30b5cb9 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa38141c9 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4239b78 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5574c7f xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8725c14 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a99168 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab339427 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad94be50 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada19927 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1d79c2 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf42b87a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b05b5bd rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c079e91 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0e15c2 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e4a9d53 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb4831d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0747a01 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2539593 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27dcca0 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa72959f2 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7734d53 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa898f1aa svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7cd255 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba6444c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb79441 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac4e86ee xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac67f6f0 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc74f7b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad73417c xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae976783 rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb116354d rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb174b7ee xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2d4d0e5 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb352e88b xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3831e8b xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b7fa43 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d71ebd xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4e29397 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb017366f rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0ee2001 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b76173 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb34618b9 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ac05a6 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb624382a auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8aeb21e sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ced97b rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba425b6e rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb5978ab sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd654f1e rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd6eecec xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed4e660 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e0546a sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6632b4b rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6654f4d rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb67994e1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c5c489 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ad861b rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7e3e150 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb83df3df xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9baa6a6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba131efb xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaeaaab2 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc427b04 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe665ae5 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf737b15 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf81096d xdr_stream_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc596a5 __xdr_commit_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0e4434a rpc_net_ns EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc269e216 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28713cb xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2a76921 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc19d4f26 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2a8fcb1 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc39aaf01 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc40b6383 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc56f2c18 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5bc74af rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e74188 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8a5b77c xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b50f29 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc538d60b xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f36dc3 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc65a9cb3 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83c0197 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc87f20fe xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9ef48d4 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca35ad12 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbc6bdec rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc53e727 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce470d77 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc907490f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7af0c3 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcce1edfb svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd12c91f rpc_mkpipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf03144d sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf181470 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0665fae svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd18a8ac6 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33be292 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c69a2b rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ce0cfd xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd736bc8e rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd824a593 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd864c2a9 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9737ce9 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b1084f rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf72320d sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a3eb52 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a05d11 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd67bfc1c svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a2c87c write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd814db58 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83b81b7 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda16562f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda28d8c9 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc42d303 xdr_init_decode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf1d2b31 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05507dd rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c08b51 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0f10834 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1126994 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2870a41 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4fc584b rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe521393b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda00bca xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3c7d63 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde7f245b rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf165b59 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26c67ad rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe439ce8f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48af182 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a0cba3 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c3d514 svc_fill_write_vector EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f546c5 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe959a351 xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf346c9 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece99966 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed4c9025 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea3fd449 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb375dd4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9472ab rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed3b2f8 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec65e55 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef65bb78 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf070da65 xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0dcabb4 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf14de322 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf21df167 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf346e3b9 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3735813 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf47c2d98 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf501171a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d94004 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf885a7a0 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa70f2c rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb4b8280 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe14e474 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/tls/tls 0x8d37acb1 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xac5fb1e7 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xe7672938 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xffcda86f tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf116b7c0 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf17a04f4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34b546a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf397687d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c2b93e xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf559281d rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf573819b rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ecb904 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8880282 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8bc16ba read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6e9847 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbacf7c4 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcd5844b rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc99cc0 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffebc0b5 xdr_terminate_string +EXPORT_SYMBOL_GPL net/tls/tls 0x345b66c5 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x3c621129 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x6a3bbffe tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x8d0df096 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 0x14687808 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x155b55e1 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2064f4b3 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b440e73 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c3466d3 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cfce1c1 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4031e068 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x452ebacd virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45a856a6 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f6a94a6 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a285605 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d2f0ac6 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62a868b8 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x668bfe27 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74550b67 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78f51946 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x948a3b95 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cf89812 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4154233 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa50a4b6f virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa0e025f virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1abae70 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16784841 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18c65b7f virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1d9a72c0 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22634f2e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25aa6542 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ba492b5 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4cdc2a8f virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d2db367 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60a0393d virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60a0b3f2 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61de9cf5 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x690e0fcd virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b2821ba virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73706912 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c884e3e virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x86602933 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8694f8f6 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9016cab8 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x908a46f8 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92f29e6e virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0212b87 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0bc45a8 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0cad886 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7efdc75 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8b85ab1 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8cfd512 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4b7d445 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb98374f9 virtio_transport_stream_dequeue 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 0xc31c7bc2 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc74ef4b4 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc6aff8f virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd417dcb1 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4eb4737 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7d57d8a virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe05a40c7 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0bcab5c virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2601e6e virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4f3746e virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe78e52e5 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf04f912d virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x032552a3 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x082e42e4 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x095de5de vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0dbb99ea vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1d45f18 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc7525b9e virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2547b65 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed98d3a7 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1e2d9c5 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf31b1e54 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x058b8a67 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x169ef0b3 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1439c725 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15ebf68b vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c715f93 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x253d1347 vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x299e924d vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7dc287 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2cc96d7f vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2db25983 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e357c67 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x362eb55a vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4497a25a vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x525d8546 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x640b4716 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6785acfd vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x697212a5 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6fc4f411 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77e190fa vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87e0c917 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x583d8089 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f9b3699 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x64dffaaa vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x744ab2b8 vsock_find_connected_socket 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 0xa08de1ad vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa0fc71d 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 0xc4b23e5f vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd32f3786 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd9dc48c0 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddba9f8d vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc95dd70 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd1fb69b4 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd57b0d31 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd6af9d70 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddf56e12 vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf081a336 vsock_insert_connected -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1939d7ba cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c32a5fb cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2648e3cb cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d928030 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b29f5db cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b5f0b94 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66d5348c cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x678f141e cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b97019a cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82aeed24 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6705a37 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb93a3bdb cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc6d6d8ed cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd1586193 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xddc77897 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xefe54e6b cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed2376ea vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf0b2abca vsock_add_pending +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d3894d3 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x220a4e46 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36732aa6 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x59a76a5d cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x61f80f8a cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x821a621e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d2cbdfc cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x900d338f cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa8aa1e9e cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb82b7d3b cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb98a52d4 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc19e4070 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd80f809f cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd97d8784 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe23639f1 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf5771100 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 @@ -19214,689 +19220,689 @@ 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 0x84d51336 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9f1269e5 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xac3dd387 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xde1a0712 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x76e44ecd ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdcb49b49 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe8a96aa2 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfd8dce94 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 0xeac5931b snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x51514de0 snd_ac97_reset EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x0783c5e5 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x11c3a8ec snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x1243bcc8 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x1c3d5f24 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x20d1b2e4 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x2c2883e3 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x4f7a9ebe snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x0761cc0f snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x3a6d5099 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x47a0b093 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x49b63222 snd_power_ref_and_wait EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x68b64134 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x74321d8e snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x89a67bc2 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xab0a350b snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xabf0d3f8 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0xacaaa074 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xdad137dc snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xe64eb3b1 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xe7a2c32c snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x5eb8d5bc snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x5efbb9d2 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x794d3549 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x85952b15 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x9213631d snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xa0a6a515 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xa98a6f27 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xbc5bb543 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xc2e25214 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xd8f99cd8 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xe0107b80 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xf2479955 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xf51bd9a1 snd_device_get_state EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL sound/core/snd 0xfaacb7a8 snd_ctl_disconnect_layer EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xfe2b2782 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x13d0a8e9 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x97fa1274 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd 0xfebb8b61 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x597c8730 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xb044b1e2 snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x06e91fb3 _snd_pcm_stream_lock_irqsave_nested EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1af114b6 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x505a340d snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x540279f9 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x54b3ba8d snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x55c900b1 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x47082992 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 0x62391735 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6262b897 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6970eb9c snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7fd81163 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8b2e9f4a 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 0x92d85ac2 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d7962a4 snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5c1257a snd_pcm_stream_unlock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb6ddd3c3 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb8a66b75 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe3aa8fd2 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfa09602c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfdb1295a snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ba982a2 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1224258f snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x198a5aba snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2019e27a snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3ab7363e snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3f6854a7 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6c959dd8 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83586ae6 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f40b226 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d875f6a snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xad91b7a9 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xadd1b3d1 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7bc07033 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcb486e1c snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x164b1ad2 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x20047377 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2876cff0 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2fb7cf1f amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x534e9d69 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x794bf02f amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7ab20ef1 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9d04edb amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd661ea8 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc98ccc8a amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdb218945 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe753de58 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9733dff amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15468b00 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1654145e snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a29a5a8 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x25f377c9 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x39e7d369 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3eb552ff snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f74f537 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43e6a064 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b65c038 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5ebeec61 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x60aa3301 snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6837bcfe snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79681d18 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7c479e71 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7df2ff4a snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8d14d391 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94ac5424 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa20bd7ac snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa27d1f69 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa59ef2f2 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaabf8460 snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaca29da3 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae782d6a snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9eaa86a snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc52c57c9 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc5c93c01 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xca1a0af2 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2b371a3 snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbd8cf93 snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe63cbbd2 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfbee7031 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039312af snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb1b05d04 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc1135ab7 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc561b6fa _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc6f6b1a6 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd02d5722 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd3559903 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe6a64877 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xea750f40 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0988ff9e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09f69a1b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x169a0e19 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x504e92d2 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x553666a5 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8b3ceb6f snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f1319ac snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae743e2d snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbf64f0a0 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xccad5bbe snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcf96650b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xef7e871d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x8f522167 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcfb2a606 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x364e828a amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5edee5ce amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x691306b5 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78b21d43 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7a30899a amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xba42bb53 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc43c98f7 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcbe27ad2 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe00a5d3e amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe47862e6 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe65ed08d amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf2359d52 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf863fa7b amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x268bf17b snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x26b57dc4 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2761defc snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x32f7059d snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x35ad3be3 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x39ecd6c3 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3fa6d93d snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4664d119 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50cc0450 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x66115525 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a552c58 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d358c84 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x75980299 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x75e99cd1 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7691a4de snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x789c8c58 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8190116b snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x834fb707 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ad55f09 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8d3d56c7 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x972082e1 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0a42be8 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa2326a3e snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xab7dd2c0 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaba1cffa snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcd87ae27 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd97ba5fd snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe79ad786 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe81ba02f snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xecd897e1 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xff398ff4 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00a49b91 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03f62aca snd_hdac_regmap_add_vendor_verb EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08b1f0ac snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09a5a910 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b31d4e9 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e165d4f snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f6e7f61 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10b13433 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x111babc3 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10df3fec snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11ec96b4 snd_hdac_get_stream_stripe_ctl EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x175bf055 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1865322c snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a0cb49e snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a9fd6fa snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1be6da53 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21882d50 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x225a790e snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22982234 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25d8e0b8 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c83e9f0 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2de57ca0 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e512f7e snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34f397ae snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35b18109 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37610967 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x384ccfc4 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a8e22d7 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x155ae2d4 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1586d328 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x174a334d snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19131ba3 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c04c86e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c7e64e8 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ca7f8a4 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20f5474b _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23f0ea24 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2afc2d3d snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c667a87 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x304aaa89 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39beeb77 snd_hdac_acomp_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fab58c2 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x402d898f snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x415010ff _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46081833 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49d84349 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c0e1dc3 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f63f37c snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43b88c6f snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x461bab91 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x489efae7 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49dc034b snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a3bf159 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b87be7f snd_hdac_acomp_exit EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f04815d snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f6b187b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x522a3c1d snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59a92290 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e689408 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51df9d96 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56b90287 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b3c325f snd_hdac_bus_init_chip EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5dd9c9a2 snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e4a119e snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f6892d0 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c391690 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f223990 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f2967a5 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f447d7d snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f452081 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x611aaa69 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x650ca3d2 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65b6b5e9 snd_hdac_regmap_read_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69b604e9 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70c2c802 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71591e9e snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7254125d snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72bd1a5e snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73445bbc snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75352283 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x692f62be snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bc47bc2 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x758eea09 snd_hdac_bus_update_rirb EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8657d13f snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92c9f295 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97cad93d snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99563590 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a6fd669 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e13e59d snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80953360 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83442184 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83908976 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8506c725 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85796ce1 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85b518e3 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86e24c05 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8883daa2 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ca917e3 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x903ec71f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x915e882e snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93be31b7 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9592f6af snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a85c09a snd_hdac_stream_set_lpib EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6f554d1 snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaf4dfc3 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae28dc2e snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaffb7b81 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb403dc5a snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb514c498 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb96a3d96 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb1aea54 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe75fe75 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa08dfa6f snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa14044c1 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa14c92d7 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5d5a568 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa61de1fe snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1abfdc8 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7640f70 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb871b41d snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcb479e2 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd037bd0 snd_hdac_bus_get_response EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf6e5fc3 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1a5ec5a snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2f9fec8 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3e23a06 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc461c11b snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5bce323 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc71f3f65 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc83e6166 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9796d6c snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9fc3c37 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbcca6c1 snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcee78803 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3197324 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3db117c snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3dbe91f snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7983154 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb929beb snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcc824e1 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcce898f snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd8c6987 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdda8ba1a snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf94ef90 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbee4a8bd snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf8f8151 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1b42efd snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1ccd901 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3234b94 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3ffee00 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4954dba snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc534d8a9 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8a5560e snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca133a2d snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbb94241 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce6cdcf0 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1a6661b snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd43bf820 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc399443 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe22f31a6 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe49c1b48 snd_hdac_stream_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6aeed95 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe70b5b38 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe769cafc snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea71f96c snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf462ba85 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf527f0d9 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5de104a snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6e9f5c1 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6fad583 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9402a60 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa0b37f4 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1b1e8021 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5c191d9 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7d4044a snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8179f8d snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9692208 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4efb7de snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5b18425 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa4efaf1 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa523e5a snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbed9762 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbeea072 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd80c3eb snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x05c81229 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x365afd3d 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 0x75ae5155 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x847e6cc0 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc34d2f80 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x02c69030 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0c8c769e snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x32de7a36 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x498e36d2 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d6ef495 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcd494668 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x033d202b snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0524d341 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x065b9abb snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x54b0d06a intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc69b4f27 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x07fa0846 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3766baed snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x77d73d51 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x94d6d695 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa1917df0 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdb2bff1a snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04f41805 snd_hda_codec_pcm_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x068a2248 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x077684e3 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08318735 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08a060da snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x090619b8 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b1eb3c3 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca400c9 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce76ee1 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e569c4b snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f8b692a snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12add979 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19303601 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b0d5afa snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2086355d snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x249bcbec snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2574aed4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x260cafcc azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29ef652b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2efb2461 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x308b8da1 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31a2306f hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x329d6198 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x359d87cd snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d23f178 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x117e30fa azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11d4d257 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x123650fa snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12c2d6ea snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1325f44a snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1512ee44 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16bcab36 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17983d49 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ee5f01 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b39d5bc snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c678151 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e264e68 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ee9435e snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2055c307 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2289673e snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2445ac83 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26c52911 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x282c3e82 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e4d332 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x339e76b0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34644ff2 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36da94ab snd_hda_jack_tbl_get_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bae5d4b snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c4dd2e0 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cca621a snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3deeca4d snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40350b54 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40357d5b snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x416dca1a snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43cfcc32 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d55daa query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46684110 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46e3d34f snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4719edc5 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4959d3f9 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c24e603 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4de2139b snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x509946d0 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52f4c8d2 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a77fb71 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f00ebfc snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fce6132 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61be1e17 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x628418be snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64078e4f snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64173e6f snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x670c864e snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69d687c4 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c950fe2 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dace9b4 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f36c598 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7096cbb5 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x750c2606 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75f3e295 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x761bf0b5 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7877be94 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7954b4cb snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad2bc3b snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c1d77de __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c92d0c1 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cec48ea __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f629986 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x808c1cb8 snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80e2dbf8 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85e794e1 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x872fe656 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8763a46d snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x884981a2 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88550c05 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be67c2f snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92682632 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96f4a984 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d6091cc snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9daebafd snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2f59426 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3369d94 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4244956 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada57d29 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0c5641a snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb149dbfc snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4c13e7d snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb71126d7 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82a6e56 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8d81887 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98e781f snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9d65af4 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb6b9097 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1e956d4 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc36a6a16 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc490dc56 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7898a73 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8be1c8a snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb64593d snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccab5d34 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd6b598d snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0381033 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0cb5f83 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2cc8d15 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd828f590 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd82da4b6 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd90087c5 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9a2d8e0 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda0dbd25 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb1cca9d snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdef01840 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfe37439 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a2123a1 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d18ce69 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d4adb78 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dee5f7b snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42d60c1b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x445a3569 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a8582a1 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x519be0fe snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5332b0df snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54ad39ca snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x563b29e1 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57010c4c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b6a2eb7 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bc43bcf azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c7fdb9d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d8b702f azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fbf7693 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60c6f4a6 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6140cf34 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x644dffe9 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66187ec5 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67230284 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x687aaef2 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68e67318 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a07889d snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a4f650f snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a80bd0d snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb4b6f9 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d6c991c snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6daf5137 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e590912 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e5ffff8 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f9b5a23 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7180f2c5 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72db9d08 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x740be720 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x759dab07 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x772b0132 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x773823b5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x798d189f snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cc84515 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e16b058 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80787f1e query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81bb1c5c snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83175012 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8320ac9b snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87943288 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89002ef8 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x891f6787 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x899979fd snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c2d5349 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d0fef6a snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ed0ecc1 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8efa5ec4 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fb60b45 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91acb6ae snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x920bc6e0 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92b7fa2f snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92c22c3f snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92ccd10b snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x936cc80f snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7441f2 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f8951d3 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0d9de64 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa31495e0 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4317638 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7179f39 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9a69157 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaba8b416 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad709dc8 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadeaeaaa azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf42a682 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6100e79 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb61be9e4 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9fadbd0 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd638d4d snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1638c12 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc539685f snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc693fa4b snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8f9b2d6 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9e9d265 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcabb4c56 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbcdf25e snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc40e7b2 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfa942ff snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd50201c2 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6c8cb2a snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e67c22 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd811ce19 snd_hda_ctl_add EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe18bd326 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe43ff327 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4d803b8 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe57503e5 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6afcd76 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9259c5c snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb71b774 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed543136 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed5661ca snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed6f8994 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe233b6dd snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8044125 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe92d626e snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb6488f6 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9afc58 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebf69124 snd_hda_get_num_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef5381db snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef7a6b43 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0326bd4 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0ea2fe4 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf42e0778 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6fc2a2b snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79fed24 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8d802f8 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3b98a9c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf522d1f4 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6872df7 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7d15922 snd_hda_jack_detect_enable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ad0871 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0dce2aac snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1e8b5de7 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x26dbe842 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d75523d snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e438dbf snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x30caa880 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x393c15d4 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55b2fa4c snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68e6f1dc snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x717c46b9 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x748f01f1 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc3b350e snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfda049f7 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdcf94d2 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe4e650e snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff0584ba snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffb2b017 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19fa4a20 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b470de4 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31cb0e12 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x44057cb6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x535f8d14 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b95a9ed snd_hda_gen_fix_pin_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x79486c8e snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c362602 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x86a8452c snd_hda_gen_stream_pm EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ddd9d32 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9a6f0c97 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c30775d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e6dcc80 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb9f15326 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd34a9749 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7fbadae snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf138d289 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf498d23b snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8eac8ff snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xa4ea655d mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87b29d8b snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x897130b7 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ded827e snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9af9ccd0 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa001c70 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb9069aff snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5259be9 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf20b0680 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf383513e snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3910a29 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfa5e9319 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xff596a2d snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x4f34cc79 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 0x7ea24f4c adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x461cb50a adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x6dabcb0a adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x23d1daa3 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4932630e adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4a9c97ac adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x688047bb adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x72962950 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9305dc4b adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xabbe1197 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc802b706 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd95b32cc adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf5c29e6c adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xca669651 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x0fcafcb0 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9a56dd25 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb1a16f65 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x64d7478c adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x1e2d87a3 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xde034bb9 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x335d3c9a adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x34cf75e2 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x41b055d0 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5a521061 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa9bbb6b8 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbc607974 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcb3aca22 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd74f728c adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe6b55bff adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf6103fc3 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xd6132751 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x01c6d4a8 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x860be379 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc2edb7bc 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 0x258f99bf cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x25b6cfdb cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0529f20e cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0c9ed0d2 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0eaeba3c cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x25453212 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3a003c8b cs35l41_set_cspl_mbox_cmd EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x54de6e44 cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x56716eab cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6b9c4518 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x74e03a0e cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8c4bf06d cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x93e3c904 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x45b85dd8 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4c791792 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6d989f49 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x92e188d4 cs35l41_enter_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 0xac002e9f cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb630989f cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd318b668 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe21306b4 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe45d56fa cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4de3fcca cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb44c0a41 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb8fbbce3 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xebcff97f cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf769ca45 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x231d74be cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7a1a4926 cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x99932e94 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2925c870 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x36b2d7ec cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1c9b6692 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2b8ba91e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x373dff5c cs42l51_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x78144b93 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd3f30d44 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xeebecd09 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x455cc629 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x40b9d20c cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x890d1beb cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x277f38ea cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6810cd13 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x93b7a68c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xafb5fa82 cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf63be97a cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4c60911b es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x9aa153d2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x3657944a soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x4088cde8 snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf3e4bfe8 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5d388f71 lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xdab432e5 lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x73fd987b max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0f2d9350 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x49d7f376 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7e677a26 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xea5f8889 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9397f778 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb7dfc1a1 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xef4bc0ba mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf4100d01 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4f501840 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x82ad7598 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa6e54341 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfb7c124f mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x0eb0845a nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x39f51235 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x028426e4 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf803aed1 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x1a77cb21 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7646d61c soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7f481240 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x18892b52 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x2e01981f lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xed5fb3c4 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3923da0f max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x43e1f99b max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6be62d8c soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x72dc3bff soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3487dccb mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5b036f28 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x68abb205 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x93e811ed mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x112ccdbc mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x212c9dba mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x22841091 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x318b9d48 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x965da4f8 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x573cbafd nau8824_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 0x386e84f6 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x76485a71 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xfc823b93 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x3fde28de pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x8518c76e pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x48be8b8e pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xee9595d1 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x23b08cfd pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2658f0f0 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x44c702d1 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xea6e5895 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x391e2e0e pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xabf69074 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbc4c06fc pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf7396a7b pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x37af3255 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x612c908f pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x97b239e2 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x61ababce pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x900295ca pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x87d6e058 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xbd414de3 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x00bb33e4 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x01023f9b pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9d4e6a7c pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xab0afeae pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x41f3ef80 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x714473fc pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd30d35a0 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf67645d8 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 0x097ce4dc rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x30220485 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4e5f1b73 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9821e554 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xde6d6976 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfdd1827a rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3749d80c rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdbb5d520 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x75bc3848 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xc0f51152 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xbcc41f09 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x00a0d40f rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x00a98cba rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6fbdc3aa rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbd65f3ed rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd5c833f2 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xef1302d6 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x41190112 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xde5e1522 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xaff6c6c1 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xdd12b6c5 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xc9a260d7 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 0x1e2bc48a rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2a379dc4 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2d6156cf rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x32b18574 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x373025db rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x378bb9ef rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x48b6e15e 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 0x72e0eacf rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x73251d31 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7bdd5588 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d3b33ec rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7d9c8a74 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8951bcaa rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x99d751cc rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9ae8e35f rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x670fb7b3 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x70eca913 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x800e1967 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb3955cd3 rt5682_apply_patch_list EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc1ef8812 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc966b78a rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xb6391095 rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x65e1cdfc sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7951bc01 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x97c1441f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa8293435 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc17f917e sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xea3ddabc devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x41736415 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x63f8a88e src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xfcc0ea2a src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xba3d6f31 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd1d68ed3 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf0b6b574 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x68d31848 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x73688fce ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc656edcc rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xe704d75b rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x17d9b174 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x613540a7 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x67747f0c sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x86d656b1 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbfd14e78 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x8fc328fe devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x783c4c60 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x5a00fffd src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xcc24159a src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x15e1d225 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd784e42d ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfaacd008 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xfe005561 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0f601c48 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 0x1046eec8 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x346687c0 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4b52db57 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x52b2d15e wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb3fac84f wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x08ae4220 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x17006a20 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2c28c667 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x314fbc6c wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x515ab104 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x30a955c8 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x34085fdc wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x990bfb52 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd48a10d1 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xee4e5c8b wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x03405105 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0d5d5eba wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0fc35aeb wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x21ce77a5 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23fc4798 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2437c805 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x298d0745 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a70b842 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2eef6ef4 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x42a9ae92 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x50e5a38e wm_adsp1_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 0x64c38bea wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6d1c4ff4 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x783d5da0 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7ce72f02 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x816e6499 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x848b8a91 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x84f7f56f wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x98fef5a8 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x990324b8 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9c392772 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa4f540e4 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6f74389 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xba0546a7 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc5179f0d wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd34093f6 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76708b20 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8c5bbb24 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x95b5c5a9 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97a0c9e1 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaa0edcda wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf51c36f wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb411ba45 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb68fbe14 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc4046acb wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc4cbeab0 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd312a957 wm_adsp_write_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 0xe591ee6c wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd74b409 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe54ed049 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 0xecb7988a wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeea0bbd9 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xef6d533e wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfaff3aaf wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0cee0a60 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf05df1e9 wm_halo_init 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 0x62e54144 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7387b0be wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x615890f4 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7314049f 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 0x9232fce7 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9ef0e426 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc663e402 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd68762bf wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xffbf87e9 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x2bcf5b04 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xf7c606ce wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x28d401bc wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x94b752a9 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb1904363 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf1c45891 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa13770df wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7f9195c1 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x09a6e3b9 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x25cfc3fe wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xbda25c1f imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6d72b800 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x938b2ac1 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd69789d5 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe8d56147 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xebe8c4c1 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xef4bea3e wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf84c1080 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7a769fb5 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xf9311432 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0ea5e9d0 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x15faeec0 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2b352ae5 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xda53e556 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x3a3034a0 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd4c305cc wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x96f96098 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xfd0cb812 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x310e0968 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2b68e88d 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 0x27075c05 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x001ecdc0 audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x2aab46f4 audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x61a64b1c audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc3940cf2 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xa15aa904 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7ebdbe33 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x9fdf3f51 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xccf5d753 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xea3c2ce9 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 0x04efab10 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0555906d asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0817dca1 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b70e4bf asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b7b11e4 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x14834497 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x156a94ff asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5074626e asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5792efc7 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x62f3eb6e asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7cecf2a2 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x863dabef asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9955bb0d asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9bdbb36d asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa54b9821 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0fa7fd3 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc52f1da5 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd80ad3e1 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xec7806b2 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xecc6a58a asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee858118 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfe3340ab asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0a0e3f87 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x137af6a3 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x17c47e03 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3210001f mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a2a5a34 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x42f8579a mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x531126a5 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x60f4f4f9 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x611969b4 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7b37cf9e mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fd8dca3 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8fc5797d mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x932eaf13 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9c02db5a mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9ccd2740 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa2033e93 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaa6a3e7a mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb391952e mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4c6c36c mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4faf928 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc3e143a6 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdb792279 mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe401e95e mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf05dde59 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7f15f76 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8124457 mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8c3d931 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf9531f70 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x5aa70d12 mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x1f6c37b3 mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3ada58fa mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3beff6a1 mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xeeedfad1 mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xd0e14fb6 mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x781077fa mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xe77d427b mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0010e925 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x12b8c536 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1a6ad201 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2b85ea3d axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2d02a6eb axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5bb4d015 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x791c9d08 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa87b598f axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd17855ba axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x12a32ad2 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1b8903f9 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x33091fc7 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3fb879f5 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x46d137f6 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4946b700 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5325728f asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x69a36a2d asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6dfda69a asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7103d96e asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x71b7ec60 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9d255c5c asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa237ea0a asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb06e8554 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5b7ac10 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb7865ed2 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb8911be0 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc7159585 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdee8f27d asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe01efc84 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf0d36f6c asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfcd2abde asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0d59d934 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x117f93c3 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1df19af0 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x255cafd0 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x353204f6 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x39b371e5 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x45c25061 mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4a2b27ed mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5090071c mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x55cec3a5 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x602059bd mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6deee564 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x74a16aa6 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8416217b mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x85f78830 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x87682a2e mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f6b6845 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x91a73984 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96cada0e mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96e9959a mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x97c23929 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd1118660 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd2189e28 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd919c010 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdc597083 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe926b456 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xed76e22e mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf191819f mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xce7f6bfc mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x1cd0aa5a mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x31775cc7 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3bfb1a28 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xec8db575 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xeaf1c593 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x02d3bbd1 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x541a9a2f mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x145aa909 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1f2b0bdb axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x439fe43a axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4e8e3b0a axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x68da0459 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7f70258b axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xab2a1412 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xdfae76f2 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe5e05e2f g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x33a3513d 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 0x4ec416c8 axg_tdm_formatter_probe 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 0x56dcd01d axg_tdm_formatter_event 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 0xb10729b9 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 0xbb6c1553 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x08b5168c meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x144f2158 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7f26a382 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8bcfd5ef meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8de29a9f meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xca9466c2 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe8eff17e meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf833bf64 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x00790135 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x30b918a8 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5a06363b meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7b2683c7 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xaade1c1a meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe4da6e82 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x0063820c axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x10ae4de2 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8248d8e1 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9d40f3fe meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa168d6b4 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa5ab698e meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc6dee4ab meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd1cf67d3 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xdf23de79 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x50e4a3f6 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x57352323 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5d771687 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x830bac8c meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc3b6ca80 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf640238e meson_codec_glue_input_dai_remove EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x30f7650c q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x64693069 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcfebffcc q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x8e1be589 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcb2a6543 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xf5a41008 q6adm_close 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 0x5f15b812 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 0x80870a4d q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x9da57d7c q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae4bd419 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 @@ -19907,10 +19913,10 @@ 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 0x62e7466b 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 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x933a2239 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 @@ -19925,283 +19931,283 @@ 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 0x2c798306 q6prm_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x555e6e84 q6prm_vote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x800a4986 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x3abeba08 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7c617dd0 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xa45bc80c q6prm_set_lpass_clock 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 0x08cc30f8 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0af3e17d q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x114ab69f audioreach_tplg_init EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x18ed259b q6apm_graph_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x27c79e99 audioreach_set_media_format -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2a9ff7b9 q6apm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2b19d104 q6apm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2ef68f8b audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x395551f8 q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3a98176d audioreach_graph_free_buf -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3c920b15 audioreach_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3da3f1e0 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x14f5546a q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1597f2f2 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x15be1a6b q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x238cdb7b audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x54eca3f4 audioreach_graph_free_buf EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x58b02198 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x62a0b486 audioreach_set_media_format EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x670fad0a audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6f9551de audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x704741b6 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x70926d0e audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7127cba7 audioreach_map_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x80a6f911 q6apm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8c562190 q6apm_graph_flush -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9818561d q6apm_graph_media_format_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa2ff39c0 q6apm_graph_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb1258354 audioreach_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb926aa47 q6apm_graph_media_format_shmem -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbca4f340 q6apm_graph_get_rx_shmem_module_iid -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xca45b6df audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdf9374ad q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfc2b4202 audioreach_alloc_graph_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfe0cddbe q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x82a446e9 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x968d33c9 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa13ff0b9 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcbd0688f q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd1494c3f q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd2aee6ff audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd42d0cf2 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xeacab713 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xec698b52 q6apm_graph_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x1d009787 q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe4376c28 q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe855f32e q6dsp_audio_ports_of_xlate_dai_name -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xcc2c17be asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x434682a8 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x57576166 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6ddb3161 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc79f0fd5 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe7e75de3 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfde5977b lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xb9de7dfd asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xb52fa927 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xd0a210d5 qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xdab557b7 qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x2139693b qcom_snd_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x76c4b330 qcom_snd_sdw_hw_free -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xf7481b92 qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x7cf32f8b q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x984b28f9 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xfbe914b8 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xcaa500f5 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x30555da0 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x34c49c18 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4b288c55 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x885e280e asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9734395b asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xad517f65 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x5cf89863 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x02c6385d asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x78662830 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x7f60c34d qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x4be2420e qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x63721a17 qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xf5fafdd3 qcom_snd_sdw_prepare EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine 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 0x01547582 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c4457b devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02fdb5d7 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x044db18f snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053e0237 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0683576d snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06e62956 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c5492b snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07e03a0e snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0989f4e6 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bec43f8 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cd27527 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dbdb6f3 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ea36327 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eedfc64 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6828b5 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1036ef7d snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13cfda73 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14af8a34 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x160f8a07 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a10ed6 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a14b176 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a51cd5e snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bc32541 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d7768a0 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1daeb241 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ecb3260 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f535550 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x201a2f96 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20506d74 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2187b18a dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223a3918 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x223aacd0 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cd7573 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x005d8e91 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c98e55 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03e12843 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05206027 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x062715ed snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07cba855 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08e4038c snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc1eff0 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e825a78 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ed16216 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f7f0501 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe1be14 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13672ab0 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x136ce2d5 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1406ce85 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14ff7ba5 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17decf21 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x199f89f3 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a86df42 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c09daee snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f18395f snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ffad037 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20184204 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20914fd6 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20ee9461 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x210cbd3f snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2131aec5 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x216d7a8f snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2238aeca snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x238a1bf9 snd_soc_limit_volume EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2565aa68 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272ba244 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7eaeaa snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7ef2fa snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b75d4da snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd8e80f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f7c5e77 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2faf34e4 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30c715ee snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x316a5d04 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32554e13 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x330f0669 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34807118 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36743600 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36f1e083 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x379d9154 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x394a2396 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a20043a snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a39d154 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a624eb7 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b2441a6 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d170aa2 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e7c44c0 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ed6b076 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x408d73b3 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40d55738 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4179315e snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4219a7b7 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x424f69bc snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42c7cc6e snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43ba6af9 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e86f75 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4442aef2 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45b38305 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45ba9632 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4661c1f3 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46e9d17d snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49746d63 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49cd6232 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ca10757 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ea75701 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26093ef8 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26e69aef snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28246fce snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28cd9c5e snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x292a3572 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb45fd6 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eea4d67 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f962951 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fd13903 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x305a5006 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32d4e4cf snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3584a746 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x358c29f3 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36277115 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366c557d snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e02f2e devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3700d605 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38683385 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38c9e477 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a79d87e snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c6fd4b0 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ca3de04 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dc2f081 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e27ca2e snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x419d1a3b snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d66074 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41f5bc2f snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4559b83a snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472038fc snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x475b5c81 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ea25d9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49d881cb snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49e5124b snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5f1bde snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b513723 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e50d639 snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x521e972d snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x527ccfe7 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c9140c snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58028c30 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585c800d snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58d387b7 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b11bf56 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c67539c snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dd043fc snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ecc133e snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fb4ff7b snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x602e3c29 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6079b958 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60b577d3 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61af6366 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6240f4af snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6257a2a2 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63259750 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a908bd snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d9f8a6 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66276e8c snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c1f3f3 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68f0a38d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ae243b0 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e45794d snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e9d2fb0 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f9f6d9a snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fabb5d4 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x723c5be4 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73024a25 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74a3e1bb snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7693f955 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77023800 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d1f7cd snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x798ef547 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d2b94d0 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x535c806e snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53aecfed snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x549ca4a5 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57909b98 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59020e24 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5906dca9 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5912d498 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59343bdf snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59d8c2ae snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b22d1b2 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bec785f snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d5120f5 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e85e14a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x612fefbf snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x616d5746 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6276c82c snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63329a16 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6445788d snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67619cfa snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67a2fc67 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67f2ccef snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a17007f snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bb07dcb snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c262600 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dad8a6a snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e41fffb snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x735ff601 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77ea559a snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b50babc snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b6b07c3 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cab9c15 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e58196d 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 0x7f36cade snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80bc4293 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x815595f7 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8267c7fd snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82f60097 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83ea19dd snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84f1231f snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85930d26 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85e9f449 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f8d597 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x864d8a37 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87c4c1aa snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8920c721 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89585343 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a019e98 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b9fbbb2 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c81c36e dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e93834b snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f4454e8 snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fa2d2ee snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90b44505 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e81220 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92c1dca8 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x943a0f34 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953d4227 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x984af8dd snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e3716a snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98f485ee snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a69cab1 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9aba0408 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba5e7a0 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f7d3db6 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0295405 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1eaa4cd snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4c44e7d snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5107854 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9d55159 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa0e88e7 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac00df1e snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf2bf9a7 snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafb85529 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb14da579 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb35d987d snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb462da3f snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5518b50 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5798260 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb86acfdc snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8eb0088 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb924fb32 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbad1b2c9 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc0981c7 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc2c353 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd0094da snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe0a2588 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfce221c snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc144d504 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc14b6399 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f8c0659 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7feb46cd snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x804767c3 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80ca5024 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x845fe7ce snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8462179d snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x871b1bf2 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8868af52 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88700fed snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x894468b7 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x897e60cc snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ad35fa6 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b0bc2be snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b3cb6a3 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c646bff snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x905ff915 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92771040 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9618ac21 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x965263a4 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9789c24c snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97c36ccc snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a0958e3 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cb17542 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d713b9f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9db55660 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e30d95d snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fb7bc4b snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0131282 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa21d9f0e snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa26ce4c5 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3026a26 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4825176 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e7cb53 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5ac89f4 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6885baf snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7e25684 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa81d0b75 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa984ed19 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa79c2f4 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad4bb66c snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaecd1c04 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaee21d60 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf26d1df snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf91264c snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf9d38a2 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafdcc752 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb00103fa snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb06443fb snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0bd0e05 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0d002d3 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb133ecd6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2f35265 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb58f8872 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7e51292 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbfd2b34 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc0c1bb1 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd2cb87b null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd7189ca snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfe03444 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2bcb7cb snd_soc_component_read_field EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b0155a snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c4150b snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc503bae0 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc66bd379 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc701a352 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7371f0a snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ccfde1 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8051caf snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3a4644e snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc44bf949 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ef6f55 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc50d5d65 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc53d7766 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6cc916b snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc703707e snd_soc_component_get_pin_status EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8386bea snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9408ddf snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd526104 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdc84d0b snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdf15a4e snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee19873 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd154759b dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd296acaf snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3ef24c7 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd462d2a2 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd51cca0d snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd54eacd7 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61dd25d snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9d3331e snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda3ba57b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbea1f73 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdec63859 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf01bff3 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf707cd3 snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c2a3c3 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe441dbda snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5754886 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe83446f5 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84cbc7c snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9831932 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8287d0d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc86635dc snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8bf0998 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9a5fce0 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca525697 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca75c5b6 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb71b5fe snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcda9e816 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfa98242 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfc512a8 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0e52573 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1be3bd8 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a7bb58 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd42fdaea snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e8f485 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd69149a9 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6a33fb1 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80c494e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8446bdf snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8bd4aae devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a808ab snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda582055 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb43ff3b snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddd6e173 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde6a8f53 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde6b6ce5 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdedad16f snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee76330 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23eae8d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe25b6b6c devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2adb2fa snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9353b89 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea37bea3 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea56c194 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb60064b snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb6dd273 snd_soc_component_set_jack EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee6dec8e snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf08166a6 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf123e5f0 dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1dafa5a snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2ac8937 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2dd0e2d snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf375c517 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3dee9da snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7c13d97 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf4994d snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee290d88 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0ae0bf7 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf237e4c5 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2666032 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3f505df snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4b09e76 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf75274dc snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf770b8cd snd_soc_info_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 0xfd260e58 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe59b3d3 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff4e4717 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x13a78f05 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x33620ad3 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6d7a4199 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb35465b3 snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd672730f snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfac59b97 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc056a20 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc592dbc snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x06522625 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8977709c snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa3ef40cf snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbc181a10 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc4324483 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 @@ -20211,17 +20217,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 0x7a833177 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xf6df09f1 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x53a8c620 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x56b1d250 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x57690750 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x597b3b8d tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5f10583a tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x68ce0f0a tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6fe41964 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb91d07da devm_tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe9b0fafb tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x15ead651 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x67a8243c tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x219218f5 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2f3bc106 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6972d9e3 devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6c92701f tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8c7b129c tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x98d6fe10 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xae6d7a91 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe1be5510 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe483b3e3 tegra_pcm_construct 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 @@ -20234,7778 +20240,7775 @@ 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 0x8331aece edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x084ba3e7 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xf4b9ad30 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0325d844 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10a87ee3 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10d49884 line6_resume +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x1ef375b3 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x14710f86 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xc31d8856 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10779263 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1dd869e7 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 0x326c6b25 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x460d5959 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x52eafea9 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53659f14 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x60b52bac line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63e19d35 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6ced6ddb line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d970b8f line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8c0bc732 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9178bd38 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab0b6fda line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd358843f line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe2aac16 line6_pcm_release -EXPORT_SYMBOL_GPL vmlinux 0x000a3ec5 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x001f748a of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x003a0ada crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x003a3f50 devm_pwm_get +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x21d4e3ae line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2c18fd6f line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x48dd060f line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x688e2d07 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6d07117f line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6f669718 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x91a2b6ed line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb17cdf3a line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc3bdc429 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd1909404 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd3dc22ca line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd549f3a3 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdf05bf8d line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe9c7caf line6_init_pcm +EXPORT_SYMBOL_GPL vmlinux 0x0013f1ed seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x00234c0e wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00555bf2 dpbp_open EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x006431f8 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x0081a853 dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x009063cb tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x00979025 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x00994f33 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x009db8e5 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x00be229f crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x006acb9a vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x00715572 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x0075ab5d regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x007b7be0 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0082c5f6 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x00a2c242 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x00b6208f usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x00b649ab pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x00c15494 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x00d471b9 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d4fb88 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x00d64764 rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x00e1b5d8 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x00ebed09 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x00ed0b4a pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x0109917c devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x010f9f4b dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x01215bf1 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x01227663 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x012c4cd0 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x012ddf1c blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x00e10244 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x00e56f0f fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x00f8a189 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x012ccfc5 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x01309d2a __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x01345c53 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x013af19b devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x014c3b37 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x01329eae udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x0137a948 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x013b38c3 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0169be83 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x0173c7d2 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x01700dc6 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x01754d82 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x017dca08 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x019f4f12 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x018b0327 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x019ffc65 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a3efbe regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x01b71398 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x01bdf4d0 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x01c4c2c4 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d0b11d regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x02039157 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x01f31f98 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x01fdc4f4 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0202ef11 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020e8083 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x02132dbb perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x02267205 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0238180b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0216712b pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x02168528 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x02304651 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023c42b6 dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x024ebf5d serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x02525d2f xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x02629a47 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x028344a6 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x028e4eca strp_process -EXPORT_SYMBOL_GPL vmlinux 0x029bf2f8 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x02a679c1 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x02acf28e unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x0251796d regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x026c5d25 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x027610df device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0276af80 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x0286e1b6 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x0291fc92 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x02942bde ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x02a65163 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x02b11c4c elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x02bd8778 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02da5c22 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x02ec691c device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x02ef5b84 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x02db8a29 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x02dd4b6f dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x02e95271 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x03048a0d virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x03094d39 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x03119e2a fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03177659 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0318dd96 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x031ffa37 xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032aad03 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x032c17f0 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034afadc virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x035017a3 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x035811aa serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x035f63e3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x035c0ebe icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x035f3e50 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x036e0987 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function -EXPORT_SYMBOL_GPL vmlinux 0x0370e86c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x037268ed rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x0381cee4 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x038471c1 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x038fb01e wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x0390210b sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x03861ccd alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03980b86 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x0398a5f9 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x039b2f3f pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x03a5ff7c usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x03a152b4 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x03beba4b ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x03bf5f1e ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c6933b subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x03caeefa ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x03cbe804 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x03c8fe7b rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03cfc346 bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x03d3c9f9 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x03e173a3 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x03ef4760 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x03f654f3 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x03d6d59f devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x03e31bfa icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x03e3b16c devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x03f7a69d fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x03fceaf7 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04052238 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x040b6838 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x04149bd3 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x0417c55a inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x04268151 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x042cacac _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x04300359 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x0431a32b lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x043bcb96 vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x04404e2a devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x044c0418 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x045ab6f5 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x04179de2 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x043349d4 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0439cc12 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x044054ae pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x04560616 pci_intx EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046dc76b blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x04690478 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x04788bb3 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x0485838e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x0479a2f1 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x047bc0ca rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0481885e kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04917d37 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x049722af thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x0499ee58 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x0495dcf5 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x0499aaf1 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x049c161c tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x049c63aa disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04a2e47f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x04ab9d34 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x04b3859d irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c84322 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04ccfdb6 zone_device_page_init -EXPORT_SYMBOL_GPL vmlinux 0x04d1a9d2 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x04d3b83f devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x04d9a71c vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x04da80a0 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x04d8e052 dax_add_host EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04edc6a2 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x04f321d0 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x04dfa33f __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x04ee5884 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x04fd996d __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0505d6fb attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x05186ea4 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x0521d3b6 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x051b26c0 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053a15ac __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x053586a3 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x0547b5d7 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x054506b8 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x05466f76 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x054ddf75 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x054df506 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x054e0d00 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05589cb6 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x0556c142 of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x056a25b6 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x056dfd16 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x057a85fe of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x0581575e regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x058589ff phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05987453 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x0591a322 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0598f97a sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x059a00a4 regulator_put EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05af72e0 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x05b35b90 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x05ca52cc rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x05cd9352 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x05d844a2 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x05dd4107 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x05e8cbe0 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x05ebf84e usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x05f1c239 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x05fb717d __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x05a9c487 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x05ad695d regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x05b2ab04 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x05b52911 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x05b7fe6c ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x05bf872a handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x05d1e0af tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x05e1c759 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x05e746e1 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x05fb85c5 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x06087fbb ahci_shost_groups -EXPORT_SYMBOL_GPL vmlinux 0x06105fcc decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x06064736 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x060944a3 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x060be98b init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio 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 0x062d9f23 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x0646fbed metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x063c4c52 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x063e187e find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x06454076 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064f9057 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x06511deb scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0652b533 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x06606ddb gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x06607991 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x06669421 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x067aea05 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x065ca248 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x066e8b3a mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x067e0895 ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x06801ff2 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x06b6f9e7 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x06b87512 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0683f4bb dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x069549af ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x06954cf6 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x06a11668 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x06b760df devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select -EXPORT_SYMBOL_GPL vmlinux 0x06c09d97 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x06bb86d4 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x06c02229 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x06c175e8 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x06cc492a elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06cd6d74 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x06d33036 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x06dd44ac meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x06d4e0b9 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x06e21c77 vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06e7c91b ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x06fcb879 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x0705931e devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x07136c96 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x070f0ffe dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x0711401e serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0734f42b gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x073ff2ad ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x07364422 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x07541ab9 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x0760abe1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x0756e540 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x075acb81 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x075d2c07 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x075f4e4d ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07844918 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x0790a77f kvm_vcpu_halt -EXPORT_SYMBOL_GPL vmlinux 0x079ca79f tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x07a7db5a bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x07adab23 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x076e6675 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x07757465 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x077b2e19 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x077bbb02 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x0796c2d3 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x079b2d25 md_start +EXPORT_SYMBOL_GPL vmlinux 0x079cbd9d driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x07abdc31 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07bb7b2f led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x07b8040e devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c1edd2 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x07d959a7 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x07e90c71 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x07e9fbaf pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x07ec7d52 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x07c66321 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x07f57bb2 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x0810a3c7 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x0810a528 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x08054da3 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x08122634 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x08189d16 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x08195e1c query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x08255cd0 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x08378b47 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0842946c gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x084e270d dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x085549e0 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x0838cbc9 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x0841a6e6 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x08453346 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x08634383 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0866cab2 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x086fc3a3 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x0861a397 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x08772710 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x087985fa ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x087e690a pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08959a18 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x08a4e7a6 dma_resv_describe EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08b9e745 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08d91ed1 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x08dd1421 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x08e4d717 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x08f3d0d2 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x08cae3b4 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x08da615c devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x08fe27b0 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x0900e1c9 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x0909c767 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x09144a40 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x091dd0cc sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x091a8ce3 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09321f68 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x09679728 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x09679d66 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x09466328 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x0950c22c usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x095e4cf1 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x096aba3a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x097236ce regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x097342e1 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0975a3f6 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x09765a75 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x09768248 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x0992b059 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x099629da kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x0997f6f3 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x09a5fabe bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x09ab618e phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x097ae036 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x097fc609 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x097fd6e4 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x098dae5f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x0993b7dc acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x09a059d4 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x09a24b1c pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09ba0272 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x09bed121 thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09c7a843 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x09c8c3ce pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x09eae37b set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x09fc1588 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x0a03a6c9 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x0a056ded pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x0a20d0fd call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x0a25536d inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x0a39d42c i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x09b7100f rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x09bf1610 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x09c31ccc alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x09d11fdd gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x09e0ec6f tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x09ecf2b1 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x09eda412 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x09f55691 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x09f5d457 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x0a2f1476 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0a410b8e fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4b1096 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a606ef0 hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a6f80ea ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0a7a4993 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x0a565524 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0a56d51d perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a5ef83b dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a7cc10e class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a80790b sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a9b6c75 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x0ab29f9b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a8ac255 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x0a8d60ff trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x0a8e608c kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x0a8fa0c3 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x0aade4d6 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0ac2654f __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x0ac7e574 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x0ac8a42d xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x0ad2b172 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x0adcefc5 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x0aec6014 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x0af4f735 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0b9551 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0b18914e led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b0f1a3d tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1d9ef7 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0b1f548b blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b37d37f hvc_poll EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b469ca8 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b3cf8ce locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b544672 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0b5ab9d1 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x0b5e234f unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x0b5f221f sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0b64bf62 acpiphp_register_attention 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 0x0b6e11d3 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0b885ce6 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0b71c861 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0b781a8b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0b806348 tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b92c4f6 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0b969b6f wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x0b9f2f9a i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x0ba338b1 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x0bab942d mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x0b9915f0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x0b9d74c8 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb6c6e1 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x0bbb51ef blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0bbbc4cf regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0bbdb47b devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bc4635e gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x0be2690a devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0bcbc1ca __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0bd09fab platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf56995 fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x0c00bd3a devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x0c01e06d __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x0c07beb1 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x0c08f7de ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0bf4a6d9 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bf4ab25 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x0c0c07fb ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x0c1a5ee3 log_post_read_mmio -EXPORT_SYMBOL_GPL vmlinux 0x0c1f12ec iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x0c28d806 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c263c62 device_register +EXPORT_SYMBOL_GPL vmlinux 0x0c2a6fbd sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2d77b1 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0x0c2e14d2 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x0c30212f subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3a89b6 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x0c3b4914 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c59bfa0 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x0c5f7c0e dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x0c75cfb7 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0c7cc988 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x0c43064c clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x0c48e74c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c504482 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x0c5773b5 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x0c6dcb68 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x0c70e86f __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0c85baf4 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x0c86e0d0 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8fb2a8 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x0c963c02 fb_deferred_io_mmap -EXPORT_SYMBOL_GPL vmlinux 0x0cbdb576 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0c935f24 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0c9ed471 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x0ca0c893 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x0ca7051c device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0ca91cdc fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x0cb30c28 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc53992 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0cc84a1a firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x0cc971e6 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cd1f52d __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cee9e89 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x0d1c668d rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x0cefb8a2 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x0cfa8fcd clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0d0012a1 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x0d3564c9 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x0d367ed1 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d41f498 kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4a57b8 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x0d4caa0a fsl_mc_populate_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d58d600 tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d64ca12 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0d5fc1ad vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d729c19 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x0d744758 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x0d74b4f8 cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0d7c49a1 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x0d94e8ad __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x0da173dc vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x0dd2cf6d rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x0d6f87e0 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x0d8928a8 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x0d9b08d5 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0dd44a4b phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0x0dd81d1c dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0decd521 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0dfe8cae gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0ddc2c66 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0deae954 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x0dfe9368 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e03d7d4 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e117ea1 of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e15da36 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x0e1ada45 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x0e2e3f7c sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x0e3e8e5f iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x0e479a60 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x0e4d861e usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x0e522330 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x0e549e64 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x0e56cc5d crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x0e25a13c rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x0e3a4a8a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0e3b354b of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0e40293b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x0e48d73d exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0e59ff06 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e6a5d7a watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0e691871 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e78efec evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x0e7bfa4a devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x0e8f55cc i2c_slave_event -EXPORT_SYMBOL_GPL vmlinux 0x0e9a458a devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x0e7369c0 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0e7ef821 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ea69417 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0eb55b6f kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0eca0b59 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x0ece5600 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ef35c84 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0efacc2f devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f00a681 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x0f0b30ae clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x0f1519c5 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0f17dd08 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x0ed67056 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0edfc8c7 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0ee00e4e iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x0ee54107 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x0eeb1ed5 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x0ef22a7f sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x0f04659f dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f253e9c icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0f319600 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x0f4d703d platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x0f587a57 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x0f58cc07 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0f70f39e wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0f249635 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x0f29f655 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x0f3b7e91 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x0f66e3d4 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f6e61c3 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f764ca4 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8282f5 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0f998a92 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x0f99a5d2 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x0f9fa825 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0f7dc164 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x0f83e94c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f86cfd4 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x0f9ab344 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x0fa202eb tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0fa598b1 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0fa6ae34 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x0fa84660 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x0facfb1a mtk_clk_gate_ops_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0x0fb8b7e7 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x0fb8bb37 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fca8d75 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x0fd1537e genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x0fcfd256 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0fd2f0d1 _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd7efa5 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0fe11958 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x0fecdf0e dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x0fedb06d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0ff58480 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x0ff80e7e gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x0fd7a365 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0fdddf49 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x0fe8d457 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x0ff134e7 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x1012fd0e __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x100af434 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x100c950b tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x102ac62d spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x1032c41d iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x1057cb8a fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x105b3cd0 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x1068772c of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x106d2a7d mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x106d7c79 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x1078cdae fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1085cdf5 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x1021e2a0 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x10269266 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1029882a gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x1040312f l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x10433426 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x10501d1b proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x10585098 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x10593320 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x1072e0b6 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1079bce6 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1080734e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x1084043f cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x1088f302 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x108928fd regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x109bfccc ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x109d8c4a fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10bb89cd fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x10c53b9c platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x10d1ea98 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x10d64124 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10dff069 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10ef1203 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x10fd1cde ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110bad4a __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x110c30fa register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x111a6912 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x112e4919 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x1143ec04 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x1148c5d4 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x11787982 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x117938e3 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x117e4f4b pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x1184b58d sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x1196f1bc gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x1198ad93 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x11af7493 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x11bd5c90 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x11c19786 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x11c377d5 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x11ce5d90 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x11ce71ad devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x11d1e5d5 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x11d21156 devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x11d21212 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x11d9be3e sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x11ddac26 thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x115bc41f blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x115f166c fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x1162cbd8 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x116ec126 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x11703ccf hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x1186181a ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x11897869 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x119b7f83 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x119dee80 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x11b663be crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11b9ede6 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x11bd4aa2 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x11d46a7c debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e01f05 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11f189e7 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x12004a39 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x11e10cec devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x11ef12c7 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x11fc3304 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x11ff3785 i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x12078308 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x120b0cc7 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x120e8ae4 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x1207cb53 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x121199e1 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL vmlinux 0x121a8016 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x121c13ae of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x12137437 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x124a1af6 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x124cbe3b edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x12355093 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x124ab780 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x124e75b2 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x127aae48 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x129e754e i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x12a3339c ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x12a49c8f strp_done -EXPORT_SYMBOL_GPL vmlinux 0x12a5d8b5 dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x12a6902a rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x12adfa4b blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x12bb6b13 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x12bbf289 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x12bcd047 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x12cd44bb mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x12d16b0e pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x12d9231d pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x1272dcc1 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x127cc301 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x128242d2 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x128ee3f0 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x1299171e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x129f148e simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x12a61854 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x12ab07da pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x12e93ea4 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12fbde69 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x12fd0bce iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x12f346d1 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x12f9458e mtk_clk_simple_remove EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x1315b4ad devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131c9910 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x131d3f2a dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1322e8fa perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x13313416 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x132293bc ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x132f2592 acpi_bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1339d21d fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x133c0977 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1347e6f4 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x13402c8a subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1349a781 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x135d52f6 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0x136adddc trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x136f377c verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x13719548 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x13741487 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0x1377b959 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x13783710 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1386bdd1 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x1388c64b of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0691 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13a2cfc6 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x13c6754a skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x13a2d140 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x13b19719 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x13b47357 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x13bc122a dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x13cc9173 of_reserved_mem_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 0x13e0494d acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x13eb0b35 dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13edacd1 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x13f0d440 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x13ef31ad pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14065849 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x1408061e platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x140da34e wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x1418d3ce devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14204d44 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x14381f75 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x144e5b67 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x14411c44 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x14517929 irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x145a72e8 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x14639725 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1462c00c int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14727061 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x1478e815 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x148003a4 vcap_keyset_name -EXPORT_SYMBOL_GPL vmlinux 0x148e9529 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x1476f54d msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x1489a6b5 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1492ffbd gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x149d6e61 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x14c8a02d class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x14cb4162 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x14cc0358 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x14cd8271 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x14ea63b0 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x148fe284 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x14b0622c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x14c06850 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x14e023a9 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x14e0251d seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x14e7e3bf serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x14eb45c3 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f1c8c2 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x14f7944d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x14f97095 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x15013d06 memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x150a4ef1 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x1516d64d mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x151c3d55 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x151dd7a7 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x150a2c9f iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x151583ad of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x152725a5 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x1532e925 da903x_update EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x153ba7fc __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x15403323 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x154b6ec0 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1543c59b pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155c91f7 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1553cbc6 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x155a2269 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x156db834 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x15705ad5 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15791b9b serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x15814b00 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x158869f3 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x158fc4e0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x158dce4d __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x158ea47f fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x1598d1b2 do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a74fee pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x15a880b4 devm_clk_register 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 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15cc48fe get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x15ddcb9e usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x15d99bbe meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x15dcff8d ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15ff2fed tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x160b94e8 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1624c88a of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x163666f1 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x15eafaed iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1606f46b param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1608b93d blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x161338cc gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x1618e461 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x161d08da extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x161ec7f0 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x162f4b88 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x163eceb4 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x163f6608 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x1644bd3f vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0x164871e7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x164cddbe ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1653c897 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x1657bdac pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x1674dd60 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x16534802 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x165bd7bc devres_get +EXPORT_SYMBOL_GPL vmlinux 0x165c2dbe is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x1664376a rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x16663830 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x16796b8e regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x167ba99b rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1682b4ca hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16ba88d7 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x16955a75 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x169ee030 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x16a2dd58 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x16ab6bdd fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x16ad4342 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x16b96980 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x16bf0364 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x16c36a64 transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL vmlinux 0x16d51e44 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x16d5774f dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x16d9bb07 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dee263 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e69d42 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f9a56b key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x16fbe83f devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0x16fbfc42 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x16ffeb30 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x1705cbda pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x17087e94 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x16f3ee05 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x171b0a70 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x17260e89 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x17476d00 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1713adc0 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x17309d85 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1732566f blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x17399fe6 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174d03df class_find_device EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17556550 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x175658a2 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x17572773 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x1759c92a devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176f7c6f ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178b9f13 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x1792c20a fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x17938efe meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x1797e0aa regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x17c34b58 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x17c9ef41 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x17d4abf3 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x17d82bbf devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17ba6fb0 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x17cddaa9 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x17d80f54 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17f257cc pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x17ed1ef4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x18004b39 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18018a29 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x180b08a1 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x181d88fb elv_register -EXPORT_SYMBOL_GPL vmlinux 0x182231ef regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x18240975 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x18254292 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x18272520 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x180b97da hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x180e1fbc spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x1812d9de fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1824182c pwm_get EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x182e7471 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x1832e0cd usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x183c3a6e altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1834b33a virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1838dc92 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1841eab8 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1845f858 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x18548b7b da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x1843327b xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x184896dc meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x185184ed crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x185bb535 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x1884e42b otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x18a29654 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x18b3b2c7 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x18b49041 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x18b7581b mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x18b92be0 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x18be41c1 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x18beb6d5 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x1875ea6e fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x187cad03 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x188d0141 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x188d11f5 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x18996ca3 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x18b1a10a phy_init +EXPORT_SYMBOL_GPL vmlinux 0x18bdaa85 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x18c36062 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x18c8045b edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x18d0d111 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x18d1025b tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x18d1be52 __traceiter_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0x18d7578b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x18dcbb23 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e7dffd blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18f0638c __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fd2848 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x1904b595 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x190517b0 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x191441b3 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x19238a61 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x19125300 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x1914e801 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x191b454f crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1920a12f tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x194658ea blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x19422d09 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x19428f79 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x194a03a1 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x197229a7 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x198be1d9 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x198eac6d ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x19956a9c __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x19940d17 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x199dc1d5 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x199fecc1 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19d0e39b xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x19d148c1 mtk_clk_register_composites -EXPORT_SYMBOL_GPL vmlinux 0x19d19c77 virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0x19d62067 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x19d783cd cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x19dbb32a find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x19c7fb7c skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x19e0748e sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19ebf04e __tracepoint_rwmmio_post_read EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19feca4f ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x1a00a9e7 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0x1a0e4f2b devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x19f6daf5 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a02a213 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x1a0b5bcc is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a141b3e xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a25b6f1 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x1a3bff95 of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x1a3f1d9d to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x1a45ab04 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x1a4f8c58 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x1a5f2445 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1a148614 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1a295b43 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1a2cc286 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a2d244b regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1a3cf709 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x1a4d1af5 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x1a528106 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x1a59a8a9 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x1a6573df rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a7783db __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x1a7bbbe4 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x1a8074e7 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1a6df75c __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a84f69c fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1a85ac30 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1aa6ccea irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x1aad52da ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1abbec29 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ac2399d tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x1a892426 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x1a8f22d5 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x1a98f5e1 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1aa53834 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x1aa9eec8 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1ac13d9f usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x1acbb5cf usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x1acbc1e1 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1aeb6113 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x1aee3144 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x1af1cacc acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x1aeb6953 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af88ce0 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1afbdb5c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x1afca9ba xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b11d325 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x1b1fcf9c nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x1b23deb8 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x1b334df9 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0x1b4caa2c devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1b5924e5 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x1b59ec78 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x1b65e351 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x1b73a03a fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1b845ea2 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x1b84cae3 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1b162f63 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1b1ea171 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x1b1f3d13 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1b20f94d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1b2219e0 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x1b232b54 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1b396dc7 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x1b497245 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x1b5df5d1 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1b67dd07 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b885ab4 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x1b89138d regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x1b8d39a2 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x1b8d91a7 mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba5cca7 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0x1bb20359 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x1bb84a25 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x1bb8bcb7 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x1bc05ebd shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1bb073ac 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 0x1bc6d2bd platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x1bc7d2d4 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bc97dd5 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x1bd5d6a6 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x1be265bd rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x1bf6f0d0 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x1c084224 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x1c1c78ab regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x1c1d487a edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c1d6368 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bcb8489 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x1bd1b596 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bd2626e bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1bd4970e rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1be7b5d0 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x1be83ce3 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1c03162f tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1c04513c dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1c04720e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x1c1434f1 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c262a31 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x1c302274 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x1c31abda device_create -EXPORT_SYMBOL_GPL vmlinux 0x1c3b1902 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1c268139 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1c356dab dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c47aed8 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c57fa21 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1c5b08b5 phy_validate EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6fdd6b lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x1c611310 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c76c248 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked -EXPORT_SYMBOL_GPL vmlinux 0x1c7c1d35 switchdev_handle_port_obj_del_foreign 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 0x1c8bb8bd copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x1c9a98c7 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1c9c8c34 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca3e72b rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1cb5e50c debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x1cb7a26c tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1cb0bf4f wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb7e987 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc7bfb1 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x1ccddefb pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1cf33fe8 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x1cfa367a pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d110a62 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x1d1276bf crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x1d2075c7 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x1d07020c __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x1d0db098 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d314322 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x1d32313c usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x1d33a353 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1d2ab4a9 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x1d2f6ade cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x1d34f52f rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d40aa8b fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x1d466bbe devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x1d536bf2 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1d5f48eb regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x1d3c1e06 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d76bcbc xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x1d7940ec __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1d90d3a7 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x1d781eaa blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x1d83da5d of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1d84aa4f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x1d8d58de __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1daa2e6c acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x1daf3bc3 acpi_find_child_by_adr -EXPORT_SYMBOL_GPL vmlinux 0x1dcc42ed clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x1dd19ac4 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1da0a0b6 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x1db0a1bb rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1db9e5ed ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1dbca435 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x1dcab005 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1dcf9fa4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1ddf3e88 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write -EXPORT_SYMBOL_GPL vmlinux 0x1deb4daf gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x1def33f6 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x1df0537a of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x1df2db7b pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x1df7d1aa device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x1df4bb0a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x1df8366d register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e065dee fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x1dfbacf8 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x1dfee600 icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e07034c posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e0d2882 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1e10a16a usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1e12d987 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0x1e1e51e1 reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e2054ec fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn +EXPORT_SYMBOL_GPL vmlinux 0x1e30531c inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e415a9c devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1e41b9b7 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e452023 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e574c63 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x1e5a1b9c ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x1e5f31a7 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x1e639a7e device_add -EXPORT_SYMBOL_GPL vmlinux 0x1e695c42 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x1e54ac25 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x1e56901f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1e6b5beb regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1e6c8ec7 dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e80bf09 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1e81c21f skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e99983b vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea46e28 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1ea7ef63 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x1eaae6dc relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x1eb0e136 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1ea0e03b blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1eab81b1 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x1eaed1c2 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebb930a ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecacdcc crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x1ecd2c87 acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1eebf298 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1ed5196a fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x1eedb704 dpbp_get_attributes EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1ef2a356 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x1ef48f61 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x1ef57d85 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x1ef84bf8 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1f0eb992 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x1f152877 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x1efdda98 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x1f125070 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f1d1d35 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f28750e md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3b5982 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4feb8b vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f7b2e53 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x1f7d5e94 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x1f7d654b tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x1f7f2121 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x1f7fbb85 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x1f84d520 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x1f614545 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f84e51d is_software_node EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f930161 gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0x1f94d8c9 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x1f89e257 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1f8fd104 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1faa47eb device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x1fc297e8 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x1fe5fede icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x1fe683cb dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1facf2cc crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x1fb662c7 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x1fce3c9a driver_find +EXPORT_SYMBOL_GPL vmlinux 0x1fd9b3f3 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1fe43f54 of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fea4da3 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1feb6ad9 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1ff42b67 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x1ff708be gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x2008b6a6 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200b5c41 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x200bf0e3 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x200c2579 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x20175128 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x201d231c __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x201d5cf4 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2033de5d crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x204be645 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x203deb91 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x2046ddda bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2059f853 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x205d0803 vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x205d2b40 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x20668bf4 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x206bdac1 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x206fa032 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x207170d5 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2077e01e inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x207a0bd7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x207c260c i2c_acpi_new_device_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2089f033 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x208e96fb dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x208ef530 blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0x20911c0d wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x20865b03 devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209ba777 fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0x209bd126 acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0x209ea247 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20a9cca4 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x20b53dc4 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x20d14850 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x20d31823 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x20d4c6db genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x20f3794e ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x20f3a132 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x20fb580f uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x20a59239 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x20aa253b sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x20aa8261 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x20b54f18 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x20cb4b99 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x20cc4e34 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x20d920dc devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x20dc95ed inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x20de3865 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x20ed3232 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x211e42d2 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x211f6e5e split_page +EXPORT_SYMBOL_GPL vmlinux 0x210cdbc2 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x210f49bb kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x2118fba4 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x211d04eb msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x211f6b83 serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x2136b58d sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x21394bdc mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0x213b16ab mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x214b2829 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x214cbd87 xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0x21531a90 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x215d66fc pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x2160265e crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2127a209 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x2130ec4a dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x2147314f rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x214aff1a pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x214f2a72 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x2156f698 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x215ce866 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2160e350 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x2160eb12 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2161e736 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x216d0f71 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x217656ee misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x21852537 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x218f0858 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x219c7717 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x217de8eb scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x218c298d sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2196d2e9 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac2d83 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x21ab75dc nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d31d8a devm_kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x21db8bdb acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x21e6bca5 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x21fc5724 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x21fda1eb trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x21ff0a5d serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x21d183f0 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x21d628a0 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x21e4b86a fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0x21eeed84 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x21f6a2ac xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x22030e3b mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22002a51 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x220b13e6 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220e3f35 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x22252daf exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x2229ec41 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0x222c6403 k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x223396ea ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x22387748 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x223ff8fd bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2260346f kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x228a00c3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x22109a2e irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x221c630c devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2229a9a3 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x222b2db5 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x222e0fd7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x22311cc5 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x224f9525 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x22513605 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x22567b3a pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x22598f2e clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x227097b4 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x22796309 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x22875a61 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x22943f88 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x22a3c724 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x22a68bc2 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x22a8fa3d device_del EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x22bee0a3 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x22cf2125 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x22afb583 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x22ba9b8a usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x22bd3222 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x22cbebeb cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x22cdb2ca inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e0b6ca debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22ed6ec6 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x22f3daf7 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x22f7b07e ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x22f6836d power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22fd2275 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x23084c69 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x231aa55f usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x2322fd04 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x233cb260 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x23410f1b ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2302b680 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x23145541 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x2314e163 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x23184787 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x2333b35e mtk_pinconf_bias_get_combo 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 0x235256ff ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x235e6918 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x23649717 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x2373aa36 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x235389d3 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2358893d devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x237aa254 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238c6ba4 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x2390c9cd usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x238909cc extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x238b27cb blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x238dddfb platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x23962cff ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239cdc8a serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x23b6b08d blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x23bdce19 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x23d032f0 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x23d0c42c of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x23d17254 mtk_clk_register_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0x23f08c42 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x23f86780 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x240582d7 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x240598b2 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x24144614 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x239c6210 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x23a80a3b __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x23b928e2 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x23c4d5ca clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x23c7d590 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x23d55fba platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x23d9467e vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x23db243b xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x23dec4e7 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x23f3c98d dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x23fe08b6 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x23ffaa4c task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x241d85c5 register_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x2446e897 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x24567eb7 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2466ee12 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x247305e3 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x2475a2d3 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x248228d8 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x246f752e clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x248cda78 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x24906139 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x2491c97b ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x24a0dab9 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24ad9f40 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x24b2dc1d crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x24c62c23 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x24d59399 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x24d64df2 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x24b49a10 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x24d6b06f nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x24d9fb21 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25025898 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x250e0220 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x251ae1f9 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x24ff3836 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x2510ad64 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x2528c132 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253c66e3 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2545c2e9 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x2547b0a5 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x254d70a7 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x256ecd81 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x257049cc switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x253d1cab anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x2549727b i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2558e424 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2583dffb put_pid -EXPORT_SYMBOL_GPL vmlinux 0x25869736 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x258ea182 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x257bdbca ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x25812e40 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x25814a01 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x2589d3f9 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x25913eda umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259c99c9 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x25b188e8 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x259c625c psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x25a0e813 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x25af3316 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x25d69101 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25e6d7d9 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x25d46778 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x25d7a6a8 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x25df8fd5 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25ea7951 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x25ff453f dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x2600fe04 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x2616adb2 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x262e12ef ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x263943ba input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x263cc75f pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x264063e7 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x25eed215 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x25f68731 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x25f74306 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2607d73b is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x26097ea4 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x26157191 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x26218d1a virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x262480a4 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x262e3fb6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x2646b506 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265ada69 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x26602972 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x266371ff get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x26703cf9 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2673574c fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x26746b4a gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x267f5e1d ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x2697f221 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x26a0857c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x2692c35b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x26a2d171 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x26a8dba1 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26aa29b9 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x26aad13d usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b3ba46 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26ba3f79 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x26c5307d pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x26c72a21 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x26ae25fe addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x26aea044 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26dfeff4 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26fd0042 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2714dca1 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x27049924 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x270a1158 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x2717ea9f of_led_get EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x273b7225 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x273f66ed vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0x27400030 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x2761dd3f of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x276a5673 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x276c5611 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2743aaad clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x274f6b07 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2750d0fd blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x27659b21 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x278ee660 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x2793b0d1 mtk_clk_simple_probe -EXPORT_SYMBOL_GPL vmlinux 0x2795b14d regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x2797c8fe ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x27a643b3 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x27b8424b xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27844afc phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x27914b82 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x279c31e0 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x27a0e44c extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27a7ff9d ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x27bcb414 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27dea83d cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x27ed9d52 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x27ea4f96 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f96217 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x27f60b73 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28031b82 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x27fbff05 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x27fd1897 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x27ff1f5e nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2817c32c of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281a78ec blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x28188b2a fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x282a7559 relay_close EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x28316d51 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2838947c pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x28478bbf mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x2858706c fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x285b18c2 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286a9a45 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x286f47aa __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x28764cbe __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x287c095c pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x289bd55b pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x28a23f80 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x28a4e697 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x2889a5f1 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x28936021 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x28978517 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x28a30d99 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x28a7a485 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28aa9937 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28af8b7f nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b0cb1c of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x28b26ace transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x28ba7f47 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x28d0fa6a sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x28f971f7 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x29076a3b inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x290b0752 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x290fb122 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28e88511 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x28ebcee4 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x29053aa3 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x2906a92a mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x29090266 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x29108014 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x2916183e mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x2917ad78 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291d6ad7 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x291f6f1e usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x292d5459 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x291dc20e sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x291e57a2 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x2924270f mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x292abed2 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x292f8f76 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x29363000 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2938f357 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295b9b70 kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode -EXPORT_SYMBOL_GPL vmlinux 0x296b82a3 pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0x2973f6bd mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x297ece69 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x29984028 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x29c15f76 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x29c3532e elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x29c9a918 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x2968b36b driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x297b9e37 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x298b3073 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x298b4624 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x299bcf52 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x299ee597 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x29b13438 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x29b28bc7 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x29c52710 rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29d3f298 class_interface_register EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29d8f335 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fed896 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x2a084103 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x2a241a35 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x29f17412 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x29f4a156 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x29fc1fd1 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x2a0593ab __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2a07c77e bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a0b0be1 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a1346be fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x2a18b31e acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2a275116 ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a35570f pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x2a3d272d usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x2a43f348 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x2a4454a8 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2a59d7a8 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x2a37f926 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x2a479199 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5f4f57 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a65a141 mmput_async -EXPORT_SYMBOL_GPL vmlinux 0x2a722238 shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a8342dd extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x2a8828ff pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x2a883539 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x2a8a4e6e crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2a940f79 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2a9b56d1 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x2aa343a7 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abdd64c kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2acfeafc pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x2ab19a6d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x2ab306e8 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x2ac4ee2c badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2aeed66f dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x2af1a9d0 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x2af5d610 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x2b0c13e4 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x2ae73461 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x2aed782e fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2af203a6 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2af419c3 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x2af7a906 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x2b05184f cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b075381 devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b3a4c3f kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x2b3f41f1 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x2b3fa4d7 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x2b413d1b crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2b169d1d usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2b36b49c __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b39c3fb blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4d99c1 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x2b4f01a3 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x2b538642 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x2b585929 of_pci_get_slot_power_limit -EXPORT_SYMBOL_GPL vmlinux 0x2b5f951f gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b48e99c devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2b496ec8 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2b60c1d0 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6524bb regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2b66b1a1 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x2b69b494 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b724d27 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2b741ac1 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2b760586 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2b7abaeb usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b7b9ac6 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x2b815fdd bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x2b8285a6 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x2b770162 meson_clk_mpll_ops EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b939b12 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x2b941060 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba75295 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2baa81b0 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x2bad70a1 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x2bb0c262 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x2bb21486 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x2bce2ddc register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2bceabfb modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2bced8cb pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x2bcfee07 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x2bd382de crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2bb9b726 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x2bce998c irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2bdeb4ce devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be8103c rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x2be8effe kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x2bf615d3 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x2bfb22f5 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2bf34ab3 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c0391da dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x2c06a6a3 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2c0b622e pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c25f6f4 component_del -EXPORT_SYMBOL_GPL vmlinux 0x2c2fcffc dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x2c27b5f5 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x2c28b21a scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c33669f dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c43200c gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2c4571d6 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x2c4ac02b rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x2c54462b virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x2c551b22 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x2c580813 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x2c5aec3e xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2c5c08d2 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c5da554 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c63c4c9 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6d06dc uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x2c6a4054 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2c6b321d blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2c7ce7cd irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x2c7a3b4b kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7facfb watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c870ce1 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL vmlinux 0x2c93c4af inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9e75a2 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x2c9f7d24 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x2cbf7ad2 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x2cd2bc2b regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2cd5f555 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x2ce2a7e4 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x2ca250aa i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x2cc10c0e regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x2ccc7857 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2cd60cd4 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x2cdf901f debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2ce42956 of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ceed485 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x2cefba9b tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x2cf21561 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ced14fe bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x2cf0e8eb fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d095a92 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d25dd22 dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d267231 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x2d28d4d6 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x2d1f065a hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d310868 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x2d3e754e fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x2d2e2755 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2d3d3321 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x2d3e4c8b samsung_sdi_battery_get_info EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5f6704 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x2d4755af fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x2d5d97b3 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d76a3ce fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0x2d7da5db of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x2d9c01a9 put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x2da3051b crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x2dabf214 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2db4f405 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x2d63b57f vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x2d918c34 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x2d91b9fb put_io_context EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dd01e3b __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x2dd0dfe7 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x2dd57d95 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x2dd8f098 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x2dd8b82e vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x2de96c3a dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x2df3c9bf acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x2df62f82 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2dfd0393 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2dea72d3 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2df6dd44 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2df92846 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e07e292 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e1943a2 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x2e2307c1 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e286755 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x2e2c00b3 of_regulator_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x2e2d65b4 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x2e329d44 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x2e32ddc1 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x2e449d73 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x2e50d70f led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x2e5e9b7a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2e35d6ac bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x2e5906e8 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e7db326 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x2e8746db crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x2e9ab7c3 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x2e9e1b94 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2e6fe829 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e7c541e fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x2e9a6e26 ata_ncq_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2eb4c7c4 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x2eb24d8a reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x2eb31505 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ecd684b pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x2ecce4c4 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2ed9205f cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x2eda8804 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x2edc9eab mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x2ee1d408 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x2ee77212 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2eefec26 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x2efa7302 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x2f04a16a i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x2f0868ae io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0x2f09344d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ee9621d handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ef19c98 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x2ef43c5e ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0df1eb regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2f10fcc6 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x2f14f308 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f25aeeb fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x2f202ca0 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f429271 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2f36137c devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f583cc1 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x2f613460 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6a09aa led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f6e2e21 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x2f738565 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2f8de317 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x2f9b4d9f __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x2fa3c51b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2f68ca05 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x2f771a94 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x2f7bf928 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x2f9c5e26 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x2f9fa0af i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x2fa9cd7d device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0x2faaf9e6 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x2faadbe3 edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb31c7e fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc95412 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x2fd873a8 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2fe4dc39 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x2ff7973f dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x2ffada06 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x2ffafade blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x3021b5ff skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x302421a6 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2fcd1b96 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x2fd6f35d fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x3004db19 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x30065535 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3008fe64 phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x30261684 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x3029658f mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x3029ce49 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x302e380a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3029d1f8 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x303b6dab crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x304a7364 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x30396e8d inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x30526e03 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x305fc966 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306c72ef sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x308a7d79 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x30901ad1 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x30b01a32 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x30bbdff7 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x30bfd01c pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x30c6177b sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x30c73c04 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x30c828c2 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x30685b81 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x30782be6 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x307b2879 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x3087a99d device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x3093e2b4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x30aa7f22 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x30b98d5c dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x30c0d16e pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x30c753c5 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x30d86acc shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x30de4a46 to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30ef99c6 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x30f9ec94 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x30ff1f0b crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x30ffe7d7 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x30ec4696 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x30ef553f nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310db7f4 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x31102f74 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31176ddd devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x31231f59 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31352428 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x313d44da __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x312cbd25 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x31304bb6 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x31325207 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x314a64ae blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0x3150608f nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x31670b3b fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x31780fd6 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x3179c937 vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0x317cbbf5 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x317fd2ba devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x314cc811 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x3154b388 pwmchip_add 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 0x318af138 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x318db7ae device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x318b03ed auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x318ec98f rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x319d0d38 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x31a0a01a devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x319320e5 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x319476dd crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b2127e dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x31b229de ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x31b38cab bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31b88740 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x31c68d00 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d55a24 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x31d8eee5 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x3205bcc3 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3215f54d public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x31fffd50 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x32110c24 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x32332100 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x32333241 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x32375b09 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x32385c09 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x322bd34d device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x3246f359 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x324ffadc ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x325cc02a irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x326103b2 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x325af767 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x32672f66 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32715af6 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x3275943a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x326ec914 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x327498d9 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x327965eb pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x327bb20f clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0x327c73e6 __SCK__tp_func_rwmmio_read EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x328cb44b trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x3291506c gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x329ae60a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x329597ae fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x32a2ed08 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x32a4dfa6 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x329e80de clk_hw_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32ab5359 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x32b3ff93 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x32b8d225 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bf2821 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x32c2f494 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x32bfafc3 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32d0217e mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x32d7ae08 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x32db7357 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x32c8e59f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x32d23edb __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x32dc091b pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x32e3cedd __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x32eb9c5c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e7ef29 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x32f7ca9b dummy_con EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3306ff30 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x330cd206 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x333d71d0 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x33412487 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x334babc6 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x33283eb2 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x332a4574 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x3337d6b2 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3338eb4f pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x33398cc0 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x334c8a10 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x337e0db4 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x33899a69 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x33a60538 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x33b2e3e6 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x33b957ea serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x33bfd8a2 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x33c90507 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x33cabd1c housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x33e22fff rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x33ea5753 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x33f9f1c5 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x33fd8517 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x34161e1d usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x336627be __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x337bf979 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3380284e fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x33818d50 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x3381d8f9 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3387f0b5 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x339ca2a3 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x33b56b9e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x33d5a2fd dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x33db3fe0 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x33ff881f tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0x34046234 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3407e385 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x341a1bb5 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x341fc1ff crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x3425e7b8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x3426785b component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x34298c0e usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x343f7531 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x343819b5 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x34453854 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x34486495 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x3445877f __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x3448b68c __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344e5a39 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345850f0 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x345e8b42 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x346752f7 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x34613721 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3466dd53 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x346f28fe iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3473ab4d vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x3477386a regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x348369f4 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x348e00b1 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x34903acb kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x34936253 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x34969cf8 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x349d4af0 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34b32e62 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x34afef84 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x34b54746 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x34c83318 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x34ca1e1b ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x34d5658e iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0x34d9b62e serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x34c3db4f iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x34cc837f fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x34cd664e devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x34d4982c device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34e5cd4d of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f4a5ef platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x34edacbf pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x34f4a9be rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x34f5e477 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x350ca621 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x350ceed8 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x350eb061 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x35273e20 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x3528f212 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x352afe03 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x35226b98 tegra_bpmp_transfer_atomic EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3545e348 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x354796f3 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x355af9fa pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x35502119 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x3557c75c __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355f4420 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x356e83a0 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x3565ad51 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x35673637 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3575ccf2 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x35804f94 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x3589ca35 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x358bbf12 mtk_mux_gate_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35932435 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b3818a devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35ca7ff9 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x35abad47 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x35acf1f5 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x35b82747 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x35c72c10 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x35c7f696 gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d66744 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x35dfea79 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x35e02054 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x35e51beb of_css -EXPORT_SYMBOL_GPL vmlinux 0x35eb47f8 mtk_clk_unregister_plls -EXPORT_SYMBOL_GPL vmlinux 0x35f24c64 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x35f66056 register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0x3622978f fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x35d72748 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x35d9d42f acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x35e5b5f5 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x35f53492 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x35f91195 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x35fc37f4 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x3604b7c6 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x361279f7 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x36143141 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3618e045 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3630c325 tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0x3635c7a2 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x36367d01 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x364e2cc1 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x365ff733 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x3660a215 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x36636aec iommu_device_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x367e5bc8 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3660d918 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x367aea4b devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x36831f50 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x3683ce17 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x36875d4d __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x36942ea7 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x369a4402 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a841c4 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x36a4118a netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x36a9aa82 kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36b1b9ed perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x36c07aed ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x36bfea31 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x36d8cc7a xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36e01d7c skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x36f06933 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x36f1c175 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x36f66470 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x37107bda perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x3711bc7a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x36e9f0e9 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x36f8d69d pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x36fd4526 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x37081df7 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x371082b8 strp_init EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x37189f04 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x371c6250 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x372d969e phy_create -EXPORT_SYMBOL_GPL vmlinux 0x372e19ac vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x373deefe ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x374e3fe0 mnt_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x37502e7a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x37247787 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x37258d22 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x372765df crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x372a81a5 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x372e5f9e tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x37333d40 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3743be56 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x37637e8a regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0x3774a9d8 balloon_page_alloc 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 0x377c0b1d device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x377d4f48 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x377f6cb7 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x3787146b pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x378d5f99 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x379695c3 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x3798420e acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x37a84887 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x37b78381 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37b870b2 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x37bee430 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x3792c910 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x3794980c virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3798c43d tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x379bbfd9 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x379c43c1 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x379cf556 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x379d5caa ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x37a11bf9 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x37a3a727 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x37a843f0 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x37bc890d __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37cc1e37 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x37e29e73 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x37fbcb9e mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x37c403c1 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x37d5c7da syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x37d7282a regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x37e9f1df devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x37f94e73 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x37f9a26a dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380dcbc5 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3807f065 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x38212288 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x38109077 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x381bbc38 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x381dbe71 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x381f0277 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x382354f8 kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x382fbb69 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3836aae0 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x3836d2da bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383b2ee5 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x383b988a devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3849657f crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386f85a8 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x3870882c mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x386e2f58 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x386f0270 rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x387d0f17 device_find_any_child -EXPORT_SYMBOL_GPL vmlinux 0x389a5842 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x387a88cf of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x388151f1 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x3888935b phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x3891eab0 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389e2552 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x389ed2d8 divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aad7d1 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x38aff0ac crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38ba72b8 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x38c0818d usb_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38c815ad da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x38d7341f ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x38db6665 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x38df3c9c kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x38d37be1 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f30d56 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x38f27037 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x38f8f94d fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0x3902f1c8 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x3906be86 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x390a845f gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x390de0ce aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x391637bb sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x38f8ec30 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x38ffc4fe genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x391abd39 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x393474d0 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x39419f69 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x394540b8 vp_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x39491efe kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x394a38c2 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x394aabfa rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x394adafc crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x394cf21b acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3952f802 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x39536d7c spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x39472876 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x394a0c56 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x3968b2c5 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x396cf8a5 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x3971dca4 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x39744161 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x397a6aed reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x397e69dd sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x398b5a31 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x39948a3f __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x399895ba battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x3986c26b devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x398c1bd3 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b814ad __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x39b148b1 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x39c09dfb fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x39c222b0 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c5b39e __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x39c6b116 driver_attach EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find -EXPORT_SYMBOL_GPL vmlinux 0x39cf92a1 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x39d7baed __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x39d8bc33 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x39d8c87c max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x39da3978 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x39cc9d82 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x39d449ec dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x39d4dc72 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x39d89638 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x39de63a6 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e17755 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x39e1c8eb pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x39e08c50 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x39f1a080 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a01df9f __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x3a06711e fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x3a084943 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3a0ef4df clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3a142783 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a263bc9 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x3a36b187 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3a2868fb disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x3a2c4488 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a39c6ba pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3a4cb401 crypto_alloc_sync_skcipher 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 0x3a573bd3 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x3a5ec137 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x3a62b5c6 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x3a72d227 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x3a74aff1 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x3a562b0b devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a777cae devm_regulator_bulk_get_enable -EXPORT_SYMBOL_GPL vmlinux 0x3a780031 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x3a7c0cc6 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x3a7e7b36 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a93c878 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x3a8ee614 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x3a8f372e sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3a968143 device_rename EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9cccd7 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x3ab394a3 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x3abbb7b4 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x3abbe829 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3aa15731 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ab093aa mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x3ab32a83 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3ab5fe58 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3af31805 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3ae5934d irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x3b08cb58 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x3b0904b9 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3b28c267 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3b3202de pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b3a7fde netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x3b3d387a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3aff5495 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x3b1b80f0 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x3b1d3e40 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b2ab62a meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b2e684f kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3b384611 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x3b389821 k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b53c87e acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b71e09a set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3b6774af ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3b75f821 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b7fd32a devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x3b84136c gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x3b948e1e input_class -EXPORT_SYMBOL_GPL vmlinux 0x3b951d66 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x3b9e6151 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x3b7a5f94 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x3b8691e1 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x3b981d18 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba77f0b ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3bad8994 iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x3bae2b8c pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3bbaf38c acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x3bbc10f1 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x3bc20450 mtk_mutex_get -EXPORT_SYMBOL_GPL vmlinux 0x3bcaec31 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3bced1dc usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x3bcf6954 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x3bc17756 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3bc57368 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3bcee6d6 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x3bd0002d devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x3bd77a50 usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bf0a626 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3bdc4447 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3bdcd867 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x3be1760c screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x3be35d42 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x3bf109c1 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c084805 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x3c09936c devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3c0ad5bf gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x3bf24b8f wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x3c0581a9 pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c0f97f2 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c136aa9 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c31d140 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x3c2d7e2f __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x3c364b7d i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x3c3b8a3d nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c42b2de mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3c430ecf put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c503ccc __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x3c444d89 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3c4b2346 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c6574f3 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x3c66b842 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x3c66ec19 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c616681 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x3c679e1b iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c77672f regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6d52a7 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x3c6d87ea bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x3c72bc60 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x3c750577 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3c781db9 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x3c7b7c2e simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c8c4046 iov_iter_get_pages_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3ca6e54f devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3cb0a1e5 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x3cbd0e78 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cbfe6b6 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x3cc86b4b power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x3c8f92ed lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x3c9420ca perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c9c3596 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x3ca3bf23 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x3ca59480 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3cc7ad9b of_genpd_del_provider 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 0x3cf08240 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x3cfc824e iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x3cfe854b devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x3cd3e28d pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x3cef8805 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x3cf57167 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3d1c0e17 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3d105c22 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x3d1a28a0 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x3d24c931 rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3b6e66 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d7b1c39 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3d665c62 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x3d6b5bc5 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8ad026 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x3d88e4d9 dpcon_set_notification EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d96865b pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9fb239 led_put +EXPORT_SYMBOL_GPL vmlinux 0x3da5ffcb pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x3da8aa69 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daeebe5 psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x3dc32080 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x3dc4299e ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x3dcc0c48 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x3dd7412a find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x3de18544 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x3daf3b84 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df09dfd blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x3df5f6f0 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3dfab231 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x3e02c0d6 acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e22d3bb powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3e23e9af sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x3e299139 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x3e2c0f03 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x3e323f06 device_del -EXPORT_SYMBOL_GPL vmlinux 0x3e34ba6c nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x3e0d8690 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x3e235c08 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3e394ed7 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e43881f gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x3e64c451 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3e6982ee pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3e4d7297 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x3e705308 clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e71892b edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3e761604 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0x3e7b4481 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3e7927db to_software_node EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e9e7ccf pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ec782df mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x3ec58e77 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3ed5bf37 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3ed69dc8 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3ed7d09a usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3edce7ef dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x3ee46f79 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x3ee9a48a inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3eee2710 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef06b4b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3f0118fb __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x3f049829 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x3f0aec3e phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x3f1b44da mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f1d0668 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x3f38002a inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3f313be6 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x3f37deef da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x3f3a174a phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL vmlinux 0x3f3b576d tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x3f3d3018 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f3cb3d1 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4f2bde pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3f63dd92 imx_get_clk_hw_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3f6f1944 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x3f712847 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x3f73d1f8 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x3f794666 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f514f19 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x3f58862f hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x3f61c7b3 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x3f6ddda0 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f80eb28 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x3f83446e pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ea54e mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x3fa18052 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x3fae1ad3 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb3c4a6 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x3fc7a051 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x3fc8cf80 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x3fdef1e5 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x3fb28806 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x3fc27ee6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fc372f8 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x3fcd7833 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x3fd4407b iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x3fda1bf5 i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe949f6 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4000da18 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x40111e22 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x401c6bd1 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x4022c079 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x40119631 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x40147f6e class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x40229f3e __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x40289b0c ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4028fe1e pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x403d6346 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4041b874 usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x4043c5c9 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x405411a9 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x404aa51a __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x405a69b4 dma_can_mmap 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 0x40721cfb gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408f3cc2 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x407b35bf usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x40903976 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4098d070 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a554ec rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0x40b7ee70 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x40d05d51 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x40e75076 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x40ee13a7 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x40b13a30 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x40b1b8fe dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x40ba239a i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x40c145f8 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x40d7530b rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x40e14ed4 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x40e5da98 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f6b862 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x40f6b132 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40ffa44d usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x410c3c83 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x411d9afa ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x411e9da8 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x41269ba7 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41339a60 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x413aa623 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x413b2aca platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x4140b07f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x41322138 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x413b44f3 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x41452a34 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414dc41b task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x41740bc6 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4164b597 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4168153a spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x416eca5a gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4170e84f __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x41732bb4 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x41760f30 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x41801193 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418509c5 mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418de9a6 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x4197f9ee nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x41896206 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x4199baf6 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a6ec0f virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x41ae599d disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x41b32055 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ba8721 dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c35c6c gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x41c8711b device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x41cb5280 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x41cd71bf folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0x41cfd711 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x41da8b27 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x41df3118 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x41c0e446 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x41de446e __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x41e6728e ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x41e6c2bc pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41fef1b0 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x41f0b57f ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420a1630 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x420a6486 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x420d7abd rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4223b577 mtk_clk_gate_ops_setclr -EXPORT_SYMBOL_GPL vmlinux 0x422cfdb8 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x423bb60e power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x425057a9 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x425270ce cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x4257b59d sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x425fb8f0 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x4260ae60 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4262ed01 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x421ac0d0 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x422ada84 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x423ee323 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x424ebf07 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x425006ff devm_regulator_bulk_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42647213 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x426e8035 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x4278d56a phylink_expects_phy EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4293827c invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x429a9250 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x42831120 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x42864d36 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x4288f302 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x429688b1 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x429de901 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x42a43fcd hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x42b0cfb7 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x42a43a5b dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42d90efb security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x42e07351 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x42e28d19 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x42f68d23 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0x42f69565 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x42dd7246 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x42df8155 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x42e87128 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42f7af7d of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x430bcfdc nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x42f9819d acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x42fbacec sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x430153da devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x430319e5 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x43094693 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x430a716e pstore_register EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4317663a udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x4322ea07 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x4338823f iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x433f9a41 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x435349c7 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x43578968 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x43685e67 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x434ce8f1 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x43623d38 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x4367e169 irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4388a6d3 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x439ab78c vcap_rule_iter -EXPORT_SYMBOL_GPL vmlinux 0x43a7cc0c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x439c7b30 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x43a8b3c1 i2c_dw_acpi_configure EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b1c24b __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x43b5ced9 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x43bccadc kvm_destroy_vcpus -EXPORT_SYMBOL_GPL vmlinux 0x43c081a3 ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43ea9d0a fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x43cade32 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x43caed73 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x43cbf046 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x43f7f09e mbox_controller_register 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 0x44065eb7 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44075f2d gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x440f0dcd mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x440c0be5 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x440cacf4 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x441b696f dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x441ead68 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass -EXPORT_SYMBOL_GPL vmlinux 0x442575b5 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x4428880e rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44376a94 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4443103f blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x44487212 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x444ee493 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4439bd87 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x444ec428 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x445bef2e mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x446b8340 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x44717ff1 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x447a516d wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x445ba8ad aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x445c220c skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x44657a4a finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x44710c0f icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x4471a5af fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x44720141 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x447932d5 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x447cbae5 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x447d9a46 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x44807014 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x448207bb __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448901fd sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x449568cd devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44976fa2 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44aeb7be dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c52932 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x44c59f20 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d41133 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x44cfbe98 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x44d6b93d gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e84674 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x45031f98 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4502a341 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x4505f15f usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4509547e wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x450ec5d1 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4520939f usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x451cd6c5 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x452044f2 mtk_clk_gate_ops_no_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45320b03 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x454f8df6 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x45505a7e mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x4533b440 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x45376e07 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x45388888 ti_sci_inta_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455e2647 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x455d8402 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x455dd8dc ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x456b5384 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x4574f8b2 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x456b4a82 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x458f5e09 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x45990a15 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x458dccd7 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45a398e6 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x45cd9ede class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x45ddddf2 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x45ddde38 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x45a3dc43 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x45a5381b serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x45ac8756 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x45cc8cd9 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x45e87dfb ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x45f758fa register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x45fa43fd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x45fe49ae vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x460510c6 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0x4611ddc8 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x46141c85 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x46415f21 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x464a4fa3 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x4651eeb1 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x465e5c11 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4661525b crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x46647632 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x46704959 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x467bfb2c devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x468399f9 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x4683d404 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46868844 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x462fc5cc sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x46343e4f rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x46596a6c __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x46644f81 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x4673ecad vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x467b722b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x46851a68 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46965adc l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4692a681 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x46a13369 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46ab8c13 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x46addbc7 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x46ba17ba usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x46bf5b4f vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x46dac34f l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x46e090a7 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x46bcd21f devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x46d743ac netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap -EXPORT_SYMBOL_GPL vmlinux 0x46ef4b74 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x46e70179 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x46ed4fa8 cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x46fc2462 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x470abd80 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x47112d89 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x471bb1aa dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x46f6e0c2 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x46f7921e devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x46f93e6e mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x47037945 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x47109778 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x471521a9 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x4719b3c9 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x471b6f32 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4727b3e8 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x4759d3f1 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x475cd8b7 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x47609558 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x4734374f switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x47348149 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x474bc3b3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x47541b91 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4758881b pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4775f47c regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x477b0025 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x477f6bc2 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x47648bab devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x476ff4a5 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x47706467 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x47743efd usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x47811c86 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x47912ebf __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479c9ce5 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a310d2 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x47aa0162 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x47a6cc76 sync_blockdev_nowait EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47bd31d7 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x47b3b167 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x47b724ff irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x47b942af nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47c3a995 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x47d09742 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47db75fa pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x47d30d8f altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x47dcffd4 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47ed8d38 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x47e19cfe acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47f83148 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x47fa0b4e firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4811d107 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4806739f cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481984dc pci_iov_vf_id -EXPORT_SYMBOL_GPL vmlinux 0x481efbc7 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x481df0d4 skb_consume_udp 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 0x482de11c dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x483d5576 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x484863d4 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x484a44e5 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x484ebe3c scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x4863e874 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x48614191 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4868747e sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4871bc42 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x48766de1 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x489436bc watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x489e25f3 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x486e0db2 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x48730f60 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x487fd55e fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x48852627 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x488d387a device_unregister EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48b70a69 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48ca9385 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x48f70004 acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x48f76756 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x48cd3121 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x48f09cb2 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x48f482ef device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x48f68182 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x48fba424 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48fc1a9f tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x4924016e acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x490562b8 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x49067b58 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x49068261 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x4911f36b iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x491c8271 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4938929b fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x4939b7cd xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493acfc8 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x4945bf0a pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x494a0f03 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x496055b5 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49644d73 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x49791622 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x49848259 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x498e9b54 fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x498f6663 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x49723ac5 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x497c3a9a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x498e679b mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49999d89 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0x49b39458 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x49b9e171 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x4998bd99 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49998adb lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x499ae6d3 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x49a9c090 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49daa036 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x49e80fb8 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x49e87b16 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eb633e of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x49f7c8f3 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x49f91020 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x49fdc30c pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x4a011b32 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x4a05e7b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x4a07c691 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x4a09ed7e class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x4a163510 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x4a0d4eeb nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a194166 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x4a1ea929 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x4a200a61 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x4a2577a9 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x4a28a966 vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x4a3c345a inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x4a3f5835 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x4a3f7485 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4a24e8d5 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x4a3a554f dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4d5be8 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x4a51d514 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x4a57afbb usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x4a67f727 ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x4a6c0e9b regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x4a9441ed ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x4a9ed289 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x4aa76b7e pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x4aac07fd crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x4abaec3a __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x4abf3bdd tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x4ac0be8b irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x4ac76374 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x4acb2cbc uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x4afb3a6d blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x4b1d0846 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x4b2259ab ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x4b45e99e power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4b4ce860 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x4b51d077 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x4a42f749 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x4a4edfd3 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4a640a7f subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4a7113ba of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4a811d21 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4a87be9b md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x4a918624 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x4a996684 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4aa5fa68 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x4aa83621 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4abb7360 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4abdf333 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x4af54f99 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4b04927c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b081bbb pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x4b163318 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x4b33a05e usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4b38d1ef vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x4b531112 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b5b3ad7 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4b5d533f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x4b84c86b crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x4b8cf862 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b97931d bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x4ba8ecdf devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x4badfa45 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x4bb58844 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4b939ed9 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4ba25425 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4baf70a8 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x4baf82ec phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x4bb7d679 acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd52149 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bd703ee dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0x4be64845 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x4bec28b5 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x4bf1a97c of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x4bf44edd platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x4bf4dad4 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c0dc948 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x4bff89a1 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x4c11dff2 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x4c146816 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x4c207846 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c35a6c8 xenbus_setup_ring -EXPORT_SYMBOL_GPL vmlinux 0x4c462a2a regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x4c463dc4 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x4c48a5df wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x4c4d021c ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x4c4fb373 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4c519b5b apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x4c540a02 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4c36a200 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x4c409447 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x4c429c58 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c622f47 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4c6dfa40 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x4c72db70 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x4c797313 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4c6260bb pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x4c6a843b apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4c737c17 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x4c85de4b __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c9b0b55 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x4c9f38ce ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x4c931ccb kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4ca408b0 of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4cad5e99 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4cb0c221 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x4caffdbf arm64_mm_context_get EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb558ed regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4cb30284 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc8b717 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x4cc9e938 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x4cd837b1 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x4ceab956 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4cfa870e __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x4cfbeadf clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x4cbf11f6 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x4cc07aeb irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4cd1fcb3 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x4ce76c8d irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x4cfea3e8 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d03e677 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x4d080177 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x4d0904b1 pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4d10f718 thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0x4d1ad218 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x4d1b5158 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x4d220513 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x4d353342 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x4d26648f k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x4d2b4492 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d433fda crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x4d599d0c of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x4d5d4460 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x4d611e57 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x4d6a36df receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x4d435acf fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d444ad1 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x4d516457 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d51c1f4 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x4d521be5 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x4d5c2e27 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4d60e109 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4d6a67d5 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d74bfe4 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x4d7ffe5a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x4d8192f6 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d920fc7 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x4d9419c6 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x4d934c30 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d9dfa59 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x4da4aceb power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x4d9e185f net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dd35fde iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4dbe7052 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4dc07379 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4dc83f0e usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x4dd62752 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x4dd76b27 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4dda3f4f i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de8c87e usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x4df4c27c dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4de44b0a hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e073927 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x4e114d3d mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x4e15d00e fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x4e0525b4 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x4e0ac414 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4e116b9e ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1c1602 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x4e1f5676 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4e1c2aeb edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x4e25c167 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x4e28f128 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x4e2d299f crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq -EXPORT_SYMBOL_GPL vmlinux 0x4e3464a5 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x4e3e3f71 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e400ab5 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4e48da22 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x4e5c9ca4 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x4e5fc9c4 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4e58e701 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e70c6d7 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x4e6a96f0 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4e72c339 of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e7f103c devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x4e886371 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x4e8c2c1f device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x4e905bb2 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x4ea27b59 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x4e7a75a3 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4e89a61b sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x4e8f9838 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4e91f136 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x4e9d4e34 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4eac0d46 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eb3d459 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x4eba4cf1 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x4ecbfb18 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4eb57f02 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x4ebaeb8f sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ede85da mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0x4edee942 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x4ee03f81 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4eeb24c9 of_pse_control_get EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efc6057 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f193837 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x4f21bb8d iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2dc428 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x4f380771 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x4f3c7b9d trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x4f5941c2 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f2e5a76 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x4f395cee xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x4f426a6b crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4f4753b5 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x4f4828d8 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4f614d21 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x4f684550 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7c45e7 mtk_mux_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f956c0c devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x4f95c716 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f734ed9 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x4f79826d inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4f7abe5e __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x4f8f8700 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x4f94af89 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fa7fd13 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4fb0b480 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x4fa79394 usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb79eea rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x4fb7fb28 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x4fcb7a9b virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x4fd31916 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x4fc1746d mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x4fc55c85 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4fdabdb0 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe144eb phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x4fdfdb0b tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffacc8b kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x500077f4 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fe560c9 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x4ff723e9 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x4ffecca0 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5010f2bd bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x5019a30d cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5023463b tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x502524cb wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x502442c7 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502fd5c8 gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x50362300 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x50511e86 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0x50576cfd vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5057d2b0 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x504dccfe blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5050004b tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x50578a9a msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x505bed87 tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5063c533 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x50810db4 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x50875d3d phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x5069aa76 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5069f447 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x5088a0e4 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5089ac77 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50aa5f84 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x50b3b028 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x50b621cb crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x50beed89 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x50c94ce1 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x50d2eadc __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x50dc8135 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x50a129f4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x50a1a438 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x50a8e99e sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x50b62736 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x50ba70d5 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x50c3e5bf ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x50c44b6f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x50c47b62 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x50c9af2a perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x50d93b74 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x50db8b81 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50dd8f1b virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50dfa1b6 devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f11e06 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5111c228 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x5119a222 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x5120b0fd dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x512aa814 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x512b0083 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x513080f7 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x5137e319 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x5109ad64 mtk_clk_register_gates_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x510fda19 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5110b91f imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x51177879 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5118bb83 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x51234c2d icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51511419 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x51422b51 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x51561b1c regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515fba9b pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x517bdedb tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x516ea1f8 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x517a2820 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518a4899 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x518d7435 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x51963b60 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x518ddad9 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x518f250b tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x51957d8f pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x519826c3 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a7d84d k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x51a426a6 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x51a63f35 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51a8d316 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51c9211d fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x51cba197 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x51cd8b7c pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x51b93031 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x51b992bd __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x51ca242f pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d22200 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0x51d2b4cc rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x51d5c320 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x51ef981d genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x51f16d52 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x51f3c276 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x51d2985e nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x51d666fa spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x51e2b930 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x51ed582e generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x51f1f6a1 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x51fbb9b9 iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x5200796a acpi_fetch_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0x5202d7b2 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x5220e6e3 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x52221bb8 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x51ffd365 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x520c26a8 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x520f7d81 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x52182531 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x521dacf2 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x52204689 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5229a39a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x522df3f7 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x52441a34 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x52448344 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x52448504 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x525ffa35 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x5263ee9d clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x52483599 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x524fcb15 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x526cc962 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x528052fc attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x52824884 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x52828563 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x52931a59 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x52949cf9 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x5295ffce of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x5297eec0 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x52a70ef2 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x526fdd5c genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x5293adc2 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x52a9c23c pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b99e5e inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cc089a device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x52c8d82c pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52ce88e3 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x52d13c90 xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d63b78 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x52dbeb01 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x52e4bdc2 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x52e96188 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x52ecd061 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x52dbe49d ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x5300e1f5 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53219eb2 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x53296453 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x532b4423 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x530f6797 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x53109b4c regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5310bc8d __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x531832d8 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x5326b3c0 tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0x532b788c srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533c1868 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x534ae70b devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x534d3e39 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5353a493 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x536f3a94 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x535ff643 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x536edfcb meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5372d4ea dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x53836d85 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x5384c087 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x53802782 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x5386439e to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391797a pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x53a6e77f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x53975d1e pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x53a05480 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x53a882ee dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x53af9afa ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x53b97d34 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53c9b975 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x53d344e0 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53c909c6 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x53ce67b0 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x53cfc397 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e17219 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x53e643dc blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x53edda28 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x53f4ee48 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x53f860b4 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x54130b19 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x541b3c1e ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x53e8bcf7 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x53fe7bd0 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x53ff5e80 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x54009776 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x54039bf4 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x541b4b40 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541bd6d7 crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5423c1d1 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x542f7d17 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x543ad29f usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x5443ff03 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x544aeff7 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x545db595 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x545f15e1 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x542ddb3c irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x5437630e of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x54421f5a mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x54589d51 pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5486d70a pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x547aaefc ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x54813ac6 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549bb1f6 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54ab2016 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x54c32626 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x54c5b449 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x54d4c2cf gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x54efbf21 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x54f6f681 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x54f859e3 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x54f88877 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x54f8a881 md_start -EXPORT_SYMBOL_GPL vmlinux 0x5506c2ef ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x54df8f84 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x54e815e5 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5513de9e edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x55173eab wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x552cfd5f fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x552e39c2 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x55294d80 clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553f8331 dm_put EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5541797f xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x55417f6d crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x55605078 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x5563cf04 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x556b1f25 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x55460802 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x555aff19 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x5560a623 of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55782e3a perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557b9fea device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x558e31ff device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x5595c121 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x559a2ff5 device_register -EXPORT_SYMBOL_GPL vmlinux 0x559d03ce dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x55a41fe0 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x55b1bf67 netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0x55b26a92 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x55c1964c virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x55837b8d fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x5594eb24 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x55964b36 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x55a51491 irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c86512 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55d06fd7 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x55d606b8 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x55d8bf57 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x55da5717 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x55dba3c1 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x55ebf81a devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x55dc2241 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x55ddb4d7 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x55ec2428 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55fd76b4 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x55fd949e switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5609c826 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x560c2d90 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56277c1e __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x562b017f samsung_sdi_battery_get_info -EXPORT_SYMBOL_GPL vmlinux 0x562f57dc sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56327597 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x56329e44 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5633d869 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x56329dc2 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x5634a514 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x5636b063 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x563fbb63 i2c_client_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x565716e8 dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x5657c478 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x56593cec ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x5664604c rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x56750213 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x569146b3 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x56963330 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x56a01cf1 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x56a6db84 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x56a73db3 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x56afa993 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x565ae1c2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x565e096b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x56a862ea mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x56ae5ffb __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x56b17973 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x56b26a0a __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x56dda59d md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x56b6933d platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x56bcdb17 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x56d11143 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x56d805cc pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f6d2a3 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x56f5bf81 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5706718d nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x5711320e pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x57269f8f pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x572ee4ac devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x574082cd of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x5740a630 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x57410545 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x574138dd device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x57007111 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5719c35b usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x5719deed devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5726fe0f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x572c8a77 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x5734da53 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x573655f0 of_pwm_single_xlate EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x576a3eb4 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x5752eed8 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x576287f5 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x5770ea44 clk_regmap_gate_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL vmlinux 0x577798fe k3_udma_glue_request_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x577b7d22 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x5788f96b xenbus_free_evtchn EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5791eedc gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x5797ef8d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x5797f1e8 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x579df9b9 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b6b03e md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x57c2b2b3 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x57c8a21e dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x57c941de icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x57cdcb60 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x57d2b441 mtk_clk_gate_ops_no_setclr EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d6792f __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57e68b93 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x57ed9708 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fa37a4 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5808ecd2 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x5823dc42 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x5824d5e7 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x57fa6326 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x57fd517d shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x58131825 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x58145f16 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x582215ea crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0x582f82a9 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x5829f55f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x582ace1e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x582c0204 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x582da5b8 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583f5824 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x583f97a6 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x58434069 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5845f5fa ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x5851312c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x58559e6f extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x58628669 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x58697791 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x586a4bab dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5833a5cd power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x584d9a51 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x5850c236 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5872077a phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x586ed868 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587d5713 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x589992d7 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x58a06c9f da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x58a104fa ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x58a24dc4 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x58a78e97 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x58aa8cb9 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x58af5998 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x587a2502 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x588dea5f sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x58a5fa3c sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x58ae60e9 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x58aefa70 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x58b04ba5 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x58b2d2aa of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x58c05ad5 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x58c2f779 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x58c41fac pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e352de pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x58eee723 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x58f15eec spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x58f76c4d usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x58fa50c0 __traceiter_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x58fd31b3 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x5905564c regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x590eed7a crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x59205c9a rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x592273e2 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x5927a46b usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x592c5577 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x59506a5d dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x59563e1c blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x5936870f class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x594efa1b firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x5959909e blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x595b8884 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x5961a131 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x59632aee pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x597cd356 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x5968ae8d stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x597de184 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598f4fa5 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x59ad2af3 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x59ad875c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x598bd295 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x59a9280f wm8400_reset_codec_reg_cache 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 0x59c6f15b xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x59db9622 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x59cf674a blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x59d2f3d9 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x59da2e79 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x59db0b20 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x59e474f7 subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59e7b5fb devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x59e8b77d akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x59e81b83 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x59ecdeec edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str -EXPORT_SYMBOL_GPL vmlinux 0x59eef7a0 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x59f16162 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a03d8d0 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5a071517 stmpe_set_bits 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 0x5a2101b3 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a22eb2c i2c_acpi_waive_d0_probe -EXPORT_SYMBOL_GPL vmlinux 0x5a3bd277 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5a447be0 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x5a49da9e xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x5a41d869 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5a44fa5e set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a45b917 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5378e8 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x5a5a02dd vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x5a6616a8 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x5a523e0d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5a53bfeb balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6d16e1 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5a6de829 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5a70881e pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a78c6dc iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8d1e73 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x5a8fedb2 vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0x5a9a8777 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5aa09066 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x5a83d5d0 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5a9c4262 device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aa7bc42 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab41317 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x5ae03df4 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5aec98f0 vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x5af898f7 regmap_field_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x5b00292e pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5b0c5826 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x5b0f6769 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x5b1aa8c0 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x5ac0c902 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x5ac57ff5 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5acb48e7 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x5accc668 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5ade6293 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5aef13d9 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x5aef1a93 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x5af05c48 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5b03acec ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5b1aee96 sprd_pinctrl_core_probe EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2967a2 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x5b5aa624 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x5b635064 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b3e5436 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x5b4792c7 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x5b4f3402 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x5b5bcda8 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6d4e87 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x5b7381d4 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x5b8688df ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x5b8b402b tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x5b9a189d ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x5b9d1dfb dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x5ba53a3e driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ba99739 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b6ebbc6 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b959967 ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bad3f2d cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x5bafce74 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x5bb76755 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x5babb65a rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x5bad4583 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x5bb20e81 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bc96f91 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5bcb73a2 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd0c4fe skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be78883 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5c0238fe of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5c044ee3 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str -EXPORT_SYMBOL_GPL vmlinux 0x5c0d5774 mtk_pinconf_adv_drive_set EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c1c1f88 iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0x5c24aa11 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x5c275c80 __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0x5c2d9eaa tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x5c2e0eb3 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x5c1d87aa __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x5c3b39fc nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x5c3b5ef1 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5c383131 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c3d936d sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x5c47020f of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0x5c47aefa of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x5c533980 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x5c541a7b of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5c5949c7 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x5c3bfffd of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5c44ac13 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5a39a0 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x5c5e32cd ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x5c626a86 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5c6800ed regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x5c6adf05 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x5c6b98e4 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x5c6310dc crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x5c7351dd skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x5c7abd20 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8a917a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x5ca59713 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x5ca76ba9 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x5c82f2ed tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x5c84fb3e shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x5c8e4272 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x5c99cccc acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x5c9ab264 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5ca02918 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb45150 mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x5cb465c6 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x5cba0b14 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x5cbb10bb ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x5cc57fd2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5cc25a5f vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5cc28d0a key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cd1f69b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x5cd6154f crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x5cdb9098 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5cea5cfd uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x5ceb1d6d dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ced79e0 fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d08ef67 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x5d0e84c3 msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x5d0f590b pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5d0ee575 irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d1b7214 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x5d2b0d55 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2c2797 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x5d41cfa1 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x5d5814ff switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0x5d67d25b generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x5d69a8d1 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x5d301602 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x5d342f63 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x5d363a62 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x5d3b51c2 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x5d3ebd75 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x5d55d12e scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x5d6b3206 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5d733c55 clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d86ed72 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x5d9c7c8e ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da41fbf ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcf3c2 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x5dc39d07 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x5dc82b0d gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5dd40bfa mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dc67cc6 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x5dd1fe92 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x5ddc5159 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x5de06d63 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5de26763 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5de5f275 ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5df39568 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x5e004da1 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x5def7ddd regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5df04171 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e282008 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5e1ab75c blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5e1b2135 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x5e236529 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x5e41fe6e sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5e50beb2 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e6718a7 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x5e6d731a genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x5e73e3ec crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x5e53b8f3 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x5e5d9b4d vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e78544b fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e79f4f6 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5e82ffda percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x5e83c014 tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9c0475 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x5e97955e ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x5e9c2757 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5e9f8fd6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x5ea092bf kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5eaa626b __regmap_init 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 0x5ebc8609 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ecf0ade usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x5eda7fa7 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5edd6ed6 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee8153e ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x5eed0f55 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x5eeda8f1 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x5ef35b64 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x5f022184 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x5f1ff8b8 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x5eef5201 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x5ef8cae4 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f0dae8a devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5f167c8b perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f318c80 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x5f4ca985 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x5f54f693 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x5f55c64c thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x5f5ab22f clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5f382ec3 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x5f3b6c37 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f3c7f32 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x5f496693 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x5f523a73 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5f5242bd inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x5f545d09 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f56fa2e trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f85660e usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5f8cdeae fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5f782c98 iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x5f8d67c2 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x5f932416 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x5fa2b8fe pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb8024e devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fcce390 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x5fce001f mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x5fc04445 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x5fc9afc6 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x5fd81f8b ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5fd8ac72 xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe6d4b1 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5fe97cb7 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x5fe9e823 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5ffda8a2 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x60005e83 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x5fe1fe32 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x600273d4 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600c55e1 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6016c150 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6016e4b6 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x601f4613 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x60259126 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x602aeebb blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x603c097d spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x600eb5dc acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x60250ab0 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x60415246 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x603f0d7c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x6043b08f scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x6044b8ab scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60474c2e crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x604ec99b bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x6053e307 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x605ebf5b platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x605ed9bc fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x60611916 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606d430c pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x607100e1 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x607316fe ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x607afde7 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60827c18 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x608a1f2f sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x608269eb gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x608bc005 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60947ae2 dax_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x6095d5d8 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x60985e4b da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x609da517 kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60abbc2e adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60bf7801 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x60cc7f02 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x60cf10e7 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x60bcea58 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x60e0ba42 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x60e43b0c devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f56e9a serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x60f736f5 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60f15b2c mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x60f5e083 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x6109545e fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x6103a579 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6112a600 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x61228180 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x611d29bf ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612a2b4b gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x612b84da dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612dbfef gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x6132f335 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x613f15c4 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x61310ff6 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x613e716a fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6156e76e task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x616616c1 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x6169fa04 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x616acd16 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x615cef58 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x616fcec3 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x61756ba8 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x617ba2b9 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x617cb02c dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x6180ff9a power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618873e9 do_xdp_generic 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 0x619d99e6 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x619e6247 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x61a2907b gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x61b2346a fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x61bcfd76 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x61a0f9a1 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x61a37865 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x61a91295 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x61a96a36 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x61b32fad xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x61b6b205 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x61b7cd02 fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61bd25e4 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c4ccd1 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0x61c65257 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x61c92a45 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x61c9cc4a phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x61d0dff1 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x61d8d120 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x61ea9c2d ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x61ebf7e1 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x61d2afb0 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x61dd5620 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x61ee0a94 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x61ef36bb pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fbaa08 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x6203ffdd dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x6204bbf0 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x61fa8ae5 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0x620a076c edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x6211523f gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x621491c7 meson_axg_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622cc1fb nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62395a6f usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x62402093 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x62384e8f sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x62388fa2 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624821e2 pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x62508257 __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x625999f8 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x62aa5ff2 mtk_mux_gate_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x62b5f982 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x62602735 component_add +EXPORT_SYMBOL_GPL vmlinux 0x62655a49 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x626be23d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x627cc188 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x627ebb77 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x62986ae1 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x629ad7c7 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x629f162b pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x62abac9e gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bf54e5 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x62c07cb4 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x62c3a8e3 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x62cd29ca dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x62ef19b0 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x62fcfeef sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x62c4481c hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62e123ea phy_put +EXPORT_SYMBOL_GPL vmlinux 0x62e199de vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x62e5b0ed tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x63004293 dbs_update EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63226c6e sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x632d5054 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x634b8fdc iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x63246935 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6337e167 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x6346920b __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x635c7f86 filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0x635f88b8 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x63641c31 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x63831076 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x6389d87b fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x63582578 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x635bb2ff bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x6389310f spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63a1f3ac regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x63a270b1 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x63a839bf serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x6394e27d fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x63971a55 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x63a0f58a pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x63b1c5d3 xenbus_map_ring_valloc EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c2753c fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x63c9489a trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x63d550ab skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x63c38d3e shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x63e708b8 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f7cd08 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x64005703 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x64123a1d clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x6414c31c extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x641cffe8 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x63ed8ec4 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x63f4bf3a subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x63ff704b __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x640aff89 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x641c01aa bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x642057b4 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x64250001 split_page EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x6432dd6d pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x6442c34b iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x645e8105 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x643fca91 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x64442126 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x644a2ae4 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x644a9d14 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x645653c4 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6457b431 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x6462feda ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x647608d0 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x6481c38e pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x647bcabc power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x64866a44 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x648c7d31 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x64890d4e serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x6499911c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x649f5cc3 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x6496c6e9 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x649b0be3 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x64a1a5ce phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL vmlinux 0x64a29cf8 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a9d888 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x64cae109 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64a6731f virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x64bba53a mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x64d393ac ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x64d8b735 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x64dcebf3 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64ec7947 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x64edfd16 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x64e9960e blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x64ec62f4 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x64f04b41 arm64_mm_context_put EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f562b2 component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6514c11a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x6516f207 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6519f729 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x652317c7 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x6525bb03 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x652a7fa4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6523ec16 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x652ef3fb edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65413958 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6537706e blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x654f1dfe of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6551349a pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x65527634 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x6565251c pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x65664082 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x65898aeb __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x6558c85a rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x655f5943 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x657b04f5 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x657b99cd devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x65a6b86a mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x65a88a3b of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x65ac7e24 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65bd0676 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x65b195ff devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x65c5de23 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0x65c66b8f unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cd7e01 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65f7bf48 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x65e947d0 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x65ede341 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x65fbe557 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x6612da84 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x66158cdc dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x66115f9f ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x6615814a devm_irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6620579d platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x662a19fa __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x6631f54b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x66183cae __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x6620aa80 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66237f1d ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x662d346c __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6644bcd1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x664742dc devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x6648db98 __SCK__tp_func_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0x664b77b6 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x66514f32 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x6654d4e9 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x6655dd2c exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666a3f98 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x66715e0f set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x66797619 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x665f5d5b led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669153d0 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x6698163b hv_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x66990840 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x6689f23f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x668d1fdf of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x6690d2b9 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x66938f68 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x669b4897 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x66a1a196 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66a250e8 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x66a690b3 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x66a8dab4 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bc8516 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x66c2a511 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x66bab456 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x66cdb3f1 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x66d23404 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x66d7e5d8 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x66cbe026 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x66cf353f tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x66d15c1c rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x66d7fb0b __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66db7b07 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x66e5c4d9 xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL vmlinux 0x6701eca6 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x6708cf04 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x66ec6c10 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x66fa2375 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x67114859 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x671237b6 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x671508f1 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673e8c03 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6741ea64 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67687c65 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x6746c4b7 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6755bca3 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x675b43c1 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x675f714d rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x676fb38c gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x6771e921 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x6778dfb1 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0x67813fa1 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x67861f71 mtk_clk_register_muxes -EXPORT_SYMBOL_GPL vmlinux 0x67952bca cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x678a2fa0 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x6795bf4d edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x679b528e devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x67b827b5 vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x67b9b5bd pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x67c17263 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6796f4c4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x67a8a6a2 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x67b90daf ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x67c01b65 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x67c3beea regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67c50c6a pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67d647cc ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x67ca4cee devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x67d551e5 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67de4d64 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x68012e92 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x681ea93f xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x68267dbc gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x682bf892 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x67dcae87 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x67e2caeb sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x67e7993b __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x67e9b27a devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x67f036bd ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x68005db3 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x6802566b ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x680d6c49 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x680e2a21 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x6814af2c blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68362963 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x683da9b9 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x6845a7e6 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6842382d scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x684ea889 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x685d316b gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x685f6f33 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x6861ec54 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x687b0c10 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x6880d115 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x688d95a2 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x6890848a regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x68500142 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x685c6d03 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x68699c3f spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x68733d89 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x6887d3c6 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x689011b0 nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689e935f acpi_dev_get_next_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0x68ac5208 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x68b299dc tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x68b9a30e clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x68bdd53f sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x68bde11e __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x68c24a7b devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x68c4a976 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x68cb8e5e crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x68e98060 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x68eb9498 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x68f3d7b2 vcap_addr_keysets -EXPORT_SYMBOL_GPL vmlinux 0x690556c7 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x68956101 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x689c882d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x68c18275 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x68cf05fe device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x68d2917e handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x68ec8a8b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x68f5498b sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x68f7a2f1 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x68f948fa mtk_mux_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6915a08d pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x691dc0eb wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x691f52a8 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6920aca6 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x6932af07 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x69380f65 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x693ecfd6 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6959fc02 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x691de7d3 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x691fb18a thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x693882c9 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x6947f310 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x694a4f42 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x69618fd1 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6968c27f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x696a974e simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x696b31ef get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697b9b05 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x69733bcf regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x69746198 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x69781a76 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x6979aeaf serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69868ae6 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x69b12abb iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x69bd17ae pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x69c93748 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x69cbedf2 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6999c042 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x699f6cb4 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x69a9708b clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x69bbf574 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69dacf46 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69fd694b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x69f288c9 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0784fb hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x6a0fa82c tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1730a9 rcu_trc_cmpxchg_need_qs EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x6a38206e hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6a3cc07a icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x6a3e6b17 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x6a40bf95 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a44af44 put_device EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a469b6d gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a57b5b7 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6a5cf881 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x6a6d777a thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6a78f83c transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x6a79d955 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6a7a822a usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0x6a7e7928 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6a5502b2 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6a57c67f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6a6e0d34 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a708c92 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x6a755bfa acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a870e0a balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x6a8b54d1 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x6a92a9a7 edac_device_add_device 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 0x6aaa5974 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab983cd regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x6add779f rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x6ae50e32 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x6aff7594 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x6b02ccb0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x6aad9bf7 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ab299d7 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6ad1ffca ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6ad7d1fa blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ae2a047 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6ae3d53b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6ae8b232 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x6b08829b ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b1161f6 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x6b16c0e7 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x6b1cdf92 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6b185b30 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6b1b995c mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x6b1e1302 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b204cb6 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6b26efb1 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x6b2a4982 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b30164c dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x6b34d501 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b40b838 gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b489b99 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x6b52ddf1 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x6b554986 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x6b5ebc16 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6b697e5c __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6b508da7 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x6b5907eb tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x6b722180 log_read_mmio -EXPORT_SYMBOL_GPL vmlinux 0x6b77c993 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x6b750a1c pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7f576a crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x6b7cec23 mnt_idmap_owner EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b88f414 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x6ba329ec pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x6b8e73c3 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x6b9fe36c acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba61381 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x6ba691f2 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x6bb6649e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6bab6323 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x6bac91e5 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x6bb06fe1 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x6bb4a420 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x6bb66d59 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x6bcbf363 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x6bcd23b7 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6bbff4b2 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x6bc8e4cc ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x6bc9548d badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x6bcb371c scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x6bcbc383 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bcdf419 serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdb4e29 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x6bdda3f8 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be9a8bf metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6bf70157 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x6c000b4b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x6be3f787 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6bee39b6 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x6bfb1833 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x6c074422 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x6c0a5142 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6c1260b4 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x6c179b16 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x6c1c57f3 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2a5710 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6c2fa3c6 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x6c36101d fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4554bd gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5396c5 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x6c574a02 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c6148d0 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6c5d1b5e ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c69c1a7 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x6c67180e posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x6c6aa762 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x6c6fbd3f of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x6c79c06f hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x6c9473aa crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca4a52a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6c98860d acpi_pci_find_root EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca9b094 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cbe96d1 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x6cdd457a balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x6cb32759 user_update +EXPORT_SYMBOL_GPL vmlinux 0x6cbf6ae2 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6cc7b359 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce91115 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d042d07 of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x6d06816a crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d15358d power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x6d16b294 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x6d1a470a generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d1f1e82 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x6d20a0b5 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x6d15944d bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x6d17b0a7 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x6d1f7980 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6d2c5db5 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x6d2f961b udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d32ed57 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x6d4370b2 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x6d345c79 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6d36165e irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4a171a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d4c61f1 ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x6d5dff47 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x6d68f677 mtk_pinconf_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7d085d ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d841a44 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x6d9a97f5 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x6da1941b of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x6da29c4f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6da6d641 trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0x6db9b7d6 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d81967b acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6d90e812 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x6d9668f8 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6dadddf0 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc49770 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x6dc59baf of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x6dd40f6b blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x6dca6d1c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6dcb37ef crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6dcd94c1 strp_process EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dd7c550 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x6de37a2f pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x6de7ac8a ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x6e00774e tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x6e085162 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x6e0436f8 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x6e047e79 acpi_dev_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e12bc01 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x6e16e3e7 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x6e235fe8 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x6e25d462 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x6e26e3ee ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x6e2ed83a __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x6e0a9e7d devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6e294e7e dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x6e2f3f81 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e3c8ca5 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4a3fe8 acpi_get_and_request_gpiod EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4ef6a0 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x6e58cc2b __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e603813 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x6e6b3708 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6e5e408e sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x6e75b045 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8d4324 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6e8f4240 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e94eba4 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x6ea890f1 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x6e9d0f13 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x6eac453d dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x6eac4733 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x6eae134c ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6eb9d7f9 acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ecc57c4 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x6ecf7e35 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6ed20c8e devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x6ec2104e irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x6ec5c84c rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x6ec61098 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x6ed0104c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6ed7a017 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6edae147 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6eebec30 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x6ef15bd0 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f072486 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6efead73 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x6f09c50a nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f16a264 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x6f16e59e encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x6f1b60c5 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x6f1b617e key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x6f1f5e0a gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3911ae vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x6f45077c da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6f4ac336 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x6f516bda serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6f59c93d uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x6f5d54c0 finish_rcuwait -EXPORT_SYMBOL_GPL vmlinux 0x6f606827 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x6f64524f blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x6f668d0a watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6f301402 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6f365a93 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f4d1b31 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f6d6e37 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x6f77851a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6f6fe6a8 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f8bd86e devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f93c822 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x6f9540ce apei_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fb6d0ce __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6fbb6c08 __traceiter_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x6fc8741c dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x6fcad498 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x6faa14e9 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x6fada0be vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x6fbba268 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x6fc05bd6 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fcefd7c clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x6feb8981 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x6ff3a9c9 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x6fdb19d6 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff840ed adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x6ff87950 dev_pm_genpd_get_next_hrtimer EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7016a1d0 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x701a9c96 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x7028989f device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x702d09a5 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x702d13c2 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x704159c0 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7011a3c0 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x70149c18 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x703370b3 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x704b7aba dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x704cb2a0 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x7056a340 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x706036a5 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x70650430 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x70501956 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7070787d fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7092c846 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x70a9701a regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x70c1e2b8 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x7079d5f3 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x708dae0f crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x708ec858 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x709d6723 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x70b3b003 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c820e6 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x70cae89f serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d6c958 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x70df5db3 fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x70dfde0f debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x710298e2 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x710b568e fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711355dd skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7113aeb2 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x711d7bce clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7120c3f8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7125b5c6 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712b587e pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x71398a13 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x713f1b53 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7168e1ee nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x71692592 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x717aa660 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x7180dd53 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x7181d680 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7182ec45 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7190131c folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x7192752e __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7193a57e key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x7199782f umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719fde0e dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x71a0eed3 dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a5b465 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71f1be0b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x71f4b5bc acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x71fd3a1f mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0x721a04c9 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x721a0da0 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x721e8128 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x7226b799 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x7233eefc ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x71d2daf0 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x71d82f4c ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x71da4b2b file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x72010f88 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x72066e39 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x72072071 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x721bdca7 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x72359a55 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x7262ffea proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x724cc61d dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x724d7a2d meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x7275cdd9 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x726a3dc8 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x726daee7 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x7278a5dc alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727f738c cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x72aa9c9e mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x72962f5b iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x72a5c913 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x72acb102 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72b57216 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x72cb345e irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x72d07d89 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x72c3b4dd ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72e308ad gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x72e90e7a dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x730a8f5c pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x731a74f4 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x73220f75 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x72f4456c iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x72f807eb iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7301747d fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x730e3dc8 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x73112355 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732f7a80 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7339958e inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x733f713a kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x734405e5 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x7344fe0d fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x73515c29 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x73516e9a vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7333023b pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x73379f1d __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x733eef2a ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7343192d crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x7354ff28 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x735a6839 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7365ab1d xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x7366a6d0 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x7367014c clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x738500b1 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x738de763 imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0x7397bc7a synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x73a3798b netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7353dcbc devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x735da757 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x73620882 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x73759df5 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x73941826 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x73954fa7 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ac2b41 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x73c0b428 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x73acbfbe crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x73af35ca virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c2f5f1 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x73c57816 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d7227f wwan_put_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x73de24ea crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x73decd33 mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x73e98bdf pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x7402d6f5 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x7408ec14 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x73e88198 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x73ea051d phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x74036496 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x741e8744 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x7422eadf ping_close EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x743779ca bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x7439ce89 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x743ba5f9 xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x745429e7 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x74685d13 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x74867098 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x749cad90 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7447a1ea pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x7447d46f sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x744b6839 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x745914b3 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x745ad1b8 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x7462f4e8 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x746b5573 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x7480005f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x748f82bb soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74b07106 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b62191 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x74b93a3c vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bc7a54 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x74bce563 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x74bf8207 phy_get EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74e31238 ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ecf807 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x74f25789 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x74ff2b1b bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74ff5d36 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x75016f75 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75201c01 serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752f3124 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x752f9ae5 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x7533cd58 dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof -EXPORT_SYMBOL_GPL vmlinux 0x754208e4 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x75483685 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x754a85af skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x756ea1e3 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x75712eb7 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x7575606a usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x753c21c8 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x75569361 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x756c6d79 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x757076bb device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x757864ec tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x757975a3 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x757d6909 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x7586fb25 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x75866408 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x75875f2a device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num -EXPORT_SYMBOL_GPL vmlinux 0x758adcad ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x7590abbd fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x7596a3fe mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759cfaf8 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x759f55e7 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x75a3a41d acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x75af39ea dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x75bc724a tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x75d15af1 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x75d874b9 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x759e58b8 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x759f7133 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x75aba04c devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x75b2db57 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x75bbbdc5 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x75c1f69f mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x75cf386a mddev_init EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75df824f usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x75e4dfca wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f32a09 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x75f9b9b2 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x75fa45e1 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x75faadc0 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x761d7e4f bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x761dadc9 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x761eaf86 of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x7636d8bf __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x76378dab l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x763af8fd wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x75fda242 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x75fedb80 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x76084abf ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x760eba8b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x761eca8c wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x762f4563 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7639eb19 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x7640dc73 devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x76522f35 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x765e4b98 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7657a460 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7661f0f1 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x766efe9f folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x76753270 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7685da82 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x768bb29d regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x76969248 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7685f5c5 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x768bf8d5 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a207d5 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x76a61e85 __SCK__tp_func_rwmmio_write +EXPORT_SYMBOL_GPL vmlinux 0x76ae9cf6 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x76b51ef5 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x76b9ce5b regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x76c04cec regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x76c1af7f fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x76ce7fd3 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x76d8a61f clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e32c44 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x76e6daf3 spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f49486 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x76f93b57 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x77001bb3 ahci_platform_find_clk -EXPORT_SYMBOL_GPL vmlinux 0x7709852e irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x770a48c4 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x76f6b01b amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7703fac1 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x770dbc78 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x773552b4 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x7741f574 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x77311e46 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x773daa02 devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x774f68b5 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757950e ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776465ee cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x777aa3dc crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x775b484b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x77635289 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x7790ea52 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779377a0 debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 -EXPORT_SYMBOL_GPL vmlinux 0x77a2c5d0 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x77a8800c regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x77a8a734 pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77da4173 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x77dbc136 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x77e46470 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x77b23f14 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x77b5c3b5 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x77b69b2b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x77bca481 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x77c9faa3 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ec29c8 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f08b59 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x77ee1622 vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77fb973a irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x7800d1e1 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x7809ac30 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x78216fb1 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x782e658b platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x7838239d devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0x7839e012 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x77f622ff ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x77f6380f mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x78052137 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x7815273b irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x781731c2 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x781b0637 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7821c2ce spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x782d7534 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x78480b1d regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7856c3da sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x784ce55a regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x78590b48 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786f250b sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x786178db __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7863f5a2 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x78676282 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x7878a422 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x787a1b1d kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x787ecc26 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x788a1d52 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x787e7f19 fsl_mc_bus_dpcon_type EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x789b3f2e efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78af0370 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x78b61fa9 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x78ca8b4c icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x78d9924b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x78c01088 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x78cc167f tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78d02971 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78dfd470 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x78ed8ca2 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x78fa1c11 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x78fc0b43 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x79087314 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x78fd6ce0 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x78ffef5a device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x791016ce pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x7914d7c8 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x7910ce9b of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79257161 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7935ad63 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x7948071e __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794f2f27 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0x79548ef2 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x7955bcea regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x795b7015 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x796391d8 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL vmlinux 0x79684b9f of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x797002a4 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x797043fa rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x79860ba5 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x794e289a receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x794f213b __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7957b99d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x7961a38b mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x796589de powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x796722ab fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x79678ebc register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x796e95b3 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x797f4733 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x79904ade crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x7997f744 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x799c91d2 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x79a231d9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x799e4cf5 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x79a6acd8 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x79b3f874 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x79b6b65b crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x79b6d65f devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c6fd78 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x79c78c4b start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x79cdecc0 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x79d034eb extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x79d4a1a7 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x79d54424 vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0x79d6b4ae __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x79d84e6e xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x79dc2a12 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e3b58c phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x79e8db37 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fa7a80 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x7a146519 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x7a14be80 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7a243929 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7a28b019 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7a2c635f syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7a34f9cf regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a55df27 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7a3ff285 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7a4a7aee __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x7a54bc0b __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x7a63b9ae serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7a5c7d follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x7a7b7163 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7a792979 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7a7f4b79 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7a80941b regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a82ad14 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x7a84c5a9 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x7a8d6147 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7a87e193 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x7a897e58 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x7a8efc43 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7a984806 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9a2287 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7ab50ad2 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x7ac08946 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x7aaac51d pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac6ed91 debugfs_create_devm_seqfile 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 0x7ad2c64c k3_udma_glue_release_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7ad81ecf devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x7adb0648 host1x_context_device_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7ae8ad62 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7ad85ae6 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7adc078c acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ae292e3 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x7ae900eb input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x7af4796a crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7af7e345 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7af81390 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0e9112 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7b12b9f8 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x7b27cb23 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7b2d9ce9 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x7b315ed5 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x7b34c053 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x7b489b2d smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7b4a9fff of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7aff42cd ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x7b0fbf34 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7b135dbe mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x7b1531a5 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x7b18ed26 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7b2159e1 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x7b240dcb crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7b4b229b i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b614471 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b7fd284 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x7b8140d7 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x7b88ecb3 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7b82e6db bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x7b85de9d crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b961919 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7bae44b1 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x7bb00848 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7ba34058 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7ba93018 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc8a4ac blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x7be05c3a devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x7be65e18 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7be7c216 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x7be9c3dc gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x7bea3d51 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7bf46b76 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x7bfda060 icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x7c1038e8 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x7c1dc142 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x7c204167 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7bb8bd6f genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7bbbf924 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x7bcea1e5 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bd0a186 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x7c13ca27 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c2665e4 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x7c280041 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c36629a irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7c31ca61 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c41650c iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x7c427147 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x7c5db379 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7c4e9c6b power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c7031af evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x7c763f08 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7c7af95d device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x7c8c1dc9 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7c89c49f mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7c8b0352 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7c979ab5 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x7c9640b4 spi_mem_dirmap_create 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 0x7ca6ed2e blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb7acf0 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc7dd8d of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x7cc8911a serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x7ccb5b6a crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7ce31e9e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7ce035e3 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7ce2285f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x7ce4ecc1 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceb874f ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x7cedd244 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7cf90608 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7cfeef38 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d10bb03 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7d152128 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7d06ab59 nl_table EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1cf57b usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x7d350411 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7d374758 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7d1d1a35 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x7d3c9952 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x7d44c043 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d48987f crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5e2876 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x7d69d7a6 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x7d735ec8 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x7d7481f4 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x7d8440dd cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x7d87dfeb rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x7d8ee6ea tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7d9baf10 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x7da9fe8e clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x7daca4dd clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x7dacc828 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x7d6b20e2 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7d7cdcd9 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d893592 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x7d97fc0b get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x7dae0d97 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7dafa239 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7db1bf19 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x7dc9e7a6 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x7dd7fa24 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddf2853 nexthop_select_path 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 0x7de7cb28 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7dee25af kvm_destroy_vcpus EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7e10a1f4 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x7e13c385 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x7e2aa899 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x7e2d29cb blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x7e31f37e bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x7df96a39 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7dfb1414 vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0x7e071814 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7e25f1a0 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x7e265721 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x7e277c86 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7e34e21f blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e3f4201 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x7e49dff6 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x7e5302cd usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7e401c4f gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7e55e985 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x7e5c0c4b iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e5e4081 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0x7e6317b9 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7e5f5e73 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e76425a gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7e6df3a2 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7b2749 __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e88d000 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e80929d __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e9738f9 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x7e9bf897 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7ea530d2 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7e975048 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ea989b4 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x7eaf80b5 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7eb62360 __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec27ddb virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x7ec7c8da nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x7eca6455 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7ece8833 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x7ebc995b fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7ec56c0d regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7ed4f0e9 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x7ee0d10c pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef5a3b0 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x7eef1b09 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7ef52703 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x7f18663b ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x7f1b7458 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7f2315fb fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x7f261138 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x7f310294 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f363ddc iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x7f3b3ed6 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x7f3e15bb meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x7f4b6414 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x7f4e2c0c regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7f63f7c6 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x7f6c8319 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7f26cdeb sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x7f27a12a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7f30dbbf sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x7f59215e gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7f617e28 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f679528 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x7f67cd31 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f84b824 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x7f7dfbd4 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f8bbe0d __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x7f94acc1 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x7f8a9158 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7f8ecd4f blkcg_root_css 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 0x7fd4be10 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x7fe71d92 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7fe791cd tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fbf38ad syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7fc03803 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fd75fde devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x800b1967 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ff3f4e2 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x8005346f sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x801bdb5b usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x8023e081 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x802f59a3 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x801c506b dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x803c68a3 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x80506acf regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8054171e rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x8058fb0a thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x805cabb1 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x805cd689 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0x80743f0c devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x805c9226 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x805fd536 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x806bc394 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8077e258 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x8078970c clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80a18b7d badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x80a34b0d of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x80bab871 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c88514 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x80c998b5 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x80d4035e device_move EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e3e2b3 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x80e0358a bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x80e5c672 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x80ef0de8 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0x80f3257d hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80f479ed rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x810d0f27 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x810d116a sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x810de270 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x810f13d6 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x810116d9 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8125799f phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x81355858 iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0x81378f51 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x813b2d90 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x814193df pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x814b04fd ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x814f9b78 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x8150a2a5 stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815aa341 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x815c2736 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x8158dca6 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816171ee meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x8161a492 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817dfb6d __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81816cf1 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x81836825 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x81888b58 irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0x819068b9 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x818d47f2 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a70cd7 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x819e2c5b spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81ae22bd ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x81b721bc devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x81bb237a fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x81cb32ab da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x81b7b674 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free -EXPORT_SYMBOL_GPL vmlinux 0x81dbb639 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x81ddc372 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x81d2bb26 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x81db89ed irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x81e1364d __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e301ad serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x81ee23df clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x81ec2b34 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x81ee660c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x81f25b2b devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81ff5833 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x82031ded of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x820666a1 acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820a3b36 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x820f949e kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x820b8a27 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x82104a38 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x8219f4d2 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82276e40 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x8239906d tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x823a7179 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x822280d3 phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x822570fe usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8228d20f da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x824b4c70 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x82509138 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x8252ff4c mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x82532609 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x82597284 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x8242b9c5 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x824b7a89 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x8258e033 crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL vmlinux 0x825cd2c2 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x826d8d18 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x8272ae14 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x82737ff7 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x825f6b53 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x826b7cd3 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x82709045 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x82857b09 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x8286a2c3 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x828513b4 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82921048 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0x8295e9c9 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x829953f8 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x829f4352 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x82a17eae blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x82a6fc49 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x829bfbea tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82a9249e extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x82ae4efd perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x82afa93b securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x82b06df5 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x82b8c89e acpi_find_child_by_adr EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c3b81c platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e001c0 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x82e11176 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x82ebbe79 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x82ee4cb9 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x82f3d4e5 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x82f4bfdf __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x830b28d8 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x83102556 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x83249953 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x8327f4f1 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x82db6002 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x82de6086 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x82f00034 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x82f1b86f dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x82fda3e5 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x830a4c49 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x832d1d81 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833ca17a thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x833fa097 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x834026cf irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x833ac438 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x833b7143 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x833db027 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x834892ac gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x83516a22 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x834f402f unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x836603b1 tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0x8367fff5 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8366a82e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x836adc10 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x836c74bc component_del EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8373bff4 __sk_flush_backlog -EXPORT_SYMBOL_GPL vmlinux 0x83965960 mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x83975853 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x83c34b09 mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x83c7f688 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83d79b47 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x83e625ca fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x83efae39 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x83f88e79 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x83ff5d78 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x8400e12a synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x84089932 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x8391f20b ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x83a759c9 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x83bfa0bd cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x83c36596 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x83d0fdea usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x83d5a398 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x83e42188 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x83edac48 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x83eec5c1 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x84056df2 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8416da6e tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x8422a5ca ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x84230567 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8428754b crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x8429e03e get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8434f58d iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8444f56c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x844199e0 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x8441c735 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x844f9db2 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845affb2 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x845b14a4 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x845d7df5 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x845ef9e0 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84750510 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x84785c47 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8481e3b5 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x84870e81 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84a06793 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x846906d3 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x846d5cac icc_put +EXPORT_SYMBOL_GPL vmlinux 0x848575f0 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8487642f crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x848b16fe devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8490a71c hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x84947d48 icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b2d561 ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0x84d7daa8 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x84dc473d nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x84b08c32 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x84d6e7e0 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x84e0de83 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x85002be4 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x85013172 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850c8220 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8529aee1 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8542230f vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x85438d58 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x855633a6 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x85726b25 fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0x857fa476 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x857a9342 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x85800c71 pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858cad8c nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859075cd devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x85923132 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0x859b1ff6 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL vmlinux 0x85aaa205 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x85bcafa9 rockchip_register_softrst_lut -EXPORT_SYMBOL_GPL vmlinux 0x85c5aa4b nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85e08fa4 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x85e112f2 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x85e24f6a nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x85a44b1d handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x85b8ed6d ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x85bb0530 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x85ced313 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x86083d3c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8610843c tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8611df0b fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x85f13e2a devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8617d700 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861fa4be devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86299dc5 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863abe60 mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x86413971 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x864e1bd0 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8656b6d7 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86586e0c __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x866467e0 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x86685ba2 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x866b4185 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869a4925 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x869bcb01 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x869cc8cd usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x869f49ea tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x86a4a8bb pci_has_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x86b0aa86 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x868f7616 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x869041bd nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x869444e5 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x86a47936 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b85aa8 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0x86c431fa __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86ca80c3 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x86cfcbb9 dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0x86d55d24 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x86dd7280 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x86df4715 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x86e69fcc nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x86ca549f acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x86d57c83 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0x86e19c4d screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x86e59631 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x86ed9c96 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x86f2c09d blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87098e04 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x870b97f2 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871a31e2 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x871adc9e cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x8740a6c7 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x8750553b ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x875a5983 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x877fa0a4 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x87877fec alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x872bd81a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x872eafea sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x8764720f led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x8784c8ac wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x8785a727 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x879e35eb devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x87a0bd4b rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x87a0d75f device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x87a7e459 inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x87b6739b devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x87bb1d6c dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x87cb65a2 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x87d9935b component_add -EXPORT_SYMBOL_GPL vmlinux 0x87dfa8ff pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x87fbe8b0 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x87b5b3c2 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x87c7db39 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x87d299da __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x87db3e2e nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x87de14fc pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x87e9454a usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x87f6b60f tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x880dfb33 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x883276fa kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x883e4af5 bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8865652e platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x88754e41 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x886340b7 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x8867c801 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x886ce18f virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x88829705 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x88869ca2 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x888b5ab8 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88952cc5 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x88a2199b blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x88a484bf devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x88a664af rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b88e48 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x88bb27f5 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x88c08c41 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x88c5f514 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x88cc75eb pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x88bab98c dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x88bd62c5 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x88c791ea iommu_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d375e0 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x88d8aa2f simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x88d93260 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x88ddc7ce of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x88e8af2b raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x88edcdbd of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x88ff7aa4 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0x890590e5 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x88ceedbf debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x88decd20 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x88e7a634 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x88f17c9a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x890bc25d elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x89101849 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x8912d3a5 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x89195530 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891c3a13 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x891a70a5 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x891e022e usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89310508 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x89281ba5 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x892faa27 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0x8935dc41 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x893844ed pci_find_next_ext_capability 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 0x893f2d9e blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x89419892 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8944dbcf of_phandle_args_to_fwspec 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 0x89597463 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x896a3a5a of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x897ea45f rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x8984c2bb dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x898a4ed0 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x895540ea irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8956d1d7 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x895eb62b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x896ce0c9 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x896e43eb ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x897040f8 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x89764537 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x897f16c7 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x897ffe3d wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x89825fcc sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x89966c66 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89a50848 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89bef8f7 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x89c067f2 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x89c1d576 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89c47416 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x89c72ba6 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89cbe92a rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x89db3bae page_endio -EXPORT_SYMBOL_GPL vmlinux 0x89dcd4a8 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x89cf4b16 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x89d4df94 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x89d67c5a bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x89dfc1db serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x89e18272 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id -EXPORT_SYMBOL_GPL vmlinux 0x89e29883 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f65955 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x8a1510be extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x8a227265 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x8a2cd841 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x89e3c7c1 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x89fcf545 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x8a204eb5 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8a23dbe9 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a2c30df of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x8a2ea7ef pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x8a36bcc6 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x8a3929b3 edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a423 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4a4b4e rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x8a4b8227 wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x8a4e568e acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a56180b irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8a5dafe0 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x8a612125 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x8a5747fe usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8a57ca7d disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x8a5d1872 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a668c13 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x8a68fbb3 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x8a760fb1 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a79c9e6 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x8a7c8b1c ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x8a646078 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a87d7ea of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x8a8969d9 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8a884fc8 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8a8ca07e vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x8a8f0284 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot -EXPORT_SYMBOL_GPL vmlinux 0x8ab1a54c pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8ab1b17a trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x8a9fa8fd acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8ab20337 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abffd9b cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ad210ba dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x8ad5a734 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x8adec309 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8ae71e1e pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x8aecabbc devm_of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8aef8ee2 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x8b14142e phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8ac1cbdd hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8ac2f01b devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8ac58093 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x8ac616de regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8ad616ab da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8add31e9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8ae280cf usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8ae6acda pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8ae813ee unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8af31a87 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x8afadc6d scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x8afc66bb unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x8afd520b do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8affb2a4 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x8b0f3379 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x8b1044b0 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b2a400b regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8b408941 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8b40b202 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x8b2f4044 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8b36ba2c pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b3eabbe simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b4d5f5c raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x8b4f1ecc dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x8b53e467 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x8b5a3dae usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8b4bfa56 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x8b4f5313 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b81a344 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x8b846060 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x8b8e1905 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x8b918f47 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x8b9208a8 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x8b969d44 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8b99eeef edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8badf8f6 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x8bb1d2fe linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x8bbc3fce validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8bd1bdad fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x8be40b6d __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x8bf01408 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x8bf2325f nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x8bb0d289 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x8bd58a1c dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x8bf46d2a regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x8bf4f09a skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8c019136 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0a6d70 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x8c0b9c59 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8c0a220b devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c1882c6 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x8c25fbff spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x8c262de6 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x8c31d804 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c0f3f6d powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x8c1d1b6b pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x8c1f7efc ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8c242cdf cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x8c250006 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x8c26f3a5 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x8c27ebd3 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c287ada cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x8c364e2d pci_doe_submit_task -EXPORT_SYMBOL_GPL vmlinux 0x8c3d9293 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x8c465484 acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4bd6d6 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x8c542761 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x8c5e1d7d phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x8c620739 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x8c68957c devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x8c6c640c ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x8c719db7 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x8c539392 thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x8c5c2ee2 devm_thermal_of_zone_register EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7f3614 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x8c82839e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x8c744ca8 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x8c74a798 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8c828cb7 crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off 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 0x8caf9983 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cb98471 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x8cc2c7db spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x8cc331df nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x8ccdc82e fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x8cd52d0d ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x8cdcf2d5 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x8ce1fc79 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x8cce38bf pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8cd64a93 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce7189b fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8ce75a01 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8cee4583 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x8cf16b9d irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x8ce9a653 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8cef6fd7 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x8cf008d8 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x8cf0da81 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x8cfea0bb gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d1ece9d crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d276418 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x8d2b9100 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8d25d7dc devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8d28c48a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8d2e8046 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3aaef1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x8d44f5db pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x8d4817f6 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x8d3b839b vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x8d491041 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x8d49af84 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d73ef62 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x8d58d11f pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x8d6c1735 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d7640d8 blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d86fa95 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x8d8a226b mtk_clk_register_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x8d8faff4 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x8d815340 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x8d87da96 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8d90ba1c usb_string -EXPORT_SYMBOL_GPL vmlinux 0x8d9b0283 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8da2d94d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x8daa869e virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x8dad62d7 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x8db47f79 acpi_get_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc7a0e3 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x8dc50558 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dda3a79 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x8ddd5668 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x8de349c4 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8ded7c8d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8de8286c genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8df38614 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x8e11514d acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e19a227 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x8e31a43a kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0x8e379794 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x8e3cd58b kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x8e404807 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e1922f6 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8e291b7c netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x8e3597fd rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8e49b1d0 clk_hw_init_rate_request EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e64d0f4 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x8e67d3fb rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e71a169 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x8e7d8ffc __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e809527 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x8e86be12 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8e8f4dfa clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ea08f8f securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x8ea55200 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x8e7f3dcb tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x8e945448 get_device EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8ebc94a3 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x8ec7d90c __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x8ed45541 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x8eb8df4a mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x8ec12a77 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8ec7bb31 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x8ed560a9 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x8edbf81a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x8edb0276 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x8ee081b3 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eef9bc4 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x8ef41d19 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x8ef49a3f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8ef8d72b regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x8eff8761 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x8ef45910 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x8ef59036 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8ef934aa vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x8f02c640 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches -EXPORT_SYMBOL_GPL vmlinux 0x8f164967 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x8f2d1aa7 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x8f12c6f6 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x8f26a2de devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x8f2e9614 compat_only_sysfs_link_entry_to_kobj 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 0x8f4b9a8e bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x8f4f5560 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x8f5f6e10 dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x8f687b86 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x8f6ad10c devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x8f459192 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8f4a744d inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8f5f32bd skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x8f68ccce device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x8f690eef kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x8f6c88c0 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f725a4b ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x8f71ecf9 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x8f74e12f crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f86f068 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x8f96acfb crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8fa18850 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fab64c1 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x8fb615a0 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x8fbd8c92 dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fcdc7d3 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x8fcf9a57 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8fd41b2f dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x8fd9048f __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x8fe85faf pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8ff16e07 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x8ff383f3 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x8fd1865a dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x8fdcf08a inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x8fe31f39 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff78515 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ff66e9a elv_register EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffa078a xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x8ffa0e12 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8ffac50d acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x900d37b0 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x900fe318 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x901cfab9 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x902006b9 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x902c9499 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x900aba78 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x9022b182 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x9027ac83 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x902f3c74 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x90301eec inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9039aebf ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904ebf3d dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x9083916c acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x908bad59 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x90a19ef8 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x90519efa of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x90536b22 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x905826b5 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9063efd5 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x9065a90d evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x909af6e3 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90ae9510 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90ca3697 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e056ca device_rename -EXPORT_SYMBOL_GPL vmlinux 0x90e5e8e2 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x90ec4643 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x90ecc5a8 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x90f33dde param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x90dc12fe crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x90e1546e preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x90ff3bd7 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL vmlinux 0x9120d281 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x9124d278 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x9131ec75 mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0x91346157 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x912167da usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x912daeb0 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91465049 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x91499767 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9173b7e7 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x917614cc vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x91495dfb palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x9151ab9a xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x915589cc thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x915e0c07 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x91717eeb scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x91897b53 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x91935e7a i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91a204fd usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x91a544a8 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x91a55f95 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x91aa22db __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x91b501d1 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91b7f927 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x91bc727c register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x91be5be7 crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91c99b7f gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x91d303fc devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x91cfc31b pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91e46ca6 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x91e4af3c pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f77350 ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920ebc94 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x921024f8 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x92182766 get_device -EXPORT_SYMBOL_GPL vmlinux 0x921f92cc init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x922abfc5 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x920d7807 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x921aa130 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x922c3691 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92483e49 mtk_clk_unregister_plls EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924c7fc2 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x92618446 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0x9273ecbe sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x92662c3d __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x927a76f9 genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x92895612 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x929a1f28 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x929b294e devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x927679b6 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x92774720 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x927b0afd wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x928278c0 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x92889e42 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x928e4fa4 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x928eab0e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x929c1e08 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x929d9219 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x929e192e swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92a08348 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x92a644d9 of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c98957 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x92cb82fb phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x92bad821 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x92bd88d6 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x92bfc773 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92ea040d xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x92ea3737 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x92ecf8e3 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x92f541ed aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x92f7b06d regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x930447fc __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x93058759 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x92e9de21 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9301e97c serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x93037f79 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930e0643 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x9311e863 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x931eeab2 devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9327c90f pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x933c92b0 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x933c9c09 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x933d9f0d virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9348580c sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x93530516 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x934bb90a kvm_read_guest EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x936147a7 devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9372cda4 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x937fd36e bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x93991602 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x93a29f61 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x93aafe14 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x93b33972 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x93b4267f acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x93c692fa sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x93545f40 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x935b07d0 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x935b4c8b devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x935d0c7b __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x935f7c03 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x9361db7a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x937566de icc_get +EXPORT_SYMBOL_GPL vmlinux 0x937eb90b __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x938fd0e2 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9397d7a5 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x939bfb1a crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x93b672f1 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x93b811c8 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93c9b826 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x93cd1c5a fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d53699 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x940e6b51 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9420b394 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x9424d09d devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x9420c017 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x94394b37 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0x943db697 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94452ebe tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x94464e63 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x9446592c regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x944b829a tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x94548d9d of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x94692a4b devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94770d8b iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x94819bc5 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x9488bbdb pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x94890404 ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0x948ca833 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x948f7565 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x9492d992 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x9495c397 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x947456cb led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x948e8d0b fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9491079e irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a1af1c nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x94bd35ac devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x94db65aa da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x94e332e1 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x94bd063e balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x94c04358 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x94c162d0 of_add_property EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94eb18e8 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x94e85e33 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94e9d59b lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94ef83be of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f6a3e3 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x94fbf273 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x9502cd36 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x95045fee device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x94fa5a5a sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951888c9 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x950a0cb2 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x950d1c55 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951b8c0c spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x951cce8a blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x951e3a4b __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x95348644 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x951a3c02 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954b3af8 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x95530e61 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x95575c33 __tracepoint_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x9557bc9b fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956a7caa acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x9568925b badblocks_init EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95833cb9 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x9575aec8 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x957771fa rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958850e3 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958f309b tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x9592176a thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959a5e67 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x959dc61a virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a4cf1d trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x95ac8012 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x95b12914 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x95a81f7f clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x95a858c6 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95be40b2 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x95cbce3c tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x95cf0d34 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x95cc3884 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x95ccf8b0 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x95cfb4f9 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x95d143c8 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x95dd9eb4 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x95de8227 relay_open EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e76d64 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x95e99d75 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x95e1cbf3 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x95ea06a1 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL vmlinux 0x95ed82f8 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x95ee629e clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x9603d76d tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x9602b071 mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x960fdfbe __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9613e788 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962c233f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x9625a9c3 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9643b929 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x9633aba3 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x96438a86 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x964d0502 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x965390ec meson_clk_pll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9658ad6b usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x966b3164 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x9677f16b regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9698e55f cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x966191df vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x9661da90 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x96765757 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x96782116 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x968dc1dd xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x96992578 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96ac184a rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x96aefaff serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96b8cd70 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x96b90747 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x96c0db86 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x96ce8b07 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x96d0f548 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x96d5a224 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x96dab4fb dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x96f90774 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x96bb16d5 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x96c84226 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x96ca3aca acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x96ccee91 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x96d8745d nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x96dd56e5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x96f90e0f of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x97021320 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x97012fdb tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x9707eb84 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971545a5 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x972d994c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x97492953 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x976474ca rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x97667ae5 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x97679053 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x976cf7f5 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x977a61cd ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977dd8fa wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x9782820f pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x978d4c85 dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x978da8b3 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x979a8a3a regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x979b6913 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x97a2e456 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x97bb2b4b gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x97cf0190 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x97dbc516 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97804bf7 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x978cec47 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9790e8e9 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x97a20715 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x97a9c747 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x97b4e113 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x97b97b9c qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0x97c1440f blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x97d41f62 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x97d583b6 gfn_to_memslot EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e074b3 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97e990a3 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x97f6c75c ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x97fbdffc __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x98089837 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x98090a72 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x9821fca4 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x98247cbf ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x982db90b sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x982efc4d ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x97e92982 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x97f9260f iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9800fb72 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x9813bb0f aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL vmlinux 0x9832d2da request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x984053cd nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x983bb547 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x983f6b3b phylink_create EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x984bf277 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x984f4a4d phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987efeab fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x987a9ce7 host1x_context_device_bus_type EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0x988051a7 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x98838817 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989bfc01 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x98afacba usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x98b5ca05 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x98b657d2 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x98bdb44d nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x989a716d regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98c5e434 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x98e2245e usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x98c873f9 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x98e5c429 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f085b2 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x98f826e5 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x98fc4ff8 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x9900175f ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x99021381 blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x9941ecfa irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x9943635e xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x994f1297 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x995bb497 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x99013a5b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x9901ad22 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x9907482a sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x990abba3 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x9911fd5b dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x991666d0 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x9916cfb6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x992365b4 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x99279be9 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x993c86b0 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x99443bb8 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x9949e335 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x99524724 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x995c588e regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995f107d dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x9967825f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x996543fc kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x99679460 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x997183af component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x9972ec8f tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x997b4c4b crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none -EXPORT_SYMBOL_GPL vmlinux 0x997e7346 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x99804646 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x9989cf37 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x9996b99c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x99943529 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x99977d4e ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x999e3af6 devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99aff8fa pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x99c8cbef kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x99d4f326 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x99e21e35 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x99ec5d19 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x99ed56c3 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x99a2d112 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x99be0f21 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x99c96a29 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x99daee9a pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fba55b report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x99fd90da fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x9a00adad devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9a0e343a devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a19a7ba spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x9a1bee75 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9a162a28 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x9a21de6d crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a3b37cb vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x9a412d48 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9a2cc2a3 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9a2fbfff watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9a462a64 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x9a486309 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x9a487484 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x9a487ac1 iov_iter_get_pages_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a492d3b dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x9a4f467d dprc_set_obj_irq EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a70f669 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9a737284 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9a76551e pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x9a868d86 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x9a933f1e phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x9a9a0c65 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x9a9a895e net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x9aa57240 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x9aa5e204 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x9ab44ed1 fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x9ab52b6f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x9ab715dd fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x9abe1442 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9a606dfb pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x9a64252c devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9a662465 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a69f309 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x9a7985b3 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x9a7e2df8 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x9a9db3ce kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x9a9fd2a5 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9aabca9e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x9ab45961 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x9ab6619e iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x9ab7ea66 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac1b9aa __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x9ac3e0a4 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x9ac71ba6 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x9ac2c1df bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9ac7b0d2 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9acef30c pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x9ad36959 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x9ad4779e pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x9ae71f23 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af0e5bc iort_get_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0x9af3b406 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9afe4fd6 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x9aff2066 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x9b052456 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x9b083a4f pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x9afea27d of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x9b0341a3 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x9b059078 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9b0702fa dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x9b07bb3b netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b10f508 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x9b138ec8 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9b168485 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x9b181177 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x9b2be101 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x9b335aa6 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b410145 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x9b549664 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b583ccc sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring -EXPORT_SYMBOL_GPL vmlinux 0x9b654ce6 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9b65ce0a fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b6f6bc4 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x9b6fa8e6 tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b744824 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x9b7736ca crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9b8b3651 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9b87427e devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b8e5192 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9b8f4154 gpmc_omap_onenand_set_timings EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92ba05 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9e2ba0 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba17c7f pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9baa5b1c of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x9bac6a5c kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x9bad85cf md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x9bb3c887 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x9bc62fb6 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x9bcedf26 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9bdaa63d acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x9ba94c7c PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x9ba95543 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x9bac8a37 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x9bc35290 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x9bd4ac4a fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc -EXPORT_SYMBOL_GPL vmlinux 0x9be2218e led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9be54c59 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x9bec05b8 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bee2a42 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x9bf981a1 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9bfdd821 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x9c297047 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x9c2e042e l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9c1cd4f7 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x9c3f40e9 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9c421d23 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c4afda1 dw_pcie_ep_raise_legacy_irq -EXPORT_SYMBOL_GPL vmlinux 0x9c5205df mptcp_diag_fill_info -EXPORT_SYMBOL_GPL vmlinux 0x9c6a653d xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x9c6a9b79 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9c45e910 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9c483e32 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9c4f6f41 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x9c593817 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c88ea62 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x9c8d05d0 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c8e028d pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9c9854c5 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x9c9da6d8 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x9ca2691e of_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9cb31403 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x9cacbb9a clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x9cae75aa mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x9caf90dc gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x9cb158be gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x9cb1ef4b anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x9cbea00f mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x9cc4aae8 dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd4be29 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9cc8be52 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x9ccb5853 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x9ccc0df9 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x9cd4fd0b pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ce6e18a devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x9cf0fb3a ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf3bcb2 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0x9cf738dd kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x9cf84070 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9cfa9455 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x9d02d2ff __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0b0a97 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x9d1ac231 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x9d2047bd bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x9d234f7a bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x9d166eb0 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9d1b98bd devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9d1cec5f device_create +EXPORT_SYMBOL_GPL vmlinux 0x9d1dd08e dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d33475d transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d449759 devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9d4edf6a rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x9d6c1794 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x9d3ec072 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9d4be134 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x9d4cb25e ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9d4f103d switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9003f4 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x9d9681a3 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9d9ef177 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9db20ce4 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x9dbf5bc3 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x9dbfbd31 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x9dc057de gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x9dd69bfa get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x9dbe4a78 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9dc400b1 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x9dc5820c ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x9dca7836 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x9de19e76 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x9de25c61 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9dfa5b0b meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x9de94e4a tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x9df819f4 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x9df8464e fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e07e93a tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9e02dd2c __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x9e06e622 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x9e225dc5 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x9e26ad8d pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x9e3cd03c ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e58fdee irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x9e6e3391 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x9e6f5db3 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x9e76d704 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x9e80a26c clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x9e8b9660 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9e8c4547 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x9e92d541 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x9e95e431 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9ed4a1e7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9e9fda44 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x9ea691bf iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x9ea6c328 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x9ec104e6 mtk_clk_unregister_gates EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9edaf5b3 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x9ee30483 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x9edefc8c init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x9edffd80 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x9eea65a7 pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eed7958 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x9ef643b3 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x9f04574d devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x9f082fd6 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x9f08b8ea tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x9f08099b sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f0b95dd irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x9f0c3e90 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x9f1302c0 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x9f13cc85 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x9f20cb25 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x9f348526 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9f3c50d3 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x9f4fd903 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f2b059f ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9f324ca2 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x9f3c9fa7 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x9f4a50a0 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x9f50a1d0 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f58833e fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f72ebd1 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x9f74df5a ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x9f7d59f4 of_hte_req_count -EXPORT_SYMBOL_GPL vmlinux 0x9f8b9030 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x9f9b2eac vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9f62cae2 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x9f635d47 iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x9f6e4164 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9f8d9407 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9f9faf33 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa54fe8 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x9faaeee2 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x9fab0b93 bio_poll -EXPORT_SYMBOL_GPL vmlinux 0x9fb62abe vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x9fbc5deb crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc01621 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x9fc23d32 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x9fc988ed skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x9fcb6145 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd4c262 fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x9fe362e1 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa00ead72 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x9feb448f bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x9ffd0bb3 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0077160 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa01a2063 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa023b63f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa029c050 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xa02f5b55 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa0312f22 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0xa035d76e __tracepoint_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xa03b4dba usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa03b9ddf pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa04b1843 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xa04ccc31 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0521533 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xa056914c regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xa05bddc9 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xa064e965 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xa05c92c9 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xa05c98cc stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa067b6ce iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0720466 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa075e184 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa087a0aa devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa0930efe set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xa0981877 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0838430 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xa0853bb6 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa08aa6aa vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xa08b045e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xa093eefa fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa09b276b dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0aae706 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xa0b23f62 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa0cd4723 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xa0b00fbc pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xa0b6cf44 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d84a78 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa0d8d64f da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa0df431b irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xa0e4ae05 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xa102c000 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa10d3c96 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xa0f141ab irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa0fe99aa trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa109d55a kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa1134118 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1142b9c tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xa11b03fd regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xa12d632a vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xa13ebf78 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa14303e6 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xa13a416f synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xa13b71e7 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa154d702 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa14d3a4c of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15ebb6c __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1718698 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xa17f9123 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xa1960c4f anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xa1a4581e eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xa1c2da01 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xa1619ea8 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xa1693b28 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xa17167c5 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa175c819 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa1763087 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa18289cd bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xa1ab80f0 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xa1bb62ea __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1c8ac85 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa1ca33e9 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xa1ca93f8 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa1cf9145 pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1ea3a1c __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xa1eaa66e acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa2061812 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xa209dc4f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa1e9705f of_css +EXPORT_SYMBOL_GPL vmlinux 0xa1f8ee85 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xa1fea6fc device_add EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21bdfe5 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xa21d5d8e devres_add EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa2235167 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xa225bb8a crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xa223c862 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa237469b crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xa23ff1b1 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xa2437955 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xa24a756b tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xa24acadb kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xa24e372e dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa255d8d4 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa26ba1c1 mmput_async EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26fa520 tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa2720c98 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xa27fb7a6 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa26de8e5 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xa27347aa power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xa2736af5 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa2861379 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa28f80ce fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xa2971266 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xa2987177 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa2a1a3c8 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa2ad99d0 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa296ff0f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa2974b71 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xa29b272e input_class +EXPORT_SYMBOL_GPL vmlinux 0xa2a74669 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa2a79e79 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xa2ac292a meson_pinctrl_probe 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 0xa2bba73c blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xa2bfe4e8 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2bd03cb usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2c43fb3 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xa2d5b4fe __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa2c53a7f skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f2ea4e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa2e1c74e of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xa2e57566 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa2f15004 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xa2f67ef6 iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa305f00a __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa323d183 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xa334f165 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa312c364 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa32d2ee5 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xa35298a0 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa35807c9 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xa35c2522 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xa364a1eb ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa364d2c7 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa36f8636 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xa37564a0 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xa37e7501 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38b733c __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa38e808a devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xa3903a84 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa39c71a6 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xa39dc4c1 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xa38d00dc devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa3927d0d fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa39f10e4 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2f34d of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xa3b275a6 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa3a343e5 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xa3a647be regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa3b34d31 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bc9577 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0xa3bdc69e irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa3c5453e spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0xa3d7e513 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xa3c3fd57 extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e4a8ab crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa3e9706d dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xa3ea0b09 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xa3e732c9 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xa3e952fd ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3ef1419 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3fa74d0 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xa3fb7f87 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa409b960 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xa40cfcf7 gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa42b5352 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xa442021a screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xa444d47a thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xa44681d7 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xa42b293c icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xa42b2ed7 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xa432bffc ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa43b04bc irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44e6ae3 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa454bdd2 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa46caab4 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xa4721251 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa45eaef0 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa47a5690 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4947e31 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xa4951dfe genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xa48aa952 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xa494ada1 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xa4a07959 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b41c21 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa4b4877b devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c1ad27 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xa4ccda14 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa4d1074d nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xa4e2efdf tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xa4e3d3c1 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa4c69b2b devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa4cd3958 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xa4d0c177 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa4d47ce0 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa4df62d6 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xa4e04e1e devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xa4e1ae49 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4fa5452 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xa4fc7571 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xa4f308d0 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa50162ac of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa503ebe1 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa51160e5 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa5179d48 __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa51d267e of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xa5208652 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xa5282139 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xa52f0272 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa51820c1 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xa52336b0 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xa52ed539 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa563027f __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xa565f4df kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xa557f4d7 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa559ab78 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xa559b838 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa57052d1 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa5749fac spi_async +EXPORT_SYMBOL_GPL vmlinux 0xa5755bc0 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa57c7aa8 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa585233c device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa59aa9a5 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa59d637a acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa5929a64 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xa5ab8e3a phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa5bc1fca ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5be3c4b init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xa5beea78 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xa5c452b1 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xa5c6d1b1 fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xa5ccca4c sync_blockdev_nowait EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5d9115e rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xa5dd359c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa5db9539 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa5e21893 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa616ac85 fsl_mc_obj_reset -EXPORT_SYMBOL_GPL vmlinux 0xa632a609 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xa638605f show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xa63f5671 vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0xa63f96e1 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xa6453b02 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa62937ea clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xa62bf844 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xa644188f __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa64c70b8 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xa650c312 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xa6567e68 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xa64c427f irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa652572a vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xa6530aaa kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xa657937d regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xa659cfec of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa6701166 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xa6771306 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xa67b278f do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xa67f8f49 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xa662c12b genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xa66a5ea6 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xa69498fe tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a56b7e xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa6a6427b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xa6a6a293 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xa6a9af64 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa6aa95fd usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa6ad4256 ata_acpi_stm 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 0xa6c14182 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xa6ccd3eb securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa6cd4aca vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xa6d8072e usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa6dad1ca bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6dd6112 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xa6e0252e ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xa6e0661e __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xa6e19bf4 mmput EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ebe1b2 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6fae9cf disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0xa708577c of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xa6f347f7 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa7267f35 acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa739d66c usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp -EXPORT_SYMBOL_GPL vmlinux 0xa755dd49 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xa75dc038 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xa7650278 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xa77cc273 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xa77a24a7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa77e082a usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa7960ad0 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xa7a12a34 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xa7a5b369 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa7b0faa2 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xa7bcebaa usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xa7be51cb cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xa7e6ab6f crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa7f71fe4 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa8188c53 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa82d4ab6 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xa8345f33 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xa83d9c80 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa850745e pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa78a8cb1 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7904cb9 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0xa79c3991 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa7a04d75 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7a1e38e fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7b95996 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa7b9c6ba irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa7c1952f fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa7d03331 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xa7d221d7 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0xa7db4d9b crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xa7e370c4 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xa7f1e88e mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa7fb6a3b clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa813fa7e devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xa82211cb blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xa827f31d xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa82f6c4f class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa83b8086 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xa843190b ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8527a5b udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xa855e751 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xa87038ca dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xa878c345 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xa878f7b6 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xa8604a7c dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xa86da97d extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa87d12e9 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xa87f3913 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xa8802a80 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xa88a64ae tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xa88cd51b dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa884cd74 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xa8947798 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a1fdca blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xa8a22617 pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8a7ea4e elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8a92336 device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xa8ac9583 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xa8bc631e i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8c42092 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xa8d4be17 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xa8dad51f dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xa8e75b40 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xa8e7a7c1 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xa8ee572f devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xa9041aff gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa90c9aaf pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xa90d04c1 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa912bd9d of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa918ab9d iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0xa924ffee crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xa92cb95f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xa8a74fb1 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xa8aa5196 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xa8aec433 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xa8d0c034 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xa8de17eb unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa8eee58f xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xa8f92ef9 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa9037fc2 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa907e2f1 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xa91afd8a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xa921689d of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa9284b05 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ade59 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xa93ea9fd __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa9474fd1 vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xa94c687f mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xa932f9c0 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xa9411ade genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa962a1a7 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa967bd7d dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa974d45f pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xa98c1473 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa98e622b of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xa990e476 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xa9727c65 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xa986b035 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa986b287 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xa989de45 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa98fa93b pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xa992b9b6 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xa9936b49 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a65eff get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xa9ab51eb usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xa9b7e43e usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xa9f25aea sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xa9fb28f1 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xaa079379 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xaa12fd5e clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xaa1670ad fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xaa356813 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xaa4b8498 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xaa5cf001 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xa9a0992b cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xa9a6d60b fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa9c39818 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa9dde9ce blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa9f38104 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa9f8e41d regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xaa09f7d4 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xaa151e1c rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xaa236234 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xaa2379fd kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xaa263bec i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xaa351e4c devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xaa3e5bfd iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xaa4120a7 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xaa52e624 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa76a140 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaa6f9881 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xaa77f703 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa8f4f8b tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaa97b6d4 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xaa98cfb6 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa99ae45 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xaaa4340e pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0xaaa6b534 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaf7232 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xaab39313 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0xaac578b3 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xaac85536 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xaad18539 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xaad1d3d2 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xaad6e46b dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xaadb649b __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xaabb48e3 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xaac00c30 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xaac1dedd fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xaaea4063 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xaaf5737d hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xaaf9f4f7 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock -EXPORT_SYMBOL_GPL vmlinux 0xaafb60ca unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xaafbd431 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xab032b7e pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xab05f9d3 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab0b0370 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0xab0ff87e ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab1fc5ba devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xab2155a4 genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0xab284884 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xab31970a xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xab3a5b46 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0xab3f2c4d divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xab535c7c md_run -EXPORT_SYMBOL_GPL vmlinux 0xab5a0a06 mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0xab5ce2be rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xab5e52d4 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xab631c5e device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xab212c75 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0xab480ed4 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xab57844d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xab7143e0 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab8736a8 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xab904a1b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xab9a9fea clk_register -EXPORT_SYMBOL_GPL vmlinux 0xaba0b47e sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xabba8209 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xab89e2cf gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xab8f666a check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xaba4f318 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xabadbcc4 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xabbccc6a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xabc0e930 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc6b802 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xabcfd3d0 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabff7c22 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xac074044 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xac10eab0 swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0xac133140 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xac13a228 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xac1640bd dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0xac17c0b6 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0xac19a3ae devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0xac2716b4 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xac2efee8 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xac34a77c of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xac3cecc9 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xac3ea84f tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xac3f3f43 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xac468a09 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xac4e84d7 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xac602dc4 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xac7f1915 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xac80c75b xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0xac82d01d msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0xac8f54ad __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xac9cc557 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xabdb88dc tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0xabf22c84 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xabf5a7c6 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xac2574b0 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xac38caa1 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xac4296d2 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xac434c6c inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac738d9f fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xac740c0b ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xac83514c pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbe7ec0 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xacbfc317 devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacb8b36d kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xacba5873 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacf586c2 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xad20a2d1 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xacd040b4 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xacdaf3e0 led_put +EXPORT_SYMBOL_GPL vmlinux 0xacdb8802 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xace367ea pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xad1d583a __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad27d5f0 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xad35b87a iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad3cfa95 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xad3d2e1e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xad3c933b bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad482019 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xad4ce45c thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xad46e96f pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad51197e devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xad5cccfe mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xad5063fc dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0xad5be080 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad73bf33 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xad68fed7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xad6c56b7 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7ca99f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xad7899bb device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad9823e6 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xad955056 of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadb22de7 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xadbd838d rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xadd5b6a5 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xada38cda bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xada7352e of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xada9725b ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xadb49848 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xadc09b52 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xadc2aee4 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xadd95ce0 user_read EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xade620c8 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xade9482a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xadef2e1a kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xadf0d28d rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae05b72f simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xae0be13e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xae0700fa __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xae073687 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae0f974b mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae186f47 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xae2f6eb1 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xae15ce39 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0xae178178 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xae2cfc37 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xae3232fa __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3c8aca sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xae3e97ad tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xae460f63 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xae466bc9 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xae4a6160 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xae4ebc26 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xae5cec1f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xae5debea fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xae616fc6 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae650e49 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xae6538fa regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6ee668 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xae7ba797 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xae7251f1 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xae7929e5 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae803951 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xae7da798 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xae7e5f64 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xae80a2dc __tracepoint_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0xae814db6 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xae8d0307 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xae95e2ab blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xae9bf369 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xaea05933 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaeaacadf kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0xaeb7faa1 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xaebe68f4 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xaec1b1bc __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xaecc5fa6 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xaecec297 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xaed97aab __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xaeea3429 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaeed9586 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xaeeec79a serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xaefa5f69 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xaecccf16 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xaecf2efc xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xaedfb133 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xaef96382 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xaf02130a wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf093398 devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf1bfc92 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xaf137758 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf221471 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xaf2b181a iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf3a7520 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf3d5706 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0xaf3ed93e srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4e77a0 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xaf637e17 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xaf434de2 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xaf75c50d regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf83e242 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xaf84e8ac ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf92a22f pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xafaf50d7 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf9342c7 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb5cde2 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xafc6e1d4 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xafc934ed of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xafcde6e5 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xafd8a96d devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xafc47973 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xafc82869 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xafd79125 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xafdd444b i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafdf8a99 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xafe32b47 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xafe8780a dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xafe8b786 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xafe9b6c5 phylink_generic_validate EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafec6927 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xaff8aed1 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xaff937aa devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xafffdc5d fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0xb008cc57 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xb0096b3d input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xafebcd77 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xaffbc8c7 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb00edbf1 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xb0261775 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xb02a474c fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb010e1a8 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xb01a4983 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb01f8125 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xb0234ef8 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02ddb15 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xb02fead4 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb0318473 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb04e1fb2 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb04b2805 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb0624db2 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb062637e dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xb06acfbe pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xb06f0481 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb078970e spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb084fef7 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xb07a9640 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xb07e5efb scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb0824d6b soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xb0875a5a __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb08c618d tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb08fba2a devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb09467ba buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0xb098bc84 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xb09fa4f4 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb0a19f22 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xb0a3ebc0 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xb0ad04e6 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xb099c304 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bc67ee of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb0c82b46 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb0c506ea class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb0d132f6 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e6ed9a dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xb0da125d pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0eada61 get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb0f03ab8 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xb0fc31cb usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xb10cd6a9 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xb0f11fc4 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xb0fe54c9 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1127142 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xb1116e0a kill_device EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1203f7e fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xb120bb4a rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xb12601de to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xb1290a60 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xb155acf2 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb1620e1a dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb16341bc ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xb16469ff wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb11fd08d fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xb126579e pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xb13b27cd modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb13b42b6 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xb1492923 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xb149a189 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xb157afae clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xb1586ec1 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb15c6fe1 power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16ab1fa spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xb16bb0e5 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xb1750042 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xb17657d5 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xb1801f9c usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb1973f57 iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0xb1977350 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xb19e8f96 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xb1a84a44 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xb1a9e46b virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xb1b82726 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xb16dcd46 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb16e8634 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb175d10f fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb18e77df devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xb195e375 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb19af1e4 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xb19f8367 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xb1a8943b irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xb1b1b348 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d07991 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xb1dfe918 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xb1dcc891 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xb1de8ec1 class_find_device EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e4c646 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb1f3311f tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb1fe2323 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb2015328 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xb1fdf4f2 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb20d8dfd irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xb211a0b6 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xb20d55d7 fscrypt_add_test_dummy_key EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2216843 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xb22aa699 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb23b5a85 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xb2229bfe devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb22a93c5 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xb22fef55 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xb232c6ba __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24ea6af fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xb24219f2 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb2426e43 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xb2436afc fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb243f5c0 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2613244 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb289452e clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xb28956c4 vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a8dbbd pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xb2ac821e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xb296507a css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xb299bece xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb2bbc098 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb2bed66e ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c79986 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xb2c961c5 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xb2c99901 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb2d5710e dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xb2da56f8 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xb2e17132 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb2e48931 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb2c26380 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb2c7d547 phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xb2c91add edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ef6db4 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb2f2b39f device_link_add EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb306aa99 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb303d3b8 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0xb3051160 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full -EXPORT_SYMBOL_GPL vmlinux 0xb30c9e52 mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0xb30d3ce3 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xb3144ce0 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xb325c9b2 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xb3290b6b irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xb32cc687 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xb33afd80 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb342de7a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xb34c2cfa fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xb37c7dc5 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xb3857856 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb3911f11 dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0xb39552aa scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xb396a4d4 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xb399aeb0 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb3aaf10a ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb3ac9d96 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xb3b4bb36 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xb3b571d0 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xb3c800e3 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xb3cb5661 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xb3e3445b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb3e95de9 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0xb3edd1fd usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb3f9d19a fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb31a9488 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb31dbdbb vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb3234494 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb34baaad thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb351e5c5 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xb35a719c balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xb3770832 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xb3a31a7f nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb3a644ac cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3a68bfa acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xb3ab14ed d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xb3d6b368 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb401cc8c serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb41db86a spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0xb41fc919 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb43b60cf trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xb41637b8 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb4178f74 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xb41d9412 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xb42191c7 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb42d601a gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xb4394f18 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb43be4e0 pci_free_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb43fee12 dprc_set_obj_irq EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44be8b5 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xb444ae4d devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb486a37d phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb452fbdc pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xb45710f3 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xb46153fc nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb46555be extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xb4750918 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xb47756bb raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f30a6 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb493b26f pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb494a814 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xb498f7b8 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xb4a3561d wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xb4a46ea7 __virtio_unbreak_device -EXPORT_SYMBOL_GPL vmlinux 0xb4b52515 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xb4ade3dd kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4d67642 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xb4e6f538 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xb4c84053 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4cffc6c rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xb4d11643 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xb4e2eacb fsl_mc_bus_dprc_type EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb500d062 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb500ec12 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb4fa6975 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xb4fbba6b usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xb4febbd4 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb50b0b5c fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xb50f4d4a ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb514daec clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xb51af9bf usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xb50b4112 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb547f77d switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xb54d7753 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb54efc22 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb551ca2d bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xb553e466 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb556c12b mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb5743ba8 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb575f567 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xb58089ee md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb58367a0 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xb5893fef meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xb56c27f6 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb578fa47 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb58f5426 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb59c2926 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb59d6cf9 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb5a674e7 mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5afb426 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xb5adbabb crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb5ae5dd0 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb5b02ef5 devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5bdf319 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xb5d1fe4e ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xb5dd5a6a set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb5de04a8 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb5e88660 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xb609568e usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0xb60a1c52 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xb610795f devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xb61ecd37 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xb5bb4783 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5cc3f83 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xb5e189e9 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb5e4a8ab spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb5f1a0ab crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb60bae93 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb610fcaa tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb61605e4 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xb61c7939 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63815d3 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb65332a6 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xb6539915 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xb6548bc0 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xb6552dc8 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xb655c38b __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb64151b4 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6475817 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xb647b9ce pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb64d39da find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xb64e6a10 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6736365 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb687c702 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xb68ff420 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb695ecf9 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6aba2a8 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb6ba3b3c irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xb6ba98ac regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb6bf690f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb6af2c34 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb6ca6a5b of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6d48e1c generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eaef22 icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0xb6fb279f pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb6fd9a3d platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7019376 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xb701d437 ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb7095331 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xb72dddf3 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xb7308f53 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb712feaa of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb72a25b1 acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb741772c icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb74f8f57 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xb7542d41 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb75d3a60 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7665247 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xb77b38eb bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0xb7815451 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb76251d8 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7681e68 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xb7683c62 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xb770ef5b scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xb77afbca acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78c424f kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xb798e9cf phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xb7a0fdab fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xb79a0a49 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a495da tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xb7a613ee clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0xb7a6b7dd cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xb7afcd1a clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7af9cf2 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xb7b17711 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb7b3ad47 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb7c42ba6 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xb7b77d6d meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7cf5625 vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xb7e2c073 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xb7e5b020 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xb7efe5e9 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xb7d4115b dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7e50e46 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xb7e63e9d devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xb7f5e45f iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb7f7d65b pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb807b8be wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb8130e62 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb813e5f8 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xb81d8c05 dpcon_set_notification EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8328fdd blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xb83a869f fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb829c931 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xb835c80e sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xb83d4313 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xb84e6898 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb859cc3e thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb881a4e2 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb882ff07 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb8844980 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xb88d3316 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb896364f ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a8313d kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xb8a8e070 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb8b1b8ab evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8ba94f6 ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xb8c65309 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xb8c28efe pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d93120 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8e8498a regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xb8d15dce xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb8de303d ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8e70274 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f92be0 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xb8f9832c pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xb908da03 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xb90b5478 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xb8f7cdd4 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb921774d max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xb9241846 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xb92d431b mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xb94032e1 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xb91bae75 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xb93b2877 power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb940fc08 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb9455305 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xb9614e35 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xb961c05e gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xb945380c pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xb947f1c4 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb951fb5d xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xb9607e8d percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb969e2f4 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xb973c945 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb9806487 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0xb98130c9 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb99419dd irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xb985bf33 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb99f1055 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb9a11c50 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xb9ab1902 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ab4257 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xb9b12d30 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xb99f994d fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9a57ef0 xhci_gen_setup 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 0xb9c52e78 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xb9c8558d inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9cfad84 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d065a9 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xb9f8e530 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xba053b10 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xba0574ee fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xba14b970 dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0xba1655a2 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xba169627 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xba1c9e82 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xb9f4637e crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb9f736db relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb9ff96e5 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xba00719c tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xba07709c bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xba089a53 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xba0ff023 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xba2100ca dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba241b44 vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba30911f i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xba3f4172 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xba61f482 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xba742b8b clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xba8786bb devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xba40d0ad list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xba506020 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xba54b948 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xba658275 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xba6f396e edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xba844984 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xba93ac1b dev_pm_opp_of_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xba9f56ca iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xbab3d3b2 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xbab93693 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0xba9f65cf ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbaa7e322 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xbab95bfb onboard_hub_create_pdevs EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac3c5ce fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xbada417a max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xbac1836a ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0xbad034ef __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xbadb374f strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xbae740bf dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0xbaee1804 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu 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 0xbb155c24 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xbb1ffc83 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xbb207682 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xbb1cfc60 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb2abb16 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xbb340755 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb4a6bad sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xbb540247 mtk_clk_gate_ops_no_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0xbb54e3ed strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xbb585d08 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xbb5f0cae serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xbb45e08e of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xbb4fdccc da903x_write EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb691c29 xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb6f6476 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb75a1fa phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xbb7cd428 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xbb861a28 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xbb859543 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xbb8d7f05 meson_clk_dualdiv_ops EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb980e82 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xbb9eb2a6 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xbba1fcab nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xbba90bb0 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xbbac9cf4 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbc6d013 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xbbdca86f acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xbbe0b429 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xbbb9286a dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xbbbe9562 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xbbd4111d inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbeb48f4 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xbbef32e9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbbefff91 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0xbbff173f regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbc012719 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbc08f39e xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xbc232862 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xbc082277 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc0ef0b3 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbc1bc394 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc3791a5 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc50f888 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xbc5bc181 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0xbc5ceb29 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbc529981 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xbc546a33 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc61857f replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc752782 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xbc7d80a9 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xbc9b6984 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xbc896a8e blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbc8e1f5a power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca83415 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbcaea173 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbca8b68e devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xbca8b863 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcbf3082 vcap_keyfieldset EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcd4baea ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xbcd1b8e0 __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce0f934 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xbce68c63 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbcecfa19 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcff2366 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd0bf827 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xbd1f9435 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xbd162dbe devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xbd29117f gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xbd36accf blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd526a2d debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd538066 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xbd40a6fe pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xbd43f90e bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbd4d131b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd4dfd95 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd512c29 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd5b674c dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbd5f45cf devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbd63abab thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd701d96 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xbd5d3574 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbd606cde set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xbd6153f8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xbd62fce6 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xbd6bef56 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xbd7a06f6 clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd86cd60 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xbd879bde fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xbd89538a regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xbd8e2422 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xbd86a2aa skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbd9030b7 devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdac9bcf serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb23711 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdb9d920 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xbdc65582 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xbdcdc8f6 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xbdd9815b imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xbdb987f3 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xbdd742c1 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbddc33d3 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0xbe0ebf5a devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbdde7f26 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xbde6f24d devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xbded8b7e sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbdf5af88 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xbdf8dc8c uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xbdfd2d54 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xbe0904f5 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0xbe150810 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xbe1711d0 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xbe1fd8b0 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xbe202cb3 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xbe209019 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xbe2a326d __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xbe2d65fd of_phandle_args_to_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xbe441e98 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xbe177e7e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbe398725 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbe5a90d5 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe61e9da ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe70d62c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xbe713245 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xbe7d46f3 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xbe89358d fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xbe6f7c42 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xbe7c3006 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbe7d0cd5 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xbe83ebc5 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xbe86cd24 kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9937df devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea3407d hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb4533a cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xbeb6cd57 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbea86ae4 pm_generic_restore_early EXPORT_SYMBOL_GPL vmlinux 0xbeb7b7d3 __traceiter_rwmmio_read -EXPORT_SYMBOL_GPL vmlinux 0xbec5852b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbebeaa71 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbec141ba clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbee5c23a splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xbeef9b85 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xbed09878 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xbef3185a ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1d7a2c irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xbf0bf466 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xbf166144 irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf35ab10 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xbf38bb85 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xbf39be09 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf36d7f3 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xbf3cda88 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf732756 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xbf7624a2 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbf974cb0 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xbfa2d5be devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xbf50a115 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xbf889318 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc5f1da scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xbfd116a8 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xbfe1a3a7 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xbfbe5d20 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xbfd6a384 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xbfd7c33d fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe6b332 acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbfedf07e spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbff3143b led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfffd2d8 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xc01cc3a2 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xc04184b0 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xc04496d8 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc02a4f54 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xc02e84f3 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc03074f1 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xc0398de3 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xc04351ef mtk_clk_unregister_dividers EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc047ec21 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xc04853bf devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xc056a35d mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xc0485dd0 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc048f618 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc05e2546 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc0634c65 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xc0709110 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xc05f4048 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc065ea11 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xc081438d scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc07aa6e3 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc091f5c7 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xc092d1e3 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0xc09e14b1 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xc0a2d768 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc097b77e debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base -EXPORT_SYMBOL_GPL vmlinux 0xc0a66447 pci_epc_mem_exit 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 0xc0b62be0 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xc0cfe62e fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xc0bb421c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xc0c16acc fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e0bb38 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xc0ebd82d crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc0dea95f max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc0e755d1 class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f26e90 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xc0f8b6e5 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xc0feed47 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xc10301ae usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xc1086c09 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10a9163 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc12afad5 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xc13ef6ce devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xc13fc468 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xc143329d irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xc11f2990 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc1379819 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xc13a2b02 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xc144e382 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xc14f7616 __SCK__tp_func_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0xc1506e9b pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xc1587b63 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xc17141f4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc151d1af __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xc15a10ba icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xc16f1091 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xc1703ed9 sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1775049 pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc180c5c4 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xc1812123 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xc18d2820 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xc18dd453 iort_put_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0xc1934106 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xc1998f47 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xc1a99b77 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xc1aba64e sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xc1bfab4e ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xc17fbfc4 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xc196d8fc ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xc199c5ec kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xc1a6e0a4 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xc1c7ba26 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL vmlinux 0xc1db342b PageHeadHuge -EXPORT_SYMBOL_GPL vmlinux 0xc1dbb6a7 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc1eb260d cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xc1ecc767 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc203c93e perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xc208edec crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xc20c6374 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc20469fb pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc204903e thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc230001f scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xc2351ea2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc22abd52 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xc22df521 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc233010c pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc24187ca power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xc245e25d virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc23c79ce tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc24e3446 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0xc24f36ed dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xc2536b36 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc248b561 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc256bdce crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc26088f7 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc2662d39 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc263d217 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26aabee __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xc27c37b5 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28b1eb6 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xc2921c34 __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a48590 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xc2a3ffc2 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ab3951 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xc2abec08 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc2ae22db regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc2b26833 fsl_mc_device_add EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2b98ad4 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc2bb82a1 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc2bf05ac dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2cb1cf5 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc2c8d57b umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xc2c91215 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc2cc3382 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xc2d444c8 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xc2d7c7a2 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xc2dbd980 extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e00070 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xc2e2d088 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xc2e3b191 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xc2edb555 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xc2f02a4c phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0xc31211a1 vp_legacy_set_status -EXPORT_SYMBOL_GPL vmlinux 0xc3252a61 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xc33142a6 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xc333ddac crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xc3388b6d fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3394cbc devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xc33fb768 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xc2e80599 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xc31fb32e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xc33feebf tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34a59c8 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xc34c8468 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xc355e002 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xc3563daf pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0xc3651b5d qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0xc36aa0c0 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc34b1e4d devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc34bb866 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc34c7c6f dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc354602c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc36a7c62 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc36e5c75 of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3781ede divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xc37e827f serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xc373d857 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc376b13e security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc378f05d gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3816cb6 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xc3834257 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc38cba0a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xc38fed8a fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc39792fe shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc392ced7 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xc395708a tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc39a6822 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xc3b30773 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xc3b4165c devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xc399b6fc cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3a90d8d crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3aa3031 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xc3ab06c6 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc3adfedf gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc3b8b5fd gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xc3b92d23 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc3b94adf dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc3ba4742 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xc3c09caa pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc408ab23 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc3fb2294 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc42e6d64 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xc433bab2 dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc44c4db6 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45af518 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc45d4099 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xc45ea2ff cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46644fb pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xc46b7ddf devres_release EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc475561d inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xc476d1af iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xc477afcc fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xc4886a50 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xc48f4150 iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xc48526f7 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xc4859977 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc48e32d2 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xc4946bc2 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc49f9f6c tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a3626c skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4bdc5d1 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xc4c95aa8 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc4ca2c26 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xc4d42a97 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc4dcd6e9 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xc4e03f06 mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xc4e3fab8 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc4c23545 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xc4c3b9fb wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc4ce22cd dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4d8e1b7 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xc4e1d779 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xc4ec4c3d mtk_devm_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4fbde48 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xc50c2ac8 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xc50f6ffb usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xc4f9bad1 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc517bd6d regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xc52b5d4c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc52cc71d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc5389990 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc54131cf fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xc545874e dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xc54eb5ee fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xc551b722 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xc5458615 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc5494491 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xc549ebbf nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc560f5ca irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56bab87 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc583a800 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xc584e621 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc57a3b99 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc598086e msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc5a4499c devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5ba7766 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xc5cd91ed gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xc5d3dcc6 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xc5dd6ada clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xc5e528f4 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xc5e5e187 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xc5ec10e2 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xc5a98065 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5b41320 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xc5bdccfe kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xc5c077c5 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc5cd5fc2 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc5d3a2fa phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xc5d6ffd9 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc5d8dfae ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc5e2ad23 amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc620832b wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62f4ab0 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xc63330e1 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xc62d3cdb devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc638937f __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xc63a4aba mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xc63d8aa5 pci_p2pdma_enable_show EXPORT_SYMBOL_GPL vmlinux 0xc644eb36 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc64a5d83 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xc64f2445 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xc65672f7 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc6575f8a iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xc65c3a29 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66258a9 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc666005e pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc670d98e pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc670b07f auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc673fa8f dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc690df06 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xc692fce4 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc6957743 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xc6970955 mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc69ad5c0 replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a214fd of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a9007f dm_put +EXPORT_SYMBOL_GPL vmlinux 0xc6ab0442 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xc6b0a75c mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xc6c35d65 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xc6b1851c fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc6baacf1 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc6c0d912 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xc6caa533 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xc6d253d6 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xc6d2f1d9 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xc6dbf751 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e84b52 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xc6efc8b8 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xc6f89a56 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6f4b2f5 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6fc656e spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc6fddd44 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xc70290f1 divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc707f058 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xc7105b26 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xc706251f mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc708bdf7 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc709c4dd fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc727031b blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xc73bc837 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc73e8d29 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xc7421d5d inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xc749a7d7 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc75294c0 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xc75b49a4 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xc764a4dc pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xc77a7af0 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc72e8e81 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xc72fee77 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xc731aae2 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xc7398849 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xc73fdce0 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xc754e91a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xc75f4d86 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc779030b usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc7869086 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7881779 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xc7965f47 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a3e02c __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7c00224 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc7afa084 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xc7b689ae bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c91eb2 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xc7d39f68 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc7ddac11 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xc7de9dba dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7eaa1a1 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xc7f6d1ff debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xc7ef3300 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xc7f5578e da903x_writes EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fbd379 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xc80a36a5 pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc81838e8 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xc814cc89 dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82f8015 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xc837f54a nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xc83ba331 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xc83d236e mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xc84f3ab0 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xc8397c08 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xc851fb76 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8561b45 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc858da3a switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc869c871 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc8778e8d ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xc87dd040 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc859bc08 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xc85aa47b virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xc8669515 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc8771c41 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc87e8bca pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc87ef193 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xc88601d8 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc889872d stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xc892bc0d icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xc887fc4f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc888b9b6 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc8919f4b mtk_mmsys_ddp_dpi_fmt_config EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0xc89edc22 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc8b786f0 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc8d40d15 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc8d95ff1 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xc898a08b tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xc8995978 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xc89d9e03 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc8a12655 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xc8a4725e pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xc8db4178 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e73f31 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc8e8312a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xc8ee7baa virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc8f692b8 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc8f6ed7a mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xc905402b log_write_mmio +EXPORT_SYMBOL_GPL vmlinux 0xc9171837 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc91bbfc2 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc923ba58 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93a2f2e max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc93b3826 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc953c90b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc941b895 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9576ce5 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xc9599865 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xc9601691 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc968f73b get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9773e8a of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc9783fcf relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xc98009df pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xc9817421 mtk_mmsys_ddp_connect EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9857d10 fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0xc9ad274d find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xc9b891d1 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xc9c952f2 devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xc9cd5a3a crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc991dcfe ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xc99b77b5 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9a08946 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0xc9a0e087 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xc9a1a5fc pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xc9a8be0f __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9aac7b2 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc9c5d0ad iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9d00d9f regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc9dfb399 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc9d20c31 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc9d65d62 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9fa5e90 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9f0c6cd device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc9f66474 dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fc7270 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca092ba1 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xca2fb92b cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xca390e15 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xc9fe6d8e dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xca10f079 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xca1a3ceb of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xca1a88a6 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xca1ba2de virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xca205d27 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xca27642e sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xca2b72a6 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xca2c50c1 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xca3a9a92 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xca441b86 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca77e306 dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xca7b83f8 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xca7c16a2 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xca5b1b9e dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xca5c23c2 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xca649e54 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xca690fbc gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xca6a69b5 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xca714ded dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xca769d51 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7dec82 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xca80f431 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xca8df1d0 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9ad14a pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xcab15baf tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xcab59f12 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xcab86e7e scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xca9b8a77 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xcaa64a5e simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xcab6d50d of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xcab84979 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac989d7 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xcac252ec devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xcacb8516 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xcad5c4bb phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaf02df9 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcaf10c16 nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcb01e9e6 mtk_mmsys_ddp_dpi_fmt_config -EXPORT_SYMBOL_GPL vmlinux 0xcb0f5d97 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xcb0faf9a qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xcb17ab05 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xcafa2ac5 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcb020c5b tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xcb0fb625 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb108153 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xcb198d11 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcb1e04d4 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb36e505 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xcb4a8895 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0xcb5179d8 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xcb421ab1 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xcb42b669 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xcb55d0fe devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb5c6795 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xcb5e66f5 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xcb6a53dd cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xcb6efe47 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb7552c0 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xcb7997af iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xcbba7687 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xcbcae635 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xcbd701df xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xcb8a0a97 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xcb973576 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcbad7416 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xcbc551a9 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcbdc045a irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcbe42139 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe6d8cf fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xcbec34ae udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xcbff069f __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xcc03cbc4 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xcc07244f generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xcc0e7184 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xcc01aada led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xcc02a444 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xcc053f00 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xcc0df3ea dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc1b1aae tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcc153c79 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc3324fa xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xcc399efc auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xcc2e088c uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3d3e3a crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xcc41369d xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xcc4cde65 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcc59c526 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xcc688719 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xcc755f34 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xcc75607f bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xcc4f116e sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xcc508e23 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xcc52703f pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc573cfe ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xcc62577f xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xcc635346 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xcc7d65b5 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xcc87576e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xcc8b50b1 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xcc91ac8d skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc93d903 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcc9a6a86 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xcc9cf0c0 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcca02d64 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xcca3cc77 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcca3e090 usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccac9aca sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xccc52ba6 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xccc6b875 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0xccc93995 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xccb357b6 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xccc69a48 devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd36316 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xccd3731c device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xccd82b5b sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xccd8575a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xccd0c6b0 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd99af6 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xcce1242d dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcce49f45 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xcce6cead bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0xccebc3e0 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xccf113ca devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfc51f9 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xccfed34f of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xcd03aecd ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xcd0754d7 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xcd1b12a9 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xcd02b382 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xcd126904 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xcd215c5c bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd5151c9 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xcd5e146a rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xcd6a6921 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xcd462ebb iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xcd5642ce mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xcd59f82d rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xcd5ceb9c rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd707401 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xcd7215c3 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd7b14b6 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xcd902206 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcd870413 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xcd886e96 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xcd8e3d4d pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd91325a icc_enable EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9d8d9f dev_pm_opp_get_of_node 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 0xcdba3777 mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0xcdc067ee devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcdc7c93f md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd3c7dd pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xcdd8bbdb wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0xcddffced dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xcdd0902e nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde41e95 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xce0472e8 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde77e33 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xcdea7dcc devm_clk_hw_register_fixed_factor_index EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0ffe31 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xce2b7323 dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce40a36d blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xce44e50f key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xce4d91d8 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xce4e6dbd smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xce514b4e devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xce54bcd7 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xce3a9621 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xce49eec0 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xce4a2c83 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce527ae8 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xce57e5f9 kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce692363 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xce69cd4d subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7d26a3 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xce83704d vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xce8b2ab9 pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0xce8fda99 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcea5ba11 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xce8a5230 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xcea189a1 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceaed370 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb2f110 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xcec7ef09 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcecfbed1 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xcee13bfc __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xcec20d38 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xced312f0 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xced71b63 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee2cad4 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef67fc1 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xcef6be02 devl_port_register -EXPORT_SYMBOL_GPL vmlinux 0xcefdbb9e led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xceffb167 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcf005539 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xcf0e664c __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xcf12370f pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcf1cea97 fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xcf310fe8 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xcf428153 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf4b047f usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xcf4ef4fe rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xcf6006f1 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xcf6ecd2b blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xcf909c2b percpu_is_read_locked -EXPORT_SYMBOL_GPL vmlinux 0xcf9a022c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xcf9fffe1 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xcfa38d9b dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xceff820f mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xcf08e9d1 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xcf08f788 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcf1b1941 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xcf284f71 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xcf3a125c dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcf575117 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xcf5e23a1 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xcf60410b extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf67ecf2 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xcf69934e xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xcf6e7293 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xcf714eab serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xcf76b604 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xcfb55c1d unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc5a54f debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfded8a4 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcfe1060f fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xcfe1a4ec fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xcfe97a47 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcff5290e add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xcff811b6 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xcfdc6014 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xcfe11997 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xcfecee79 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xcff06064 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xcff89090 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xcff8ca62 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xcff8d28e dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xcffed393 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd0146fce mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xd019a914 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd02ec601 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xd03c5d35 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0271ad4 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd04528f8 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xd04162cd bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xd04435bf irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd046a49c regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd04e40f6 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd0598aa0 fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0xd05f76a1 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xd0630f49 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xd056e597 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xd0596395 regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd06546e0 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd07f9da3 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xd080001d of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xd0857d28 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xd0872d2b vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xd08e2c1d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd06a8847 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xd08031b2 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xd09713d9 dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09b0b28 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xd09f2635 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xd0bc3d85 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0ba80db crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c65598 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xd0c81f0e clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xd0cb2f66 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd0cf62ee fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xd0c304cf dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d3d384 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0d2869f tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d8200c pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0ee756d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd0e531e3 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xd0f25657 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xd0f4bff0 regmap_field_test_bits EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd108dbc3 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xd10995bf acpi_dev_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd11305cd of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd1245a92 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xd135f4f6 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd102da46 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd107507d bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xd115fb56 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xd117936d mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xd11a823d espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd11c285c __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd12b5b95 dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xd13aafe3 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1549e86 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0xd157dc46 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd154bd23 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15b3e74 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd15c6ee6 of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd179030f relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xd17ab074 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xd192f83f iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xd1991972 meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xd1a46e29 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xd18a1902 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd19092a0 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xd1957d23 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd1966558 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1ae4f6c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xd1c40e8a devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd1c475c9 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e41580 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xd1cc0805 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xd1cd5924 dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd21769be rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1fe72fe user_describe +EXPORT_SYMBOL_GPL vmlinux 0xd20ea817 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21a09c4 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd226312e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xd22fd5eb edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xd23e0d5d securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd2444c93 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd25395e5 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd258452f pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xd25e77c1 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd276b4a5 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xd27b5eef device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd27d2272 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd281cea5 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd2938ea6 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xd296dd0f led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xd29a0ce4 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2af0756 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xd29de52d __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2cdbc62 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd2b4f5e2 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xd2c8306c relay_flush EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2e9a113 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xd2ec789f __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd2dbb154 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2df0ec9 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xd2e52faf kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xd2e7bc91 __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd30c2459 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0xd30cb379 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xd3050803 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31e0076 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd32c7d3f gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xd3344c0c virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd341529d phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0xd34371bc tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xd34fa6fd __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd3600c28 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36a5595 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37b7cd0 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd376aba5 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xd378d297 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 -EXPORT_SYMBOL_GPL vmlinux 0xd3882d33 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xd39172b6 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3acd9c9 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0xd3c35a52 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd3c9ae64 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd3cc37eb of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd3d3c579 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd3a7db22 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xd3acceaf create_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3d2ada6 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xd3d2d864 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd3e05977 nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f09747 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4018f46 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4211dee security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd4115ec0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd413c8a8 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xd41a63d3 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd41defdc paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xd4235cb3 mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd447faf3 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd43a2929 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xd43cdd41 acpi_device_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd455ddd0 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd45e0bbe crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xd45bb34d unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xd4644e88 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd46ac17e relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46c69b6 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xd46eb645 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd473a4e0 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xd487065a of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd488cc8e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd489c05b pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd49694b9 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xd4a4bf83 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd4a4c948 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd4a57234 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xd4b2e8d9 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xd4a18d5e mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xd4a63fa6 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4a9a53c addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4c10f1b pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c1d340 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d38fd9 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0xd4d7e84a ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xd4d8e381 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xd4db8a67 dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0xd4de4fcd scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4e92690 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xd4ed14a4 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd4e88165 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd50952c0 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd50e8389 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xd51301bc thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xd51702fc pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xd5197543 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xd51d646b dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xd5046ad1 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xd512c963 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd532c53f clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xd538f475 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd53bf07f genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd54385d5 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xd541bd9c platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd5491a3f fsl_mc_object_allocate EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5509108 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd551fbf3 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xd5546299 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55f7b04 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xd565b3bb exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xd57b62cd usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd57e6bc5 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd57b5eb4 acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd586d2df extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xd58a48fd dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xd592ead5 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd58d489a sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59b8783 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0xd5b73de2 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xd5bc3070 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xd5bde74e irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd5bfda78 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0xd5cafa16 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xd5ced6cb crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xd5d0a758 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0xd5db6f12 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd5e4d2a5 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xd5fa8d09 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xd5fffe6b dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xd6011106 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xd6061d29 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xd60dfd35 vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0xd614295d ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xd61feca9 devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xd64df121 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd59b005f debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xd59b8109 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xd5c2743e debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xd5c839fc dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xd5db6035 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xd5df3070 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd5e67d78 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xd5fb8167 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd61802b7 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd61b1bea bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xd628acfc vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xd6390a73 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xd647aeb3 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd65d2a63 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xd6668c58 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xd6634472 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xd6692e6b usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xd669c11e dm_disk EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd66d339b pwm_get EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6969151 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xd69b1e63 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd69b716a usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xd69f7819 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd6a6f4d4 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xd6907741 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd6a62bcf of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd6ac0379 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xd6b21c0d skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6b9415d da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd6c2529b irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xd6cd6622 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xd6d7294e blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6dd27e0 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xd6f644cb device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd6dfdf34 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xd6e50698 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xd6ef376d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xd6ef9448 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd70934b1 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd714a33a crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd71bcd72 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xd7242e4a gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72afdb2 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xd72cfd24 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xd72f16c1 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xd72afd66 pcim_doe_create_mb +EXPORT_SYMBOL_GPL vmlinux 0xd72f2dc6 devm_mtk_clk_mux_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd749e3dd usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd739e4e1 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd7450d88 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xd74c000a of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd75436c8 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xd75890c3 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xd758da7a udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd768ce0b pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd76330c3 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd77be5f9 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xd77c8a24 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xd781d5e0 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0xd789455b page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xd7981ec3 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd76ce4e7 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd776edd9 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd77dbdf1 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xd78239cb tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd797d35a skb_segment EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7abeb8d get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xd7acbd69 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0xd7b1b785 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xd7c73f86 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7b24f21 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd7b30622 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xd7b9dfea fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xd7c875df devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d34628 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7da646d firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7f07ef7 ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0xd7f2d701 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xd7ff32f2 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd80f5fac device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xd81c4863 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xd8206348 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd83e09d9 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xd849083e __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd7ddf5fe cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7e4162a regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd7ef00e6 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xd7f4d491 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xd80684de devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd83e3c38 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd858479f component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xd85d8b15 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd86ca3d6 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd8716ce0 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xd8789522 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xd8520aac nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xd855e423 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd85b4195 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd87c12b2 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8814f9b __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xd88d0b8b acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xd88f57d2 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xd8a8852b pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0xd8a9f3bb phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0xd8aa0a52 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xd8c75092 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd89213bc gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8c26c54 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dc1ee7 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8e33718 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xd8f45794 md_run EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8fbfe0f of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd905bf4d unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd90aba88 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xd915be5a tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd90b4b69 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xd90b8665 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xd918a65d srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xd91d99dc hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd91a235c device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd91d55b2 iopf_queue_flush_dev EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd91f0e8d ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xd92c5898 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xd925debc dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd94f2830 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xd94fe857 mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9598435 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xd95b9614 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xd9617e26 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xd93903b1 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd94400c9 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xd94dbe43 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xd95c407a key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd95e37a7 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9629716 pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd977775e scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc -EXPORT_SYMBOL_GPL vmlinux 0xd981956c hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xd98ae4db ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd987ca73 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9a067f5 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xd9a7fefc devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xd9b7d314 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0xd9c9cd36 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xd9cb2d2e pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xd9acaf5b rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd9b330cd pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9b3739b phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xd9b90c10 kick_process EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xd9d11a06 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xd9d7ba10 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9dee116 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd9dfd38f lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9eb68f7 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xd9e4b011 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd9ec14d7 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xd9ecff25 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda054e05 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd9ff6908 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0xda0e0e5b virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0xda113e7c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xda15ed4d cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xda2fce65 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xda1036f6 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xda112302 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda325b16 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xda656984 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xda66b494 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xda6f4165 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xda48e57c input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xda4b1410 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xda4dc6fe tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda8870a9 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xda8b6b94 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xda86b56c regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda8fc0f7 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xda9c0749 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xda9eb5c7 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xda910d7b rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdabec737 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xdac1c842 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xdacaca50 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xdad334b3 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xdad6cb3c cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xdadaa00f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdaca224f platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdacc4c13 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xdaccc95a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xdace20e0 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xdacf622e gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xdada9f93 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xdae41bf1 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xdaf1857a debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf4e0be pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xdafdc86f mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0xdb073801 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xdb0dc013 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xdb27ba33 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb142152 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xdb1f69a0 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xdb22f1fc crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xdb3dbf6c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xdb4783fd pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xdb50308b msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xdb5b8a20 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb649957 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xdb64d842 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xdb65c646 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xdb6906f2 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xdb714ddb pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xdb78d70e serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xdb752ba8 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xdb803dae usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xdb81b1aa synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8da0bc tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xdb96266a sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xdb9b5dc1 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0xdba2949b rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0xdbb45a16 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xdbbb0b36 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdbcae912 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xdbd6dd62 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xdb954cfc spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdbae2386 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdbb0324e yield_to +EXPORT_SYMBOL_GPL vmlinux 0xdbc7ab36 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbcfeba3 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdb77ce do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xdbe50641 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf26a1f crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbff0678 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0f6fbd clk_hw_unregister_divider 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 0xdc14d753 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xdc1dd5c0 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc1fae7e gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xdc3a67d6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xdc1d3cfc mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xdc24f436 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc2c6c43 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc2fa8ec wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc4481fd spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc5c086a __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc465595 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xdc5d9c49 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xdc614ae3 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6f4d5c usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xdc71eab3 mtk_clk_unregister_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0xdc75f16c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdc74ffc1 hisi_clk_init 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 0xdc85c9a7 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdc8de1cb acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaecf6a gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdca17d44 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcc5244f devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xdce0ea4c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdcc7cb7a perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xdcd6a910 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcf89964 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xdcfe0144 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xdd04ae03 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xdd054b3c pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0d39ce rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xdd393801 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xdd0d8013 acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xdd2376e1 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xdd32737f regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xdd40e2ac usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xdd417a35 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xdd43f2a3 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0xdd473c6c gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xdd4a56bc get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xdd5af679 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xdd6166df of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdd461158 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xdd4c6e56 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdd5aac9a kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd757255 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0xdd78fcd7 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xdd632630 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xdd728392 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd730e7a usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd96fc3e fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0xdd9b36e7 io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0xdda223ef dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xddaea86d ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xddb75fd6 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd969215 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdda2ee2b irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xddba45f4 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcef16f ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xddd91b77 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xdddba9a3 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xdddd91db dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0xdde7ea34 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xddebb280 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf3682d ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xddf91a33 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xddfb1a78 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xddfcd800 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xddfdb295 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xde04806d usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xde0a0aa5 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xde065db6 __put_net EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde2a9a3d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xde130e48 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xde135a5d ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde26a61a regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde46c331 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xde6d4384 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xde32d487 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xde3e8769 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xde406a3c ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xde52d110 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xde5f1505 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde760fc8 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xde761bfc __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xde83e548 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xde8b46f0 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xde8ea5aa put_device -EXPORT_SYMBOL_GPL vmlinux 0xde96b2b8 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xde976193 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde741135 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xde7d75d7 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xde7eda72 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xde82dc28 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xde8b5ad9 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xde8c8d46 driver_register EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea676ba divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xdea6acbb regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde9eeaf4 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeb3ffa0 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xdede3c34 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xdece56e7 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdedc6e49 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xdedd664f ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xdee90c3a fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdeea26e5 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xdefd5696 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xdef5ebbf tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf038634 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xdf050eea pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xdf0f5f7a screen_pos EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf11e745 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0xdf10dae8 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xdf1532c8 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf1ee564 pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2fabbd xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf403a59 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xdf388b30 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xdf404aa0 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4c16e7 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0xdf532b93 fscrypt_add_test_dummy_key -EXPORT_SYMBOL_GPL vmlinux 0xdf64cf4c kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xdf6f1203 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xdf7e6751 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xdf7ebdfc dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xdf893097 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xdf8ebef2 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xdf913065 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xdf91af4d make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xdfa0cab9 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xdfb86777 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xdfc68af0 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xdf4a1a83 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xdf636663 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf6554cb ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdf707a9d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xdf7ee3b4 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xdfa8fd0d fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdfa93e64 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xdfb82a69 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xdfc8d672 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfeaac71 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xdfecf8d1 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xe0003d61 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xe00c44e1 filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0xe00cbc35 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe01a39e9 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xdfeec973 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xdff2d5ca platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xe00f82d5 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xe01cef97 iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe028fc86 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe03b3691 xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xe04a931b gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xe050de03 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe056c9dd __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0662932 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xe06ba268 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xe06ee2dd percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe072ae2a mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xe07c7a4e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xe082d251 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xe0a0048a fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xe0aaf518 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0607760 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe083c0cc dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe08623dd crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xe09363df crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe0ab94e8 dev_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c3f90c virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe0c550a6 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xe0ce815d fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xe0d1c0c1 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xe0da94fe mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0ed854b pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe0e35c88 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xe10325ef ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe119c1ac led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xe120f89f usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe124e334 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xe1291cc6 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1387043 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xe1396639 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xe14d39fb __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xe153b336 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe17d818b pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe18718ec tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xe18a35dd perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xe19a1371 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0xe19a9e12 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xe19f145b governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xe11b6dd0 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe140984e tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe146376b irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe158d992 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xe15eb207 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xe166be55 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xe16adc6a pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe17eb68d fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xe1918ece i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xe19d3235 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xe1a46912 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xe1a83654 serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1ae3783 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xe1b37411 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1b8556a __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1deb957 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1e4da8c scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe2069d27 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xe2204dbd ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xe1cd9373 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xe1d5a7ca usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe2016266 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe2241267 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2532eef dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0xe2550e4b rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe257fde7 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe238baef edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe24363f2 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe2549176 usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe264bce1 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xe28cb6d7 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe2909c81 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe2923f4c simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0xe2948165 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xe2955901 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xe2aa2e3c ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xe2ac2ab7 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe2aecd18 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xe2b09edc pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xe265530c register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xe28cfabf perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xe2a6be3a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe2aa1e2d splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b4d21f ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xe2b57144 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xe2b97f00 to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature -EXPORT_SYMBOL_GPL vmlinux 0xe2dfeb40 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xe2e0985c rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2fe21f7 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe304dc6e d_same_name -EXPORT_SYMBOL_GPL vmlinux 0xe30f9eb2 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe31e372c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xe33ca9be nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe343ac48 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe3532b47 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xe3641de4 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe367b11c __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xe36fb549 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xe2ede0e6 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xe30e8e9e device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xe313295c acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xe31bd795 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xe3277945 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xe333544b sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe34fe7cc dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xe350744e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xe360d267 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xe375416a ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0xe37a9a6f blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe37c930c watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe394796c irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xe38e85ce i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a361a7 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3bb3ae7 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xe3c8b911 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xe3b6e662 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3db067f umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xe3dc4d53 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3e5ff34 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xe3eb7d8e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe3efc9aa clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4073f15 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0xe40747d3 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xe3fbd195 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe3fd091b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xe40b4696 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe413aa42 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe40f68e6 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42be81c of_remove_property EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43cb09e devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe443944d __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe4663cb2 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe4729c9a bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0xe47cb1fb hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xe45c1644 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xe4609304 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xe465f567 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe466316a devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xe4671cec buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xe46a25e5 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe470a247 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe47bc558 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe4806d29 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xe48ecb2c mtk_eint_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4925809 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xe4937aed net_selftest EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4977b8d disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe497edbd proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b56509 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c2a060 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d56ab3 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4cab29a ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe4e00f9d devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4e84161 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe4eb0a28 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xe4ef8922 tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0xe50b554d kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xe51aa921 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xe5260a3f __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0xe546f83b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xe4f5d15d ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xe500a83e ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe5115d95 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xe515d40a wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe515dd62 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe5185c78 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xe5392e08 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xe53cb144 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe543e19b ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe55656e1 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xe55928c3 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xe55bdcb4 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe55d99e1 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xe57adf74 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xe57bc6bc devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xe57bf9d6 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xe57e1e9a pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xe58007a6 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe556be3a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe55dadf3 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xe56082da tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xe5699a7b ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe56d5eba devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xe56e414a devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe575caba blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xe57da0ea virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58cadae ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xe5896363 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe58d4df6 ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe59239bb of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xe596c376 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xe598c609 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xe59e8e8d regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xe5a3db80 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe5a3f8a2 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5b8f4c7 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5b891ed phy_create EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c2d098 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe5c48da0 fuse_dev_operations 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 0xe5d21279 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xe5d4afef spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe5df5104 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xe5e3b5b7 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xe5de67e1 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe5dea080 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xe5e48813 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe5e54408 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xe5e790e4 __traceiter_rwmmio_post_read -EXPORT_SYMBOL_GPL vmlinux 0xe5f1c970 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe6012563 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe607e072 led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe61fbfc4 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe61761c9 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe64506ad usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe64789b3 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xe6663d3e fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xe67766e6 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe686cd95 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xe691e7f5 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xe696ca9b skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xe6a41e1e phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xe6b33ca9 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xe63eb8e9 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xe65048d0 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xe6523f05 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xe6644a21 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xe66a225c __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xe66d4c2c ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xe67081e6 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe676cba6 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xe67c3e24 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xe687fc67 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0xe690578f xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xe6a5f81f dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xe6ab9077 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xe6b03465 mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0xe6bd7004 imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0xe6be45c5 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xe6d4374f hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xe6b9069f phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe6c3a03b rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d404d8 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xe6db6c04 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e40796 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe6e64faa irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xe6e650c5 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f558a0 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xe6f6419e fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fd0d3d rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0xe6fa48cc watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe724a91b phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xe7451a28 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xe70d8c03 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe71c36ea ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xe71e8817 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xe74bdcc1 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe756ca7d pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xe75be7f8 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xe76026ff __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe7583ee2 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe75c5275 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe774ff4c vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xe7740e5e of_resolve_phandles EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe77ee9ac restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe77fc949 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7908311 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7a1152e usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xe7aeefc5 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xe7c0bf37 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xe7d0c209 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xe79a3c67 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe7a43d21 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xe7b3be7c blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xe7c16820 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xe7cb76ce sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xe7d14c7b folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xe7d203c5 usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7f9bda2 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe8045746 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe7fe8ef7 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe80dc130 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe815a73c usb_string EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe82ca9ab fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe82ddb29 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xe832a0cb memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xe839bbfd devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe844bd21 __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xe84745c6 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xe81d981d vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0xe83028e4 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xe8312324 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85855d9 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85d72db show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe882c7d0 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xe88c60d4 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xe8b5840e bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xe86c6e55 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe87558ec screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe876d591 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe8829383 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xe88a1a0f gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe8980de0 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe89b00fb xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xe8a40bb8 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe8ac1908 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8bf8f9d cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8cb0978 devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xe8d6c42f blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xe8e7f0ab devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe8dfffaa pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xe8e9e65e inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xe9115e2c pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9190535 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xe91b08b4 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xe91b0fc1 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe93059a4 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xe938a9a9 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe93bd721 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9423890 pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0xe9482184 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe9441796 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xe94560d6 mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0xe94c5a87 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xe952f722 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe96759aa of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xe96f0012 devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xe98d947e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xe95a3bad bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xe95edc50 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xe9667b71 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe96b881c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe96e1026 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe9780043 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xe98750d3 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9b5f0f5 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xe9b72fa6 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe9c31265 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xe9c676ae regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xe9ca89d9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe99d4970 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9af14b2 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xe9b5efab pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe9b9984d rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9df3644 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9d7f733 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xe9e62f0c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe9f2d6f8 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f6f449 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xe9ff763e otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea093f64 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xea085d6c acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea0ce3eb devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xea0f0048 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea324230 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xea1a41c5 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea3c0331 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xea49fe93 fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0xea4ff9aa devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xea40fb50 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5f6705 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xea608313 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xea6ccd75 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xea70362c usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xea762a9d acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0xea817618 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xea8229f7 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0xea8aaa4c acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xea9cd712 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xeaa267ca pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xeaa6127d sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xeac19ef1 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeac9b05d genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xea5ce675 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xea68e429 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xea6c871c pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xea78d026 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xea80ca08 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xeaa1c33c fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xeac46960 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xeacaa0ff mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead26784 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xead5a378 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xead76560 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaec35a6 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xeaedd27a gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xeaef2872 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf410ac mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb037e37 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xeb072030 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xeb0f4d9d regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xeb10f079 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb3c26d7 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xeb08ba8a xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb093ef6 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xeb108b7b acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xeb132422 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xeb16a5db iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xeb19027f regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb461de6 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xeb4b1af6 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xeb654e64 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xeb6d56c8 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xeb52e2b3 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xeb59208d genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xeb5ccdc4 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb681c83 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb6e2487 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xeb6f029e netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeb72d408 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xeb72d68b gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb7b12fe usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xeb89c1b4 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xeb93a351 dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0xeb995e10 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xebae4b56 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xebbe4885 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xebbebceb regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xebd2a210 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xebd30fe5 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xeb7e76d9 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xeb82765c blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xeb8a1322 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xeb8c30b6 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb998a12 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xeb9d30e4 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xeba7d44f acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xebade774 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xebae6252 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xebae95ee fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xebcaaa3c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xebd084ec acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdc1615 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xebe05ebb vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xebf3b321 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xebf60281 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xebd53126 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xebd95288 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xebdf0df1 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xebe0468e ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xebe1a73e ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xebe47391 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xebf8ac9e extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xebfdbeb0 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec03b394 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xec0ada2d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xec0e4b2c icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xec125d27 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xec279bf5 mtk_clk_register_gates_with_dev -EXPORT_SYMBOL_GPL vmlinux 0xec299541 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xec30f7bb pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xec32897a acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xec36258b xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xec39b742 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xec3f1fd9 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xec491fe2 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xec133050 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xec175dbf vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xec41f64e ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xec4c1f4b __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xec4cb9df devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec63b6dc usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xec6eaaf7 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xec57a1ae usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xec5d5bb9 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xec6c1efd tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xec71a64b of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec836d02 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xec8fbd2c scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xecaa69c2 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xec8874e9 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecb90ff3 of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc47d5f sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xeccc3dad bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xeccbe90f mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xecd04cc7 acpi_device_fix_up_power_extended EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece074f8 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xecfaee4d pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xecfc0553 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xed1480a7 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xecdc7b58 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xecf21730 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xecf6c507 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xecfc366b fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xed1076ed stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xed1d902d tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xed2533cd vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xed28a78a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xed2c44b9 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed30206c lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3baeed serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xed402e7d usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xed5321ed acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xed6e33aa simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xed83d27d fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xed7e632a list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xed848232 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xed874e2b ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xed8b28b1 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed9a6eae debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xed9aa51e mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xedae5cef hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xedafe70c meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xedbb29f9 devm_hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xee09fad5 disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xee0f7ab6 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xedfbbdee fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xedfe116d device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xee0ea3b3 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee265105 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xee2c928a unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xee36c32d tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee486a3e pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xee4d4c68 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xee42b74a bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xee4b96b6 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee587a62 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xee68cf13 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xee5231f7 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xee5454c5 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xee67f16d pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6c1dba irq_gc_mask_disable_reg EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee77cf12 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xee7fb01b crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xee9548b4 ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xee9a81c5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xee9f1528 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xee9fff5d bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xeea0c0c5 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0xeebc1b96 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xeec0d352 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xeec5716a platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xeed87a8d ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xeedb533b ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xee6d1a05 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xee78cf9a bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xee7a909d of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee890c39 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xeeaf1754 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xeec345ef mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xeed1a25f vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported -EXPORT_SYMBOL_GPL vmlinux 0xeeecfe17 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xeee22460 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xeeedaf96 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xef17d553 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xef1e9c1c device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef264bf6 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3f143f virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef48dca9 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xef5ca92e iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xef46f742 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xef4e8882 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef6b1dd7 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xef5e1050 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xef5e6cf6 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xef619836 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xef624370 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0xef654202 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xef689850 handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6de7da k3_ringacc_dmarings_init EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef7c67f6 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xef83a100 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xef84d839 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xef86deaa crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef93e9ee platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xef9dca68 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xef979d6b regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xef97b0d0 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefadad05 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xefb7420c usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xefbf0ce7 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xefbf915b sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xefc352ae spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xefd147eb l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xefe2f170 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xefa32f38 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xefa89bda clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xefbd47bf phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0xefc16888 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0xefd39ba7 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff2f081 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xf00c04b1 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xeffc8943 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xf03396cd transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf037afc9 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xf04137c8 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf05109b2 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xf047c287 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xf04d2453 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf04e7d10 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf056d770 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0616e7a sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06986a2 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xf06e146a wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0xf06e64f9 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0997932 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xf09fe388 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xf0c383f5 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf0c4641e fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0xf0da1f14 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xf0e8580c iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xf09a90bd task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xf0a3ddcb of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf0a57034 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xf0aa2b40 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf0b6b408 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf0b75e77 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xf0bd81c5 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xf0c04cea clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0e41014 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf0eb46ad mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf0f24608 inverse_translate EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf1066a4f pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xf1095cde devres_get -EXPORT_SYMBOL_GPL vmlinux 0xf11800f3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xf107083e genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf112aade phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf118fc01 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf1239782 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xf12c57bf rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xf139fe25 vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0xf14314fa da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf122e3bd devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xf134f101 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xf1351639 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xf13ee784 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf144766e iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xf14e5a3f generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xf14f0a98 icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xf152222f usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf14d0768 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf1579363 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xf16bdaea debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf15b3c65 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xf15f414b wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf1c4c6bc iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xf1ce3258 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xf1d026d0 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xf1dd945e debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xf1edae4d ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xf200dfc0 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xf18b2017 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xf1927bb6 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xf1b5ee2f genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf1bfd9dd tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xf1c96b13 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf1db3679 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xf1e09f8a ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf1fd8519 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xf208a7c8 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf21396a6 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xf2172eeb switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf225e53b crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xf22d8c05 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf22f4194 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf2215350 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xf228e901 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf22d9230 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xf22f988a usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0xf25a7f4e iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf2661835 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xf26e097f regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf26f232c rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf27dbc6e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf27e3e74 i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf287218a kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf2918d5a fs_kobj EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29698d0 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf297f3a1 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xf29cd5ef dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xf29debb4 arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0xf2aeae20 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xf2a450cc phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bbfa03 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf2bfbd99 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xf2e49869 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf2f2050b user_update +EXPORT_SYMBOL_GPL vmlinux 0xf2c50196 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xf2c59a4b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2c8e96c sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xf2c9d32e tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xf2ca4695 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf2d8b980 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xf2d94008 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2ed8ca4 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xf2f47a07 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fbc21b regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf306798b devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30bbdec bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xf30ad513 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf30c05b2 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xf30ccc64 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xf30d9ed5 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf316c918 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xf317cc9b tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf3253ca4 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf337686e gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xf3394abb devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf346a375 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xf34c22af debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xf33e20a7 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf34c908f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf3518944 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf353f40d acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xf35e6447 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xf3702750 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf3578a13 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf35d0bee sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xf367ab3e sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf379e858 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xf37a2d24 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xf379e7e6 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf381bd95 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf3919308 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xf3a00f3c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf38457a4 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xf3921ae2 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xf393b538 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xf397ba21 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xf398fbb7 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xf39c8f65 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3b1650e devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b5ea80 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b7056c nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c3e4a3 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xf3d743e3 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xf3daf475 clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3e766c3 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xf3eb44e0 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xf3f87e26 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf3fc4559 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf409eecc component_compare_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xf40b7059 phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0xf448d36d acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xf45c2c88 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xf462d83f pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c143fd nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf3cbc7b0 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf3da0e0d k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xf3e5ef1c mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xf3eb8b92 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xf3ecb6b7 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf3edbb85 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xf3ff3644 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xf402345b usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xf411e3e7 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf41deb74 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xf42094b6 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf4236f0d clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xf425cfa3 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xf428a383 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf42a82de em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xf42db6c9 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf42eb79e blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xf4430d4d page_endio +EXPORT_SYMBOL_GPL vmlinux 0xf444bad9 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf448b903 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf44d69fe stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf452e921 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xf4556aea __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xf45b40bb xenbus_match EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf471887f xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4841e36 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xf496be3a device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a25067 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf4a6a6ee tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b19158 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf4b1bfe5 dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0xf4c37dfd iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d504bd mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0xf4db3d84 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf4e052c7 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xf4e95381 fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0xf4f58d24 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xf4f81dfe perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf4f9857e mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0xf4fa2ad3 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xf5053dbb scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf50acfb9 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf50b9180 genphy_c45_pma_baset1_setup_master_slave -EXPORT_SYMBOL_GPL vmlinux 0xf511230b __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf51d2725 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf52a0ba4 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xf52fbbfd sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf4d3418a strp_done +EXPORT_SYMBOL_GPL vmlinux 0xf4df77ac __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xf4f55c81 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf4f6b2a7 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf515b5f6 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf528505e do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xf53da071 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xf540bff0 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0xf547c3d1 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54ccf98 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xf54e32c6 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf54fec52 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf5509bf9 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf552d049 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55886c6 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xf57b77eb scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xf58449f1 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf5899f12 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xf5980611 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xf59922e3 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf5579c9e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf571bd3d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xf573292f wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed -EXPORT_SYMBOL_GPL vmlinux 0xf5a2e43f pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xf5a21dd3 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf5a2e7b7 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a4e3c9 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b3fa81 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf5b54614 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf5d15ef5 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0xf5db1fd1 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xf5a7d4cc fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xf5a82a9d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf5d7b543 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xf5e204a0 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xf5e466b0 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xf5ef4705 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f44a88 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xf60663dc md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xf613f8e5 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf6067aa9 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xf60f39f7 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xf61ac29b pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf61c8b92 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xf61fdf03 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xf62d72cb of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf62239d1 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf652c512 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xf6588a42 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf658c03a ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0xf65d778d securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf6533033 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xf655cfa1 __device_reset EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66fb4b7 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xf6838ba7 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xf673e92f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xf6910cf7 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xf6930adb gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6af21cb of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xf6af2d23 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xf6af7d79 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xf6aa6a6f pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xf6af6af8 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6bef7f2 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf6c63319 skb_morph EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8051f device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cb55d6 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xf6cbaa24 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6cc38a7 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xf6ce32c5 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf6d302e7 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf6dd87fe badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xf6e4f482 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ebdf95 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf7077e0d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf6f97326 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0xf70a08aa crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf7114ab5 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xf71a018b crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xf71cc42d desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf7239d57 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf723ca8f md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf73f5a1d kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455227 pci_p2pdma_add_resource 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 0xf768bc59 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xf7731c73 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xf7526d23 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xf764ebee dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xf76b0947 mtk_clk_register_factors EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xf77e1455 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xf77a3dca netlink_remove_tap 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 0xf786955e pci_msix_can_alloc_dyn -EXPORT_SYMBOL_GPL vmlinux 0xf78a9ac2 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xf795f965 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf7a1b834 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xf7a3e012 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xf7a7d309 iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0xf7a85a3f devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf79b1cc0 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xf79bb4d2 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf7a37bcc pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xf7a61af3 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bbb96c call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cd5a0e devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d95241 imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0xf7e5bfac pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xf80b4464 mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0xf7d27182 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf7fb3350 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xf7fced8e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf803866b synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf8201863 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xf82aa0b9 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83ccc83 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xf842e314 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xf85c273e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xf85d1fd7 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf87497a9 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xf879a102 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xf8836663 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf867c848 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf8686fe1 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf874894c dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0xf8762125 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf8aff3e6 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf89ed852 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf8a488dd serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf8a625fd hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0xf8bdc3e5 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xf8d3851c tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xf8eb8984 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xf8eecac8 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0xf8ef63e6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf8d156c3 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf8e161b5 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf8e33034 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f89038 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xf8fc1d0a regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xf8fd8d6b crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf9010d60 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xf9065bde dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf90349ca xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf913f29a devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf91fa634 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf912984a dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf919858d inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL vmlinux 0xf92c1abc __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf94552ab meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0xf947b0e3 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xf947cdb1 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf94ac01b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf93125c7 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95731d8 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0xf957e2f1 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96f4d0b phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xf973fb0f ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xf9740a1b amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xf9891b9a spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xf96b82e2 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xf96fe8d9 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xf97dbb39 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf9882ded devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xf99365b9 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a1bd8e of_pwm_single_xlate EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9acce28 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0xf9ad041c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf9b2e1b8 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9d48e9f of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xf9e6ee79 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xf9f46f5b devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf9f5f34b xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xf9f65aa6 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf9e85e1b i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xfa0723bb led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xfa081d71 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa0d4c42 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfa14ab87 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa208e46 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xfa29fadf rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule -EXPORT_SYMBOL_GPL vmlinux 0xfa3fc30c usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa487196 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xfa4d3c24 log_post_write_mmio -EXPORT_SYMBOL_GPL vmlinux 0xfa521e94 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa623bee kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xfa5bad24 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa7723dc iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xfa79a518 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xfa84ce05 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xfa8fba50 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xfa94dc2f of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xfa69af7b serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xfa7891ce of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xfa7b932b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xfa8febaa acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xfaa6d9c5 xenbus_dev_suspend 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 0xfab8525c pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xfac6d832 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xfacd426b devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xfad76c53 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadd70a3 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xfae5bcf3 mtk_clk_register_dividers -EXPORT_SYMBOL_GPL vmlinux 0xfae6916f cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfae9b4b4 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xfaeaa611 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xfaebf5af acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xfaf01b01 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfafdda1b sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xfb17b816 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xfb1ca042 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xfb2e8f9e debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xfaee5a12 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xfb096998 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xfb09f991 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xfb177dd0 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xfb2fab55 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xfb32261c clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb337c75 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xfb3771cd of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xfb46687a __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xfb4b1708 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xfb4d6ed7 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb4e77bb smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfb521627 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xfb59e3ea fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xfb5a1cdb tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb6bb518 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xfb6e6e02 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb8f16c9 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xfb9b5db7 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfb9c5b86 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0xfb9ce8a9 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xfbb23525 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xfbb8a8ef dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xfb889b3a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xfb88b9c1 mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xfbb71452 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbed0ec imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xfbc5dd0a of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xfbcbf99d rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xfbd558bc kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfbde939e folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xfbca55cc iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xfbd4c3eb vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xfbd7cd1f of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xfbda723b genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xfbdeecbe xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xfbdf5012 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfbed6423 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xfbfcf82b device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0bc2f2 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xfc0d11d2 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xfc12e906 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xfc148c00 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2b45e7 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0xfc331be5 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xfc36bb2c power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc414e6c scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xfc4ac7c7 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xfc4e6756 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xfc7048e8 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc454f0f param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xfc545afa dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xfc5923c9 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xfc71e49c ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xfc721995 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0xfc7c22a9 ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0xfc926499 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xfc7fe7d8 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfc845fee xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xfc84fe24 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xfc868ea4 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc9a226c usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xfcbcbde2 mnt_idmap_owner +EXPORT_SYMBOL_GPL vmlinux 0xfc95d48a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xfcaa2a33 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xfcab7567 meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc34c71 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xfcc6168d crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xfcce2234 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xfcd5e67d ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xfcd78103 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xfcdfc8d3 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xfce52473 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xfcec134c xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfcf88ef7 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfccdb5f3 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xfcd10a75 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xfcdb8e5e pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfcde93de __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xfcf1315f rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd01aa62 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xfcffe001 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd0bb477 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xfd0c52ff devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd11a6fa __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xfd153367 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfd0be310 mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd21988b sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfd2f0767 fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0xfd309343 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfd3e724d devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfd429df1 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xfd51142a msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xfd562217 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfd63d356 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xfd51cad9 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xfd5e2efb mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event -EXPORT_SYMBOL_GPL vmlinux 0xfd65bb10 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xfd6f8c5c sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xfd71e751 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xfd6795d2 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd93f959 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xfd97fcab perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xfd9f862a mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0xfda90e03 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xfdadca90 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfdb5dda7 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xfd8c6c37 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xfd8fe2b1 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xfd99f7ed __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xfd9a886b devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfda12181 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xfdac88b6 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xfdad0dac devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfdbad68e cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc64442 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfde3da1c bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xfde8c0b3 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xfdc74e2c fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xfdd0f759 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfde19083 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf68616 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0xfdf7f091 onboard_hub_create_pdevs -EXPORT_SYMBOL_GPL vmlinux 0xfdf82bc1 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xfdeabcdf mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xfdf3e056 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xfe09bd5b fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars 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 0xfe31ab1c wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xfe2dad47 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3fce93 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xfe4100ba mmput EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe622992 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfe6f0923 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xfe76dff0 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfe4d070e debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xfe54dd9a fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xfe5c5c02 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe71c338 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xfe75469d pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xfe7a3a9d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xfe7f36a4 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe9818df bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfe9e6d30 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xfea1274a dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xfea26ddb is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xfea96e18 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xfeb3f532 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xfebc51a2 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xfebddb82 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xfea34d30 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xfeb29bcc dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xfebffa54 __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfecaa054 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xfec571e2 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xfec8ebb4 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfed0d249 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed8422c mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfeec5d86 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xfee9cb12 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xfeeaef21 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xfeed0a14 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xff005e77 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xff019245 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xff050a5b ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfef40d16 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0f9161 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff0e869e mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xff100107 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff191aec regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xff21d1ba fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff364030 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xff3e517c ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4e2e16 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xff5391df pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xff549946 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xff6b27a6 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xff72312a regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xff746571 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff753b49 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xff4b26ec debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xff4d0d7c fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xff577427 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xff6485f2 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xff6a977e tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xff7cd013 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff7eccf4 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff98f3b2 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xff99dc94 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xff8d9055 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xff9afa13 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa2d2f2 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xffa8a1d7 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xff9fb24b devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb3b16d genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xffb7a6ab pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0xffbd2014 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xffc2a907 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xffbc8327 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xffce7cb4 device_move -EXPORT_SYMBOL_GPL vmlinux 0xffd5dd7e file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0xffdcca9f of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xffca3b58 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xffcdabbb fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xffce677c driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xffdc8fe4 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfff14fe0 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xfff1ad6d sync_page_io 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 0x0a31c7b9 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x04bc6cf9 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0ba0afff cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0da92ddd cs_dsp_coeff_write_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 0x1ee736cd cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x20124e12 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x222aa1a1 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x2d037ddb cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x3d3a50ea cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d0bf8b7 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x150458ae cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x177eacce cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1d38b8a4 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x30101774 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x41c4fb57 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4642f6d3 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4a68b196 cs_dsp_set_dspclk 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 0x576cb67f cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x661297f5 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x54337f1f cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x54fd90b6 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5cabd1cc cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6437bcd1 cs_dsp_coeff_read_ctrl 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 0x73a0faaf cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7b8da676 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7d995602 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x83fde764 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x928296e6 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x939e90c6 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x945fcfe6 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x97983a89 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7f081d8f cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x81825e3c cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8350bdaa cs_dsp_run 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 0xad35787d cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb4eaa145 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa69de595 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaf0dbeb7 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 0xbf82a361 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xcd74fd60 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xda760b0a cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdc828d71 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdec2a323 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0xf00f0c74 hwmon_device_register_for_thermal vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0x1d7d35fd ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0x5c8cccc9 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x174bd91f ad5686_probe drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0x83e3acbe ad5686_remove drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x4373403a ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0xe495554a ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0xd89a5b0a ad7606_probe drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xfa5677af ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x7233b3c4 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x78c81e88 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2c27b92b __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2de2dfa3 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x39fea184 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4481030d adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5310fe48 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6810bf7a adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x962677db devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xabc8e4fb devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb374532e adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe09edf07 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xdd9e8459 __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x8a7bb354 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x9eb17fcc devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x3e859445 adxl313_core_probe drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5bf881d9 adxl31x_chip_info drivers/iio/accel/adxl313_core +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcce27311 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd120b7f8 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd8304f61 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdd737b3f cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf1f3c270 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x3c2d7fa3 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x54ac5f3e ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x8e2e4a1d ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x8e09d819 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xafe4696c ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x4035d7a6 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xf54d1ab0 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x1bdd9943 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x58386bee ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x9adf8b9b __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xb84d30c0 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x04a65e4e __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x13d43992 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1d32a7e1 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2b6fe0d6 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x684a9c55 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8575dd55 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8d476540 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb607e70a adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbd0f697e __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc102b57b __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x16fa4fc4 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x50a4dc2b devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xc43a65e1 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x2f73dac1 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 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 0xf03c7d3e adxl31x_chip_info 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 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0x91e0f032 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x93abc031 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 0xdd0ddd4c adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x02c7c695 adxl372_probe drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x75183b3a adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x666a9a1c ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6f024082 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x88082d6d ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9b6c2ff3 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9fb3bf25 ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xada7b7a6 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb2e2c61c devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xba2be318 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xba86399b ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xec6cf581 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0xc56414aa bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xe21a2596 bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xc450c04b bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xc9ca26d9 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xd0e27c9d bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xe9f381d3 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x2196f4ce bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xa939a814 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xcae22b6c bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xefddc7c5 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0xad9fc0a7 bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0xd15062ed bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xaebd763b bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xdafcadf3 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xe491730c bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xee953e4c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x027e383d bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x0dfae2e4 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x84d4fde1 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x99a1c9cb adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x038447b9 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0731e6ca ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x347b6f39 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x54ef3fc5 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x56112214 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6a823428 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7a70f8aa ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x83a4b01e ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x84ebc91b ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9f86d35b ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0xb42295cc bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xb74407d3 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x05210cf6 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x4c4ba2f8 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x82bf4d91 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x8aa9aee1 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x4832a010 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x5c7bcac9 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7dd51fd3 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xc2456b3f bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x362befc7 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x1599aac1 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x70ad7506 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x82f0b18d bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xa394b63f bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xd3d9bd6c bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x28163862 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 0x7fee9e4e bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x6962221a bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x6cb64999 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x863094fb bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xb0335003 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x07cfaed1 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x43101a7a bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x8a7ad264 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x945dc15a fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xa391e6b2 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x62a413a0 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7a26bacc fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x889df274 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc07a8765 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_HID EXPORT_SYMBOL 0x0b7eb6ab hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x10cbec19 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x13ce939a hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x27b904c1 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x38f8c6c7 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x657a888e hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7a987ec1 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7b4cc5de hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_BMI160 EXPORT_SYMBOL_GPL 0x2fbf4615 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x3331416a bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x36e52ae9 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xd7f58d3b bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xdc63f78b bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xb10f5500 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xd57ea50d bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7d6561c4 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7f4833c5 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x9932295f fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x6cad02e6 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x8aa7a377 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xce739623 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xee5d2264 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x252c5a8e hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x33ec6784 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x36a2b351 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x398baf24 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3da18d03 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3f79bf4e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5a8092a3 hid_sensor_setup_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 0x822760cd hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x904bd713 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xef31f5b0 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xfb641329 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1678a058 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6c9a74a8 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x80178318 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcdc27411 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x3343b3e9 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x6aaecae6 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x7f761911 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x3af314c3 hts221_pm_ops drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xfb235809 hts221_probe drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x04ab4b46 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xac6b3937 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xfde2caa6 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x15a2e6c2 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0x542de951 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x0d25c2e9 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x24a6cf00 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x58245e64 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x237a4b29 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0x9d889b95 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0xa8477577 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb1bdd111 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc098882e hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd9a4b6a0 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf56444c5 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x300a8d41 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x76ad75f7 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc235278d hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdd162505 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x28b5b1be hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7e04768d hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xdd310ba5 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0xeee3b961 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xfb0d6f4e hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x64bae132 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x9afb9fcf inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xaa82d6c8 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x10ca6e9a kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xaa4d7a36 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x5283e0a7 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xd1c799f3 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xf6c17990 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x2b701b78 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xd648aa88 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 0x0495b533 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0fad5fd9 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x220c0739 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2a92c0e7 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0c00cb9c ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x113a29ea 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 0x2e12160a ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x339d8abd ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x39eadf63 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 0x56fc833b ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa5964eba ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdfca817d ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6c29465c mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xadc0ef68 mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xae1ac409 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x07f6b3f8 mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x0d9e975a mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x28d85200 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8a448f6e ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x9eeb0441 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa6588f1f ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc7eb0715 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xf4462d5a ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xf5741b61 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x3682cbc2 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x625e426e mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfe82a0dc mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x008ddce4 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0b7ecb4b mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x12688188 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x142ce2bf mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x14fffa84 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x22d4a1f1 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x3e759544 mma9551_read_config_byte drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x43e8b315 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x44cfd9bc mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x4703b3b2 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x4a43aae4 mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x657dd379 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6d8fa8c8 mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7b86b804 mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7e3b5889 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x90fbd102 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa22a5a74 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xaadaa334 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x57c7cbd6 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x59c83507 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x8acb5f6e mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x98d5b7b0 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa2095944 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa649c14f mma9551_gpio_config drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xcaf54554 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf495c84d mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0x2c738d51 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0x952ac2ac mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xc7670ced inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xe8bc3633 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x0402507a ms5611_probe drivers/iio/pressure/ms5611_core -IIO_MS5611 EXPORT_SYMBOL 0xde8944c3 ms5611_remove drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0x86aef05a rescale_process_scale drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0x90cf900c rescale_process_offset drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xc48f0730 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfd5a9b35 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfdda2c02 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0xbbe35114 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0xfd576c7b mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x85db81e7 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xc67ad8e0 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0xa826b97a ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xaa4d8323 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x488bc646 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x9fe488f0 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 0x35c0402f 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 0xc4043d89 rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x82bbbca3 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xeefa6af2 scd30_probe drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0x7bcd298d sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x668d27be ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x8f3634e4 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa01d0ecd ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa9d46a29 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xabd5093d ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xbeee06e9 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xca2a5c75 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xe84ecc85 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_ST_SENSORS EXPORT_SYMBOL 0x002d7c9f st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x01ed432e st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_SCD30 EXPORT_SYMBOL 0x1806e26b scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x2926fcc0 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xbc689138 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4b38bdb3 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5e2ce065 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x88f2464a ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x8fe7135e ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xad0854a3 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbf214005 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd2d84a85 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xfe20bc37 ssp_register_consumer 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 0x0e23d5e2 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x15f5c964 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2c9f3ad6 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x30df59ed st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x511bf8c4 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x52e9a707 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x551f1d28 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x577fd28a st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x5a5f1930 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6bbce532 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6d023e6f st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x86b5412b st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x91d9b73e st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xa511092d st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xadff18fc st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xaeb9ba1b st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb7c491d7 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xbb185575 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0xbb7ceaff st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xbdf90865 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xc89f73ac st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xd2d81bda st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0xec386bb2 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf033b6d0 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x96f53bd2 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x3a920074 st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x59809b29 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x01ab673f zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1d80bb29 zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x45372ae0 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4c1ae938 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7705dafa zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x98948aaf zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ST_SENSORS EXPORT_SYMBOL 0x09c71ba5 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1706a119 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1ab204d5 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3b1f18ef st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x440e0f7c st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x53f648d3 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x58aaa13c st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x685c6875 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x6e38423b st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x6e9e3327 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8380ebd5 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x88a115c1 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x8fa64138 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9a9eae84 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa622be2a st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xac45a6fd st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xb138cc7b st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc2431989 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc6f89eec st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xce66fdb2 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd5fac4dd st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xe43d20a7 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe7138b38 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf22b9413 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf3067116 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xf7dd50ff st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x8b2488a9 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x09c42898 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xec35a6da st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x231abb0e zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x68c2d59c zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7d3bf889 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xc75eb265 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xdb382803 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xeda395eb zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IOMMUFD EXPORT_SYMBOL_GPL 0x102e9eb0 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2ca899ef iommufd_access_rw drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x45bcc955 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x45c78d42 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x53fb9ef4 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5c4123a0 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x6337b782 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xa245f6d2 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xaa58a1fa iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xb5029255 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xc70f67ca iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd3128282 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xde6b8209 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x76edb929 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x8f67c7b1 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb8e73433 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xdd90d8c7 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfb551a7b 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 0xdfaadb85 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x095f5def iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0caf281f iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xeb4b23b7 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x093cd7e2 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0fc6e4a8 iwl_write_prph64_no_grab 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 0x14342a4c iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x17b32e2c iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1e816583 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1e991230 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x20f8c0a0 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x210a69a3 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2455cb31 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x18a46149 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x19a27524 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x26994b7b iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x270e06b0 iwl_read_ppag_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 0x290f18a0 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c4ce150 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x31aba96a iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x34faaeea iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x27a3b7a0 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2b276565 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2be0a7ce iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c890616 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2d111656 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2d7f1306 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x302be036 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x30d95805 iwl_read32 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 0x378bba40 __iwl_info 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 0x39cf6a44 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3a90d5c4 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3c90c8d6 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3fa382a1 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x40c71557 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x42315b50 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x45c6c29c iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4603a8d4 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x48c4f455 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3a8a3f0d iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f19675f iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ff5c265 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45a81a05 iwl_read_external_nvm 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 0x4bf34a5e iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4cf6255a iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4f26f0dc iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x526419e6 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x582bf1a2 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a5e87af iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a60bcf6 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4d1e113b iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4e472001 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x53161aea _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x590c0af1 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x594da571 iwl_fw_runtime_init 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 0x5a4672bb iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5a97d962 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5a0c8427 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5f190fcb iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5f61e4f0 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x66a9256b __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6c913ffc iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6d78267d iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7230d65e iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7372d30c iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x759081b1 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5eb07be0 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5fcb8db9 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5fe6a47a iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x62b5752a iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64261218 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x67cad470 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x69ae32dd iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e01ab8d iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x715d0c35 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7301dde3 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 0x78681caf iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7805726f iwl_fw_runtime_resume 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 0x7939fe83 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x798a3e20 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ac44672 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7bf8c524 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ee83f9a iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78f10ed0 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7edcf6c7 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x83cbef18 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 0x85122cd0 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x85bb4193 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8672632f iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8686bef8 iwl_pnvm_load 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 0x87776b02 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x88f44a3c iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88869f02 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88ccc675 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9238d533 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x93188319 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x94a297f1 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9624fd30 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x99251f07 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9df309b6 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9fd21c81 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa5693359 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa6cd0ccd iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb2dc694e iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x999550f7 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa48840ec iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa4975524 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa7f9f4bf iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xabfdb142 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb03123a7 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb201a50b iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb2f07bdf iwl_dbg_tlv_del_timers 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 0xb3a277e0 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb4a51da2 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb5842b93 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xba4033a5 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbb667de4 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbed05a1e iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc004a1cf iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc05c6693 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc6a82cb5 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xca4707c0 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcaa70e91 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc58374b5 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc60381c4 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc7efed79 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcae355db iwl_read_eeprom 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 0xd1180e9c iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd75063e9 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd970261c iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdc11198f __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdc7cffba __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdf2b9eb0 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcf88bf8f iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcf96814e iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd16ab703 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd29c229c iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd6e05336 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd9c60659 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xda1798ad iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc942e13 iwl_parse_nvm_data 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 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe9df26d5 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 0xefdadc78 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf60bcfda iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeaf8b108 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xec6d6f50 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeec821c8 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf04d387e iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf1278bf5 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf4d5998c iwl_parse_eeprom_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 0xfaf03e2d iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfce18beb __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x03bcf5b4 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x56f91261 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x10d14186 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x25460f66 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x262ec832 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x363ec741 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3b514f42 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4d5132f3 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x568fd5f1 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x715d5751 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x725823ee mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x85b5b0b9 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9bc9cd33 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa9371f9e mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xcf19a5e9 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdf42f94b mcb_alloc_dev drivers/mcb/mcb +LTC2497 EXPORT_SYMBOL 0x62134628 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x798b6c8f ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0981b292 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2793f852 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2aa00f94 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x34880b3e mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a1852b2 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x55172786 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6f880c8d mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8788582d mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8d804597 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x92c8f6b4 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x96a2a144 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa3927ec2 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcba1a6e9 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe7f0f2fe mcb_free_dev drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x458f8dd9 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x785d0df0 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0x056261f6 ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0d983a3a nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1310bfe5 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x66871ef7 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8d6803f5 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9559fd33 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcd9b807d nvme_ctrl_from_file drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x06e98170 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x07d10b3b peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x0b3ed924 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x1c0015b2 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x29c7a267 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x45e8c22d peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x47076021 peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x483f9a79 peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4b5ebbdb devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4ea38e32 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x51a9d385 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5ad7f4a6 peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5f02cfc7 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6521de41 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x7db718d6 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8434e74c peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x85edebdc peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8df1f159 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa1c3f339 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa9450c4e peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa95c1184 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd5bab334 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd86deb60 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdb4f0178 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdd8a86c4 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe18dfecf peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe6671818 peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf115cc45 peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf790bbce peci_request_data_readq drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x2ccc2c32 peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x312a9635 peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x3cf600a6 peci_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x6b54a1e3 peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xddf935c5 peci_ep_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x02712aaf pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x0dc50be3 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1174a757 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1f8e143b pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x23c2ca15 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3427848b pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x405b4ccf pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4065166e pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4c7d2c3b pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x617f6014 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x68e269ef pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x75145020 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8dd93fdb pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa2ba8d4d pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa62a7e14 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xba25a059 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcec3ee5d pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdc537780 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe4a54a40 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x48ef290b sx_common_write_event_config drivers/iio/proximity/sx_common +MFD_OCELOT EXPORT_SYMBOL 0x430045ca ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x801b5b12 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xf5ddbd05 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x12670dde nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1886d62f nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x361cc72e nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3e831cbb nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6bc513be nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf26ecf5d nvme_command_effects drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0c2254da peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2cea73be peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2d757c30 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3011c9a3 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x32582f89 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x39caca41 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4635c677 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4eff8ff4 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x536f1981 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x53eb84eb peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x61de56ce peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x624e75ac peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x683bc130 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x71596cd4 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x73dbfa7c peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7600362c peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7acb891c peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8b4bc3ca peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x92b3c609 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x969b574d peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa44fe30c peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xab8e6122 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xae0bc485 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb6295995 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb6a57cfe peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc13430f4 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcca5abd4 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe05986fd peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xecdc4599 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x10beb84f peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x22f12e04 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x2d6b2f35 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x53f85e08 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xaa8906f7 peci_temp_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x2973ef54 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2fafde3f pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x366cb3d0 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4ce24f90 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5d98e46a pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x63974eff pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6febecdc pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7273434f pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x79657d16 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x79ff7dcb pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7e55aa1f pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7f020f05 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8aadf8f7 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9fbbee85 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa839fc8f pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xafd6afb6 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbbf3c47c pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xce008fbe pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd141bd47 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x8abd959d sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x9b07112d sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x9c1b7df5 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 0xa699c1e4 sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd377ff12 sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd72df1b1 sx_common_read_proximity drivers/iio/proximity/sx_common -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x03c2b7d4 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xf04c10e4 sx_common_read_proximity drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x27834aab 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 0x9a45d191 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xc01197d4 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd5a643fc hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x0e4a718f cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x17801b6d cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xfb0a10e3 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x4a9ce722 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x66015137 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xff61f967 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x1c75503e cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xba707659 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xfe86ef8f cs35l41_hda_probe 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 0x11ee1c0b cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xdda6d4cf cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xfade66db cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x10db192f cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x2f6ee566 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x74a11941 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x275a89c1 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables 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 0x873700ac cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xbb60776f cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xc40fc1e0 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0128eb97 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3b613370 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5a2f80da cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x62c5440a cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x8ad74eef cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9b9abc34 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x6462488d cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xadb524ac cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x15195230 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3487121e cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4e5f7106 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9ccb1347 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb959c811 cs42l42_regmap 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 0xd01fc099 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd48976ea cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd4f5ff40 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe15f390f cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf572fc04 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xbd06bae4 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x766d5987 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1e28c568 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x6adec997 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x84043b0e sdw_intel_startup drivers/soundwire/soundwire-intel +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc6181401 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd240e284 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe416c4a9 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xed0bcae6 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf0035946 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfe4a6fdd cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x6ae4dc23 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x2dca7ff9 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x655cb51f 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 0xbf4883fe sdw_intel_exit drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2167deb9 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4f0d5fc8 dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x567f1757 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb3cfc7cd dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcd61601f dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd23f3107 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdc234525 dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xde5d60db dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe58baddf dw_spi_dma_setup_generic drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc40d67d5 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc4a748a3 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf435d82a sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x49934110 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x560877b0 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x571e0f38 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5cf7bfcb dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x60437921 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xbdec95c3 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xce9227b1 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd187b7ea dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd8a2ad2b 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 0x36c9cb89 ccu_helper_wait_for_lock 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 SUNXI_CCU EXPORT_SYMBOL_GPL 0x517768aa ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x544d7295 ccu_pll_notifier_register vmlinux 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 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 0x8813232a ccu_pll_notifier_register 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 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 0xa87f350f devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0xb159e62a ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0xbe8d8188 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xd050ca65 ccu_sdm_helper_has_rate vmlinux @@ -28018,25 +28021,25 @@ -USB_STORAGE EXPORT_SYMBOL_GPL 0x013d40d1 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x08705a8a usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x12326a9d 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 0x1cb7e27b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1fcf582b usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2dde166c usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x33860da0 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3a9f4223 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3bb1619e usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x401f903d usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4296ca6d usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x44e248b2 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4817ab57 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x57792b0f usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7b7a6b70 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x970923d0 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9addc401 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9c053ffa usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbb756056 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbf54ad7e usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcf146419 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcf211271 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdf01b52e usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xea62f935 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf21d00d4 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfc903eca usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1e5e2d8e usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x27f8a1fd usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2849f7da usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x387e71a5 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x49ed8d86 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x524ce68b usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x670816b2 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x70818c63 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7c124bc0 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x81d90846 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x934750c8 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9b697286 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9fb53526 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa1fb78f3 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa353e189 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa63cff82 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc0513f4c usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcd6b6392 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcf1c5223 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeaffd232 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf3738ae5 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfa0cb244 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage diff -u linux-6.2.0/debian.master/abi/armhf/generic linux-6.2.0/debian.master/abi/armhf/generic --- linux-6.2.0/debian.master/abi/armhf/generic +++ linux-6.2.0/debian.master/abi/armhf/generic @@ -152,7 +152,7 @@ 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 0xde2cdff0 suni_init +EXPORT_SYMBOL drivers/atm/suni 0x36846726 suni_init EXPORT_SYMBOL drivers/bcma/bcma 0x1dcd3d01 bcma_core_dma_translation EXPORT_SYMBOL drivers/bcma/bcma 0xf9a021af bcma_core_irq EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str @@ -173,8 +173,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xcc155f65 pi_write_block EXPORT_SYMBOL drivers/block/paride/paride 0xcfe9687a pi_read_regr EXPORT_SYMBOL drivers/block/paride/paride 0xd189184a pi_read_block -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x2748d40e btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6c44e564 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x94bb3631 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x57b220d8 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xe902ab93 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 @@ -237,11 +237,11 @@ 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 0x37734e06 caam_dpaa2 -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8cfe7ca4 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa5b84500 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb7c46194 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc51e7671 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe2225cc1 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4a2ea9a4 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x72836df0 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x808e6664 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xca2aaf38 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe899278e gen_split_key EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x06717761 cnstr_shdsc_aead_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x09c41809 cnstr_shdsc_gcm_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4099709e cnstr_shdsc_aead_givencap @@ -263,8 +263,8 @@ EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0x8db6e8c5 caam_dump_sg EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xb7bf9b49 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/crypto/caam/error 0xe8e97f8c caam_strstatus EXPORT_SYMBOL drivers/firewire/firewire-core 0x03338b5d fw_card_initialize EXPORT_SYMBOL drivers/firewire/firewire-core 0x045674b1 fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x07dc4919 fw_core_handle_request @@ -1398,349 +1398,349 @@ EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x8594134e iio_triggered_event_setup EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x88f39171 iio_triggered_event_cleanup EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3e6a2be7 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08f9b59c ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0b73bdf4 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14084193 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20ebd0d2 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20f44153 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x466d65ec ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x475f57f9 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x563e13e0 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x58cd4268 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5db55c46 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6446dfd4 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x00fe9f07 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32d0cb33 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ef5ef31 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x62bd0f45 ib_cm_listen EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc5138374 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6f91dc8 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee28c76c ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa91b12f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x98d0f144 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a5c7890 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa74e37ca ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9327e2f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xabe71883 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb109a679 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe10e4d6 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd309cc0b ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3c18f0b ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe1b5b3d7 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xead62e6d ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x008af4da ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00c7617d ib_advise_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d25e7a ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0128ce01 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01c42843 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04fc98b3 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x052c6110 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06599c88 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c7660d rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x074cecb7 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x078c36a0 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d55bb2f rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d704602 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db99560 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10f1ceea rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11393bcb ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13417b21 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d8b4a7 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e01e65 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17133aa5 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18b6fe3e ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb96b2a ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cded965 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ecf713e ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edbd0da _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f110ff3 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21036460 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217f5445 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x234ba934 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25745581 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265ee577 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29013893 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x293c12c6 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa35a50 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b623c02 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e33ba2a ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e711142 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e8464e8 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e82b07 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03c6ecea ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04eb38f0 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04f1aae8 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06f5f8a1 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a3e076e rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b6e4bc9 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d5a8e9a rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2c4c38 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fafaf94 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fb25b49 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x135bab46 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x140a9d98 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f30466 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b4f64a8 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb221cd ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e9b5d8b rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21951063 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2295e00c rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24e3d25e ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24fd7135 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x259384bb ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26713707 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26809787 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2690a37d ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa0fa5c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dd7de50 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e854b1b ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f8b8d38 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fec7bf9 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x300f62c4 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f9dfc13 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3028ab48 rdma_user_mmap_io EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30f7c166 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x312b84d2 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x339c18d2 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33bbfafc ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352fd0fe __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38d81650 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396bc0ff rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c7f770 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cced77c ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3def657b ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f65cea5 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x317d487d ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31929481 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3240f2cd ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a50c79 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3324395e __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33875848 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35093897 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x364400e8 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x368b1fa4 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3761a113 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c4db6d rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cdb2d0b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d931c6c ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e41d064 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fb4dab1 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41647584 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c0bc35 ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44dc8269 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e36108 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439c2387 ib_get_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac5a30b rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bd85aad ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c4aed20 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d74d3ed rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x497a8ba4 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a133bf8 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b252136 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b635e85 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d1398a7 ib_mr_pool_init 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 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52bfd420 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x547276bd rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f47da2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5330c136 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b66424 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5506e07e ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55552532 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5561f02a ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a13106 rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576a5e68 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58091672 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x588558ac rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56f8ac14 rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5914a447 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0b84ed __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce52d46 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ceb0fb1 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dd4f87c ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dfd29a8 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e7be9a1 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eba0744 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x608bcb00 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d4308f8 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d68e5ca ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f065738 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3d4092 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fc3e9ea ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff12f5c ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ae0233 rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6150ba37 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61919794 ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61f0d82b ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65448f6b rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x622d086b rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62f7444f roce_gid_type_mask_support EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6716a231 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6891cbaa rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a5e045 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66063517 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68c6edb9 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68ca422c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x693792b9 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b48dbd7 rdma_link_unregister EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6baa10e7 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0c0ca7 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c17a625 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dba2b8a ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6eda7e50 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bad790e rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c5d3607 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ec1698b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2946d1 ibdev_alert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70685576 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x726ff7c1 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x732df6e8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72777aa5 ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7610a1b0 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770965d7 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7770e8bc ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7804edee ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78755880 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77296dbf rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x778cd3b7 ib_close_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79535a6c rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0a619f ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc147ef ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ebe4b15 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80a309ef ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x824a029e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82589f78 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x830d6349 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x831072b0 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e13c15 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x862dc261 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8666f203 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88129e8e ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8942e896 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c4b0005 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cfa7a95 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d93679d rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fdf3c4d ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78aa9d8a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b21012d rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd195c4 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d8845b0 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e36569b _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80323c62 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81b9c790 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x830790f0 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85ebcf2a rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x890c844b ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c318760 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e822f6a rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f6c966c ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fbc7fc9 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fcb0f22 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b4c2ed ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92901c99 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93cf1661 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94fcdbd5 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97501287 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98783f37 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989073dd rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9947cbf9 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a25de44 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a5ca791 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c8dc53f rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cccb41f ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e9397a0 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1162d97 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa19262b9 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa40a0f4a ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56ab990 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f44723 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9107e56f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x921e0876 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9398f248 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9438cd3f ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x945b30eb ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94738578 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9503e440 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x967194da ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9691faec rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97d705c7 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a5be378 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aec5a57 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cdb47b4 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d43c990 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d824546 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4327f6b rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4a6da30 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa60d81b6 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa74f1ae8 rdma_restrack_count EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa486da7 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabbf3c93 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad7830b7 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7e1cad6 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaae05b63 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaafda6ea rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab826615 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad2baaa1 ib_modify_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeb3e818 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaecc1446 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf2c11d7 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf277460 ib_rdmacg_uncharge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb056eb32 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0fe155d ibdev_info EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3db6076 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb32c7e78 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb416256a rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6e21b4d ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb63d921f rdma_rw_ctx_wrs EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb78c2f2f rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82cf19a ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd7272e9 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe91dc2e ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfed5923 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00e5138 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e8d06a ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8a7e7ba ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8a8bc05 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba65a23e rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbacd8f4 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbb95dd2 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcf80061 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd7c4232 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdd11a3e ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeab8a09 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc054480e ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0a8f7f7 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0b33597 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc171a0cd ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1acd301 ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc45a2754 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5689190 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64d32d0 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7c81368 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca4257c6 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcae988a9 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb445e86 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb571fd3 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc388585d ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3eeed45 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc618d62e ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc79ae464 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca529802 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb6b0d1e rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbd4310b ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd5ca7c9 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3e2de7 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd00306f4 ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e285e8 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd166129c rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd09a1626 ib_dealloc_pd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd25a83b4 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd26f4625 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4114af9 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd466e51b ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6571e78 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2c8cf19 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2f25f53 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4445d2b ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd45046be __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f58f9b ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e39a02 ib_alloc_mr_integrity EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda23d844 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb6bb2ce ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbda9b0b ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd7e63e1 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde879011 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf1ab539 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf29feef ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe06e2a3e ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda75f265 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f59d3e rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe264068a rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3c5d87c ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe28a171c ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47eeb3a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4925d53 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5770087 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6dedf5b rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe74317aa ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe87e52b0 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9284d06 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9b16993 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e4a6c0 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a0d806 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9396444 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a7b68a ib_create_qp_security EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebda4ad9 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec63379b rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2e01b3a ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf344347e ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf45d496e rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf511883c rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5a31acd ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea5262a4 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec02da38 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee209b0b ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2de5b6 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf38a1189 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46de5b9 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf550c12b ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf66121a5 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf661e241 ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf71daa99 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7a22b99 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf808a86f rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8e79aae ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8eca51c rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf92d2368 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc87fb78 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe80e49f ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfec18bd2 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x013dd0f3 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0cb4bf00 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e5e6418 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1aef7fc5 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c34aee7 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80580b2 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb6ff220 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc1edab0 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcf0f867 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdfa2222 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff3a0879 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x041a3e9b ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d346dce ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1041db87 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1cfc53ac uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21ffe5a2 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32ab71a9 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32b426ef ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32ea70b9 ib_umem_odp_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x384992ac ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x399a33f2 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3dc1e25f uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4062c3ec ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ee5b469 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x502999fd ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x588bf2cf flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c2f8a6a ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c498355 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6533cff1 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67a75330 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3991c3c6 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43aa1924 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x446af324 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46fdfd59 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a1b0a00 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4bd790ad ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e8a2a9e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x530b5669 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x567126c5 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58b1ee1f ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f891bd3 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64a43514 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x714f42e5 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x739d9994 ib_umem_odp_map_dma_and_lock EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76811b2f ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x789b7731 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f069655 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8858b8a3 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9c9c6e4c uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cd41650 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d900159 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa054c94a ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa352e425 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa2aeba8 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xabdf0665 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf30cabf uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4c8b354 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb750640c _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb8a04efe ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb72d677 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x953f3ad5 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x97f71f2e ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa2c23979 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa71ff3a7 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2aa766a ib_copy_qp_attr_to_user EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0ab7c11 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5f366d9 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd6fa0097 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9d42f36 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd1031a1 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x099ee84f iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2eb59651 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x53b817a9 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x58576d05 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7328c12d iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x905c187c iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91edfb79 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xefe6e810 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2c99c6c ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca3499b4 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcec9a585 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda9903a3 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe41e2904 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe59417c9 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5d822e1 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea283b58 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed9250e4 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd34b752 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22f9f92a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x53a11664 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6aade8c2 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x73f4d0a6 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7a87c93a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9c14dfc4 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0d7fa8b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd291e3ec iw_cm_listen EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ddac586 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20d5fa1a rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26a685e6 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2711799e __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c224d90 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31694716 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37daf286 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bb8f5f8 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x415e2226 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46b1ae4a rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ccc7a7f rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d4d5428 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f7008b0 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58531d97 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c4ab78f rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62420d45 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68ee9423 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75f86e74 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7959e1cb rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87482286 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0144b6db rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07a3f7ad rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a3ff26f rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f337ac3 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2145dd7d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ebf170a __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f3e21c2 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33015997 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43167d30 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49474fd2 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51111739 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f916dce rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72043105 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x751d3492 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x751eaf7b rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75f42814 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76e6e705 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78cd1160 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x79f0f28f rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82e99230 rdma_lock_handler EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x914a9872 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2669049 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xace30c55 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4916e00 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9480c28 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb96abf89 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc6399b76 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc17f6c2 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdda7b9e1 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0e75ca7 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe53e510b rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf390d026 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf90a3efc rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe505812 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1287732f rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3dcdffe5 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5933a924 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8041d213 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x921251be rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa232106d rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc47cba85 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x31f42d47 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x924d8d60 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x958c51f5 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3453a78 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaae27a6b rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2863caf rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2ee32c4 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb49e099b rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3c8b79a rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd159ff10 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe61daecf rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee11ed29 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf15a7b69 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf40e2bac rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc6ffa57 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x199eb75d rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x28fa4142 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3f6231e1 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5c89ae7a rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8add9c54 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa78c7698 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb0c78c4a rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1e61679e 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 0x68d66e5c rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7370e641 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6b192014 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb892de84 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa8fd7e20 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc7971cae rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0f9c582 sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2782da99 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x295a26f7 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x44c61441 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x46f6fa77 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x665eb9d4 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc9fbae85 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x09421b86 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x29cece7a rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x50d9c446 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x732e08be rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeadf77f7 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfd62799b rtrs_srv_close EXPORT_SYMBOL drivers/input/gameport/gameport 0x097db540 __gameport_register_driver EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c5051fb gameport_unregister_port EXPORT_SYMBOL drivers/input/gameport/gameport 0x311109c2 gameport_unregister_driver @@ -1769,8 +1769,8 @@ EXPORT_SYMBOL drivers/input/sparse-keymap 0xf6f935fd sparse_keymap_report_event EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x15c8f8cd ad7879_pm_ops EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe9422798 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x774bacc6 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xbb872ecc qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x280aff97 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xcb6d541f qnoc_remove EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1e568680 capi_ctr_down EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6f04fc8c attach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x716b32ff capi_ctr_handle_message @@ -1780,48 +1780,48 @@ 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 0x1e446431 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xccf418ef mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xda60fc39 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfdde4265 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x350d87a1 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf4bc1910 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x02c10807 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1c478341 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x66ec6eed mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaeae9d2a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x14f72b44 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x490b8826 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03abce1d mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0482b03e mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bfc9893 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10882446 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x169812f0 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09e5824f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b0b152f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1530181d get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x16243505 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x183e2a56 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 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35d3ce5a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3bbabec5 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41547d57 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x466d2dd7 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3424b798 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c0c3041 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4cfc4997 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51f64989 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x547613e0 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5767af59 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 0x665dfc70 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x89031b49 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x636d254d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77b76d52 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7eca4a0c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ed68b49 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82741215 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x963b2ec6 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0c36457 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0f57f97 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3e8e141 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb663a11e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9abeddd bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc94d0de dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc071b790 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa23a663c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbdb23ea5 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe09c9f2b get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe15c1b88 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1c3c99e queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda6ded6f bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf0fb375 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe21593dc recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe396da1b recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf31037a4 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf726d829 mISDN_freebchannel 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 @@ -2601,87 +2601,87 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x0d487452 denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x3661bf1c denali_remove -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x086c0b52 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15b853da arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x19118db4 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e0856c0 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x05fb91e3 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0eff2540 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x176ba4ab arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5e3be3d3 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x64713b64 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e34edf1 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f785066 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9391c11b arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x980b4348 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe64a16f3 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x757e057a arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x78ab3e84 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9dfddd87 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa115a42b arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbbc76dc9 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce80b692 arcnet_unregister_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf6909156 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfbce0866 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/com20020 0x002f969e com20020_netdev_ops EXPORT_SYMBOL drivers/net/arcnet/com20020 0x33d84710 com20020_check EXPORT_SYMBOL drivers/net/arcnet/com20020 0x98dd77c1 com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xabcb8672 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xda436a62 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf397b6b1 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x9aa0aa6e can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xe6b37dbc can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01cf24f4 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07c6fa3d b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f0a9f25 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e44ab1d b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21c2c26b b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x429f3151 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a240921 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c2a8ecd b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51f7b163 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x531c893e b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a3cbd0a b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a70a815 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e367483 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60a74d8c b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x695612a3 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7449e547 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a1f0951 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b2418a5 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e954b8a b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d112050 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9fb47a44 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa15fa2b4 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa989cdee b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaebc6067 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0fd1f2f b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbaf8f17d b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0b4ac4f b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4cae19a b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc962f9d2 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd812584b b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc3a07b6 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdca78e8e b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd177e27 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xddd6367b b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xded7c003 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdf39da75 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf0134e15 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfdbd667b b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x30d5faf6 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3ab7c436 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbb46698e b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfc37631e b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4015544c lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x770cd128 lan9303_probe +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x184b4e14 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x6a2296eb ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x96a1ec96 ctucan_resume +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x179ff7fa can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xe6331107 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05dddd38 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1cd25482 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f1ae77e b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2358ff78 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d397081 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4529bc4a b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x45cc1011 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x48a7cd54 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c7e146f b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dbd1f9d b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50f60aa0 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x572eb5b3 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x591acc87 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x68052341 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ec36b4f b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x894f4a92 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dce4873 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e9a7ded b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d7b9f10 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9dbd5251 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f078ed2 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa088f4fb b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa29ec4a1 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa2a7d239 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf5ec7b1 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb18bae3c b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc93242b4 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcde98617 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd526a17d b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd78081c6 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde91607c b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe021ab36 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6f44a67 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf0226485 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf0e926de b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5352ced b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb799d02 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff2f1a26 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x164e3350 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9b053a2b b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9bb0aea0 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb9a2cdea b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x203cc8f0 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x73716751 lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe5a07c84 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x81a3d188 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x989ef80c ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xaf528a86 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5330bc8a vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5bb8a7c1 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x92a5c2bd vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd4a0de08 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x13759268 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x702660d2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbc01829b ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2c239543 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x551fe931 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x38a2d8c8 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6242ab98 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8d084fa9 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xff9e5eb8 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x15e7ea7e xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1b3e0150 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1c368c96 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa6f92475 xrs700x_switch_shutdown 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 0xeb9445eb xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0141c740 NS8390_init EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x10050c46 ei_get_stats @@ -2695,83 +2695,83 @@ EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd7ebfa37 ei_close EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfe79afdb ei_set_multicast_list EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0xea515029 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x22f7f613 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x739a472b bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4fc6e4d8 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xc14899ac cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1bf9b83e cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33fd6257 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b29bc9e t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ef6b4c1 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x582ab0c8 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d938744 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e70a40e t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67324b0b cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ac441de cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d082d92 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7af4c83a t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x869d3c6e cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8a27d665 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc390aab4 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdd8932af cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe859f85a cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x016506a5 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b100bc1 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x15256a5e cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1fe31e00 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2380dae3 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61d3d218 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x637194cc t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x76f2ba4c cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95923cff cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa928afaa dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xac2193a7 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1794b6a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb605f7cc t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc0df755d t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc241724 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1e717bd t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe240a765 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe81b5f86 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0101179d cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b836a08 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d4c66ef cxgb4_ring_tx_db EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f225997 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x169d42ce cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dbfcf39 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e329926 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22d47871 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24b4b07d cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25519f64 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2816e110 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x297553c8 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a0f8d71 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d17c54a cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33c86b71 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a0b1b7c cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a861ed5 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ab6984e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15442f39 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21343443 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2137a0b1 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2149a9c6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a809f9e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2da93e1d cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35581e57 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3eb3a2f8 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f2f3ef5 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43331560 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4482f921 cxgb4_remove_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57444349 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60e52b08 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62b75276 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6666b04c cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f38322 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67a58efe cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bda8da6 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74ca3a49 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x894606e1 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a9f8847 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e805af0 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f450908 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2db42e0 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa895dec7 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab57ad3f cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc09de5e4 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc62a2749 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcad17052 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcbc1bd99 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd6ec904 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1a3a0b0 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd276ac4a cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5060112 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd59e6670 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50fcd9db t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a20e170 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6420f1f4 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6738261f cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f013a27 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x794e858b cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a0d9854 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e963427 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82c52125 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x845e3922 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88492b6b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d2e7618 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90e3febd cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9185f8f4 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f388f3e cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8e08afe cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0e07020 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb21860e7 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3a6f145 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc086173b cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc08beec3 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1ae5330 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc65d18c7 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc88619ec cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcde82e02 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd477363e cxgb4_alloc_sftid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdad26c49 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb58ffd4 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd75a08f0 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd6da7df cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf54fd14f cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6f33095 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc84c9ea cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x14b11e2d cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0eac37b cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2e993ca cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe43da579 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf37b5540 cxgb4_port_viid EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x16a8d583 cxgbi_ppm_ppods_reserve 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 0x2db74ae0 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x424bc921 cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67c7be8c cxgbi_ppm_make_ppod_hdr EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67de12bd cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x998845da cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x69bd47b6 cxgb_find_route6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcc426a79 cxgbi_ppm_release EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x51a875a3 vnic_dev_register EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6c7695ec enic_api_devcmd_proxy_by_index @@ -2780,8 +2780,8 @@ EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc6f0a384 vnic_dev_get_pdev EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf2142727 vnic_dev_get_res_count EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa973e319 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbe30abbe be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6964954e be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xfda1b48b be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x1d7407fa 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 0x14eb2f6d fun_dev_disable @@ -2804,8 +2804,8 @@ EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe8f0751c hnae3_register_ae_dev EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xeafcf2de hnae3_unregister_client EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf2be09d7 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2e360e81 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc07db277 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4ed78117 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x627d3a1f 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 0x3b6f74b6 prestera_device_unregister @@ -2855,167 +2855,167 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa45a1c0 mlx4_put_slave_node_guid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe0d0be9 mlx4_SET_PORT_user_mtu EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe47c803 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01f1afa6 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0240f19c mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04b5dc40 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08856774 mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09dc62e4 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b29a9fe mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d5f7e22 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd0393c mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed2621e mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f03deba mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2495df __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f76522 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12778688 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x147655fa mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1554ad84 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4d8a87 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1005c9a8 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10e75786 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x117677a8 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14de904d mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a2a602 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17db6542 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d38c30 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a5f6fbb mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca2f45e mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef6c3d1 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9bd798 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21781ffa mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x226dc42f mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25604e99 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x292c9467 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x293506b4 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x296508bd mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a1c095f mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c152be4 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c9760e2 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d85dfeb mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x202fad06 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x223191b6 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x272590a6 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e54a6fd mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fcc337f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fed0305 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x336d0a1f mlx5_lag_get_num_ports 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 0x34a30bf5 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d8ff1b mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3915494f mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x422f61d6 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45320fb2 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47279318 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47e9d575 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x376dd107 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aabdc32 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eb7dccf mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4837ef94 mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48dc8463 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a889c56 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf4a892 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x495bdbdd mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a296ccd mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf02a2b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf01d9a mlx5_core_create_mkey 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 0x4f079b28 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fefedec mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f0d349 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x510da783 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5188b7d9 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x512fdfc0 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x546ffdc8 __traceiter_mlx5_fs_del_rule 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 0x567554c4 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5907640c mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a2ab39 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b2d9cca mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57aa8889 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58af2719 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c73c447 mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c7c4429 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eb80db7 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff0b08f mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607d78e6 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d804ca6 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e4a7703 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e6cdd9f mlx5_lag_get_roce_netdev 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 0x61c3ee68 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61ef5e95 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65a0ae68 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6678f621 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619292ec mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65c3b122 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68228998 mlx5_qp_debugfs_cleanup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68fddb6e mlx5_destroy_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a6e0f52 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b4b3758 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d1e554a mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da26c8b mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e3173b6 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ea4e995 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70bce8a7 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ca7f55c mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d8fb615 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7068ce84 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71b5f5da mlx5_cmd_exec 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 0x7328c135 mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7437d61b mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a00535 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75304d53 mlx5_core_modify_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x764de790 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x773ae014 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78c70be1 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76579b2d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79193b24 mlx5_qp_debugfs_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e04da __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a4f3e5f mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a681aa0 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a7b691c mlx5_lag_mode_is_hash 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 0x7cf8df99 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d3488e7 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da03e2c mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e554f2c mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e5f259 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a90598 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b5d6b1 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d4e294 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e0d2653 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef1f969 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x826236b7 mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x835efddc mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ca1bf9 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85714319 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89430518 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a9bf38d mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9098ba31 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83734e03 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8565e51d __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86b449e8 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86f3442e mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872582a5 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8750e87e mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87806570 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x881cd444 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89d278c2 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89f875a0 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9ecf08 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c3e0949 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e3af19b mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f12db52 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ff7ad7c mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91652f77 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92d264e2 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9306b4a5 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932f406c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a3b578 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96df2d1b __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9704604f mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97dd8521 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98c77da7 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98283996 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x989efc8c mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x994191cf mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9afa2959 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b833045 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c8c6e2b mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d318aba mlx5_core_destroy_tir 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 0xa0328f03 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1cd2466 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ef4f02 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa89c371f mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1a5f6b mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffce6af mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0a02f90 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ba42ae mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8d9531f mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e93c12 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa940f94c mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa50e63d mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa91ad85 mlx5_eswitch_reg_c1_loopback_enabled 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 0xaf3990fe mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb000acf9 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb18a3965 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5b69330 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae06183f mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae40502d mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec8bcf3 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0875cc8 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0c14923 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b86565 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4299c10 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4b42892 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4b67d4a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5eeaa30 mlx5_core_query_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7b824fa mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb870f252 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb950fd48 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcbf2c54 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7978676 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb953ce5c mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb96fab64 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb98d4d60 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb14da8f mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcd08f89 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcd423d2 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7f4362 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe30c930 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe94d89c mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd3b63c1 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb4d164 mlx5_core_destroy_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb611c1 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee68afe mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0566fd4 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0768440 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc157525a mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc23d4447 mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3a200a9 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc53a4581 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc650e5e9 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc674c8b3 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7cfe31d mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc861df3d mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8f296f3 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9267329 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3b7436c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc55999f5 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc65209c7 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7736855 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc805f494 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca54e54f mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9c0f6c __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4143e15 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd46cb4c7 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d36c10 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7be47e0 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd1e890c mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd4dcc98 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde18058c mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce52c551 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf7dd6e7 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd00844f5 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3e31394 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3f6f2a5 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd58a6833 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd73091b9 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb66c487 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc767e0c mlx5_fpga_mem_read EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf595053 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e0aa2d mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe27b5dab mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe29b00a3 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ba738d mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4a7d67a mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe98f0470 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfc06f50 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe45e0f34 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6af4a89 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6d9520e mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7be8b95 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe951c369 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 0xed45e85b mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e29615 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56fffab mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6dd1fdd mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd577ed mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef875376 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0ddb2f2 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32e8079 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7484c4a mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf83bcdd0 mlx5_core_create_rq 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 0xf92119eb __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb2bf9b6 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf956a7f2 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc37464e mlx5_core_roce_gid_set 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 0xff41cdd5 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff7b2ecd __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffc70d88 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffdcb405 mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0728a89e 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 @@ -3129,96 +3129,96 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xb8009b15 mlxsw_i2c_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x55638df1 mlxsw_pci_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xce368388 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00669ae7 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0442c455 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x061039aa ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07e8a5a0 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0baf83da ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11b8b719 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13e172e0 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x009c5d41 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x047a061b ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0632c600 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c64f1bc ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0da9b44f ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e6d9781 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f634759 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x193746f6 ocelot_port_txtstamp_request 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 0x19cf5a0b ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ea7d840 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2446b55f ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x264b3d62 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a4201c5 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a6c310b ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a6e7c08 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1afd2a3c ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22ba3310 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22d192e2 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23cc2d82 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x254625bc ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d10681 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x262cd5cd ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e5b5be5 ocelot_get_max_mtu 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 0x3f01a14b ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31c0ed33 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a446080 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a780f6b ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c1a3b8d ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c200a2f ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3df70643 ocelot_sb_occ_tc_port_bind_get 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 0x429c5dbb ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4429d2ea ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44645b7f ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ddefc8d ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54bc7b3d ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55f3f531 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x586f9497 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59f22899 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b68ac2e ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c3130b8 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ca88cfd ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f808de1 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x627fdbc4 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6511d7b6 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x698c0954 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c679c17 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fa98d0a ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71e08331 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e31a481 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7eae92bb ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42aa1e09 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cb1ec05 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x506898bb ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x582b35c7 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5feaf5c2 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60d80b77 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6280474c ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6372d1a8 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x673f1cb2 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b5b4291 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c65146a ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7395e03f ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75ebf607 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79077372 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b29dd2b ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ce6ccbb ocelot_deinit_timestamp 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 0x892155fe ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x896823e4 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89b23021 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b604c48 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d979af0 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fd3125b ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84e7e932 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87bd9946 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b85d049 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c999ae2 ocelot_port_lag_join 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 0x94874783 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98b69758 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99f67e09 ocelot_init EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ef313f5 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa376d571 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7b6eeef ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1db43d1 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4c20f29 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4e3a390 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa73cb81d ocelot_devlink_sb_register EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8dc06ba ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab96399d ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac1d8ead ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac67b1ed ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad918561 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb08b6a84 ocelot_ptp_verify EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7a58f11 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba9224be ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb48cce72 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4b8d636 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8737014 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8cdef59 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba3081f5 ocelot_devlink_sb_unregister EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd2e9e72 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbeaa34a5 ocelot_ptp_settime64 EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc042c720 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3e72453 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc56f20f4 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8de9faf ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc908cb11 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc48b65aa ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5e6b06f ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6e79f97 ocelot_sb_occ_max_clear 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 0xcf6a958e ocelot_ptp_enable 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 0xd5c26e18 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd63f8b2e ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6808ff6 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0f1034a ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd40b0730 ocelot_vcap_filter_replace 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 0xd9dd10f9 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda86f9d0 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc25cbff ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdef32193 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf95456e ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3b5c260 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5b76c0e ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9b6da28 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd95971a1 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc4ae46c ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2c4b9d6 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe782cd93 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9f179e2 ocelot_sb_pool_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb800379 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeca7a50a ocelot_hwstamp_set 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 0xedbb97c6 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee7221ca ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0472cfe ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1834dd7 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf73adacc ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8dca33f ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa6e14f7 ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb1729fa ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff6da6d2 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf770b117 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcad1a9a ocelot_vcap_filter_del EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x402c4811 qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x670a7b81 qed_get_iscsi_ops @@ -3243,11 +3243,11 @@ EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd527b29a wx_get_pcie_msix_counts EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdc29e170 wx_host_interface_command EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe35ebaef wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x475183ce hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4a10b888 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7771aaf5 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb08ce36b hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xcf548ebe hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x12c47004 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x34b94fa6 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x36cbfed0 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4fc9d96a hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x54b95ca5 hdlcdrv_register EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok @@ -3262,9 +3262,9 @@ EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x63f8a250 miic_create EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0xa3d2db4d miic_destroy EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x3a8c8cbe bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x620b94af pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbe282ab1 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xcdcdf155 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x45f57fe3 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb611fdba pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xdce639f2 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto EXPORT_SYMBOL drivers/net/sungem_phy 0xca497525 sungem_phy_probe EXPORT_SYMBOL drivers/net/team/team 0x21a9b5fe team_options_unregister @@ -3408,22 +3408,22 @@ EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf410e5d1 ath11k_core_deinit EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf91251ea ath11k_pci_disable_ce_irqs_except_wake_irq EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfccc1b72 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ff191bb 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 0x1ed08043 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x19a38a84 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x205ebf7e ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x305ab7e1 ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3a0a6e99 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41f1a656 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x51dabcb6 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x73083186 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x35face6f ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c094f5a ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6816dd59 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c45b917 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8350d3df ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa3ae51f2 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa70b3491 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa925d301 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 0xd8d1f807 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xda02f6e4 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfb7e35f9 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe79ec99c ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xff7df929 ath6kl_core_rx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00613923 ath9k_cmn_init_crypto EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08e55dc3 ath9k_cmn_init_channels_rates EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b6e4b9c ath9k_cmn_get_hw_crypto_keytype @@ -3577,25 +3577,25 @@ EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd45e6d20 brcmu_pktq_flush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06f02b89 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26327c2e libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27430fc8 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x335e76a5 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x49566697 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22aea5a0 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2ab86150 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2b8f55a7 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4a5fd2a5 libipw_get_geo EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ccdbdd6 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b6ba3aa alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56abe8d5 alloc_libipw EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75baf574 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x81256dd6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x821e3aa9 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7a9ccc1c libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87a2d117 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87af0f0d free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x919be0e5 libipw_freq_to_channel EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x97487c40 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa22ca4b3 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9acff51d libipw_txb_free EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa7cfb356 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa728218 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaf7924f8 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbefbcc46 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc39405f0 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd2f8d5b4 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xddb5da0e libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf853abfb libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa397f9a libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb275511d libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc71363c3 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde7f4371 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfe7b0dd3 libipw_is_valid_channel EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01486e2c il_send_bt_config EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07130dc5 il_tx_queue_reset @@ -3701,7 +3701,6 @@ EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8480832 il_set_rxon_channel EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa141cde il_tx_queue_free EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2883a2e9 iwl_trans_pcie_remove 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 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bdc4afa __tracepoint_iwlwifi_dev_ucode_cont_event @@ -3710,6 +3709,7 @@ 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 0xd3f325ab __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb72df2d __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef6cfeb7 iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x003cad18 hostap_80211_rx EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x054f6c46 hostap_set_hostapd_sta EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x073a9a7a hostap_set_hostapd @@ -3809,38 +3809,38 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4ed0ec2c rtl_usb_disconnect EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdaa6b077 rtl_usb_resume EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe0cd2a46 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x042e6413 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x067b8126 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x079240d2 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0acff556 rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ef65a17 efuse_one_byte_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19250fd4 rtl_signal_scale_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1aa41754 rtl_process_phyinfo 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 0x2392f09d rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x261d46cc rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x377d7e56 rtl_phy_scan_operation_backup EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37a85770 rtl_cam_reset_all_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b369ebb rtl_cam_get_free_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40e6fece rtl_cam_add_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5632f756 rtl_cam_delete_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d7a0b82 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7afafd16 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8293a7ae rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ea5b1e5 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bd91409 rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x918946f3 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97222ef4 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadfc6f4d rtlwifi_rate_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf86958a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc07a6f26 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafb22cf6 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb713a70d rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc400a280 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5dab52b rtl_phy_scan_operation_backup EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd33bb31f rtl_cam_mark_invalid EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde9d83d9 rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1a8e00a efuse_read_1byte EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3ac7daf rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4648f7f rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe721eae8 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe749058c rtlwifi_rate_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9eb14a4 rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea207de2 efuse_power_switch EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage @@ -3921,88 +3921,88 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd7d9eec6 rtw_pci_shutdown EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xae63e5d0 rtw_usb_probe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xdf6e38c3 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x6c735db4 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x1bed8f44 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x8048c32b rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02ba9718 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03314c06 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0cace5c9 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xc61647ef rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xb188951f rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x2a2dd970 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06ffa51b rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a954488 rtw89_mac_disable_bb_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e0cc9d0 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0f0d2bfb rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14568d4a rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16c320ba rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d3cceb4 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2398023e rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2ad4d78a rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2d1d99b8 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x317ca084 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37949a97 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4229b437 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4cb70148 rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x532aad82 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bebea6a rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bffa726 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ee218b3 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61a1c160 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61b2ea6a rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x663c7793 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6abeab4f rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x120c2ee1 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16c0e9f2 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b044d40 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1f2fec72 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20f2845b rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x26c95e74 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x295bf88f rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3131da65 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x32d389a4 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x338c0a9f rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36495810 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3812ad0f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3addb09c rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3dbb2558 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4794af4d rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c7e4ef6 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4e344447 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x58b99812 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5fd7afd1 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61563eb4 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63157746 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67665a79 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b8709a0 rtw89_phy_get_txsc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x778e0817 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x77f4987f rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x786f38fc rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d1fc214 rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e3d9e22 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fbc6115 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8467aa9f rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x853a7f70 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e67cd75 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90308630 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93d1e171 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9559b721 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9644ba71 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x966c1298 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9bea3748 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ed4a703 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1dc1e04 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa82e6acd rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb81e095e rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe5194de rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe95012c rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc04b7759 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc706881e rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc73106b0 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca029134 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd5e7931 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4ddb0a6 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9a98901 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0adcb49 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x76bdce1f rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x780b23f2 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x79540bcf rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a04533f rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x806660e5 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8fe0d9d0 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x910bd00f rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9874b36f rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9d3f376c rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ee5d5d6 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa362cfb7 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa744e673 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9394578 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa6e9c7e rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac4a92b7 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae4b9d5c rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb1dd9d96 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb21ddcf7 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb523a62c rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba398c4b rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc43b6347 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc656bc9e rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2faa65a rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4f7f020 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb59f76c rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc47171d rtw89_core_napi_deinit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed15e49f rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed34bcc6 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xedf9c229 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf47c0994 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf644ef8e rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf8ac483c rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe41c205 rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0129dedd rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0785d691 rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0e55059b rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0e9ca3ff rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe413f99d rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec27e9b6 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfac13d12 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc5cc8af rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd6e6597 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd772229 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xff06337d rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x032a5f51 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x06ea7bc6 rtw89_pci_disable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2e214789 rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x304989e8 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3b63ef1c rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x39baac93 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x63d0b564 rtw89_pci_recognize_intrs 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 0x7eb20fa6 rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8b085461 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x717d077c rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x89284fee 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 0x9da6978d rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa6ba1a9d rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xadda674b rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa35b0ec2 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xacd58e49 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xae12e9cc rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbd9d4e10 rtw89_pci_fill_txaddr_info_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc332bc54 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcb752023 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf4c4fcf2 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd0a4f0fb rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe0b2a4c0 rtw89_pci_enable_intr 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 0xd905d891 rsi_config_wowlan EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2b2fec07 wl12xx_is_dummy_packet @@ -4236,26 +4236,26 @@ EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe2edf67 fc_frame_crc_check EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff5fb7b7 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0b1a040f sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x09ad42e6 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x495ea233 sas_resume_ha_no_sync EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xce86cc40 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdf8556b1 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf36ee55b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6553a3ea sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x83f56323 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x93eb8b36 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 0x05b2a8e7 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a1d0c51 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x22a6d01d qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2964c17e qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x30aa94fc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x31609c4f qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x34a34edc qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x652f01ac qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a3c7420 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6e3ed933 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x94536427 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfffcedea qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x22752ca0 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c2c86cb qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2f45de47 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x45a0649b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x602a5036 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x787e276b qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d577fd6 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x94d38338 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa94079c0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc47e12fa qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd40e86f3 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe96930f0 qlt_free_cmd EXPORT_SYMBOL drivers/scsi/raid_class 0x06c6b56a raid_component_add EXPORT_SYMBOL drivers/scsi/raid_class 0x4790f46d raid_class_attach EXPORT_SYMBOL drivers/scsi/raid_class 0xba1edd65 raid_class_release @@ -4366,19 +4366,19 @@ EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x4646becd qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xae4b53c5 qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x16f803df qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2c019612 qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x34c150c0 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3c7ba603 qmi_handle_release EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5159c243 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x60a24c30 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x75b4eb65 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8e8e41eb qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9790c869 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa47112c3 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe670e7e2 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf14a467e qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7412d59b qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x86e8bc6a qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8e0dd219 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa5afad86 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa93862e2 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xae8071c7 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc805f7d4 qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf600d6b5 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf63b361d qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf6969c36 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space EXPORT_SYMBOL drivers/soc/qcom/smem 0x63ef36e3 qcom_smem_alloc @@ -4481,8 +4481,10 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x006f4efd rtllib_wx_get_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00ddc732 rtllib_get_beacon EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03045a4a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08ac0dd9 alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08c1b0e5 HT_update_self_and_peer_setting EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08e01ba1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e0aa262 rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e519e33 RemovePeerTS EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1029f58a dot11d_init EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11c258a7 rtllib_wx_get_scan @@ -4493,8 +4495,6 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18bf0698 rtllib_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18f0fee4 rtllib_wx_set_rts EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28a738c5 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38ecf6b9 free_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a3619ba rtllib_softmac_start_protocol EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b07bb5b rtllib_wx_set_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c6cbdee rtllib_wx_set_auth @@ -4504,21 +4504,21 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x526e18aa rtllib_wx_get_encode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6388b351 rtllib_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6de07682 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x732ad738 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b0ce8fc free_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b2bc1a1 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ea35892 rtllib_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80242b73 rtllib_wx_set_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83dd26f7 rtllib_EnableIntelPromiscuousMode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8bd73bc9 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fca3112 rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb33cbfb2 rtllib_wx_set_mode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5e9d192 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc154ac1 rtllib_rx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc6267ba rtllib_wx_set_rawtx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc50398b4 rtllib_ps_tx_ack EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc72d1217 rtllib_wx_set_gen_ie EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7993db5 rtllib_wx_set_essid EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7d9bdbc notify_wx_assoc_event EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca0712ab rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xced8d747 alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd97c5552 rtllib_act_scanning EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdaa79ba6 rtllib_reset_queue EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdafdcde5 rtllib_start_send_beacons @@ -4532,7 +4532,6 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x050e77c4 ieee80211_wx_get_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x120698f1 ieee80211_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14ea6be9 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dc28858 ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d17308f SendDisassociation_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3052809f ieee80211_wx_get_name @@ -4550,6 +4549,7 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66904968 ieee80211_wx_set_encode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66979591 ieee80211_is_54g EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d63c3d3 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dd403f2 ieee80211_txb_free EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71893817 rtl8192u_dot11d_init EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7be52c17 HTUpdateSelfAndPeerSetting EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86ad3bef ieee80211_wx_set_rts @@ -4569,7 +4569,6 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3dcc3d5 ieee80211_wx_set_mlme EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc50f8977 dot11d_reset EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc599e1e8 ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfbae036 ieee80211_txb_free EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd10d6403 to_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd44b0e31 ieee80211_reset_queue EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd580b188 ieee80211_wx_set_essid @@ -4579,137 +4578,138 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf33bcc0 ieee80211_wx_set_gen_ie EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5128f18 ieee80211_start_send_beacons EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe59bc404 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6e1a2f0 ieee80211_rx_mgt EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe825617f ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaa3770d ieee80211_rx_mgt EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb22d6ce ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeec53924 ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf727b07b ieee80211_stop_scan EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf781a0b3 ieee80211_wx_get_rts EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbc74b61 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x008c7dd0 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0725c61d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23d47227 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24cb1b50 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a08934b iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d9fe8e1 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x384c9db0 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3edf742c iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4bf72e48 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5123ce7e iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x534dab64 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a35f624 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b62571e iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f42107a iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x642b7fc9 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6666b586 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7543beba iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7edb6316 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x843df243 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87c5b025 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a8013cb iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92af9d1a iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93ce035b iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9957518d iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c4ec3bf iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9defdf78 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8a72fdf iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad741d9f iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf7701da iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb14b6ba8 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8a59e47 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbb6554e iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe75183b iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcada1cc8 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd01bfe52 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd13bbb8a iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd56d3bfd iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9049f79 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdab42d17 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5f552fc iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe796b9c4 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0826aa7 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0247dfd8 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03289bf0 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11b42620 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1211fb9b iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18d71f67 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x195bcdfd iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1be14ec7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20cbb1d3 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x247eabc5 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2fdb5e50 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x359a8931 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3670537e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x370931a7 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45d01430 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e4da7dd iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x614247f7 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6502aecc iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x653684c6 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x657a4dd3 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67564bfd iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c2f9a09 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c461834 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e17fba0 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7940153e iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e410922 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e69aa0c iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f122474 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86db9707 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b1f6fbf iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x913dd4d6 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94f65536 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9501ae51 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9951eb6d iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1da3c4a iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa24e64c5 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8e9d84d iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd380bbb iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf8f8298 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0442bec iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1e7de9c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb9dfc80 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfa85db3 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebfc76b1 iscsit_reject_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3ec3578 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf83efd83 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbb4a7b3 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34450f7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbbcc08a iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/target_core_mod 0x0129dd73 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x02b1f117 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x08302255 target_complete_cmd_with_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a22d98b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c427aef core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x1010ec53 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x14e867a3 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x184680bb transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x192508fc target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x2443793f sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x3170d564 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x31e5ad24 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x33b5dc79 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x368c7fc6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3866b658 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x38b2b9f4 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x152267ec spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x1856ead8 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x18f74f20 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d9feed8 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x1eb5150b target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x21557690 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x219ae0a2 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x228c251c target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x23d94005 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2511b34c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x266da6a9 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x27656d86 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x29871e97 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2abff91d __target_init_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a5760f5 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ab57617 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f265526 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x42dd130d __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x46f8d628 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x51a5a36e target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x543cc603 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x553f7e7b target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x5585968d transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x57a63984 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x594ecbe9 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x59520e51 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x61b16b02 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x67daa2b5 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d18b9d7 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x401e9a81 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4027eb77 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b5c4eb0 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c42e902 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x51a54528 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x526e480b target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x54e03663 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x57fc7de8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x60a9e1d9 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x65804fb7 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x6adcacb2 target_cmd_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x6f02460e passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x714d4865 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x71b5ee09 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x81ae0d17 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x8633b1e2 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x880476b2 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b920f99 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ca32fd5 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f00910b sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f9cbda2 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x90304d3d transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x9471d51f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x97e0ffed core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x986e2293 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cda7284 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x9fcc8dce target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1b4c404 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa26159cb core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6385ab7 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xaac13578 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7109015d target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x77e193fc transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x80f105c0 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x84987ec8 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x86256f8f transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fe5d1fc __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x90ae8586 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x925db6ac core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x930b3aeb core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d96a9a9 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa752db88 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa777c8e6 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xab3e83c3 target_cmd_init_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xaff92046 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xb22880eb target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xb22d866e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4c8f924 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4d32ea5 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2459ffd target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb31a0afc transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb420a991 spc_emulate_inquiry_std EXPORT_SYMBOL drivers/target/target_core_mod 0xb6c4a9ce passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb72b2b9f __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb907def5 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbe5335b core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0xbd723cbb target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf19050f core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0xc208c319 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdb8a3e1 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1a43f01 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd57eebec target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5dde543 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8b1ade0 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xe29732bf core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xe72872fe target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8b4f954 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9b0715b target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xec2bc3bd target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xee409bb5 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc45382ff target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc84bc3eb spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8e80085 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf26d215 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2b663b3 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5577b56 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9f32f4f target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc5e37bb sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xe035149a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe57f1b6a transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5d74a52 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe740584e target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8b540c6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xebda2e73 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xed3b69ae sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xee265ac7 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xee603575 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0184f1f sbc_dif_verify EXPORT_SYMBOL drivers/target/target_core_mod 0xf14ac8e2 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf16eeeff target_setup_session EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5691641 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf78e882b target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9b5dd80 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe45645d transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3d67fe1 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf797a87a core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4b4084ff ufshcd_shutdown EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5f3ac690 ufshcd_system_resume EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6331dbe4 ufshcd_runtime_resume @@ -4724,7 +4724,7 @@ EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xd1df3c4d ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa1265c38 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x194781d6 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x38d2d5aa sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x5f4daf42 sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00f450e8 usb_wwan_dtr_rts EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28613f3b usb_wwan_open EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x46fe1fc5 usb_wwan_port_remove @@ -4917,10 +4917,10 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfaac73ed w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x07fa80c2 w1_ds2781_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb79476b4 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x21d57728 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x38492e49 w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0x70b48619 w1_unregister_family EXPORT_SYMBOL drivers/w1/wire 0x74d8a898 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xc2eec1eb w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x8e0c5e66 w1_remove_master_device EXPORT_SYMBOL fs/fscache/fscache 0x057161d3 __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x19b4108c fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write @@ -5051,12 +5051,12 @@ 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 0x1becda1a lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x499f5a98 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe1022f6 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xdcafda6d lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe6d7ff47 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xeb762420 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x18940fe2 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x43146c88 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x50e08e11 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6cf8db62 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x842690ab lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc1fc8c50 lowpan_register_netdevice EXPORT_SYMBOL net/802/p8022 0x5c2c00a9 unregister_8022_client EXPORT_SYMBOL net/802/p8022 0x69de8e36 register_8022_client EXPORT_SYMBOL net/802/psnap 0x3426b3c0 unregister_snap_client @@ -5116,109 +5116,109 @@ EXPORT_SYMBOL net/9p/9pnet 0xf2bba4d6 p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0xffacc239 p9_client_getattr_dotl EXPORT_SYMBOL net/appletalk/appletalk 0x24284c8d alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x2cd15ba8 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xa89797cf atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xaeb14ec1 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x0a151d8e vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x233e7bab atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x2660b991 register_atm_ioctl +EXPORT_SYMBOL net/appletalk/appletalk 0xa9fec491 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xd0358e4c atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf41bd688 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x19e2f9de atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1fb04671 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2336a30e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2795e160 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x325b926b vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x3731d0c6 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x3c4906a7 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5becc668 atm_charge +EXPORT_SYMBOL net/atm/atm 0x5f428c7a atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x812b3afc deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x8ca1e8f6 atm_charge -EXPORT_SYMBOL net/atm/atm 0x9ace171c atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x739648b7 atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa45ce1da deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbe330146 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xc6210919 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xd0255541 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xefd0e4e8 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xade24d62 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xe920fab8 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf1d41df6 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf48290d7 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf7ce0f8e atm_dev_lookup EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x201605a2 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x21d1b8ed ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2f2aa1c7 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x296d2452 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x3c71a365 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x45c03d81 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x5295f1ce ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6c326199 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x89a2ed56 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8298fa54 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x99a3d472 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xb3589cba ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xa7af2706 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xec036f58 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd69ef3ce ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf9624e76 ax25_linkfail_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x009553b4 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x04d6bf79 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x007c53b8 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04283b79 bt_accept_enqueue EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x09c72f87 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a39565b bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f6849a hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16a751e1 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e99f23b bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0734c5e9 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a473979 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14bf31d4 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a66059d hci_cmd_sync_queue EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22760c92 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x251f964c bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ab2f43a __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x38328349 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d32f403 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3dc99b56 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4403cb8a __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x48a44574 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bbccd5d hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d096c47 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4da1186a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x537857e9 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55962356 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e6e2108 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x607d1390 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x60a6455d hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x62a18883 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6695d404 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x70900af1 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x750006d4 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7672853d __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7744872b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x229d2690 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26aa57bf hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x274cea03 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2973db2d hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b9d2904 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bbcc07a hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f71eaf2 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ffc5553 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x455a51fb bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x459b150f __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bb79d02 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5134f5a9 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51cdf276 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58e27d74 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b499a43 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c7af151 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f76e1b1 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x603f77d8 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68cb0812 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68f3af0b hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a2f38b3 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c02205b hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f024c73 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71b7dcf9 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x778dd4c2 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78f23ffb __hci_cmd_sync_ev 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 0x7bbf1062 bt_sock_ioctl EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c628881 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fe23b13 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x861af10e hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c585651 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c6274dc bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d92f86e hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dfd6438 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x822aadf6 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ac4e098 hci_recv_frame EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e100c74 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa17f13b5 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaca40127 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xae2d9365 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb57bc88a __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc562b124 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca6ce6e4 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc43bcbc hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1eb61cf l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4669ff2 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd46d9309 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9160a43a hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a818fb9 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa003cbc7 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3c0d14d bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa82c2bf5 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadb7d436 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7eee83e __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1f81b03 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd03d87df 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 0xe0958667 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf86611cc hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf89cfb28 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfab1b523 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe829801 __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x10ba89ae ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x335c8815 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3de42925 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4f913086 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b0626ec ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe60d4572 ebt_unregister_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe276b56e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf977c886 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdc22c35 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe8eb9d3 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x167222e5 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x529a81a1 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8e0159ed ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x982418f0 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe6fa1723 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1e619b7 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 @@ -5234,19 +5234,19 @@ EXPORT_SYMBOL net/caif/caif 0xad88acae caif_connect_client EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client EXPORT_SYMBOL net/caif/caif 0xc31a6a41 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x12cb7aac can_rx_register -EXPORT_SYMBOL net/can/can 0x4ef28a61 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x5b4429e5 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x8af0b657 can_proto_register -EXPORT_SYMBOL net/can/can 0xe49eecc4 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xe7285e6e can_send +EXPORT_SYMBOL net/can/can 0x0e81fb34 can_send +EXPORT_SYMBOL net/can/can 0x16667c56 can_proto_register +EXPORT_SYMBOL net/can/can 0x6132f1f4 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x6b5a069a can_proto_unregister +EXPORT_SYMBOL net/can/can 0x73dc583b can_rx_unregister +EXPORT_SYMBOL net/can/can 0xafb0c056 can_rx_register EXPORT_SYMBOL net/ceph/libceph 0x00f9ed6c ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x05bb1e21 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x0887d73e ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0x089cf218 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x095db0b5 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc EXPORT_SYMBOL net/ceph/libceph 0x13403285 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0x160c0bcb ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x18bf85e7 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0x1d5a6126 ceph_parse_param @@ -5256,9 +5256,8 @@ EXPORT_SYMBOL net/ceph/libceph 0x20dee350 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy EXPORT_SYMBOL net/ceph/libceph 0x25952d6c ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x26e8c392 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2a2b2247 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x2ee65362 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2fb25883 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0x30f1f728 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0x32d092a3 ceph_osdc_sync @@ -5275,6 +5274,7 @@ EXPORT_SYMBOL net/ceph/libceph 0x3b83b95f ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x3fa9ed21 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x4086a71b ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x4665ae97 ceph_osdc_start_request @@ -5284,7 +5284,7 @@ EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec EXPORT_SYMBOL net/ceph/libceph 0x51887c94 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x51cdef48 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x54ed1489 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x53435d93 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x55eaeaf9 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash EXPORT_SYMBOL net/ceph/libceph 0x591485a2 ceph_cls_lock_info @@ -5296,27 +5296,25 @@ EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release EXPORT_SYMBOL net/ceph/libceph 0x649e2b81 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x65fa9837 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x69dce602 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr EXPORT_SYMBOL net/ceph/libceph 0x6b56bbc3 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x6c28b556 ceph_auth_is_authenticated EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x720963bf ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x723241f4 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x733660ac ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0x7621695d ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x775926e9 ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0x7a34e316 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0x7ef37669 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x80dec09b ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x813cdf73 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x87675762 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x8a37495e ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0x8c2af65e ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x8c8a60de ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x90e85ac3 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x9108d249 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x91da030c ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x91dd679f ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0x929d1d8e osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x945260f8 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options @@ -5329,16 +5327,17 @@ EXPORT_SYMBOL net/ceph/libceph 0xa51d3602 __ceph_auth_get_authorizer 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 0xa6f49e23 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0xa736ce43 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaee58d5d ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0e4f2d6 ceph_msg_new2 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 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb72ef292 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xb943c88d ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xbd60b5a6 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xbde8cdd8 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context EXPORT_SYMBOL net/ceph/libceph 0xbe51c220 osd_req_op_alloc_hint_init @@ -5346,7 +5345,6 @@ EXPORT_SYMBOL net/ceph/libceph 0xc29ca226 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xc4d60537 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0xc7d65c75 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xc7dcdf9e ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xc85c1b27 ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file EXPORT_SYMBOL net/ceph/libceph 0xcba6e96d ceph_alloc_page_vector @@ -5358,6 +5356,7 @@ EXPORT_SYMBOL net/ceph/libceph 0xd51e4453 ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0xd5792323 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xd5d77b9b ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xda6cb8b9 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0xdbb53634 osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0xde317180 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xde405d28 osd_req_op_extent_osd_data_bio @@ -5369,6 +5368,7 @@ EXPORT_SYMBOL net/ceph/libceph 0xe047ca77 ceph_monc_get_version EXPORT_SYMBOL net/ceph/libceph 0xe11c70c3 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xe13d3908 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe49cf6b5 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0xe4fd34b0 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0xe6f09914 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xe80cd6e4 osd_req_op_extent_osd_data @@ -5377,15 +5377,15 @@ EXPORT_SYMBOL net/ceph/libceph 0xf11a662f osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xf2178837 ceph_auth_add_authorizer_challenge EXPORT_SYMBOL net/ceph/libceph 0xf22abb20 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xf2d1457f ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xf41e1291 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xf46ec616 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xf4c17454 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate EXPORT_SYMBOL net/ceph/libceph 0xfa1047b3 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xfbe8519c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xfc707cbf ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xff4979be ceph_osdc_put_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8d6e4e42 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf62bdbf9 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1294ab0b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8abe590c dccp_req_err EXPORT_SYMBOL net/hsr/hsr 0x87ef9232 is_hsr_master EXPORT_SYMBOL net/hsr/hsr 0xa864b225 hsr_get_version EXPORT_SYMBOL net/ieee802154/ieee802154 0x56eca41e wpan_phy_find @@ -5395,50 +5395,50 @@ EXPORT_SYMBOL net/ieee802154/ieee802154 0xe8d566eb wpan_phy_free EXPORT_SYMBOL net/ieee802154/ieee802154 0xeaa61854 wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xa49444a1 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc45a621b __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xbbf287f6 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe27949b6 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xed08b175 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x070a75dc ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x15b0cae0 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x995c597e ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb3e97248 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5549fe83 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd3d99bf arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdb764008 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdf3f855b arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x416be6f7 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5671c780 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa33fbc8a ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xebc520f1 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xe498f34c xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xf36cd798 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xb88533e8 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x06dcfc44 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2abc165f ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x34fa5551 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x454d735e ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x502934f1 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7d3e65d2 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x80abf8f0 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xab3ae10a ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf7f3636e ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x13065362 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x79437ae9 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x99b5a485 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xaa6348c7 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x675f47a3 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xcdae16f3 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb4f8b220 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb6a2943c xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x1b48abc5 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x1f493bde lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x202dd1d5 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x226a338a lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x5f5b0505 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x7b1f433b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xa222e290 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xcd41cc69 lapb_data_request +EXPORT_SYMBOL net/ipv4/gre 0xa42e9cf6 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x21f1c5dc ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7565045e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x83adf95b ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x964137fe ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x691de72b arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa3a3c876 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb7c73fe6 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd9a57286 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa28b179d ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa3c1fcf9 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd63a101f ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdb3948c5 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x1573d433 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf015a1c7 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x292dc423 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x10bf1ec3 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1d3ffbb8 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2afe6242 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x34e2ab7a ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4f9af6ef ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ba07404 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x87b04f0c ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa36152d4 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb945845a ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4effa811 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x50331d33 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x986115bd ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xebd08e94 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x411a6810 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x75c7345e xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7bb71b91 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x963b0a20 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x02706e28 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x23f9cbaa lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x288a4473 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x5570708d lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x9708b340 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xac353cc2 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xc7392b14 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xea0c6612 lapb_unregister EXPORT_SYMBOL net/llc/llc 0x0a7ad7da llc_sap_close EXPORT_SYMBOL net/llc/llc 0x2d30afed llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack @@ -5448,36 +5448,39 @@ EXPORT_SYMBOL net/llc/llc 0x5e10bd96 llc_add_pack EXPORT_SYMBOL net/llc/llc 0xba6009ad llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0xbb880890 llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x00f4b33c ieee80211_txq_may_transmit EXPORT_SYMBOL net/mac80211/mac80211 0x025b2516 ieee80211_sta_eosp EXPORT_SYMBOL net/mac80211/mac80211 0x0297cdc3 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0414c8d7 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0x0633d124 ieee80211_disconnect EXPORT_SYMBOL net/mac80211/mac80211 0x08da6f59 ieee80211_find_sta EXPORT_SYMBOL net/mac80211/mac80211 0x0d1a7b34 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x0f0882c1 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x10a21387 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x10fcf914 ieee80211_alloc_hw_nm EXPORT_SYMBOL net/mac80211/mac80211 0x10fdefdb ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x14a4f4c8 ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0x1847f0ba ieee80211_ap_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a2bafc4 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x1aa38caa ieee80211_alloc_hw_nm EXPORT_SYMBOL net/mac80211/mac80211 0x1b4e99fd ieee80211_scan_completed EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1e51f91d ieee80211_ctstoself_get EXPORT_SYMBOL net/mac80211/mac80211 0x2116ea1e ieee80211_queue_stopped EXPORT_SYMBOL net/mac80211/mac80211 0x241eac4d ieee80211_report_low_ack EXPORT_SYMBOL net/mac80211/mac80211 0x270b0a79 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x298e692e ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x29a3b0f1 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2d72d4dd ieee80211_tx_dequeue EXPORT_SYMBOL net/mac80211/mac80211 0x30be4619 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x33032812 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x38dea94b ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x353f7ec1 ieee80211_tx_prepare_skb EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x3af9c575 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x3bba1435 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x3bc24fdf ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x4112b3be ieee80211_beacon_set_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x4416a8fa ieee80211_generic_frame_duration EXPORT_SYMBOL net/mac80211/mac80211 0x450f34c9 ieee80211_ctstoself_duration EXPORT_SYMBOL net/mac80211/mac80211 0x45144eb0 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4724e56f ieee80211_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x4c61a55e ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x507aebcf ieee80211_reserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x524ac5ee ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x5296e645 ieee80211_get_fils_discovery_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x54d91b06 ieee80211_rate_control_register EXPORT_SYMBOL net/mac80211/mac80211 0x554afef7 ieee80211_stop_queue EXPORT_SYMBOL net/mac80211/mac80211 0x55e3a199 __ieee80211_get_rx_led_name @@ -5485,20 +5488,19 @@ EXPORT_SYMBOL net/mac80211/mac80211 0x5744736c ieee80211_rts_duration EXPORT_SYMBOL net/mac80211/mac80211 0x5f66318d ieee80211_disable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0x623449ca __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x636698e5 ieee80211_unreserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x681420a4 ieee80211_queue_work EXPORT_SYMBOL net/mac80211/mac80211 0x6bd523e2 ieee80211_wake_queue EXPORT_SYMBOL net/mac80211/mac80211 0x6d56e2ed ieee80211_mark_rx_ba_filtered_frames EXPORT_SYMBOL net/mac80211/mac80211 0x6e8fc51e ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x7092c180 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x71482b9d ieee80211_beacon_set_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x71b7e66c ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x73824bfb ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x7208470d ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0x744db4e3 ieee80211_sta_pspoll EXPORT_SYMBOL net/mac80211/mac80211 0x74c26df7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x76f4fafe ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x775db273 ieee80211_restart_hw EXPORT_SYMBOL net/mac80211/mac80211 0x78a50524 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x7aa40978 ieee80211_free_hw EXPORT_SYMBOL net/mac80211/mac80211 0x7abfd20d ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x7e6fa6a3 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0x7e87907e ieee80211_rx_ba_timer_expired EXPORT_SYMBOL net/mac80211/mac80211 0x7f8ad515 ieee80211_nan_func_terminated EXPORT_SYMBOL net/mac80211/mac80211 0x804b2be1 ieee80211_start_tx_ba_cb_irqsafe @@ -5507,102 +5509,100 @@ EXPORT_SYMBOL net/mac80211/mac80211 0x8681f9ca ieee80211_start_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0x89b30af4 ieee80211_send_eosp_nullfunc EXPORT_SYMBOL net/mac80211/mac80211 0x8d41726d ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x8eef1ece ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8ec12719 ieee80211_register_hw EXPORT_SYMBOL net/mac80211/mac80211 0x92af1b02 __ieee80211_get_assoc_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x94684e6b ieee80211_csa_finish EXPORT_SYMBOL net/mac80211/mac80211 0x94f3c340 ieee80211_queue_delayed_work EXPORT_SYMBOL net/mac80211/mac80211 0x952bd622 ieee80211_chswitch_done EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99bdbdc6 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x99c402a8 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x9975a0af ieee80211_ctstoself_get EXPORT_SYMBOL net/mac80211/mac80211 0xa22b6fa7 ieee80211_tx_status EXPORT_SYMBOL net/mac80211/mac80211 0xa307f355 ieee80211_sta_ps_transition EXPORT_SYMBOL net/mac80211/mac80211 0xa390a900 ieee80211_free_txskb EXPORT_SYMBOL net/mac80211/mac80211 0xa403ce40 ieee80211_channel_switch_disconnect EXPORT_SYMBOL net/mac80211/mac80211 0xa4c85617 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa800d28d ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa910d3e7 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xaa89cc4a ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xad373291 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa5f53a50 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xa8f1b00c ieee80211_beacon_update_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0xadbba336 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xae52e9dd ieee80211_unregister_hw EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0xaeefa55c ieee80211_sta_register_airtime EXPORT_SYMBOL net/mac80211/mac80211 0xb1a4e5a7 ieee80211_stop_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0xb4563853 ieee80211_tdls_oper_request EXPORT_SYMBOL net/mac80211/mac80211 0xb8005f59 ieee80211_beacon_loss EXPORT_SYMBOL net/mac80211/mac80211 0xb9b25553 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xba247fdd ieee80211_get_unsol_bcast_probe_resp_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0xbb2ba678 ieee80211_tx_status_8023 EXPORT_SYMBOL net/mac80211/mac80211 0xbcf877b8 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xbe7f668c ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbe6ff080 ieee80211_rts_get EXPORT_SYMBOL net/mac80211/mac80211 0xbf60165a ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xbfbc4e45 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xc68589bf ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0xc7d28565 ieee80211_sched_scan_stopped EXPORT_SYMBOL net/mac80211/mac80211 0xcadb43a7 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xcb60674b ieee80211_proberesp_get EXPORT_SYMBOL net/mac80211/mac80211 0xcb9e9ad8 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xcc6a71e0 ieee80211_beacon_get_tim EXPORT_SYMBOL net/mac80211/mac80211 0xccf7f278 rate_control_set_rates EXPORT_SYMBOL net/mac80211/mac80211 0xceb0e1df ieee80211_iter_keys_rcu EXPORT_SYMBOL net/mac80211/mac80211 0xd94be0cd ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xda49274b ieee80211_txq_schedule_start EXPORT_SYMBOL net/mac80211/mac80211 0xda560b0b ieee80211_stop_queues EXPORT_SYMBOL net/mac80211/mac80211 0xdf4b8935 ieee80211_tx_status_ext EXPORT_SYMBOL net/mac80211/mac80211 0xe1266e84 wiphy_to_ieee80211_hw EXPORT_SYMBOL net/mac80211/mac80211 0xe406d289 ieee80211_cqm_rssi_notify EXPORT_SYMBOL net/mac80211/mac80211 0xe6a7266e ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xec72a352 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xed96b27a ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xedb2a47d __ieee80211_schedule_txq EXPORT_SYMBOL net/mac80211/mac80211 0xee440722 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xf3a41c9d ieee80211_unregister_hw EXPORT_SYMBOL net/mac80211/mac80211 0xf8c2982c ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xfeb7b090 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfbed3805 ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0xff0eba54 __ieee80211_create_tpt_led_trigger EXPORT_SYMBOL net/mac802154/mac802154 0x45139719 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0x63a6f7a0 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6e1f2d12 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x787ff7e6 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5aa167b4 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5b69fa6b ieee802154_free_hw EXPORT_SYMBOL net/mac802154/mac802154 0x95bd0f62 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xa1083301 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0xb0a91afc ieee802154_unregister_hw EXPORT_SYMBOL net/mac802154/mac802154 0xb604103a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xc8afd1a8 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe1402218 ieee802154_configure_durations EXPORT_SYMBOL net/mac802154/mac802154 0xe9a661ff ieee802154_xmit_hw_error -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0a5bbc42 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c35759f unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1397ede5 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c19ffd7 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x642d7676 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8299fecc register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f97cf6c ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba293a73 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc766b8e1 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0942f15 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3e7fb28 ip_vs_conn_new +EXPORT_SYMBOL net/mac802154/mac802154 0xf32193f4 ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x009a6954 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07ee28a3 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x09f74b1d ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x152e4499 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d9125ee ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24a0fc4d unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54e60d16 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x84c5ccbd unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x87dd7498 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ece7f70 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x92bd3433 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9fe410e8 ip_vs_conn_out_get EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdcdac362 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb08fa7c ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee6fed73 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf07e298c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd8646e94 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb548d16 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdf8660aa ip_vs_scheduler_err EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6aebdc4e nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x59e288d4 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 0x3625a6ed nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5441aa7f __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x7bef8199 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xfdb15f13 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x4a596fd1 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xb50ca7c7 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xbf59ff0f nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd945e83a __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x051e168c xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x08396fa2 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x0da3010b xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x15495cae xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x36a25f13 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0e43d982 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1564f8a7 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x28782bd2 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 0x4bafa941 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x677bda6f xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x682985fe xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8075e9eb xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4a85b156 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x52d96e21 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6e4bb3b5 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7fb00004 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x87b2dce9 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x905d23bb xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc23d7e9c xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc6b54d3d xt_find_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 @@ -5630,149 +5630,151 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol EXPORT_SYMBOL net/nfc/hci/hci 0xf0de0df4 nfc_hci_set_param EXPORT_SYMBOL net/nfc/hci/hci 0xfb2c2d69 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x0c111aba nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x1dd755c8 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x27f7c37a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x28b54c77 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x392187a6 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x399e8a3b nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x3d01921d nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x406b2a25 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x4aba7c95 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x67ea21cd nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x786c56b9 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x8fdc6129 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x904005f6 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x92d6f2c6 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x9d82683a nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9e427181 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa1e330b1 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xaf9e5e0f nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb08ee68d nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb4639d6e nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1a5cfca7 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x38cbf374 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3f92854a nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4ffe3b28 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5131cc2e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x61487e4b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x624a44af nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x62ea5cea nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x63ba5ad3 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x68de9749 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x73c32d0a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x753a3e25 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7f391ef7 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x80b32315 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x81e92a9a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x9211273c nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x99bf1d8d nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x9e061f3d nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa0b77ce2 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xa96f8c7d nci_core_conn_create EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbbf05295 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xbdfee3d8 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xbeb19d4d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xbf8a5801 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xc198e373 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xc8250f40 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd164d2ff nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xede5406e nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf44e638f nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nfc 0x21598dd4 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x437ee968 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x5239d7c8 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x52f0ab02 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x55d52ecc nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x66b1d737 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x6e0bf052 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x72ea44eb nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x820f488c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x89fd538b nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x8d1f7dce nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x9096a464 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x938a71f9 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x952a1b35 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x9b20cdc3 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xac1000c1 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xad8ad0f7 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xadd14700 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xb0b5c464 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xb62f84b0 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xb680ea13 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xb713b093 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xc1faf29e nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xec90ce6c nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xfa34052c nfc_targets_found +EXPORT_SYMBOL net/nfc/nci/nci 0xbbf18ea3 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xc0ec87fe nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc90ae6fc nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd4b49f86 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xd88bd2aa nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xe0491aa4 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe34aa77c nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe6c825d8 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf9e905ae nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nfc 0x0788c049 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x0c22a3d6 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x11aafe94 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x197bb4f0 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x271f206f nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x3266980c nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x38957397 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x39ebe560 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x687f78ca nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x707d4919 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x7dfaac3b nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x8d0cf5ce nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x9e744aba nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xa178194d nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xa3eac100 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xb54fbd13 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb66cadf5 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc8e5cd50 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xdd6ef5cf nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xe6c745e6 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xe986a24e nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xef0b035f nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf383ba5d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xf3c6c03c nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf3f2d3e1 nfc_se_connectivity EXPORT_SYMBOL net/nfc/nfc_digital 0x24ee62eb nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0x9094c86e nfc_digital_register_device EXPORT_SYMBOL net/nfc/nfc_digital 0x9c2bb864 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0xd92b4689 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x06897b95 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x1b32f920 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x56f6d58f phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x5b2854cd phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x5d5bfb76 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xa390a4e2 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xb3a94a67 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xe0bb85f7 phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x058528bc rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1a2ba9b4 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x20849cb3 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x22aaf550 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x23966cfc rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/phonet/phonet 0x04ef3f2c pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x0e9198c4 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x0f3ea83f pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x5ffbfe56 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xbe01779f pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xc8697de3 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xedcdfd36 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf60c5047 pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20b6fcdc rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x273be731 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f345504 rxrpc_kernel_get_peer EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3933f670 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6082eca3 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x75c7a6de rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x79fc28ee rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x85ab9c1c rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x94a6177c rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbcfc14fc rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcf177841 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd1c6b640 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd7372db5 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd9ba408d rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf743221e rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfd35436e rxrpc_kernel_begin_call -EXPORT_SYMBOL net/sctp/sctp 0xbe8b3c35 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x244885a9 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/rxrpc/rxrpc 0x34146d3c rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x38fd6adf rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a16f3eb rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x44e32437 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x686ca8a9 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6e2a907c rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x736f6570 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a4df43e rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x932ffeea rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5cb0948 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcbbda6ed key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd8701935 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdcf79f03 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf52fa6b0 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfd9f8edc rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x709f56ed sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x58816863 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x6203d4d2 __tracepoint_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0x736ba91d __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x84c76556 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xa5e2ae02 __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xa70fbaed __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xbbddd735 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xcfb7379a __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xbc57872c __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xe2abf109 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xf1cab4fc __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 0x2460f491 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4cd5f77c gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf998ac5a gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6155e550 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xca686003 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd415ffa5 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x80d7b44c tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x96cd21c3 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xb77fb7a2 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xd948edb3 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x9a249c52 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0408b86d gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x763f7169 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x86b0ceb0 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x27712ef7 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa8c1c0ed xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd1c5f489 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x04045f79 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x27e8c3cf tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x2abeed89 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x5dee4efd tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x3ca4280d tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x005b5e10 cfg80211_external_auth_request EXPORT_SYMBOL net/wireless/cfg80211 0x016e6dfd cfg80211_rx_assoc_resp EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x08662d11 cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x091175a3 regulatory_set_wiphy_regd_sync EXPORT_SYMBOL net/wireless/cfg80211 0x0aafd546 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x0b291ba1 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x0c1a1a62 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0ba4d462 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x0c37f1ba cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0c9fe4a3 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0de0c34e ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x1077bd6f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x0ecd6ffb cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0x132a311e cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x138483ac cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x15a96fc8 cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0x160b153f get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x1714459e cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19f65314 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x187a2d17 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x19757949 cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d22761b cfg80211_mgmt_tx_status_ext EXPORT_SYMBOL net/wireless/cfg80211 0x202b8eec cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x207cad0c cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x28bc494b cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x2a26d652 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x2d07239b cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x308ae357 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x3122b34e cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x252426df cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x274bae3c __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2dc72049 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x2e490fe3 cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0x3273d770 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x34aadbc8 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x34e3de99 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class EXPORT_SYMBOL net/wireless/cfg80211 0x3786078b regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric EXPORT_SYMBOL net/wireless/cfg80211 0x39accce2 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x3a9d5c7f cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x3c8fd17e cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3ece1d40 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3ee7a2f5 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x3b1dc6fe cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3ec740ce cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0x3f7b7b16 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x4205b845 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem @@ -5781,96 +5783,94 @@ EXPORT_SYMBOL net/wireless/cfg80211 0x4564275c cfg80211_rx_mgmt_ext EXPORT_SYMBOL net/wireless/cfg80211 0x463de137 cfg80211_stop_iface EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x4a302cb0 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4818783b cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x495bb5fe cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4cde53d2 cfg80211_assoc_comeback EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x52f9f371 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x5494b786 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x546c2171 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x54b91188 cfg80211_cqm_rssi_notify EXPORT_SYMBOL net/wireless/cfg80211 0x54d1a696 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x55011a8f cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x577a8c4e cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x593248fa cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x5b5d54b2 cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x5b8e3dd9 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5bafe790 ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x5ee671b0 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x5fdb6a74 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5f92becf ieee80211_data_to_8023_exthdr EXPORT_SYMBOL net/wireless/cfg80211 0x5ff83ae6 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x600fb820 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x60273084 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x63092aed cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x652fe11f wiphy_register EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x69b8dbf4 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6b13d88f cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x734d8e15 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x73ebc8ed cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x74e4e308 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x757cda99 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x796f5757 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x797865d6 cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7abb7abf cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7baa76eb cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7cc0a12c wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x7e9b3395 cfg80211_external_auth_request EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0x82499563 cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x83a59fa0 cfg80211_rx_unprot_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x84c02770 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x8617127a ieee80211_get_channel_khz EXPORT_SYMBOL net/wireless/cfg80211 0x8653623e cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x88eeed26 cfg80211_sta_opmode_change_notify EXPORT_SYMBOL net/wireless/cfg80211 0x89818d3c regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x8a00310c cfg80211_check_station_change EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile EXPORT_SYMBOL net/wireless/cfg80211 0x8d00813f cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x8f456915 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8f97184a cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x90d67e03 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x91147dc0 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x91f0f434 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x90acd310 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x927947b1 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x935ed1e9 cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x9475e998 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x94d07d61 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x965b9bc1 cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x99e91d7d cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9e5b4b4f cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xa0311967 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xa53024dc cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa203327e __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa500d8ab cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xa5f3d716 cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0xa835d9cf __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xa845f18e cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa89f5e65 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xa95ab388 cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0xad298a20 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xb01a2117 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xb06f6cd9 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xadf829c5 cfg80211_update_owe_info_event EXPORT_SYMBOL net/wireless/cfg80211 0xb08f5956 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb39615b3 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xbb41566a cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xbc862bb4 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbf4c2a72 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb55f9243 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb9b11a22 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xbaa6765e cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0xc1242b9b cfg80211_get_ies_channel_number -EXPORT_SYMBOL net/wireless/cfg80211 0xc20994cd cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xc35f2bea cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0xc47c79ff cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc60864dc cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xc797cd6f ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xc909fe2b cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xc91953c8 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc5810fc5 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc8c1bc23 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc8df7a9c cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc9455cca ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcc3e9d11 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xcd8b0e69 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0xcddfc11c wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xcde6f467 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xcdf35cac __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd18e1858 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd1fd8080 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd7f0f2ae cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd5a01d30 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd61dd250 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible EXPORT_SYMBOL net/wireless/cfg80211 0xd9ae76bb cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xdab289c3 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdf664540 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xe4be9666 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe5df171c cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xe66d630b cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe8e43fe4 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xe9f515bc cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe3fd61fc cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xe6f13658 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xe7481c2e cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee9529db cfg80211_put_bss EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band EXPORT_SYMBOL net/wireless/cfg80211 0xf54b19b7 regulatory_pre_cac_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xff1c6fb8 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfbb5259a cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xfbc865c3 cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/lib80211 0x0fe8bb0c lib80211_crypt_info_init EXPORT_SYMBOL net/wireless/lib80211 0x6a5e0743 lib80211_crypt_info_free EXPORT_SYMBOL net/wireless/lib80211 0xb9e027b9 lib80211_crypt_delayed_deinit @@ -6082,19 +6082,18 @@ EXPORT_SYMBOL vmlinux 0x0016aec0 __mod_node_page_state EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base EXPORT_SYMBOL vmlinux 0x005e56e4 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x00664af3 unix_detach_fds EXPORT_SYMBOL vmlinux 0x006e82d4 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x0072e795 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x00922d37 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x00945f4c ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x00830e2a sock_set_keepalive EXPORT_SYMBOL vmlinux 0x00a0354d vmalloc_to_page EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00b78ae7 nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL vmlinux 0x00b908a4 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x00c6896c security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x00cacc87 bio_alloc_clone EXPORT_SYMBOL vmlinux 0x00d69316 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count EXPORT_SYMBOL vmlinux 0x00dc13d2 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x00f41a9e __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x01119515 dev_uc_init EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr @@ -6102,38 +6101,32 @@ EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x0132d8af igrab -EXPORT_SYMBOL vmlinux 0x0148dde9 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x014eee24 snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc EXPORT_SYMBOL vmlinux 0x015f1d1a xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x017535de cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0179f83b netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01979187 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x019f3ffa sock_rfree EXPORT_SYMBOL vmlinux 0x019f9fd8 i2c_del_driver EXPORT_SYMBOL vmlinux 0x01a9b90a vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x01c05c35 skb_dequeue EXPORT_SYMBOL vmlinux 0x01d697aa snd_card_file_add -EXPORT_SYMBOL vmlinux 0x0209d06c ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x01f8e565 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x01fc67cb pneigh_enqueue EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020d6253 __icmp_send EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0211d3e7 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x0216d7e3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x0215e4c8 inet_sendmsg EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x023c0f24 sk_common_release -EXPORT_SYMBOL vmlinux 0x023c364e tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x021d3f0e sk_wait_data +EXPORT_SYMBOL vmlinux 0x022524c2 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x023cae74 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x0241d045 ac97_bus_type -EXPORT_SYMBOL vmlinux 0x025582ff __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027e413d skb_queue_tail EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a52012 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x02addfba __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x02b2baaf pci_release_resource EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng EXPORT_SYMBOL vmlinux 0x02c13504 balance_dirty_pages_ratelimited @@ -6141,71 +6134,64 @@ EXPORT_SYMBOL vmlinux 0x02db9e08 put_ipc_ns EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02fa87e8 xsk_tx_release EXPORT_SYMBOL vmlinux 0x02fde509 can_nice -EXPORT_SYMBOL vmlinux 0x031ed25a __neigh_create +EXPORT_SYMBOL vmlinux 0x030e38fa __neigh_create EXPORT_SYMBOL vmlinux 0x032a452d blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x032ff535 __of_get_address EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x03528f5b tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0361a693 snd_pcm_hw_rule_add EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x036bd1b2 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x036bed02 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x03754783 kernel_getpeername EXPORT_SYMBOL vmlinux 0x0379c86c pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03936a9a __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039ace70 napi_complete_done -EXPORT_SYMBOL vmlinux 0x039c5916 netif_device_attach -EXPORT_SYMBOL vmlinux 0x03a4e592 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x03aa724a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x03b0f9d8 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x03b49885 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all EXPORT_SYMBOL vmlinux 0x03bbd899 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x03c2e6d9 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x03c42f9c md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x03c84e30 skb_dump EXPORT_SYMBOL vmlinux 0x03ea8a9c iter_file_splice_write EXPORT_SYMBOL vmlinux 0x03eed34b snd_pcm_hw_constraint_step EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x03fc8e4a tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x0419591e __sg_free_table EXPORT_SYMBOL vmlinux 0x042460cb vme_dma_request EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x04290f35 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x04292cbb tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x042aaa7f load_nls_default EXPORT_SYMBOL vmlinux 0x04304ace tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x0433fa41 sock_no_ioctl EXPORT_SYMBOL vmlinux 0x04426076 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x04426f14 mem_section EXPORT_SYMBOL vmlinux 0x04446823 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x0445423f tcp_sendpage EXPORT_SYMBOL vmlinux 0x0447c51f fs_param_is_fd EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x045be36b security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x047ab70a __invalidate_device +EXPORT_SYMBOL vmlinux 0x048c504d dst_discard_out EXPORT_SYMBOL vmlinux 0x048e7b38 genphy_loopback EXPORT_SYMBOL vmlinux 0x04a2c7d2 of_get_child_by_name EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x04b099a3 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04cf3091 nlmsg_notify EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04d5cee0 skb_append EXPORT_SYMBOL vmlinux 0x04e2864a grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x04eee602 sock_edemux EXPORT_SYMBOL vmlinux 0x04f484e6 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x04f85b81 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x04fc14b1 skb_free_datagram EXPORT_SYMBOL vmlinux 0x04ff6e4b snd_card_file_remove EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match @@ -6214,49 +6200,48 @@ EXPORT_SYMBOL vmlinux 0x053586b3 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x0536ebeb __bh_read EXPORT_SYMBOL vmlinux 0x053d4f42 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x054043c6 inet6_protos EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054a1beb xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x054e5f71 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0553362b qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x0555692d flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x0569b924 mdiobus_read EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg EXPORT_SYMBOL vmlinux 0x05714f8e param_get_ushort +EXPORT_SYMBOL vmlinux 0x057e9672 tcp_splice_read EXPORT_SYMBOL vmlinux 0x057fc685 dev_mc_add EXPORT_SYMBOL vmlinux 0x05857930 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x058bf3fe __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x0595d11f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x059b7b6c xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x059c59c8 set_user_nice -EXPORT_SYMBOL vmlinux 0x05a2b40f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x05acb15a sock_wfree EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b92a14 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x05c9e327 phy_connect EXPORT_SYMBOL vmlinux 0x05ca2d13 pci_pme_active EXPORT_SYMBOL vmlinux 0x05d4d511 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x05da3c57 set_blocksize -EXPORT_SYMBOL vmlinux 0x05e5c572 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x05ea4a80 pci_assign_resource EXPORT_SYMBOL vmlinux 0x05ec9597 pci_scan_bus EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06225943 dst_discard_out +EXPORT_SYMBOL vmlinux 0x06234f8a security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x062f47d9 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06389512 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x064c099c dev_mc_init EXPORT_SYMBOL vmlinux 0x06634183 snd_timer_instance_free EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x0675c30b netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x0681c73d ip_frag_init +EXPORT_SYMBOL vmlinux 0x066d83e4 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x06828910 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x069ac110 md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x06b1e726 d_exact_alias -EXPORT_SYMBOL vmlinux 0x06c05ddb neigh_for_each EXPORT_SYMBOL vmlinux 0x06c213eb unregister_md_personality -EXPORT_SYMBOL vmlinux 0x06c8547a sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d4e51d xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x06d83742 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x06e34d54 dev_change_flags +EXPORT_SYMBOL vmlinux 0x06f81ea1 ip6_output EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x0714a55a security_path_mknod EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x071bda9c __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x0721a96f scsi_dma_map EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw @@ -6265,33 +6250,33 @@ EXPORT_SYMBOL vmlinux 0x0778d6ff sget EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ba7add tcf_register_action EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x07eef566 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x07f0e18d __sock_create EXPORT_SYMBOL vmlinux 0x07f54272 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x07fa8a52 blk_sync_queue EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x0806bd57 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x080dbfb5 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x081da383 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x08209e4d sock_kmalloc EXPORT_SYMBOL vmlinux 0x082b9dbc da903x_query_status EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08303920 sock_create_lite EXPORT_SYMBOL vmlinux 0x0832694e __block_write_begin EXPORT_SYMBOL vmlinux 0x0833f498 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x08389e08 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister EXPORT_SYMBOL vmlinux 0x0840a9a5 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x084e3c38 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x084f7d72 alloc_fcdev EXPORT_SYMBOL vmlinux 0x08531b00 nand_ecc_sw_hamming_cleanup_ctx EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache EXPORT_SYMBOL vmlinux 0x08631ae2 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x086e7700 dst_destroy EXPORT_SYMBOL vmlinux 0x0898aa46 fc_mount EXPORT_SYMBOL vmlinux 0x08b025ed _dev_crit -EXPORT_SYMBOL vmlinux 0x08cdbbd8 inet_offloads -EXPORT_SYMBOL vmlinux 0x08cf489b zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x08b4f3a5 fget EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08dab00c tcp_check_req +EXPORT_SYMBOL vmlinux 0x08de9edb dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr EXPORT_SYMBOL vmlinux 0x08f5a3f4 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x08ff531f clk_hw_get_clk @@ -6300,185 +6285,186 @@ EXPORT_SYMBOL vmlinux 0x0949191b d_alloc_parallel EXPORT_SYMBOL vmlinux 0x094e6c51 vga_put EXPORT_SYMBOL vmlinux 0x09515730 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x096832e9 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x095254f3 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x0977a406 __remove_inode_hash EXPORT_SYMBOL vmlinux 0x0980a362 pci_disable_device EXPORT_SYMBOL vmlinux 0x0986c0e3 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099c119b phy_aneg_done EXPORT_SYMBOL vmlinux 0x099f5ecb kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x09a1cf2e nlmsg_notify EXPORT_SYMBOL vmlinux 0x09b101ad simple_lookup -EXPORT_SYMBOL vmlinux 0x09c57fea netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x09c6ad8b devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09d8910d key_unlink -EXPORT_SYMBOL vmlinux 0x09f070b5 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a15c874 scsi_device_put EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a3aacec sk_capable EXPORT_SYMBOL vmlinux 0x0a559d54 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x0a75a419 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x0a7f277e flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x0a8786cb finish_no_open EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0a97168f netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa454ca dev_get_stats EXPORT_SYMBOL vmlinux 0x0ab49c63 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x0abec0d5 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x0ac55781 genl_notify +EXPORT_SYMBOL vmlinux 0x0ab4c377 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all EXPORT_SYMBOL vmlinux 0x0ad72f41 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x0ada4b6b ip_route_input_noref EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update EXPORT_SYMBOL vmlinux 0x0af0b20f bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x0af47120 tcf_exts_change EXPORT_SYMBOL vmlinux 0x0b06a5c8 page_pool_create EXPORT_SYMBOL vmlinux 0x0b170e39 snd_ctl_boolean_mono_info EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2003b2 inet_recvmsg EXPORT_SYMBOL vmlinux 0x0b320aa9 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x0b431d3c xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4e9df4 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x0b565315 snd_timer_global_new EXPORT_SYMBOL vmlinux 0x0b5bcf3b mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x0b5e48f5 pin_user_pages EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b6336bc vlan_for_each EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b938e50 ppp_register_channel EXPORT_SYMBOL vmlinux 0x0b972ea2 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x0b9e39ba scsi_rescan_device EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba8d8fb tcp_check_req -EXPORT_SYMBOL vmlinux 0x0bc1f505 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bcdbe4b generic_read_dir EXPORT_SYMBOL vmlinux 0x0bd2d8ce d_alloc_name EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf2356e ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x0c16f8f7 d_make_root EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c29f80c param_set_long EXPORT_SYMBOL vmlinux 0x0c3d5fbe md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x0c55e7d8 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x0c502046 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x0c554323 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x0c7612c1 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x0c88674b phy_read_mmd EXPORT_SYMBOL vmlinux 0x0c9199a0 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x0c964f38 icmp6_send +EXPORT_SYMBOL vmlinux 0x0c92352c __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca7fef3 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x0cacb9de bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x0cc4147f sock_no_sendpage EXPORT_SYMBOL vmlinux 0x0cca1dd1 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x0cd2f99d tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0cd7c8d1 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0d002152 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d105cc1 ip6_xmit EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d312959 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x0d49f499 setup_new_exec -EXPORT_SYMBOL vmlinux 0x0d4b8add tcp_rcv_established EXPORT_SYMBOL vmlinux 0x0d4e80f2 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x0d4feb74 snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL vmlinux 0x0d539149 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d61a190 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x0d65104d skb_expand_head EXPORT_SYMBOL vmlinux 0x0d6a1a80 genphy_suspend -EXPORT_SYMBOL vmlinux 0x0d93bae1 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x0d6fe133 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x0d7e3915 skb_dequeue EXPORT_SYMBOL vmlinux 0x0d94ca71 __snd_pcm_lib_xfer EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete EXPORT_SYMBOL vmlinux 0x0dbb8b61 dquot_alloc_inode EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd3a687 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x0df2d35b registered_fb EXPORT_SYMBOL vmlinux 0x0df4cca3 put_disk -EXPORT_SYMBOL vmlinux 0x0e0642ca seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x0e04d5a8 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x0e14cf9b kill_fasync EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e177f44 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x0e1baade netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e240289 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x0e45b45f __SetPageMovable EXPORT_SYMBOL vmlinux 0x0e4bd8a7 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x0e562d90 bdi_register EXPORT_SYMBOL vmlinux 0x0e573bfe dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x0e5bb9c8 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize -EXPORT_SYMBOL vmlinux 0x0e649cbd qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eba107b linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x0ec53033 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec82334 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x0ecb6ec7 blk_rq_map_user EXPORT_SYMBOL vmlinux 0x0ed381ed param_set_bint EXPORT_SYMBOL vmlinux 0x0ee199ed inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0x0ee5f42f pci_save_state EXPORT_SYMBOL vmlinux 0x0ee872d5 seq_puts -EXPORT_SYMBOL vmlinux 0x0ee8d581 blk_finish_plug EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef9b75b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x0ef7eb52 ppp_input_error EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable EXPORT_SYMBOL vmlinux 0x0f0f3004 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1c43e6 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x0f3cf1f3 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0f4f4539 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x0f5d7053 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0f7d7cab ip_queue_xmit EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create EXPORT_SYMBOL vmlinux 0x0fe0b009 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x0fe78be9 __netif_napi_del EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod EXPORT_SYMBOL vmlinux 0x0ff224fb of_phy_find_device EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x1016bea9 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x103226e8 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x103c09e6 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x10539a45 phy_attach EXPORT_SYMBOL vmlinux 0x10588b4a key_validate EXPORT_SYMBOL vmlinux 0x105f99ed md_write_inc -EXPORT_SYMBOL vmlinux 0x1064f189 skb_clone EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10739aff security_unix_may_send +EXPORT_SYMBOL vmlinux 0x107159db tcp_init_sock EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1083566c dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x1087f5e4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x1099a692 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x10d0f27c d_tmpfile EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dcdf4b inet_add_protocol EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range EXPORT_SYMBOL vmlinux 0x10f740de rproc_add EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x115d17a4 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x115fa0df device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1171b255 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x11725b4e vme_bus_num EXPORT_SYMBOL vmlinux 0x119a7db3 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch EXPORT_SYMBOL vmlinux 0x11a4422e tty_hangup -EXPORT_SYMBOL vmlinux 0x11cc931c netif_skb_features +EXPORT_SYMBOL vmlinux 0x11b534bf xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x11d9ab3d sock_wmalloc EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11fb815e kernel_read EXPORT_SYMBOL vmlinux 0x12072369 __register_binfmt EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave EXPORT_SYMBOL vmlinux 0x1211bad8 simple_open +EXPORT_SYMBOL vmlinux 0x121dc23d udp_seq_ops EXPORT_SYMBOL vmlinux 0x124ae23d dquot_get_state EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down EXPORT_SYMBOL vmlinux 0x128a2e6d md_unregister_thread EXPORT_SYMBOL vmlinux 0x128eb0f6 snd_timer_open -EXPORT_SYMBOL vmlinux 0x129933a3 tcp_seq_start EXPORT_SYMBOL vmlinux 0x12a06a3e fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x12b94e0b nf_log_register EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12de0ad7 scsi_scan_target EXPORT_SYMBOL vmlinux 0x12ee7339 sg_miter_stop @@ -6487,194 +6473,187 @@ EXPORT_SYMBOL vmlinux 0x12fc7171 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x1309cb80 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x130ca787 folio_add_lru +EXPORT_SYMBOL vmlinux 0x132cac41 dev_add_pack EXPORT_SYMBOL vmlinux 0x1341b799 __devm_request_region EXPORT_SYMBOL vmlinux 0x1364e5e2 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x1367152b phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x136bb7d2 snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL vmlinux 0x1379a9ed add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0x1392c825 unregister_binfmt EXPORT_SYMBOL vmlinux 0x139ba492 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x139bac71 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x13bb354a fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x13bf1881 bpf_map_get +EXPORT_SYMBOL vmlinux 0x13c3c5bb netdev_name_in_use EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d1b5b2 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13dfc6dd pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x13e2c1bf dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x14116f53 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x1425e11c file_remove_privs +EXPORT_SYMBOL vmlinux 0x14297589 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x142b1214 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x142d2bf4 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x142b6f46 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x142b9634 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x142d9f64 tty_port_put +EXPORT_SYMBOL vmlinux 0x143442a9 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x14381e1b kmem_cache_alloc_lru -EXPORT_SYMBOL vmlinux 0x143ae542 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x143d446a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x143f81c9 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat EXPORT_SYMBOL vmlinux 0x1456d3f7 tty_vhangup EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1465bcd2 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x14717570 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x147541cd dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x147b02a3 d_drop EXPORT_SYMBOL vmlinux 0x1496894a devm_memremap EXPORT_SYMBOL vmlinux 0x149c6630 simple_setattr EXPORT_SYMBOL vmlinux 0x14b30fdd tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x14b7e4d7 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x14bc5394 ___pskb_trim EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock EXPORT_SYMBOL vmlinux 0x14ee7225 follow_pfn EXPORT_SYMBOL vmlinux 0x1511be4b dquot_acquire -EXPORT_SYMBOL vmlinux 0x15138a50 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x1515dd37 inet_confirm_addr EXPORT_SYMBOL vmlinux 0x15190592 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1534973d tcp_seq_stop EXPORT_SYMBOL vmlinux 0x1534c7ed iget5_locked EXPORT_SYMBOL vmlinux 0x1539d725 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x153bde10 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x153c0a7f alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x1559b1cc file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x155b2dda netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x1568774f sock_no_accept +EXPORT_SYMBOL vmlinux 0x15829067 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x158d4a4c of_find_node_by_type EXPORT_SYMBOL vmlinux 0x15a04428 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x15a90a95 md_cluster_ops EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bbc503 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0x15dc4724 napi_build_skb -EXPORT_SYMBOL vmlinux 0x15f6c712 km_query -EXPORT_SYMBOL vmlinux 0x15f7f713 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x15df121c phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x15e689d3 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x1601faaf generic_writepages EXPORT_SYMBOL vmlinux 0x1603194c folio_mark_accessed EXPORT_SYMBOL vmlinux 0x16138cd3 pipe_unlock EXPORT_SYMBOL vmlinux 0x161eff08 ata_print_version -EXPORT_SYMBOL vmlinux 0x161fe300 tcp_peek_len EXPORT_SYMBOL vmlinux 0x1627fb95 iterate_supers_type EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x1632c5c2 devm_clk_get +EXPORT_SYMBOL vmlinux 0x16365c25 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x1648560f skb_checksum_help EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find EXPORT_SYMBOL vmlinux 0x1682486b read_cache_page -EXPORT_SYMBOL vmlinux 0x168990a0 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x1693a4a0 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x169878c3 ip6_output +EXPORT_SYMBOL vmlinux 0x16a0903e kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x16a516f5 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x16aae8e2 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x16abb7c8 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable EXPORT_SYMBOL vmlinux 0x16c7a346 mmc_alloc_host EXPORT_SYMBOL vmlinux 0x16cfcf87 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x16dc15bd unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ebd7e0 netdev_features_change -EXPORT_SYMBOL vmlinux 0x16ee2b4b kernel_listen -EXPORT_SYMBOL vmlinux 0x16fc9df0 tcp_sendpage EXPORT_SYMBOL vmlinux 0x170f5049 tty_name -EXPORT_SYMBOL vmlinux 0x171310c3 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x173c7bef key_type_keyring -EXPORT_SYMBOL vmlinux 0x17654a99 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x1778867e vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x1779af39 passthru_features_check EXPORT_SYMBOL vmlinux 0x178b946f param_ops_invbool EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1794dd84 nf_log_trace EXPORT_SYMBOL vmlinux 0x17ab59d2 generic_perform_write -EXPORT_SYMBOL vmlinux 0x17d55604 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x17b53a47 sock_no_accept EXPORT_SYMBOL vmlinux 0x182ab0ea __kmap_to_page EXPORT_SYMBOL vmlinux 0x1832dda1 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18519c3d ether_setup EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free EXPORT_SYMBOL vmlinux 0x18687cab of_match_device EXPORT_SYMBOL vmlinux 0x18733893 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x18828672 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x188c561a snd_pcm_lib_malloc_pages EXPORT_SYMBOL vmlinux 0x188cd275 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189dc9e7 netif_device_attach +EXPORT_SYMBOL vmlinux 0x18bb332c tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x18c24b9a kill_litter_super -EXPORT_SYMBOL vmlinux 0x18c29e6c skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x18d18bed elv_rb_add EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x18f7618e scsi_register_driver EXPORT_SYMBOL vmlinux 0x19087cbb snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x191193b1 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x191d8985 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x191da171 serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x192942ff pci_map_rom +EXPORT_SYMBOL vmlinux 0x1939e770 device_get_ethdev_address EXPORT_SYMBOL vmlinux 0x19508e1a vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x195bc8e7 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x196521bb skb_pull +EXPORT_SYMBOL vmlinux 0x196fcdfb xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x19764ca0 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x1976ef42 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x199fa88d udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x19b41dfa kunmap_high EXPORT_SYMBOL vmlinux 0x19b7b583 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec EXPORT_SYMBOL vmlinux 0x19c068e2 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x19c200a1 napi_build_skb +EXPORT_SYMBOL vmlinux 0x19c24f78 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x19caf636 thread_group_exited EXPORT_SYMBOL vmlinux 0x19d2220b cdev_alloc EXPORT_SYMBOL vmlinux 0x19d2e84d __starget_for_each_device EXPORT_SYMBOL vmlinux 0x19d7ec17 scsi_device_get -EXPORT_SYMBOL vmlinux 0x19fe2ef3 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x19ff65f2 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x1a0c2d13 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x1a01c01a nf_log_register EXPORT_SYMBOL vmlinux 0x1a0cff29 readahead_expand EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported EXPORT_SYMBOL vmlinux 0x1a2c59fc shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x1a2fee92 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x1a3de522 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1a3fdecf mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x1a620863 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x1a65a342 configfs_register_group EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn EXPORT_SYMBOL vmlinux 0x1a764c9d register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x1a794303 phy_stop EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 EXPORT_SYMBOL vmlinux 0x1a8aac7b d_add -EXPORT_SYMBOL vmlinux 0x1a8ba7fe fqdir_init EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1aaf55f7 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x1ac7dcb6 rfkill_alloc EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio EXPORT_SYMBOL vmlinux 0x1ae36ec8 blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0x1af490c8 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b05e0ae neigh_event_ns +EXPORT_SYMBOL vmlinux 0x1b05d772 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x1b0ba9dc pid_task EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b26e638 skb_copy_expand EXPORT_SYMBOL vmlinux 0x1b4dfe49 set_bh_page EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8f2b42 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x1b8f55bc input_match_device_id -EXPORT_SYMBOL vmlinux 0x1b90505c tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x1b991735 km_state_expired EXPORT_SYMBOL vmlinux 0x1bab9aa7 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0x1bb6275d scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x1bb827b9 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x1bc02e24 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x1bf4406f ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x1c0496dd misc_register +EXPORT_SYMBOL vmlinux 0x1c138722 ip_getsockopt EXPORT_SYMBOL vmlinux 0x1c1cd2da vfs_mkdir -EXPORT_SYMBOL vmlinux 0x1c28e078 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x1c2027f7 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x1c2066a3 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x1c32dca8 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6a863f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x1c742e01 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c78bfd3 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x1c83f8af find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x1c97c73f __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x1ca07a22 udp_read_skb EXPORT_SYMBOL vmlinux 0x1cac8a0c new_inode EXPORT_SYMBOL vmlinux 0x1cb03698 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1cbb469a build_skb_around +EXPORT_SYMBOL vmlinux 0x1cbbf4ea tcp_mtup_init EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc8b782 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x1cc978fa snd_card_register -EXPORT_SYMBOL vmlinux 0x1cf5d7e2 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1ceb4daf ip_local_deliver EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed EXPORT_SYMBOL vmlinux 0x1d08ffb3 proc_create EXPORT_SYMBOL vmlinux 0x1d0a0ca0 rawnand_dt_parse_gpio_cs @@ -6683,17 +6662,18 @@ EXPORT_SYMBOL vmlinux 0x1d10e257 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x1d1330d5 mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0x1d345e39 simple_write_begin +EXPORT_SYMBOL vmlinux 0x1d514969 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d7cc81d mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x1d901673 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x1d90ed65 skb_store_bits EXPORT_SYMBOL vmlinux 0x1d97b3b3 kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x1d9afccf dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x1db473d8 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dc93a43 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x1dd453d1 inet_recvmsg 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 0x1df94fd3 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e1c4856 regset_get_alloc @@ -6701,21 +6681,26 @@ EXPORT_SYMBOL vmlinux 0x1e4cfbb1 snd_timer_interrupt EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr EXPORT_SYMBOL vmlinux 0x1e7251bc of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x1e7c7a98 security_sock_graft +EXPORT_SYMBOL vmlinux 0x1e948602 peernet2id EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9db60d udp_seq_next EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb28c3f sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 EXPORT_SYMBOL vmlinux 0x1eb776a5 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x1ebf903b sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 EXPORT_SYMBOL vmlinux 0x1eef4b5a vm_map_pages EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format EXPORT_SYMBOL vmlinux 0x1efc41a2 posix_lock_file EXPORT_SYMBOL vmlinux 0x1f0019f7 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x1f081cd1 skb_seq_read EXPORT_SYMBOL vmlinux 0x1f0b2abc bdi_unregister -EXPORT_SYMBOL vmlinux 0x1f0d195b inet_listen -EXPORT_SYMBOL vmlinux 0x1f11e55e xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x1f1ef4fc pci_scan_bridge EXPORT_SYMBOL vmlinux 0x1f1ff9ee mem_map +EXPORT_SYMBOL vmlinux 0x1f22a2a9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x1f2a9176 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x1f33fb10 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x1f34f999 msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x1f3f771c mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x1f3f93d0 pci_choose_state @@ -6723,80 +6708,68 @@ EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0x1f5469ef _dev_warn EXPORT_SYMBOL vmlinux 0x1f6b6e2f flush_signals -EXPORT_SYMBOL vmlinux 0x1f723eb5 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x1f72dd48 dev_open -EXPORT_SYMBOL vmlinux 0x1f7f5b36 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x1faea48e dev_activate EXPORT_SYMBOL vmlinux 0x1fb8063f seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc03cf9 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type -EXPORT_SYMBOL vmlinux 0x1ffe72e8 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x20047625 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x20092bbc get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20103327 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x20119a94 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x202eeebc mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x2018d172 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x2041a005 nand_ecc_init_ctx EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x204d3892 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x205e64b9 make_kgid -EXPORT_SYMBOL vmlinux 0x20695611 security_path_mkdir EXPORT_SYMBOL vmlinux 0x206c916b blkdev_put EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x207ef94c inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x207ff975 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x208f9660 elm_decode_bch_error_page EXPORT_SYMBOL vmlinux 0x209cec3f vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c88fa6 dev_close +EXPORT_SYMBOL vmlinux 0x20b8f691 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x20ccf718 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20db1bb3 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x2102c074 seq_open_private EXPORT_SYMBOL vmlinux 0x21110dbf mmioset EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 EXPORT_SYMBOL vmlinux 0x2116efce __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2120225e tcp_req_err +EXPORT_SYMBOL vmlinux 0x211f6ff4 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x2126dc6d phy_stop EXPORT_SYMBOL vmlinux 0x212c512d posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x2131b380 generic_permission EXPORT_SYMBOL vmlinux 0x2135b5f6 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x213806dd simple_fill_super EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213b58d4 tcp_read_skb EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x2140c4c7 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2143bf6a sock_sendmsg EXPORT_SYMBOL vmlinux 0x214a6de8 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header EXPORT_SYMBOL vmlinux 0x215af608 vmap EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x216e3bb7 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x21a21e47 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x21aaefd2 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c26dec nf_reinject -EXPORT_SYMBOL vmlinux 0x21d54e1d put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x21da5653 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x21d4a82d blk_start_plug EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e9bb58 ndisc_ns_create EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21f12a32 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq EXPORT_SYMBOL vmlinux 0x21fc295f single_release -EXPORT_SYMBOL vmlinux 0x21ffd435 eth_header EXPORT_SYMBOL vmlinux 0x2201c230 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x2204135c seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x22099f71 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x22172726 vme_irq_free -EXPORT_SYMBOL vmlinux 0x221862d6 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2229d4c7 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223cc043 inet_csk_accept EXPORT_SYMBOL vmlinux 0x22438bd0 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x22480cba get_vm_area EXPORT_SYMBOL vmlinux 0x2257d726 jbd2_journal_wipe @@ -6804,23 +6777,20 @@ EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision EXPORT_SYMBOL vmlinux 0x227a654b of_find_device_by_node EXPORT_SYMBOL vmlinux 0x2282a678 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x2287c5a2 tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0x2288dcb8 vfs_symlink +EXPORT_SYMBOL vmlinux 0x229282c5 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x2292e5e8 snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0x22947abd neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x22958d22 blk_start_plug EXPORT_SYMBOL vmlinux 0x229c53b9 pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x22aa7354 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x22aa8c3b sock_setsockopt -EXPORT_SYMBOL vmlinux 0x22af7cce udp_gro_receive EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound EXPORT_SYMBOL vmlinux 0x22b9d75d mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x22d63d8d unregister_netdev -EXPORT_SYMBOL vmlinux 0x22e35a23 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x22f367d7 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x22be7e4b netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x2310e7d6 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x231cb471 rpmh_write_batch EXPORT_SYMBOL vmlinux 0x23278d26 folio_unlock EXPORT_SYMBOL vmlinux 0x233018d8 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x2331b8d2 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x234b2c4f xfrm_state_walk EXPORT_SYMBOL vmlinux 0x2358d442 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x235990e1 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 @@ -6828,42 +6798,43 @@ EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init EXPORT_SYMBOL vmlinux 0x238529cd scsi_host_put EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23b3908b __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x23a0e44e tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x23b6aacd iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c3bcf4 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x23c5fcb9 follow_down_one EXPORT_SYMBOL vmlinux 0x23dd0844 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x23e1ae57 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node EXPORT_SYMBOL vmlinux 0x2407467f vfs_get_tree EXPORT_SYMBOL vmlinux 0x240fd495 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x24213805 handle_edge_irq EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2448ad81 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x2457fb51 blk_mq_alloc_disk_for_queue EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline EXPORT_SYMBOL vmlinux 0x246790df idr_for_each EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x24723439 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x2473b4df genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x24752b0d eth_header_parse EXPORT_SYMBOL vmlinux 0x2477e4a2 d_delete EXPORT_SYMBOL vmlinux 0x24807ce4 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x24859b9f input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x24a70930 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line EXPORT_SYMBOL vmlinux 0x24ad4e28 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x24b02261 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x24bd214d vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x24cc1df1 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x24d13ed3 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x24ea8f02 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x24ec85c7 inet_sendpage EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer EXPORT_SYMBOL vmlinux 0x2505c078 _copy_to_iter EXPORT_SYMBOL vmlinux 0x251287bf refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2532cdec tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x2561929f register_sound_special_device -EXPORT_SYMBOL vmlinux 0x256349a8 build_skb EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x2586843b may_setattr @@ -6871,8 +6842,9 @@ EXPORT_SYMBOL vmlinux 0x2590a164 pcim_enable_device EXPORT_SYMBOL vmlinux 0x25922829 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x259b93de of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x259cd10e tcf_generic_walker EXPORT_SYMBOL vmlinux 0x25b20406 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x25c650a3 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x25c6ef43 tcp_child_process EXPORT_SYMBOL vmlinux 0x25d3e67d fs_context_for_mount EXPORT_SYMBOL vmlinux 0x25e3674e file_update_time EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init @@ -6882,131 +6854,130 @@ EXPORT_SYMBOL vmlinux 0x25fb69d0 nand_ecc_unregister_on_host_hw_engine EXPORT_SYMBOL vmlinux 0x25fe3cdf dcache_dir_close EXPORT_SYMBOL vmlinux 0x25febf2d kobject_add -EXPORT_SYMBOL vmlinux 0x26094276 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x26149823 snd_pcm_lib_ioctl EXPORT_SYMBOL vmlinux 0x2617d6ac vme_register_bridge EXPORT_SYMBOL vmlinux 0x2624d70b t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x263136c6 ppp_register_channel EXPORT_SYMBOL vmlinux 0x263a2a0f rproc_alloc EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263f80af __lock_sock_fast EXPORT_SYMBOL vmlinux 0x26400cef phy_device_free -EXPORT_SYMBOL vmlinux 0x26701ab9 qdisc_put EXPORT_SYMBOL vmlinux 0x2679035f devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x269f7647 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x26a12349 sock_from_file EXPORT_SYMBOL vmlinux 0x26ab376e do_SAK +EXPORT_SYMBOL vmlinux 0x26ae67a0 skb_pull_data EXPORT_SYMBOL vmlinux 0x26aee328 cdev_device_add EXPORT_SYMBOL vmlinux 0x26b13a28 vme_slot_num EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x270b08a8 sock_create EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27384732 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x27472691 arp_create EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2759a358 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check EXPORT_SYMBOL vmlinux 0x27675dba twl6040_reg_write EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277f717c init_net EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse EXPORT_SYMBOL vmlinux 0x278aa736 free_buffer_head EXPORT_SYMBOL vmlinux 0x278c2712 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x278cb61c __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x279348b4 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x27ad5349 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x27b64fdd pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bdaa83 inet_addr_type +EXPORT_SYMBOL vmlinux 0x27c7f32d tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x27d67ce9 __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0x27e11cf5 blk_get_queue +EXPORT_SYMBOL vmlinux 0x27fb40b8 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2803f336 eth_header_parse EXPORT_SYMBOL vmlinux 0x28090426 bio_add_page +EXPORT_SYMBOL vmlinux 0x280b419d udp6_set_csum EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek EXPORT_SYMBOL vmlinux 0x281dec18 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x28283413 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x282afea8 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x283d0448 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x286bcdcc netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x286e7711 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x2876f472 pci_disable_msi EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy EXPORT_SYMBOL vmlinux 0x287a63a9 ps2_init EXPORT_SYMBOL vmlinux 0x2892f019 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x289c151a sock_rfree EXPORT_SYMBOL vmlinux 0x28a8fee4 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x28b21dca skb_push +EXPORT_SYMBOL vmlinux 0x28b6bd53 inet6_offloads EXPORT_SYMBOL vmlinux 0x28bf8665 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x28d6098b neigh_lookup +EXPORT_SYMBOL vmlinux 0x28cc5b39 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x28d6a5dd touch_buffer EXPORT_SYMBOL vmlinux 0x28d95ba5 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x28dbe945 softnet_data EXPORT_SYMBOL vmlinux 0x28de7396 ptp_clock_register EXPORT_SYMBOL vmlinux 0x28f7d9cb jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x28f835fd dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x28f8a417 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28fea480 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x290df430 scsi_remove_target EXPORT_SYMBOL vmlinux 0x290f74c9 snd_device_new EXPORT_SYMBOL vmlinux 0x29155793 fwnode_irq_get EXPORT_SYMBOL vmlinux 0x292741f9 of_phy_connect +EXPORT_SYMBOL vmlinux 0x294da358 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x2952b6c0 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x29530b5e filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x295552d7 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x2958c498 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop EXPORT_SYMBOL vmlinux 0x2963bcb2 get_tree_nodev EXPORT_SYMBOL vmlinux 0x2969902a mmc_get_card -EXPORT_SYMBOL vmlinux 0x296f2991 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x296fd68d skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x29710ac6 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x297d33f1 skb_clone_sk EXPORT_SYMBOL vmlinux 0x29898fb3 snd_card_free EXPORT_SYMBOL vmlinux 0x2995423b rtc_add_group +EXPORT_SYMBOL vmlinux 0x2996e5b6 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x299d582d pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x29cfbf8e input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x29d153b5 ping_prot -EXPORT_SYMBOL vmlinux 0x29d96c82 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x2a12fa20 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x2a1b9cca fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x2a1d8ff6 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x2a1ea6b2 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a366453 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x2a36b1ec udp_seq_stop EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a47f091 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x2a582296 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x2a656270 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a70c523 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x2a77643b configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x2a861878 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a92dcc7 inet_del_protocol EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aab0b82 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x2abb4036 dump_emit -EXPORT_SYMBOL vmlinux 0x2abbfc4e skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x2abc0d2a vlan_vid_add EXPORT_SYMBOL vmlinux 0x2ac1f3fe zpool_register_driver EXPORT_SYMBOL vmlinux 0x2ae304dc dma_fence_array_next EXPORT_SYMBOL vmlinux 0x2b024e47 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x2b066f24 skb_clone +EXPORT_SYMBOL vmlinux 0x2b1e9ca0 sk_common_release EXPORT_SYMBOL vmlinux 0x2b1febba tty_devnum +EXPORT_SYMBOL vmlinux 0x2b39be9a skb_queue_purge EXPORT_SYMBOL vmlinux 0x2b5df86b __scsi_add_device EXPORT_SYMBOL vmlinux 0x2b5f1143 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x2b713297 bpf_link_get_from_fd -EXPORT_SYMBOL vmlinux 0x2b8db0f2 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2b7b5e2b skb_vlan_untag EXPORT_SYMBOL vmlinux 0x2b923202 iunique EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock EXPORT_SYMBOL vmlinux 0x2bc8cb4d starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2bd6aa2c xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x2bdf536b phy_find_first EXPORT_SYMBOL vmlinux 0x2be2b501 sync_file_create EXPORT_SYMBOL vmlinux 0x2bed3b30 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2bf9a675 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c076466 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x2c1b2b61 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up EXPORT_SYMBOL vmlinux 0x2c335cb9 dma_unmap_page_attrs @@ -7019,17 +6990,16 @@ EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8b6588 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x2ca51006 arp_xmit EXPORT_SYMBOL vmlinux 0x2cabfb50 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x2cc2900f napi_consume_skb EXPORT_SYMBOL vmlinux 0x2cd8b0aa cros_ec_query_all EXPORT_SYMBOL vmlinux 0x2cd9aea9 md_finish_reshape EXPORT_SYMBOL vmlinux 0x2cf42ade rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt EXPORT_SYMBOL vmlinux 0x2d0bcd38 truncate_setsize +EXPORT_SYMBOL vmlinux 0x2d130f0a proto_register EXPORT_SYMBOL vmlinux 0x2d1396fe jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d16a224 security_d_instantiate EXPORT_SYMBOL vmlinux 0x2d21bf4c config_group_init EXPORT_SYMBOL vmlinux 0x2d22843d dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged @@ -7041,6 +7011,7 @@ EXPORT_SYMBOL vmlinux 0x2d49e23f mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d5b65c1 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc EXPORT_SYMBOL vmlinux 0x2d82cbea input_close_device EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year @@ -7057,45 +7028,44 @@ EXPORT_SYMBOL vmlinux 0x2e0c6eb7 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x2e110960 __phy_read_mmd EXPORT_SYMBOL vmlinux 0x2e123789 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x2e1963e8 __ip_dev_find EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2382e0 rtnl_configure_link EXPORT_SYMBOL vmlinux 0x2e2be92a pci_find_next_bus EXPORT_SYMBOL vmlinux 0x2e420606 mmc_free_host EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk EXPORT_SYMBOL vmlinux 0x2e5d334b dma_resv_init EXPORT_SYMBOL vmlinux 0x2e7051da blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x2e71b4a7 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x2e799b29 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x2e7c33a3 netdev_err -EXPORT_SYMBOL vmlinux 0x2e84177e sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x2e940b47 fiemap_prep EXPORT_SYMBOL vmlinux 0x2e953441 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x2e97c6b7 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x2e9868f7 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x2eb0528e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2ebbf935 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x2ec2237f vme_irq_handler EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2ed21589 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x2eff0ac2 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2eeb6b43 udp6_csum_init EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0a9eff poll_initwait +EXPORT_SYMBOL vmlinux 0x2f2172ab xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f2f3b42 km_report EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f3f91c6 netlink_capable +EXPORT_SYMBOL vmlinux 0x2f4d648c phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x2f592e90 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f5fd734 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream -EXPORT_SYMBOL vmlinux 0x2f7236dd qdisc_hash_del EXPORT_SYMBOL vmlinux 0x2f8cc120 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x2f998939 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x2fc63f3b blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x2fd03085 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2ffabf39 component_match_add_release EXPORT_SYMBOL vmlinux 0x301276c9 filemap_release_folio EXPORT_SYMBOL vmlinux 0x3020a0ae lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x3027f7dc unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x302bf2fa xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x303bdd69 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x3071be7a genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible @@ -7104,6 +7074,7 @@ EXPORT_SYMBOL vmlinux 0x3087368a nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x309e05cd mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x30a0cef4 sk_stream_error EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 EXPORT_SYMBOL vmlinux 0x30b3b8d3 phy_validate_pause @@ -7112,31 +7083,37 @@ EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create EXPORT_SYMBOL vmlinux 0x30e11a72 release_and_free_resource EXPORT_SYMBOL vmlinux 0x30fbbe6b mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x31153227 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x3119f591 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info EXPORT_SYMBOL vmlinux 0x313e3a8f vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x314468c8 sock_alloc EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf EXPORT_SYMBOL vmlinux 0x314dc9da get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x316be807 km_state_notify EXPORT_SYMBOL vmlinux 0x317051e7 bio_uninit EXPORT_SYMBOL vmlinux 0x31762d50 scsi_add_device EXPORT_SYMBOL vmlinux 0x317e1fb5 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x318898df __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x318a804a skb_checksum EXPORT_SYMBOL vmlinux 0x31977c99 __fs_parse -EXPORT_SYMBOL vmlinux 0x31a247bf tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x319a53fd ppp_register_compressor EXPORT_SYMBOL vmlinux 0x31a31940 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31d134fa qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x31f9b50d bio_free_pages EXPORT_SYMBOL vmlinux 0x3200fdcd clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x3207fe83 cqhci_deactivate EXPORT_SYMBOL vmlinux 0x320c9761 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x321209cb tcf_classify +EXPORT_SYMBOL vmlinux 0x321fe33a tso_build_data EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset EXPORT_SYMBOL vmlinux 0x32368d3a pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x324c538e icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x325111fc rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x32550427 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x32559731 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x325dd2d5 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop EXPORT_SYMBOL vmlinux 0x3270e31d crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put @@ -7144,26 +7121,33 @@ EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy EXPORT_SYMBOL vmlinux 0x328c42d6 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x32cb4bbd reuseport_select_sock EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d6257b rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x32dce54f fs_bio_set EXPORT_SYMBOL vmlinux 0x33214690 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x3328c22c skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x332edd43 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x336080d3 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x3374211c tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x3380abfd skb_copy_header +EXPORT_SYMBOL vmlinux 0x338f27fb reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x338fb288 tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x33966077 of_match_node +EXPORT_SYMBOL vmlinux 0x339b12e4 phy_start +EXPORT_SYMBOL vmlinux 0x339ee46c xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x33a8990d filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0x33b76b36 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x33c087a1 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x33cb4c03 bio_endio EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33f31e89 scsi_partsize -EXPORT_SYMBOL vmlinux 0x33f52251 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x33f91a4b block_invalidate_folio -EXPORT_SYMBOL vmlinux 0x3402d0b7 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x3411144d flow_block_cb_free EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x341ec972 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x343180d0 __scsi_execute +EXPORT_SYMBOL vmlinux 0x34408e18 netdev_err +EXPORT_SYMBOL vmlinux 0x3444c682 phy_error EXPORT_SYMBOL vmlinux 0x34459c93 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x3445dcc6 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x3449d63a blkdev_get_by_dev @@ -7175,42 +7159,42 @@ EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a9c7cd xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x34aefe7e netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x34c068dd ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x34d68d90 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x34da9a3b inet_protos -EXPORT_SYMBOL vmlinux 0x34dac841 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x34ea9922 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x34e0f7d3 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x34eba928 serio_bus -EXPORT_SYMBOL vmlinux 0x34ee7c50 arp_send EXPORT_SYMBOL vmlinux 0x34f20f95 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3521fd14 init_net +EXPORT_SYMBOL vmlinux 0x3521158d napi_complete_done EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource +EXPORT_SYMBOL vmlinux 0x3538fa5e inet_add_protocol EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x35403719 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x35468353 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x3550773b netlink_broadcast EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356310d6 dev_driver_string EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm EXPORT_SYMBOL vmlinux 0x3576fe06 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x359a3ab5 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aa2d1d sock_cmsg_send EXPORT_SYMBOL vmlinux 0x35b67d17 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL vmlinux 0x35b96e92 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x35c3674a scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x35c858c8 bioset_exit EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed EXPORT_SYMBOL vmlinux 0x35ed47d3 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x35f7aad2 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x35ef5c86 sockfd_lookup EXPORT_SYMBOL vmlinux 0x3605169d jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x360985cd bio_integrity_trim EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360c5c99 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable EXPORT_SYMBOL vmlinux 0x362be55b key_invalidate -EXPORT_SYMBOL vmlinux 0x363d284a sk_dst_check EXPORT_SYMBOL vmlinux 0x3643a80d blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x3646afe5 build_skb EXPORT_SYMBOL vmlinux 0x365590d7 nand_ecc_finish_io_req EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const @@ -7220,56 +7204,56 @@ EXPORT_SYMBOL vmlinux 0x368bb1bb fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x3694bbbf nand_monolithic_write_page_raw EXPORT_SYMBOL vmlinux 0x36992fd8 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x36aa912f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x36ab1419 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x36b75726 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x36e58c32 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x36f1527d neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x36e5b7f2 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x36f2aca5 pci_dev_get -EXPORT_SYMBOL vmlinux 0x37198f43 skb_store_bits +EXPORT_SYMBOL vmlinux 0x3702dc95 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37208879 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x372910d5 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x373e400b tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374811b2 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x374cec15 amba_driver_register EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe EXPORT_SYMBOL vmlinux 0x3758e8b7 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x3763f2a7 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x375beec5 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound EXPORT_SYMBOL vmlinux 0x377fd2f1 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x378221c4 netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x378bd37a page_symlink EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian EXPORT_SYMBOL vmlinux 0x3797caad twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c38b63 xp_dma_map EXPORT_SYMBOL vmlinux 0x37cb35e2 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x37d2c316 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date EXPORT_SYMBOL vmlinux 0x37e13de4 folio_migrate_flags EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x381925e3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x380a20b7 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x380ad792 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x3810cf2a __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus EXPORT_SYMBOL vmlinux 0x3823508c nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL vmlinux 0x3833be33 dst_release_immediate EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll EXPORT_SYMBOL vmlinux 0x385823b5 mntput -EXPORT_SYMBOL vmlinux 0x385eb866 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x3860fed1 input_register_handler EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x386ee678 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a3f75e phy_start EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a84a21 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback EXPORT_SYMBOL vmlinux 0x38d6797c revert_creds -EXPORT_SYMBOL vmlinux 0x38dc321c dcb_getapp EXPORT_SYMBOL vmlinux 0x38e0f35c devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x3907d2f5 nand_read_page_raw EXPORT_SYMBOL vmlinux 0x391711bd update_devfreq -EXPORT_SYMBOL vmlinux 0x39211c5e ip_setsockopt EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x393c82c5 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p @@ -7281,34 +7265,32 @@ EXPORT_SYMBOL vmlinux 0x3983962f simple_empty EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a6e65c netif_device_detach EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc EXPORT_SYMBOL vmlinux 0x39be4b91 mount_single EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39d06f1a skb_try_coalesce EXPORT_SYMBOL vmlinux 0x39d74d30 snd_ctl_find_numid EXPORT_SYMBOL vmlinux 0x39db3ff0 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x39dd2192 console_start +EXPORT_SYMBOL vmlinux 0x39f2d4f2 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x39f63e69 skb_find_text +EXPORT_SYMBOL vmlinux 0x39fafa21 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x3a0bcfc0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x3a18dbdc sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x3a19d251 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0x3a1bf576 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x3a28e57b skb_eth_pop EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a6d21f6 dev_get_flags EXPORT_SYMBOL vmlinux 0x3a6ed7ce pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x3a734cdb __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x3a7a3175 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold -EXPORT_SYMBOL vmlinux 0x3a866fbd inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x3aa5b3b1 inet_put_port -EXPORT_SYMBOL vmlinux 0x3aab5d90 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x3a8e7cc5 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer EXPORT_SYMBOL vmlinux 0x3ac12fdb fwnode_iomap -EXPORT_SYMBOL vmlinux 0x3acfaa64 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg EXPORT_SYMBOL vmlinux 0x3b0de37e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x3b1b4daa tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x3b27d2e3 inode_init_owner EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set EXPORT_SYMBOL vmlinux 0x3b3a29bf uart_get_divisor @@ -7316,152 +7298,150 @@ EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user EXPORT_SYMBOL vmlinux 0x3b454e84 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x3b4ce2ec pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x3b59aedc netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x3b5dff6c skb_queue_head EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b6c4f37 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner EXPORT_SYMBOL vmlinux 0x3b788903 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x3b883c95 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x3b89acc8 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x3b8b3017 max8925_bulk_write EXPORT_SYMBOL vmlinux 0x3b9138d5 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x3b9c8f1f reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x3bb26a7f inet_ioctl +EXPORT_SYMBOL vmlinux 0x3bbe2fe6 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bd02f65 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x3bd82c07 security_path_rename -EXPORT_SYMBOL vmlinux 0x3bea901d tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x3bec4f90 ip_options_compile EXPORT_SYMBOL vmlinux 0x3bfa3494 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x3c000cbe sock_wfree -EXPORT_SYMBOL vmlinux 0x3c157ea4 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x3c041cbd __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1c8a6e ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x3c1ff99f dev_remove_offload +EXPORT_SYMBOL vmlinux 0x3c2e455e bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c4bd66c filemap_flush -EXPORT_SYMBOL vmlinux 0x3c540587 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x3c783130 validate_slab_cache EXPORT_SYMBOL vmlinux 0x3c7a50f6 devm_release_resource EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3c995b74 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cb96363 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x3cd769f1 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x3cde244f security_unix_may_send EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq EXPORT_SYMBOL vmlinux 0x3ce55333 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x3cf23301 nf_setsockopt EXPORT_SYMBOL vmlinux 0x3cf5ec2c dm_unregister_target +EXPORT_SYMBOL vmlinux 0x3cf852f7 km_policy_expired +EXPORT_SYMBOL vmlinux 0x3cfadcb7 __skb_get_hash EXPORT_SYMBOL vmlinux 0x3d03e81c blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0x3d04439c of_iomap -EXPORT_SYMBOL vmlinux 0x3d127b23 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x3d24d78e eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array +EXPORT_SYMBOL vmlinux 0x3d493924 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x3d5f1fc9 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3d77343f security_path_unlink +EXPORT_SYMBOL vmlinux 0x3d7ad990 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x3d812789 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x3d850f98 param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x3d8a5236 set_page_dirty EXPORT_SYMBOL vmlinux 0x3d9a15b7 rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x3d9aedc5 dev_mc_del -EXPORT_SYMBOL vmlinux 0x3dac210e in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd1185f inet_accept EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x3de38f41 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x3df2e322 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3deb6ff5 tcp_prot EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e216617 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x3e2e51c6 dst_release_immediate EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e3cd95a __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x3e5499af bio_init -EXPORT_SYMBOL vmlinux 0x3e65e976 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x3e70c1ff tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x3e6d3915 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x3e74c2c0 scsi_ioctl EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes -EXPORT_SYMBOL vmlinux 0x3e8b1b03 pid_task EXPORT_SYMBOL vmlinux 0x3e9bb208 of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0x3ea1feea dquot_initialize EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ece5f55 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark EXPORT_SYMBOL vmlinux 0x3ed1a0c2 max8925_set_bits EXPORT_SYMBOL vmlinux 0x3ee43eb2 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x3eef99d2 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3efe4e26 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x3f0c082d tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x3f21fb3c nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x3f2e87fe slab_build_skb +EXPORT_SYMBOL vmlinux 0x3f19fac1 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x3f21d0d9 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x3f36d436 fb_set_var EXPORT_SYMBOL vmlinux 0x3f436931 tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f458db2 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align EXPORT_SYMBOL vmlinux 0x3f533dd3 devm_iounmap EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init EXPORT_SYMBOL vmlinux 0x3f6e23b6 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3f70f5ae eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x3f781f0b dm_kobject_release EXPORT_SYMBOL vmlinux 0x3f7dd095 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x3f80f121 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x3f828456 skb_find_text EXPORT_SYMBOL vmlinux 0x3f889921 zap_page_range EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access EXPORT_SYMBOL vmlinux 0x3f905e04 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x3f90822a generic_update_time -EXPORT_SYMBOL vmlinux 0x3fad9dd6 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x3fb4a3ef snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL vmlinux 0x3fbab11f fb_class EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe30a58 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x3fe5b994 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x3ff93f74 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x3ffcb1ae netdev_state_change +EXPORT_SYMBOL vmlinux 0x4015e6b6 ppp_input EXPORT_SYMBOL vmlinux 0x40234005 input_register_device EXPORT_SYMBOL vmlinux 0x4027665c mmc_request_done EXPORT_SYMBOL vmlinux 0x402a5f0e redraw_screen +EXPORT_SYMBOL vmlinux 0x40385c96 tcp_conn_request EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x40422250 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump EXPORT_SYMBOL vmlinux 0x405c52fa input_unregister_device -EXPORT_SYMBOL vmlinux 0x405ca6d1 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x405f3299 param_ops_hexint EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 EXPORT_SYMBOL vmlinux 0x408900df sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x408f5f0f tcf_block_put EXPORT_SYMBOL vmlinux 0x4090b3d2 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409c5837 dcb_setapp EXPORT_SYMBOL vmlinux 0x40a45807 of_mdio_find_device EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a6fbf4 security_path_mknod EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr -EXPORT_SYMBOL vmlinux 0x40d46552 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d9f156 udp6_csum_init EXPORT_SYMBOL vmlinux 0x40da4326 fs_param_is_blob EXPORT_SYMBOL vmlinux 0x40db7559 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x40e142af xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x40e196a3 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x40e9d924 tcp_peek_len EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 EXPORT_SYMBOL vmlinux 0x40f871ee rw_verify_area EXPORT_SYMBOL vmlinux 0x40ff4dcb _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x41167c45 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x411c453d inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x41268442 submit_bh -EXPORT_SYMBOL vmlinux 0x412ce10f ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x413cbcd8 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x41301994 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x413f679d scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x413fcaf7 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x4141e0ae bd_abort_claiming EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41484828 nf_log_packet EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x415787b0 ___pskb_trim EXPORT_SYMBOL vmlinux 0x415ab8eb tcf_em_register -EXPORT_SYMBOL vmlinux 0x4167326c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x416863c5 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x416a3325 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x4173c0af __skb_recv_udp EXPORT_SYMBOL vmlinux 0x4173c68b generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x4179110a blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0x417a7eb2 param_get_int EXPORT_SYMBOL vmlinux 0x417c1fde cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x417e8369 cpu_user -EXPORT_SYMBOL vmlinux 0x41851860 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command EXPORT_SYMBOL vmlinux 0x41a50ffe page_get_link @@ -7469,15 +7449,13 @@ EXPORT_SYMBOL vmlinux 0x41b6147a __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x41b751e6 security_binder_transaction EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x41ca7243 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x41cdf55d rt6_lookup -EXPORT_SYMBOL vmlinux 0x41d11bcb skb_free_datagram -EXPORT_SYMBOL vmlinux 0x41d92121 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x41d4f411 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x41de0265 tcp_read_sock EXPORT_SYMBOL vmlinux 0x41e3e7f5 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x41e85a10 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x41eb5e25 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x41f14eb3 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x41f2e44c register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x41f86a31 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x420cfb02 fs_param_is_path EXPORT_SYMBOL vmlinux 0x420fd204 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc @@ -7488,51 +7466,54 @@ EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x425aa7a2 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x4266ce84 pps_unregister_source EXPORT_SYMBOL vmlinux 0x426bcabb _snd_ctl_add_follower -EXPORT_SYMBOL vmlinux 0x426c1322 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x426ce4c7 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x427f6ce9 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x42804e29 tty_check_change +EXPORT_SYMBOL vmlinux 0x428e0778 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x42a69c93 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x42a9297f register_qdisc EXPORT_SYMBOL vmlinux 0x42b2a8ab mtree_erase EXPORT_SYMBOL vmlinux 0x42c27943 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x42cc7e25 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x42d963a2 vlan_vid_del EXPORT_SYMBOL vmlinux 0x42f14dba generic_ro_fops EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x432ec2f1 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x4334094d commit_creds EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x4341b1a4 param_set_ushort -EXPORT_SYMBOL vmlinux 0x434ae851 skb_push +EXPORT_SYMBOL vmlinux 0x434d2049 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid EXPORT_SYMBOL vmlinux 0x435ce522 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x4366ec8c __wait_on_buffer EXPORT_SYMBOL vmlinux 0x43713c3c of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x43768fc6 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x4377e4bc mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438085e7 netlink_set_err EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438e507d xfrm_register_km EXPORT_SYMBOL vmlinux 0x438e588d send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x4394a93c dev_get_by_index EXPORT_SYMBOL vmlinux 0x43b2c96d prepare_creds EXPORT_SYMBOL vmlinux 0x43b997d1 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x43c631d9 block_write_end +EXPORT_SYMBOL vmlinux 0x43ce330b mroute6_is_socket EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43e7a169 unregister_console +EXPORT_SYMBOL vmlinux 0x43e9b42c kernel_sendmsg EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x441819e5 skb_expand_head EXPORT_SYMBOL vmlinux 0x441b5dfa set_page_writeback EXPORT_SYMBOL vmlinux 0x441d7034 seq_read EXPORT_SYMBOL vmlinux 0x4423cada find_vma EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443b0d4f skb_checksum_help +EXPORT_SYMBOL vmlinux 0x443dc78f vlan_for_each EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445edbd7 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x4461583d mdiobus_write EXPORT_SYMBOL vmlinux 0x4461eb55 gic_nonsecure_priorities EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq @@ -7541,71 +7522,70 @@ EXPORT_SYMBOL vmlinux 0x447676a6 set_create_files_as EXPORT_SYMBOL vmlinux 0x4477cb11 simple_pin_fs EXPORT_SYMBOL vmlinux 0x447a45f5 scsi_print_result -EXPORT_SYMBOL vmlinux 0x4498682f put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x44a3ef67 netdev_info EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44d4b181 sock_edemux EXPORT_SYMBOL vmlinux 0x44d9e8f8 locks_free_lock EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44fc9384 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x44ffa1dd tcf_exts_dump EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450c486f xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x4515f266 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x451cc2ee sock_sendmsg +EXPORT_SYMBOL vmlinux 0x4512e8fa ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x45211a68 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453fd528 netlink_broadcast EXPORT_SYMBOL vmlinux 0x4540b9c6 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x4557bcf6 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x455cdba1 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x455e7340 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x4566f199 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x456bc66a vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x456f595c __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x45733a70 nand_read_oob_std EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458618d5 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x45904352 always_delete_dentry EXPORT_SYMBOL vmlinux 0x45add87a jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45becbfb security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x45c3673a del_gendisk EXPORT_SYMBOL vmlinux 0x45c36c49 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x45cfeaf2 phy_write_paged +EXPORT_SYMBOL vmlinux 0x45e32c75 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x45f491f7 dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0x45f96fd8 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x45fac29a __scm_send +EXPORT_SYMBOL vmlinux 0x45fdcb12 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x46083e9c inet_sk_set_state EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461ce3f8 mmc_erase EXPORT_SYMBOL vmlinux 0x4622544a serial8250_do_pm EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x46339e9f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x46357719 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x46481aee bio_split_to_limits EXPORT_SYMBOL vmlinux 0x465838fb call_fib_notifiers EXPORT_SYMBOL vmlinux 0x465aa115 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4662e739 nf_log_trace EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested EXPORT_SYMBOL vmlinux 0x4670308c __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0x46745f90 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x4678d75b skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x469d0ade uart_suspend_port -EXPORT_SYMBOL vmlinux 0x46a3831b ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x46ad81b1 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0x46afa299 md_write_start -EXPORT_SYMBOL vmlinux 0x46b268e7 udp_sendmsg EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 EXPORT_SYMBOL vmlinux 0x46d4f174 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0x46fa359b pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset EXPORT_SYMBOL vmlinux 0x472b6711 __seq_open_private EXPORT_SYMBOL vmlinux 0x472fbcb4 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x473a9d05 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x4733a38a ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x47469776 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x474ed15c ip_local_deliver +EXPORT_SYMBOL vmlinux 0x474a484e inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x47634a22 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x4764c6c9 of_get_min_tck EXPORT_SYMBOL vmlinux 0x47705637 msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev @@ -7613,6 +7593,7 @@ EXPORT_SYMBOL vmlinux 0x47766da8 bioset_init EXPORT_SYMBOL vmlinux 0x478b96c2 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x479f49b7 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47c7fc10 pcie_get_speed_cap @@ -7629,6 +7610,7 @@ EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x48661eae register_sysctl_mount_point EXPORT_SYMBOL vmlinux 0x486e0148 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x48804b51 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x488492c6 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x488528bd gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x488d40e1 mtree_insert_range @@ -7637,87 +7619,88 @@ EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c644b4 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x48ca33c8 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x48ce31f4 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x48ce9ccf xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects -EXPORT_SYMBOL vmlinux 0x48d4dfa5 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x48db2235 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x48e0d06f tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x48e76c3d dev_addr_add EXPORT_SYMBOL vmlinux 0x48ef5960 proc_remove +EXPORT_SYMBOL vmlinux 0x48ff87bf ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4907ae73 __register_nls -EXPORT_SYMBOL vmlinux 0x492deaba sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x4914e734 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x49195776 netlink_unicast +EXPORT_SYMBOL vmlinux 0x4932afab kernel_accept +EXPORT_SYMBOL vmlinux 0x4933c219 netdev_printk EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x496a2cb6 sk_net_capable EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits EXPORT_SYMBOL vmlinux 0x4978b6f1 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x497d1ab9 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x498f2429 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x49972c35 skb_copy EXPORT_SYMBOL vmlinux 0x499b7c61 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x49a56f08 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x49b25a90 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x49b77ed8 kernel_bind EXPORT_SYMBOL vmlinux 0x49c9bcff d_prune_aliases -EXPORT_SYMBOL vmlinux 0x49d15202 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x49f3be43 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x4a05069f mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x4a116ee0 udp_prot -EXPORT_SYMBOL vmlinux 0x4a12a2d3 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x4a1cc65a filemap_fault -EXPORT_SYMBOL vmlinux 0x4a2ef6c3 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4a2c9a4b arp_xmit EXPORT_SYMBOL vmlinux 0x4a2f6bab rproc_del EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a44f1e5 netdev_printk EXPORT_SYMBOL vmlinux 0x4a591d06 nand_ecc_get_on_host_hw_engine EXPORT_SYMBOL vmlinux 0x4a5b5d7d notify_change EXPORT_SYMBOL vmlinux 0x4a60865e scsi_host_get +EXPORT_SYMBOL vmlinux 0x4a790391 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x4a7925fe devfreq_add_device EXPORT_SYMBOL vmlinux 0x4a818e0f tty_port_close -EXPORT_SYMBOL vmlinux 0x4a92a379 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest EXPORT_SYMBOL vmlinux 0x4aa71f76 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x4aac240b sock_set_mark +EXPORT_SYMBOL vmlinux 0x4abcfc77 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x4acdffed tty_unregister_device +EXPORT_SYMBOL vmlinux 0x4ad8d98b neigh_table_clear EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0x4ae1b91e tcf_exts_validate EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x4aeb71a4 generic_file_read_iter EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4b01df32 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x4b1cd973 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x4b337dd0 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4b3888ea call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0x4b456c92 amba_device_register +EXPORT_SYMBOL vmlinux 0x4b77d2f2 sock_from_file EXPORT_SYMBOL vmlinux 0x4b805c27 send_sig_info -EXPORT_SYMBOL vmlinux 0x4b85be65 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x4b8ab6b6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x4b916802 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x4b9736c6 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x4b9e82d1 param_set_ulong EXPORT_SYMBOL vmlinux 0x4bad75d9 pci_irq_vector EXPORT_SYMBOL vmlinux 0x4bbac0e4 register_key_type EXPORT_SYMBOL vmlinux 0x4bbbbd4a seq_vprintf EXPORT_SYMBOL vmlinux 0x4bc1a5d3 iterate_dir EXPORT_SYMBOL vmlinux 0x4bc56746 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x4bd0724d phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x4bdc0049 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x4be398ca xfrm_input EXPORT_SYMBOL vmlinux 0x4be85a03 memweight EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4befcc41 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c184d29 inet6_getname EXPORT_SYMBOL vmlinux 0x4c18fabb flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x4c211cd3 blk_integrity_compare EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2b6be5 kernel_listen EXPORT_SYMBOL vmlinux 0x4c334c47 snd_timer_close EXPORT_SYMBOL vmlinux 0x4c38e5a4 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x4c3e19e0 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x4c414f8f set_nlink EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c59bf66 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x4c59d1af blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x4c7bb916 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x4c82ac9e kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x4c846ec5 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x4c8bf3f3 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x4c9f1936 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x4ca198a1 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0x4cce9ea1 _dev_info @@ -7726,48 +7709,51 @@ EXPORT_SYMBOL vmlinux 0x4d0c6443 pci_iounmap EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page EXPORT_SYMBOL vmlinux 0x4d1adb8f pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x4d2df0e8 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x4d38cdca xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x4d39c623 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d485ecd inet_shutdown +EXPORT_SYMBOL vmlinux 0x4d4ad211 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x4d4b118f copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x4d514485 xa_store EXPORT_SYMBOL vmlinux 0x4d67f859 lock_rename EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d71345c skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x4d6b2165 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x4d6fb679 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0x4d923a3f pcim_iomap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size EXPORT_SYMBOL vmlinux 0x4d9fd9f6 mount_nodev EXPORT_SYMBOL vmlinux 0x4da75e75 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x4db4a847 of_clk_get +EXPORT_SYMBOL vmlinux 0x4db9a442 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x4dbb3ae4 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock EXPORT_SYMBOL vmlinux 0x4dd30ff9 has_capability EXPORT_SYMBOL vmlinux 0x4dec6038 memscan EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e031185 xfrm_input -EXPORT_SYMBOL vmlinux 0x4e051f1e dev_load +EXPORT_SYMBOL vmlinux 0x4df5853b dev_set_threaded EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node EXPORT_SYMBOL vmlinux 0x4e143d05 get_user_pages +EXPORT_SYMBOL vmlinux 0x4e1daab2 fddi_type_trans EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow EXPORT_SYMBOL vmlinux 0x4e432a58 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x4e465d60 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x4e58e1b4 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6a5509 vfs_rmdir EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable -EXPORT_SYMBOL vmlinux 0x4e96d63a tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x4e94a944 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x4e9aca2c xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x4ea0441b fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb68ff4 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x4ebd7425 keyring_clear -EXPORT_SYMBOL vmlinux 0x4ebec109 rt_dst_clone EXPORT_SYMBOL vmlinux 0x4ed57005 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc EXPORT_SYMBOL vmlinux 0x4f0815fe mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x4f0c68ac ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 @@ -7775,41 +7761,45 @@ EXPORT_SYMBOL vmlinux 0x4f3ab755 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x4f3b7903 inode_insert5 EXPORT_SYMBOL vmlinux 0x4f3bfc8b of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x4f428a2a dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4f41d24a dst_init +EXPORT_SYMBOL vmlinux 0x4f454cce netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x4f485b3f of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x4f53abdc __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x4f69cb2e generic_setlease -EXPORT_SYMBOL vmlinux 0x4f6e4164 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x4f7fd282 inet_dgram_ops EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f87c823 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f8a750e __ip_select_ident -EXPORT_SYMBOL vmlinux 0x4f96b735 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4f8b1cf5 netdev_emerg EXPORT_SYMBOL vmlinux 0x4fa37c21 md_set_array_sectors EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf EXPORT_SYMBOL vmlinux 0x4fb8d18f d_instantiate EXPORT_SYMBOL vmlinux 0x4fbe1bde param_ops_bint -EXPORT_SYMBOL vmlinux 0x4fbf35c3 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x4fc075d6 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done -EXPORT_SYMBOL vmlinux 0x4ff64910 sock_i_uid +EXPORT_SYMBOL vmlinux 0x4ff2df7d sock_no_listen EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match EXPORT_SYMBOL vmlinux 0x500bd139 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x503ff9cf tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x5040cbc9 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x504b5435 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x5051ed08 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x505740bd seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x50673d7e d_splice_alias EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free EXPORT_SYMBOL vmlinux 0x50705f91 dec_zone_page_state EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509db88f xp_free EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist 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 0x50cfeea3 dev_open EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d15ce5 mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit @@ -7821,17 +7811,19 @@ EXPORT_SYMBOL vmlinux 0x512c2013 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x5133520b snd_info_create_card_entry EXPORT_SYMBOL vmlinux 0x51391093 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x513c4e5d netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x514a0d1a dget_parent EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x5156df92 poll_initwait -EXPORT_SYMBOL vmlinux 0x51572b2c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x51563d96 ipv4_specific +EXPORT_SYMBOL vmlinux 0x5163cf06 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order -EXPORT_SYMBOL vmlinux 0x5183609f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x51886a8a genlmsg_put EXPORT_SYMBOL vmlinux 0x519562f1 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x51a4acbe get_tree_keyed EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51c54161 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x51c877a5 scsi_is_target_device EXPORT_SYMBOL vmlinux 0x51c91cd0 folio_account_redirty EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid @@ -7840,20 +7832,22 @@ EXPORT_SYMBOL vmlinux 0x51fdc550 truncate_pagecache EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready EXPORT_SYMBOL vmlinux 0x520ab42f generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x52181b0b xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0x523bbecb setattr_prepare -EXPORT_SYMBOL vmlinux 0x524b480f sock_gettstamp -EXPORT_SYMBOL vmlinux 0x524dfe4f skb_pull_data -EXPORT_SYMBOL vmlinux 0x5269d4b1 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x52637a5f alloc_fddidev +EXPORT_SYMBOL vmlinux 0x526422d3 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x527b51d3 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5282e2ec security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x5288b398 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x5291321a snd_timer_instance_new EXPORT_SYMBOL vmlinux 0x5294e819 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x52a8fd76 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x52bb7032 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x52c9f7ba serio_interrupt +EXPORT_SYMBOL vmlinux 0x52ce5e84 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x52cf8de7 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x52d02028 udp_prot EXPORT_SYMBOL vmlinux 0x52d5d6c6 load_nls EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value @@ -7868,52 +7862,46 @@ EXPORT_SYMBOL vmlinux 0x53520050 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x53671c17 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x536e00cc xfrm_state_update EXPORT_SYMBOL vmlinux 0x537fdaca blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x53a1256a devfreq_update_status EXPORT_SYMBOL vmlinux 0x53a6f05e generic_write_end +EXPORT_SYMBOL vmlinux 0x53aa0eab seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x53ab18bf param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x53b55b68 vme_master_request +EXPORT_SYMBOL vmlinux 0x53b8f21e zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x53bcb860 snd_jack_new -EXPORT_SYMBOL vmlinux 0x53c14b3f netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x53cf11b8 neigh_seq_next EXPORT_SYMBOL vmlinux 0x53d59542 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x53e6c707 path_is_under EXPORT_SYMBOL vmlinux 0x53e78138 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x53e7e258 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x53e84d97 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x53f846fc vfs_fsync EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x5409e123 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x54233922 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x54249420 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x542c833a __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54494767 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x545a2460 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x54807508 lease_modify -EXPORT_SYMBOL vmlinux 0x5488c568 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x5492a480 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x54a41769 sk_send_sigurg EXPORT_SYMBOL vmlinux 0x54aab728 dm_register_target EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54cd041b vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x54cec0de inet_frag_destroy EXPORT_SYMBOL vmlinux 0x54d25f16 generic_file_fsync EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54efcfdb xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x54f99f4c tcp_read_done EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x552b4dc5 tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x5532c4f2 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x55330986 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x55371b58 is_subdir -EXPORT_SYMBOL vmlinux 0x553c3ff4 napi_get_frags +EXPORT_SYMBOL vmlinux 0x5541befd inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x554a1199 of_find_compatible_node EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x554f84e0 sockopt_ns_capable EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x555c5020 read_cache_folio EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x5564b602 inet_stream_ops EXPORT_SYMBOL vmlinux 0x5567ca76 inc_node_page_state EXPORT_SYMBOL vmlinux 0x556ef5fa file_path EXPORT_SYMBOL vmlinux 0x5574f8e2 d_set_d_op @@ -7922,42 +7910,42 @@ EXPORT_SYMBOL vmlinux 0x558eacf7 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x5599bd9d snd_pcm_lib_preallocate_pages EXPORT_SYMBOL vmlinux 0x55a41ecf genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x55a5b14f ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x55b854a6 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x55b9e1e9 sock_efree -EXPORT_SYMBOL vmlinux 0x55c116d0 close_fd_get_file EXPORT_SYMBOL vmlinux 0x55d2ddef filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ea552f netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x5622356d skb_eth_push +EXPORT_SYMBOL vmlinux 0x562252ca netif_device_detach EXPORT_SYMBOL vmlinux 0x56311745 copy_page_from_iter EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x565028af kill_anon_super EXPORT_SYMBOL vmlinux 0x565a527e jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x56665944 netdev_update_features EXPORT_SYMBOL vmlinux 0x5667fb56 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x566a7eb6 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x567a265f dev_close EXPORT_SYMBOL vmlinux 0x567c1498 inode_update_time EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568cc72b __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x56944857 key_task_permission +EXPORT_SYMBOL vmlinux 0x569c6459 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x56aca812 sock_alloc EXPORT_SYMBOL vmlinux 0x56b1a7a2 snd_dma_alloc_pages_fallback EXPORT_SYMBOL vmlinux 0x56b44467 max8998_bulk_read EXPORT_SYMBOL vmlinux 0x56b950c0 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x56b9bebb sock_create EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56f0ef4c netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x5703ea74 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x570df426 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x56edc4d8 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x56fdda30 __napi_schedule +EXPORT_SYMBOL vmlinux 0x5701d730 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x5714df7a sound_class -EXPORT_SYMBOL vmlinux 0x571df0ef alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x57255ed5 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x5729271a sock_no_bind -EXPORT_SYMBOL vmlinux 0x574333d3 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5759c4af netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x57627cb6 neigh_table_init EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x579d3e17 sk_free -EXPORT_SYMBOL vmlinux 0x57add89d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x5791b25b phy_do_ioctl EXPORT_SYMBOL vmlinux 0x57b98924 input_unregister_handler EXPORT_SYMBOL vmlinux 0x57c64edd tcp_hashinfo EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero @@ -7969,16 +7957,20 @@ EXPORT_SYMBOL vmlinux 0x581cde4e up EXPORT_SYMBOL vmlinux 0x581e7a8b ps2_command EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58204139 tcp_mmap EXPORT_SYMBOL vmlinux 0x5822f576 snd_device_free EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583ae7bc tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x584648c9 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x584a6944 setup_arg_pages EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x5859709d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x58602a6f arp_tbl +EXPORT_SYMBOL vmlinux 0x58640f85 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x587a0195 pci_read_config_word EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x58855cae udp6_seq_ops EXPORT_SYMBOL vmlinux 0x5889fd75 pagecache_get_page EXPORT_SYMBOL vmlinux 0x588ab983 cdev_device_del EXPORT_SYMBOL vmlinux 0x5892b22b d_invalidate @@ -7988,90 +7980,83 @@ EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bd5a42 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x58b7f97b inet_dgram_ops EXPORT_SYMBOL vmlinux 0x58cf4a43 init_task EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io EXPORT_SYMBOL vmlinux 0x58e9a36a module_layout -EXPORT_SYMBOL vmlinux 0x58fac3d3 inet_getname EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5908153d sock_set_priority EXPORT_SYMBOL vmlinux 0x591c8c8a rproc_shutdown EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x59452419 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594c1429 snd_pci_quirk_lookup EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 EXPORT_SYMBOL vmlinux 0x594e7337 regset_get -EXPORT_SYMBOL vmlinux 0x595799ad dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x5957b337 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x595f8ada phy_trigger_machine EXPORT_SYMBOL vmlinux 0x59853865 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x5993bc85 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x5996ec27 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x5999b1b9 inet_shutdown -EXPORT_SYMBOL vmlinux 0x599a1eb9 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high -EXPORT_SYMBOL vmlinux 0x59a57002 netpoll_parse_options EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize -EXPORT_SYMBOL vmlinux 0x59c2153c mr_table_dump EXPORT_SYMBOL vmlinux 0x59c46026 md_handle_request +EXPORT_SYMBOL vmlinux 0x59ce4998 rt_dst_clone EXPORT_SYMBOL vmlinux 0x59cf0b3b zstd_compress_bound EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area EXPORT_SYMBOL vmlinux 0x59d3b044 __module_get EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 EXPORT_SYMBOL vmlinux 0x59e975cd inode_dio_wait EXPORT_SYMBOL vmlinux 0x59f7b2f0 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x59fe2f5b dev_disable_lro EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a16ffa8 phy_config_aneg EXPORT_SYMBOL vmlinux 0x5a366423 input_set_capability -EXPORT_SYMBOL vmlinux 0x5a3a6d2d sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x5a3b29dc napi_gro_flush +EXPORT_SYMBOL vmlinux 0x5a40cc0d tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x5a46dd71 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a650954 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x5a6fb29d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5a70e42a default_qdisc_ops EXPORT_SYMBOL vmlinux 0x5a75a700 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x5a7a3607 mfd_cell_enable EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9d2d25 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x5aad3bb5 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x5ab970f1 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x5ac95449 _dev_err EXPORT_SYMBOL vmlinux 0x5ad3c5cc make_kprojid -EXPORT_SYMBOL vmlinux 0x5addf2d3 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x5adef583 dev_add_offload EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5af4a25c neigh_direct_output +EXPORT_SYMBOL vmlinux 0x5ae76676 mr_table_dump +EXPORT_SYMBOL vmlinux 0x5aff1be2 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b21fc56 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x5b220acc __mdiobus_register -EXPORT_SYMBOL vmlinux 0x5b346ffc __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x5b79dd14 inet_register_protosw EXPORT_SYMBOL vmlinux 0x5b87ee0c iget_failed EXPORT_SYMBOL vmlinux 0x5b9e1cd7 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x5bae11b6 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x5bb03892 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x5bb91849 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5bbe9518 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5be3cbdf complete_request_key +EXPORT_SYMBOL vmlinux 0x5be4b271 xp_can_alloc EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5be8d3e3 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x5bf7d23e __alloc_pages EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x5c1cdad2 __skb_checksum EXPORT_SYMBOL vmlinux 0x5c2187d9 ilookup5 -EXPORT_SYMBOL vmlinux 0x5c2a8507 unregister_qdisc EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c5165d2 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0x5c534f29 unlock_buffer +EXPORT_SYMBOL vmlinux 0x5c608762 inet6_add_offload EXPORT_SYMBOL vmlinux 0x5c61cdc1 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x5c675974 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x5c697335 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x5c6e5376 param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c7daeb4 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 EXPORT_SYMBOL vmlinux 0x5c8d68d1 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id @@ -8079,8 +8064,7 @@ EXPORT_SYMBOL vmlinux 0x5ca7f1d4 serio_close EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le EXPORT_SYMBOL vmlinux 0x5cc16cc8 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x5cc98db4 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x5cde145e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x5cd7642c __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x5ce4846b t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x5cf2f04f would_dump EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor @@ -8089,13 +8073,12 @@ EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry EXPORT_SYMBOL vmlinux 0x5d5eef00 scsi_done -EXPORT_SYMBOL vmlinux 0x5d751f7a register_qdisc EXPORT_SYMBOL vmlinux 0x5d808847 rpmh_write_async EXPORT_SYMBOL vmlinux 0x5d83ae60 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x5d8590d6 block_read_full_folio EXPORT_SYMBOL vmlinux 0x5d8c54a0 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x5d9a551d sockopt_release_sock EXPORT_SYMBOL vmlinux 0x5da6ef2a vme_lm_request +EXPORT_SYMBOL vmlinux 0x5db1e291 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x5db89106 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last EXPORT_SYMBOL vmlinux 0x5dcad0bc of_device_register @@ -8105,37 +8088,36 @@ EXPORT_SYMBOL vmlinux 0x5dd1c346 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x5dd9b309 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x5ddcf1ab inode_set_bytes -EXPORT_SYMBOL vmlinux 0x5de55219 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x5dfdc91e nf_setsockopt +EXPORT_SYMBOL vmlinux 0x5e084831 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform EXPORT_SYMBOL vmlinux 0x5e11ce24 phy_resume EXPORT_SYMBOL vmlinux 0x5e1bc343 snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL vmlinux 0x5e221d6f kmap_high -EXPORT_SYMBOL vmlinux 0x5e279bf9 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x5e367c0b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x5e2dc006 neigh_update EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x5e3ba8ba skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x5e445f29 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x5e5ea7cb __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x5e5ffd4e freezer_active EXPORT_SYMBOL vmlinux 0x5e6766c9 tegra_dfll_suspend EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping EXPORT_SYMBOL vmlinux 0x5e7e03a9 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e88c73c ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eb34101 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x5eb3d3bb ethtool_notify EXPORT_SYMBOL vmlinux 0x5ebfeec4 block_commit_write -EXPORT_SYMBOL vmlinux 0x5ec45c95 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5ed6a0fa audit_log_start +EXPORT_SYMBOL vmlinux 0x5ed6ea1b netlink_ack EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef4af30 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x5efe3d7b do_clone_file_range +EXPORT_SYMBOL vmlinux 0x5f006258 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f39ce19 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x5f513699 of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0x5f521d1d kmem_cache_create EXPORT_SYMBOL vmlinux 0x5f52e84d qcom_scm_pas_metadata_release @@ -8144,29 +8126,31 @@ EXPORT_SYMBOL vmlinux 0x5f74d7d6 __folio_alloc EXPORT_SYMBOL vmlinux 0x5f754e5a memset EXPORT_SYMBOL vmlinux 0x5f7dc646 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x5f8573b6 sock_wake_async EXPORT_SYMBOL vmlinux 0x5f91742f pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x5f924fd2 rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x5fa14675 set_groups -EXPORT_SYMBOL vmlinux 0x5fa7f1ac tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x5fa6a42f ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x5fabe20e sk_stop_timer EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact EXPORT_SYMBOL vmlinux 0x5fbe71e2 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x5fcb55c1 xfrm_state_free EXPORT_SYMBOL vmlinux 0x5fd06a3e unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x5fd9c5b0 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x5fe118fa brioctl_set EXPORT_SYMBOL vmlinux 0x5ff112d4 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff16a22 skb_eth_push EXPORT_SYMBOL vmlinux 0x60054616 pci_restore_state EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x6005fc5e __skb_pad EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x601250a8 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x60136470 __netif_rx EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602c306c tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x60499444 dev_uc_add -EXPORT_SYMBOL vmlinux 0x6052c6b6 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605bfffc __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x605e4057 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x60738eae filemap_map_pages EXPORT_SYMBOL vmlinux 0x6091753f simple_transaction_set EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region @@ -8175,104 +8159,108 @@ EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c6af43 inet6_bind EXPORT_SYMBOL vmlinux 0x60c6da8c wake_up_process EXPORT_SYMBOL vmlinux 0x60ca8eba __d_drop EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get EXPORT_SYMBOL vmlinux 0x60e60217 param_ops_int +EXPORT_SYMBOL vmlinux 0x60f536de udp_lib_rehash EXPORT_SYMBOL vmlinux 0x60f6a8a2 __filemap_get_folio EXPORT_SYMBOL vmlinux 0x61023e14 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x610f1764 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x61147b7b snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x611523e3 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x6117602f par_io_of_config EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x613e895d security_sb_remount +EXPORT_SYMBOL vmlinux 0x614c1460 netpoll_print_options EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x6162998d uart_add_one_port -EXPORT_SYMBOL vmlinux 0x616f620a security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x617701fe vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x617ec329 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x618429c9 fsync_bdev EXPORT_SYMBOL vmlinux 0x618507a8 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x619af4f4 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x61b010ef snd_compr_malloc_pages EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8d37f tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x61bd3c52 rproc_detach EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x61d501be vme_irq_request EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer EXPORT_SYMBOL vmlinux 0x61f4a810 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x61fac456 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x61fdf7db take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x6218be2d mt_find EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x625318aa xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x624dcd48 security_sk_clone +EXPORT_SYMBOL vmlinux 0x6258531b inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x6259379a mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x625ff971 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62811dea xfrm_state_delete EXPORT_SYMBOL vmlinux 0x62833a59 phy_init_hw EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name EXPORT_SYMBOL vmlinux 0x62943e21 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x629f5bee xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x62956e39 napi_schedule_prep EXPORT_SYMBOL vmlinux 0x62c7889f nla_put_64bit EXPORT_SYMBOL vmlinux 0x62d56363 seq_file_path EXPORT_SYMBOL vmlinux 0x62d5faa8 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x62f0ca60 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x6302c7c2 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x6303f20a mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x6311590f kernel_write +EXPORT_SYMBOL vmlinux 0x63125ae4 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631a59e2 netdev_notice EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x6336a44e skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x633ad629 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x6327a8ed udp_disconnect EXPORT_SYMBOL vmlinux 0x633b86d2 vm_mmap EXPORT_SYMBOL vmlinux 0x633ff72b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x6341abab netdev_alert EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x634caf8d filemap_dirty_folio EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0x63582261 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x635e7fa6 register_sound_mixer EXPORT_SYMBOL vmlinux 0x636bf237 follow_down +EXPORT_SYMBOL vmlinux 0x636d528c __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x637493f3 __wake_up EXPORT_SYMBOL vmlinux 0x63860f8e block_write_begin EXPORT_SYMBOL vmlinux 0x639ac5db __mdiobus_read EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b15491 ppp_register_compressor EXPORT_SYMBOL vmlinux 0x63b5d755 input_flush_device EXPORT_SYMBOL vmlinux 0x63d72ecc bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x63e91a4b ip_getsockopt EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f29eda mtree_alloc_range EXPORT_SYMBOL vmlinux 0x63f5460a of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x6403c6f4 __netif_schedule EXPORT_SYMBOL vmlinux 0x640f0c10 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off EXPORT_SYMBOL vmlinux 0x641f3c69 snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x64267a91 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x6427ce15 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x6432b5ce dcb_getapp +EXPORT_SYMBOL vmlinux 0x643e600f xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x64444905 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6448ea70 inet_offloads +EXPORT_SYMBOL vmlinux 0x645309c5 neigh_seq_next EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x64793d5d release_sock +EXPORT_SYMBOL vmlinux 0x6471b6c4 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0x64859ef0 sock_wmalloc EXPORT_SYMBOL vmlinux 0x648ea43a __fput_sync EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x649c4ffb i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b2c538 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x64b635f3 udp_seq_ops EXPORT_SYMBOL vmlinux 0x64bcb1bf vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x64bdb459 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x64be4d4a security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x64eb0fd4 empty_zero_page -EXPORT_SYMBOL vmlinux 0x64f64e6e netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x64ff6106 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x650608c0 kobject_del EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6511291d xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x6512c252 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src @@ -8284,39 +8272,38 @@ EXPORT_SYMBOL vmlinux 0x653631ab devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x65377535 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655eaca3 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x6564c291 mmc_can_erase EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x6578bdd3 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x6589b32a user_path_create EXPORT_SYMBOL vmlinux 0x658befbc vfs_get_link EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x6598a129 sock_i_uid EXPORT_SYMBOL vmlinux 0x659c1a8c mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65ad6d11 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x65bdb02c mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x65c15113 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0x65c753ed i2c_verify_client -EXPORT_SYMBOL vmlinux 0x65c873a9 dcb_setapp EXPORT_SYMBOL vmlinux 0x65cda8a1 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x65d3507f blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d98a3c inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end EXPORT_SYMBOL vmlinux 0x65ed1ce8 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x65ed7493 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x66022e32 unregister_mtd_chip_driver EXPORT_SYMBOL vmlinux 0x6604b45d from_kgid_munged EXPORT_SYMBOL vmlinux 0x662514c4 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x662eb07c tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x663a31a0 snd_unregister_oss_device EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x6663636f backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x666630d9 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x666adc92 neigh_connected_output EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx -EXPORT_SYMBOL vmlinux 0x6674c976 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x667fc65e tty_unlock EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user @@ -8324,17 +8311,16 @@ EXPORT_SYMBOL vmlinux 0x66cd7714 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x66dbdfc6 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x66dccce9 param_get_charp -EXPORT_SYMBOL vmlinux 0x66e21dc8 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x66e72848 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x672b99d5 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x67371bae phy_error -EXPORT_SYMBOL vmlinux 0x674803b2 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x672f1a6c inet_frag_kill +EXPORT_SYMBOL vmlinux 0x673c9811 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init EXPORT_SYMBOL vmlinux 0x67597ff7 fs_param_is_string EXPORT_SYMBOL vmlinux 0x675a508f fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit EXPORT_SYMBOL vmlinux 0x67794a45 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x677ede08 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x679b2aee of_graph_is_present EXPORT_SYMBOL vmlinux 0x679e6b37 pci_scan_slot EXPORT_SYMBOL vmlinux 0x67a5992e pci_bus_add_devices @@ -8342,8 +8328,9 @@ EXPORT_SYMBOL vmlinux 0x67b6b4c3 max8998_write_reg EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c14f6b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x67c3b16c neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x67cdec01 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x67e4376b unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x67e6b4c6 of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x67fd7326 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x67fde2bb md_bitmap_endwrite @@ -8356,54 +8343,53 @@ EXPORT_SYMBOL vmlinux 0x685ea04c mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x6861e9a0 dm_get_device EXPORT_SYMBOL vmlinux 0x6866327e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x6879aecd netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68811011 dst_destroy +EXPORT_SYMBOL vmlinux 0x68826170 xfrm_state_add EXPORT_SYMBOL vmlinux 0x688bd3a4 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x688c9fa8 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x689ac65c snd_jack_add_new_kctl EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL vmlinux 0x68a82375 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x68c655bb netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x68d10aa0 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x68dfed36 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x68e026f3 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x68cc9d70 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x68e17149 unregister_netdev EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x690e3080 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x691a4cc0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x69276d7e __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x69410e4f blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x695dfc29 ppp_input EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x6983fef8 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x69932716 phy_support_sym_pause EXPORT_SYMBOL vmlinux 0x6994309b nand_ecc_sw_hamming_correct EXPORT_SYMBOL vmlinux 0x69bdccef scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69f1daf3 dst_alloc EXPORT_SYMBOL vmlinux 0x69f2579a mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a2ecf1a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x6a0d34af kernel_sendpage +EXPORT_SYMBOL vmlinux 0x6a4c3163 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x6a52d90a keyring_alloc EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5cdcc6 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a67fb7f xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x6a686cee i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x6a6d4d95 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a835af7 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x6a84a4ef input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x6a879513 pci_enable_wake EXPORT_SYMBOL vmlinux 0x6a8d7ad4 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x6a8e2bea udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x6ab2641a tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x6ad3246d d_instantiate_anon EXPORT_SYMBOL vmlinux 0x6ada5334 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aedb6ee netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6af7b21a packing EXPORT_SYMBOL vmlinux 0x6b0911af bio_integrity_prep EXPORT_SYMBOL vmlinux 0x6b156fa4 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x6b26f317 __inet_hash EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack EXPORT_SYMBOL vmlinux 0x6b352ba2 tty_register_device EXPORT_SYMBOL vmlinux 0x6b422bbe mmc_gpio_set_cd_isr @@ -8411,38 +8397,48 @@ EXPORT_SYMBOL vmlinux 0x6b5ae4fc mmc_can_discard EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x6b7997f5 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6b7c7535 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x6b84b3f3 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b91dc34 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x6b9cf777 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6b91e416 lock_sock_nested EXPORT_SYMBOL vmlinux 0x6ba2be05 kmem_cache_free EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace EXPORT_SYMBOL vmlinux 0x6bb15f27 mark_page_accessed EXPORT_SYMBOL vmlinux 0x6bc0a23b scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc69ad9 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x6bc6eebd __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x6bcb4458 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x6bd5b60b aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0x6be00f3e reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x6bea96c8 blk_put_queue +EXPORT_SYMBOL vmlinux 0x6bf13b3e security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x6c10d383 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x6c1a1f4a mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c1da42b neigh_app_ns +EXPORT_SYMBOL vmlinux 0x6c227e11 secpath_set EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c2d3a23 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x6c376dc7 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x6c3d3caa input_set_abs_params +EXPORT_SYMBOL vmlinux 0x6c4ceb8d inet_frag_find EXPORT_SYMBOL vmlinux 0x6c53c8df phy_read_paged +EXPORT_SYMBOL vmlinux 0x6c542aee neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c72f75d tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x6c758a40 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x6c76e482 nand_create_bbt +EXPORT_SYMBOL vmlinux 0x6c7b7a6b skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark EXPORT_SYMBOL vmlinux 0x6c82b520 cred_fscmp +EXPORT_SYMBOL vmlinux 0x6c85c7ee ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x6c91cfcc snd_timer_new EXPORT_SYMBOL vmlinux 0x6ca88d7c phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x6cad4993 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x6cb0304f xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbc57b2 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x6ccb6e01 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x6cce5f5f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x6ccf0207 free_task EXPORT_SYMBOL vmlinux 0x6cd7ca51 phy_device_remove EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums EXPORT_SYMBOL vmlinux 0x6d0eb3f3 __phy_write_mmd @@ -8455,13 +8451,12 @@ EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x6d908a87 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x6d975f7c of_platform_device_create +EXPORT_SYMBOL vmlinux 0x6da4541d netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6dae454a mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dbe7dd5 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x6dc8f742 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd86388 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x6dd8743f skb_queue_purge EXPORT_SYMBOL vmlinux 0x6ddb9459 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x6dedb7d6 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction @@ -8471,24 +8466,28 @@ EXPORT_SYMBOL vmlinux 0x6e308fd3 pci_add_new_bus EXPORT_SYMBOL vmlinux 0x6e43e8bc locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e682d45 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock EXPORT_SYMBOL vmlinux 0x6e7bdc38 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x6e8c1269 put_cmsg EXPORT_SYMBOL vmlinux 0x6e98d39d kern_path EXPORT_SYMBOL vmlinux 0x6e9aa3e9 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6e9e9692 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eab7e7a xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x6eb7b846 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x6ebb5d72 snd_pcm_hw_constraint_msbits EXPORT_SYMBOL vmlinux 0x6ebf9bd9 kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0x6ec1dc36 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x6ec4a69c tcf_classify +EXPORT_SYMBOL vmlinux 0x6ec784f7 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ecff4e1 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6ed68f58 fget_raw EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear EXPORT_SYMBOL vmlinux 0x6efc2a42 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f154a1b sock_no_connect EXPORT_SYMBOL vmlinux 0x6f176537 mt_find_after EXPORT_SYMBOL vmlinux 0x6f17d1c6 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x6f1e2c8c buffer_migrate_folio @@ -8498,91 +8497,93 @@ EXPORT_SYMBOL vmlinux 0x6f4cd23c framebuffer_release EXPORT_SYMBOL vmlinux 0x6f552328 posix_acl_valid EXPORT_SYMBOL vmlinux 0x6f71b7f7 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x6f7b3e92 inet_sendpage EXPORT_SYMBOL vmlinux 0x6f81a78b scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin -EXPORT_SYMBOL vmlinux 0x6f86aad6 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x6fa22697 rawnand_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x6fa8f6b3 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd2ab34 retire_super EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6ff79446 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7007700d seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x701627d9 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen EXPORT_SYMBOL vmlinux 0x702b41d1 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x703252b6 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x703d4abf textsearch_unregister +EXPORT_SYMBOL vmlinux 0x70662bdd nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x70731ba4 tcf_block_get EXPORT_SYMBOL vmlinux 0x7094d906 snd_pcm_new -EXPORT_SYMBOL vmlinux 0x70c0f442 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x70e36bf5 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x70f29f1a nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x70985904 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x70a66c25 ip_defrag +EXPORT_SYMBOL vmlinux 0x70a7c2dc scm_fp_dup +EXPORT_SYMBOL vmlinux 0x70bcadfa sk_ns_capable EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x711c3ae4 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717c2242 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x718f110a security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b3d158 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x71b6d1f1 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x71b7d8cf import_iovec EXPORT_SYMBOL vmlinux 0x71be8d83 alloc_mdio_bitbang EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71cb6f51 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x71ce2a02 of_device_is_compatible EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0x7207dfca serio_open EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x723bebb2 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x723d9953 mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x724428b3 simple_unlink -EXPORT_SYMBOL vmlinux 0x72587f97 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x7290825c mtree_store_range EXPORT_SYMBOL vmlinux 0x729672e2 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn EXPORT_SYMBOL vmlinux 0x72bf9b95 mod_zone_page_state EXPORT_SYMBOL vmlinux 0x72c264e6 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x72c42bf6 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x72d68404 inet6_release EXPORT_SYMBOL vmlinux 0x72e7ca36 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f43cb6 eth_header_cache EXPORT_SYMBOL vmlinux 0x72f48747 snd_pcm_set_sync EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0x731216e0 inet_frags_init EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x73198d5d phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x73178334 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7328c8e9 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x732dd326 groups_free EXPORT_SYMBOL vmlinux 0x732f4654 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x73482b52 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x73720b66 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x737ff261 skb_put EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7386b21c tcp_setsockopt 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 0x73b119aa tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x73b95e7d mmc_retune_release +EXPORT_SYMBOL vmlinux 0x73d26312 inet6_add_protocol EXPORT_SYMBOL vmlinux 0x73d5a263 pci_free_irq EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ebf5b3 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x73f134f3 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x73ea1eda tcf_exts_validate EXPORT_SYMBOL vmlinux 0x73f3db89 fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7418f397 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x74192380 qcom_scm_pas_init_image EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74298a0b xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x742e5f69 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0x74329b00 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x743b724a sock_release EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x745a16a3 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74896902 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x749a8c57 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7491fb02 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x74920ba9 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x74a16fde pci_get_slot EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74bcc5ed bfifo_qdisc_ops @@ -8591,111 +8592,118 @@ EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74ea31f2 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x74f1385e fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x74f15d24 tcp_ioctl EXPORT_SYMBOL vmlinux 0x74f2963c fb_show_logo EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7507f68b mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x750a2ec3 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x75265d95 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x7527fbfd snd_pcm_hw_constraint_minmax EXPORT_SYMBOL vmlinux 0x752ebaa9 shmem_aops -EXPORT_SYMBOL vmlinux 0x753aedaf xp_alloc EXPORT_SYMBOL vmlinux 0x753b9691 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x753d2e70 xattr_full_name -EXPORT_SYMBOL vmlinux 0x75420cc1 secpath_set -EXPORT_SYMBOL vmlinux 0x754d8434 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x755a5440 nf_ct_attach EXPORT_SYMBOL vmlinux 0x755adba3 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x755dc17b iterate_fd EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs EXPORT_SYMBOL vmlinux 0x757dc0bb pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x75832ed1 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x75858aea pneigh_lookup EXPORT_SYMBOL vmlinux 0x759c43d2 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x75a8a125 netlink_rcv_skb 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 0x75d65f86 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x75e1a0d6 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x75f36cc0 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x76023426 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760dcfb7 inet_release EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x761baea2 param_get_short EXPORT_SYMBOL vmlinux 0x761dcfe8 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x763031f3 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x764093f5 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x7640ba29 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x7663d7fb of_lpddr3_get_ddr_timings EXPORT_SYMBOL vmlinux 0x7669d2be mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7674d35c unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x76796bcb mmc_remove_host -EXPORT_SYMBOL vmlinux 0x767acf46 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7691cdda dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x7693504e inc_node_state EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check EXPORT_SYMBOL vmlinux 0x76a351c6 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x76a8cef9 dma_set_mask -EXPORT_SYMBOL vmlinux 0x76bd45e4 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x76bdfb33 phy_device_create +EXPORT_SYMBOL vmlinux 0x76c32d15 netdev_warn EXPORT_SYMBOL vmlinux 0x76cdec2b open_exec EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl EXPORT_SYMBOL vmlinux 0x76d08673 __generic_file_fsync EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode EXPORT_SYMBOL vmlinux 0x76d880e7 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x76df2eeb _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76ec73ae gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x76eef80f udpv6_sendmsg EXPORT_SYMBOL vmlinux 0x76f124ec bio_split EXPORT_SYMBOL vmlinux 0x76fdcd78 snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x770dfeab neigh_app_ns +EXPORT_SYMBOL vmlinux 0x770c607f nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x771905ac thaw_bdev -EXPORT_SYMBOL vmlinux 0x77209942 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77324aff ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x773525f7 param_get_long +EXPORT_SYMBOL vmlinux 0x773713e8 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x7738b161 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x77468674 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x775da707 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x777c188f dma_sync_wait +EXPORT_SYMBOL vmlinux 0x77872024 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div EXPORT_SYMBOL vmlinux 0x77b672b8 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x77bab4bb ndisc_ns_create EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77dd61f4 devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ea1abe skb_copy_header EXPORT_SYMBOL vmlinux 0x77f10745 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0x77f61a6f param_set_bool EXPORT_SYMBOL vmlinux 0x77faac71 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x77fc6a46 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x780fc812 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x781e2241 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x7826edd7 vfs_setpos EXPORT_SYMBOL vmlinux 0x784e62e5 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x78730713 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7862f481 dev_get_stats +EXPORT_SYMBOL vmlinux 0x786480cf tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x7873c71f i2c_put_adapter EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler EXPORT_SYMBOL vmlinux 0x78816945 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78a56693 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x78a772b9 netif_rx +EXPORT_SYMBOL vmlinux 0x78a9919c dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x78af8cb3 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78cfa299 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x78de37bd xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x78cc93f6 phy_init_eee EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices EXPORT_SYMBOL vmlinux 0x78e71936 dquot_operations EXPORT_SYMBOL vmlinux 0x78fa8bf5 input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x78fd8c37 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x79243fee ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free EXPORT_SYMBOL vmlinux 0x794a0345 default_llseek -EXPORT_SYMBOL vmlinux 0x7957d2b7 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x796c852b __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x795c00d3 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x7962bc27 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x7972f907 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x79744a4a inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x797b0d44 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x79888de9 xfrm_register_km EXPORT_SYMBOL vmlinux 0x798f7aa4 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x799be480 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x79b4e7d5 vme_register_driver +EXPORT_SYMBOL vmlinux 0x79b6affe __neigh_event_send EXPORT_SYMBOL vmlinux 0x79c469d0 blk_integrity_register EXPORT_SYMBOL vmlinux 0x79cc87bd __nla_reserve -EXPORT_SYMBOL vmlinux 0x79e3dea0 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x79e0483b xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x79e36ceb nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a04182e __nlmsg_put EXPORT_SYMBOL vmlinux 0x7a05fd59 I_BDEV EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a29585e elv_rb_del +EXPORT_SYMBOL vmlinux 0x7a2b6298 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x7a2f7a4e read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj EXPORT_SYMBOL vmlinux 0x7a33af75 input_free_device @@ -8705,16 +8713,12 @@ EXPORT_SYMBOL vmlinux 0x7a534d9b jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists EXPORT_SYMBOL vmlinux 0x7a53a894 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x7a63d022 xp_dma_map EXPORT_SYMBOL vmlinux 0x7a687a6a dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7a79d45b pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x7a92dd6c sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aaba492 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x7ab20542 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x7abda6e4 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x7aa2f174 inet_del_offload EXPORT_SYMBOL vmlinux 0x7ac82cf0 of_node_name_prefix EXPORT_SYMBOL vmlinux 0x7ad03c3e dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt @@ -8733,36 +8737,37 @@ EXPORT_SYMBOL vmlinux 0x7b1800b1 amba_device_unregister EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b3b6815 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x7b586e47 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7b383613 tcp_filter +EXPORT_SYMBOL vmlinux 0x7b40be23 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x7b44830d neigh_connected_output +EXPORT_SYMBOL vmlinux 0x7b4ef92a __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap EXPORT_SYMBOL vmlinux 0x7b5eb537 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x7b8072e4 devm_request_resource EXPORT_SYMBOL vmlinux 0x7b815f3a devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x7ba08273 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x7b99d668 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7babab33 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x7bb3e675 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x7beafd91 devm_rproc_add EXPORT_SYMBOL vmlinux 0x7bf10bbe seq_dentry EXPORT_SYMBOL vmlinux 0x7bf3313d mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order -EXPORT_SYMBOL vmlinux 0x7c382a5c __kfree_skb -EXPORT_SYMBOL vmlinux 0x7c425ba6 tso_start -EXPORT_SYMBOL vmlinux 0x7c4611c9 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7c31f49a phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get EXPORT_SYMBOL vmlinux 0x7c4a1257 register_filesystem EXPORT_SYMBOL vmlinux 0x7c717d4d vm_map_ram +EXPORT_SYMBOL vmlinux 0x7c800e36 dev_activate EXPORT_SYMBOL vmlinux 0x7c864f09 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x7c89b52e skb_tx_error EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update EXPORT_SYMBOL vmlinux 0x7ca669de crypto_sha1_update EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 EXPORT_SYMBOL vmlinux 0x7cc37c4b of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x7cd105fd __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce7c01e tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7cea472a __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cf45bce generic_error_remove_page EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation @@ -8775,39 +8780,39 @@ EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d4e0092 sync_blockdev -EXPORT_SYMBOL vmlinux 0x7d5c420c xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0x7d6d56b0 freeze_super EXPORT_SYMBOL vmlinux 0x7d9a2fc2 of_device_is_available -EXPORT_SYMBOL vmlinux 0x7da0dca5 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x7da81a3f bpf_link_put +EXPORT_SYMBOL vmlinux 0x7da8b1f9 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning EXPORT_SYMBOL vmlinux 0x7db320e1 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x7db5492e blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dd8d174 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x7ddec996 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x7dfb9336 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x7e00b74f phy_start_aneg EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write EXPORT_SYMBOL vmlinux 0x7e165763 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e37177a xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0x7e4457d9 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x7e50afc1 hmm_range_fault EXPORT_SYMBOL vmlinux 0x7e5d694b of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x7e6c4b4b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x7e65e1b7 inet_getname EXPORT_SYMBOL vmlinux 0x7e72b304 register_md_personality EXPORT_SYMBOL vmlinux 0x7e790074 scsi_device_lookup EXPORT_SYMBOL vmlinux 0x7e7d9db6 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion EXPORT_SYMBOL vmlinux 0x7e9954eb phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x7e9ec718 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7e9fa6eb tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7ea379d4 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7ea42b64 netif_tx_lock EXPORT_SYMBOL vmlinux 0x7ea67579 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x7ea9e50c security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x7eac2de3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7eb3ddb1 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x7ec00ba2 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x7ec0fa3a rt6_lookup +EXPORT_SYMBOL vmlinux 0x7ec203ca skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit EXPORT_SYMBOL vmlinux 0x7ed0d606 cdev_init EXPORT_SYMBOL vmlinux 0x7ed699b4 tty_port_close_start @@ -8818,68 +8823,62 @@ EXPORT_SYMBOL vmlinux 0x7f281f0d simple_recursive_removal EXPORT_SYMBOL vmlinux 0x7f349052 seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x7f5202cd input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x7f56a305 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f6b44ea __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x7f712def sync_filesystem EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable EXPORT_SYMBOL vmlinux 0x7f8e6e57 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x7f9b0f30 dquot_disable -EXPORT_SYMBOL vmlinux 0x7f9c30c6 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x7fa2c262 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7fb13b0d tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x7fbbc42c mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x7fc371c0 vme_slave_request +EXPORT_SYMBOL vmlinux 0x7fcb468f security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x7fcc5dfb dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x7fce36e6 pcim_pin_device EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fcfcc7f inet6_ioctl -EXPORT_SYMBOL vmlinux 0x7fd8a520 netdev_crit EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fdfa15c qdisc_reset EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ffa24ad netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x8032e08c inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x8036559c eth_mac_addr EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80446114 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x804783e0 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x807fc003 tcp_poll +EXPORT_SYMBOL vmlinux 0x8055ba69 inet6_release EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq EXPORT_SYMBOL vmlinux 0x80879672 ww_mutex_lock EXPORT_SYMBOL vmlinux 0x809526ae remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x80adf9a0 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x80984c41 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x80b8da3e flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80c8ea7b __lock_buffer EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d764ca rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x80db940a tcf_em_unregister EXPORT_SYMBOL vmlinux 0x80e24c2a pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e6babf register_netdevice EXPORT_SYMBOL vmlinux 0x80f49940 snd_ctl_register_ioctl EXPORT_SYMBOL vmlinux 0x80fba883 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x80feee56 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x81060886 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock EXPORT_SYMBOL vmlinux 0x8110d193 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x8110e50a page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x811273f3 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81338620 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x81365722 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x813759d7 skb_trim EXPORT_SYMBOL vmlinux 0x8151c0ab dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x8156dcdf find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8158c9a5 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815d182d ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x815c96bc audit_log_start EXPORT_SYMBOL vmlinux 0x816a54c8 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x817e487c i2c_transfer +EXPORT_SYMBOL vmlinux 0x8182c606 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x818a4aa5 keyring_search EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x819555c3 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload -EXPORT_SYMBOL vmlinux 0x81ac94c1 netdev_warn EXPORT_SYMBOL vmlinux 0x81ad7dda cdrom_release EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable @@ -8887,58 +8886,68 @@ EXPORT_SYMBOL vmlinux 0x81dcb154 devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info EXPORT_SYMBOL vmlinux 0x81ea5d9b release_pages +EXPORT_SYMBOL vmlinux 0x81f33de7 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x81f36d55 xp_alloc +EXPORT_SYMBOL vmlinux 0x81fa984d phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x8209cbfd dm_table_get_md EXPORT_SYMBOL vmlinux 0x820f46fd vga_get +EXPORT_SYMBOL vmlinux 0x82197c30 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x822692e1 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x8226c128 start_tty EXPORT_SYMBOL vmlinux 0x823131a0 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8259bc84 inet6_protos EXPORT_SYMBOL vmlinux 0x827e80f6 input_unregister_handle EXPORT_SYMBOL vmlinux 0x827f924e vmalloc_array EXPORT_SYMBOL vmlinux 0x828ba3d9 inode_to_bdi EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock EXPORT_SYMBOL vmlinux 0x82925d9d __traceiter_kmalloc EXPORT_SYMBOL vmlinux 0x8296ec7d set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x82b3ddf3 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x82be8fc8 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x82c06abe twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x82c43990 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x82dfd54c qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x82e3db33 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x82e3a044 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x830179dd security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x83035ab9 module_put +EXPORT_SYMBOL vmlinux 0x83047843 neigh_event_ns EXPORT_SYMBOL vmlinux 0x830930e9 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x830b546b mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x83335903 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x8335d11e skb_kill_datagram EXPORT_SYMBOL vmlinux 0x833b9ebf user_revoke EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle EXPORT_SYMBOL vmlinux 0x835f5564 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x8378989f tcf_action_exec -EXPORT_SYMBOL vmlinux 0x8387fa56 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x838af301 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x838b3085 netif_receive_skb EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 EXPORT_SYMBOL vmlinux 0x83aecd92 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x83bfb675 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x83ca618d ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify +EXPORT_SYMBOL vmlinux 0x83d9c676 nf_log_set EXPORT_SYMBOL vmlinux 0x83e4e14e i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x84073848 netdev_change_features EXPORT_SYMBOL vmlinux 0x841bb835 snd_sgbuf_get_addr -EXPORT_SYMBOL vmlinux 0x842c4a50 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x841f6652 inet_stream_connect EXPORT_SYMBOL vmlinux 0x8431434b ipmi_platform_add EXPORT_SYMBOL vmlinux 0x84356be7 zstd_dstream_workspace_bound EXPORT_SYMBOL vmlinux 0x8438ba13 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x843dbbdd t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x843ffcf3 param_set_invbool EXPORT_SYMBOL vmlinux 0x8441c8cb sg_free_table +EXPORT_SYMBOL vmlinux 0x84462329 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8449900a sock_alloc_file EXPORT_SYMBOL vmlinux 0x8451fdfe sg_init_table EXPORT_SYMBOL vmlinux 0x84536aed vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase +EXPORT_SYMBOL vmlinux 0x846672cc __sk_dst_check EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x846cab6d xp_can_alloc EXPORT_SYMBOL vmlinux 0x846f5577 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x847dbc22 folio_mark_dirty EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x8494fa3e secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x849cb224 pci_disable_msix EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node EXPORT_SYMBOL vmlinux 0x84b183ae strncmp @@ -8946,8 +8955,10 @@ EXPORT_SYMBOL vmlinux 0x84c31316 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0x84da203c jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x84e5ae5f snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x85055e09 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x851777cf sock_set_mark EXPORT_SYMBOL vmlinux 0x85288de2 set_disk_ro -EXPORT_SYMBOL vmlinux 0x855ffba5 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x855190a0 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked EXPORT_SYMBOL vmlinux 0x856c3048 cqhci_resume EXPORT_SYMBOL vmlinux 0x856e1667 gro_cells_init @@ -8958,32 +8969,33 @@ EXPORT_SYMBOL vmlinux 0x859b9569 pcie_print_link_status EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bf9f4a elv_rb_find +EXPORT_SYMBOL vmlinux 0x85c02de3 inet_register_protosw EXPORT_SYMBOL vmlinux 0x85cd0d02 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x85d94366 vme_init_bridge EXPORT_SYMBOL vmlinux 0x85ddc90e of_get_compatible_child EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85e218b5 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x85e7cd84 phy_print_status EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f6a457 kernel_connect EXPORT_SYMBOL vmlinux 0x85f9e1d2 tegra_dfll_register EXPORT_SYMBOL vmlinux 0x860e2b1e devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x860fb0a5 sock_i_ino EXPORT_SYMBOL vmlinux 0x862bc663 memset16 EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x86317c78 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x8631a112 snd_pcm_hw_param_first EXPORT_SYMBOL vmlinux 0x8631f80a __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x863a276a color_table EXPORT_SYMBOL vmlinux 0x864ea872 proc_symlink +EXPORT_SYMBOL vmlinux 0x864ff0bb dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x865798a9 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x8665bed8 udp_set_csum EXPORT_SYMBOL vmlinux 0x8666995b sgl_alloc -EXPORT_SYMBOL vmlinux 0x8669222c rtnl_notify +EXPORT_SYMBOL vmlinux 0x8667e8a4 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x8669eb9c page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x8672fb09 skb_put EXPORT_SYMBOL vmlinux 0x867bbafd mdiobus_scan EXPORT_SYMBOL vmlinux 0x86856ff5 __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0x86865e73 proto_unregister +EXPORT_SYMBOL vmlinux 0x868aca3b sock_kmalloc EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869237a2 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x86a9e3d6 finish_swait EXPORT_SYMBOL vmlinux 0x86b2a3ca ilookup EXPORT_SYMBOL vmlinux 0x86c9398e stream_open @@ -8992,42 +9004,50 @@ EXPORT_SYMBOL vmlinux 0x86e36395 pci_remove_bus EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec EXPORT_SYMBOL vmlinux 0x86ef3f16 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x86f96804 udp_set_csum EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user EXPORT_SYMBOL vmlinux 0x870ad76d rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x870de6ac tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x8710e4c5 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x8716efbe skb_vlan_push +EXPORT_SYMBOL vmlinux 0x87290a0f ip_output EXPORT_SYMBOL vmlinux 0x872b934c mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x8737f16b find_inode_rcu +EXPORT_SYMBOL vmlinux 0x874ee7da sock_efree EXPORT_SYMBOL vmlinux 0x8760360d mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x877e9eed reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq EXPORT_SYMBOL vmlinux 0x87922407 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x87a0e54e __netif_napi_del EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87acbd43 netlink_ack +EXPORT_SYMBOL vmlinux 0x87af540c skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x87b10fd2 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x87c025b3 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x87cf79e4 dev_trans_start EXPORT_SYMBOL vmlinux 0x87d14909 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x87d2fd4e inet_select_addr EXPORT_SYMBOL vmlinux 0x87d4c550 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x87e65db8 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x87e870e4 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x87e9e94e nf_log_unset -EXPORT_SYMBOL vmlinux 0x87f0f345 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x87f3e7c9 dev_change_flags EXPORT_SYMBOL vmlinux 0x8804cfb6 snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0x880e63ef dev_get_mac_address EXPORT_SYMBOL vmlinux 0x881a718a blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881dcd21 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x882adaa8 __ps2_command +EXPORT_SYMBOL vmlinux 0x8831ba2f passthru_features_check EXPORT_SYMBOL vmlinux 0x88567a90 vfs_link EXPORT_SYMBOL vmlinux 0x885cea83 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x8862137c xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x88688484 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0x88749e91 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x888cd955 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x8891f3c1 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x88af66f7 __inet_hash +EXPORT_SYMBOL vmlinux 0x88af8ad5 km_policy_notify EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88c246ea mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x88cd144b add_to_pipe EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88de9c0a platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88f9836d dev_mc_add_global EXPORT_SYMBOL vmlinux 0x88fc454f cros_ec_prepare_tx @@ -9035,18 +9055,24 @@ EXPORT_SYMBOL vmlinux 0x89168be1 invalidate_bdev EXPORT_SYMBOL vmlinux 0x8917f414 kunmap_local_indexed EXPORT_SYMBOL vmlinux 0x891de632 mii_check_link -EXPORT_SYMBOL vmlinux 0x892051ae dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x892320e8 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x89470529 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x894f564c pci_write_vpd EXPORT_SYMBOL vmlinux 0x8959acc5 uart_match_port -EXPORT_SYMBOL vmlinux 0x897612bd tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x89701b4e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x897209bd sk_free +EXPORT_SYMBOL vmlinux 0x897e3fe2 udp_gro_complete EXPORT_SYMBOL vmlinux 0x8983868c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8990fdd7 sk_net_capable +EXPORT_SYMBOL vmlinux 0x89af362b datagram_poll EXPORT_SYMBOL vmlinux 0x89b9a1a3 pci_get_device EXPORT_SYMBOL vmlinux 0x89c21b48 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x89d87133 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x89d5f13e netdev_features_change +EXPORT_SYMBOL vmlinux 0x89dee63e ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x89df56bb kfree_skb_reason EXPORT_SYMBOL vmlinux 0x89df7e31 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x8a0b3a0d param_set_copystring -EXPORT_SYMBOL vmlinux 0x8a0bea38 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x8a0e1cc8 nf_reinject +EXPORT_SYMBOL vmlinux 0x8a1e2a55 sk_alloc EXPORT_SYMBOL vmlinux 0x8a27a2b2 amba_request_regions EXPORT_SYMBOL vmlinux 0x8a28e57a snd_ctl_add EXPORT_SYMBOL vmlinux 0x8a2efd19 ptp_clock_index @@ -9054,8 +9080,6 @@ EXPORT_SYMBOL vmlinux 0x8a3e7081 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a5323e0 noop_qdisc -EXPORT_SYMBOL vmlinux 0x8a64e19a __scm_send EXPORT_SYMBOL vmlinux 0x8a664a3c uart_write_wakeup EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a744e7a dquot_resume @@ -9069,124 +9093,129 @@ EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8aeded2c md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x8aefaba3 device_get_mac_address EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b06321e input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x8b0a044c udp_pre_connect EXPORT_SYMBOL vmlinux 0x8b0cbd01 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x8b0dab45 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x8b2e91f2 mmc_detect_change EXPORT_SYMBOL vmlinux 0x8b2f8898 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x8b355917 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x8b46cab5 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x8b500fda inet_dgram_connect EXPORT_SYMBOL vmlinux 0x8b543843 snd_component_add EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout +EXPORT_SYMBOL vmlinux 0x8b6063b4 skb_split EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6a0a8c security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress EXPORT_SYMBOL vmlinux 0x8b755ac4 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x8b7c36c2 sock_setsockopt EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8bb6e084 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x8bbae29c tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x8bd8e220 nand_get_set_features_notsupp EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring EXPORT_SYMBOL vmlinux 0x8c0a17cf inode_nohighmem +EXPORT_SYMBOL vmlinux 0x8c13effd dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x8c1f5a8f xfrm_user_policy EXPORT_SYMBOL vmlinux 0x8c2df058 iov_iter_get_pages_alloc2 EXPORT_SYMBOL vmlinux 0x8c3f33cd register_quota_format -EXPORT_SYMBOL vmlinux 0x8c560c77 blk_put_queue +EXPORT_SYMBOL vmlinux 0x8c5355a5 sock_pfree +EXPORT_SYMBOL vmlinux 0x8c552441 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops EXPORT_SYMBOL vmlinux 0x8c73943b pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c8bf532 generic_file_splice_read EXPORT_SYMBOL vmlinux 0x8c972591 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x8c99d506 xp_alloc_batch EXPORT_SYMBOL vmlinux 0x8ca10772 gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cb05c72 pps_register_source EXPORT_SYMBOL vmlinux 0x8cba6116 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8ccc10c3 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x8cd08696 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x8cd48f91 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table EXPORT_SYMBOL vmlinux 0x8cf0a1f6 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x8d0ed554 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8d04369b security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x8d0a14e2 sk_error_report +EXPORT_SYMBOL vmlinux 0x8d0d3c17 sock_register EXPORT_SYMBOL vmlinux 0x8d0f1a02 kill_block_super +EXPORT_SYMBOL vmlinux 0x8d15e8d1 __scm_destroy EXPORT_SYMBOL vmlinux 0x8d25edb4 dquot_free_inode EXPORT_SYMBOL vmlinux 0x8d31cb10 clk_add_alias EXPORT_SYMBOL vmlinux 0x8d33dbe6 get_fs_type EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit EXPORT_SYMBOL vmlinux 0x8d363e12 is_free_buddy_page EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d4dc1cf inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8d43bb19 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8d4ec1d1 sk_send_sigurg EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5879e0 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x8d5f2706 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x8d6599be mmc_hw_reset EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d736628 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d7bc574 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x8d84ad07 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x8db90df1 dev_uc_sync EXPORT_SYMBOL vmlinux 0x8dcc7e73 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x8dce6b52 tcf_idr_search EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8de05827 __phy_resume -EXPORT_SYMBOL vmlinux 0x8de3251d task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df7209e fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x8df83667 dev_get_iflink EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node EXPORT_SYMBOL vmlinux 0x8dffebe5 clear_inode -EXPORT_SYMBOL vmlinux 0x8e0d2566 udp_seq_next EXPORT_SYMBOL vmlinux 0x8e1e886c request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x8e22eaff sock_kfree_s EXPORT_SYMBOL vmlinux 0x8e281c16 dump_page -EXPORT_SYMBOL vmlinux 0x8e2e9c17 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x8e314217 d_rehash +EXPORT_SYMBOL vmlinux 0x8e32eebb sock_bindtoindex EXPORT_SYMBOL vmlinux 0x8e3665e6 sg_free_append_table EXPORT_SYMBOL vmlinux 0x8e4872d3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e4d9955 reuseport_alloc EXPORT_SYMBOL vmlinux 0x8e53588c __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x8e5803f4 vme_bus_type -EXPORT_SYMBOL vmlinux 0x8e584e20 nf_hook_slow EXPORT_SYMBOL vmlinux 0x8e730eb6 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x8e7c1b13 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x8e7f3e92 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x8e7f795c mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8e863250 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e994794 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x8eae610a tcp_close EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk EXPORT_SYMBOL vmlinux 0x8ed75a1c phy_detach EXPORT_SYMBOL vmlinux 0x8ed9059f dquot_destroy EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x8eedc7c7 mpage_read_folio EXPORT_SYMBOL vmlinux 0x8eeefee3 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x8ef545bc alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8f0010d8 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask EXPORT_SYMBOL vmlinux 0x8f01da02 pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x8f1d43cc jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x8f26187f eth_get_headlen EXPORT_SYMBOL vmlinux 0x8f2b8ad5 nand_ecc_sw_bch_correct EXPORT_SYMBOL vmlinux 0x8f3793db adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x8f461592 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x8f5144bb dev_trans_start +EXPORT_SYMBOL vmlinux 0x8f4749c2 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f620a86 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x8f662a58 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x8f7dc835 brioctl_set EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9ae938 twl6040_power EXPORT_SYMBOL vmlinux 0x8fa16ffe __of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0x8fab1b69 mtree_load -EXPORT_SYMBOL vmlinux 0x8fba8754 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x8fcce0af ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8fb71cf0 arp_send +EXPORT_SYMBOL vmlinux 0x8fba9881 phy_start_aneg EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fdacfa8 sock_bind_add EXPORT_SYMBOL vmlinux 0x8fe09cf5 zstd_cctx_workspace_bound EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update EXPORT_SYMBOL vmlinux 0x8fe5866d kmalloc_trace EXPORT_SYMBOL vmlinux 0x8fe62c27 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x8feb4c65 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x8ff1580f nand_ecc_prepare_io_req EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush @@ -9194,29 +9223,23 @@ EXPORT_SYMBOL vmlinux 0x902e13f9 seq_bprintf EXPORT_SYMBOL vmlinux 0x90337be7 simple_link EXPORT_SYMBOL vmlinux 0x90426059 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x90538f73 rtnl_configure_link EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x90626c1d key_revoke EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x90708ef6 __skb_pad -EXPORT_SYMBOL vmlinux 0x9078c404 napi_enable +EXPORT_SYMBOL vmlinux 0x90730dc8 dev_remove_pack EXPORT_SYMBOL vmlinux 0x907c7aea kern_unmount_array -EXPORT_SYMBOL vmlinux 0x9088d636 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x90911e86 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x9085e7a5 phy_config_aneg EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl EXPORT_SYMBOL vmlinux 0x90a2a3e8 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x90a88829 mdiobus_unregister EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90cf5fa7 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x90ec0a10 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x91056d50 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x90d51c52 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x910a21b3 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x910e894a phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x91123491 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x9116a787 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout EXPORT_SYMBOL vmlinux 0x9136e5df mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x9145c891 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x91699c17 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x9172c7c3 snd_info_register EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug @@ -9226,33 +9249,31 @@ EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x91aaab67 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x91af5204 inet_accept EXPORT_SYMBOL vmlinux 0x91b2909d cad_pid EXPORT_SYMBOL vmlinux 0x91b5f6c8 update_region EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91ca545f sk_capable EXPORT_SYMBOL vmlinux 0x91d133e9 config_item_put EXPORT_SYMBOL vmlinux 0x91e9d17d filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x91ea59ff inet6_register_protosw EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x92065e84 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x920cbe46 skb_tx_error EXPORT_SYMBOL vmlinux 0x92127ff2 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x9220c3b5 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923244f4 fd_install EXPORT_SYMBOL vmlinux 0x923695a5 __dquot_free_space EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x924c756c input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x92684f53 cpu_tlb EXPORT_SYMBOL vmlinux 0x926c7b29 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927b656c dst_release +EXPORT_SYMBOL vmlinux 0x927f8b18 km_report +EXPORT_SYMBOL vmlinux 0x928c0444 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x9299807d ip_check_defrag -EXPORT_SYMBOL vmlinux 0x92a219d3 udp_seq_start EXPORT_SYMBOL vmlinux 0x92a4fff8 mii_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92bab90a register_netdev EXPORT_SYMBOL vmlinux 0x92bf9a2a pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d465aa hdmi_infoframe_unpack @@ -9260,139 +9281,135 @@ EXPORT_SYMBOL vmlinux 0x92dc3f16 radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92ef692d key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x92f363bd wireless_spy_update EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x92fc799c vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get EXPORT_SYMBOL vmlinux 0x931befdd bio_kmalloc EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932ef309 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x93240c2f inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x93269882 audit_log EXPORT_SYMBOL vmlinux 0x933cf4bd con_is_bound EXPORT_SYMBOL vmlinux 0x934e6170 dquot_drop +EXPORT_SYMBOL vmlinux 0x93508797 mr_table_alloc EXPORT_SYMBOL vmlinux 0x93568fdd fb_get_mode EXPORT_SYMBOL vmlinux 0x93713086 sg_split EXPORT_SYMBOL vmlinux 0x9371a516 dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93866a9d security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x93964d5f dst_dev_put EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b4cccf ndisc_send_skb EXPORT_SYMBOL vmlinux 0x93b876fe blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free EXPORT_SYMBOL vmlinux 0x93c970eb finish_open EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set -EXPORT_SYMBOL vmlinux 0x93f783c4 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x93ee78e2 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x93f6943d mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list EXPORT_SYMBOL vmlinux 0x9417cbf1 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x9418cb5e vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be +EXPORT_SYMBOL vmlinux 0x943fa6c8 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x94468170 write_inode_now EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9455ece0 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness -EXPORT_SYMBOL vmlinux 0x9464bc99 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x9489e6c2 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x949e5f8a generic_mii_ioctl EXPORT_SYMBOL vmlinux 0x94a1d4c8 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x94a97fb4 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x94ab3e4f sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x94b818de mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94c4e0fe gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x94c58e25 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x94c9bc08 of_find_property -EXPORT_SYMBOL vmlinux 0x94d0f31c tcf_idr_create -EXPORT_SYMBOL vmlinux 0x94d9719e security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x94dfcdfb xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x94ec0e58 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x94ed16a1 skb_ext_add EXPORT_SYMBOL vmlinux 0x94f00e10 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x94fe05e1 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x951fbae5 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x952cbcef phy_remove_link_mode EXPORT_SYMBOL vmlinux 0x952e1c5e snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x95346d67 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp EXPORT_SYMBOL vmlinux 0x953e721e mmc_command_done +EXPORT_SYMBOL vmlinux 0x95417f66 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x9547af6a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x954a2ad1 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x954f099c idr_preload EXPORT_SYMBOL vmlinux 0x955d0dc1 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x95774ca7 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x957e0472 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x9582df67 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x95847514 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x958730b9 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x95893e72 tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x95964378 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x9599164f ip_frag_next EXPORT_SYMBOL vmlinux 0x959d8d4d __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x95a7e3e2 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x95ae7d21 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x95b91f09 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x95c6778e snd_info_create_module_entry EXPORT_SYMBOL vmlinux 0x95c9fae1 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x95cfd55c blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x95d260b7 dev_set_mtu EXPORT_SYMBOL vmlinux 0x95daf25f page_pool_release_page EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95e40357 softnet_data EXPORT_SYMBOL vmlinux 0x95fad73a __folio_start_writeback EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock EXPORT_SYMBOL vmlinux 0x96190ed7 snd_sgbuf_get_chunk_size EXPORT_SYMBOL vmlinux 0x962facdd finalize_exec -EXPORT_SYMBOL vmlinux 0x9640aaad dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x964db925 empty_aops EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x96603250 kmalloc_large +EXPORT_SYMBOL vmlinux 0x96803baf sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x96945744 rawnand_sw_hamming_cleanup EXPORT_SYMBOL vmlinux 0x96a5c3c9 may_umount_tree -EXPORT_SYMBOL vmlinux 0x96b93ab0 vif_device_init EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dfe930 slab_build_skb EXPORT_SYMBOL vmlinux 0x96e111e2 cdrom_open EXPORT_SYMBOL vmlinux 0x96e24bb5 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x9701cca5 of_root +EXPORT_SYMBOL vmlinux 0x9702a749 eth_type_trans EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul EXPORT_SYMBOL vmlinux 0x97114ddc write_dirty_buffer EXPORT_SYMBOL vmlinux 0x9719867e md_wakeup_thread EXPORT_SYMBOL vmlinux 0x97255bdf strlen EXPORT_SYMBOL vmlinux 0x972bdcbd devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x973c211d sock_no_listen EXPORT_SYMBOL vmlinux 0x9742958a map_destroy EXPORT_SYMBOL vmlinux 0x974ea1e7 block_truncate_page EXPORT_SYMBOL vmlinux 0x97589d6a vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0x976a6144 send_sig -EXPORT_SYMBOL vmlinux 0x97845240 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x97874732 bio_init_clone +EXPORT_SYMBOL vmlinux 0x978ba0a9 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list EXPORT_SYMBOL vmlinux 0x97c9b8a9 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x97d11abd pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x97d473eb jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x97d49860 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x97d5a5f5 vm_node_stat EXPORT_SYMBOL vmlinux 0x97dd62bb mmc_register_driver -EXPORT_SYMBOL vmlinux 0x97eb693d nf_log_set +EXPORT_SYMBOL vmlinux 0x97ee19da ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x98020813 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x981b3940 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x98214528 param_ops_charp -EXPORT_SYMBOL vmlinux 0x98314315 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x98335588 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue EXPORT_SYMBOL vmlinux 0x9856777a fb_set_suspend EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x98601f41 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x98633293 drop_super -EXPORT_SYMBOL vmlinux 0x9868f685 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x9879b35d genlmsg_put EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset EXPORT_SYMBOL vmlinux 0x98891e79 get_tree_single -EXPORT_SYMBOL vmlinux 0x988ba228 udp_read_skb EXPORT_SYMBOL vmlinux 0x9891d82e ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x9897cdfe d_move +EXPORT_SYMBOL vmlinux 0x989f4a86 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x98b1c4b4 input_grab_device -EXPORT_SYMBOL vmlinux 0x98c57433 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98e4e089 inc_nlink EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f02479 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available EXPORT_SYMBOL vmlinux 0x990ed713 nand_ecc_sw_hamming_init_ctx EXPORT_SYMBOL vmlinux 0x9929ede8 simple_dir_operations @@ -9407,22 +9424,22 @@ EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all EXPORT_SYMBOL vmlinux 0x9969d201 cfb_imageblit EXPORT_SYMBOL vmlinux 0x996f4c8e pci_request_regions +EXPORT_SYMBOL vmlinux 0x99704aa7 inet_add_offload EXPORT_SYMBOL vmlinux 0x9979a560 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x99981bc1 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x9982357f tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x999e8297 vfree EXPORT_SYMBOL vmlinux 0x99a0a195 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x99a833b4 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x99aed6fa __udp_disconnect EXPORT_SYMBOL vmlinux 0x99b07b7d scsi_block_requests EXPORT_SYMBOL vmlinux 0x99b1ee80 set_capacity -EXPORT_SYMBOL vmlinux 0x99b50e02 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99bc7b99 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99d7986f __getblk_gfp EXPORT_SYMBOL vmlinux 0x99e5576f mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x99f46c9a rio_query_mport EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a01022c inet_frag_kill EXPORT_SYMBOL vmlinux 0x9a01828c phy_get_pause EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0x9a0d1bd0 pci_write_config_dword @@ -9432,85 +9449,85 @@ EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a2136d8 vc_resize EXPORT_SYMBOL vmlinux 0x9a3af1ab simple_getattr -EXPORT_SYMBOL vmlinux 0x9a4f2339 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x9a517e1d __inet_stream_connect EXPORT_SYMBOL vmlinux 0x9a56fbbe stop_tty EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a6daf63 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x9a78201b alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec +EXPORT_SYMBOL vmlinux 0x9a9c5237 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab9aff1 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x9abea978 tcp_req_err EXPORT_SYMBOL vmlinux 0x9adaf5a9 snd_pcm_hw_rule_noresample EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit EXPORT_SYMBOL vmlinux 0x9aec380f pci_clear_master EXPORT_SYMBOL vmlinux 0x9b124c76 mtree_store EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b218ba4 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b26c23f put_watch_queue EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b495e08 _dev_alert EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4d72bb sk_mc_loop EXPORT_SYMBOL vmlinux 0x9b6a7e91 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x9b6be6cb ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7c1fca xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x9b836708 vc_cons EXPORT_SYMBOL vmlinux 0x9b92f593 vfs_tmpfile_open -EXPORT_SYMBOL vmlinux 0x9b9d4061 tcp_mmap -EXPORT_SYMBOL vmlinux 0x9ba78491 datagram_poll EXPORT_SYMBOL vmlinux 0x9bac84eb scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x9bb36bbb skb_copy_expand EXPORT_SYMBOL vmlinux 0x9bb7d317 vfs_getattr EXPORT_SYMBOL vmlinux 0x9bc78c49 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x9bcb3ba2 bdev_check_media_change EXPORT_SYMBOL vmlinux 0x9bcf59c5 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x9bd770ec __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9c14c449 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x9c2f9e76 __skb_ext_del EXPORT_SYMBOL vmlinux 0x9c3de071 max8998_update_reg EXPORT_SYMBOL vmlinux 0x9c518e16 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x9c6069ba inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c6ed808 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c9c7317 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x9c9ce113 mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cdd8c53 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ce876dd truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x9ce9d06d rproc_get_by_child EXPORT_SYMBOL vmlinux 0x9cedb3ef tty_port_open EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x9d070d2d dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d19f39b ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x9d23b9c6 mdio_find_bus EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2c84ed flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d36d30f mii_nway_restart +EXPORT_SYMBOL vmlinux 0x9d3c2974 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x9d4cebf7 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x9d54d902 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class EXPORT_SYMBOL vmlinux 0x9d669763 memcpy EXPORT_SYMBOL vmlinux 0x9d71ebc9 __register_chrdev EXPORT_SYMBOL vmlinux 0x9d764651 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x9d7e1c87 sock_no_linger +EXPORT_SYMBOL vmlinux 0x9d7bd7f8 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x9d7e504c param_ops_uint -EXPORT_SYMBOL vmlinux 0x9da0a5ba ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x9d8dfc40 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x9da6dd01 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x9dadd111 dev_alloc_name EXPORT_SYMBOL vmlinux 0x9db9cdbf phy_driver_register EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel EXPORT_SYMBOL vmlinux 0x9dd19bb4 follow_up EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x9ddd5f5e security_path_mkdir EXPORT_SYMBOL vmlinux 0x9dde242a pci_find_resource EXPORT_SYMBOL vmlinux 0x9de5d91c mmc_can_trim EXPORT_SYMBOL vmlinux 0x9deaae3d mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x9df67840 km_state_notify -EXPORT_SYMBOL vmlinux 0x9e020e1e fget +EXPORT_SYMBOL vmlinux 0x9df0730b udp_skb_destructor EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0e15d4 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e221fa8 eth_gro_receive EXPORT_SYMBOL vmlinux 0x9e32c842 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x9e41f2c6 pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy @@ -9520,37 +9537,36 @@ EXPORT_SYMBOL vmlinux 0x9e6b0f86 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str EXPORT_SYMBOL vmlinux 0x9e728ac3 devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0x9e7b565d sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x9e7bd244 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0x9e7e7c07 poll_freewait -EXPORT_SYMBOL vmlinux 0x9e888717 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x9e9528ba __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0x9e9d4cb8 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea5f744 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x9ea85e96 kobject_set_name +EXPORT_SYMBOL vmlinux 0x9eb27a65 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec2bbb9 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 EXPORT_SYMBOL vmlinux 0x9ed4b1ff scsi_done_direct EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9f0febf2 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x9f361863 netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f561859 nf_ct_attach EXPORT_SYMBOL vmlinux 0x9f591f46 clk_bulk_get EXPORT_SYMBOL vmlinux 0x9f5ba6ad ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0x9f753768 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9f79dec1 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states EXPORT_SYMBOL vmlinux 0x9f8056da mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x9f899a1c sock_init_data EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9f9f80d2 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta EXPORT_SYMBOL vmlinux 0x9fc6c4cb flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x9fc76040 netif_rx EXPORT_SYMBOL vmlinux 0x9fddb8e1 snd_ctl_rename +EXPORT_SYMBOL vmlinux 0x9fdeb6ae ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feae1fc dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce @@ -9558,8 +9574,6 @@ EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa01f1bef sg_miter_start EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa034ba25 bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0xa03e1fcd netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass @@ -9568,32 +9582,29 @@ EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa094a8bb __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xa08a3b57 xsk_tx_completed EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa096f292 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d04a2d netdev_emerg -EXPORT_SYMBOL vmlinux 0xa0d8940d reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xa0c74bc9 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e0df82 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xa0e8c6cf __skb_ext_del 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 0xa10038fa nla_reserve EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10c469f ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xa14b9f4c submit_bio +EXPORT_SYMBOL vmlinux 0xa10e2aaf qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xa12350b9 skb_dump +EXPORT_SYMBOL vmlinux 0xa14542d6 __icmp_send +EXPORT_SYMBOL vmlinux 0xa145e91b xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xa14c75ec from_kprojid EXPORT_SYMBOL vmlinux 0xa15906b7 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xa15bc123 d_instantiate_new EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xa164b166 udplite_prot -EXPORT_SYMBOL vmlinux 0xa1664958 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xa169f81c netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0xa16a2cba jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0xa1725736 blk_queue_update_dma_alignment @@ -9602,11 +9613,11 @@ EXPORT_SYMBOL vmlinux 0xa19fe131 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xa1a02a5a scsi_print_sense EXPORT_SYMBOL vmlinux 0xa1cc485a user_path_at_empty -EXPORT_SYMBOL vmlinux 0xa1cdcd7b free_netdev EXPORT_SYMBOL vmlinux 0xa1cdd0ca path_has_submounts EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user EXPORT_SYMBOL vmlinux 0xa1e3ac60 console_force_preferred_locked EXPORT_SYMBOL vmlinux 0xa1e67a09 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa1fe45ca __ip_options_compile EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp EXPORT_SYMBOL vmlinux 0xa214ef59 tty_lock EXPORT_SYMBOL vmlinux 0xa218c208 mii_link_ok @@ -9615,38 +9626,36 @@ EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24491bf ida_free EXPORT_SYMBOL vmlinux 0xa24b5717 rpmh_write +EXPORT_SYMBOL vmlinux 0xa24dfc06 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25b097e tty_do_resize +EXPORT_SYMBOL vmlinux 0xa2604af0 dev_add_offload EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2724f83 unlock_page -EXPORT_SYMBOL vmlinux 0xa2796292 skb_condense EXPORT_SYMBOL vmlinux 0xa27f0d20 phy_loopback -EXPORT_SYMBOL vmlinux 0xa289e324 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xa283635a __neigh_for_each_release EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2b99920 ether_setup +EXPORT_SYMBOL vmlinux 0xa292d082 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xa2a69d24 tcp_add_backlog EXPORT_SYMBOL vmlinux 0xa2bd0078 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xa2c1d6ed skb_unlink EXPORT_SYMBOL vmlinux 0xa2ccb4a8 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2d85a31 sock_no_connect -EXPORT_SYMBOL vmlinux 0xa2fde8fd xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xa306eed6 km_policy_expired +EXPORT_SYMBOL vmlinux 0xa2fa5d91 sock_i_ino +EXPORT_SYMBOL vmlinux 0xa307c6ad unix_get_socket EXPORT_SYMBOL vmlinux 0xa30e5320 input_copy_abs +EXPORT_SYMBOL vmlinux 0xa322efa9 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xa3246f88 kernel_getpeername EXPORT_SYMBOL vmlinux 0xa32cc0c0 snd_power_wait +EXPORT_SYMBOL vmlinux 0xa33c964d ip6_frag_init EXPORT_SYMBOL vmlinux 0xa3405637 set_anon_super EXPORT_SYMBOL vmlinux 0xa3424f60 unpin_user_page EXPORT_SYMBOL vmlinux 0xa343510c input_allocate_device EXPORT_SYMBOL vmlinux 0xa349af26 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0xa3595556 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xa3684bf6 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0xa36ec4f6 get_cached_acl -EXPORT_SYMBOL vmlinux 0xa36f659a ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xa36ff39b skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xa3709b2e netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xa372e89c dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0xa3733a12 input_set_keycode -EXPORT_SYMBOL vmlinux 0xa37b6ff9 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0xa399e638 cfb_fillrect EXPORT_SYMBOL vmlinux 0xa39b9661 single_open @@ -9657,64 +9666,60 @@ EXPORT_SYMBOL vmlinux 0xa3b6e1b7 omap_vrfb_max_height EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0xa3c9a292 alloc_fcdev EXPORT_SYMBOL vmlinux 0xa3dcf1fa aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xa3e53da3 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xa3e7995b ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xa3efdd2f __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xa3f23550 udp_poll EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xa3fda4af sock_bindtoindex EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa4001645 pci_release_region -EXPORT_SYMBOL vmlinux 0xa4123356 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xa4061908 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xa41e0b93 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xa425887d tcp_child_process EXPORT_SYMBOL vmlinux 0xa428db44 snd_timer_global_free EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed +EXPORT_SYMBOL vmlinux 0xa441f3ba tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa453dda4 fd_install EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev EXPORT_SYMBOL vmlinux 0xa47cf4c6 simple_statfs -EXPORT_SYMBOL vmlinux 0xa4855725 free_task +EXPORT_SYMBOL vmlinux 0xa49cc3a4 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xa4a55c98 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0xa4aa403d configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4bbb6e8 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xa4f5ed7d mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xa4c694e5 release_sock EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock EXPORT_SYMBOL vmlinux 0xa51696e7 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0xa51a2967 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xa51c71ca dev_disable_lro EXPORT_SYMBOL vmlinux 0xa535be71 kern_unmount EXPORT_SYMBOL vmlinux 0xa54e3b3c unlock_rename EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa552c51d ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xa55e329d inet_protos +EXPORT_SYMBOL vmlinux 0xa564fb38 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xa5670812 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xa57a289a __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xa57cd593 serio_rescan EXPORT_SYMBOL vmlinux 0xa5819ba7 proc_create_data +EXPORT_SYMBOL vmlinux 0xa58d11d5 netif_skb_features +EXPORT_SYMBOL vmlinux 0xa59f9246 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0xa5acd790 dquot_transfer EXPORT_SYMBOL vmlinux 0xa5c90bba snd_pcm_new_stream EXPORT_SYMBOL vmlinux 0xa5ca045e __bio_advance -EXPORT_SYMBOL vmlinux 0xa5d2819f tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xa5e44b86 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xa5e67d41 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xa5e70fe4 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xa5ff5747 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xa60df686 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61ba373 tcf_register_action EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa623023a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa62a8ae2 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa64d64b5 netdev_alert EXPORT_SYMBOL vmlinux 0xa662504f file_open_root EXPORT_SYMBOL vmlinux 0xa66ad2dc blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0xa66dcfe1 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 -EXPORT_SYMBOL vmlinux 0xa68a5d38 skb_queue_head EXPORT_SYMBOL vmlinux 0xa693c59b rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock @@ -9722,10 +9727,10 @@ EXPORT_SYMBOL vmlinux 0xa6a1122f __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xa6a47e00 unregister_filesystem EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem +EXPORT_SYMBOL vmlinux 0xa6a8ad06 tcp_parse_options EXPORT_SYMBOL vmlinux 0xa6b5b3ee kmalloc_node_trace EXPORT_SYMBOL vmlinux 0xa6b6c452 ps2_drain EXPORT_SYMBOL vmlinux 0xa6cada9c invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xa6cb97b8 fib_default_rule_add EXPORT_SYMBOL vmlinux 0xa6d3bf7c rproc_set_firmware EXPORT_SYMBOL vmlinux 0xa6e3c970 _find_first_bit_le EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available @@ -9733,46 +9738,43 @@ EXPORT_SYMBOL vmlinux 0xa72c5b95 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa757dba7 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xa759fd22 register_cdrom -EXPORT_SYMBOL vmlinux 0xa769a467 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xa769ba62 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xa775f623 dev_get_by_index EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0xa784fcf3 pci_read_config_byte EXPORT_SYMBOL vmlinux 0xa7b3181c up_read EXPORT_SYMBOL vmlinux 0xa7b7b65c snd_pcm_stop +EXPORT_SYMBOL vmlinux 0xa7c4aa0a udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xa7c79fd3 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa7d4db5c sock_bind_add +EXPORT_SYMBOL vmlinux 0xa7d73c60 skb_queue_tail EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f25fdd dev_set_alias EXPORT_SYMBOL vmlinux 0xa7f5a353 mdiobb_read EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa814f143 sock_no_sendpage EXPORT_SYMBOL vmlinux 0xa8160e3b __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xa826d1b1 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xa83525aa sock_recvmsg +EXPORT_SYMBOL vmlinux 0xa81faff3 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xa84273ec skb_recv_datagram EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa8503e71 f_setown EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89b48b5 udp_seq_stop EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8c3aee9 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8d24620 zstd_init_cstream EXPORT_SYMBOL vmlinux 0xa8dc289d dec_node_page_state -EXPORT_SYMBOL vmlinux 0xa8e956d5 udp_poll EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt -EXPORT_SYMBOL vmlinux 0xa8ee4687 neigh_resolve_output EXPORT_SYMBOL vmlinux 0xa8ee65c1 omap_vrfb_adjust_size EXPORT_SYMBOL vmlinux 0xa8f33cc0 key_link EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul EXPORT_SYMBOL vmlinux 0xa8fc8012 get_tree_bdev EXPORT_SYMBOL vmlinux 0xa906f99b seq_pad -EXPORT_SYMBOL vmlinux 0xa9158c0d inet_sendmsg -EXPORT_SYMBOL vmlinux 0xa91b6c13 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xa9370776 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xa93dc9f5 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xa93dd47c netpoll_print_options EXPORT_SYMBOL vmlinux 0xa9407c46 init_pseudo +EXPORT_SYMBOL vmlinux 0xa9417e8e security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xa942f519 kern_path_create EXPORT_SYMBOL vmlinux 0xa947b14f zstd_reset_cstream EXPORT_SYMBOL vmlinux 0xa959a342 blk_mq_delay_run_hw_queues @@ -9781,17 +9783,20 @@ EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9796fa5 input_event EXPORT_SYMBOL vmlinux 0xa97a2b97 devm_clk_put -EXPORT_SYMBOL vmlinux 0xa987f2e1 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xa9927924 proto_unregister EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0xa9ba2c6c rtnl_unicast +EXPORT_SYMBOL vmlinux 0xa9d17ed7 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xa9debd0d inet_addr_type EXPORT_SYMBOL vmlinux 0xa9e2e3a5 param_get_hexint -EXPORT_SYMBOL vmlinux 0xa9e986a1 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl EXPORT_SYMBOL vmlinux 0xa9f6e771 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xaa06e377 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xaa0a10cc __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xaa10e8c5 tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa225153 bio_reset EXPORT_SYMBOL vmlinux 0xaa2a89bf phy_modify_paged +EXPORT_SYMBOL vmlinux 0xaa328b1a tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr EXPORT_SYMBOL vmlinux 0xaa438fec input_alloc_absinfo EXPORT_SYMBOL vmlinux 0xaa59c469 proc_mkdir @@ -9799,13 +9804,15 @@ EXPORT_SYMBOL vmlinux 0xaa64ca4e jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa70ad55 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xaa74d758 ip_do_fragment EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb EXPORT_SYMBOL vmlinux 0xaa8ad2b5 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaa966f68 vme_register_error_handler EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaaa02c0 __sock_create +EXPORT_SYMBOL vmlinux 0xaab12be5 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0xaabfe621 dma_fence_describe EXPORT_SYMBOL vmlinux 0xaacb7307 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xaacc9e27 sort @@ -9813,19 +9820,18 @@ EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function EXPORT_SYMBOL vmlinux 0xaae10c4f __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xaae2be97 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0511cd ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xab0db247 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xab16c7aa neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xab178bef xp_free -EXPORT_SYMBOL vmlinux 0xab1b8221 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xab142d7d ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xab27e3fa skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab379aac vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0xab3a41c1 set_posix_acl EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute EXPORT_SYMBOL vmlinux 0xab42fab6 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xab453b70 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xab59fea9 param_set_ullong EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier @@ -9839,7 +9845,7 @@ EXPORT_SYMBOL vmlinux 0xab96fb00 generic_write_checks EXPORT_SYMBOL vmlinux 0xab9a67fb remap_pfn_range EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabe5edcf security_sk_clone +EXPORT_SYMBOL vmlinux 0xabed7177 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xac00b2f3 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xac0d89b2 simple_transaction_read @@ -9849,104 +9855,103 @@ EXPORT_SYMBOL vmlinux 0xac331b07 ucc_slow_free EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum EXPORT_SYMBOL vmlinux 0xac505912 pci_request_region -EXPORT_SYMBOL vmlinux 0xac575e8d netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0xac581455 security_inode_init_security EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton EXPORT_SYMBOL vmlinux 0xac6f95b5 get_task_cred EXPORT_SYMBOL vmlinux 0xac731e01 __pci_register_driver EXPORT_SYMBOL vmlinux 0xac7b4f52 __f_setown EXPORT_SYMBOL vmlinux 0xac82b35c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xac8bc26a tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xac91158e register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xac953c75 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb3cca4 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xacc831e9 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xacd24ebb rtnl_link_get_net EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index EXPORT_SYMBOL vmlinux 0xacdf8720 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xaceb035c neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xacf285d5 phy_drivers_register EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad02017f __bforget EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad0e6bd4 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad210901 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xad268d65 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xad286af7 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0xad2d2ead snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xad38c6e3 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0xad49c109 param_set_byte +EXPORT_SYMBOL vmlinux 0xad4f6101 xfrm_state_update EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function EXPORT_SYMBOL vmlinux 0xad93edc5 __write_overflow_field +EXPORT_SYMBOL vmlinux 0xad94ed44 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb52567 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0xadb7d63b vfs_create EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc0491a security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xadcc266f skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0xadd3d90b __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xadd69986 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xadd7ae65 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xaddd1307 __devm_release_region -EXPORT_SYMBOL vmlinux 0xaddea99c xfrm_policy_insert EXPORT_SYMBOL vmlinux 0xadf73b7a cqhci_init +EXPORT_SYMBOL vmlinux 0xadf7bf31 __ip_select_ident EXPORT_SYMBOL vmlinux 0xadfdce49 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae08ba40 input_setup_polling EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae257e6b qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xae25c141 vm_event_states EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user -EXPORT_SYMBOL vmlinux 0xae3d883e inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xae3de4ae address_space_init_once EXPORT_SYMBOL vmlinux 0xae49c8c5 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xae50d458 iterate_fd EXPORT_SYMBOL vmlinux 0xae53631e of_device_is_big_endian EXPORT_SYMBOL vmlinux 0xae567bf8 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xae5c0c76 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xae659e90 neigh_xmit EXPORT_SYMBOL vmlinux 0xae6ac225 vm_insert_page EXPORT_SYMBOL vmlinux 0xae6f7e0e nla_append -EXPORT_SYMBOL vmlinux 0xae70160e sk_stream_error -EXPORT_SYMBOL vmlinux 0xae7eb2d0 register_netdevice EXPORT_SYMBOL vmlinux 0xae932800 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xae9849dd __request_region EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb0a52d of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0xaeb6927d dquot_release -EXPORT_SYMBOL vmlinux 0xaec02576 qdisc_hash_add EXPORT_SYMBOL vmlinux 0xaee900cd snd_timer_resolution EXPORT_SYMBOL vmlinux 0xaee9482d blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0xaef86c87 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0xaefd3926 phy_attached_info +EXPORT_SYMBOL vmlinux 0xaf0e45b5 udp_gro_receive EXPORT_SYMBOL vmlinux 0xaf1d9231 snd_jack_set_key EXPORT_SYMBOL vmlinux 0xaf306da9 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xaf363bea tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xaf3b9088 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf408541 dm_put_device +EXPORT_SYMBOL vmlinux 0xaf456172 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xaf465846 of_get_parent EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf57afb0 phy_trigger_machine EXPORT_SYMBOL vmlinux 0xaf68e3e7 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xaf835ba1 inet_listen EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafabff9f neigh_parms_release +EXPORT_SYMBOL vmlinux 0xafb9023f eth_validate_addr +EXPORT_SYMBOL vmlinux 0xafbf5c6a sockopt_lock_sock EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc3dbfc blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xafc6b033 uart_register_driver EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01fb454 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xb026bf62 ps2_handle_ack EXPORT_SYMBOL vmlinux 0xb026df0a param_get_string -EXPORT_SYMBOL vmlinux 0xb0272822 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xb02cd7d3 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xb039ffcc devm_input_allocate_device EXPORT_SYMBOL vmlinux 0xb04207c0 devm_free_irq -EXPORT_SYMBOL vmlinux 0xb0465aa8 __alloc_skb EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0719125 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xb084d088 __netif_schedule EXPORT_SYMBOL vmlinux 0xb08672af snd_timer_start +EXPORT_SYMBOL vmlinux 0xb09999a0 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb09e5871 tcp_disconnect EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xb0bdb153 param_ops_ullong @@ -9956,11 +9961,11 @@ EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e7e5ad dev_addr_mod EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot -EXPORT_SYMBOL vmlinux 0xb0ff791e netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0xb0ffabe5 vme_irq_generate EXPORT_SYMBOL vmlinux 0xb1067fb9 of_lpddr2_get_info EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb1237cdd pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xb129dcc0 vlan_vid_del EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb13b465a __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset @@ -9969,13 +9974,14 @@ EXPORT_SYMBOL vmlinux 0xb161e50c call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xb1766a07 snd_pcm_period_elapsed_under_stream_lock EXPORT_SYMBOL vmlinux 0xb1848443 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xb18fc82f ip6_xmit EXPORT_SYMBOL vmlinux 0xb1939c03 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xb198b75f vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc EXPORT_SYMBOL vmlinux 0xb1ae8cad try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xb1b7d715 netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d086fe inetdev_by_index +EXPORT_SYMBOL vmlinux 0xb1d1d9c9 tcp_time_wait EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t EXPORT_SYMBOL vmlinux 0xb1e71fad mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0xb207506c device_match_acpi_handle @@ -9986,28 +9992,23 @@ EXPORT_SYMBOL vmlinux 0xb23a519c zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xb242829c unregister_shrinker EXPORT_SYMBOL vmlinux 0xb248df97 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xb24a990f fget_raw -EXPORT_SYMBOL vmlinux 0xb24f0aa5 netdev_state_change -EXPORT_SYMBOL vmlinux 0xb271828d tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xb26ee2c8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb2798ba7 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xb28d325d ucc_slow_init EXPORT_SYMBOL vmlinux 0xb293d523 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0xb293ea7e blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xb2b2ddb4 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb2b65024 sock_no_bind EXPORT_SYMBOL vmlinux 0xb2bcfdb3 __free_pages EXPORT_SYMBOL vmlinux 0xb2cebf3e jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on EXPORT_SYMBOL vmlinux 0xb2da8318 noop_llseek EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2e95e03 sock_no_mmap EXPORT_SYMBOL vmlinux 0xb2ed75ea generic_file_mmap -EXPORT_SYMBOL vmlinux 0xb2fbe57d skb_recv_datagram EXPORT_SYMBOL vmlinux 0xb2fcd0ad __dec_zone_page_state EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb3299511 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xb3508c94 tcp_splice_read EXPORT_SYMBOL vmlinux 0xb357d9a3 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xb3667805 dqstats EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq @@ -10017,70 +10018,73 @@ EXPORT_SYMBOL vmlinux 0xb3888d2b dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0xb38a4d8d config_item_set_name EXPORT_SYMBOL vmlinux 0xb3b8775c alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xb3ba1d47 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xb3bddd2a logfc EXPORT_SYMBOL vmlinux 0xb3c00cee mod_node_page_state EXPORT_SYMBOL vmlinux 0xb3c15d29 iov_iter_advance EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d4de02 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb3d7a111 tcf_idr_create EXPORT_SYMBOL vmlinux 0xb3d8c1d2 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xb3ee04f1 pskb_expand_head EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb40abbf1 param_ops_long +EXPORT_SYMBOL vmlinux 0xb416f88d xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0xb41ed35e request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42d0e42 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xb42ca29d xfrm_input_resume EXPORT_SYMBOL vmlinux 0xb436eb52 kobject_get EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock -EXPORT_SYMBOL vmlinux 0xb4496665 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xb44f8e46 device_get_mac_address EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4886307 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc EXPORT_SYMBOL vmlinux 0xb4b2be75 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb4b2c2df close_fd_get_file EXPORT_SYMBOL vmlinux 0xb4bddb04 zstd_init_dstream +EXPORT_SYMBOL vmlinux 0xb4d5c64f ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f9aa29 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xb4fde82e folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb513f803 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xb515fa82 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xb521a629 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb52b87eb fqdir_init EXPORT_SYMBOL vmlinux 0xb539ab0f ilookup5_nowait EXPORT_SYMBOL vmlinux 0xb556e01c blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0xb5581386 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xb565992d _dev_printk EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb593a8aa udp6_set_csum -EXPORT_SYMBOL vmlinux 0xb59564e8 __scm_destroy EXPORT_SYMBOL vmlinux 0xb59ad437 dma_map_resource EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a467b4 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xb5a80ba4 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b288bd dentry_create -EXPORT_SYMBOL vmlinux 0xb5b57c19 sock_create_kern EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bb2df2 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xb5c8e17c snd_pcm_lib_free_pages EXPORT_SYMBOL vmlinux 0xb5da2943 genphy_read_status EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked EXPORT_SYMBOL vmlinux 0xb601f012 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xb61b7e2b __skb_checksum +EXPORT_SYMBOL vmlinux 0xb60f4b68 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb621b2ec nf_hook_slow EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb645f132 devm_register_netdev EXPORT_SYMBOL vmlinux 0xb647b14b module_refcount +EXPORT_SYMBOL vmlinux 0xb64b23c0 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xb64e09b6 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc EXPORT_SYMBOL vmlinux 0xb66de603 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb66feedf dev_set_mac_address EXPORT_SYMBOL vmlinux 0xb6747dbe cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xb674f391 nf_ip_checksum EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif EXPORT_SYMBOL vmlinux 0xb68c576a register_sound_dsp -EXPORT_SYMBOL vmlinux 0xb68cf148 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run EXPORT_SYMBOL vmlinux 0xb6bbc34a of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0xb6cae6aa netlink_unicast EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d811a7 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6e51877 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0xb6f49bb0 nand_ecc_register_on_host_hw_engine @@ -10090,43 +10094,40 @@ EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb723fff3 skb_pull EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb78d3834 pci_dev_put EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb793d9c6 snd_card_set_id EXPORT_SYMBOL vmlinux 0xb7a264c4 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xb7a95be4 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xb7aa4e5a tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xb7b6547f ping_prot EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable EXPORT_SYMBOL vmlinux 0xb81a82bf of_get_next_child +EXPORT_SYMBOL vmlinux 0xb835ef84 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xb83ade94 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available EXPORT_SYMBOL vmlinux 0xb8483de4 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xb84bef91 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xb84c9a56 dput EXPORT_SYMBOL vmlinux 0xb86303a5 msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0xb8652c0a end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86d5d33 rawnand_sw_hamming_init +EXPORT_SYMBOL vmlinux 0xb88efe8b pneigh_lookup +EXPORT_SYMBOL vmlinux 0xb8932a1e xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xb896c632 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8a8e5da flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xb8aa99e4 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b84f6d ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xb8baa8a9 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xb8e215d8 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xb8db51da rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xb8ef7509 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xb90e33e2 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb91398f4 nonseekable_open -EXPORT_SYMBOL vmlinux 0xb9163683 neigh_update EXPORT_SYMBOL vmlinux 0xb930cbb3 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xb934f9bd nf_getsockopt +EXPORT_SYMBOL vmlinux 0xb93e5067 register_netdev EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb94c32f7 devm_of_iomap EXPORT_SYMBOL vmlinux 0xb94e520b folio_end_writeback @@ -10136,45 +10137,39 @@ EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb988a3f0 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xb98d458b ethtool_notify EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 EXPORT_SYMBOL vmlinux 0xb9b6b5df d_alloc_anon -EXPORT_SYMBOL vmlinux 0xb9c57ccb netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xb9dc313f __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xb9dd2f20 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0xb9e3abc8 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req EXPORT_SYMBOL vmlinux 0xba026ec9 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xba1846b5 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xba267a1d tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xba2d9ef3 tty_register_ldisc EXPORT_SYMBOL vmlinux 0xba31dd9c kset_unregister +EXPORT_SYMBOL vmlinux 0xba3e4381 genl_notify EXPORT_SYMBOL vmlinux 0xba3f7f41 unregister_cdrom EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba4ee2f4 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xba516907 get_phy_device EXPORT_SYMBOL vmlinux 0xba53f399 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba831e95 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xba838e8c xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xba8f7147 generic_file_llseek EXPORT_SYMBOL vmlinux 0xba931ab6 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xba9aa505 dev_get_flags EXPORT_SYMBOL vmlinux 0xba9c4aa2 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xbaa90a3e __dev_get_by_name EXPORT_SYMBOL vmlinux 0xbad34aff filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xbad9268a twl6040_clear_bits EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbafb930a inet6_getname EXPORT_SYMBOL vmlinux 0xbaffd598 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xbb01b9e4 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb118224 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xbb344627 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xbb43cbe2 vme_dma_pci_attribute EXPORT_SYMBOL vmlinux 0xbb483ae1 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xbb48e013 netdev_reset_tc EXPORT_SYMBOL vmlinux 0xbb64a8b7 param_set_short EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents EXPORT_SYMBOL vmlinux 0xbb6e5de5 __mdiobus_write @@ -10187,74 +10182,66 @@ EXPORT_SYMBOL vmlinux 0xbbc526ff scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xbbd2a779 of_get_nand_ecc_user_config EXPORT_SYMBOL vmlinux 0xbbeef95f rpmh_invalidate -EXPORT_SYMBOL vmlinux 0xbbfc676d unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xbc093006 tcp_sendmsg EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 EXPORT_SYMBOL vmlinux 0xbc12915f dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xbc15477e ppp_channel_index EXPORT_SYMBOL vmlinux 0xbc245016 phy_set_max_speed EXPORT_SYMBOL vmlinux 0xbc35520a mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xbc3654ee locks_init_lock EXPORT_SYMBOL vmlinux 0xbc36c500 noop_dirty_folio -EXPORT_SYMBOL vmlinux 0xbc4586c0 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xbc377d85 __skb_recv_udp EXPORT_SYMBOL vmlinux 0xbc5e3c08 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL vmlinux 0xbc9327ec key_put +EXPORT_SYMBOL vmlinux 0xbca3ed1c __sk_receive_skb EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb0ef9a inet_release +EXPORT_SYMBOL vmlinux 0xbcce1c7a neigh_ifdown EXPORT_SYMBOL vmlinux 0xbcd6b418 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xbcd9e91b sock_alloc_file EXPORT_SYMBOL vmlinux 0xbcdc39f4 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xbce0cd80 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0xbce75374 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xbcec7b32 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xbd0d6f90 tcf_block_put -EXPORT_SYMBOL vmlinux 0xbd0e9ab4 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xbd17f273 gen_new_estimator EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0xbd3fdbcd param_get_byte +EXPORT_SYMBOL vmlinux 0xbd4f7a4e neigh_parms_release EXPORT_SYMBOL vmlinux 0xbd5b077f jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read EXPORT_SYMBOL vmlinux 0xbd618112 path_get EXPORT_SYMBOL vmlinux 0xbd710ea9 snd_timer_pause EXPORT_SYMBOL vmlinux 0xbd724b30 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xbd7d9de8 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xbd80065c phy_do_ioctl EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock EXPORT_SYMBOL vmlinux 0xbd8f4b89 parse_int_array_user -EXPORT_SYMBOL vmlinux 0xbd9976f9 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xbd90c0d9 security_inet_conn_established EXPORT_SYMBOL vmlinux 0xbdab4297 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xbdd2695a __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xbdeff39a is_bad_inode EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe190977 dst_init -EXPORT_SYMBOL vmlinux 0xbe280dc5 xfrm_state_insert EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe4fc75b posix_acl_chmod EXPORT_SYMBOL vmlinux 0xbe524f47 d_path EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe71a341 vme_dma_list_add EXPORT_SYMBOL vmlinux 0xbe71fc41 init_special_inode -EXPORT_SYMBOL vmlinux 0xbe74c69a eth_gro_complete -EXPORT_SYMBOL vmlinux 0xbe8a47d3 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xbe8a55db dma_async_device_register -EXPORT_SYMBOL vmlinux 0xbe97523e inet6_del_offload +EXPORT_SYMBOL vmlinux 0xbe9315c8 poll_freewait EXPORT_SYMBOL vmlinux 0xbe9ad2b0 mdiobb_write EXPORT_SYMBOL vmlinux 0xbea3de8d __put_cred EXPORT_SYMBOL vmlinux 0xbea6e92f seq_printf -EXPORT_SYMBOL vmlinux 0xbeb605f0 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xbeb92882 proc_create_seq_private EXPORT_SYMBOL vmlinux 0xbec43e5f tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0xbec76d62 iput EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef13cd9 dev_load EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef75d0d peernet2id -EXPORT_SYMBOL vmlinux 0xbf04028a tcp_parse_options -EXPORT_SYMBOL vmlinux 0xbf0ffc4c fqdir_exit -EXPORT_SYMBOL vmlinux 0xbf173139 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbf06bde1 udp_seq_start +EXPORT_SYMBOL vmlinux 0xbf0dbe2e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xbf14e280 netdev_crit EXPORT_SYMBOL vmlinux 0xbf292d2c write_cache_pages EXPORT_SYMBOL vmlinux 0xbf292fa3 key_move EXPORT_SYMBOL vmlinux 0xbf3faccd pldmfw_flash_image EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf63cebb skb_set_owner_w EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low EXPORT_SYMBOL vmlinux 0xbf85e58e of_translate_address @@ -10265,21 +10252,23 @@ EXPORT_SYMBOL vmlinux 0xbf9fe2d3 kset_register EXPORT_SYMBOL vmlinux 0xbfab82c4 bio_put EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb23cb1 inet6_del_offload EXPORT_SYMBOL vmlinux 0xbfb6f758 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xbfc2f367 tso_start EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block EXPORT_SYMBOL vmlinux 0xbfd69a85 filp_open EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create EXPORT_SYMBOL vmlinux 0xbfe2cd01 page_readlink EXPORT_SYMBOL vmlinux 0xbfeaf47f folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xbfeb6ace netlink_set_err +EXPORT_SYMBOL vmlinux 0xbff2211a bdev_end_io_acct EXPORT_SYMBOL vmlinux 0xbff9857c mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc0049c04 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0xc00b3136 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xc0103243 sk_error_report EXPORT_SYMBOL vmlinux 0xc03e705e hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xc045644c dev_set_allmulti EXPORT_SYMBOL vmlinux 0xc058dc5d dquot_alloc EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get EXPORT_SYMBOL vmlinux 0xc066544e ns_capable +EXPORT_SYMBOL vmlinux 0xc06938f3 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb EXPORT_SYMBOL vmlinux 0xc07b8968 vfs_mkobj @@ -10288,6 +10277,7 @@ EXPORT_SYMBOL vmlinux 0xc09b571d tty_port_init EXPORT_SYMBOL vmlinux 0xc0a1e927 md_bitmap_free EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b46654 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xc0c99957 request_key_rcu EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top EXPORT_SYMBOL vmlinux 0xc0ebe014 fasync_helper @@ -10297,39 +10287,42 @@ EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq EXPORT_SYMBOL vmlinux 0xc130dd66 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc1505ddd eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc15f8bf4 configfs_depend_item EXPORT_SYMBOL vmlinux 0xc160e1da forget_cached_acl EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem EXPORT_SYMBOL vmlinux 0xc1806091 snd_pcm_set_ops EXPORT_SYMBOL vmlinux 0xc1c28a70 param_get_ulong +EXPORT_SYMBOL vmlinux 0xc1c84c7f napi_enable EXPORT_SYMBOL vmlinux 0xc1ce6a7e from_kgid EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1de7cfe blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xc1e10a0a sock_no_getname EXPORT_SYMBOL vmlinux 0xc1e121da generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on EXPORT_SYMBOL vmlinux 0xc1e32860 bio_chain EXPORT_SYMBOL vmlinux 0xc1e38abe d_add_ci EXPORT_SYMBOL vmlinux 0xc1ed7bf4 vfs_statfs -EXPORT_SYMBOL vmlinux 0xc1f5b516 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xc1fef6af xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0xc20aa820 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0xc20cddf8 sock_pfree +EXPORT_SYMBOL vmlinux 0xc2141c17 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xc21fb4df gen_replace_estimator EXPORT_SYMBOL vmlinux 0xc22f61cf ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout EXPORT_SYMBOL vmlinux 0xc23a5945 register_sound_special EXPORT_SYMBOL vmlinux 0xc255ff20 snd_seq_root +EXPORT_SYMBOL vmlinux 0xc26d2b29 rtnl_notify +EXPORT_SYMBOL vmlinux 0xc270e825 dst_release EXPORT_SYMBOL vmlinux 0xc2757714 tc6393xb_lcd_set_power EXPORT_SYMBOL vmlinux 0xc2804a0a devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc2977e98 ipv6_dev_find EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2b01442 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2b8aa45 __xfrm_init_state EXPORT_SYMBOL vmlinux 0xc2b8eda2 netstamp_needed_key -EXPORT_SYMBOL vmlinux 0xc2c89199 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0xc2d43256 iov_iter_alignment EXPORT_SYMBOL vmlinux 0xc2e348b6 fscrypt_ioctl_set_policy @@ -10339,32 +10332,31 @@ EXPORT_SYMBOL vmlinux 0xc2f3181e cont_write_begin EXPORT_SYMBOL vmlinux 0xc2f43322 snd_register_oss_device EXPORT_SYMBOL vmlinux 0xc2f9f1ca pci_find_bus -EXPORT_SYMBOL vmlinux 0xc2fc682e ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xc2fec602 inet_bind EXPORT_SYMBOL vmlinux 0xc2ff217c vm_iomap_memory EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32565f2 vfs_fsync_range EXPORT_SYMBOL vmlinux 0xc326935b dma_pool_create EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32f433a __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xc33513d7 vme_dma_list_free EXPORT_SYMBOL vmlinux 0xc339e2d3 __find_get_block -EXPORT_SYMBOL vmlinux 0xc33b8b56 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0xc345b469 kthread_stop EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf EXPORT_SYMBOL vmlinux 0xc3603232 textsearch_register +EXPORT_SYMBOL vmlinux 0xc36269e7 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xc36ebc5b param_ops_ushort EXPORT_SYMBOL vmlinux 0xc37335b0 complete EXPORT_SYMBOL vmlinux 0xc374f1a5 phy_disconnect EXPORT_SYMBOL vmlinux 0xc3766491 tty_write_room +EXPORT_SYMBOL vmlinux 0xc37d2710 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc381cb36 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xc382c172 cdev_set_parent EXPORT_SYMBOL vmlinux 0xc38b5c79 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xc38c1c93 folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3b8ca14 ndisc_send_skb EXPORT_SYMBOL vmlinux 0xc3c8435a iget_locked +EXPORT_SYMBOL vmlinux 0xc3ca716a tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb EXPORT_SYMBOL vmlinux 0xc3d05edb copy_page_to_iter @@ -10372,34 +10364,27 @@ EXPORT_SYMBOL vmlinux 0xc3ee4c96 touch_atime EXPORT_SYMBOL vmlinux 0xc3fd598d abort_creds EXPORT_SYMBOL vmlinux 0xc3ff39d2 pci_get_class -EXPORT_SYMBOL vmlinux 0xc41063fb dev_set_mac_address EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc427e066 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0xc44a0e4e qdisc_put EXPORT_SYMBOL vmlinux 0xc44c3689 ucc_tdm_init EXPORT_SYMBOL vmlinux 0xc4521c96 input_reset_device EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp EXPORT_SYMBOL vmlinux 0xc45978e6 md_register_thread -EXPORT_SYMBOL vmlinux 0xc4643310 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4840a2e mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xc48958c0 mr_fill_mroute EXPORT_SYMBOL vmlinux 0xc48f3ae4 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xc49122a0 seq_putc EXPORT_SYMBOL vmlinux 0xc4936fb0 snd_compr_free_pages -EXPORT_SYMBOL vmlinux 0xc494a6a0 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xc49dfe75 fb_prepare_logo EXPORT_SYMBOL vmlinux 0xc4a4e626 mdio_device_register -EXPORT_SYMBOL vmlinux 0xc4c0435d __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xc4cc9745 inet6_bind -EXPORT_SYMBOL vmlinux 0xc4d73020 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xc4d3184b security_d_instantiate EXPORT_SYMBOL vmlinux 0xc4f87864 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xc50df977 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xc52459ba netpoll_setup -EXPORT_SYMBOL vmlinux 0xc52f4b42 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xc53e60e4 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xc542e893 of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0xc548072f block_write_full_page +EXPORT_SYMBOL vmlinux 0xc550210f tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xc5605001 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset EXPORT_SYMBOL vmlinux 0xc575fedf noop_fsync @@ -10407,39 +10392,37 @@ EXPORT_SYMBOL vmlinux 0xc595fea3 backlight_device_register EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc -EXPORT_SYMBOL vmlinux 0xc5c04123 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xc5c2f16d tcp_release_cb EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive EXPORT_SYMBOL vmlinux 0xc5f1e10c pci_bus_type -EXPORT_SYMBOL vmlinux 0xc5f87e3b tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xc6034a74 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xc60396dd scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61f00b8 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xc62ba187 __neigh_event_send EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc64c683d udp_lib_get_port EXPORT_SYMBOL vmlinux 0xc64e1678 of_clk_get_by_name EXPORT_SYMBOL vmlinux 0xc650f12b fb_pan_display EXPORT_SYMBOL vmlinux 0xc6534f84 mmc_release_host EXPORT_SYMBOL vmlinux 0xc65372a0 param_ops_string EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc68654ea sock_release EXPORT_SYMBOL vmlinux 0xc69c83ff seq_write EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a32689 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xc6acc388 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xc6c0b7bf __netlink_dump_start EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6e104f9 backlight_device_set_brightness 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 0xc6f570ae skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xc6fc3832 __kfree_skb EXPORT_SYMBOL vmlinux 0xc70295ec folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0xc71f20e4 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc725083b phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0xc72c7ff2 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xc72da93c udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc72df3e1 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xc746a8d5 proc_create_mount_point EXPORT_SYMBOL vmlinux 0xc749a0ec ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xc74e936e md_integrity_register @@ -10455,52 +10438,54 @@ EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7d42f61 input_open_device -EXPORT_SYMBOL vmlinux 0xc7e56737 udp_ioctl EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn EXPORT_SYMBOL vmlinux 0xc7ee0969 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0xc7f2f7bf pci_find_capability EXPORT_SYMBOL vmlinux 0xc7ff7ec5 rproc_put +EXPORT_SYMBOL vmlinux 0xc8029758 neigh_for_each +EXPORT_SYMBOL vmlinux 0xc80d5950 phy_request_interrupt EXPORT_SYMBOL vmlinux 0xc818506c efi -EXPORT_SYMBOL vmlinux 0xc81c7b17 sock_register -EXPORT_SYMBOL vmlinux 0xc81f0825 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xc8324b2a mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xc825439a sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xc841a68a rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc84ad3fd mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xc84d90e9 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xc853f48e skb_ext_add EXPORT_SYMBOL vmlinux 0xc85f80e5 phy_suspend +EXPORT_SYMBOL vmlinux 0xc86576f7 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xc86cab58 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8784ed7 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xc87fc62e security_sock_graft +EXPORT_SYMBOL vmlinux 0xc881ca10 napi_get_frags EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc891a039 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc89b9a5f tcf_exts_change EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread EXPORT_SYMBOL vmlinux 0xc8afdffc file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 EXPORT_SYMBOL vmlinux 0xc8b9f445 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xc8bbf827 ppp_unit_number EXPORT_SYMBOL vmlinux 0xc8c18fc1 __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0xc8c7e92d bprm_change_interp EXPORT_SYMBOL vmlinux 0xc8ce25f5 ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0xc8e173ed _find_next_bit_le +EXPORT_SYMBOL vmlinux 0xc8efd78b ip_check_defrag +EXPORT_SYMBOL vmlinux 0xc8fb80aa dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xc906c4e6 trace_event_printf EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc917e06d dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xc91bc99c tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xc91cd0c0 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xc9237269 seq_open EXPORT_SYMBOL vmlinux 0xc924678a __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0xc93ea97c scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc9479f2d tcp_filter EXPORT_SYMBOL vmlinux 0xc94d8e3b iomem_resource EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc968c8d2 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9880021 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc9999097 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc99c1ddc netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev EXPORT_SYMBOL vmlinux 0xc9b7b8ff mdiobus_free EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table @@ -10509,18 +10494,13 @@ EXPORT_SYMBOL vmlinux 0xc9e4a5ef nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned EXPORT_SYMBOL vmlinux 0xc9f1e043 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xc9f27ce6 udp_lib_get_port EXPORT_SYMBOL vmlinux 0xc9f51ad6 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xc9f87ae2 mii_check_media EXPORT_SYMBOL vmlinux 0xca06fd95 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0xca0dd8b4 phy_aneg_done EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit -EXPORT_SYMBOL vmlinux 0xca21db9b tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2fa502 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xca3ec465 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca498444 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0xca59c492 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible EXPORT_SYMBOL vmlinux 0xca77bdbf kmalloc_large_node @@ -10528,62 +10508,63 @@ EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0xca825f5b pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xca83e44c netpoll_setup EXPORT_SYMBOL vmlinux 0xca84076e blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0xca84484b con_is_visible EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca966a53 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xcaa0abcd vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xcaa78a70 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xcaa8a246 inet6_del_protocol EXPORT_SYMBOL vmlinux 0xcab503fa param_set_charp -EXPORT_SYMBOL vmlinux 0xcab55798 tcf_unregister_action EXPORT_SYMBOL vmlinux 0xcac3c5e1 __ClearPageMovable EXPORT_SYMBOL vmlinux 0xcac6ae39 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xcac9fdd8 tcp_time_wait EXPORT_SYMBOL vmlinux 0xcadf3dd4 override_creds EXPORT_SYMBOL vmlinux 0xcae8bc45 of_get_cpu_node EXPORT_SYMBOL vmlinux 0xcaea167b snd_ctl_remove_id EXPORT_SYMBOL vmlinux 0xcaed473a d_alloc +EXPORT_SYMBOL vmlinux 0xcaf10516 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xcaf7e819 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xcafc471c security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xcafe072b qcom_scm_io_writel EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0d46ec netif_tx_unlock EXPORT_SYMBOL vmlinux 0xcb1a57ea phy_attach_direct -EXPORT_SYMBOL vmlinux 0xcb27db1d phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xcb2ae0b7 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xcb2b70b0 blk_get_queue EXPORT_SYMBOL vmlinux 0xcb33c560 snd_timer_stop EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb47a197 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load EXPORT_SYMBOL vmlinux 0xcb6bd734 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xcb737109 reuseport_select_sock EXPORT_SYMBOL vmlinux 0xcb77a31d zstd_is_error -EXPORT_SYMBOL vmlinux 0xcb7dcb0b register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xcb7e23c5 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xcb7900db security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xcb7fe37c vm_insert_pages EXPORT_SYMBOL vmlinux 0xcb81937a tty_port_destroy +EXPORT_SYMBOL vmlinux 0xcb843ad7 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xcb86df9c xfrm_state_free EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit +EXPORT_SYMBOL vmlinux 0xcb934931 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context EXPORT_SYMBOL vmlinux 0xcbc46156 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xcbd123df xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdab2b5 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xcbdf94d4 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xcc02e910 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0xcc15f0a0 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0xcc1cb927 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0xcc3510d0 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xcc3b2cc9 __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0xcc4c3680 xfrm_lookup EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc54309b snd_dma_buffer_mmap EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5ef07d inet_sock_destruct EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info EXPORT_SYMBOL vmlinux 0xcc846ad3 set_security_override EXPORT_SYMBOL vmlinux 0xcc8fc4c7 request_firmware EXPORT_SYMBOL vmlinux 0xcc9cf140 snd_unregister_device EXPORT_SYMBOL vmlinux 0xcca610e9 mdio_device_free -EXPORT_SYMBOL vmlinux 0xccbd3308 audit_log +EXPORT_SYMBOL vmlinux 0xcccbe3af udplite_prot EXPORT_SYMBOL vmlinux 0xccecc146 fs_param_is_bool EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed @@ -10592,31 +10573,36 @@ EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp EXPORT_SYMBOL vmlinux 0xcd11c1d0 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xcd1cae84 icmp6_send EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd28f361 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div EXPORT_SYMBOL vmlinux 0xcd41b80f dma_fence_array_first EXPORT_SYMBOL vmlinux 0xcd43ad12 zstd_get_error_code -EXPORT_SYMBOL vmlinux 0xcd48d149 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xcd4beeed fb_blank EXPORT_SYMBOL vmlinux 0xcd5056a5 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0xcd50ccb6 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xcd542ce0 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xcd5c4882 bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd68248d ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0xcd6a8b77 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xcdaadf6b dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xcd89982b inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xcd8f7556 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xcdaf7295 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc894c9 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xcdddf7e2 md_write_end EXPORT_SYMBOL vmlinux 0xcdde6bf8 sg_miter_next +EXPORT_SYMBOL vmlinux 0xcde71ef0 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf419d6 ndisc_mc_map EXPORT_SYMBOL vmlinux 0xcdf88e96 vfs_iter_read EXPORT_SYMBOL vmlinux 0xce02ef49 zero_user_segments +EXPORT_SYMBOL vmlinux 0xce072175 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xce0cb661 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xce261224 neigh_seq_start EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake EXPORT_SYMBOL vmlinux 0xce2f8d40 zstd_flush_stream EXPORT_SYMBOL vmlinux 0xce32a7cd jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xce33cf8f dev_add_pack EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio EXPORT_SYMBOL vmlinux 0xce4cd920 iov_iter_zero EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode @@ -10624,65 +10610,64 @@ EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76d2ed cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xce920c24 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xcea67bf1 vfs_llseek EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceaf3793 ipmr_rule_default EXPORT_SYMBOL vmlinux 0xced545da snd_ctl_free_one EXPORT_SYMBOL vmlinux 0xceda238c blk_mq_end_request EXPORT_SYMBOL vmlinux 0xceda6dd4 fs_param_is_enum EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xcee91317 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xcef21735 phy_advertise_supported EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf08822d unix_attach_fds +EXPORT_SYMBOL vmlinux 0xcf06671e xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xcf0f9420 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xcf2fdd85 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xcf34fffc freeze_bdev EXPORT_SYMBOL vmlinux 0xcf3605cc flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xcf386d7b iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xcf40592f snd_timer_notify +EXPORT_SYMBOL vmlinux 0xcf521b08 neigh_destroy EXPORT_SYMBOL vmlinux 0xcf7873b9 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf88f4b5 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xcf8bc6bf tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0xcf90d703 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xcf8f9c1e sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xcf955463 tcf_idr_release EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa636ae __inode_add_bytes EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfaab5f1 con_set_default_unimap EXPORT_SYMBOL vmlinux 0xcfab12bc config_group_init_type_name EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page -EXPORT_SYMBOL vmlinux 0xcfd65870 unix_destruct_scm EXPORT_SYMBOL vmlinux 0xcfd9c23d unregister_framebuffer EXPORT_SYMBOL vmlinux 0xcfda65b1 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xcfdd5816 fqdir_exit EXPORT_SYMBOL vmlinux 0xcfde5a32 mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0xcfe4c543 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xcfeb507a netif_napi_add_weight EXPORT_SYMBOL vmlinux 0xcfebc31f sget_fc EXPORT_SYMBOL vmlinux 0xd005603d nand_ecc_is_strong_enough -EXPORT_SYMBOL vmlinux 0xd0371012 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd030cfe9 tcp_seq_start EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec EXPORT_SYMBOL vmlinux 0xd0588a25 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07e2016 mr_table_alloc EXPORT_SYMBOL vmlinux 0xd080989f cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xd0b695c5 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0xd0c26f6b __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xd0e15618 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xd0e25db0 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xd0e3d8bb devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware EXPORT_SYMBOL vmlinux 0xd0f8c48d param_get_uint EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd1276b51 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xd1361588 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd149ea49 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xd15a05c0 mdio_device_create -EXPORT_SYMBOL vmlinux 0xd163a854 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xd16919ea tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xd164546b tso_build_hdr +EXPORT_SYMBOL vmlinux 0xd1647ae6 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xd176bf69 inode_init_always +EXPORT_SYMBOL vmlinux 0xd18f9c0a dev_deactivate EXPORT_SYMBOL vmlinux 0xd199e02b folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0xd1abb6c1 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0xd1abe064 sg_copy_to_buffer @@ -10690,68 +10675,78 @@ EXPORT_SYMBOL vmlinux 0xd1d10990 input_register_handle EXPORT_SYMBOL vmlinux 0xd1d26ea2 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1d89eec skb_vlan_push EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd20cfae4 iptun_encaps EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked EXPORT_SYMBOL vmlinux 0xd2492a4c blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0xd25170b3 pci_read_vpd EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25b6f3d netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook EXPORT_SYMBOL vmlinux 0xd27a5a3b sg_miter_skip EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd29d733d __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd28719b9 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xd2b082d7 sb_min_blocksize EXPORT_SYMBOL vmlinux 0xd2c1b9b0 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2fcab75 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xd3189949 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd324fe4c iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get EXPORT_SYMBOL vmlinux 0xd3360041 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xd34bde2c tcp_seq_next EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string EXPORT_SYMBOL vmlinux 0xd361cba4 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0xd36bb9f1 eth_header EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd38b0da5 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xd3917bd0 blk_rq_init EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3c94097 dev_deactivate +EXPORT_SYMBOL vmlinux 0xd3c15d6e dev_lstats_read +EXPORT_SYMBOL vmlinux 0xd3caa957 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xd3cb8489 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40b54fb __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd40b91a0 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd416cddc xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xd4192ff1 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd41be2bb qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xd41d7536 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xd41de8ca genl_register_family EXPORT_SYMBOL vmlinux 0xd430e28b mpage_writepages +EXPORT_SYMBOL vmlinux 0xd4386624 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xd43ad740 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xd43e9c93 __check_sticky -EXPORT_SYMBOL vmlinux 0xd4431a73 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xd44a0110 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xd45823d0 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd460c2d5 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xd46ae721 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work +EXPORT_SYMBOL vmlinux 0xd47ba203 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd48958f7 max8925_reg_write EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd49008e3 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xd49d6225 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xd49dd8bd blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4c2d43c copy_string_kernel +EXPORT_SYMBOL vmlinux 0xd4cb06f3 phy_print_status +EXPORT_SYMBOL vmlinux 0xd4d6d13c __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd4dfaa5e nf_log_packet EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo EXPORT_SYMBOL vmlinux 0xd4e79e42 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0xd4face49 __bh_read_batch +EXPORT_SYMBOL vmlinux 0xd4fcb630 xfrm_init_state EXPORT_SYMBOL vmlinux 0xd50cc2da kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xd5122a27 __folio_put EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy EXPORT_SYMBOL vmlinux 0xd5387a1a jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xd53a8a83 scsi_scan_host EXPORT_SYMBOL vmlinux 0xd53d9675 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xd549c95c noop_qdisc EXPORT_SYMBOL vmlinux 0xd562367c from_kuid -EXPORT_SYMBOL vmlinux 0xd589f433 dev_set_threaded EXPORT_SYMBOL vmlinux 0xd58fb3e9 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xd592dcc4 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xd59656fa tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xd5a0146b tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state EXPORT_SYMBOL vmlinux 0xd5bd02f0 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xd5d37126 __traceiter_module_get @@ -10765,19 +10760,18 @@ EXPORT_SYMBOL vmlinux 0xd605f95d nand_ecc_get_sw_engine EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k EXPORT_SYMBOL vmlinux 0xd6104814 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xd6113a6c sk_stream_wait_close EXPORT_SYMBOL vmlinux 0xd61b39fb jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xd61d5d6a netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xd61d140b __alloc_skb +EXPORT_SYMBOL vmlinux 0xd61f7bd6 inet6_ioctl EXPORT_SYMBOL vmlinux 0xd627480b strncat EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd648004f reuseport_add_sock EXPORT_SYMBOL vmlinux 0xd64b5d12 devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract EXPORT_SYMBOL vmlinux 0xd6619f48 amba_release_regions -EXPORT_SYMBOL vmlinux 0xd665a4c2 netif_receive_skb EXPORT_SYMBOL vmlinux 0xd67a0c66 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xd67f0df0 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd6828288 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xd68cb4b8 inode_init_once EXPORT_SYMBOL vmlinux 0xd68cb89b ihold EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read @@ -10785,12 +10779,13 @@ EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f91ea5 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70f1fbc nf_log_unregister EXPORT_SYMBOL vmlinux 0xd7389e63 register_console EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd74b7c41 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xd75553e8 get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0xd769d0d1 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0xd76a3919 pin_user_pages_remote @@ -10798,6 +10793,9 @@ EXPORT_SYMBOL vmlinux 0xd77b48de nand_ecc_sw_hamming_get_engine EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7a39544 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xd7a792e9 ip_options_compile +EXPORT_SYMBOL vmlinux 0xd7b26d46 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xd7c23da6 snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0xd7c9a9b2 tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete @@ -10805,16 +10803,15 @@ EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler EXPORT_SYMBOL vmlinux 0xd7eb496e of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0xd7f5879c __folio_lock +EXPORT_SYMBOL vmlinux 0xd7f8fd10 consume_skb +EXPORT_SYMBOL vmlinux 0xd800bf1c netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xd80981db ioc_lookup_icq EXPORT_SYMBOL vmlinux 0xd82a525f __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xd83da9aa skb_split +EXPORT_SYMBOL vmlinux 0xd83db0eb skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc +EXPORT_SYMBOL vmlinux 0xd84d746b tcp_poll EXPORT_SYMBOL vmlinux 0xd8503951 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xd8571959 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xd866ed9d tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xd8678bd5 xfrm_find_acq EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xd87103d8 neigh_xmit EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr EXPORT_SYMBOL vmlinux 0xd8822965 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone @@ -10823,12 +10820,13 @@ EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit EXPORT_SYMBOL vmlinux 0xd8bfabb2 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xd8c5e346 scm_detach_fds EXPORT_SYMBOL vmlinux 0xd8ca363d scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd8f0a515 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xd8f53b95 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd8f1f1c7 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xd906a853 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xd91a343a mdio_device_reset +EXPORT_SYMBOL vmlinux 0xd91bd2a3 tcp_make_synack EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd94ab12c km_policy_notify EXPORT_SYMBOL vmlinux 0xd953bee2 page_address EXPORT_SYMBOL vmlinux 0xd954b254 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0xd96559fa security_binder_set_context_mgr @@ -10836,22 +10834,22 @@ EXPORT_SYMBOL vmlinux 0xd97c1759 __brelse EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages EXPORT_SYMBOL vmlinux 0xd9a74f18 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xd9a9676b napi_gro_frags EXPORT_SYMBOL vmlinux 0xd9b7c003 clk_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bd6a7b nf_getsockopt EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox EXPORT_SYMBOL vmlinux 0xd9df5536 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xd9e15d48 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xda066f8d sock_set_priority +EXPORT_SYMBOL vmlinux 0xd9ecce52 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xda16c1bd __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xda1bb7ff skb_append EXPORT_SYMBOL vmlinux 0xda1d6712 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xda2a8b4b tcp_read_skb EXPORT_SYMBOL vmlinux 0xda31f2f7 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xda3817a3 __nla_put EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda450138 netdev_notice -EXPORT_SYMBOL vmlinux 0xda45e3a0 ppp_dev_name EXPORT_SYMBOL vmlinux 0xda4ab92b blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0xda4dedd2 d_obtain_alias EXPORT_SYMBOL vmlinux 0xda69aee6 mmc_calc_max_discard @@ -10861,91 +10859,97 @@ EXPORT_SYMBOL vmlinux 0xda7a83a4 walk_stackframe EXPORT_SYMBOL vmlinux 0xda8ba300 serio_reconnect EXPORT_SYMBOL vmlinux 0xda8da0f1 dentry_open -EXPORT_SYMBOL vmlinux 0xda8ec810 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xda92f1f5 xfrm_state_insert EXPORT_SYMBOL vmlinux 0xdaa27787 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0xdaa8173f pci_select_bars -EXPORT_SYMBOL vmlinux 0xdaba7bbb security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xdab6459b tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xdabb8518 generic_fillattr EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacc5981 skb_checksum EXPORT_SYMBOL vmlinux 0xdad9562a i2c_register_driver +EXPORT_SYMBOL vmlinux 0xdad96fe8 udp_lib_unhash EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdb038230 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xdb1efac0 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xdb237b46 sock_no_socketpair EXPORT_SYMBOL vmlinux 0xdb2e0114 end_page_writeback EXPORT_SYMBOL vmlinux 0xdb3307a7 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0xdb3c147e of_lpddr3_get_min_tck -EXPORT_SYMBOL vmlinux 0xdb3df5ca dev_set_mtu -EXPORT_SYMBOL vmlinux 0xdb3f0cf1 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xdb3f39f9 sock_no_shutdown EXPORT_SYMBOL vmlinux 0xdb42c0c4 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0xdb51e5fa __nla_put_64bit EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb6b7c83 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xdb71cae1 eth_header_cache_update EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free EXPORT_SYMBOL vmlinux 0xdb780cc2 bmap +EXPORT_SYMBOL vmlinux 0xdb7ee4e4 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit EXPORT_SYMBOL vmlinux 0xdb8a30da pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xdb8b5ae9 skb_unlink EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc5fea8 put_cmsg EXPORT_SYMBOL vmlinux 0xdbc6230e framebuffer_alloc EXPORT_SYMBOL vmlinux 0xdbd3ea95 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xdbfc32c3 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xdbe7d588 xp_raw_get_data EXPORT_SYMBOL vmlinux 0xdbfe78bb max8925_reg_read +EXPORT_SYMBOL vmlinux 0xdc027645 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xdc0883c3 uart_unregister_driver EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc178cd0 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xdc38c4b5 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xdc3dec9a ip_do_fragment EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc430db2 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc510fb8 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit EXPORT_SYMBOL vmlinux 0xdc5eaef5 register_fib_notifier -EXPORT_SYMBOL vmlinux 0xdc6de3cd xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xdc6caf30 sock_no_getname EXPORT_SYMBOL vmlinux 0xdc72b26f cdev_add -EXPORT_SYMBOL vmlinux 0xdc77b2c9 eth_type_trans EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io EXPORT_SYMBOL vmlinux 0xdc81d7e7 folio_write_one -EXPORT_SYMBOL vmlinux 0xdc8a806e security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xdc8c80ec iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xdc90b561 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xdc9d9c92 simple_map_init EXPORT_SYMBOL vmlinux 0xdc9f64f1 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xdca326ff phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xdcadfae7 genphy_update_link -EXPORT_SYMBOL vmlinux 0xdcaf533f sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xdcd54739 dev_alloc_name EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcdd5bfe skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xdcde7315 ucc_fast_free EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xdd00eb5c mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0ff239 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xdd187fc9 eth_mac_addr EXPORT_SYMBOL vmlinux 0xdd1a9963 get_watch_queue +EXPORT_SYMBOL vmlinux 0xdd205065 sock_kfree_s EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd38599a ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xdd3a469f of_node_name_eq EXPORT_SYMBOL vmlinux 0xdd478643 mmc_of_parse EXPORT_SYMBOL vmlinux 0xdd745464 cancel_work EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0xdd81ee8e kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld EXPORT_SYMBOL vmlinux 0xdd8f14be snd_card_new EXPORT_SYMBOL vmlinux 0xdd94a05a tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0xdd9d8600 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xdda0b8f4 amba_driver_unregister EXPORT_SYMBOL vmlinux 0xdda153a1 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xddac16eb dst_dev_put EXPORT_SYMBOL vmlinux 0xddafd33f vga_client_register +EXPORT_SYMBOL vmlinux 0xddc37083 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xddd14b6b __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xddecec71 dump_skip_to EXPORT_SYMBOL vmlinux 0xddef8731 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0xddfbf634 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xde05eda5 security_path_rename +EXPORT_SYMBOL vmlinux 0xde0725a2 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xde0e7752 snd_pcm_create_iec958_consumer EXPORT_SYMBOL vmlinux 0xde14e3f4 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xde2b5e28 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xde388177 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xde4607c7 inet_csk_accept EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave @@ -10953,44 +10957,36 @@ EXPORT_SYMBOL vmlinux 0xde5c07be unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0xde5c751c of_get_next_available_child EXPORT_SYMBOL vmlinux 0xde704db1 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xde7a129e skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xde87bb6d inet_del_protocol EXPORT_SYMBOL vmlinux 0xde9ed98c inode_get_bytes +EXPORT_SYMBOL vmlinux 0xdea1e093 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xdea55e78 pci_iomap_range EXPORT_SYMBOL vmlinux 0xdebdfe29 seq_escape_mem EXPORT_SYMBOL vmlinux 0xdec1aab6 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xdece113d inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0xdecfca17 unload_nls -EXPORT_SYMBOL vmlinux 0xded2feaa xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee02d5c phy_init_eee EXPORT_SYMBOL vmlinux 0xdee92cbb dma_find_channel EXPORT_SYMBOL vmlinux 0xdef50a0f deactivate_locked_super EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf05c687 inet_add_offload -EXPORT_SYMBOL vmlinux 0xdf0ad63e sk_wait_data EXPORT_SYMBOL vmlinux 0xdf0e859c dm_io EXPORT_SYMBOL vmlinux 0xdf0f22d2 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xdf127be4 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xdf109dd6 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xdf164490 misc_deregister EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2d50e4 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf3aa91b tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6c575b udp_lib_unhash EXPORT_SYMBOL vmlinux 0xdf70243f d_lookup -EXPORT_SYMBOL vmlinux 0xdf7a3b71 inet_select_addr -EXPORT_SYMBOL vmlinux 0xdf7b3356 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xdf751896 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0xdf7e509a dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xdf92699b kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdfafe298 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xdfb142c0 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0xdfb191c1 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xdfbe8007 eth_header_cache -EXPORT_SYMBOL vmlinux 0xdfc18365 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xdfc3a9b8 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xdfc695bb page_mapping EXPORT_SYMBOL vmlinux 0xdfc92d43 simple_release_fs EXPORT_SYMBOL vmlinux 0xdfd2cc25 cros_ec_get_host_event @@ -11000,20 +10996,20 @@ EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes EXPORT_SYMBOL vmlinux 0xe001f745 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xe002dcd8 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xe01fa8d5 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0xe0249d92 flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0xe02a16d2 iptun_encaps EXPORT_SYMBOL vmlinux 0xe03c80e1 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe04ac440 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xe05afce4 pci_enable_device -EXPORT_SYMBOL vmlinux 0xe05be23c dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xe0626d9f phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xe05fdbf4 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xe06699b2 sg_next EXPORT_SYMBOL vmlinux 0xe0702823 of_get_property EXPORT_SYMBOL vmlinux 0xe07d7260 file_modified EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe08413c2 inet6_register_protosw EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe096f6bb ip_fraglist_init EXPORT_SYMBOL vmlinux 0xe0a6b585 request_resource EXPORT_SYMBOL vmlinux 0xe0af4e8a folio_mapping EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free @@ -11023,71 +11019,76 @@ EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco EXPORT_SYMBOL vmlinux 0xe0c17c19 bdi_alloc EXPORT_SYMBOL vmlinux 0xe0c19215 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xe0c872dc reuseport_detach_sock EXPORT_SYMBOL vmlinux 0xe0da90a1 snd_pcm_suspend_all EXPORT_SYMBOL vmlinux 0xe0dd2461 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xe0e3ff99 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xe1057925 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe10bd08f netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11d4995 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors EXPORT_SYMBOL vmlinux 0xe1431e13 invalidate_disk EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0xe15d2459 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xe174dd57 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xe17628c1 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xe19c70fc ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context EXPORT_SYMBOL vmlinux 0xe1a9f87b pci_match_id EXPORT_SYMBOL vmlinux 0xe1ae0f48 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe1b5d612 blk_finish_plug EXPORT_SYMBOL vmlinux 0xe1bbbab5 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format EXPORT_SYMBOL vmlinux 0xe1de30c7 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xe1f5a66a tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable -EXPORT_SYMBOL vmlinux 0xe21f0e6a tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe22267d2 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum EXPORT_SYMBOL vmlinux 0xe228e6a5 of_node_get +EXPORT_SYMBOL vmlinux 0xe22b7e7e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xe2408723 napi_gro_flush EXPORT_SYMBOL vmlinux 0xe2466ff1 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xe2593979 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap EXPORT_SYMBOL vmlinux 0xe28a325c d_find_alias +EXPORT_SYMBOL vmlinux 0xe28f1df6 nf_log_unset EXPORT_SYMBOL vmlinux 0xe2a7c73e pipe_lock -EXPORT_SYMBOL vmlinux 0xe2ce150a submit_bio_noacct EXPORT_SYMBOL vmlinux 0xe2d01fe2 device_add_disk EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2e1722b scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xe2e22922 skb_seq_read EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock EXPORT_SYMBOL vmlinux 0xe3133dab tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xe31d8907 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xe3244529 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0xe32729b2 nla_put +EXPORT_SYMBOL vmlinux 0xe32737e6 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xe3277b53 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest EXPORT_SYMBOL vmlinux 0xe3345fd1 inode_set_flags EXPORT_SYMBOL vmlinux 0xe334defb mode_strip_sgid EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe3534dc8 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xe35ff686 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe35abec7 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xe35ce1e2 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0xe372a37d component_match_add_typed EXPORT_SYMBOL vmlinux 0xe37762b7 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xe3809238 __inet_stream_connect EXPORT_SYMBOL vmlinux 0xe3836651 blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0xe38f3027 elm_config EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set EXPORT_SYMBOL vmlinux 0xe3acabd0 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xe3bb1bb5 tcp_connect -EXPORT_SYMBOL vmlinux 0xe3be1bc2 ip_output EXPORT_SYMBOL vmlinux 0xe3c4c35e fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0xe3d416ef devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xe3dd9daa phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3fac30b xfrm_policy_register_afinfo 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 0xe41a7a55 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xe421ae57 tcf_generic_walker EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0xe429f5f6 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 @@ -11102,24 +11103,24 @@ EXPORT_SYMBOL vmlinux 0xe477fc9b memremap EXPORT_SYMBOL vmlinux 0xe49809bc of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xe4a09bc8 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xe4aa669c udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xe4b102fb pci_request_irq +EXPORT_SYMBOL vmlinux 0xe4bb16c9 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe4c478da ip_frag_init EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid EXPORT_SYMBOL vmlinux 0xe4e275bb pagecache_isize_extended EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one -EXPORT_SYMBOL vmlinux 0xe4f3fa10 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xe522b77e blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe53f6b14 do_splice_direct EXPORT_SYMBOL vmlinux 0xe5479c20 request_key_tag EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe56fc387 arp_tbl EXPORT_SYMBOL vmlinux 0xe574fec1 nand_ecc_sw_bch_calculate 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 0xe5873411 dm_table_event EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe593b476 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xe59cfd7b irq_set_chip EXPORT_SYMBOL vmlinux 0xe5a08df7 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xe5a86b46 of_graph_get_endpoint_count @@ -11131,23 +11132,21 @@ EXPORT_SYMBOL vmlinux 0xe5d23679 param_array_ops EXPORT_SYMBOL vmlinux 0xe5d96c6e filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xe5ea7bd3 seq_release_private -EXPORT_SYMBOL vmlinux 0xe5ed1020 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xe5f9b8cb padata_do_serial EXPORT_SYMBOL vmlinux 0xe60220b0 __destroy_inode EXPORT_SYMBOL vmlinux 0xe6059d6e devm_clk_get_optional EXPORT_SYMBOL vmlinux 0xe6088b27 ram_aops -EXPORT_SYMBOL vmlinux 0xe60f66d9 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xe62681dc __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad EXPORT_SYMBOL vmlinux 0xe64c25ca flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xe64d21a2 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xe65e267e qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xe650098a skb_copy_bits +EXPORT_SYMBOL vmlinux 0xe669891c neigh_lookup EXPORT_SYMBOL vmlinux 0xe6903032 md_done_sync EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size EXPORT_SYMBOL vmlinux 0xe69d31ee snd_ctl_make_virtual_master EXPORT_SYMBOL vmlinux 0xe6a344d0 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xe6aad0e0 ip_frag_next -EXPORT_SYMBOL vmlinux 0xe6b32181 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xe6bba130 xsk_tx_release EXPORT_SYMBOL vmlinux 0xe6c50873 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xe6cc8a25 fput EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack @@ -11155,62 +11154,60 @@ EXPORT_SYMBOL vmlinux 0xe6def551 __kmap_local_page_prot EXPORT_SYMBOL vmlinux 0xe6df3243 dev_addr_del EXPORT_SYMBOL vmlinux 0xe6e4ff7f jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xe6e54ee8 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xe6e59a47 cqhci_pltfm_init -EXPORT_SYMBOL vmlinux 0xe6ec1725 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xe6ee4a96 netdev_info +EXPORT_SYMBOL vmlinux 0xe6ec9b7b __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xe6ee3e65 mr_dump EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe710a38f tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xe713ef17 hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0xe715fd37 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0xe71ac62e iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0xe71dfb9f __pagevec_release EXPORT_SYMBOL vmlinux 0xe71f3a24 proc_create_single_data EXPORT_SYMBOL vmlinux 0xe733474c phy_driver_unregister EXPORT_SYMBOL vmlinux 0xe7352586 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0xe73756c7 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xe74eeb9c qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xe7746eee qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xe781c9a4 snd_card_disconnect -EXPORT_SYMBOL vmlinux 0xe7832d1d default_qdisc_ops EXPORT_SYMBOL vmlinux 0xe79004d3 seq_path EXPORT_SYMBOL vmlinux 0xe790e008 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xe79fee03 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xe7b8c8d2 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xe7b1eb5f ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xe7c1c4c1 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xe7cae3d6 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xe7d1d5b2 genl_register_family EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7de2038 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xe7e18326 scsi_remove_host EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xe7e8977c nf_register_net_hook EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe8091f85 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xe807e8cf kernel_getsockname EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xe81a5f25 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xe827cec4 blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0xe835c235 tty_hung_up_p EXPORT_SYMBOL vmlinux 0xe83838b9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xe83fc009 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub EXPORT_SYMBOL vmlinux 0xe846cfab locks_remove_posix +EXPORT_SYMBOL vmlinux 0xe8509cef netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe8638b36 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xe868598f scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xe881daef unix_get_socket -EXPORT_SYMBOL vmlinux 0xe8928fcb netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xe89a7cf6 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xe89c1d26 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xe8ae6625 unix_destruct_scm EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift EXPORT_SYMBOL vmlinux 0xe8cf0286 make_bad_inode EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len EXPORT_SYMBOL vmlinux 0xe8d3d05f blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xe8d61c3e seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xe8ec39dc tcp_read_sock +EXPORT_SYMBOL vmlinux 0xe8d90cdc netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe8f26374 netdev_change_features +EXPORT_SYMBOL vmlinux 0xe902337a submit_bio EXPORT_SYMBOL vmlinux 0xe9040533 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xe9051ea4 inet_frag_find -EXPORT_SYMBOL vmlinux 0xe906bc93 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xe906f62d param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0xe90cb66c param_ops_bool EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91bbe6a tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xe9225a75 skb_condense EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write -EXPORT_SYMBOL vmlinux 0xe9346617 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xe9416250 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xe94d4cbf tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0xe952892d path_is_mountpoint EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe9628ce8 sort_r @@ -11218,27 +11215,28 @@ EXPORT_SYMBOL vmlinux 0xe97c4103 ioremap EXPORT_SYMBOL vmlinux 0xe97e1ca8 phy_device_register EXPORT_SYMBOL vmlinux 0xe983fb75 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xe9993cc7 netdev_update_features EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0xe9a2f5ea ns_capable_setid EXPORT_SYMBOL vmlinux 0xe9b540d4 percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0xe9bc3c9d tcp_ioctl EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe9d2d648 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xe9d68a4c setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0xe9db1a22 do_map_probe EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9efa6d6 tc6393xb_lcd_mode EXPORT_SYMBOL vmlinux 0xe9f2a0e2 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f97c0f udp6_seq_ops EXPORT_SYMBOL vmlinux 0xea049fd9 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xea098e5d netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xea09ab2d km_state_expired EXPORT_SYMBOL vmlinux 0xea2b4e21 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int EXPORT_SYMBOL vmlinux 0xea48a69f of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xea61a0ff dev_remove_pack EXPORT_SYMBOL vmlinux 0xea65e0fc mount_subtree EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a397f netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xea7d31ee mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xea8e7796 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0xeac05a69 ucc_slow_enable EXPORT_SYMBOL vmlinux 0xeac1cbf0 remove_proc_subtree @@ -11247,83 +11245,81 @@ EXPORT_SYMBOL vmlinux 0xeae330bd pcie_set_mps EXPORT_SYMBOL vmlinux 0xeaedc0be input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xeaee0375 cdev_del +EXPORT_SYMBOL vmlinux 0xeaf0686b sock_create_kern EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb0e3741 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xeb16ea2c mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xeb21bcad inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xeb253659 kobject_put EXPORT_SYMBOL vmlinux 0xeb256bd3 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xeb2718c9 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xeb3445fa param_set_uint -EXPORT_SYMBOL vmlinux 0xeb36ebe1 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb53178a crc8 EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5e11f3 skb_copy -EXPORT_SYMBOL vmlinux 0xeb66c527 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xeb7bb3be phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xeb825fca neigh_direct_output +EXPORT_SYMBOL vmlinux 0xeb8cbbb4 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint EXPORT_SYMBOL vmlinux 0xebd272bb padata_free -EXPORT_SYMBOL vmlinux 0xebe05134 pskb_expand_head EXPORT_SYMBOL vmlinux 0xebe632db zstd_decompress_dctx -EXPORT_SYMBOL vmlinux 0xebe94c53 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xebfc4912 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec0555e1 netif_tx_unlock EXPORT_SYMBOL vmlinux 0xec27e406 dm_table_get_size EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xec49e613 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4ddead consume_skb -EXPORT_SYMBOL vmlinux 0xec510e0f build_skb_around EXPORT_SYMBOL vmlinux 0xec51c307 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xec5b1bd1 generic_block_bmap EXPORT_SYMBOL vmlinux 0xec5c575d pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xec6edc91 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xec7ae49d scsi_mode_sense EXPORT_SYMBOL vmlinux 0xec803a6f pci_release_regions -EXPORT_SYMBOL vmlinux 0xec8f87ed xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecc378ec sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xecc44a16 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xecbbf67a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xecc01447 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0xecc53ae0 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xeccf8cc3 scmd_printk EXPORT_SYMBOL vmlinux 0xecd05762 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xecd22f4e tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xecd3aada nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xecd94750 pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xecea5e60 dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecf8a97e eth_gro_complete EXPORT_SYMBOL vmlinux 0xed05db70 fifo_set_limit EXPORT_SYMBOL vmlinux 0xed3f8c75 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0xed5dddab dquot_quota_off EXPORT_SYMBOL vmlinux 0xed60fd17 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed679507 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xed698109 sk_mc_loop EXPORT_SYMBOL vmlinux 0xed6d8a39 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0xed6d9024 _copy_from_iter EXPORT_SYMBOL vmlinux 0xed77119f __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xed7e58d0 generic_fadvise +EXPORT_SYMBOL vmlinux 0xed8669ac sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xed8bff40 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0xed8ce069 crypto_sha256_update EXPORT_SYMBOL vmlinux 0xed9a24d0 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xeda4c49c skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xedb26005 ps2_begin_command EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcfd48f call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 EXPORT_SYMBOL vmlinux 0xede81a92 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xedf08c7e mr_fill_mroute EXPORT_SYMBOL vmlinux 0xee0340be phy_register_fixup EXPORT_SYMBOL vmlinux 0xee096862 vfs_rename -EXPORT_SYMBOL vmlinux 0xee1b4440 dev_set_alias -EXPORT_SYMBOL vmlinux 0xee22984d xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xee150c14 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee40c385 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xee41224b sock_init_data EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit EXPORT_SYMBOL vmlinux 0xee442c08 snd_pcm_hw_param_last EXPORT_SYMBOL vmlinux 0xee49d9fe generic_file_open EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee5e835d km_new_mapping EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree EXPORT_SYMBOL vmlinux 0xee76d584 current_in_userns EXPORT_SYMBOL vmlinux 0xee7c031d __do_once_done @@ -11333,22 +11329,25 @@ EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee8f0505 devm_ioremap EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee98402b pskb_extract +EXPORT_SYMBOL vmlinux 0xee952650 tcp_connect EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xeea88760 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeeb2296b __dec_node_page_state EXPORT_SYMBOL vmlinux 0xeec45a0f processor -EXPORT_SYMBOL vmlinux 0xeec7a10a inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xeec9b2dc __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0xeecbc25a snd_dma_alloc_dir_pages EXPORT_SYMBOL vmlinux 0xeed1c955 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0xeed22f6f devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xeedcd95c generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xeeee1754 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xeef25351 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xef039cfa netif_carrier_on +EXPORT_SYMBOL vmlinux 0xef0ccfbf xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xef28bfbd security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xef297b94 xfrm_register_type EXPORT_SYMBOL vmlinux 0xef3d3867 dump_align EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0xef50bf45 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xef57d247 sock_no_linger EXPORT_SYMBOL vmlinux 0xef636ae4 simple_rename EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg @@ -11365,6 +11364,7 @@ EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work EXPORT_SYMBOL vmlinux 0xf0359fc6 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xf03fb36c generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xf0413090 qdisc_reset EXPORT_SYMBOL vmlinux 0xf0613ff9 genphy_read_abilities EXPORT_SYMBOL vmlinux 0xf06b3cb9 unregister_key_type EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot @@ -11374,7 +11374,9 @@ EXPORT_SYMBOL vmlinux 0xf0a231b8 md_flush_request EXPORT_SYMBOL vmlinux 0xf0a2eabf vfs_readlink EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0d713d8 inet6_offloads +EXPORT_SYMBOL vmlinux 0xf0a3917a ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xf0adb577 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf0ea4eb7 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb EXPORT_SYMBOL vmlinux 0xf0ef52e8 down EXPORT_SYMBOL vmlinux 0xf0f739a5 watchdog_register_governor @@ -11387,24 +11389,29 @@ EXPORT_SYMBOL vmlinux 0xf120a984 param_get_bool EXPORT_SYMBOL vmlinux 0xf124f8b6 mmc_put_card EXPORT_SYMBOL vmlinux 0xf12d8ea1 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf13763c5 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf1442336 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xf14e7f29 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xf156dd0b prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xf17e9ea9 inet_del_offload EXPORT_SYMBOL vmlinux 0xf184334e snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0xf1932eee alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1980585 free_netdev EXPORT_SYMBOL vmlinux 0xf198c20c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xf19a8713 pskb_extract EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align EXPORT_SYMBOL vmlinux 0xf1c278f3 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0xf1d9383d show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1db4436 simple_rmdir EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e08622 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 EXPORT_SYMBOL vmlinux 0xf1f6d13c page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0xf2100c1f __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xf2122a9d __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xf217d499 zstd_init_cctx EXPORT_SYMBOL vmlinux 0xf2287b67 kill_pid EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one @@ -11414,6 +11421,7 @@ EXPORT_SYMBOL vmlinux 0xf251ecd5 devfreq_update_target EXPORT_SYMBOL vmlinux 0xf2543c85 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0xf25d87a7 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xf264559b tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier EXPORT_SYMBOL vmlinux 0xf26b9d5e pci_unregister_driver EXPORT_SYMBOL vmlinux 0xf2884443 iov_iter_discard @@ -11427,13 +11435,9 @@ EXPORT_SYMBOL vmlinux 0xf2c5014e single_open_size EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2e7dec8 simple_get_link -EXPORT_SYMBOL vmlinux 0xf2f39ed4 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f903f0 mr_dump EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31d7841 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xf33dfd5b napi_schedule_prep EXPORT_SYMBOL vmlinux 0xf3404cf4 pci_get_subsys EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key @@ -11444,14 +11448,13 @@ 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 0xf395ab04 arp_create EXPORT_SYMBOL vmlinux 0xf39ab42e bio_copy_data -EXPORT_SYMBOL vmlinux 0xf3a031a7 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after EXPORT_SYMBOL vmlinux 0xf3a90b5c rproc_add_carveout -EXPORT_SYMBOL vmlinux 0xf3b069c8 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xf3b71dd3 udp_disconnect +EXPORT_SYMBOL vmlinux 0xf3b47229 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0xf3cac714 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xf3cef97c sk_dst_check +EXPORT_SYMBOL vmlinux 0xf3d06616 dev_get_mac_address EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xf3de7877 current_time EXPORT_SYMBOL vmlinux 0xf3e23725 tty_register_driver @@ -11459,49 +11462,49 @@ EXPORT_SYMBOL vmlinux 0xf3eed8e4 mtd_concat_destroy EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init EXPORT_SYMBOL vmlinux 0xf40dcc89 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xf4104a72 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xf42228d5 PageMovable +EXPORT_SYMBOL vmlinux 0xf4354ad7 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0xf4363d53 dump_skip -EXPORT_SYMBOL vmlinux 0xf4366eef tcp_prot +EXPORT_SYMBOL vmlinux 0xf440574b udp_ioctl EXPORT_SYMBOL vmlinux 0xf4497cf1 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf45920bb napi_gro_receive -EXPORT_SYMBOL vmlinux 0xf46be14a sock_wake_async +EXPORT_SYMBOL vmlinux 0xf46659b1 dev_get_by_name EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const EXPORT_SYMBOL vmlinux 0xf47cf3c1 locks_copy_lock EXPORT_SYMBOL vmlinux 0xf47df406 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0xf49553d9 input_inject_event EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xf49bfa0d tso_build_data EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic EXPORT_SYMBOL vmlinux 0xf4aa77fa snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xf4b8cfe2 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xf4b9251f skb_ensure_writable EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xf4c130a9 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf4c34f81 sk_alloc +EXPORT_SYMBOL vmlinux 0xf4bf9b0d __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xf4db1826 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4dfe9b3 drop_nlink EXPORT_SYMBOL vmlinux 0xf4e27686 snd_pcm_hw_refine EXPORT_SYMBOL vmlinux 0xf4ed7b43 clear_nlink +EXPORT_SYMBOL vmlinux 0xf4ee44c1 bpf_map_get EXPORT_SYMBOL vmlinux 0xf4f0d657 __block_write_full_page EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf4faba61 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xf524e5f1 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xf5261159 tcp_add_backlog EXPORT_SYMBOL vmlinux 0xf5280d30 inode_permission EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5550acd xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xf558bfd7 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0xf55c8b6d __read_overflow2_field EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf57c7353 napi_disable EXPORT_SYMBOL vmlinux 0xf5a0e0d2 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xf5a71698 skb_trim EXPORT_SYMBOL vmlinux 0xf5add064 seq_release EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock EXPORT_SYMBOL vmlinux 0xf5c86b78 pci_fixup_device EXPORT_SYMBOL vmlinux 0xf5d17c74 generic_delete_inode EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5fb248e sock_no_mmap EXPORT_SYMBOL vmlinux 0xf61e0b74 zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf6206396 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0xf62654f8 ucc_fast_disable @@ -11511,76 +11514,75 @@ EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf657da43 tcp_sendmsg EXPORT_SYMBOL vmlinux 0xf6610f72 snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf66b684a seq_read_iter EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6843d78 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xf69bc787 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0xf69cb1ec locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xf6a20cbe sock_create_lite +EXPORT_SYMBOL vmlinux 0xf6a4f3ba kfree_skb_partial EXPORT_SYMBOL vmlinux 0xf6a5ee2e qcom_scm_io_readl EXPORT_SYMBOL vmlinux 0xf6a67231 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xf6a932a8 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0xf6aa5e73 flow_rule_alloc EXPORT_SYMBOL vmlinux 0xf6aeb190 clocksource_change_rating EXPORT_SYMBOL vmlinux 0xf6b980e4 register_framebuffer +EXPORT_SYMBOL vmlinux 0xf6cb494d km_query EXPORT_SYMBOL vmlinux 0xf6d8467a rproc_free EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf6fcae79 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xf6fdc2f3 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xf6fe302c security_path_unlink EXPORT_SYMBOL vmlinux 0xf700341d mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xf701cf84 submit_bio_noacct EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner EXPORT_SYMBOL vmlinux 0xf70876db nand_ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0xf70cfac5 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xf71104f8 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xf711cf7a netpoll_cleanup EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf71b570f xfrm_find_acq EXPORT_SYMBOL vmlinux 0xf72bb285 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xf72d5df2 netlink_capable EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73b56c8 inet_ioctl +EXPORT_SYMBOL vmlinux 0xf7393d22 napi_disable EXPORT_SYMBOL vmlinux 0xf741f578 of_chosen -EXPORT_SYMBOL vmlinux 0xf749fb60 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0xf765f14d napi_consume_skb EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf7762732 rproc_boot EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod EXPORT_SYMBOL vmlinux 0xf7820f80 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xf7a98d99 dst_alloc EXPORT_SYMBOL vmlinux 0xf7b066c6 dns_query EXPORT_SYMBOL vmlinux 0xf7bb9e1d phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xf7cc8074 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xf7d53d1a eth_get_headlen -EXPORT_SYMBOL vmlinux 0xf7e909e7 __napi_schedule EXPORT_SYMBOL vmlinux 0xf808ac63 fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0xf809e359 sk_stop_timer EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf8178ae6 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0xf82a5222 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top EXPORT_SYMBOL vmlinux 0xf8447b91 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xf84aa461 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xf85a0458 reuseport_alloc EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0xf875f782 padata_alloc EXPORT_SYMBOL vmlinux 0xf877b366 devm_memunmap EXPORT_SYMBOL vmlinux 0xf881c36e dqget -EXPORT_SYMBOL vmlinux 0xf88247b1 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xf884f29a mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0xf8861cdd dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xf89154bf seg6_push_hmac EXPORT_SYMBOL vmlinux 0xf8b1597e thaw_super EXPORT_SYMBOL vmlinux 0xf8bbea23 mtree_insert +EXPORT_SYMBOL vmlinux 0xf8c1abbd xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xf8c5d969 make_kuid EXPORT_SYMBOL vmlinux 0xf8ce279f tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xf8cecef6 kernel_accept -EXPORT_SYMBOL vmlinux 0xf8e8600c ppp_input_error EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f66e41 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xf8fb71ef tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xf903cdd8 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xf907dd1b inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xf90afda1 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xf924bdc7 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xf90e88e5 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xf927f9b4 inet_frags_init EXPORT_SYMBOL vmlinux 0xf929f665 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xf92a6228 key_reject_and_link EXPORT_SYMBOL vmlinux 0xf92be2e7 file_ns_capable @@ -11588,50 +11590,49 @@ EXPORT_SYMBOL vmlinux 0xf93a2deb __serio_register_port EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94057bc xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xf94392a5 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf9661d07 neigh_destroy +EXPORT_SYMBOL vmlinux 0xf952a2fc inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xf95e8de0 unix_attach_fds EXPORT_SYMBOL vmlinux 0xf969e278 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf99fd5df netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xf9a0fde7 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xf9a29e1e security_old_inode_init_security EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep EXPORT_SYMBOL vmlinux 0xf9a8241f nand_monolithic_read_page_raw EXPORT_SYMBOL vmlinux 0xf9a8a301 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xf9c0b66f __netif_rx EXPORT_SYMBOL vmlinux 0xf9c58c44 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xf9d584f2 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user EXPORT_SYMBOL vmlinux 0xf9f42029 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xf9fe0010 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa08de41 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xfa0f2d26 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xfa1fe230 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xfa2476d8 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xfa2f79b5 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xfa38d14d devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xfa3c786b dma_async_device_unregister EXPORT_SYMBOL vmlinux 0xfa3cffc1 d_genocide EXPORT_SYMBOL vmlinux 0xfa40a477 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa592665 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xfa4f6c28 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5d31cd bpf_link_put EXPORT_SYMBOL vmlinux 0xfa61cf2c scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xfa7c361a dcache_dir_open +EXPORT_SYMBOL vmlinux 0xfa875386 tcp_read_done EXPORT_SYMBOL vmlinux 0xfaa0758f lookup_one -EXPORT_SYMBOL vmlinux 0xfac4e272 ip_defrag EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfaccabf8 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xfacdc0a7 kernel_connect +EXPORT_SYMBOL vmlinux 0xfad5ba82 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xfaea7f16 inet_bind EXPORT_SYMBOL vmlinux 0xfaed6d17 _dev_emerg EXPORT_SYMBOL vmlinux 0xfafa269e __mod_zone_page_state EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read EXPORT_SYMBOL vmlinux 0xfb1e9dc2 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xfb32e6bf netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3b139e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xfb3feaf1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xfb55524e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xfb58db8b nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xfb66ff56 inet_put_port EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending EXPORT_SYMBOL vmlinux 0xfb6bbefe genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0xfb6f013d textsearch_destroy @@ -11647,51 +11648,50 @@ EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xfbf571de set_cached_acl -EXPORT_SYMBOL vmlinux 0xfbfdcd99 scm_detach_fds EXPORT_SYMBOL vmlinux 0xfc06b1da vfs_mknod +EXPORT_SYMBOL vmlinux 0xfc0af226 vif_device_init EXPORT_SYMBOL vmlinux 0xfc1adb2c devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0xfc2171a0 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xfc279a9a kernel_bind EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3c31f5 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad EXPORT_SYMBOL vmlinux 0xfc405529 of_get_next_cpu_node EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc44b992 inet_dgram_connect EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc59b728 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xfc5967cd tcf_block_get EXPORT_SYMBOL vmlinux 0xfc6ce8f6 snd_pcm_hw_constraint_integer EXPORT_SYMBOL vmlinux 0xfc773942 begin_new_exec -EXPORT_SYMBOL vmlinux 0xfc80a51e tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xfc829cbe proto_register +EXPORT_SYMBOL vmlinux 0xfc87a5a3 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xfc9b9080 kmem_cache_size EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcaec408 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xfcb8add7 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xfcac5e92 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xfcb8ea91 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xfcc55f73 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfccd092a xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce4bfd8 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xfceba40e netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq EXPORT_SYMBOL vmlinux 0xfcec6020 snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0xfcf6dce9 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xfcf072ca neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xfd0be294 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xfd12a19e register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfd1e099e __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xfd2e3b24 get_inode_acl EXPORT_SYMBOL vmlinux 0xfd37c1c9 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xfd46f88d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xfd502035 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0xfd57a9e2 scsi_host_busy EXPORT_SYMBOL vmlinux 0xfd598f90 pci_iomap EXPORT_SYMBOL vmlinux 0xfd60696a seq_lseek EXPORT_SYMBOL vmlinux 0xfd63fc53 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xfd7aefb6 km_new_mapping +EXPORT_SYMBOL vmlinux 0xfd7f1788 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0xfd8a42c8 padata_free_shell EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd8cefec netlink_ns_capable EXPORT_SYMBOL vmlinux 0xfd9bec63 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0xfda022e0 d_obtain_root EXPORT_SYMBOL vmlinux 0xfdad2367 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xfdaf7f2d tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xfdb54241 ppp_channel_index EXPORT_SYMBOL vmlinux 0xfdbbc86c console_stop EXPORT_SYMBOL vmlinux 0xfdc99e5e inode_newsize_ok EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display @@ -11699,31 +11699,31 @@ EXPORT_SYMBOL vmlinux 0xfddc07d8 try_module_get EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0a31a6 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xfe1006d7 may_umount -EXPORT_SYMBOL vmlinux 0xfe106694 neigh_table_init EXPORT_SYMBOL vmlinux 0xfe14c421 vma_set_file -EXPORT_SYMBOL vmlinux 0xfe38f91c ipv4_specific +EXPORT_SYMBOL vmlinux 0xfe275c71 security_sb_remount EXPORT_SYMBOL vmlinux 0xfe42ac80 from_kprojid_munged EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4d1baa ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xfe5244d6 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz EXPORT_SYMBOL vmlinux 0xfe9367d0 of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0xfe966fc8 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xfe9d691a neigh_seq_start EXPORT_SYMBOL vmlinux 0xfea4280b i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0xfeac0c21 path_put EXPORT_SYMBOL vmlinux 0xfead19ca devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xfebdb5da inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xfed2b64d xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xfeba80bd netlink_net_capable +EXPORT_SYMBOL vmlinux 0xfed0693d neigh_changeaddr EXPORT_SYMBOL vmlinux 0xfedc682f capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu EXPORT_SYMBOL vmlinux 0xfee63ed0 __bread_gfp +EXPORT_SYMBOL vmlinux 0xfefc17de unregister_qdisc EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff17368d __dev_get_by_index EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff224f88 snd_device_register EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register EXPORT_SYMBOL vmlinux 0xff29629d migrate_folio +EXPORT_SYMBOL vmlinux 0xff30a037 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xff3ea670 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate @@ -11731,33 +11731,33 @@ EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xffa1736b jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xffb2f61c tcp_close EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit EXPORT_SYMBOL vmlinux 0xffbf29dd dup_iter EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdc21eb __ip_dev_find +EXPORT_SYMBOL vmlinux 0xffe7e9de skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff2cb78 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xfffa1f12 netif_napi_add_weight EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x84dbf495 sha1_finup_arm EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xa3000051 sha1_update_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x0e273fe9 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x2de6ba5a af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x36ef5821 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x3cba6381 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x57f8dd55 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x620fb607 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x6d643752 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x705f9078 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x76927726 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x7d030326 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x97b4ae2b af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x9d332ea6 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xba464fba af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xc8a1d650 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe39cb4ff af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xee06da58 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xfbec79c0 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xfd92c81b af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x016cf5af af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x05b627ae af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x0cfdeb8e af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x14dc686b af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1a69c1a6 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b30cc0e af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3323226e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3bff1447 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x61239710 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x6c13caa5 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6dd36580 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x6dfea85d af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x77c3912a af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xa8d9f333 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xb893c80e af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xc9ce9dc2 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xca047b09 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xf708af74 af_alg_accept EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0xc58914ae aria_set_key @@ -11875,7 +11875,7 @@ EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xea789f02 spk_synth_get_index EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x12588bc8 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x6ba8a8ad sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x1da4839c 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 @@ -11949,61 +11949,61 @@ EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3efe43f bcma_chipco_gpio_out EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea08f55f bcma_core_set_clockmode EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xffbf2019 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7e82b80b btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x89c0ff95 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9ee28230 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb3fcfaeb btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc1989a78 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xca2b7506 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcb2dd1cb btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcb708e22 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x048752d6 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2294a9b4 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2eca3e4c btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5036d7ba btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5376be4c btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x544f738f btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59ab493b btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x61b19c91 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67f3d2f8 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76a7913e btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7d4d8ffd btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x829e99b5 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88508e98 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x91bb1901 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb5a1b4be btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc392631e btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe472bf9b btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x14233af4 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4c29939a btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x87629371 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x959c5fc4 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa32a17a btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb131e80a btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb7ab6b7e btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbee2f3ea btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc610b277 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdd7f7976 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf08e6ad4 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x3b0b6869 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x40ddf9d5 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xc6c8b933 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x42a7ca15 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5e8ad893 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6f0b0be4 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x84f5ab31 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf1e20c1a qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x04404f6f btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7d913aa2 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9a8846bd btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x14f839a3 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x625b699b btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x650e0256 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xac5e4f2f btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb90fefc0 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe1737e0e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe890f97a btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xedea859e btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18d5725f btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f370783 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x319b0a4c btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b31d463 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c06ee0a btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4ed5a1b4 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ce32f26 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c8cdf3a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8916a7bb btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x945b9d96 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b9d9d17 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcabbdbbb btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd1fdaa9b btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd216de40 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe4def4bb btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4858554 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf5ff1c27 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x01171aa6 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2173bdc4 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x28a1246a btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x36e5c252 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c40bd82 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x485f1205 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9fd93e9c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa34eb526 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc9f6ce5d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcb1a675a btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf1e40ea3 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x76d8797b btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x87631c35 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xeb6a93b0 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x36696d3d qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9ca07095 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb9103dce qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc92bd603 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe34ea108 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1fb91b30 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x46b4e3dc btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8767b98b btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa3350207 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa9ce0f70 btrtl_get_uart_settings EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb3103165 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb3f971a0 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb9da6663 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0f17c8f7 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x46a2efec hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x71543cdf h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa9b11600 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfa159287 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1dd3020a hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x839dd8be hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb3f3dd70 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc50a7050 h4_recv_buf EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x54eae236 mhi_ep_register_controller EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x558fc804 mhi_ep_unregister_controller EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x96ce0592 mhi_ep_queue_skb @@ -12274,73 +12274,75 @@ EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdbffd0c2 comedi_dio_bitfield2 EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x701db540 omap_crypto_align_sg EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd5328478 omap_crypto_cleanup -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00215372 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x023c687e adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05346949 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x093e3fd7 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a2cf5f2 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a742caa adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1187c293 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x11d820f5 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x16dda1d7 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19961826 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a5618cd adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00d12e7a adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0391bb3e adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x066457e5 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a260e7c adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e06252b adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x117819e3 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x13a02392 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1736f6a2 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1f041a27 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x22f0160f adf_enable_aer 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 0x3176badd adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x347d5d5f adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3bb1bb71 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ce25cc8 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2dcd75f6 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x30339443 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 0x42dc0920 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4601c5d1 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x497f3df2 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4dbc4298 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4612ce3e adf_devmgr_add_dev EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f0a05bc adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x50a94705 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51091926 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51366b17 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x520b1fca adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x540bb91b adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55deddb7 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x600af9d5 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60c3d8e5 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x64d5fca7 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x66fe5cdd adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68dc6775 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6915ae02 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x776ae87f adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7a6d5251 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e7b779b adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x83bdeb81 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x896d1ff7 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8e53b79b adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4fa24f0e adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x52d79a72 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x56140c38 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5649c09e adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x583ec5b9 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59ca9f7f adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ddd174e adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d7c3149 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6e6096dc adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x704ad565 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x70f42c8f adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7202f90a adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x72d647d4 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7a326675 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7bd91537 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7ebacc7e adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x856c282a adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x875270d1 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8adfe472 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d7d84a1 adf_devmgr_rm_dev EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x95028e59 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e1132d9 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa360047e adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa49932db adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6684fc0 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a7f98d8 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa048161f adf_dev_get EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa69e7e36 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xacca23ab adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae04c6d6 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xacb6c91c adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb279e120 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb33ca3de adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3f1364a adf_cfg_add_key_value_param EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb5dacb45 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0e9b85b adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc38344b adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6a2dab9 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc089288d adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc26097c2 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc5aeca20 adf_exit_arb EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd467157 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce333a9d adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcf79d825 adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcfe90c17 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd60b58ba adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xde4d6bea adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcdf8bb94 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xced552d3 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd2e20fa0 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdcae6f32 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd96a3c3 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xde9573f7 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe02cdb7f adf_dev_down 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 0xe3c28f73 adf_vf2pf_notify_init 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 0xe5de4389 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeae49435 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xec246849 adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf089424f adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6814dfb adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf817c449 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfc990613 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfd03d42f adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe9b68deb adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeaa0b625 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeb9c653b adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xee3bfdd4 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf5541f15 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfa1ff314 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb986f97 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfee9fe7d adf_gen2_dev_config EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xefa26a40 dw_edma_remove EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xf7982315 dw_edma_probe EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2a70e3b3 do_dw_dma_disable @@ -13064,18 +13066,18 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2e75d94 iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3017c63 iio_dealloc_pollfunc EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x147685a0 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2af0dd41 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4dac5a99 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6337f259 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6bc4dedc rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb04c1d4f rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc2db398b rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd3db9f79 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe23c6f2d rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe768982e rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf6076082 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfc769935 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x031b68cf rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x061269fc rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0c44dc28 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x104b4944 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13caf714 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a6e76ec rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb279ace8 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb70146af rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbacba872 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd1811f33 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd79d9dad rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe579eb9c rtrs_cq_qp_destroy EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa964a6e7 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xc72048bd matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend @@ -14381,81 +14383,81 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xeb25f9c1 mux_control_deselect EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf7e5994d devm_mux_state_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x38a738e6 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x447bb523 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b2ee51c c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa9e4e074 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc1ee3980 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdd4b3355 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf0687d64 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfd20160d free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x21d74b98 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x292ec167 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7d07bda5 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb5d36247 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00f8ce7c of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x01829d72 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd23d5a0a devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf1e31f7e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x00533a66 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5dddd559 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x94222735 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa30062c6 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe3252664 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe569fb8c c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0622877b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x34edec08 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3c2d5c42 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5a44948c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0b9f7acd can_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 0x225bf30f can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x345881fe close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3a6da9b3 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ef9b9b2 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x44b6d673 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45612e9b can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47d41dcd can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4b59c8ea can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e0ee820 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e3faaae alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x536935a0 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ac73791 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f77fddc unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26757c10 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29dc8f66 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x329a4225 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3bb6d7ae can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3c1b422f alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e855a6b safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55d9a9da can_change_state EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x76594421 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ff6567d can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8accdda8 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8bd2853e can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97d89234 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99626fcb can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b44ac24 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa13b3c37 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xacdada83 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb569749e alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5e6f356 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbee49c3b alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3bc88cd open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcca82ff2 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd8fee4c1 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf191dbf can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe79c20fb can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x64caa751 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x654332c2 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c82123e can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6ca6d987 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x856c287f can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x870151f1 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x894429a3 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9c839439 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa335258b can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaeeea279 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xafe17f7c can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe552225 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbf4f82ab can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6b0444f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd79901de can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb8186b1 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc59b5ad alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc7acaba of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe086c963 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec2fe8ad alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeee4c46c alloc_canfd_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7ff804a can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfcae9023 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0041f0b2 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1316e249 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x178bef73 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x29f75f78 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x35582609 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3b4b89d9 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9f9de802 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa8cc9187 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x107e0d04 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfb74af0a can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x24f07308 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x328dc8c0 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3c1a50eb m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x66dd158e m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x79338d25 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd361dca7 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe41737d8 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf37270dc m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x007c706c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1ff9cc85 free_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x57ae0a50 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8e3792b1 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xca254709 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x103d7fea lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xf44cd212 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x9bc57b7f rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x057bd725 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x07787572 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1d169608 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3a27790f rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4a19cb58 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9e6725d7 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xafc5e124 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc145b40f rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xccc9c1e8 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd1559982 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd7406815 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf02b0b6d rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x515a2a94 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc18b6caf unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x1f5482f2 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x0d86f56a ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xdcbf1ca9 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2f591ccd rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4294980c rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6e5da53f rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x76249b7a rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7c60be3a rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x962ffe54 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa31eadba rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb992bafa rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbaade659 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc92eff0f rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe006cd8a rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf34fa3ff rtl8366_set_pvid EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x4c039eeb ax_NS8390_reinit EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1b10cb92 arc_emac_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd9ec3b53 arc_emac_remove @@ -14474,13 +14476,13 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x83fc0799 fun_serv_stop EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8b1e04d7 fun_res_destroy EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x97bb4fcf fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x378d874e i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x8e27eede i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6d9a59e8 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa8b1d814 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcdc92c73 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd78a5f7c ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf8d23e95 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x6b2c62bc i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xacf9ff4f i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x11e6d0cb ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x637549bf ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa8e33aba ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb954a2b1 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc6edb69c ice_get_qos_params EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0166032c mlx4_unicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x023655a4 mlx4_uar_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043bddb7 mlx4_srq_free @@ -14489,110 +14491,110 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ef1864 mlx4_db_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1110bccb __mlx4_replace_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117751b1 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x124291e4 mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12a8b3ae mlx4_qp_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d1b9b5 mlx4_mw_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19773434 mlx4_update_qp EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a1e332d mlx4_flow_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b07414d mlx4_buf_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa508d2 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x204717e6 mlx4_phys_to_slaves_pport_actv EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23644419 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25c8244b mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27c56d5b mlx4_get_devlink_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2888b8b5 mlx4_alloc_hwq_res EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2caa68d5 mlx4_unicast_promisc_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd8185b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cec04cc mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x302d8a27 mlx4_CLOSE_PORT EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a7cc28 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33298a29 mlx4_get_active_ports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34309e79 mlx4_port_map_set EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e7e527 mlx4_wol_read EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a825c63 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d1ba9c3 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f2b4c91 mlx4_get_counter_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400ccb2f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4198348a mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41bfc51e mlx4_unregister_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43613380 mlx4_mr_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cf5d5c mlx4_FLOW_STEERING_IB_UC_QP_RANGE EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x454d8da1 mlx4_SYNC_TPT EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b9a7fce mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e45e09a mlx4_set_vf_spoofchk EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5084d072 mlx4_srq_arm EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54f8e4c7 mlx4_bf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aaa2ccf mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c0c0d69 mlx4_get_vf_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c8384e7 mlx4_mr_hw_change_access EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4e55a6 mlx4_srq_lookup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d7ab701 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6200e84d mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679aa060 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ae305f0 mlx4_get_vf_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c6d62bc mlx4_flow_steer_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ca92ade mlx4_hw_rule_sz EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d080131 mlx4_find_cached_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6df41567 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x792cd98e mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7268e27e mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79c08197 mlx4_mw_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af63809 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b686402 __mlx4_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bcf9d01 mlx4_multicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c1ac417 mlx4_flow_steer_promisc_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c6cb8c9 mlx4_mr_rereg_mem_cleanup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e050ecd mlx4_INIT_PORT EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83d8926f mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86647c97 mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86a49818 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8938680b mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e98a584 mlx4_mr_hw_put_mpt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eb4ae40 mlx4_get_base_gid_ix EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f69d74d mlx4_unicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9155bfe0 mlx4_ACCESS_PTYS_REG EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9335b016 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95629299 mlx4_free_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95fff211 mlx4_xrcd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98dc907a mlx4_mw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b7e5541 mlx4_get_default_counter_index EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b916f3f mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d22405d mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd2a32e __mlx4_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd9844e mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e41c268 mlx4_get_vf_config EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f730cb1 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa2b6d1 mlx4_set_vf_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa01e5e3e mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa078242f mlx4_vf_smi_enabled EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1633ff3 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2ff37ff mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3dbd71e mlx4_get_slave_default_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa59f0fcf mlx4_uar_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e7953f mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6953fa4 mlx4_free_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8ef12f0 __mlx4_unregister_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9fbbf1b mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa17cfc9 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac3007ed mlx4_phys_to_slaves_pport_actv EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad5f796c mlx4_read_clock EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae6f39f5 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafd44ee4 mlx4_alloc_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5af3cb3 mlx4_bf_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5ec327a mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb851a18b mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb841589b mlx4_phys_to_slave_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2cb7f8 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe769fea mlx4_phys_to_slave_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee5095d mlx4_counter_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc233bdb8 mlx4_replace_zero_macs EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a244c5 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6c32e9f mlx4_get_active_ports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc83a3c97 mlx4_cq_resize EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc1b5ffc mlx4_flow_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccbde6ab mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc2dd97 mlx4_alloc_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce39e3d9 mlx4_map_sw_to_hw_steering_id EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3279bcb mlx4_get_base_qpn EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3ff2e28 mlx4_pd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a474d9 mlx4_free_hwq_res EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4dcb4bb mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd511921f mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6c1b6d4 mlx4_qp_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6d6e27b mlx4_cq_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda0d15a5 mlx4_multicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4897f4 mlx4_unregister_interface EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeb3a748 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfad1c90 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe08497bd mlx4_slave_convert_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0b475dd mlx4_mr_hw_get_mpt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d1b484 mlx4_mr_rereg_mem_write EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0f62baa mlx4_get_protocol_dev EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe26c1a1e mlx4_mr_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3f82d1f mlx4_multicast_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec34742e mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecad5fc2 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedfa64e9 mlx4_get_vf_config EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee3f9dc4 mlx4_qp_modify EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf08c0b0b mlx4_set_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf20b7e20 mlx4_qp_to_ready @@ -14602,75 +14604,75 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf61cf0e3 mlx4_unbond EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa124034 mlx4_buf_write_mtt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfad26d53 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dcabd47 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0efff396 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12ac66d9 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15efd80a mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x160fd5a3 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b43807 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x221de7be mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2287c38d mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a94e0ee mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e339896 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f319c0c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35360ac3 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x397ebc8e mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8f8e23 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d3e8ee8 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef145ee mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4075a782 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43218a04 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433ea05f mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d33062 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x454a9880 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d1b793c mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e38ba97 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5189fece mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53d0eb63 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e13b94 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x578e8c8d mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d4cd32 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a045737 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a6c3372 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x624ed0ae mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6543a9d6 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65d704e5 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673db164 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x678a7397 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f31f3e6 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x002b328e mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04fab824 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09df4e40 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a2d92d0 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d2516a mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27362f4f mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28933d84 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e67f4c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x296e5d04 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b341608 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf2ea7c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eef7420 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35ed4a0c mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ccbc59a mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d1c2da4 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d8576ed mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b476ee mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c2b9603 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dea6a47 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f73e41a mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x604229f4 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62a3dc7c mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64999d15 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68f13b8d mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b874175 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d5a3bc3 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dae673d mlx5_query_hca_vport_gid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7221baf4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7568a9fa mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a439c54 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf5054b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8126377b mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x818aeab6 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84395b27 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8554cd01 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f604ae7 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9307a3df mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d92412 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93e00428 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cfdfa89 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6463d7 mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec6f9ac mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a48b4f mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8959e60 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc2b7b4 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae21c606 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb31389f1 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a2765c mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb0466cc mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1e3aeb6 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6eadcc4 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72e55dec mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x735dddb1 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74c75d65 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7acda812 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd04cb5 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x816cd9d4 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82e05f28 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8464bd19 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85162c41 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86859d69 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d808a2f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9168098e mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x922479ba mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93fe3274 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a8343ff mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e07459f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa68d9504 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d8dc24 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b917b0 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa93e21a0 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabad29f8 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c86926 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3fa870a mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5eff480 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5ff2dfd mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8307a40 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac289bb mlx5_dm_sw_icm_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9beb3f mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb1c8c0 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf1b3f2d mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3dd52a2 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe58ffcaa mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9286e10 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaabadef mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfba29063 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc2bc020 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd53b55a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1605b16 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd226f4ef mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2baf31f mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdafbf983 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe05c26e3 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1774208 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1f97ccb mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef1f90fb mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf168f58a mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2024403 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf84207b2 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf857e113 mlx5_query_mac_address EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x3d02dd9a ks8851_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x44143ea5 ks8851_remove_common EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb269fcc4 ks8851_probe_common @@ -14678,55 +14680,55 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1a5f76f3 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a1f1d24 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29af6bd4 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c133ce6 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c3f0ee7 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f06a45b __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x378cb5e2 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a1a6c02 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ba2af20 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46de846d ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48ee6123 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x494c9d4b ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c22b8a6 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fe39951 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x510a038a ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5341d86c ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a7afa63 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aa5fddb ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6006fcb8 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x670e5524 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c29bd09 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x776df004 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f4d9fec ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81910ade ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95852bd1 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99279d38 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f9ad418 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac73cc78 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbac71d31 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5899783 ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd95fd5f ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7c7f78d ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4bb7dc9 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7b76141 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7d34fea ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8097abe ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee0e5615 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1d13105 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3426842 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x030af793 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x049386d2 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06590946 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21f84a4b ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x245d6227 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2acd4aa8 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30781a7a ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x308bde0d ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b16b796 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3cccfb86 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e4d49e9 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53ca3928 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64328c1d __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x651365db ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68d029fc ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71ec1a81 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72483a34 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ddfca79 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88a80424 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89090046 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8aa76016 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f942048 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x954ca709 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa274c7d3 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5a19354 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaed8644b ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd75b484 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdd2139e ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc186c0da ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc37f36f0 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd372e916 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd666d215 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe20e45c7 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0b97a3b ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf21e47e5 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf35d1a0d __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6b1695a ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8cc9a96 ocelot_cls_flower_destroy 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 0x04b9f329 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x50073bd3 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x35c4488b 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 0x72f57029 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x77671471 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x75e18d37 stmmac_init_tstamp_counter EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcecd7e09 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf9a1d1de stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbb11ca1d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd49f64ad stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf9312aa4 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfbbae9b2 stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x094597c1 stmmac_pltfr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1f31635f stmmac_probe_config_dt EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3a8165a1 stmmac_pltfr_pm_ops @@ -14736,17 +14738,17 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x54fc6901 w5100_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbb46a12f w5100_ops_priv EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xcfdda4a4 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x553250ea geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5e2bd1f6 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa2bc56df ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb64fcc82 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdc40cf3b ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe9083572 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0xa6df6f17 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x039b189a macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x232fe152 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3787db6d macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8880a665 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/geneve 0xff8b3ecf geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5e99b8f0 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6b9f52d1 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x747f8752 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7693e128 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf957a8a7 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0xa239a8bc macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5c6a56cc macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xce3b44ee macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd2d972d8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf9b03247 macvlan_common_newlink EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xbc2f79f8 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x4b706b42 mdio_mux_init EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit @@ -14835,15 +14837,15 @@ 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/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/tap 0x061ef745 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x3b26aa2f tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xa0118d0f tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xa228b3d9 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xb195aca4 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xd97b98c4 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xdb9ae5b1 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xecb51957 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xee8be958 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x09a95214 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x1b8f6781 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x23155ac5 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x3669c7e8 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x46fb667b tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x57d11d0d tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x66a63dde tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x6d684daa tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf708c572 tap_del_queues EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x016fe4d5 usbnet_generic_cdc_bind EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0210b15b usbnet_cdc_update_filter EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5a818612 usbnet_cdc_bind @@ -14862,7 +14864,7 @@ EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd0449b6f cdc_ncm_tx_fixup EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xecb81565 cdc_ncm_rx_verify_nth16 EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfb41d181 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xda9fcdd3 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x967efa7f rtl8152_get_version EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x02f9c424 rndis_status EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cbd66ef rndis_command EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6869283b generic_rndis_bind @@ -14903,11 +14905,11 @@ EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf3d7069e usbnet_write_cmd EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4723998 usbnet_pause_rx EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe25042b usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2de23ba8 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4256b4a5 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6fb58818 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xee2a5722 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x1c390707 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6f52d1bc vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc77b3b84 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xdb325895 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe26e1d3e vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xc5fffe10 libipw_rx_any EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c07e8fd il_prep_station EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cc4fb54 il_dealloc_bcast_stations EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a82908c il_remove_station @@ -14951,31 +14953,31 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd42cac13 lbtf_cmd_response_rx EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe3b2002a lbtf_bcn_sent EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf2780e67 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0130f442 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x025bc197 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1c9c59eb mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20ab8833 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x299b0ef9 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x33c6cfec mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e3def93 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f51eda7 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x453341a9 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x583109f5 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x64107a64 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6904568f mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7408a464 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94d1c186 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa49b2a97 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaf8370df mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5bdbfd7 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba347d38 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc9749d3 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcac3ba89 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03dbf668 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x04dd6dba _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x05286d20 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x149f8eef mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1965f235 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f0be7b9 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20b11896 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3cf553f0 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x48029ccc mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x53612624 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x568ab8f8 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c4485b1 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c9f03e6 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x721209e5 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x815aabd8 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x83b78589 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8910211d mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dcb3fcb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9592275a mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd2b03928 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd2cb5132 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd3614b37 mwifiex_dnld_fw EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe2bc4f5c mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7101362 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf04002a5 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf53b94f5 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe06b2287 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf64dda4d mwifiex_reinit_sw EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x049d71a5 mt76_set_tim EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09e1e05c mt76_txq_schedule_all EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates @@ -14995,7 +14997,6 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x467efcb2 mt76_sta_state EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4797361d mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b2ee34d __mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d6f0db6 mt76_sta_pre_rcu_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e49cee6 mt76_csa_check @@ -15068,6 +15069,7 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2db2fbb mt76_put_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6538c69 mt76_queues_read EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdcf315b __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff3a3a42 ____mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04dd8159 mt76_connac_mcu_sta_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10d3e662 mt76_connac2_mac_tx_rate_val EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1298a1ae mt76_connac_mcu_sta_update_hdr_trans @@ -15313,15 +15315,16 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf169974 mt76_write_mac_initvals EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe18c2f39 mt76x2_apply_gain_adj EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf16673f8 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3ee183f2 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1f1591a2 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x31a89515 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x37879f81 __mt7921_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x423020be mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x52428633 __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x55d5a3fd mt7921_stop EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6658e678 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x66eaaa54 mt7921_ops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c95aab8 mt7921_usb_sdio_tx_status_data EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8d51c4a4 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x921a49bd mt7921_mac_sta_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x94f3ec15 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x973cc7df mt7921_stop EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa4e84f69 mt7921_usb_sdio_tx_complete_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa531790e mt7921_rx_check EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa8cf414e mt7921_mac_init @@ -15331,26 +15334,25 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb9b47f2e mt7921_mcu_set_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbf07a97b mt7921_mcu_fw_pmctrl EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc4662cc0 mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcf2370c6 mt7921_mac_sta_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd4e7c8f0 mt7921_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe77ee591 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xef7ff22c mt7921_mac_sta_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf807e6a2 mt7921_mcu_drv_pmctrl EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf982e723 mt7921_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xffc909e7 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3b09371a host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x57dcb4c2 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8344cda0 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa849bd07 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc1c765b9 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe9393bfc host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf0814df4 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x26018e98 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2875980d qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0baad58d host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1fe32012 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x799d5f9b chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7efab88b host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb9ce22c4 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbc8bf243 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xedc10c71 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x11338e69 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 0x60925208 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x648d8989 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb955a20b qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe6d6fe30 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x33999de0 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x42201a47 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6035578b qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9f120e21 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc0a3b4e5 qtnf_trans_handle_rx_ctl_packet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0381028b rt2800_load_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0510153a rt2800_vco_calibration EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bbab273 rt2800_reset_tuner @@ -15519,41 +15521,41 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4d243db rtl8723_download_fw EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe09c4d72 rtl8723_phy_reload_adda_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4d7c635 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0081711e rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1829c893 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27399ef1 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ff12736 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26631354 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 0x29b96918 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c9b1042 rtl_set_tx_report EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x303c18ff read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x333dcf27 rtl_init_rx_config EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36eb0ce8 rtl_lps_leave EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3993bc0e rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46ef6252 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48ac9a1c rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49f48dee rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d1dcbe7 rtl_set_tx_report EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62d4d755 rtl_efuse_ops_init EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x687f7a64 rtl_fw_page_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7087c553 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x738cacec rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76a71f3e rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x779bb98c rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f8fe727 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x843002bc rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88c429f1 rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b2a207f rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dda8aae rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91f62ff2 rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7f82845 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa89b5851 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1ada6b4 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb55a3334 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ed9f48 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb75adef8 rtl_is_special_data EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf34df72 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd41b5ec7 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6cf8bd9 rtl_tx_ackqueue EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9810108 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefc47825 rtl_tx_ackqueue EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf20fa2f0 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5b6930e rtl_deinit_deferred_work 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 0x28d83a5a rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x29f452b5 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x30ce71b5 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x342ac2dd rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x49f7b71c rsi_91x_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe8278ffb rsi_read_pkt @@ -15866,53 +15868,53 @@ EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x325f39e3 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04febcb7 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11cb7bfe cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22fea942 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2607852f cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28e5aeb1 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x394798e4 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x411612f6 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x489ac7cf cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ab5f66f cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d5c15bc cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61e8d4a1 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6eac71d6 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71114e22 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a144546 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d4aa5f7 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02fcd32d cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09492d22 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23034052 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x267c0725 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c427ec8 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d36f269 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b5933d6 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44aa20af cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48afc68f cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b44c51b cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56f3335f cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58708162 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bc980ee cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6133c46e cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e6600a6 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7afdec04 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 0x7fe6d006 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8003b545 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85a7de0d cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8723af56 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e63de5a cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x938041df cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c843ad2 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa215d79a cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa349582d cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3b1ac83 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9ca79db cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae9a23ab cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1e2a657 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb171fb9 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc5e28af cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc479cb88 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc92d61e1 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc16604c cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd027d7ff cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd854616d cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf724238 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe38f08b6 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe66799d8 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe716325a cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeecff7e1 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8092c966 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x874681b7 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x884abb61 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ba042cb cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ef0878a cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x959d056b cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x982fbafb cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c2eecb1 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ea0c9af cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4fa0081 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6ed99d1 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6ee7b8f cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaeb0dfd7 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb724e8e8 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc18eaf1 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc139b4b2 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc35ff447 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4939f07 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc87f252f cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf5f60bf cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe02e41dd cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe08d2925 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0fe6a63 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe23b2a85 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe52a12bb cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb35ea43 cxgbi_device_find_by_netdev EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf06e020a cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf615a729 cxgbi_get_conn_stats EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfea71948 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffdae457 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffe00738 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb6e141c cxgbi_iscsi_init EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x408bc436 fcoe_link_speed_update EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48428684 fcoe_start_io EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x484ad671 fcoe_libfc_config @@ -15942,173 +15944,173 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfad9e7f4 iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfdf1aea3 iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xe11de78c fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x021b094a iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05fbf655 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07735250 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b9d014c iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09c7f89c iscsi_eh_device_reset EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x192011b3 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1979ab4d iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1be5bc90 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x221afbe8 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28190b4a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15f0d8e6 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x197b2434 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x283eee08 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28f3b589 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a4bcab9 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2aef33ab iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c23e757 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x347d6f20 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39728eb3 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39cdbe28 iscsi_host_add EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3da17eba iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f3b4173 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47789afc iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48000272 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4926cce4 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f8fd3cb iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5511f666 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x560d3ef2 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a911db7 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d801519 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62e1a53c iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a165a2a iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b739bb2 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x759eb7be iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a21097c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cdfad72 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e8f8fdb __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82f209db iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x846a9d41 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87fabab4 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3deed398 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4109f098 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43b06932 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x654dfb3f iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x693c1123 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6be4704e iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f3a5144 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fe7a129 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b76a263 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7dd6cafa iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e256cff __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e9b16d6 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x836e8981 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83839aea iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bf34b2f iscsi_session_teardown EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91baa6df iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9270ab73 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9afbdd8b iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e107747 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa73ea363 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7494f6f iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadf9d1e7 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1ce93b7 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1d393b4 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb880006f iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb881c098 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5e5ebe4 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce0987f9 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3f9aab9 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd424e00b iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd79bb666 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92afcd8b iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94c80c56 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x972a4116 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c816a08 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5d1af0b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac6c6cc6 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac8e081f iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5486c9a iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8e8aab4 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2ded5e6 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4319b98 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5c0c95f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc98c5098 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca339c0f iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb95a1b1 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1ca6e18 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd50fc816 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde8c0a51 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe15a38f5 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3829e39 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe853edf7 __iscsi_complete_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa46a657 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfac149f0 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbaeb3fd iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x067d5ea1 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15984ff7 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16abbed0 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17e72385 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x290b2d38 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x418143a5 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42821572 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47fc6549 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a6e8f1e iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x638d767b iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7804d1ca iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87bdbcd6 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4d85af3 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc84c491d iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdea46ca6 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf36b3b0f iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfdcd8371 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee95c374 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03507101 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0c36e40e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c2e70c9 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60a6748e iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x62fc12bd iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6beb7451 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x732103d0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9135816d iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9b4b902c iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4e42214 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd01501d9 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda72f935 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea857c45 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xecea2671 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf52b06d9 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9cbec8a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfbdfeb28 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01857fa2 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x025d9cbd sas_domain_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a733866 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1022f3ee sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x148c4819 sas_register_ha EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17c2cf12 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23413465 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x186a98cb sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1be37c47 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c34c47b sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1db994e9 smp_ata_check_ready_type EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e7fe625 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x360c4fb8 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36a1bd58 sas_abort_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52c4df00 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a85a725 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53a07516 sas_drain_work EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c6e294b sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65747e4b sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c7deade sas_lu_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74596901 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76e03f58 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b9d33b0 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d4d0615 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7dd81daa sas_execute_internal_abort_single EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e1b61a8 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8764395b sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87724c80 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8812b740 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x955c678d sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8119626a sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84dacec5 sas_notify_phy_event EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9871feb1 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x988d8eeb sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a0bfeca sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9981a7a3 sas_ssp_task_response EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa13edcbe sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafeca0ad sas_find_attached_phy_id EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5dde840 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0dc1be4 sas_ata_device_link_abort EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3019481 sas_slave_configure EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc7264262 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce79efc3 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6ad8e14 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc92660d5 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcde7db15 sas_lu_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7c873ae sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda608c93 sas_unregister_ha EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdef1118b sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8546b3c sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4432769 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4e7bfa8 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7be08cc sas_abort_task_set EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf08e27a0 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1eab4c8 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf83b2abe sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb860ea5 sas_drain_work EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x8d307f08 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x002338de iscsi_unregister_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06236597 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07810c2d __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0929b53b iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0971698b __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10cd1d5d iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a059887 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26524c77 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09a4d61a iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a4ce9c4 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bed4fc6 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0df73ea4 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12174819 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ba9fbf2 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ec500d4 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f4231db iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x203524d4 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23b39c35 __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32f35385 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38600561 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3937c2fe iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4591f9a1 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45d37c4c iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b3d3d6a iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a4f92e9 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41bbccbc iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x424414eb iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x477e8485 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47a1aaf2 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d78a30c 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 0x58d2022f __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b332928 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f778840 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x675e07e5 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64d288d7 iscsi_alloc_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e9c7e33 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f6d48d4 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70d5851a 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 0x7b57110e iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73dadbdd iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75f4f28e iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7645e31a iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7800ea73 iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82ab4a28 __tracepoint_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87395430 iscsi_block_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a49ae8c iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94642fd1 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x946ae54f iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96ba2f5f iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0eaeecb iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4d1dbe8 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6fdb356 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8defcfea iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ff66cf3 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c283bf5 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f55d2da iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fec0bf3 iscsi_recv_pdu EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3d7bed1 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb60e94bf iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb92f33b0 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf493cbc iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb21478c3 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2b62f96 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8163c3f iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb82a51cd iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb87de20c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9e5d8e1 iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbceb289a iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe52286c iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1d298c1 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc85a71fc __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca3c37d2 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc23ab17 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcde77f00 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4c7cf80 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4d6259c iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd72fe165 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdeeb5eac iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcda420b iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc44527ca iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7fcc17d iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf008a06 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf44fe98 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd28fd721 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd663aab7 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf128efb iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6ed1e21 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe95618a7 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf18ec569 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2cf40fa iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2e299f7 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6c0940d iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb41c257 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd894ea1 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe84e20c7 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7ea5063 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc41736f iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4b172e4c sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4c8ed1b2 sas_is_tlr_enabled EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x70cf8f8a sas_tlr_supported @@ -16326,10 +16328,14 @@ EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x76ae593d nvec_msg_free EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xbdc91864 nvec_register_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xfb9b2e69 nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x24cf02c0 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4dea228b target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x55e5c09b target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6c59c159 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x005d9f48 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x44fecf09 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x648da418 target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x808b4918 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8b7517a4 target_stop_cmd_counter +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 0xe1ccc433 target_submit EXPORT_SYMBOL_GPL drivers/tee/tee 0x002fcb83 tee_device_register EXPORT_SYMBOL_GPL drivers/tee/tee 0x04598512 tee_client_close_context EXPORT_SYMBOL_GPL drivers/tee/tee 0x0d7b89d6 tee_shm_alloc_kernel_buf @@ -16425,8 +16431,8 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x1b1425e9 uio_event_notify EXPORT_SYMBOL_GPL drivers/uio/uio 0x5cd6dbf8 __uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xe1f13ab5 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7c54f464 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9e4feede usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6826708e usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7c4c8f4b usbatm_usb_probe EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0203658e cdns_drd_gadget_on EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x022958bf cdns_resume EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0910bfcb cdns_init @@ -16743,21 +16749,21 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe5575734 ucsi_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfdb93576 ucsi_create EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfef20140 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0bac1827 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a512424 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56df5f77 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6668feb8 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70e0c53c usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7e7437c1 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9843fe87 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9c0d6622 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa5d22140 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xab7c7e5d usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc9dc49e usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8d89f782 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x976e4761 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9de0457f 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 0xd7fa6d1f usbip_event_happened EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xddab8d3a usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe4fc63e6 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe89a94ee usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xecbf45be dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfc2b1860 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xffc014f7 usbip_stop_eh EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x058df08d __vdpa_alloc_device EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x411f1005 vdpa_register_device @@ -16913,292 +16919,292 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe3188793 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xeecd036c dlm_posix_get -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3c4e8b51 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x44fcdda8 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c316dea lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x12bd3e68 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x226f9042 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22ed26d2 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3008f022 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6a7f2f0b nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8fe052e3 nlmclnt_done EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbff958b9 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xccab10ef nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd09acaf6 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5725e02 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeb29b988 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00e262cd nfs_show_devname EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02d349b2 nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x066ad3a5 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09268aba nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b04e58e nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0576384c nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a89b3f nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08acf038 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08f7467f nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09576ae0 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09d4bd49 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc4a0f3 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c9d8ab2 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x107ab4d1 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e0b8abf nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11683921 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a07c9e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x150a53f0 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18476a5f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19960022 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c0dd478 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cc344ab nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ebc65a1 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eff9c70 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f3dd026 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12ff8924 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13e12e6a nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15967150 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x168f749f nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a451d8c nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a53b1de nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1acda120 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1baefebd nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1baf3f3c nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c16dea4 nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23d82561 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24463ed7 nfs_drop_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27bbe1fc nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x285490df nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28a5ab25 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29598abc nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ad57152 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b071dcd nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b64c151 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2becb4cd alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c18ee3b nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c4bb1e3 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27c805e5 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x288b97d1 nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e75076f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f149fc4 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b36582 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dd5ddb4 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e08166e nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f171ac8 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f55f698 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x322998de nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33091388 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x349d5239 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b5a98e nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b91bf5 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36e33e5d nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3683d4a7 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38b2f9e1 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x392397ef nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a09ee59 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc86ff1 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3edf5fc8 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b9efc8f nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x400ee163 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41c9cd3e nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x423271e2 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x476cc7f6 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49574869 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4968109d nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a11e564 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a455458 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4add2f51 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x437c32cf nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47531f3c nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49892511 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b545e77 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f90b837 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5158f702 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4db83a36 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f3838e4 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x516d4d45 nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579eab24 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58354a5f nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52d2f8b5 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558c8ac8 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x575cd36d nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58552cdb nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c699807 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d1fd121 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d243987 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e984fd9 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f3b2586 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x600b5bad nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x602c44ba nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60a27829 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6231042e __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d3ac6b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6976f9c5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c3d7b9d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f303a80 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f879afc nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fbc2f8c nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fcc0b3f nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x633f202b nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x655a13a3 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66e099b4 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d3934e nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c21900a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d9fdeea nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f44fdda nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f959377 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x721aa8c9 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x725c2116 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7292639f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dccb34 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70555c8c __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7119e172 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x726fbf0c get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74319722 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762ca6e0 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x772b324e nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b33883f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c3f0f00 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e433e04 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8103028d nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x820c693a nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x823b4f2b nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a2b2c0 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74235061 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ca97fd nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76a5331f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77a4d37e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cea9f35 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d1d1d6a nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa048ff __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x818bf788 nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x870fda34 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893b8032 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a45b95c nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cbcc0f0 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cf568f9 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f164db5 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85601917 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x860434dd nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x882f5f8d nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8917f462 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b560ed8 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d04cc6a nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d558fd7 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fbc8a22 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x902527ed nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x904275d6 nfs_client_init_status 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 0x925d819b nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x931c4611 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9334a206 nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97578270 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x977aaa70 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9571cb8e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98552b45 nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e4be026 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f795867 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1c58eff nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c2c62a nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa33def8d nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4d6a9a3 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa590063e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8b607b3 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9abecdcc nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b330d26 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3b7810f nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6ddbc69 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7ebeb9a nfs_pgheader_init 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 0xabe79ddf nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac4e93bc nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad32326e nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb311e095 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb743fe58 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8ef5faf nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb068c5a nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba32257 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcaa1472 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd5d2b18 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd8d0eca nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbded6a06 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a725de nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2fabbf9 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc34a67c8 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac23b181 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadd697f8 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf02eb96 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf1572f0 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb138cd1a nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3e3825b nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb58c52d7 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7b10ff3 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7efe1a9 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba6086b7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc665f8a alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcac35e2 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf8cea99 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfa8489d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc04b0a82 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1ccd148 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc348bf12 nfs_sb_active EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc46f16bc nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6272067 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3dafbc7 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3f9c28e nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4810e93 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5266a2f nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5d32419 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc60646b2 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc70155d0 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f689fd nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca46dde8 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc16c05d nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf57333e __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2c06f4f __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd374299e nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd70ad535 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc835eba7 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc94136f4 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcac9402c nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbd06254 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd36358f nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdcf745c nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf57cf49 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1dc50fe nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd783d913 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd93307ec nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd977c6c8 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdab866d9 nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb0e72e5 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb7e843f nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf82e6cc nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0addd9d nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b69600 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3f22014 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe618b14a nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7bfcabf nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe926de60 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebf241db nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed85cf46 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf65c6e8b nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf791662b nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8832b50 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdec475bc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf2f3f50 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf3599d1 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf4a50cc nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0acb879 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5fd4884 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe61361bc nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec5518b7 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec61fd46 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed53463a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee74ae14 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0da06a6 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0daca66 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf44c9c45 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4606429 nfs_flock EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa8d7141 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa9c1250 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfda1bd40 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x85f4fef8 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00c4ab52 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x029d7cf5 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfda6ef05 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe9daf5d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xc4baf934 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x034d04e0 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x043d3535 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x044ff490 nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0790cf42 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x108b8a8f __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ab5c65e pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d4911f4 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ecaa434 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f771173 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1549a75c nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x155a554f __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19522fb4 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c2ec383 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d36d9c1 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24dc8979 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26443716 pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2df323dd __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a61b796 pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37e07e09 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3924efd6 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c46a2bc pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x416e543c nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4414ed46 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x352ce64e __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35b23929 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3688d3e1 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c857380 pnfs_generic_recover_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x462c458d pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4750a65e pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e245a50 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51d60fb7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45bce558 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45d4a3e0 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a81eb01 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ab97d94 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e59643a nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5204c2d3 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5242b9d5 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56fca1b4 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x538ecdc4 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x560a64b7 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58525fcb __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5885e075 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5983b5d6 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x590f3d79 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a725cf8 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5adff239 pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d10e485 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fccbc0a nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x627e417b pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f24b9fc nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x611b3d11 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61e1d6c8 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x641370dc nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x654c10b9 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66b483db __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a69766a pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dea81b9 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71a5b64a pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74ae9dda nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75bd62fd pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a4297b2 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x728bc9a9 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74f4be4e pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error 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 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f60c89d nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8021503f __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81bbc644 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81a9ba6d nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x888578f6 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8aee6b4b nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x890902cd pnfs_generic_search_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ece8af9 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8decdca6 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90d764cf nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x951f5a81 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bf34741 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c566fa5 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d8f68d3 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ffff83e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x964ecd13 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa1f29a nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ac96b93 __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5f4c812 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab0168d2 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac6e7c4f pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae164e07 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0eadbd8 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa66a3536 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7df0842 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf9c317c pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0fe6e14 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb10eb6b7 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42b5c78 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8d3de89 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7bfacbc nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb935e46c pnfs_write_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf53859 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbddca9eb nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf6d9030 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfb7dacf pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1e6186e nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3e968b0 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb66a184 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdd460e1 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1924517 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2e6f89b pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc405bbf3 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc52f0c08 pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca75e5e5 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca7c298d pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcae8df82 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc813edb5 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc89ce818 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd19f2d7 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd8795cb pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd00b71c6 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1f5ee21 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd261bd8f __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4cd96bd pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd513c11e nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd62bb243 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6d87369 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd96897c1 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9c0cdc2 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcc9ca71 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceee24cc nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfcfa6d3 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0de70a8 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7323acf __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7ce6942 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb940644 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb9af261 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd311d48 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddc16d72 pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1170c2f pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1517f48 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1aa2039 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5045242 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6a67e9c nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7bb6a4f __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea57e4d4 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1da42b0 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe33761a7 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4a17092 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe86818fb pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9eea86e nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeccce93f nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef987466 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf558f52d nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5da6060 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5f00ca3 nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf82239bd pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc42e5b3 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfca226e0 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd5b083b __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfeefdeb6 nfs4_delete_deviceid EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x058a686a opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5e75d78d locks_start_grace @@ -17207,38 +17213,38 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0881bc1e nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7ab92e8c nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfda41120 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xfa7f7ff9 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x7395b964 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1289d706 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x607d0f9f o2nm_node_put 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 0x85abc918 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x88ab75dd o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8e4ef595 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x99b0e589 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x76440ce1 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94fecf9a o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa671ffbd 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 0xaf14c44a o2nm_node_get 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 0xc2219d28 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xce0bb2db o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xea2d8a9b o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf162b01b 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 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2419992b dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x337b2e9d dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0b585696 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x19e87fa0 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3ffa1d50 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x84e8d1a1 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9222a2da dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd781ae5f dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xca5eafeb dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcda539d7 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf8a08035 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xde934c94 dlm_register_domain 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 @@ -17285,8 +17291,8 @@ 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 0x40db7c1d lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4937a8f4 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x051faa41 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xaa9a0ad5 lowpan_header_compress EXPORT_SYMBOL_GPL net/802/garp 0x0009ebcc garp_request_leave EXPORT_SYMBOL_GPL net/802/garp 0x96d68628 garp_unregister_application EXPORT_SYMBOL_GPL net/802/garp 0x9cf54851 garp_init_applicant @@ -17305,256 +17311,256 @@ EXPORT_SYMBOL_GPL net/9p/9pnet 0xcd00f666 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 0x40c9fa3f ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x93e1a4fa 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 0x0702b6af l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x09e60656 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x34b04a24 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6264259e l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6a95143b l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6af0ac08 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab1af119 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd1194a48 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf3f4d253 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x6c12f369 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b90020b br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x174fb03e br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24c3d865 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d1e6568 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x49d5aadb br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5db4c754 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61fbce95 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x653098cd br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6948f906 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x86179e7f br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9669ec7c br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5a08791 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa6008ec8 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xafb726ae br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3466407 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc02d77a1 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc2a10171 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2837c41 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xddc28654 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2e3d72d br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xea2dc068 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xea7c09fc br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf223a07d br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8cd47bd br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfdf28f19 br_mst_get_info +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0271e3ce l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1824121f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x29896ad0 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2e5c9ffb l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x43e793d9 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x79c12711 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9115363f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xadaa4269 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xae726966 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x1b0147bd hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0beae8bd br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1743ffa6 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x18968942 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1fd93a72 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2772dfb4 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28a50441 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4332764f br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4407eec8 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a1c0e24 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x60aedde0 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x62286b56 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6c1c0a53 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x79f96f53 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8d74926d br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x96e5d52d br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf879d44 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xafeacc18 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb703196d br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc53c419a br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc798aa2c br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8d8180e br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe9a80591 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb3bd9be br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf90ad7f4 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa1a10bd nf_br_ops EXPORT_SYMBOL_GPL net/core/failover 0x0ca4fbb1 failover_unregister EXPORT_SYMBOL_GPL net/core/failover 0x2ecbc1e5 failover_register EXPORT_SYMBOL_GPL net/core/failover 0x74b5f1c7 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x059052d5 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05a23c7b dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x122fb598 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x127179c5 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x16d16ed6 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x02a76db7 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e90a5dc dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1247c215 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x13cd02db dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x20bf6fd5 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21af0886 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2bca3d8a dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x31b52bd2 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d795faa dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ca179b0 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22aedbc7 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2728c348 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x272d735a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x281d8eb8 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x455b3e0f dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46945a6e dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x50dd8e4c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x582eb153 dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6255163e dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ca55eab dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x718208d1 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d30e718 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ebdbf37 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f36238d dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x83b55256 dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b5accdb inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87350eb6 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89a03ef3 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f1b7584 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0103afe dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0xa03a4174 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3ce26b0 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xac651b4e dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6205c1a dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd6f5aed dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc524aba1 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8a776eb dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdbdf53a dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd423d66b dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa45053eb dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7297089 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa72f2f61 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xabb1713d dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xadc58f19 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb02a6e91 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1e7c756 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc66ab1db dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcab00904 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe74cf5b9 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee0dfd79 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf32bfb8a dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf441d0bb dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf85e02ea dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0fc802ec dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1efcade0 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x288f2b5b dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x57accee1 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x765bd2ef dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe7642ad5 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdffaa21d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe982e292 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xecc2a7e5 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf36075ad dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4eb67a7 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4fc9bc3 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf60a7efa dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc3e7552 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x12cb1e2c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18cb8422 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3a546e33 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa8dc5ab3 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaeba6816 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdce36a36 dccp_v4_request_recv_sock EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x129e8084 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20b47c96 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d8648d3 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x317e4891 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39c8c5fe dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x163f96e6 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18260b92 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x274f8d49 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a9a4f73 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b4fe953 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32ef2cf6 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a08c231 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4278dd24 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4381014a dsa_switch_find EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49ca84b8 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x502820b1 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5dbbf2f0 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65b56499 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b43af8c dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81a61e7a dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83aa4468 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x927802fe dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4642860e dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4d17fed5 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c18c153 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c96baa2 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61ca804f dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6db276a5 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79ce5095 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a44b692 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ca27a4d dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9118c521 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9474f8c9 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99528a86 dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f149249 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa3f6d30e dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xafbff78a dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb792e37b dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd378aea dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa71396e dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad6bd390 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6e82bdf dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbbeab2c1 dsa_devlink_params_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc9f1fe56 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd65d8fd dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc950bb17 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce93c648 dsa_switch_suspend EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7a85ae9 dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde6a049d dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdf0c90f1 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0b16dde dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdf3fad02 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe83cec11 dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf166d64a dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4560903 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfbcb89ab dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf54b4dfe dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf99597fd dsa_tag_8021q_bridge_leave EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe8fbde5 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfeb3ddf8 dsa_8021q_xmit EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x06801880 ieee802154_hdr_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1cb930fd ieee802154_hdr_peek_addrs EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7516efc2 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7dbba2bf nl802154_scan_event EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb13d3c2b ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd4f9fecf nl802154_scan_event EXPORT_SYMBOL_GPL net/ife/ife 0x07705fcd 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 0xe7888e98 ife_tlv_meta_encode EXPORT_SYMBOL_GPL net/ife/ife 0xeee2a75b ife_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x5cea0908 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9fe58272 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb60a8edf esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x17cd32e1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x57f78cc7 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x14e46e97 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x32648a72 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x55922419 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c9124b7 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7aa4a66c inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9e3ad051 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa613d085 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc350f7c0 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf06fe7e0 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x2046d8df gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11d3dd1f ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1edd355c ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d397f5c ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4b4878d0 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d555984 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4e1d9e50 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x639ca6fc ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ad3512d __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a098a8d ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x87c458c0 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa4934eb ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb21617cb ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf2c67bb ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd9210813 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe4fdf274 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0ee00c9 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf3f0c2ab ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x320648c7 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xe7eedb33 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x75c67357 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe0280a39 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xa383abfb nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x053de2d2 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2c3e9392 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x962a3b2f nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa76c921e nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc30ca549 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc32f0aac nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd185586b nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe7ccad8c nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa38c6e53 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xcaf27399 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe3bc6512 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2cc76c61 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbc5944eb nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1f3c228b tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x68b5ae4f tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6c8fd6de tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8dfde417 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa617a372 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2e83cc90 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7676aa20 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9bac0bbf udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ed6fd22 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa26debc9 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb4a6889d udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe45f253b udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf1da7df2 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x285f554b esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa5e23f25 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfee3666a esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1c78d72d ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x791a8b5c ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb9b3e1c7 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x337727ad udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb9905262 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x307fa07d ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0a516661 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1876831a nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8c38a3d7 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xceed4d2b nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1392bdde nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x226e64b9 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d4d8207 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6cd659cf nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc7822ac8 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd48d07f7 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe6ef1570 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x60ab0ce5 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x19dccb56 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4b4a8449 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa761ad04 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8c6a6851 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf06be4f8 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x093f261a l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x179c73f6 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c3c5ead l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1cd5dd6e l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x313ad124 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e041ad2 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x454843f7 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x460e2ede l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x48969dd0 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62a8b033 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69f720a1 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6bd4a316 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e36b5ba l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x876e1453 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93b7c314 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa56fb307 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbc6758f1 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbedc3335 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc05ac6e3 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcae8cf0f l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec311bf9 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x3721e100 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x38786783 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x59bc9a0c esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x59e5cce2 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x423fc31d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf07ee0b3 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x162e8239 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x241a434e inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43384ae2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x48fa57fa inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ed6a919 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7f4420d6 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8b213a02 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc46cc421 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe0196835 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe4dc00e6 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x086dc0ee ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e4d7e8f __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1064ab26 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1dd2fb6a ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x39f9c7bf ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3de68f66 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53110ad7 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x59ae3077 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8fa2d6be ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x96cbe119 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa2dcc69c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa46860ff ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2d39e15 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe2532b8c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe5de1946 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee60af3d ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9349b53 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x83d380d8 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7eecf9d8 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1afb546b nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x93c2a188 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7b61a2bc nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3ebaeece nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5c9b8470 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e589c9e nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6fc48a60 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc86da59b nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xddb81835 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe90d53db nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x73698b93 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x154f2991 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x74d54038 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x849c7df8 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x47b99d4f nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8f7a2385 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x32460f52 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x54af607c tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8d9e1b11 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x94a76877 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbff155bc tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x182610ce udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2e6ea3ae udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x46636e71 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x95d859af udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97116165 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa1300bca udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdfb83344 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe2c029f2 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5a376e5d esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x94ff2e00 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf9cad10e esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x39766976 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4e5151ea ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7d2dc377 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0a6bc86d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6156ef8c udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4d55e8b0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x68251e07 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7e08ed54 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x94d5b637 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x1c1318ad nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07f1157e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x226ec125 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x83161dc6 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa0b3c9bb nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa64da171 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb0e6c3f3 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc2a5a48c nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xf40e2afa nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4e649c86 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xcdb70d9e nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd2694346 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x1e952c70 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x35a6b536 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0298e9db l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x05496386 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14bd5dbb l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b65c223 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ecd3f3c l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x271bf0fb l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b2ca25d l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x79d59977 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c5ce37f l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8fb18168 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91644ea7 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbad249cb l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc3de46cc l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcaf335e7 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1be97e0 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd86b6fc4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdaa386f1 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb97adba l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe302f303 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4361242 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed66d9e9 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xcd9bf49a l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x43744bd9 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xaf4d0503 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08171fd3 ieee80211_ave_rssi EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1230fc6b ieee80211_iterate_interfaces EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1239c779 ieee80211_vif_to_wdev @@ -17585,318 +17591,318 @@ EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed38eed4 ieee80211_set_active_links EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee3494e9 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x385d1210 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x85f3c9ae mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x08fa0b63 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2fbf77a0 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x466db78a mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa4c0591d mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa5e19122 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb63a485b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x01babdee ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e953516 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa7bc309f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc61f1507 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11908a01 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1fa4c7e7 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 0x32fd4d6c ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f0fe175 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x54005afb ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c60ea77 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43e22d86 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5673e5db ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5bb118e2 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x63e0b44b ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65f9bcef ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x665255bc ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fa0d2a2 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75e9aed1 ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7abd5a9d ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x841bc131 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x965f1e86 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x967dd32a ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9cc9b94f ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83bb68b7 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8898ac8f ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x966d8ae9 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97499854 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 0xa3a15e12 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9644b4a ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc03b3870 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc99462cf ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd58ab72c ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd89f6c72 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5d0f24f ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb2760ac ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6f39cb39 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8eae4eb4 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x95feb61f ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcc2c07dc register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xba1b723f ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1f2b8eb ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe90242cd ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf691196b ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfab3ee22 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3587f4c4 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x650cbe66 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8621a8ca ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb1a30dda ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x176bf657 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5aba9fda nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5e5e3705 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9aadbde1 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9d9dd9ea nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c741897 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9750fb7f nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb2d711d4 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc2430600 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd6ae5ce5 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0191a98b nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0223acac nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04938741 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbfcd492d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xce007592 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x003050f7 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07df48ba nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08f50304 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a8b1b43 nf_ct_netns_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cafebc5 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6594de nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11edd073 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14dfe49c nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b6ef2e0 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d5760d8 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ed86c99 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f9a78a6 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ff2b8d9 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23656ac7 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bf47fb9 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e5f00cc __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ea774b6 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188daec4 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20c7f8a7 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21ac3b71 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22fc513c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2637ab93 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27034970 nf_ct_seq_offset EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289eecdf nf_ct_helper_expectfn_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36c128e8 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x380ffc47 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x399880ab nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41e50ae5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33e91219 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x358876fa nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37a2726f nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38ddc0f8 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3be6b6fd nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x427c748c nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43c52d04 nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b9b93c4 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c643d73 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e8f4ee7 nf_ct_l4proto_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x541f8621 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54bb3e4a __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54bed76a nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54cc41c6 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x566a7076 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a84de7c nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e305c81 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61ea3c44 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e329bb nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66c019c9 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52835339 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5460d3ac nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54dd3a2a nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55b00c2f nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5738ddef nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x580257f1 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ca01472 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x632d86d7 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e2135a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x657fc41f nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65be70e8 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66357b31 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68e4d987 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bc29d28 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e119495 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7797c229 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7896d078 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ae2c87f nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c5cc70f nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c9c7eda nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77ec2d22 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7872648a nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d78a577 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d7ff861 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dbe2cc9 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x808e9391 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x852cdb2a nf_ct_gre_keymap_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cd3a601 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d76202b nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ddf0212 nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92a46bca nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x973ffc3e nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a1be7d6 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9de59b46 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1ca02a8 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa311cb23 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4011a9c __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa54662b4 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5adeaa2 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7226759 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa98c7767 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x970214aa nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9722b63e nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d6e1009 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9dc4c329 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fe3cc4a nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4ea5d7b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacad789e nf_ct_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb10c9259 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb26f1298 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafce7f20 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1a48075 nf_conntrack_count EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb697b4b6 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8140d1 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbad707cb nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe2d5472 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbed51fbc nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc10914d3 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba346e8a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbba71e98 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbef8af73 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc019b4e0 nf_nat_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1d44119 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3c93aff nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3cbb11b nf_ct_ecache_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaee0c78 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce06b393 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcee240e0 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd066b911 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd345ffb6 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5ea6652 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6e06c00 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcad5cb6e nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc7131ff __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0b4dafb nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd734a949 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8ef5dd2 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd974b2e9 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb41a555 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc7de6d0 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe07bfb85 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe23c2328 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe32598bd nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3e720cd nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8d3fb46 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeafa4e16 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb3f09a0 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5070bf6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5891de6 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9a6d0c7 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbcb8bd7 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc022c5e __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc10eadd nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddaa9e7d nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdec51406 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf7b2e47 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfde7220 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe03ca380 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2ea2aa3 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5447d34 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe88477ee nf_ct_helper_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xede1e7ac nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf10f532e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf299dbd4 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0bd1a7e nf_ct_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3a25d48 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf45d8989 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf48f14c9 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa91c40d nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfad63352 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd58f2ea nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd5aebe8 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf50abd9c nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7c396f2 nf_conn_pernet_ecache EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x8680500a nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x29418a3e nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xa1d1cf80 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe14ee12c nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf9c0c9a4 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2dd1f45b nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe90959fb nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0ba88762 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x56a9bd92 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7930541a nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb800eb68 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd1b0ad0e ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe4606e6d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7879bd4 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x0ded0d11 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x594db24c nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3b488f0e nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa36dba0c nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe4b9f3ce nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x13820207 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2171637f nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x236f1184 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x46ec146d flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x62d878f5 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c11a1c6 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x82712d9f nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9148c71f flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa85e26c8 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad888c90 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc56009a1 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc81ffe58 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcb54d1b5 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdf119845 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe729e2bf flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec227743 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xed063931 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ce2ded1 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c6b4a67 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bab12ba nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff82f4e1 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x3dbd2e40 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xaec5a37f nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x93a6e7fc nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8a75961a nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcdc4d6d3 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdd0973e0 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x079502b7 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3dfc35ca ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x738edb16 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x98fbb9a3 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9974974e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaaa5e65b ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe502f1bf ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf4fa4306 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x1b82e178 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7f25ffcd nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6b7fc748 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa793ac00 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe1136dc8 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0390525f nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x04a8ea18 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x070ebf9e nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a8a1a59 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x367826a9 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d878808 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40b77ba4 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x556deee4 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7f28a795 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xabb00ca3 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb931d7fc flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbd94feec nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdefa8daf nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdfebd2d8 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4444b00 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe5b70ad0 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf74b8560 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0cbe368e nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x12fe03f1 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x296aeefd nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2aa02e9f 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 0x4ad1ffb1 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x52d3313f nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x762b862e nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x81f217d6 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b854bd0 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9cdcdff5 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2d643ff nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb00dcf51 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb63695af nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbe3eef5d nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce6865ff nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd0d46282 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e38e8e7 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6e3594ce nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8abfce30 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92e12ad0 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b57e18c nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbc18b5b1 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd9925e2 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbde4fa06 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xca5e915b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4315680 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 0xef6ae184 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf150fd48 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf649850f nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1d0476da ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf33cf9f5 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf63d067e nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf63f6a51 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xffd20352 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0878d3c3 ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1fc16595 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x32e0a025 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x33251ec4 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x39d80ec8 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x53f4547f nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x58ccfa92 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x78499a45 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa556d68e synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc187edc2 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x404c4fef synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x42c397ad synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6cd74313 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6e714d1f nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6eaaaa2f synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x70bb105c nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x71ee8f25 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x721d1e50 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8d342c76 synproxy_recv_client_ack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdee68e8a synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x004428ea nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0157f896 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04a96536 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06fd3166 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08067947 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c442de0 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1065867a nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1203ceb5 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15cc3035 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28c5fdb6 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d9a2ec8 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2fef1a0b nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x324b95a9 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xed012fa8 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x088b034d nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b318fe8 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14192cd4 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2481cec7 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f0af753 nft_reg_track_update EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3278cb4b nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b76d22f nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c4a330d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e5961b9 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f91e6c9 nft_set_elem_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48cc0bef nft_chain_validate_hooks EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f3bf66e nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x604fe4e0 nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x696cfbb5 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e51b4cf nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7832bd2a nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c2ce02e nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83c68c19 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83fb5239 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a359215 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c8b54df nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a58760a nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3ea9ee2 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa823e956 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8e9b932 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d39d7a0 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x58e1c039 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a10334a nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x611f14c3 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6449dc83 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x647be1f4 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x687cfeb2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6de8efc3 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x772499bb nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x795d33f8 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c969403 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88f41fb7 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x89e3ab9b nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ff913e2 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa06328d3 nft_meta_inner_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb67e40ab nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb625e146 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6443664 nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6870178 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc91d7f76 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2cabfaf nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd594cbd2 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba462971 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc226a2b7 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3fcac06 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6b9cfb6 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6e2e3b1 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc707c526 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc85d2677 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc9461c8c nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xccf4a430 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd3730b6 nft_meta_get_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0072e30 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe33ae096 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3876687 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe42a1f66 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe68ac361 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7e9b353 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe81a4a8a nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe85dd8f8 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed3dd8e0 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee657d38 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xefe28b91 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf55c7ba5 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9eb9367 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0844c15f nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0e82b401 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x40528ea3 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4587b512 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x593e10d8 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed184f5c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1519dab nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe18d247 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff81f56b nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x164fc69e nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5e75fd58 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x666dd100 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8184f462 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x93df69d3 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbdf35905 nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf3cb5a4d nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2020b1ed nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3a68bf87 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa2eeecfa nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe895cb21 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfa500405 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3c728042 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7ccc3cc3 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xebf7fd21 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x6b885764 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7b588a7b nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2433901f nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x27444421 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44084ad2 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x68d8770b nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xce53288f nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x791b3bd9 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb0987a94 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x10d454bd nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6dd5385d nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7371a8a5 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa535c44e nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe62fea82 nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x36dc6515 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9aa0f06f nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x252d275b nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8b3674a7 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc69febcc nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0108a3f9 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03123a8a xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2317b491 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x246b6b0e xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c99b5bd xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xed7991d8 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15660e19 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ccf7444 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28446f91 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39645e65 xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x415e0b9d xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x42fcd409 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x45691c16 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49fc74ef xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a3a5736 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d82244f xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x59e01170 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x775a1844 xt_table_unlock 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 0x83503d4e xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x85b09d11 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93dee8a8 xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa596a0c2 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb74b7706 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbecb4275 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad3e2ecc xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbcdc7d04 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc08b7bec xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5137eb9 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4ec9031 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6d94874 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0fcb09f xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebf7568c xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfeef8fe xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf187c1f7 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd13ef5b xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8a7708e0 xt_rateest_put EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd4ce43ba xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3f8d9b8a nci_spi_read @@ -17907,441 +17913,441 @@ EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x67ce5430 nci_uart_set_config EXPORT_SYMBOL_GPL net/nsh/nsh 0xbdbb9809 nsh_pop EXPORT_SYMBOL_GPL net/nsh/nsh 0xf00b5305 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0a956a3e ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x13e74839 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x45bc3ea8 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6acedf28 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa530d738 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc90a806d __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/psample/psample 0x3838d3b4 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xacb2de6c psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xc4aba0e3 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xe2329808 psample_group_take -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x704f1ded qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x070bd9dd ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x23b70e3a ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6621d952 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7344464a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x89cd961f ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8d8710ca ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x17a80a58 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x6a53369c psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x6d1229f7 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x9da116aa psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0c049d64 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa156cb6c qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf36681ee qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc994934b qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd588a666 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x20d5c10d rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x27c01695 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0d3747e6 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x1225b8b0 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x132d6fa0 rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x331b3ca7 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3383e0e0 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2c16da47 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x2c925815 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x323c6345 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3af2bab7 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x3c199936 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x38255769 rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4993f948 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4ae43466 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x4b93d1a0 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4d6b3ba8 rds_conn_path_connect_if_down 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 0x69eda5c4 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x6c425c20 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x77b7cc99 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x7e484ba3 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x809ef3d9 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x8863ec4a rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xaf51774b rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb448dd2e rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xb9a77450 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc005d2dc rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc083f8c5 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x5e0a36c8 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6576178d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x65e29492 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x73e5a3bb rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x77a0cd28 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x8a532187 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8d992fe5 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8eacb9c7 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x8fddedea rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9b34ad4d rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa41b61cd rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xb133952c rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xb9bcd62d rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbf800775 rds_message_put EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc5b91e31 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc61de068 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc4e9286f rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc9708e82 rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xd00ca416 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xea7c5d54 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xd04e0268 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xd12074cc rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe89c7f60 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xed3053a9 rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf5b09fbd rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xf5de0623 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf787d571 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xf806be5f rds_connect_path_complete +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x078d3c5e pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x8d19bc45 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x9dd64202 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x7bdcb471 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x0b86e245 taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x387d86f4 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x216b9037 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x2b3eead3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x313e823a sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe63711ff sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x10956651 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x3bdc7bc1 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x3d443726 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x520bdfb3 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x671c3432 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x76afb71b smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7d8da674 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xda9706d6 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xe00efc98 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xfaca016c smcd_handle_irq -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x32b0371d gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x33db24b2 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4e3b4a22 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbee4b714 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf8f82e55 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x1b2c0c64 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x3138a190 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x4818369c smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xba0c54ae smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbc76245c smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbf6d66be smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xcd317029 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd3627e70 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xd992897f smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xf7daa922 smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1e1bd9e9 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2f0ffb46 svcauth_gss_flavor 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 0x651b34d4 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb3dc71d9 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 0xdcc274ad svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe4de4f66 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x022f6dc8 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02698b27 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031d8216 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04246f9e xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xffb36c18 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0097e3ca xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d7b6ef rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02323d72 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x036f0489 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03c93ff7 svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x063c2c58 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0653c48b sunrpc_cache_register_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c095f6 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a371e27 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06eeee49 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08160eed xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08b2caa5 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x099d1923 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a6fd575 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c846129 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e94f7fb xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fddf0e8 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10567aaf auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12bd81e2 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13eb84ae sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ff9711 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144c9153 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1472468f xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16c51076 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e947f6c rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f59de7f rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f9d4be5 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x101c7ee8 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10886821 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1296072e xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12c43e24 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ac1815 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1427ef29 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b83cea put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a20ba5 svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cc1b6b rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17eeaadf xprt_alloc_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ee4014 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19aaa196 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a51b7dd rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bffb682 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfcc2b2 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1827cc54 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a852e85 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b645ee0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bd0a6e9 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da873c7 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dc1d396 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ddaf157 xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea61508 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f17278d rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa1168f cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x210f257d svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23d2b432 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x241fc493 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b1196f xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2670db39 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28247b9a xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289fcb0f rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f4f972 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b3a657 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21fd68a9 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23179953 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x238aa29f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239a936c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24fae077 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2616273f xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285a87bc xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286547c2 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28a52d54 rpc_call_null EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294fc22a write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29dbfbf2 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0883f1 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1e4076 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac4772f rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7c3e9e xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c967321 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca19887 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cfcc8aa svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e76fbcc svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fce6f6e xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x318c8a57 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29bc0d3b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d0f475 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3165ee13 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3177bab7 rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d725db rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x332f018a rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351f1167 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35aabd40 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c91900 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x363be86f rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3727b60e xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343d6ec3 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3503fd30 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352d9881 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3615c81c svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3746290e sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378afd62 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a15f287 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b133058 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c21b017 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb8562c xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e74775d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea22875 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed51f65 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eeb1bb7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3911bc69 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0d177d xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b94687d auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c927b77 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d802869 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3db2bd1d xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3db4ea49 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e647cdc rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea58f8f xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f1bfa14 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f60bfcd xdr_shift_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fdfc727 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41681238 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4220a995 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42813c69 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x428d45a4 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c73aea read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4357ca74 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c022fa bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45a4fc2a svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4729dcdf _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47dc8de2 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ea1a0a rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a7d20c rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a27b4da sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a98561a xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac48954 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40b6b787 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4271cd6d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43798434 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cdb808 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b7fc52 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47bab6c2 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ca758b rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e3de3e auth_domain_lookup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b84afd5 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c095e89 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8a3d8d svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4df2cb61 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51774883 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ffe046b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521e7a85 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x528429bf sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e2a2e2 rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53652676 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53a213cc svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f0f9d4 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a0c049 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d5fcbd rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57fc6141 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53765fb7 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a495ce svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56af20f2 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x585faab0 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591f9fdb rpc_peeraddr2str EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b119eb3 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2cc4b7 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dac2fe1 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ebd7c9e svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f0d8971 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fe8c263 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff49340 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x608f5b05 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a64da51 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a8f1d26 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ab9a02f svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f672b97 xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641e9a88 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6543ff8c rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66f51794 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc1fbad rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c9d8419 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d8ebda7 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e2a043f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f980ee1 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70284a4a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c6b163 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x633a4534 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63795146 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6587c098 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6601b411 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ceb462 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x691c6cc3 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5a5339 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3301fb rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6de16246 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e55204a xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff112a7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7075e110 xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7207fa64 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72774c8f rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f50e98 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76262135 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768cf053 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x789e891e xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a94043c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ada9df7 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c268feb rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3a1e62 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c82e7cb rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cb9c7d7 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd16ae8 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x724bf1bf svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x725436f7 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e315a8 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ee15ff rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7378c9fe rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x739a5c32 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743ce869 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7445171b rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74535fb0 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745c5db1 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756bdd93 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7680cec7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f033e1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77badec7 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78a853ec svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78ee4e80 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7af97e3f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d72c32a rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81bd74cc rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82dd3890 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86900a66 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872359ec rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x880fcd43 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887f8ff9 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89086b97 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892f9a92 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8946b7d3 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89f1b392 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9bf8cd rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8abbafd2 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ade27da rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be2d361 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c384a32 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c62ca1a rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6eb0c7 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cffb1a8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db00fff xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec6cab2 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903b9344 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb7c580 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x807ee980 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x826a0c2f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8364f37c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851ce4b4 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x856ec8bc rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85ab13b2 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8692d407 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d8cc9a xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87258a1b rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8893b935 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a8b2da rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b022ddf xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b6045e8 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b7adbec svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c6aacae rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce477b0 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d091b26 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d83d0af xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e79d3fb rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e91489f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f04728e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900472d2 svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c8a1b0 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9565d328 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977884b2 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9833d27e xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98703304 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988df6c2 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98de3205 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99347668 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da50970 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df2e4c2 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df81e71 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa21ba2f8 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b92cf4 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44a7d68 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5310810 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6d329b9 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92209b7 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa99ecc42 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa265db7 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9bb08e rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab66a9b1 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad15dd90 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf200ee7 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9284d664 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x953a8c61 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x956327e1 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958d57cb xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959c33f4 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99103b84 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a890730 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9adecff7 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2f44c4 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b3e49fa xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c82d93c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd7291b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d6904f4 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e786948 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eab27e6 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f0c8de0 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a85dcc rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4aad094 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa61377c3 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa699bbc8 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa85a1c5a rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa89461c5 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9be85f3 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa32deff xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa93e6e7 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa75466 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaad7b592 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab4b8c63 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabf7f785 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae24de07 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf0be10b rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb087441d svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb12a14fb rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1bd4e72 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2126a8e xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43b9a8f xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4bd720e xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fa8592 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b7589c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb33d564d cache_unregister_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5248f9a rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb57e6270 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5a5b015 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f7845a svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7e11bcd cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb82d7e7a svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb90d3160 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb93610ba xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba31ffdc rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba541f07 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe208669 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf7e7e2c svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb688fda0 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb772d723 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9f4efcc csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbab901c8 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb653475 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc05bfab svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe4f6e75 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec18f11 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfeeaf4f 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 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1b54fb2 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc39d556e svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4131809 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d5794b unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6fffe36 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc87f6f8f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2487cbf rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc45dcfde rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc54786b4 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc58a93f7 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b3c6a6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75d6a80 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8771a03 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89d0b6c xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8a35d6d xprt_alloc_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9f27279 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbf9aff9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccae1032 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb5ba93 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb6cd26 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcda75563 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb4835b2 svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce7e6fe6 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceb98642 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf0291a5 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd03187d6 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0354202 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0479271 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2b57c3f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2f27f41 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd34b7170 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd43e690c xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a24412 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6065d3e xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88b6f0d rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f17b97 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fdf94c svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd923b07a rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd927845c rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d59285 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc452ac2 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc965a33 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd05f6b05 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b0e0d4 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b7dbf6 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2866f53 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd328df31 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3603269 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3ab9d0d xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41ba787 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4f0d414 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ec5b31 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c1e93a rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbb1a291 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca98ae3 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3d390f rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde4aeb44 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde96461f xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe050c984 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe102c362 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe33cd64f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddda2702 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01b79ae xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe064fe4f xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b76c32 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe116e7fd rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f312a3 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3cbcf21 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe437110d rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe493fe73 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53a516a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe57e8ed8 svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b995b6 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f8ba0c rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d50785 rpc_clnt_swap_deactivate 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 0xe9fdcc36 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea049714 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae33390 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec87d196 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9a07c0e xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e56df6 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0489ae rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9698ae svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb0606d svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe1c62b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcd8f77 xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeaa4899 xprt_get EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef2b9420 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1194710 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b8948c xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2409566 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf36795dd svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf39d8dfd rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a3ce1d rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa4b9e12 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba63cc7 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc6f6b15 svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd034c07 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd585fa5 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/tls/tls 0x8e8525a4 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xa5fbd52e tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb61094ff tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xbb16e5d5 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0e5e6f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf035df02 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4abce9b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d5362b svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57f9fbe rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5e5dd63 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ed5af9 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6121c33 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf629ad2a xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ac489f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe154d51 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeafc23b sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/tls/tls 0x62174388 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb7f5bdea tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xddfcca94 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xece97ae7 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0244093a virtio_transport_get_credit 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 0x112455c2 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1219ae56 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12823775 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13255bbf virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x157d93db virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c3c864e virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ee878d8 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28605b11 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28808584 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34bfa41c virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x352b453b virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43a14817 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x458c1ad7 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49b0ebb1 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e7c7ead virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a63a633 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x654750f5 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b284dba virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x911bfb46 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cd8c196 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f708451 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa05bf6ef virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaed5bd2a virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4996654 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x062a8077 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06682d60 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fe369f2 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15cd44d9 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x266e7c64 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26c367c3 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a303f26 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e0296d7 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ed36a35 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a829971 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52828679 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f076d8a virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63f4dc75 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65ec8b24 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x743658c4 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x842a054b virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x862edf22 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x864b01df virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ff9eb34 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94dc3089 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99c5e3cd virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c1da1dd virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9dae4477 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f72d7c5 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0b4eb7e virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1ee52b2 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6c0c2cc virtio_transport_stream_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 0xc83d16c1 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca0f46f6 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd19869cf virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd26bde1c virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd937e49a virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe552fb5a virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb9152c1 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee6a3dec virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfaf6d63c virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfec516a1 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d9ac6e4 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4540e9a virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7023e1f virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb1d4fd6 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb284b73 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe60f6a9b virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe83f1ae1 virtio_transport_deliver_tap_pkt EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x14d09bc2 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x157f1ce3 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19213791 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cfa3bd2 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x170bec24 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x291b46d7 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b1baf6a vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7961f7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36d4b713 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x382213e7 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3bbe7700 vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x47ba0134 vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e9bb37b vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f4d58bd vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x729d3868 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7779cc3b vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c346498 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8bffb140 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c47b8fc vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6ca2bc70 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e368956 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71e7dafa vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7bc93ac8 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a53aa18 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b476ef1 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9df1cc1b vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa51dac57 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa68d2c2 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaab4d34f vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb434268d vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc233006e vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca7f7bbf vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdea9e456 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb126c6a4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbca6f592 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc04a0f8a vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3610682 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd201bec0 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec0a1e90 vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf3ed1858 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf26c7c28 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf620b6ae vsock_core_get_transport EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0241101c cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07133031 cfg80211_vendor_cmd_reply EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09037af1 cfg80211_wext_siwmode EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x11d31f30 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1de653d2 cfg80211_vendor_cmd_get_sender EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2102e1c6 cfg80211_shutdown_all_interfaces EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x290bbb07 cfg80211_wext_siwfrag EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b00f7c8 cfg80211_wext_giwrange EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2bc56eb4 cfg80211_pmsr_complete EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x31dbdec6 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x323527af cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79d23b65 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97e9f8e5 cfg80211_wext_siwscan EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb01f8b7d cfg80211_wext_siwrts EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb270818a cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbb489a6 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc158c0b7 cfg80211_vendor_cmd_get_sender EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd19ce6fb cfg80211_pmsr_report EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd73d3daa cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf6285e63 cfg80211_wext_giwscan 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 @@ -18354,10 +18360,10 @@ 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 0x0349e0fa ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x65be3566 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x72c4111c ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb6054730 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0dd12ead ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2eddb45b ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5b37f3d1 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x95a9b6df 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/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock @@ -19106,11 +19112,10 @@ 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 0x0005988c __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x0008e1ef inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x000be03f ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0x0021294c component_del EXPORT_SYMBOL_GPL vmlinux 0x0024bbf2 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x003082db pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x00375b60 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x003f7f40 ulpi_viewport_access_ops EXPORT_SYMBOL_GPL vmlinux 0x00487271 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x004df394 mnt_want_write @@ -19122,25 +19127,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x005ccc3c mtd_device_parse_register EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy EXPORT_SYMBOL_GPL vmlinux 0x006560a4 rockchip_register_softrst_lut -EXPORT_SYMBOL_GPL vmlinux 0x00691fef __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x0082e6de devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x00884b0a mtd_panic_write EXPORT_SYMBOL_GPL vmlinux 0x008c4a5f snd_soc_bytes_info EXPORT_SYMBOL_GPL vmlinux 0x00a21c1e mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x00ac86c5 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x00af7b1b meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0x00b18bfb snd_soc_bytes_tlv_callback EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d67d32 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x00dd69cd iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x00e0bdea trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x011132bc iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x0125e60f device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x0132b315 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x013954bb ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0x014b88d5 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale EXPORT_SYMBOL_GPL vmlinux 0x01574cae snd_soc_jack_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0169f50a sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x0170956a show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x017804b7 of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x0178344f devl_trap_policers_register @@ -19154,7 +19158,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x01c41b45 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x01c5a722 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d18c37 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01ff7b4d bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x02000dd0 snd_ctl_disconnect_layer @@ -19164,20 +19167,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x022bb777 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise EXPORT_SYMBOL_GPL vmlinux 0x023c9000 power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0x023cc082 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x0243e09c bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x02487a8a vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x0252910c spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x025bb3ac pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02883f0d udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x028848cc ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x028fe7df snd_soc_jack_add_gpios EXPORT_SYMBOL_GPL vmlinux 0x0297f685 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02d03b00 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x02d438dc snd_soc_card_jack_new EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x02f037a0 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x02f03922 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x0305fcce inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x03067473 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup @@ -19186,16 +19191,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x033275f9 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x033b6524 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x03439c1e ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0344c569 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x03565b5e alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x036030b7 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x0367b6eb snd_soc_runtime_action EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x037b9d72 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x0392ab23 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x03950e43 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039e0f81 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x03a663c3 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x03c5d79e phy_modify_mmd @@ -19207,21 +19211,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x040a81a5 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0x040c6d68 mtd_block_isbad EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x04153548 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x041d4d0b regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x041e0c0f rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x041ec553 sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x042ab9aa imx_get_clk_hw_by_name EXPORT_SYMBOL_GPL vmlinux 0x04316b10 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x0434a78d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x043da36a security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x0448b7b0 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x0451afbc xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x04678e53 snd_dmaengine_pcm_refine_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x047a3f74 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x049447b3 device_register +EXPORT_SYMBOL_GPL vmlinux 0x049e9c9e ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x04a2c934 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x04a76de8 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return @@ -19237,9 +19240,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x04de6c2a of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps EXPORT_SYMBOL_GPL vmlinux 0x04e37fe4 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x04ec8df6 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051108f1 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x0527da83 strp_process EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update @@ -19254,6 +19259,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x057daefb irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x0586debf blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c91a8 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x0598c164 nand_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister @@ -19262,9 +19268,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x05bd22f4 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x05c3006b devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05ca5f6f ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x05d57e13 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x05db1998 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x05ecb33e crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x05eeedb3 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x05f7ea73 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0x0608d40c spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister @@ -19273,15 +19281,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x062c9ba8 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0640f8b6 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x063adcda ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0662658b espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x066449b1 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x0685f62c mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x068924a6 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x06929e89 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x0695bdc8 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x06a6508a mtd_lock_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06b78b69 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x06c51ec5 snd_card_rw_proc_new EXPORT_SYMBOL_GPL vmlinux 0x06c7f15a regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off @@ -19294,12 +19302,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x06eff8be regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x0700a9d2 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x0700fcf8 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x071991fb nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x071d9722 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x072afc2b devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x07432c71 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x0745e610 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x075079a9 snd_device_disconnect @@ -19309,18 +19317,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x07699524 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x0771e3b1 snd_soc_info_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x077d3d7a regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0788ed17 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x078f6e8e nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x0798ce1c of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x0799aaea sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x079a68d6 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x07a74349 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x07b1a8fc seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x07d7ec0e ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x07db23bf relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x07e8d0cd phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x07ed2c61 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x0807e7df fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x080832b4 rockchip_clk_init @@ -19340,7 +19348,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x08cead08 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x08d034b1 blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x08d199ad ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x08d11f2c mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x08d19174 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x08d4886a component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x08f555de mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x090158d1 snd_soc_component_compr_get_metadata @@ -19351,24 +19360,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x09324999 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x0940cf25 sdhci_setup_host EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x0963abca xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x0965dc0b vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x09663e10 dev_pm_disable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x096a633a edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x097b51aa regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x097d3db9 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x097d8b05 kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x099f8a83 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x09b02a4e espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x09b062a6 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x09b2ec30 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09ba76e7 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x09c19acc raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x09c475cb ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps EXPORT_SYMBOL_GPL vmlinux 0x0a123242 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x0a1657fb dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x0a252ea3 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0x0a3c0597 sdhci_dumpregs EXPORT_SYMBOL_GPL vmlinux 0x0a3c7806 pm_generic_freeze_late @@ -19378,29 +19389,34 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a851302 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x0a976323 del_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0x0aacc364 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0aacd0e4 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x0ac83f00 usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x0ae38aaf snd_soc_dapm_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x0aeb7ed8 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x0af39d0d netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x0af52381 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x0b1bbbf8 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0x0b2e31b8 irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0x0b2f1117 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b332079 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x0b340fd8 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x0b359cba kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0b46ebbf nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb EXPORT_SYMBOL_GPL vmlinux 0x0b682348 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status EXPORT_SYMBOL_GPL vmlinux 0x0b70b17f dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0x0b767876 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x0b7f34d5 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0b8d7606 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x0b8f42e7 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x0b9b0813 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x0bbe2447 devm_thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0x0bcc5caf irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0be698f9 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfce286 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x0c1e310a encrypt_blob @@ -19408,24 +19424,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c39380b attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x0c442451 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x0c4a0684 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x0c4f6988 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x0c65902b fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x0c677c87 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x0c85bdf7 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8c31fd tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x0ca4822f usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x0ca61f60 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x0cbe4c94 tps65217_reg_write EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0ce74469 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x0d013d56 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0ccab3e3 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x0ce01c59 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d0f5f83 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x0d0aed5b rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x0d1371f5 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x0d154260 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x0d2c603f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0d381e21 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x0d38b734 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL vmlinux 0x0d3ed32f skb_tstamp_tx 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 @@ -19434,8 +19454,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0x0d6f013d debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x0d9ce0b2 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0da74025 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x0dbb58fd __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x0dbd588b pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x0dc5d112 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x0dcd5d8c snd_soc_unregister_component_by_driver @@ -19444,12 +19462,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x0df32c7f ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0x0dfa3cc1 snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL vmlinux 0x0e01761a device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0e067d40 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x0e0ac777 snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e1234eb bio_poll EXPORT_SYMBOL_GPL vmlinux 0x0e141447 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x0e16cc16 tegra_bpmp_mrq_return EXPORT_SYMBOL_GPL vmlinux 0x0e17c3af iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0e1cd9bd ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0e255360 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure EXPORT_SYMBOL_GPL vmlinux 0x0e37bb63 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x0e40bc42 fb_deferred_io_release @@ -19459,11 +19479,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x0e751495 genphy_c45_pma_baset1_read_master_slave EXPORT_SYMBOL_GPL vmlinux 0x0e81dd6d devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e8b7807 ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x0e8d646f spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x0e979ca7 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x0e9a7a0e nand_soft_waitrdy EXPORT_SYMBOL_GPL vmlinux 0x0ea44dbf crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x0ec59a6e netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id EXPORT_SYMBOL_GPL vmlinux 0x0eda495b meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x0edc94ba snd_power_ref_and_wait @@ -19476,10 +19496,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x0f3663f6 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0f37ad3b xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x0f389aeb pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0x0f4aa4f6 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x0f4cb3ba ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x0f55cd14 gpmc_omap_onenand_set_timings EXPORT_SYMBOL_GPL vmlinux 0x0f5b0884 snd_soc_component_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x0f61641f sched_set_fifo_low @@ -19487,19 +19507,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x0f72c2f0 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name EXPORT_SYMBOL_GPL vmlinux 0x0f809cd7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x0f89dca8 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x0f8c8041 snd_soc_dapm_get_volsw EXPORT_SYMBOL_GPL vmlinux 0x0f95805d platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x0f9d815f kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x0f9f00db tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x0fcbfb46 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x0fcf89b9 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0x0fdabf88 snd_soc_unregister_component EXPORT_SYMBOL_GPL vmlinux 0x0fdb5a69 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0fe00dc7 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x0fe00e73 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x0ff9b948 mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x0ffd7381 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine EXPORT_SYMBOL_GPL vmlinux 0x100ec26f of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on @@ -19507,24 +19525,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x10287a32 usb_gen_phy_init EXPORT_SYMBOL_GPL vmlinux 0x103bd6c0 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x104cfe76 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x10523637 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0x10524578 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x105a2063 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x10817ced raw_abort EXPORT_SYMBOL_GPL vmlinux 0x1083f2b9 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x108a7a0c sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x10906859 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x1091534c pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x109941d4 pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x109b667d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x109ded57 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash EXPORT_SYMBOL_GPL vmlinux 0x10bb2423 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0x10c25205 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x10cb68af pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x10d1f375 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x10d56de2 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0x10d9ee96 badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10e298b9 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x10dc1c7f ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits @@ -19534,6 +19554,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1149c5f5 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x115d4676 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x11656e7c sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x1171c909 ZSTD_getErrorName EXPORT_SYMBOL_GPL vmlinux 0x11758b7e debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x11783d05 kobject_rename @@ -19548,7 +19569,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x11eb235e i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x11ee2acf compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x11f116c3 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x11f36439 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x11fab29a usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x120e6fcd devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier @@ -19557,46 +19577,44 @@ EXPORT_SYMBOL_GPL vmlinux 0x122ce299 sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0x1232db48 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12385394 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x12489dd4 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x12499158 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x124e6791 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x125736ac dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x1262ff85 of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0x126785b9 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x12703de8 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x1271aef8 cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x12722ae9 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x1272b4fd sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0x12777c10 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1277ef8a usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x1280e104 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x128fcb5e dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x129d775f __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x12a1faeb spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x12c7c574 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x12e37afa vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x13065628 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x1316ab62 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x131a2d2c device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x132858cf HUF_readStats_wksp EXPORT_SYMBOL_GPL vmlinux 0x1328c5dc of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x132d945f replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0x132dd4d0 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x1331831e snd_soc_dapm_new_dai_widgets EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk EXPORT_SYMBOL_GPL vmlinux 0x133c9219 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x134315f6 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x1342fb33 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x1343ae3c espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x1351e62f firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x1360704d irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x136221ee pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0x136ba3ee tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x136bd359 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13aa7d0b sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x13b37a46 folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x13c37a03 page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x13c6c769 mtk_clk_register_gates_with_dev @@ -19607,20 +19625,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc EXPORT_SYMBOL_GPL vmlinux 0x13f84fa5 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x13fdfe9c irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x1400113e ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x14005eb8 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x14095917 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x1411b444 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x14143b90 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x1431c468 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x143f878a mmput_async EXPORT_SYMBOL_GPL vmlinux 0x1443c19d handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x14447e26 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x144b33e2 srcu_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x145016ab gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x1456a5e0 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x145c2cc2 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x1469cade __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x147edcbb pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x148948bb snd_soc_dapm_kcontrol_widget @@ -19630,32 +19646,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x14accfb9 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x14b10255 musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x14b51b85 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x14ca358c pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x14cf8cc7 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x14d667d8 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x14db0747 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x14e4bfac ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x14f1903e ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x15042a49 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x150e0ce9 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x1513e7ca crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x151a75d0 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x152838ae tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x151cb335 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0x1528a20d led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x1530d825 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15412f67 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x15486f96 nand_select_target EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x1551bc4d subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x15546c12 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x1555797e md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x1560cede blk_crypto_intersect_capabilities EXPORT_SYMBOL_GPL vmlinux 0x1561a1eb of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x1567d256 devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0x15785920 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x1578e1ec rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x15829d6b ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x158676fe of_led_get EXPORT_SYMBOL_GPL vmlinux 0x158680e7 tty_port_install EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts @@ -19668,30 +19680,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x15c6ae5b pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x15df58da scmi_protocol_register EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15ef856c ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x1604e44f devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x160748a4 sdhci_cqe_irq EXPORT_SYMBOL_GPL vmlinux 0x160e4577 sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0x1614a11a pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x16198a10 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1616db2a ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x162abdc5 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x16444bb3 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x164bb6ff __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x166504a3 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16746a4f ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0x1676213c pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x167affc9 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x1680a424 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169595ad xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x16a0727e dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x16a8b945 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x16acac02 devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x16bb0d3c pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x16c6f863 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x16d25e10 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x16d85066 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness @@ -19699,35 +19708,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x170505a1 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x170a80e2 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x172f494a switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0x173a8d4b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x173b5812 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x1742ccb3 nanddev_bbt_set_block_status EXPORT_SYMBOL_GPL vmlinux 0x17460a28 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x174a4e67 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174fb5d7 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x1755868c __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x175dd808 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1760a1e0 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x17727d43 devm_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x177adaf7 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x17888fdf snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x1795df76 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x179648f7 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x179af37b snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL vmlinux 0x17cba086 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x17ce1a80 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x17daf812 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x17db4192 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x17e4fc96 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x17f9d57b regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x17fbdd6d mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1811404f __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x18230753 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x182800b6 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x182fba65 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x183575d2 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x183de446 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence @@ -19738,7 +19741,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x1870a835 mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x18915c7e phy_init EXPORT_SYMBOL_GPL vmlinux 0x18a0d824 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x18b3792b tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x18b54109 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x18c1556c l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x18c499af nanddev_mtd_max_bad_blocks EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale @@ -19746,7 +19751,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x1905fb34 snd_soc_component_init_regmap EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x19119632 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x191757ed sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x19221289 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x1924753f usb_reset_configuration @@ -19756,16 +19760,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0x194e4652 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x194e9dc5 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x19505bae ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x1958d7eb exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x195af478 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x195ba002 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x195f6513 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x1973da8d ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0x1987fce3 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19942d09 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x1999303e wwan_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x199fdda0 snd_soc_set_ac97_ops_of_reset EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ba3ecb dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x19bbdc69 devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str @@ -19773,40 +19777,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19e946d1 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f988ac inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1a059bc7 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x1a05c249 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a10d9f4 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a14aafa init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x1a24740b ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a290bcc ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x1a2c548a rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x1a2c751b get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x1a2db3fa bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x1a32a198 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1a41e166 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a4815d5 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x1a51c36c pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0x1a5a5c3c acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x1a5a844a ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a5c3d75 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x1a66e5a6 nanddev_bbt_update EXPORT_SYMBOL_GPL vmlinux 0x1a6a69b1 snd_soc_dapm_init EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie EXPORT_SYMBOL_GPL vmlinux 0x1a747cd7 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x1a7edb66 power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x1a8c613a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x1a8ce186 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x1a9d425a tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x1aa114d2 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x1aac130f debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x1aaf78d9 bus_register EXPORT_SYMBOL_GPL vmlinux 0x1aaf9efb gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x1ac2d072 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1ac7eeb7 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x1ad4668d serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x1ad94eed regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1adccf97 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1aeb2c08 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x1aec4f2e find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1afc7ed5 usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full @@ -19816,9 +19821,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x1b2cf901 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x1b4e41e0 pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0x1b559507 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x1b578640 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x1b640260 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x1b6dc001 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8860d7 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x1b8fb502 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x1b91291a usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x1b91e7a1 dev_pm_opp_free_cpufreq_table @@ -19831,20 +19838,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bca2592 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x1be742dd skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x1bda60d4 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x1beb7731 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x1bf0e03a soc_device_match EXPORT_SYMBOL_GPL vmlinux 0x1bf5ee07 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x1bfde901 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x1c009840 usb_phy_generic_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c112719 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x1c1227a5 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x1c16f46b fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c222a7b ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x1c2724e5 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x1c2b2d9b i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x1c2c8cdc snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL vmlinux 0x1c2e1f3f nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1c37ecf3 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x1c3b416a mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c4157b9 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x1c4e872d spi_bus_lock @@ -19855,10 +19864,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c7be59c __traceiter_map EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c88a69b perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x1c8e9859 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x1c983eaf perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x1c8aa5f4 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x1c9e477b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x1cb337d0 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off EXPORT_SYMBOL_GPL vmlinux 0x1cd238f1 usb_gadget_frame_number EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral @@ -19873,17 +19881,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 EXPORT_SYMBOL_GPL vmlinux 0x1d2c9707 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1d369447 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d37c0d7 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d41f137 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x1d563e4d kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x1d583dfc fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x1d62ed3b blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0x1d639a4a crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d682318 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x1d6a3b14 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL vmlinux 0x1d7309ea __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x1d7dad98 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x1d8168c9 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x1d928301 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle EXPORT_SYMBOL_GPL vmlinux 0x1d9d050b hisi_clk_alloc @@ -19900,11 +19907,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e03cd19 regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e0d1d4c mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x1e0d6df3 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x1e143713 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id EXPORT_SYMBOL_GPL vmlinux 0x1e3c90ba amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x1e47c98d validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x1e48ef2e serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x1e4b1309 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x1e4ea64f securityfs_create_file @@ -19912,8 +19919,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e503035 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print EXPORT_SYMBOL_GPL vmlinux 0x1e564449 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x1e59fb00 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7c8bb4 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e99b240 serial8250_get_port @@ -19928,27 +19935,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x1eeb0687 nand_ecc_cleanup_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0x1eeed0cb musb_set_host EXPORT_SYMBOL_GPL vmlinux 0x1ef5a420 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f122458 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x1f203989 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0x1f2b7749 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x1f2c55c4 follow_pte EXPORT_SYMBOL_GPL vmlinux 0x1f2ebaf6 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x1f32521d sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3f05d7 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f554533 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv EXPORT_SYMBOL_GPL vmlinux 0x1f5e5538 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0x1f673910 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x1f70004a perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f95c7df pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x1f9cdd7b ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x1fce36d0 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x1fd7364c phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fefd391 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x200da412 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x200efddf mt_prev @@ -19968,20 +19976,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x2041afbd regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x20448ed1 sdhci_set_data_timeout_irq EXPORT_SYMBOL_GPL vmlinux 0x20455695 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x2066a089 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x206df289 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x207e6e82 nanddev_bbt_get_block_status EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x208df878 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x20a02b04 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x20a78303 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x20b356bb netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x20b8ea95 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0x20bc3963 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x20c3fcbf tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x20d2235a clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x20dab912 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x20dfbe56 snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x20e34ef1 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x20edb1ce dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x20faa525 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x20fc6174 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x2102819f vring_create_virtqueue @@ -19993,29 +20000,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x21563e68 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2173525f sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x217a8435 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x217b3639 iov_iter_get_pages_alloc EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x219b28b5 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x21884ac0 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x218e1eac sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x219fe005 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dcc263 ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x21ddb98a devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x21e53884 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x21fd8ed1 mtk_clk_register_gates EXPORT_SYMBOL_GPL vmlinux 0x22030b15 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x22091f16 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x2217199c phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x22126896 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x22199e7c wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x221fae42 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x22267368 sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x2242358f securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x2246cd50 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x22522751 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x225d5777 vchan_init EXPORT_SYMBOL_GPL vmlinux 0x225edbbf rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x227aed88 dev_pm_opp_is_turbo @@ -20033,22 +20042,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x22f6e036 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x22f97de9 irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x22fa4832 dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x230465a9 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x230a1644 sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0x2314dbf9 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x2318d675 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x2319b5a9 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x231b2b93 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x2320c0ad snd_soc_component_read_field -EXPORT_SYMBOL_GPL vmlinux 0x23282a33 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x233163a8 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x23368f2c pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x2337d9c8 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x233ec18b ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put EXPORT_SYMBOL_GPL vmlinux 0x2351fac3 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x2360c28e sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x23622741 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x23788949 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x23963a37 __bio_add_page @@ -20056,18 +20064,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x2397dc4a rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x239afdd4 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x23a006a1 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x23a0a5b8 iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x23a1133d of_console_check EXPORT_SYMBOL_GPL vmlinux 0x23a69bb8 devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0x23ac6fef xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x23af6bc5 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x23bd54a7 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x23c6a789 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0x23cdbcfa dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x23d3f859 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x23ea5510 snd_soc_add_dai_controls EXPORT_SYMBOL_GPL vmlinux 0x23fa6e7a gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x240c967f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x240e2e87 ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x2427ec77 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x242e1284 device_property_read_u32_array @@ -20080,9 +20090,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x247209f8 component_compare_of EXPORT_SYMBOL_GPL vmlinux 0x247b8890 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x2480944e gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0x248098a9 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x24885eac __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x248b5af2 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x24813e42 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x24a810ee gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock @@ -20093,14 +20101,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x24dba78f vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x24e03d48 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eccdcf fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister EXPORT_SYMBOL_GPL vmlinux 0x2501173d of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x25049986 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x250b8b5b mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0x250d5a9c sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x25122455 devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x251244e6 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x251db88e pinmux_generic_get_function EXPORT_SYMBOL_GPL vmlinux 0x252b678a spi_bus_type @@ -20113,8 +20120,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x255801e2 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x2569e895 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x257afc5b fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x2585bf82 ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25a37e9d skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x25b15f5d nand_erase_op EXPORT_SYMBOL_GPL vmlinux 0x25b7a173 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data @@ -20123,15 +20130,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x25c9bec4 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0x25d5b1fb __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x25da2169 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x25e36a2b fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x25ef17cf __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x25efe83b ahci_platform_find_clk -EXPORT_SYMBOL_GPL vmlinux 0x25ffe454 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2602cca1 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x2611217c rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0x261252c6 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2615d733 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x2621b064 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x26264af6 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x26378e6b mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2637f9f3 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x2646d036 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x26549da5 power_supply_property_is_writeable @@ -20150,50 +20157,46 @@ EXPORT_SYMBOL_GPL vmlinux 0x269b013f sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x26a62f5d crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26aff615 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x26b0f5d6 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x26b0fee7 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x26b7b392 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x26bc8492 nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x26bde294 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d0058a fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x26d5aa47 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x271514c8 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x26ee2456 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x27046317 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x270ab393 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x2719f8eb msi_domain_get_virq EXPORT_SYMBOL_GPL vmlinux 0x271da12d wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb EXPORT_SYMBOL_GPL vmlinux 0x273d95f5 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x27411e56 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x274d9ef1 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x275b81cc component_release_of EXPORT_SYMBOL_GPL vmlinux 0x27619200 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x276ed42c icc_get EXPORT_SYMBOL_GPL vmlinux 0x279a42d4 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27a03d09 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x27a082c0 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x27aa9a75 snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL vmlinux 0x27addba9 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x27b8f0c2 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x27cd5d0c i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0x27ce2b93 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280077b1 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x280091ed skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x2802f0a6 snd_soc_of_get_dai_link_cpus EXPORT_SYMBOL_GPL vmlinux 0x280433c2 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x280c68cb subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0x28110000 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x281bbed1 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x282ad03c tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28392338 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x283eec18 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x285d09c3 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2865bc9c devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x286a6772 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain EXPORT_SYMBOL_GPL vmlinux 0x28736010 __sdhci_add_host EXPORT_SYMBOL_GPL vmlinux 0x2874aca0 mtk_hw_get_value @@ -20201,21 +20204,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x288832b0 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x28892bf0 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x28939316 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x28939cb7 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x289b3481 mtk_devm_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0x289d96f0 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x28a246b5 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x28a35beb crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0x28a84f89 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28ab68bd ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x28b13448 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x28ba1767 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x28d63b6c ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x28d7f7ff __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x28d8975a udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x28e4c0c3 ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x28e5c822 mas_store EXPORT_SYMBOL_GPL vmlinux 0x28f1d27f dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x28f59ea5 devm_register_restart_handler @@ -20223,7 +20221,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x28f8b0c5 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x29017e63 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x29029872 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x2904847b espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x2904b138 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0x290d1f2f irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp @@ -20231,6 +20228,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x29290130 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x29406fbc __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x294222ec __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2943b532 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x29660000 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x296b0494 generic_handle_domain_irq @@ -20239,8 +20237,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x296d23ca virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x2970b3fb spi_async EXPORT_SYMBOL_GPL vmlinux 0x29853239 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x29bd52f2 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x29e438f1 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x29f361ca __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x29f5a44f extcon_set_property_sync @@ -20251,6 +20251,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a53ab8a rtc_read_alarm 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 0x2a8271dd skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x2a95aff7 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto @@ -20259,18 +20260,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x2acf60cb regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x2ae1e475 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0x2aed633a rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2aed6425 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x2affa497 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x2b051b88 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x2b0d73ed ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x2b1a8f06 fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x2b1b03de cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x2b23b746 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x2b37845a perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x2b3fd8df devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x2b42c34e devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b68e3c7 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x2b74c7e3 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x2b750cbe gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b7dc737 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x2b86774f gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x2b8c0d3a regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x2b8d1303 regulator_bulk_unregister_supply_alias @@ -20278,12 +20281,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b992bd3 device_move EXPORT_SYMBOL_GPL vmlinux 0x2bc569cc bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdc00c6 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5f6e inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x2be5894d relay_flush EXPORT_SYMBOL_GPL vmlinux 0x2c000275 mtk_clk_gate_ops_no_setclr EXPORT_SYMBOL_GPL vmlinux 0x2c04b2a2 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x2c088d75 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2c0ce534 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x2c17480f dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0x2c205aa4 sdhci_enable_v4_mode EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied @@ -20293,8 +20299,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c37ba83 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x2c3884e5 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x2c4158a1 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x2c43c719 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x2c452071 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x2c4a9439 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c6989b0 synth_event_trace_array @@ -20305,14 +20311,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c9987c1 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x2ca0f282 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x2ca314c6 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x2cb78e53 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2cb5d757 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x2ccc7c7c devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x2ce48d8f __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x2ce8ee03 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2cec7457 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x2d123572 devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d12e7c3 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2cf3d388 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x2cf61bd3 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d26db40 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current @@ -20325,7 +20331,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2d495744 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0x2d50ab11 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x2d558757 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x2d5bbf47 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access EXPORT_SYMBOL_GPL vmlinux 0x2d677dc5 rio_release_dma @@ -20338,14 +20343,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x2d9fbe5e get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x2da22c5c devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x2da90a41 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL vmlinux 0x2dab6387 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x2dc26b92 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x2dd22a73 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x2dddd5a7 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x2dddfd18 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2de4c86d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x2de96e46 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e0af5fb crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x2e0ba105 dma_alloc_pages @@ -20354,6 +20358,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2e1363bd of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x2e1ee4ad wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2e4912 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x2e2e7a5a edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x2e2f8a19 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x2e32b4e1 vp_legacy_get_queue_size @@ -20365,15 +20370,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x2e70f5c3 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x2e72ed4e ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x2e8bb33e irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x2e935137 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x2e986f5e mtd_ooblayout_get_databytes EXPORT_SYMBOL_GPL vmlinux 0x2ea35815 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x2ea43378 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x2eb77ec4 rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec049c9 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x2ec92a63 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x2ed944d2 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x2ed97449 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0x2ef359d4 vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x2ef77a28 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x2ef9f464 ip6_input EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f16f226 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx @@ -20382,11 +20389,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x2f3e4dd6 devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x2f476dff da903x_write EXPORT_SYMBOL_GPL vmlinux 0x2f5948a4 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x2f5a5739 ahci_platform_deassert_rsts EXPORT_SYMBOL_GPL vmlinux 0x2f5b5e20 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2f6074d7 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f785eac find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2f92742a get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x2f759c52 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x2f8cda2e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x2f8e0cf1 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x2f9b7b0f pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x2fa9e8fb device_create EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init @@ -20396,13 +20405,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj EXPORT_SYMBOL_GPL vmlinux 0x2fc61f35 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x2fd310c7 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x2fdba969 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2fd95903 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x2fe86273 virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x2ffa86ba crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x30045932 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource EXPORT_SYMBOL_GPL vmlinux 0x301aa5c3 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x301f5c62 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x3027dada sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x302db013 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x302dddc4 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x305a92a9 __virtio_unbreak_device @@ -20413,12 +20423,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x306bd0b2 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x306f3aca balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x3077ae30 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x307ad3d3 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x3090e83f bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x30892caa ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x30a05d9b usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30b52a6d cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x30bca9a2 cpts_create EXPORT_SYMBOL_GPL vmlinux 0x30bff44e palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x30d6da55 usb_poison_urb @@ -20430,23 +20438,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x310703ac vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x310968e5 snd_soc_bytes_info_ext EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x310d0110 ahci_handle_port_intr EXPORT_SYMBOL_GPL vmlinux 0x311975b8 sdhci_request EXPORT_SYMBOL_GPL vmlinux 0x311a6c3e __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x311c9f01 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x312177e7 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x31237a94 mtd_get_user_prot_info EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x312b87be gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x31362dba perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x313d4d75 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single EXPORT_SYMBOL_GPL vmlinux 0x3146e3a7 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x3148c0f1 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x314eeb85 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x31735280 balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x31757e20 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x31772502 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x3179f0db dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x3184d517 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x318aa668 sdhci_get_cd_nogpio EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook @@ -20457,8 +20464,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31cd02b8 mas_walk EXPORT_SYMBOL_GPL vmlinux 0x31d40c50 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x31e32e30 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x31ea9cdd misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x31fae089 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x3207a583 tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x320f2cc6 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0x321411f3 dm_audit_log_ti @@ -20467,14 +20474,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x3225e8cb devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x3241146c sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x32496be0 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x324a0368 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x324ec2c3 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x32645cce sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x32773812 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x327d1245 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x327f80b1 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0x328d4913 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x328f2a92 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x328fae54 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x32949f86 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x32992614 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled @@ -20482,28 +20492,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x32c7097e bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x32c94442 check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x32ccc5cd dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x32d370d2 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x32d528ad nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x32dcb114 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x32e7c0d6 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x32ee565d ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x32f0bee3 icc_put EXPORT_SYMBOL_GPL vmlinux 0x32f7107a pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x32fc1290 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x3317ef2f bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x331b18a8 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3326ae88 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x3348f088 snd_soc_cnew EXPORT_SYMBOL_GPL vmlinux 0x334aa55d __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x334dd40a ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x3352b8b4 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x33618f5e pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x336c5e30 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x33703232 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x3397ec0b dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x33b250bf irq_gc_noop EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x33c03f9b sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x33e33e17 crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register @@ -20521,16 +20531,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344bd03b devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345dec61 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x345e7c0b devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x346cdce4 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x3482c9d2 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x348af8d7 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x349d2e73 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34a9ccf8 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34b4aed7 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0x34bbb01c sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x34cd0671 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x34d5a216 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x34dad089 start_poll_synchronize_srcu @@ -20544,61 +20552,54 @@ EXPORT_SYMBOL_GPL vmlinux 0x3514ddfd blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x3526dab7 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x3528e6b5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x352a1f86 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35420630 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x3556b79b io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0x355fc4d8 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table EXPORT_SYMBOL_GPL vmlinux 0x35661fff usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x356ee655 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x357779a5 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359a0833 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x35aa6c08 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x35af019b __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x35b0375a dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x35b0e642 usb_gadget_disconnect EXPORT_SYMBOL_GPL vmlinux 0x35b69455 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x35c49973 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x35cd0c93 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x35d58648 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x35da5367 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x35da607c rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x35de2cb1 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x35e554d9 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x35e7e9bc nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x35f47c22 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x35f4b746 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x35f9b220 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x360702bd ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process EXPORT_SYMBOL_GPL vmlinux 0x362508f7 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x3626a153 amba_device_put EXPORT_SYMBOL_GPL vmlinux 0x362886b1 of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks EXPORT_SYMBOL_GPL vmlinux 0x363fd9d6 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3640ab32 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x36498a13 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x3650ece6 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x36516eaa skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x3655e480 snd_soc_dapm_enable_pin EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x367104b0 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x367ed833 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x368d4313 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36bd346d led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x36d1b3db da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x36d64e93 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0x36ded886 init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x36df2560 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x36e95b25 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x36f1e569 mas_pause EXPORT_SYMBOL_GPL vmlinux 0x370eb149 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x3715196f dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x373d2c5b sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x3742966e skb_segment EXPORT_SYMBOL_GPL vmlinux 0x37480197 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x37576f4f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x374a7a18 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x375bec84 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0x37626889 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x3766ca5e snd_soc_component_disable_pin EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete @@ -20608,20 +20609,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x378872a1 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x378f54e1 __class_create EXPORT_SYMBOL_GPL vmlinux 0x379076f7 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x3797b605 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x379ee4c2 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x379f840f crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x37a17673 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x37a4b4f2 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x37ad9748 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0x37b7f7dc snd_soc_jack_add_pins EXPORT_SYMBOL_GPL vmlinux 0x37bfc5d8 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x37cdd780 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x37d89497 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x37d8d3c0 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x37e47aff devres_find EXPORT_SYMBOL_GPL vmlinux 0x37ef3fa1 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0x37f860ab dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x37fc11c9 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x380f287c fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x381e4aa2 snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL vmlinux 0x3821c47f snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL vmlinux 0x382423cc regulator_set_voltage_time @@ -20629,31 +20631,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x38334e47 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x383e77bc dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x384ac7d2 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x384c838d perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x38546119 vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0x386a98ae irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x387625d9 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x3879ef50 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x3880991f ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x38854ce3 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update EXPORT_SYMBOL_GPL vmlinux 0x38ce9b27 vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e7194c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x38efaf4c ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios EXPORT_SYMBOL_GPL vmlinux 0x38f912e5 folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0x3909c396 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x390ae34f cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3915ea4b clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x391fb69e genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x392ed542 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x3937e946 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x3943e00e bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x39476e4d irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x3952d083 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x3953006b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x39545bce xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x39585123 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x395c73b8 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x39681908 usb_device_match_id @@ -20667,16 +20670,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x39ba165b devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x39bf11bb i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c9d41d lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x39d76508 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39db97a3 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x39e1bd58 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x39e75571 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x3a0403af spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3a059043 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x3a12b03d rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x3a147048 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3a36a16c __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x3a3bf1d4 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a52c42e fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a574789 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x3a608a4d snd_pcm_stop_xrun EXPORT_SYMBOL_GPL vmlinux 0x3a6d9b37 vcap_find_admin EXPORT_SYMBOL_GPL vmlinux 0x3a7648e2 snd_soc_of_parse_aux_devs @@ -20698,10 +20707,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b45cf15 devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release EXPORT_SYMBOL_GPL vmlinux 0x3b657db9 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x3b6a6f04 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3b7267a0 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x3b74644b tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x3b8618a1 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3b866937 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x3b87c281 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x3b8e4757 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x3b920d38 of_pci_find_child_device @@ -20709,19 +20716,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find EXPORT_SYMBOL_GPL vmlinux 0x3b989877 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0x3ba2f28b snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x3ba89dbc udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register EXPORT_SYMBOL_GPL vmlinux 0x3bbbf094 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x3bc1c411 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x3bd97ed1 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf01389 ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3c05bab3 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c08c5a0 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c1d1da5 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2fcfc6 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c4fc5c8 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x3c5eebc6 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x3c605fa4 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x3c63d352 blk_mq_virtio_map_queues @@ -20730,7 +20738,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3c8b6b9e tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x3c8ff6e0 __pm_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x3c9ada6f serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3ccd0e72 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x3ce2162c pci_epc_mem_free_addr @@ -20739,16 +20746,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x3cfbd1ca usb_gadget_vbus_connect EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 EXPORT_SYMBOL_GPL vmlinux 0x3d0fdde1 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x3d1a4257 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x3d1c42ca da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x3d377a0f input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end EXPORT_SYMBOL_GPL vmlinux 0x3d3ae2a7 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x3d49b6f2 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x3d50d512 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d5b131f rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x3d607375 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3d6ae9de clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d7b9167 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x3d7e7c8f snd_soc_component_set_pll EXPORT_SYMBOL_GPL vmlinux 0x3d84fd6e dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert @@ -20762,8 +20769,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3de4d0ef sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0x3de82152 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dea8276 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x3df9c6f8 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge EXPORT_SYMBOL_GPL vmlinux 0x3e2f3f89 snd_soc_find_dai EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key @@ -20773,22 +20778,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x3e478e9c snd_soc_lookup_component EXPORT_SYMBOL_GPL vmlinux 0x3e494952 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e6ae7b1 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x3e7028e2 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer EXPORT_SYMBOL_GPL vmlinux 0x3e77136e usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0x3e7cf09c nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x3e7cf2eb crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3e8522f4 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e91c539 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x3e93517d vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x3eae265f of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x3eb0314a regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x3ec0aacb poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3ed7abce strp_init EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put EXPORT_SYMBOL_GPL vmlinux 0x3edf70c6 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x3edfc788 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x3ee247ab usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x3eea2746 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc @@ -20800,27 +20806,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x3f6412a9 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8c2217 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x3f8d5960 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3f995784 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x3f9eb88a i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x3f9f1898 snd_soc_free_ac97_component EXPORT_SYMBOL_GPL vmlinux 0x3fb7c880 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x3fc76311 nand_status_op EXPORT_SYMBOL_GPL vmlinux 0x3fde79b0 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x3fe0d3d4 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x3fe2f6e1 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fe81900 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fea4776 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x3ff942b8 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x3ffd45fc ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x4003111e tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x40056f4d clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x400ae589 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x400cbc0b bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x401d7b91 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x402be7a7 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x40344b78 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x403c98ac clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4045af6d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x40480826 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x405f142c int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x4068aa59 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution @@ -20832,7 +20844,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar EXPORT_SYMBOL_GPL vmlinux 0x408a41e2 genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a797a0 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0x40ac6e46 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x40ba00e0 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x40c134e8 iov_iter_is_aligned @@ -20841,31 +20852,34 @@ EXPORT_SYMBOL_GPL vmlinux 0x40cd7ed5 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0x40da2662 pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x40df163f spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x40e90161 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put 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 0x410a0f97 mptcp_diag_fill_info -EXPORT_SYMBOL_GPL vmlinux 0x411d7aa2 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x411ecaea filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0x414a2381 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x414b7f9a sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x415142d0 blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0x41580488 mtk_clk_unregister_gates EXPORT_SYMBOL_GPL vmlinux 0x415bc5a1 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x416d199c tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x4171cae3 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418fe5c9 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x41953601 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41a0b939 snd_soc_dapm_get_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x41a86083 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x41a93604 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x41af2f36 cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x41b592dc pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x41b8c3d3 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bd1a8b scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x41be5bb2 strp_done EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x41e3be30 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x41e8c9fa devres_get @@ -20874,29 +20888,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x42043a2a icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4206f05d inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4242beb2 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL vmlinux 0x4247055e ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x42490a81 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x424d8482 snd_soc_component_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0x425cce44 _snd_pcm_stream_lock_irqsave EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426f60cd br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x427bba5a trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4296408e nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode EXPORT_SYMBOL_GPL vmlinux 0x42d6f225 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x42dd2571 snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL vmlinux 0x42e7a297 scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42f8bdf2 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x42fd6a1c iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x4302f622 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x4303ad06 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0x4304ff4e dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x4307f6d8 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x43091243 of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430e2a53 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll EXPORT_SYMBOL_GPL vmlinux 0x4328f0fa irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x43332c43 __synth_event_gen_cmd_start @@ -20909,13 +20924,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x43819608 relay_close EXPORT_SYMBOL_GPL vmlinux 0x43880b7b gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x438e26bd devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x43ace54b sm501_find_clock EXPORT_SYMBOL_GPL vmlinux 0x43b2daec clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x43c990c1 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43d2339b rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x43d2493f report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x43d48a2b pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain @@ -20927,21 +20939,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x440e860f fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x4411a0c6 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x44130285 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x4413950d devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4419f2dd ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x441dbd64 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x44239553 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x442ad2e6 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x442cd2a3 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x442e1aaf synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x442fa7c2 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x4438f1f5 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443bbfd9 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x444cb1c7 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4453aa50 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x4456d7e5 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x44587781 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x445d1669 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x4469e929 devl_port_register EXPORT_SYMBOL_GPL vmlinux 0x4480b832 dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0x448289a9 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x4484a1de dev_attr_em_message @@ -20949,7 +20960,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4485a0ee tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features EXPORT_SYMBOL_GPL vmlinux 0x44928d9d iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x44b2add7 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c4659a disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str @@ -20961,8 +20971,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x4508dd0d dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x4511836f of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x45193fe0 ip6_input EXPORT_SYMBOL_GPL vmlinux 0x4524e6d4 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x452dbe6f __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x4564aa22 class_destroy @@ -20970,30 +20980,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x457e3574 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x4580dbc4 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x458a18f1 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0x45b43532 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x45b4ddee unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x45b98846 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x45beb8ce phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x45c6a67c nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x45c81aef security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x45cd3f7a device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x45ce2a30 irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0x45d24ac8 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x45df41db xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x45e96051 clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x45ede285 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x45fd219d l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460c46de fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x460e4fbb sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x462f0316 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x460384e6 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x461d9a72 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x464151df pskb_put EXPORT_SYMBOL_GPL vmlinux 0x4641ba44 scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x464d6bae class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x46629b8e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x466da327 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a53f54 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x4696f6e4 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x46af1a22 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x46b42a58 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite @@ -21003,44 +21011,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x46d8c4fd dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x46e60e18 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x46fd5fbe perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x47010bb0 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0x470ac95b __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x470e284a skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x4710d57e pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0x471cb4be rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request EXPORT_SYMBOL_GPL vmlinux 0x472fb6cd snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x473a967c kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4748ccf4 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x473fc105 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x4744d925 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47653b30 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x476c114b xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x4777b643 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x47803f5d fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x4780d72e snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x478718ab css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478c82c7 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x47913b06 pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x4792f6c4 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode EXPORT_SYMBOL_GPL vmlinux 0x479e5991 sampling_rate_store EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a14078 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy EXPORT_SYMBOL_GPL vmlinux 0x47b8f19e device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x47c5567c uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x47c59b8c irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x47dafa23 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x47dbaa38 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x47e52ca6 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x47f29c73 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x48069e4a rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x481d19ad switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4830e1af blk_next_bio @@ -21048,19 +21052,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x4838732d gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x483e010e regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x48410614 devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x4843019e net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x484b039d ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x48675a99 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x4890252e l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x4895efef bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4898caf3 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x48a14068 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x48b2055b __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48d1dd39 snd_dmaengine_pcm_open_request_chan EXPORT_SYMBOL_GPL vmlinux 0x48d486f3 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x48e1048f ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x48e9c096 dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst @@ -21071,7 +21075,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable EXPORT_SYMBOL_GPL vmlinux 0x496e8e1a fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x49872e75 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49c230b0 snd_soc_new_ac97_component EXPORT_SYMBOL_GPL vmlinux 0x49cc1bd7 gpiochip_add_pin_range @@ -21080,13 +21083,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x49de149f regulator_register EXPORT_SYMBOL_GPL vmlinux 0x49e47007 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a09fb6e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x49f0831c ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x4a0cba26 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x4a0fa6fd regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a20201c raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x4a25becd dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0x4a2def5c ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x4a3112ca device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x4a365151 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x4a57ebd7 driver_create_file @@ -21100,20 +21103,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x4ac0df4c da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x4ac7ab6e snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0x4ac7e55c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x4ac86aa2 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x4b0069ce sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x4b06c173 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x4b0a6b17 __sbitmap_queue_get EXPORT_SYMBOL_GPL vmlinux 0x4b1b71b8 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x4b28f0f9 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0x4b2e506c __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x4b36be51 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4b512afd mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4b547493 __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x4b56f250 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x4b859f3e sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x4b85a9ca __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x4b9c62de dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4ba8017c dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x4bab8d7e mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x4bac4957 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0x4bb28398 mtk_pinconf_drive_set_rev1 @@ -21121,8 +21120,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device EXPORT_SYMBOL_GPL vmlinux 0x4bbe5932 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x4bc1dab9 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x4bcec681 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x4bd5f88b synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x4bd8a712 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0x4bebcb45 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x4bfade91 __sdhci_read_caps @@ -21134,13 +21133,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x4c50b7f7 fscrypt_fname_encrypted_size EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x4c5bc772 sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x4c7a28ad xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x4c7b381b bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x4c7eebfb devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x4c9d83b0 irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0x4ca6bffe snd_soc_component_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x4cb21be3 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc7d575 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x4cd10dc0 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0x4ce0e5eb kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x4ce410ac devm_thermal_of_zone_register @@ -21148,71 +21148,63 @@ EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d05e3d5 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x4d20831e ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4d27a649 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x4d1a3a36 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x4d29c322 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x4d332dfa devm_register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d4fdcc8 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable EXPORT_SYMBOL_GPL vmlinux 0x4d7df5a0 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x4d8d131c netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x4d9527e4 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x4d9cf7ef phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x4da721bf of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x4daad316 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db9028a devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x4dc56b88 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x4dc76be2 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x4dd09ddf dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4dd334ea dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x4dd3a5af fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x4dd6d7f3 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4dff12cc perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e035ea3 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x4e0e860c ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x4e10229c sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x4e1541c1 ZSTD_customFree EXPORT_SYMBOL_GPL vmlinux 0x4e1987b2 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x4e1b0ef5 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x4e1cd1f2 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x4e232ca2 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x4e23f0ca usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x4e26e8dc srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x4e2978bd xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x4e2a2427 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x4e2b4c19 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq EXPORT_SYMBOL_GPL vmlinux 0x4e373174 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x4e377a66 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x4e3bc2dc devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x4e3d7ef7 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x4e40a31d pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5f1ea1 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x4e5fa3f4 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4e601826 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x4e672846 devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x4e77228f dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x4e78f2f9 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e8648d3 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x4e8a7d05 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4e8fc526 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4ec1d201 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x4eccfbf8 pwm_free EXPORT_SYMBOL_GPL vmlinux 0x4ed44f91 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x4ed72ae5 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x4edf0229 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x4ee341b4 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x4ee6ded7 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0x4ef05bfe mtk_mutex_get EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef944a6 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4f0aec4d crypto_grab_kpp EXPORT_SYMBOL_GPL vmlinux 0x4f16ffdd cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x4f17ca99 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x4f1a52c3 snd_dmaengine_pcm_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x4f274480 dma_run_dependencies @@ -21220,21 +21212,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x4f2bedc0 usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x4f2cca9c genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0x4f2e1fea phy_get -EXPORT_SYMBOL_GPL vmlinux 0x4f2fb2c0 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x4f36faa7 nanddev_mtd_erase EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f41d6a7 strp_init EXPORT_SYMBOL_GPL vmlinux 0x4f50a78a folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0x4f60fcda mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7de140 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x4f84f36b pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x4f93804d genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4f9c7cf9 of_msi_get_domain EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0x4facdd9f ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x4fbb6bba ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4fa27752 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x4fa4464f ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x4fc5621a pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x4fd9d106 xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0x4fdb95ef meson_a1_parse_dt_extra @@ -21242,7 +21233,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4fde8d74 unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x4fdf6285 mnt_user_ns EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe404a6 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x4ff57b44 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x4ff65888 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x4ffda8f9 task_user_regset_view @@ -21253,18 +21243,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x503c0cd6 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x5049f58f pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x5060966a dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x506bab44 snd_dmaengine_pcm_trigger EXPORT_SYMBOL_GPL vmlinux 0x5079bd92 tegra_mc_get_carveout_info EXPORT_SYMBOL_GPL vmlinux 0x5086c2d9 mvebu_mbus_get_dram_win_info EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x508d72df ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x509a6a2b pm_relax EXPORT_SYMBOL_GPL vmlinux 0x509cfaff dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x509ee882 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x50b48294 sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0x50b704c9 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name EXPORT_SYMBOL_GPL vmlinux 0x50c61b5a mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0x50c7ec10 rockchip_clk_of_add_provider @@ -21288,10 +21276,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x5191b687 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51ae6b67 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x51a8aad3 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x51adc189 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x51b2dc94 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x51baf415 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x51cb8e11 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x51d08f2f __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x51ee5349 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x51f35e56 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x520971f4 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x5210813e find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x52108296 iommu_domain_alloc @@ -21299,31 +21291,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x52264af2 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523a7f0d skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x524496ba pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x52530f96 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x52540d61 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x5257960a fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x525bc104 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x525c14b6 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x52710ae3 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x5272949c irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x52805609 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0x5290c296 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x52aa5810 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x52b10bb4 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x52b0c226 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52bf0c46 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d8baaf ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x52eb5446 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x52ec9e7c sdhci_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x52fa9c45 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x5317e227 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x53227ccc security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x534a0516 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x535ee343 devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int @@ -21331,55 +21317,50 @@ EXPORT_SYMBOL_GPL vmlinux 0x538cf6ef dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x538d5878 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x53a3a15d dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x539d97a4 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x53a7a406 pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0x53b4be2a usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x53b6f685 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x53ce49b6 ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0x53d06127 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x53d1974a percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x53d26e34 vcap_keyfieldset EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x53d93d4c posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x53dce328 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x53de4914 rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x53e90ffb ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x53ebd877 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x53f06781 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x53e3dd85 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x5400626e mtk_pinconf_drive_set EXPORT_SYMBOL_GPL vmlinux 0x540d62f0 elv_register EXPORT_SYMBOL_GPL vmlinux 0x5413cac9 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541c3465 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x54247155 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0x5426e423 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x542d0165 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x543f297a devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5442e3cb tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x5454f8cd rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x546818eb ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x5478c0b7 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x547f0654 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x5488e650 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x549ed464 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put EXPORT_SYMBOL_GPL vmlinux 0x54a300ec spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x54a76c7f rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x54afd460 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x54b28833 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x54b7b1a6 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x54d05ec2 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x54d64136 snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL vmlinux 0x54d7f342 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x54ddcd43 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x54f01e4a debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x5506ddcd scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551ae09f __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x552357e6 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x552c7e10 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x552c9626 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x55310abc snd_dmaengine_pcm_set_config_from_dai_data EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553cd09a inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0x554504fd pci_intx EXPORT_SYMBOL_GPL vmlinux 0x554fd6fd fat_time_fat2unix @@ -21405,13 +21386,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x5613b82c crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x561d1386 __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56266006 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x562ed104 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x5637afd2 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564358dd __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x564b6f11 ping_bind EXPORT_SYMBOL_GPL vmlinux 0x564c4efe sdhci_cqe_enable EXPORT_SYMBOL_GPL vmlinux 0x5658fdf1 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x565d96bc devm_rtc_device_register @@ -21420,18 +21403,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x566a6216 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x566b4841 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x566e7e01 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x56893deb ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x56998762 mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem EXPORT_SYMBOL_GPL vmlinux 0x56aa6fa7 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x56ad5d30 mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0x56af8ce6 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x56b197cd ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x56b54cf6 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x56c34584 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x56d5f59c of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0x56de3980 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter EXPORT_SYMBOL_GPL vmlinux 0x56eb4036 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x56ed6284 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x56f37405 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x56fba299 bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x57081764 fsverity_ioctl_read_metadata @@ -21442,59 +21427,53 @@ EXPORT_SYMBOL_GPL vmlinux 0x5753716b device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x5753b882 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x575b4be1 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x576ea2bb perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x576eb184 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x577ed01d ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5783d6a1 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x578f7f3d trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x57bfd1de l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x57b44e88 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57e29091 i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x57e692c3 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f9ce90 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x5804577d sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5809f243 ping_close EXPORT_SYMBOL_GPL vmlinux 0x580d8946 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x581655b7 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x5817c849 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock EXPORT_SYMBOL_GPL vmlinux 0x5832d926 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0x585bb8b2 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x585befd8 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port EXPORT_SYMBOL_GPL vmlinux 0x5868aa77 amba_bustype EXPORT_SYMBOL_GPL vmlinux 0x5868fb77 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0x58782615 regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x589ffaa1 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x589c96a0 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x58a5baa6 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x58b119c4 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x58c370db ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x58d8fdf5 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58f32dc6 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x59001a3b cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x5906307f devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x590f114a invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x5916abeb xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x591c5307 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x591ef160 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x59216955 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x592a8b42 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0x593269b1 snd_soc_component_write EXPORT_SYMBOL_GPL vmlinux 0x593393ae sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x59450b7e nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x59459b59 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x5953423f ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index EXPORT_SYMBOL_GPL vmlinux 0x595a7fa6 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x5973057b regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf EXPORT_SYMBOL_GPL vmlinux 0x598d0ca1 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5990dd15 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x5991a403 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0x599d4c86 nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem @@ -21504,13 +21483,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f1a495 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f6fe5c __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5a01207e ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5a08bb26 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x5a0accde __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x5a19f449 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a34dc47 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x5a3f093d ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x5a4180b2 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del EXPORT_SYMBOL_GPL vmlinux 0x5a66bc51 dev_pm_domain_start @@ -21525,12 +21503,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x5aacf488 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner EXPORT_SYMBOL_GPL vmlinux 0x5abfba0a __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x5ace5460 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x5adecb70 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x5af30317 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free EXPORT_SYMBOL_GPL vmlinux 0x5afbd9ec posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x5aff950f skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x5b0414bb pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5b126cdc devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b2a48f3 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x5b2d0f52 serdev_controller_alloc @@ -21538,15 +21516,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x5b349860 devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x5b3b611c wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b3c4bb6 put_pid EXPORT_SYMBOL_GPL vmlinux 0x5b45b607 devm_regmap_init_vexpress_config EXPORT_SYMBOL_GPL vmlinux 0x5b47f1a8 snd_soc_dai_get_channel_map EXPORT_SYMBOL_GPL vmlinux 0x5b56ddf0 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0x5b5a0055 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5b75916e bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5b82d911 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x5b8cf1b0 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5b97b21f ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b927779 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data EXPORT_SYMBOL_GPL vmlinux 0x5ba43681 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index @@ -21560,11 +21536,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x5bdcabcd filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x5beaa809 irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0x5bf00932 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x5bfe1b83 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x5c0ff876 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x5c244b5c xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x5c248faf xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5c24c051 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x5c25c0d7 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5c28f18c ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event @@ -21573,7 +21550,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5c463dae driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x5c469223 stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c62973b nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x5c6dbe0c pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5c758c70 pinctrl_utils_reserve_map @@ -21586,25 +21562,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ca37f44 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple EXPORT_SYMBOL_GPL vmlinux 0x5cae7880 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5cb2b42e blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x5cb819ec gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x5cbbd6d6 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors EXPORT_SYMBOL_GPL vmlinux 0x5cd034d5 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5cd12f99 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x5cd6bf57 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x5cd80d62 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x5cdd3e1b phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x5ce0ccd9 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5ce7dce5 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x5ced986e tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cefeb7f splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x5cf10ebd ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5cfadf2e mmput EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x5d1b34ff tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x5d26d0c5 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm EXPORT_SYMBOL_GPL vmlinux 0x5d30cab6 power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0x5d362b7c pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x5d376e19 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x5d453a9d sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x5d4c4006 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x5d582a9f snd_card_add_dev_attr @@ -21612,7 +21591,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d8800c3 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x5d93c45b ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x5da1dbfd crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da3dd36 __percpu_down_read @@ -21624,9 +21602,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x5de2245c pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x5e0a71b0 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x5e0ab4bf ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5e0de81c devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x5e14217b usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x5e352f51 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x5e216440 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x5e3d88cb mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x5e481e15 transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split @@ -21639,13 +21618,12 @@ 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 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ecc217c xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x5ed811c8 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x5ef9ef5e skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x5efbb493 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x5f07d22f pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x5f2014cb xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x5f23a94f proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x5f29494f inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x5f3016c0 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x5f3767e0 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x5f5747cb nanddev_init EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private @@ -21653,27 +21631,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f8ae46c pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x5f9a7be2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5f9f3696 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5fa16aed tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fbe0305 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x5fd50156 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x5fd5e9f0 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x5fd71a66 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x5fdc74a0 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x5fdd06ec usb_phy_gen_create_phy EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0x5ff7f6ea virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x600d8ada device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x600f5b7e tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x6032efd3 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x60357332 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x603a478d irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x603c8f04 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x603cbadb ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x603cec16 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x604181a8 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x60430363 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x60477aa1 nand_change_write_column_op EXPORT_SYMBOL_GPL vmlinux 0x604801e3 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x604de377 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x605b186d pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0x605ecbc6 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x6060ed33 extcon_get_extcon_dev @@ -21682,7 +21660,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x60647f94 wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x6072b446 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x608d52e8 iommu_group_remove_device @@ -21692,13 +21669,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x60acd360 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri EXPORT_SYMBOL_GPL vmlinux 0x60b705f1 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x60badcde sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x60ca57d8 snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL vmlinux 0x60d22e3f devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x60d3ff59 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x60d61d05 mtk_clk_register_muxes -EXPORT_SYMBOL_GPL vmlinux 0x60d8547a nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f14f7f ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0x60f1f635 snd_soc_close_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x60f2433c iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0x60f84c03 sdhci_cleanup_host @@ -21706,6 +21681,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6116ed3a class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x6120fd64 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x6125e400 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x61278cd6 of_css EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status EXPORT_SYMBOL_GPL vmlinux 0x61351cc7 fuse_conn_put @@ -21714,15 +21690,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x615e8849 snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x6166f8b6 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6170bec4 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x61774cd4 mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0x617fdc07 vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x618818ea scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x61900769 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61bc6df6 tcpv6_prot 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 0x61c22be3 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags EXPORT_SYMBOL_GPL vmlinux 0x61cf2dd2 cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x61f245c3 tps6586x_get_version @@ -21731,14 +21709,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x6206dded sdhci_set_clock EXPORT_SYMBOL_GPL vmlinux 0x621f3e8b sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0x622a0ce5 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x622a4be9 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0x62365368 devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x6239c3e6 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x623aa1fa inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x623aa92d extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x62570658 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x625a0815 apply_to_page_range @@ -21750,7 +21729,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x627d635c regmap_write EXPORT_SYMBOL_GPL vmlinux 0x628b7917 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0x629309cb sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x629ccb91 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x62a1d12e omap_iommu_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x62a864d7 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x62adab80 iomap_swapfile_activate @@ -21759,10 +21737,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x62b8bb54 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift EXPORT_SYMBOL_GPL vmlinux 0x62c0f7d7 pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x62caec3f lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x62da036f tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x6300654a switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x62e0985d __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x63018daf bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake @@ -21771,7 +21749,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x634eb1af trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0x635137c7 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x635a39bc cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0x63808708 xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0x63809299 irq_chip_set_vcpu_affinity_parent @@ -21787,19 +21764,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x63c6e0a7 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x63c991ff crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x63cdfad9 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x63d8e960 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x63e0294e switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x63f677a3 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x63d093f2 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x63fe12af snd_dmaengine_pcm_open EXPORT_SYMBOL_GPL vmlinux 0x640bd90b rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x64148466 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x6421bc21 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x645042b3 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x645c13d4 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x64731ef8 blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64769769 mmput EXPORT_SYMBOL_GPL vmlinux 0x647b2161 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x647eafd5 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x648daddf reset_control_get_count @@ -21807,6 +21782,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x64a0274a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x64ae538b switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x64af08fc devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove EXPORT_SYMBOL_GPL vmlinux 0x64c96917 crypto_alloc_ahash @@ -21827,28 +21803,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x6540de6f iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x65486bcb xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6551d8bc tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x65529d74 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x65592784 dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x655bb13e devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6567849d ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x657c8a34 tegra_mc_get_emem_device_count EXPORT_SYMBOL_GPL vmlinux 0x6581ec1d sdhci_start_signal_voltage_switch EXPORT_SYMBOL_GPL vmlinux 0x65917f3c regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6592b86e io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0x659e2e05 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x65a915e2 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x65ab6103 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x65be4223 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers EXPORT_SYMBOL_GPL vmlinux 0x65cfd772 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0x65d15f54 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x65d226fd pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x65da5131 snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0x65ddd7f4 power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl EXPORT_SYMBOL_GPL vmlinux 0x65dffb6e usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0x65e98421 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x65f50ac4 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x65eafe68 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x661d2a97 pm_clk_remove @@ -21858,10 +21831,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x6644f133 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x66535f89 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666fdd95 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x667c8851 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66878b6e call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x6689a7b5 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x66937957 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw @@ -21877,69 +21851,64 @@ EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66dab1f3 alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x66eb6628 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x66fdb55a nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x66ff7e87 devm_kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x671b19d5 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x67146bde bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x67207250 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x67345bc5 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x6746bfb4 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x674d35cd nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x674ed692 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x6757a441 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x675d6499 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x675f8869 blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x67626c16 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x6764f15e __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x677e1703 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x67907384 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x67a6faad fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x67adb202 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e87fbe lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x67fec2b9 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x67ffbf06 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x6801126f virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x680aec27 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x6827b964 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x683192a1 dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x68377254 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x6838569a ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x683a5c0c thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x683c6798 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x683ec35d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x68432c35 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x6844ee36 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x68549403 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x6864c3ef max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x687604ca ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x68787eab __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used EXPORT_SYMBOL_GPL vmlinux 0x688c08bb blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x6892518d i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x689a5f9c adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x68ad19b4 strp_stop EXPORT_SYMBOL_GPL vmlinux 0x68af33e6 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x68bce6d1 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x68c137b3 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x68cdb3d5 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68ce4781 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x68d276e7 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x68dfd0c8 nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0x68e83591 kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0x68f30dae blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x68f1ff13 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x68f53764 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x68f580db ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x69192894 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0x691db949 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6921bd0e inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc EXPORT_SYMBOL_GPL vmlinux 0x69344674 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694a5b2a ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x694c8822 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x6957104b xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init @@ -21955,12 +21924,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a06921c fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x6a18db7d sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x6a1c3d45 blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6a3864ef devlink_net EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a47ec34 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6a4ea607 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize EXPORT_SYMBOL_GPL vmlinux 0x6a75d01c ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0x6a829ed1 regmap_get_max_register @@ -21968,18 +21936,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x6a877a59 __dma_fence_unwrap_merge EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6aa9ff4a inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x6aadbd78 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x6abf9bfa ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x6ac5434f phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x6ac943e2 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x6acc6da4 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x6ad52fa0 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x6adb52a9 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x6adc8469 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x6ae00855 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ae2006d msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x6ae9dc73 devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL vmlinux 0x6aff9c39 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x6b0151fc anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x6b04475d hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b355558 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b42fd48 of_usb_get_dr_mode_by_phy @@ -21988,8 +21962,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x6b460e73 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x6b468db1 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b4c7176 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x6b4d4889 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x6b65997a __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x6b5bb95a pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x6b6886ec relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x6b6b047f phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x6b78ed56 mtd_ooblayout_count_eccbytes @@ -21998,22 +21973,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x6b900407 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x6b94c6b9 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x6b97cced of_pci_get_slot_power_limit -EXPORT_SYMBOL_GPL vmlinux 0x6b9ec2da blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x6ba09d22 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x6ba1e5d2 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x6ba2c472 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x6ba3a54d snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x6ba45cf1 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x6bc52c03 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6bbf4171 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x6bc75943 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd9bdfc fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL vmlinux 0x6be296f8 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x6bed2e97 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x6c0528f0 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x6c0a5f2a watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x6c0b95b6 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x6c0f0754 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x6c23f709 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6c3cc639 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen @@ -22022,46 +21996,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c564720 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5f8468 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x6c7a4ff0 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work EXPORT_SYMBOL_GPL vmlinux 0x6c8f2c87 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6c973518 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca5865f ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x6ca77ebc fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x6cc3458d fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cd3860f inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6cd8f521 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x6cdc4f9e snd_dmaengine_pcm_close EXPORT_SYMBOL_GPL vmlinux 0x6ce7144d virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0x6cea3556 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d09a19c ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d1057e0 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x6d1e9497 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x6d21b2bc gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x6d21f6b4 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x6d2364b8 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x6d2f1fea __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3a71ce ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x6d448d23 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d5c0a79 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7cdc62 nand_gpio_waitrdy EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x6d91d8fe __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6d9335e2 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x6d94bf32 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x6db250d0 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x6db37c4d skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbd81c6 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x6dbfa3e6 of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused EXPORT_SYMBOL_GPL vmlinux 0x6dc8151c crypto_shash_final @@ -22070,44 +22038,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6dd75e1f tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x6de5c6a4 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x6dec6372 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x6dedb096 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e24cd80 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e40a4ff dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6e40e382 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x6e52bb30 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x6e53f514 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x6e54a2a0 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x6e582b36 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x6e5b5eff ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x6e6378cb irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e66dadb nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x6e679321 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0x6e683693 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0x6e76ee07 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x6e777447 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e86b5b3 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x6e88197d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x6e899545 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e89bfaa trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x6e8fa606 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x6e9c576f fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x6eac73fa tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x6eb26b15 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec463b5 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x6ec5bd47 of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x6ed251e8 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x6edc8bff raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x6ee66152 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x6ee75375 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6efa72de power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6f0fc16e pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f30e146 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x6f358a53 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0x6f39245e pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x6f3bb6e4 gpiod_get_array_optional @@ -22126,11 +22091,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x6fab0124 usb_gadget_udc_reset EXPORT_SYMBOL_GPL vmlinux 0x6fad1e2d pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x6fb39c8c usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e010 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register EXPORT_SYMBOL_GPL vmlinux 0x6fb84fbf __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x6fc0bff4 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x6fc8267f fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x6fce2b7f ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6fda4043 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x6fdcdb96 sdhci_pltfm_unregister @@ -22139,11 +22103,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x70141291 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7020c318 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x702e38e1 pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x7058b025 vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x705e6897 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x706a4410 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70778ef8 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x707fb262 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x708f58c2 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x709280db serial8250_do_set_ldisc @@ -22157,18 +22122,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq EXPORT_SYMBOL_GPL vmlinux 0x70d266b6 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x70d52513 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x70db3918 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x70f1dec2 of_get_mtd_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x70f82acf of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x70fb11c3 vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7116edbf ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7111b683 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7115a34f cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x7117e03a mtk_clk_gate_ops_no_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0x711b3891 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0x711fb679 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x71204fc3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7124f151 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x712f2689 of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x7135fa26 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x713b8d3d devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x7142d921 of_regulator_match EXPORT_SYMBOL_GPL vmlinux 0x714e2596 pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0x71576a9b bsg_register_queue @@ -22177,9 +22146,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x715d35ce access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x715f388a bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7163cee8 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x7167aaf7 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x7180ae3d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7181fe0c perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x71850429 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x7196ce35 usb_urb_ep_type_check @@ -22191,19 +22161,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL vmlinux 0x71a9d102 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x71b28df1 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x71b45524 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b8b7e3 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x71b9bcf9 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x71be6f7f dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x71c56dad __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x71ca164b usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x71ce3687 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x71e34ee8 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x72040fe8 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x720d76c1 ahci_platform_enable_resources EXPORT_SYMBOL_GPL vmlinux 0x72243f6a led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x722f1a7f snd_soc_set_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0x7237348d serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x724121d8 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x72453004 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x724c8d3b irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0x72510b99 pm_runtime_barrier @@ -22214,36 +22183,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x72660893 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x72828537 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x72877a57 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x72897ed1 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x7289ff2b snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL vmlinux 0x728d49b4 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x728ea10d metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x729f379b fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x72a8e75f nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported EXPORT_SYMBOL_GPL vmlinux 0x72b68e8b percpu_is_read_locked EXPORT_SYMBOL_GPL vmlinux 0x72c26df1 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x72ea8dcd of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x72ed85e2 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x72fa2fe3 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x72fee607 nand_read_oob_op EXPORT_SYMBOL_GPL vmlinux 0x7307df5d of_pse_control_get EXPORT_SYMBOL_GPL vmlinux 0x7312b31f bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x732b2f39 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x732be823 input_class -EXPORT_SYMBOL_GPL vmlinux 0x733258d8 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x7352bbd5 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x736abe2a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x738db80b receive_fd EXPORT_SYMBOL_GPL vmlinux 0x7390cb31 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x73918f4d sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x7392f2bc vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b368bb dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x73a4901e seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0x73bb324a fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x73c8b225 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap EXPORT_SYMBOL_GPL vmlinux 0x73d55c45 rockchip_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features @@ -22257,6 +22218,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7478858f sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x74823abd hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0x7488daf9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x748cac89 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x749840b6 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x749c0d8d led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x74b0ea17 device_find_any_child @@ -22266,16 +22228,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x74cd4cac led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0x74d62f5a blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x74f13c01 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x74f2198b bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x74fd57f8 vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0x7500001f phy_power_on EXPORT_SYMBOL_GPL vmlinux 0x750157e7 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x750b87c3 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x7517c7f6 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL vmlinux 0x7542d24a __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x7545cb80 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x754fbcf5 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x7552c73f snd_soc_component_update_bits @@ -22283,7 +22243,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x758bad34 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759356de tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x75977c9b pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x75a7a785 snd_soc_component_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0x75ab8638 __auxiliary_driver_register @@ -22294,33 +22253,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x75b0b770 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x75b0eb60 pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0x75b30fae irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x75b380b3 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x75b5c2bb debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0x75cb33f6 tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0x75cb7229 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x75d1b977 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x75d7a973 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove EXPORT_SYMBOL_GPL vmlinux 0x75dede46 msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75fce0c5 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x76128b62 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x76226591 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x7628f33e ahci_platform_assert_rsts EXPORT_SYMBOL_GPL vmlinux 0x7629e383 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x7633c975 ata_sas_port_suspend 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 0x7659929c ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x7663d6e8 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x766bddb1 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x76722cab sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x767f5470 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x7696d240 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x769d06c6 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x769fbc09 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x76adb4d6 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x76b353e6 musb_interrupt EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate @@ -22330,22 +22286,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x76f7ff14 snd_soc_get_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x770286ac noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x77070a96 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x7707282f scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x770e624f devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x7710f933 led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0x771925d0 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x772df691 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x772f0258 fscrypt_add_test_dummy_key EXPORT_SYMBOL_GPL vmlinux 0x77372a14 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x773f00be netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x774170ad put_pid EXPORT_SYMBOL_GPL vmlinux 0x77453b3f regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775b21d3 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x776a24ef ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x7786ed0c sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7793fe22 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 EXPORT_SYMBOL_GPL vmlinux 0x7799f606 usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0x77aa7b5b alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x77ae1cfc __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL vmlinux 0x77bf5a34 usb_init_urb @@ -22357,17 +22315,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x7818fecb led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0x782a4881 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x782b31b8 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x783da02f msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x7845669c of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x78499d77 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x784be6e3 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x785875d3 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available EXPORT_SYMBOL_GPL vmlinux 0x785e9245 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x786e4bc6 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x78705104 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x787f39d4 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x78854cef rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x788571d1 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty @@ -22375,7 +22329,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x78b23d39 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x78b749e2 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x78b83875 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x78c499da meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x78c9c27e tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0x78caeff1 mtd_ooblayout_free @@ -22383,8 +22336,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x78dbd29a dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match EXPORT_SYMBOL_GPL vmlinux 0x78eb3229 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x78fc8a5e inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x78ff736a l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x78ec6036 __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x79129b07 __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x79136767 dpcm_end_walk_at_be EXPORT_SYMBOL_GPL vmlinux 0x791a72f6 debugfs_create_file_unsafe @@ -22399,11 +22351,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x794b7515 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x794f49ac mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x794ff375 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79591eeb sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7954ad40 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x7963020e mtd_read EXPORT_SYMBOL_GPL vmlinux 0x796e3580 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x79802ae3 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x7984957c spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x79926a69 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x798d8cea inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x79ac7dd4 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x79ada3b7 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0x79af7530 trace_array_printk @@ -22412,47 +22365,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x79cc0cac __tracepoint_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79e69014 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x79eeeeb5 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x79fba44d syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x7a17d48e usb_del_gadget EXPORT_SYMBOL_GPL vmlinux 0x7a2da6dc tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a49dd7c tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7a53a735 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x7a562d03 of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x7a5ed540 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x7a67f815 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x7a712407 power_supply_put EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a77313a skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a87b12d rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7a8c0f62 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x7a8d263d tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x7abb0f7a ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x7a9f860d tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac2cdb3 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7acac86f fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x7acc804a bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad091ab ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad7ce23 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x7ad7ded0 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x7adf1140 vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x7ae59f8e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7ae056ba bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x7aebae6e __srcu_read_lock_nmisafe -EXPORT_SYMBOL_GPL vmlinux 0x7aef3bc8 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x7af2747e sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x7afa851f dm_disk EXPORT_SYMBOL_GPL vmlinux 0x7b0002d2 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x7b10453f l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x7b134b22 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x7b13997c bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x7b16ebf1 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x7b1d04d3 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0x7b1de5c3 onboard_hub_create_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x7b2d0437 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x7b2dcbfb strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x7b2eb1db ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x7b4bb10e usb_gadget_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x7b562c49 usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash @@ -22467,10 +22416,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x7bbdd33f vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x7bc070f2 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0x7bc3309e regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7bd12dda __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x7bd5dd50 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x7be5eef7 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7bea4a37 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x7bfe6b46 snd_soc_get_strobe EXPORT_SYMBOL_GPL vmlinux 0x7c0f9a61 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x7c192508 mtd_add_partition @@ -22496,56 +22443,57 @@ EXPORT_SYMBOL_GPL vmlinux 0x7cb0fd17 blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet EXPORT_SYMBOL_GPL vmlinux 0x7cb8ff5d iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7cbbd398 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x7cbe3692 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x7cca05ee irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7cd256c2 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cdac6bf led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x7ce3c3c4 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x7ce864e5 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x7cf852d4 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x7d0bd232 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x7d130db2 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x7d1a73dd fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x7d1c7714 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x7d21d32c rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x7d424dec devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x7d4bf54c pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7d4f23b3 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x7d4f95df mtd_get_device_size EXPORT_SYMBOL_GPL vmlinux 0x7d4fb8e4 sdhci_runtime_resume_host EXPORT_SYMBOL_GPL vmlinux 0x7d4feba2 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5c0197 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x7d5d1b79 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x7d69f6e8 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x7d75dde7 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x7d830b3e clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x7d892cba static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x7d8e597f free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7dad644d __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7daf741b fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x7db2918f devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x7dd26257 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de19a0d ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7df4abaa fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x7df6dc47 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x7dfc5c61 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7dfcd40b blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x7e12d570 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x7e1a0d3e serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x7e1b2e4b snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL vmlinux 0x7e1c5d11 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x7e229f44 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x7e263a91 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x7e2dda9a fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4e8fc1 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x7e505c35 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e6165cc tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x7e6282f2 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time EXPORT_SYMBOL_GPL vmlinux 0x7e78498e crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x7e7d219b __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8607 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x7e906b37 usb_gadget_activate EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x7eb00a3f usb_gadget_giveback_request @@ -22561,45 +22509,52 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ef1faf2 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x7f01c312 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7f167774 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x7f1fdc21 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x7f459044 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x7f475b52 led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x7f4f15c6 snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL vmlinux 0x7f64c296 devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0x7f68d28d ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x7f783c13 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7f7886e2 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x7f7bb8fe clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f7f7a6d sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7f8e9ed8 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x7f90ccf2 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x7fa9eb56 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7f91cbee inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fa186ea __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x7fbcc6da snd_soc_component_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0x7fc29a73 vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0x7fd46a25 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x7fd79445 serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x7ff25074 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x7ff268af unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7ffb9107 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x800ab220 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x801b5223 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x801ddda4 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x80209323 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x80235d11 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x8029b586 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x802f02d3 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8033daab ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical EXPORT_SYMBOL_GPL vmlinux 0x8036e24c snd_soc_put_enum_double EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x80489f2a xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x804c3cd4 of_get_fb_videomode 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 0x806200d3 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x80728a30 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a33bc0 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x80a532dd skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x80b63c4a tegra20_clk_prepare_emc_mc_same_freq EXPORT_SYMBOL_GPL vmlinux 0x80bb9dec spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x80c10fbf ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free @@ -22607,10 +22562,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx EXPORT_SYMBOL_GPL vmlinux 0x80f7e432 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x8111b124 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x8120c18e wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x812304fe pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x814483dc dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x814c4ebc platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl @@ -22625,42 +22580,39 @@ EXPORT_SYMBOL_GPL vmlinux 0x81a867a5 md_run EXPORT_SYMBOL_GPL vmlinux 0x81b3e072 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x81bc0a71 usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x81bfee77 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x81c89aee msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81e4057c vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x81e4a43d sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x81edb76d get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x81ee1995 driver_find EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x81f3e222 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x81f4d683 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x81fa332f iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0x820ffc00 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x821d3068 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings EXPORT_SYMBOL_GPL vmlinux 0x82690b63 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x826f7da1 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x827d7538 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x82ac13d3 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure EXPORT_SYMBOL_GPL vmlinux 0x82d897a0 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x82e3014a sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x82ded6b8 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x82e376c4 mtd_write EXPORT_SYMBOL_GPL vmlinux 0x82f40ce1 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0x83047e19 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x8313a6ec amba_device_add EXPORT_SYMBOL_GPL vmlinux 0x8315a4c4 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x831aaf09 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x831d19db __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x8330eef0 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x834293ba ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x8343e9dd led_put EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8350a47f tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x8358e9ae __sdhci_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x83786f94 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x8392ba18 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x8396f514 mtd_ooblayout_count_freebytes EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x839b2335 sysfs_change_owner @@ -22669,8 +22621,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x83e0038b page_endio EXPORT_SYMBOL_GPL vmlinux 0x83e03a10 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x83e1e051 mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x83e97d89 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x83f449b8 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x83fbf1e4 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x84085554 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv EXPORT_SYMBOL_GPL vmlinux 0x8415e744 mtd_ooblayout_set_databytes EXPORT_SYMBOL_GPL vmlinux 0x8416b083 thermal_zone_get_slope @@ -22683,39 +22636,44 @@ EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x846a009f ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x846fecdf genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x847050f4 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x84782068 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x84869d4e find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x849255dc devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert EXPORT_SYMBOL_GPL vmlinux 0x84ac42dc blocking_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x84b15d5e tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x84bbe712 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x84bd838c pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x84c14010 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x84c9e671 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x84ceb6d6 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x84d0c639 usb_gadget_vbus_draw EXPORT_SYMBOL_GPL vmlinux 0x84d2ff45 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x84d94f6e bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x84dbccc0 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x84dc0af4 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x84df71c1 tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x85020c7c nand_deselect_target EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8509d9f9 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850bfefb mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x850f0e22 snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0x850f15af icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x850fb6e9 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x85112638 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x851a3a27 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x8525c1c1 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x852600da rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x852b16c4 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x85319274 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x85354903 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x853734cc fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x8542b7c3 sdhci_pltfm_pmops EXPORT_SYMBOL_GPL vmlinux 0x8545bdd8 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x855947c6 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x855c1f91 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x85637583 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x8563aeb4 pm_clk_init @@ -22724,11 +22682,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x8582b7cc serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder EXPORT_SYMBOL_GPL vmlinux 0x859c19e6 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x859d4f51 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID EXPORT_SYMBOL_GPL vmlinux 0x85b765d6 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x85bdf568 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x85c4f6a2 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x85c7fa2d ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x85cbd9ff soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x85e67c45 devm_hte_register_chip EXPORT_SYMBOL_GPL vmlinux 0x85fd467a devm_kmemdup @@ -22751,14 +22709,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x86591d73 __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x866250b1 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8684247f lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x86877bfb sm501_set_clock EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8687bfed pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x86b4bc3a rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x86cb8ebd rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x86ea05e2 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x86e888c6 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x86f2ea2b fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue @@ -22769,49 +22727,48 @@ EXPORT_SYMBOL_GPL vmlinux 0x8724f4c1 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x8725f1fc usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x873f1112 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87444f39 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x874ea058 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x8750e12e __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x8768f28c device_link_del EXPORT_SYMBOL_GPL vmlinux 0x876d72df fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x87737edb regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x87829ef8 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x8787d5d6 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x879713a4 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x879cb5c4 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x87a36b04 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create EXPORT_SYMBOL_GPL vmlinux 0x87b5c46c crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x87c20273 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x87c4f1ca usb_ep_fifo_flush EXPORT_SYMBOL_GPL vmlinux 0x87cb03e6 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x87cd66ed tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x87cf1a33 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0x87da2569 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x87e5f2b2 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x87f3429d ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x87f72bb5 fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x87fee6bd pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x88040075 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x880fd5b6 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x881977b3 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x881f0c71 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x88231b3b ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x882f39ed l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x88348973 snd_soc_dapm_disable_pin EXPORT_SYMBOL_GPL vmlinux 0x88384160 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x884c4df1 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit EXPORT_SYMBOL_GPL vmlinux 0x8864a01f kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x8869f107 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x887ca6e0 d_same_name EXPORT_SYMBOL_GPL vmlinux 0x889baabc wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b08ce7 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88c9a65e snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x88d23255 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x88d9360c ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x88cd6b81 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x88e147bf xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x88e97f84 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x88f9fac3 hte_push_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x8912c738 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x89138227 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x89158932 cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x891faf55 user_read EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state @@ -22820,15 +22777,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x89443ee0 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x89468a97 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894c180c netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x895af2ea usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x89711d77 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x8974fde5 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x89782edf fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x8996f8ba xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x89a7d1f5 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x89aba004 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x89ad4c08 of_get_pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark @@ -22839,16 +22795,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x89fcd26a pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x8a142bca mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x8a27bc26 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x8a2ff4c4 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a43f055 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a4fc4e2 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode EXPORT_SYMBOL_GPL vmlinux 0x8a603631 cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a79ac20 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8c13be xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot EXPORT_SYMBOL_GPL vmlinux 0x8a9d4a4c of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x8a9e95d1 snd_ctl_sync_vmaster @@ -22864,13 +22819,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x8acb9657 snd_soc_jack_report EXPORT_SYMBOL_GPL vmlinux 0x8adbe55b __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x8ae6ab58 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x8af5da93 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8aecbb23 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x8b0eb1c2 host1x_context_device_bus_type EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b248096 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x8b308b71 rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x8b395284 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x8b4b6cc6 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x8b521e41 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x8b5ab68a musb_set_peripheral EXPORT_SYMBOL_GPL vmlinux 0x8b5c5641 sysfs_create_group @@ -22878,6 +22834,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release EXPORT_SYMBOL_GPL vmlinux 0x8b677961 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x8b71d8b2 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x8b73e091 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x8b891d4a tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0x8bafe8df devm_remove_action @@ -22892,6 +22849,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8bea0694 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x8bede70e snd_soc_dai_set_tristate EXPORT_SYMBOL_GPL vmlinux 0x8bef5daf crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8c00f611 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c078d65 led_trigger_unregister_simple @@ -22913,6 +22871,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status EXPORT_SYMBOL_GPL vmlinux 0x8c7cd829 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8abb01 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x8c92fd08 sdhci_set_power_and_bus_voltage EXPORT_SYMBOL_GPL vmlinux 0x8c970c61 reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb @@ -22921,14 +22880,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext EXPORT_SYMBOL_GPL vmlinux 0x8ca29ca0 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x8cb89fd9 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x8cc9500a nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x8ccfb658 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x8ceb9738 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x8d00a56a ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x8d0bea0e nand_read_data_op EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d38ab87 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x8d4f78c3 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8d51a55f cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x8d584bb2 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x8d61fcfc devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8d695f22 dmaengine_desc_get_metadata_ptr @@ -22936,17 +22895,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits EXPORT_SYMBOL_GPL vmlinux 0x8d8b481b edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8da2b6d7 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x8da5ca39 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x8da81d65 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x8dac9426 usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x8dbf50b9 xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x8dd4622f led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x8de39804 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x8dec863a sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x8df2cedd aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x8df6bf6e regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x8dfdfc99 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8dfef00f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x8e014009 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x8e014523 of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x8e081c87 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x8e08a1cb gpiod_get_raw_array_value_cansleep @@ -22964,24 +22927,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x8e5a0b70 of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0x8e5f1996 regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e793c54 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x8e7c24a3 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x8e7f5f58 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x8e83da75 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x8e8b4829 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x8e9945d5 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x8e9e0f02 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x8eba0273 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x8ebd6852 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x8ec3bfd9 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x8ec3c078 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x8ec4069b i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x8ec767dd rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x8ee2176a io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8ef11519 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x8ef91719 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0b9047 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f1218d2 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x8f269df4 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x8f2d00d7 dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x8f2ea040 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x8f300e75 snd_soc_daifmt_parse_clock_provider_raw @@ -22996,6 +22960,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x8f5140fa pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x8f5b1cff crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x8f5cbf0c clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x8f613a71 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x8f6860e0 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f6e0f1e devm_of_icc_get @@ -23003,56 +22968,63 @@ EXPORT_SYMBOL_GPL vmlinux 0x8f72b301 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x8f77785b ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7b11e6 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x8f8a6215 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8f98dcdb of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x8fac81a6 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x8fb9fb65 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x8fde5d1d nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8fe5ec13 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7436c ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x8ffc5534 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x9000075d class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x901efe7b crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903dbd2f ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9048fed0 snd_soc_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0x904b4895 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x904e757e get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x9050762f ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x905372d4 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x90545d0a ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x905532a8 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x90557647 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x905c30ce pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0x906340f6 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x907a8b2f ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x907e2371 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x9087b3e7 ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0x908cdbf0 hte_ts_get EXPORT_SYMBOL_GPL vmlinux 0x909716df devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x90ab9672 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x90b87115 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x90c1d59a of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x90dad337 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x90e23444 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x90ed79b8 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x90ff0c7d mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x90ffa3c9 imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x9108f6f4 md_stop EXPORT_SYMBOL_GPL vmlinux 0x91111a3b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x91130778 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x911ba48e led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x91288243 irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91420cc8 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x91423d79 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x9152763e synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x91535433 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x915f2adc iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0x917446fc mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x917ed641 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x91803b5d devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x919929bb fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x919a44af kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0x919b68c4 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x91a80109 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x91b76cc9 snd_soc_dai_set_pll EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91c605cd cpufreq_freq_transition_begin @@ -23062,26 +23034,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print EXPORT_SYMBOL_GPL vmlinux 0x91ef8dd9 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0x92062dd0 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x92173251 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object EXPORT_SYMBOL_GPL vmlinux 0x927779f4 sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0x92788eaa cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9279a14c strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x927ea4f4 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x92804e72 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x92958317 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x929a1f82 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter EXPORT_SYMBOL_GPL vmlinux 0x92a0d20f of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x92a91f6b phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x92ac948d relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x92acdad5 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x92b3408f class_unregister EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work EXPORT_SYMBOL_GPL vmlinux 0x92bb6d99 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0x92c9023f ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x92bd2543 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x92cde546 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x92d1e0aa gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e1d3fe ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x92f08184 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x92f2a226 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x930c536f devm_get_free_pages @@ -23089,26 +23063,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x9323efe0 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93343fc7 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x93442dee debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x934ab043 usb_udc_vbus_handler EXPORT_SYMBOL_GPL vmlinux 0x93679e68 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x9372b18b bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x93847661 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x938bcc38 imx_pinctrl_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x93922054 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key EXPORT_SYMBOL_GPL vmlinux 0x939b44fc mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x93abacb5 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93ad7315 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x93b72439 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93d13939 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x93d1d1bc devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x93d2d917 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x93ec976a ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93fcefc2 snd_soc_dapm_mixer_update_power EXPORT_SYMBOL_GPL vmlinux 0x940394ad serial8250_modem_status EXPORT_SYMBOL_GPL vmlinux 0x940cd84f iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x940cdb8e inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x940ef330 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x94202178 vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name @@ -23117,11 +23093,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x9430d6fc platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x94395976 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x944297cc of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x9448feaf devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x944c1d0c nand_get_large_page_hamming_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x945156c8 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x94565d24 usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0x945cf5c5 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x945dad5b nand_decode_ext_id EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister @@ -23131,18 +23105,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x9486633c efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0x948dc171 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x948f5c49 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9493a50a cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949e585b security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x949f3c98 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94ad8287 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0x94b19216 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x94b5663a netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x94ba7e35 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x94bbc7e9 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x94bbda6a fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x94c74730 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x94c8f1ab perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x94d1c3ad pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0x94e0c402 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x94e2c319 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x94f84a1c ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x94fe7d65 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x9503b334 component_master_del EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread @@ -23153,17 +23129,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x955ee96c crc64_be EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956cca92 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x956ece53 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x956f18dc __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9579ca38 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x957e6ed5 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x957fb4f3 io_uring_cmd_complete_in_task EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958a3a10 dev_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x958c60bf nand_change_read_column_op EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x958ed6ff iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x95920f5c ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c5215c devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x95c6a61a fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x95cdcdf6 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x95d69388 snd_pcm_fill_iec958_consumer @@ -23180,19 +23158,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x964d6698 ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x9654ca91 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965c8028 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x966102f5 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x96616610 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x96647f12 snd_soc_dai_compr_pointer EXPORT_SYMBOL_GPL vmlinux 0x966a6178 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x968a95cf ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x96b01eb6 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset EXPORT_SYMBOL_GPL vmlinux 0x96bd0858 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96def84e bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x96e97154 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x96cfa11f inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x96f0fc25 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x9707f97d pinctrl_generic_get_group_name @@ -23202,6 +23176,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same EXPORT_SYMBOL_GPL vmlinux 0x975bffb6 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x976d0117 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x977e00a5 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x97988d49 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x979d6fe6 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x97a7ed55 iommu_fwspec_init @@ -23210,27 +23185,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x97cd258b usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL vmlinux 0x97d13fec ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97df5718 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x97e6a532 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x97e86f5f shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x97ee4ede kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x97ef3eb4 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x981bc872 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x981e8e3c tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x9822b3f9 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983c8cd8 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9850b9c5 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9859b44f skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x9867d3ef xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x9869aef0 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x98724cd9 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x987cbd92 imx_pcm_dma_init EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x98984cbb snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x98ae21b8 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x989bdacb lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x98b95d7f pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x98bcbc35 of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0x98d4aa35 crypto_alloc_aead @@ -23247,13 +23223,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x991b0bc2 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x991d4a1a iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x991e796c fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x99327e94 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x99348def __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x993adf52 meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0x993e9f41 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x9950a9d6 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9996e655 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x997e29e7 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x99846624 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure EXPORT_SYMBOL_GPL vmlinux 0x99a12aab user_update EXPORT_SYMBOL_GPL vmlinux 0x99a70aea cpufreq_cooling_register @@ -23263,31 +23241,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create EXPORT_SYMBOL_GPL vmlinux 0x99c95627 clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0x99d1b656 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x99d433ef ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x99de40e9 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x99df9cb3 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x99e532a8 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x99e6261d __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x99e9b3c6 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x99eae7be strp_process EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x99f53d91 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x99fc5f80 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x9a024d1a tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1e3cc1 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x9a30a838 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x9a4ba8ed __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9a528b94 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x9a5c53f7 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0x9a5f91c6 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x9a5fd859 devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9a625807 arm_iommu_release_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9a66d1f9 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x9a7b8f2b param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x9a7e97d5 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x9a845877 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x9a8bc288 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x9a8d2203 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x9a9397c1 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x9ab3e26c platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9aa6cf63 ping_err EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9acc75ee of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule @@ -23295,23 +23272,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x9ad5a726 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x9ad94c3d mtk_pinconf_bias_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x9ae5cdc1 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x9ae737b4 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x9ae757f7 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9af905fa clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x9b0f2556 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9b13a655 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b180c27 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x9b1f2533 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x9b2ac157 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x9b43dd57 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x9b4c8644 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b65e3c8 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0x9b684245 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x9b69ae12 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b7fae0e __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9ae3ec skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9ba0a616 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x9ba51fac driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x9bb1315d devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0x9bbd394d virtqueue_notify @@ -23320,11 +23301,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x9be206d8 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9bf21ef5 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x9c19aa48 devlink_net EXPORT_SYMBOL_GPL vmlinux 0x9c1b56c8 mtd_ooblayout_find_eccregion EXPORT_SYMBOL_GPL vmlinux 0x9c256078 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x9c2a18a2 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x9c2ed204 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x9c43367b fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9c4a4dfc tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x9c4e9915 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0x9c5b3ba7 snd_soc_of_parse_card_name EXPORT_SYMBOL_GPL vmlinux 0x9c623412 __traceiter_wbc_writepage @@ -23332,10 +23314,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x9c7204ed phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c80d97b vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x9c88d79e ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x9c8d8839 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x9c8f43c5 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x9c93c764 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9ca06c34 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x9ca9499e sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x9cad2f76 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x9cba4551 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite @@ -23351,21 +23334,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d0ca7cd bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x9d13a8d5 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x9d15a650 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d39180f fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x9d5cde61 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x9d717089 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x9d71ac5b hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x9d76593e tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x9d79fc06 nand_ecc_restore_req EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d985d60 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x9da17eb7 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x9da3075a mtk_clk_register_dividers EXPORT_SYMBOL_GPL vmlinux 0x9db3a550 usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0x9db44400 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x9ddaaed6 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9de439df ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x9de86eef snd_soc_component_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x9df10ab5 usb_ep_dequeue @@ -23374,12 +23356,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify EXPORT_SYMBOL_GPL vmlinux 0x9e17224b crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9e20e79d bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x9e1e4cd8 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x9e224a78 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x9e25a494 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x9e2ee2e5 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x9e304451 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9e329fbc blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x9e4650fd usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e5e9d38 snd_soc_limit_volume @@ -23393,30 +23372,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x9ead87ec tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0x9eb08b58 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x9ebc1e03 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x9ec19827 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edd0bec ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0x9ee1eb6d pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9ef9c044 snd_soc_set_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x9f1f2ff5 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x9f21b170 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x9f350aef mtd_unpoint EXPORT_SYMBOL_GPL vmlinux 0x9f3d069e mtd_get_fact_prot_info EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f5ee373 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x9f7199a0 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x9f76fdc6 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x9f809164 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x9f8321dd ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x9f8a8339 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x9f8f23d4 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x9f8f8565 nand_prog_page_op EXPORT_SYMBOL_GPL vmlinux 0x9f953490 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0x9f964647 tegra20_clk_set_emc_round_callback EXPORT_SYMBOL_GPL vmlinux 0x9f9d4a02 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa7367f sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x9faea944 snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL vmlinux 0x9fbdc603 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x9fc86bdd fwnode_graph_get_remote_port @@ -23436,9 +23416,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa0556555 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xa055fa65 dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0xa05bda3e thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xa074ed98 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xa077b115 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xa08958b8 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xa08c778a hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xa08e6c8b crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xa0928ae4 usb_unlocked_disable_lpm @@ -23446,7 +23424,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple EXPORT_SYMBOL_GPL vmlinux 0xa0c2ee53 sm501_misc_control EXPORT_SYMBOL_GPL vmlinux 0xa0c2fcc2 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xa0c708f8 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xa0ca1280 of_map_id EXPORT_SYMBOL_GPL vmlinux 0xa0cf1e97 of_resolve_phandles EXPORT_SYMBOL_GPL vmlinux 0xa0d8c093 blk_mq_sched_try_insert_merge @@ -23454,17 +23431,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xa0f6a2a7 devm_snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0xa1028d1a devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xa108ca2b css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xa10a6a38 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0xa12c178a ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xa1169f71 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xa13121b3 snd_dmaengine_pcm_request_channel EXPORT_SYMBOL_GPL vmlinux 0xa131e4dd transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0xa135397d wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xa1360802 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xa13e8119 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0xa15c2dd2 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xa16e29ee thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa1758ee7 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0xa175f8fd platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xa191d101 led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0xa192c795 crypto_shoot_alg @@ -23472,23 +23449,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xa19728c5 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0xa198e54c crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xa1994095 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xa19e052c ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xa1a2598c fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xa1a51651 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xa1a7ea1b scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xa1afa3f4 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xa1b726ea fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0xa1c822cc fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1dbbacf mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0xa1de4f6c net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition EXPORT_SYMBOL_GPL vmlinux 0xa1fa4e95 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa216103b snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0xa217d729 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xa21b0ae5 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val EXPORT_SYMBOL_GPL vmlinux 0xa230a026 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xa23d6cdb ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0xa23e1519 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xa2461c39 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle @@ -23502,8 +23476,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2ae147b rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2b26753 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xa2b61087 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xa2b79fc2 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xa2b8194e __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xa2bd7b09 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xa2bdbce5 snd_soc_card_remove_dai_link @@ -23516,14 +23488,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2ff9300 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xa3005288 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0xa3108c68 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xa31b65db ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xa3290a05 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa32dd902 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work EXPORT_SYMBOL_GPL vmlinux 0xa3390f5d of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove EXPORT_SYMBOL_GPL vmlinux 0xa3501fe6 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xa354b7f5 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xa35db51e snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0xa36d63e7 gpiod_set_array_value_cansleep @@ -23531,7 +23502,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa3890ce6 __devm_regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa38b649f fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xa38cbefe ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xa39d18c5 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0xa39eb1f5 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 @@ -23543,7 +23513,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa3cbeba5 bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0xa3d3d64d __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0xa3dd98c9 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0xa3ec8d9a clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa3f7331f pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xa3fc2e79 irq_domain_associate_many @@ -23551,18 +23520,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy EXPORT_SYMBOL_GPL vmlinux 0xa41b4c9a fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0xa420b6d0 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xa4275801 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa42a55e8 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xa42d88ff __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa44c4e40 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xa45b0805 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xa4664a4a ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa49136b1 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xa491d9fc devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa4a29b82 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0xa4a9969a crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4ae3f50 regulator_irq_helper @@ -23571,18 +23538,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis EXPORT_SYMBOL_GPL vmlinux 0xa4c278a1 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa4d6f813 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xa4d8d3bf devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xa4d94167 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xa4e10173 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xa528df41 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xa530ac36 raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa532bf8f HUF_readStats EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0xa541aff8 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa5449b8b __root_device_register EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa57304a3 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa57ead4c tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xa58c9868 kill_mtd_super EXPORT_SYMBOL_GPL vmlinux 0xa58f4216 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xa59ceef7 input_ff_erase @@ -23592,32 +23559,31 @@ EXPORT_SYMBOL_GPL vmlinux 0xa5ad14d0 __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xa5aead6b iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xa5c32ae0 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xa5d6c2f3 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5dd1e2e mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xa5e584e2 mvebu_mbus_get_io_win_info EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa600b906 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xa61de39b snd_soc_put_volsw_range EXPORT_SYMBOL_GPL vmlinux 0xa633bfd1 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xa63b7485 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa65694b4 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xa6755f88 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xa68163fc ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xa6853ef7 mtd_block_markbad EXPORT_SYMBOL_GPL vmlinux 0xa6886c35 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xa68c0e60 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xa69cf78e skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xa69d4dbe xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b224f9 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa6b4392f nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xa6b4ec35 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xa6c3ff8a of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0xa6cc215c input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa6cdd33c sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6e7486b deregister_mtd_parser @@ -23638,31 +23604,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xa79287cb synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xa79d7eb6 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0xa7a0d6bf walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xa7a6e87e ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xa7b00245 snd_soc_dapm_dai_free_widgets EXPORT_SYMBOL_GPL vmlinux 0xa7c8a32e usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0xa7e31373 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0xa7f8ee13 snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xa7f93e8b rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0xa7fe6d14 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0xa807231a sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0xa80b7d84 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xa823ca44 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xa826fde6 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xa82732b1 __mt_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa82cc89c inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa82da1df ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xa83f5518 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa8567d7e of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0xa8616681 mtk_pinconf_bias_disable_get EXPORT_SYMBOL_GPL vmlinux 0xa865747d gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xa8807352 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0xa88898a1 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0xa88a529a crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0xa8a594cb hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xa8b83952 snd_compr_stop_error EXPORT_SYMBOL_GPL vmlinux 0xa8be9af0 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xa8e2433b sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xa8e9ab93 snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL vmlinux 0xa8e9d683 arm_iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0xa8f9fbbf usb_control_msg_send @@ -23670,27 +23637,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xa910e2e4 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9438199 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xa94a9d9b ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xa94dad07 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0xa951ca75 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa9534c16 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95dcc8d blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xa963cfec blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xa963e103 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xa9644338 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xa96b9b8f srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa9805343 usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0xa9943a9a handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a35d23 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xa9e8bc14 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa9eba4fa xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xa9f24140 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xaa02b068 mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0xaa06945c netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xaa125ce6 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xaa07d92f cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0xaa170499 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xaa1f2b85 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0xaa3f6299 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xaa3f9e59 devm_clk_get_enabled @@ -23709,44 +23678,41 @@ EXPORT_SYMBOL_GPL vmlinux 0xaac91140 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xaad09632 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaf873ff unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock EXPORT_SYMBOL_GPL vmlinux 0xab011e82 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xab0756e0 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0xab1379d6 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xab2cccd6 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0xab2ead8f inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xab3d8261 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xab3d8df2 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xab47f033 mtk_clk_register_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0xab4b14a7 mxic_ecc_process_data_pipelined EXPORT_SYMBOL_GPL vmlinux 0xab4c55c4 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab500cfd ata_msleep EXPORT_SYMBOL_GPL vmlinux 0xab591e2d acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xab6b2b1c sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0xab79e986 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect EXPORT_SYMBOL_GPL vmlinux 0xab90a9e0 iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0xab915908 pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xabb0c526 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xabb883ae ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xabd0cab9 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xabe6981b phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xabce5565 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xabe7b7f2 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xabed3302 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xabfc2e57 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0xac131a6e blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xac17da9f wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xac293753 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xac2f1388 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xac303935 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xac3f9f44 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xac40db09 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xac58125b dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0xac5fed20 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xac6e70e1 add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xac8fca83 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xac9d5fbc udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xacaab756 clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacb7c844 list_lru_del @@ -23755,49 +23721,56 @@ EXPORT_SYMBOL_GPL vmlinux 0xacc1b428 usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0xacc3d135 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xacc4afd6 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xacde62a9 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xace1d23d skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0xace9a023 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xacece31d __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xacf446da virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0xad21e72e clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0xad3232de vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xad329224 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad4f9e2e usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad68bf39 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7f0246 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xad8544ca ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xad928021 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada0c558 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xada689e8 pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0xadae6e7b set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xadb76de0 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xadbb7000 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xadc844ed xas_create_range EXPORT_SYMBOL_GPL vmlinux 0xadcaa82a sdhci_set_uhs_signaling EXPORT_SYMBOL_GPL vmlinux 0xadd568cb led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xade362d6 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xadf9f643 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xae177cbb hisi_clk_register_phase EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xae219fa7 iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0xae275dfa mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xae2a805f __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xae34f10d inet_hash EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init EXPORT_SYMBOL_GPL vmlinux 0xae3a962c devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xae5773a7 debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xae6f166d lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xae75a547 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp EXPORT_SYMBOL_GPL vmlinux 0xae8de5d7 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xae9dc75c ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeadda36 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0xaeaf0c16 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xaee28db7 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xaefe3148 nand_prog_page_end_op EXPORT_SYMBOL_GPL vmlinux 0xaf043677 snd_soc_of_put_dai_link_cpus EXPORT_SYMBOL_GPL vmlinux 0xaf151524 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xaf2ea85e security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf35bee3 sdhci_set_power_noreg EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp @@ -23805,13 +23778,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check EXPORT_SYMBOL_GPL vmlinux 0xaf446b9a fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xaf451b56 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0xaf4a22c0 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xaf5c90f3 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xaf6a2063 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xaf6c781f badblocks_check EXPORT_SYMBOL_GPL vmlinux 0xaf70057e tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf73d995 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xaf745797 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xaf751871 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xaf83e886 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xafc91ba9 crypto_stats_akcipher_verify @@ -23821,7 +23790,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xaff03630 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xaff458bf vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb00f3795 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev EXPORT_SYMBOL_GPL vmlinux 0xb0261560 snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes @@ -23829,8 +23797,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb04bdff6 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb0507b6f ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xb068894e fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xb06d4e17 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xb0708ec3 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb076ff97 __tracepoint_sched_util_est_se_tp @@ -23841,7 +23809,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb0acc0e7 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0bb29ee phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0bce21a inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0xb0c538e0 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0xb0f436d3 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xb10852eb __devm_rtc_register_device @@ -23855,11 +23822,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xb13dcc32 mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0xb14119fa scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0xb14abcd4 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb158b30e sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xb159776d stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1756526 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xb185c125 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb1893293 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xb18e86b2 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xb1958569 xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0xb1ae2861 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start @@ -23867,8 +23836,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs EXPORT_SYMBOL_GPL vmlinux 0xb1e90b51 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb2074d61 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xb21c9a5d ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb21b14e9 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert EXPORT_SYMBOL_GPL vmlinux 0xb227d163 usb_enable_autosuspend @@ -23882,23 +23850,27 @@ EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr EXPORT_SYMBOL_GPL vmlinux 0xb272e7f0 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xb2737041 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xb293fbfd udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xb27b824c perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xb2a1e4d8 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xb2ab8955 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0xb2ac12b9 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xb2aee889 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xb2afb4de umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0xb2b79bfc dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xb2bef504 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xb2c10298 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2c58f43 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb2cdfe14 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xb2d467d2 __register_mtd_parser EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xb2e02e98 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0xb2e2741d tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb2e28eed __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem EXPORT_SYMBOL_GPL vmlinux 0xb2e8fca7 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30d6cf9 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0xb31153a7 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xb312e1f9 __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xb3374d43 pwm_capture @@ -23908,6 +23880,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb37134ad usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xb371b6fb mtk_eint_do_init EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb3811e7f bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xb384c43e folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0xb3879e27 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0xb3894f7e iomap_file_buffered_write_punch_delalloc @@ -23919,17 +23892,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xb3c55081 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xb3d280fe __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xb3d3ee2f of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xb3e0f559 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xb3e251ac tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xb3e98ac9 thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0xb3ef72bd mtk_pinconf_drive_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xb3f81680 snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL vmlinux 0xb3feaa1a shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xb4045ee5 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xb40b7607 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xb415a409 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0xb41d6532 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xb4231da8 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xb437cdf0 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL vmlinux 0xb43f4907 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get @@ -23942,21 +23914,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xb479d4da usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0xb48377fa transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c3789f sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0xb4e43d0a dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb502012f ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list EXPORT_SYMBOL_GPL vmlinux 0xb519033d regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0xb51b3b1d eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52c37f8 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xb53214a0 device_rename EXPORT_SYMBOL_GPL vmlinux 0xb547d6e3 mvebu_mbus_add_window_remap_by_id EXPORT_SYMBOL_GPL vmlinux 0xb55dccf8 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul EXPORT_SYMBOL_GPL vmlinux 0xb56f83be snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xb58dacdd security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xb59ba2ae snd_soc_dapm_info_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xb5aa3b85 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted @@ -23972,7 +23944,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb61e7418 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb62e5adc open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xb6303f88 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0xb63424df ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xb63f5bcb shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm @@ -23989,6 +23960,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6ac62c2 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xb6ba4b3d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xb6ba7b42 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0xb6bce718 free_uid EXPORT_SYMBOL_GPL vmlinux 0xb6bf7f95 __cci_control_port_by_device EXPORT_SYMBOL_GPL vmlinux 0xb6c1b04a blkcg_root_css @@ -23996,9 +23968,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6c7dd3c posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xb6cd77e8 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xb6cf6430 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xb6cfeda0 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xb6da4141 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xb6df5898 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xb6dfdff1 mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb705d0e4 snd_dmaengine_pcm_pointer @@ -24013,33 +23983,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb74dc0a3 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0xb75728e3 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xb76cf10b inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7939b38 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xb79b6037 snd_soc_tplg_widget_bind_event EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7ac9b1e xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0xb7bdfe4e __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7d9cf5a pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xb7db8ab2 ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0xb80761be mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xb80fa09e nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xb81699c3 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xb81842d0 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0xb81c72bf scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xb8209c72 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb83c3f9e sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xb84dbc7a crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xb873fe18 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll EXPORT_SYMBOL_GPL vmlinux 0xb87c4b16 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8a353a4 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0xb8a461ff sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xb8c4d04c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xb8cb24f0 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put EXPORT_SYMBOL_GPL vmlinux 0xb8ec11af rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0xb8f67d9c watchdog_unregister_device @@ -24047,10 +24013,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xb905980b regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0xb9081add cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb90cc098 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb9143ff8 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb937bf86 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xb9390490 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts EXPORT_SYMBOL_GPL vmlinux 0xb950b610 snd_soc_resume EXPORT_SYMBOL_GPL vmlinux 0xb9611bd6 blkg_conf_prep @@ -24058,16 +24024,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb98781be sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xb9953ced cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb9aac424 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xb99d7d4a sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9ba9d74 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cea580 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d0ce7d ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0xb9d0f7c2 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger EXPORT_SYMBOL_GPL vmlinux 0xb9e96f19 sbitmap_queue_clear @@ -24075,43 +24040,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9fecbeb snd_soc_component_set_jack EXPORT_SYMBOL_GPL vmlinux 0xb9ff28be vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba09e8b3 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xba1615d4 devres_add EXPORT_SYMBOL_GPL vmlinux 0xba1a1fc6 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xba1e6339 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get EXPORT_SYMBOL_GPL vmlinux 0xba35869c locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xba440a17 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xba440108 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xba458cbe to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0xba54f2d3 of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0xba5835a1 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0xba586826 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xba7436c0 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xba85fe97 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xba8abd41 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xba8ffb5c crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xba9429f3 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0xba9f66a9 usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabba91d bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xbac55e22 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0xbace3461 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0xbad33e86 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xbade7e0f devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf30561 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xbaf511f5 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb09c544 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0bfbd1 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xbb0eefa4 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xbb102ade mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0xbb1c5059 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb2deb18 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xbb486a1c get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb605bf1 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb611edf nf_queue EXPORT_SYMBOL_GPL vmlinux 0xbb649521 fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start @@ -24120,18 +24086,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb78d589 nand_get_small_page_ooblayout EXPORT_SYMBOL_GPL vmlinux 0xbb7e83cd mtk_pinconf_bias_disable_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xbb814647 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xbb8bed76 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0xbb8c80c4 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xbba723d4 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0xbbafb955 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbb82d01 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xbbc9e702 __tracepoint_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xbbd62561 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xbbd80482 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xbbddad1c mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xbbf293c9 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xbc054c79 sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xbc159609 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xbc21122d led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xbc273360 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0xbc2d39a8 mtk_pinconf_drive_get EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap EXPORT_SYMBOL_GPL vmlinux 0xbc35df04 pm_generic_freeze @@ -24146,9 +24114,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xbc702a06 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xbc745695 mvebu_mbus_get_pcie_io_aperture EXPORT_SYMBOL_GPL vmlinux 0xbc82c714 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xbc9131fc __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xbc944768 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xbca2dcb1 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xbca6e76b devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xbcb0bca9 mtk_register_reset_controller_with_dev EXPORT_SYMBOL_GPL vmlinux 0xbcb3251a kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features @@ -24168,23 +24136,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd18f88a kill_device EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd4778c8 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xbd49bb7e int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xbd4f7b3c trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xbd6b9c68 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xbd6d6133 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbd73d1e8 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xbd8264d9 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0xbd85a551 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xbd8aa0a8 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xbd96cca7 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd97aa9a skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xbda0cf06 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xbdcb0016 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xbdcc7999 dev_pm_opp_of_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xbdcd6e5e imx_unregister_hw_clocks EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbddefc48 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xbde3cf2d devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xbdeb1161 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xbdef8f0f ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xbe0aa3e5 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0xbe150979 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xbe1bd94a dpm_for_each_dev @@ -24192,7 +24161,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbe2b6654 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0xbe45858d pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0xbe4ca315 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xbe4f6323 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xbe579045 vga_default_device EXPORT_SYMBOL_GPL vmlinux 0xbe6445f6 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0xbe659089 devm_hwmon_device_register_with_groups @@ -24201,6 +24169,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xbe6e817e snd_soc_debugfs_root EXPORT_SYMBOL_GPL vmlinux 0xbe6f9399 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xbe751d81 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe89c347 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xbe8af6a7 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit @@ -24210,16 +24180,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xbec7cbd3 snd_card_free_on_error EXPORT_SYMBOL_GPL vmlinux 0xbed62f2f relay_reset EXPORT_SYMBOL_GPL vmlinux 0xbedf2670 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xbee3b3cf skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xbee3ca4d of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xbef071c0 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf1d6d2f usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0xbf1e74fb pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf3faac4 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xbf638425 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0xbf68752f snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0xbf6b3044 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xbf71d7ee serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0xbf85bf68 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xbf8e8b22 lp8788_write_byte @@ -24228,7 +24200,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbfb2f7bb xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0xbfb371ea tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc5b77c security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xbfc8ffcd irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0xbfd5d11a kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xbfdefef3 snd_hwparams_to_dma_slave_config @@ -24238,37 +24209,35 @@ EXPORT_SYMBOL_GPL vmlinux 0xbfe84dc9 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xbfec9158 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0xbffe037e devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xc00023a3 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0xc0005f18 icc_disable EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 EXPORT_SYMBOL_GPL vmlinux 0xc0295d4f firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0xc032a66c sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xc03b12cc ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xc04395dd mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc04c869e skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xc050f336 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xc0515716 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc05f5bfe platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xc062fcbe vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index EXPORT_SYMBOL_GPL vmlinux 0xc072d6bd balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xc0738172 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings EXPORT_SYMBOL_GPL vmlinux 0xc0975359 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xc099e15c kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xc09b54cf snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0xc0a159c8 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xc0a8496b usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0b36651 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xc0b4bcc1 mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0xc0c20fb7 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xc0c7ff39 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0dd9f8a extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc0df7222 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 EXPORT_SYMBOL_GPL vmlinux 0xc0ec7bbb iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata @@ -24281,10 +24250,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1259bd1 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1298f65 devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xc1442ba9 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc14b19b3 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xc1615b8f snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc168dad4 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1886e66 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xc189dbd7 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc19489ec devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xc19575ad __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xc198f5f8 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0xc1a7b465 snd_soc_runtime_set_dai_fmt @@ -24292,7 +24263,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1e3c611 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0xc1e44b10 snd_soc_bytes_get EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1e8437a br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xc1eaa20b crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xc1f4f97f devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xc1f57d78 vp_legacy_remove @@ -24306,12 +24276,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0xc24a8fa6 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc2527217 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc2666024 switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xc29742d2 driver_register EXPORT_SYMBOL_GPL vmlinux 0xc299face split_page -EXPORT_SYMBOL_GPL vmlinux 0xc2a067f7 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xc2a2c5cd mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2b8d9a6 class_interface_register @@ -24321,6 +24290,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc2d96e45 class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0xc2eaa8bd __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xc2ef9765 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc2f02efc ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xc317a15e snd_soc_daifmt_clock_provider_flipped EXPORT_SYMBOL_GPL vmlinux 0xc31ff1cf regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xc3264638 thermal_zone_get_zone_by_name @@ -24329,17 +24299,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc3493d9f scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0xc34e4c7b kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xc362bca3 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc3512df1 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc354eade __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3796502 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc37b0780 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc38720c4 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc39f291a ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xc3adbc80 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xc3ae8737 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xc3b06563 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0xc3b201e5 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3ccf047 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xc3cf3f43 nand_readid_op EXPORT_SYMBOL_GPL vmlinux 0xc3da0765 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu @@ -24352,6 +24322,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc42bce9a snd_pcm_stream_unlock EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xc43c1291 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc44647df devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xc4479226 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config @@ -24362,33 +24333,31 @@ EXPORT_SYMBOL_GPL vmlinux 0xc473f58c mtk_clk_unregister_dividers EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 EXPORT_SYMBOL_GPL vmlinux 0xc47e1651 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xc481e332 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xc486a448 nanddev_markbad -EXPORT_SYMBOL_GPL vmlinux 0xc48a09cb sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby EXPORT_SYMBOL_GPL vmlinux 0xc496c91f pm_generic_restore_early EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register EXPORT_SYMBOL_GPL vmlinux 0xc4a320a0 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0xc4a3be02 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xc4b0b59c of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xc4b6369d skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xc4c2f7ac of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xc4c32e4c dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0xc4e5d0d8 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc4f64fae snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0xc4ff8962 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xc50812e5 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xc515ab4e cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xc5278e8e auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xc5284030 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xc5298c7d scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xc538e1ac ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xc52c4ec5 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0xc5479846 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc562269b ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc571e8e3 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xc573268b ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc57683fa xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array @@ -24399,17 +24368,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xc59bb442 snd_soc_component_compr_free EXPORT_SYMBOL_GPL vmlinux 0xc59ecdce vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xc5a8887c regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc5b23c47 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xc5c29e30 usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL vmlinux 0xc5cae47d fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0xc5d17d91 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xc5d28da5 xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0xc5d62268 get_tree_mtd EXPORT_SYMBOL_GPL vmlinux 0xc5eb04a6 put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0xc5f337d7 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xc615ff4c fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xc6169758 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61af47f ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xc6262b4e devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xc62a6e44 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0xc62d4013 class_remove_file_ns @@ -24418,10 +24385,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xc63e7a06 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xc656a124 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xc658a7ec __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6753862 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6799fab tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xc6839be5 ohci_hub_control @@ -24436,22 +24401,25 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6adc8ba __xas_next EXPORT_SYMBOL_GPL vmlinux 0xc6b65e75 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0xc6bc444c bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xc6bcee76 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xc6c51a93 pse_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xc6d2979a mtk_pinconf_adv_drive_set EXPORT_SYMBOL_GPL vmlinux 0xc6e16c33 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xc6e38b4c raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head EXPORT_SYMBOL_GPL vmlinux 0xc6ec0d7a gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xc6efd9f1 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0xc7053e32 deregister_mtd_blktrans EXPORT_SYMBOL_GPL vmlinux 0xc7058143 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xc70ed67e __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xc71b6b68 nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xc727dd9f bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0xc7290a96 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xc72b5a40 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc73b2405 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xc73c7c19 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xc740d45b devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xc7463988 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xc74ffbb5 pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0xc75b81c3 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xc779eb7a pm_runtime_suspended_time @@ -24463,17 +24431,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xc7aede70 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xc7b3bdcf pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0xc7b46f3c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc7bda05b metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc7bdfd5f spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0xc7ce4e2d tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0xc7de4244 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf EXPORT_SYMBOL_GPL vmlinux 0xc7f0e04a usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0xc7f9991b __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc802cad6 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xc80ad3e4 rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc81093fe bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xc812399d __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xc815358e regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xc822f0b1 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xc82655dd sbitmap_queue_recalculate_wake_batch @@ -24484,12 +24454,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xc848d8dc usb_ep_queue EXPORT_SYMBOL_GPL vmlinux 0xc852a612 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85cbd75 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xc860941e serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0xc86e2335 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL vmlinux 0xc8751376 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xc886f627 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xc888a79e regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xc88f6755 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xc890b45f pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xc8915218 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets @@ -24512,9 +24481,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xc93be9a1 nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc94366db cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc9442fe0 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xc948a6de pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc95671c5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc95b1306 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xc95ca26a snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0xc9693fa2 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read @@ -24526,24 +24497,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc98de4c4 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc9912652 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc994e53e ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free EXPORT_SYMBOL_GPL vmlinux 0xc9a32f88 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xc9a52e7e skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0xc9db0991 ZSTD_isError +EXPORT_SYMBOL_GPL vmlinux 0xc9dece7e net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9ec515e blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xc9edc38f xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xc9efc30e md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca016cb3 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xca07a356 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xca0c35fe __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xca0ef9db vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0xca1511e6 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xca27baf4 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xca2adf41 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xca2e63c7 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xca393317 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xca40ebc3 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops @@ -24556,6 +24529,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xca7d5900 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa0ffef security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xcaa3fecb iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0xcaa8b661 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xcaac0532 snd_card_disconnect_sync @@ -24563,14 +24537,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xcab57780 of_remove_property EXPORT_SYMBOL_GPL vmlinux 0xcab62dc0 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad76020 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xcadac2df mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0xcadcfb7c vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcae51e34 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xcae5e27e mt_next EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line EXPORT_SYMBOL_GPL vmlinux 0xcb030dac cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0xcb11e043 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xcb168a6a dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xcb208d9c nand_read_page_hwecc_oob_first EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops @@ -24582,12 +24555,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xcb7794aa phy_configure EXPORT_SYMBOL_GPL vmlinux 0xcb7c69d9 of_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xcb974cc3 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xcb9f8af5 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xcba837dc tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0xcba912be dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0xcbaa90e1 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0xcbab8380 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xcbb92a2e cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xcbbee85b lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xcbdf95f0 dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages EXPORT_SYMBOL_GPL vmlinux 0xcbe97b5b mnt_drop_write @@ -24596,9 +24568,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcc06000f fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0xcc10ccaa pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0xcc1726f8 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xcc1791eb ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xcc1c6b96 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xcc26b3ef devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc2a44f2 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xcc2a8b90 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xcc2b8114 dbs_update @@ -24611,20 +24581,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xcc638b0d dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0xcc657bfd sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xcc6a6242 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xcc6f433d ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xcc6c0845 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xcc769bfa of_get_named_gpio_flags EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xcc9058e4 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xcc9dee91 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xcca9a065 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xccc7a818 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xcccb4528 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce4cce4 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xccfc66dd devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcd0fdf79 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0xcd10560f i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xcd1de8a8 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size @@ -24635,6 +24604,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcd3c7972 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xcd40bcab pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xcd4e1a3b __class_register +EXPORT_SYMBOL_GPL vmlinux 0xcd52624d skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xcd5bee44 of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0xcd5f7eaa power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xcd5fc2dc of_clk_get_from_provider @@ -24642,6 +24612,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd7b36de crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xcd7d9613 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xcd867f90 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu @@ -24651,12 +24622,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd22b19 snd_soc_info_volsw EXPORT_SYMBOL_GPL vmlinux 0xcdebe9c6 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xcdeeaaa0 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xcdf93a97 device_del +EXPORT_SYMBOL_GPL vmlinux 0xcdfec201 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0xce12afa4 spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0xce1969e2 omap_iommu_save_ctx EXPORT_SYMBOL_GPL vmlinux 0xce1bd0a2 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xce3f7a2b ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce5325ce ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xce638a3b vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xce66c2bb regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching @@ -24675,7 +24646,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xcec60f78 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0xcec717f7 serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0xced69f85 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xcedabaee bio_poll EXPORT_SYMBOL_GPL vmlinux 0xcedec700 wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee825b3 xas_init_marks @@ -24683,14 +24653,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xceed9608 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xcf036f50 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xcf0b35f4 ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0xcf0ca177 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0xcf0ca65b spi_setup EXPORT_SYMBOL_GPL vmlinux 0xcf10bd63 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xcf2381af ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xcf2b46c5 __srcu_read_lock EXPORT_SYMBOL_GPL vmlinux 0xcf39c0cc clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xcf4558f6 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xcf5cf39d platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcf626ae7 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xcf628b33 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0xcf9094d5 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xcf99f778 vp_legacy_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xcf9ca526 blk_trace_startstop @@ -24701,9 +24675,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfc7b5ab meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0xcfdfdc32 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xcfe0a764 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xcff93466 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xd0069203 usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xd01cad59 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd05c2bce mas_empty_area @@ -24712,10 +24686,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xd06cb122 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xd07bb2fd snd_soc_info_xr_sx EXPORT_SYMBOL_GPL vmlinux 0xd07dde43 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd08003f4 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xd084ddc0 component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0xd086a354 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0xd08bf184 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xd09b2052 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xd0b7ed13 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0d22bb4 nanddev_ecc_engine_cleanup @@ -24726,6 +24700,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd0f218b7 mtk_clk_gate_ops_setclr EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xd1078915 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xd1151c2f netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xd11c474d mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0xd142c501 mas_prev @@ -24733,27 +24708,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear EXPORT_SYMBOL_GPL vmlinux 0xd1489617 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xd14cfb61 request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xd156c1ef sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xd15880fb nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0xd159be73 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xd15caa2b dma_resv_get_singleton EXPORT_SYMBOL_GPL vmlinux 0xd15d8859 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0xd15de35c blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0xd15f38dc clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xd16aea39 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xd178aa91 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xd178def7 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0xd17eca2e led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xd17fd7ee qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0xd19420ab xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b3769b ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xd1b601a9 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd1bace42 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xd1bcfb4a dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd1c7deb3 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on EXPORT_SYMBOL_GPL vmlinux 0xd1ccb3ba trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0xd1dcfd07 nanddev_ecc_engine_init EXPORT_SYMBOL_GPL vmlinux 0xd1ec5e4a usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd1f02c41 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0xd1f22c99 usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get EXPORT_SYMBOL_GPL vmlinux 0xd1fad04b pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xd1fe8320 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xd20cf554 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain @@ -24764,21 +24746,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xd23632f6 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0xd2426a3d kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24f0392 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0xd25f8477 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd263cbda snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xd26feab4 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0xd27b40bb tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0xd27ec80c mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xd28c3026 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd286e7eb dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xd29dcbd3 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xd2a49d75 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode EXPORT_SYMBOL_GPL vmlinux 0xd2b93f2f snd_soc_component_async_complete EXPORT_SYMBOL_GPL vmlinux 0xd2ba8795 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd2cc2e1d bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2da3ff1 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xd2db1365 sdhci_cqe_disable EXPORT_SYMBOL_GPL vmlinux 0xd2df9930 extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xd2e3afdb clk_hw_is_enabled @@ -24791,21 +24776,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd31b28d6 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xd31cabbd rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd31eae36 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xd31f06f9 clk_regmap_gate_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xd333ccb1 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xd33ab5a4 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed EXPORT_SYMBOL_GPL vmlinux 0xd3446e88 snd_dmaengine_pcm_pointer_no_residue EXPORT_SYMBOL_GPL vmlinux 0xd34ea918 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd36fee17 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xd37063a2 ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 EXPORT_SYMBOL_GPL vmlinux 0xd38b1615 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xd38e9826 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xd39071e6 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xd39619b4 serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ac206e ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xd3bb005a spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0xd3c12ee5 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xd3c25d2d fwnode_connection_find_matches @@ -24816,16 +24798,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq EXPORT_SYMBOL_GPL vmlinux 0xd413221e dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xd41f264a __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0xd42bde26 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd42f29c7 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xd42f938b snd_soc_find_dai_with_mutex EXPORT_SYMBOL_GPL vmlinux 0xd432d55e clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xd432d806 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd436fc35 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd4554880 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xd4591466 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0xd4594590 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0xd464172f devm_of_phy_get @@ -24835,11 +24815,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xd4720313 dax_inode EXPORT_SYMBOL_GPL vmlinux 0xd47387cb mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xd492ca04 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd4984bd5 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0xd4a7fe13 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0xd4a83c31 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put @@ -24851,43 +24829,36 @@ EXPORT_SYMBOL_GPL vmlinux 0xd512dbbb icc_enable EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xd525aada crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0xd52dc005 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd538c800 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xd53917eb snd_fasync_helper EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5763492 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xd57a167b serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xd58d35f6 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xd596a56b ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a4f4e2 strp_stop EXPORT_SYMBOL_GPL vmlinux 0xd5a6c2a6 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xd5a87517 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xd5aa5a65 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xd5ad3897 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xd5b01faf skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0xd5bbc751 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd5c1d907 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xd5d6b09b clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xd5dd3a44 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xd5ea5d51 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0xd60234f5 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xd60363eb tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0xd6074cfd usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xd6204dc1 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xd629b8f6 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xd62e3a5c badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0xd63a1991 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xd63b4c94 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xd647de7a ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0xd64b1fe3 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xd658e504 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0xd65c0bce pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xd65d9a36 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xd66defe8 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd686d5e9 mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0xd68b7414 blk_queue_rq_timeout @@ -24900,6 +24871,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd70245a4 fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xd710358e tpm_send EXPORT_SYMBOL_GPL vmlinux 0xd71539ef sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd72860b0 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xd728bab6 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0xd72a2bc3 devm_add_action EXPORT_SYMBOL_GPL vmlinux 0xd7378594 usb_hcd_check_unlink_urb @@ -24913,21 +24885,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints EXPORT_SYMBOL_GPL vmlinux 0xd76ead90 buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0xd76f8539 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xd77651cd __trace_trigger_soft_disabled -EXPORT_SYMBOL_GPL vmlinux 0xd776fbb0 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xd778b5ac trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd7865d50 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd7908320 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0xd79502ca is_software_node EXPORT_SYMBOL_GPL vmlinux 0xd79a30d6 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd79f0a76 nf_route EXPORT_SYMBOL_GPL vmlinux 0xd79f4b93 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xd7a36e25 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd7b2bf0f blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xd7b6512b usb_string -EXPORT_SYMBOL_GPL vmlinux 0xd7be4046 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xd7cf1d4f inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xd7d0c880 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks @@ -24946,6 +24916,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd842d47c watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock EXPORT_SYMBOL_GPL vmlinux 0xd84da071 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd8576bc1 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xd8720ce1 phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0xd877caf0 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk @@ -24956,33 +24927,38 @@ EXPORT_SYMBOL_GPL vmlinux 0xd8ab16f5 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xd8aeb321 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd8ce4101 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8cea90f __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8dca8c1 usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0xd8e8d203 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xd8ea7aa2 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xd8f04043 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xd900f4e9 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xd90369a7 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd937f2ad ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xd94954c1 mtd_wunit_to_pairing_info EXPORT_SYMBOL_GPL vmlinux 0xd94d6e62 cpts_release EXPORT_SYMBOL_GPL vmlinux 0xd94fbd2c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xd955d6cd sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd95ebb4a ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xd961e5b6 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xd9678ede dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xd968560a inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0xd97d19e2 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xd987ab35 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xd989f4ac subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd9aa7899 xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0xd9b0548d gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xd9b121f5 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xd9bb076e sbitmap_any_bit_set EXPORT_SYMBOL_GPL vmlinux 0xd9cbe86a usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d7e788 find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0xd9d8d3ef __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9eb0058 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xd9f29440 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xd9f4e1a4 of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xd9f54741 sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write @@ -24994,29 +24970,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xda15b80a pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xda1a7c91 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda439f72 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0xda475d2f device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xda58b896 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xda5b69c2 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xda64a8bc skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xda6fae43 arm_iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xda7072df devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xda82247b pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert EXPORT_SYMBOL_GPL vmlinux 0xdab7061b serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xdac18c53 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xdad7e5eb fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xdae5eb75 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0xdae8aa6f attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdafdb6fe dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xdaff96fc bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xdb0113a5 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xdb079a7c ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xdb102a9d rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xdb10e064 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xdb141d36 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xdb21d29b ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xdb1b64c8 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xdb1da816 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xdb2526b0 meson_clk_mpll_ops EXPORT_SYMBOL_GPL vmlinux 0xdb3020a0 tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0xdb30c2d5 regulator_notifier_call_chain @@ -25024,7 +24997,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdb4bd0dc pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0xdb5052be badblocks_init EXPORT_SYMBOL_GPL vmlinux 0xdb6c2ce6 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdb6e2fd7 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xdb6fce04 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset EXPORT_SYMBOL_GPL vmlinux 0xdb80f641 snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock @@ -25032,10 +25005,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xdba31a2e extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0xdbb13c07 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xdbbe86de xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xdbd1461c addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xdbca113a xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe6d555 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xdbe18042 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbf2bd81 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xdbf30703 anon_inode_getfd @@ -25044,7 +25016,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc0b09db bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xdc3c797f __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xdc0b1997 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xdc0f1566 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xdc226356 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xdc3e95b9 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent @@ -25052,20 +25026,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc842f2a regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdc8e08f3 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xdc944b79 genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0xdc94e615 powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcb08c3b ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdcb10fb0 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xdcc4a263 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdd05e870 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0f076a ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xdd3b5d15 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xdd40b7ee sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd4f89f0 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xdd53aebd soc_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd669d4f of_icc_get_by_index @@ -25076,20 +25047,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck EXPORT_SYMBOL_GPL vmlinux 0xdd936d60 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0xdda3e917 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xdda7bd6f edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0xddad8148 wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0xddade827 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xddb8edd5 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcdf009 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xddce070d gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xddda280f pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0xddec49e5 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xdded0330 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xddee2f5e fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xddf7f2ac cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xddff72ac fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0xde15a7ca regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xde244d66 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xde32daef platform_bus EXPORT_SYMBOL_GPL vmlinux 0xde343a2f fsverity_file_open @@ -25103,6 +25078,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 EXPORT_SYMBOL_GPL vmlinux 0xde8026bb dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xde80de94 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xde879333 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xde885977 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0xde8931da vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0xde8cfc56 snd_dmaengine_pcm_close_release_chan @@ -25110,16 +25086,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xde9e164c pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xde9e3ae6 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xdea18023 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xdeb2b109 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0xdec0b4d6 mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xdec64aa4 pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0xded5887f pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xdee66b95 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xdefa3e4e pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xdefa8ed7 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0d2423 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xdf0dac19 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf19dfa2 sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0xdf22eb92 blk_rq_prep_clone @@ -25130,6 +25108,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdf2f193f of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0xdf329cc0 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xdf6ca4c8 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xdf8c5ba0 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xdfbbfc8c bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0xdfbfe74c tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync @@ -25141,27 +25120,28 @@ EXPORT_SYMBOL_GPL vmlinux 0xdfdf60f7 nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xdfe17d05 extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xdff3078d usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xdff4d603 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xdffb03ef ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0xe004d476 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe008db08 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe00ed9a9 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe0126bdc __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xe012f6d0 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0xe0181eb3 virtio_reset_device EXPORT_SYMBOL_GPL vmlinux 0xe01db06f dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0xe02d2ecf sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe03b1098 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xe03b88ec crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xe03e690f tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0xe0466eb0 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0xe0494c01 get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe052d2df ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xe056bf17 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe0580a54 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xe05be67c dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu EXPORT_SYMBOL_GPL vmlinux 0xe06108db icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xe064e36a mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xe06bbe26 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xe06d39e4 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xe072e995 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe0752445 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xe07953e3 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0xe07ce613 of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0xe098a028 of_irq_get @@ -25171,17 +25151,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xe0aea91b sdhci_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0b7c429 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xe0bb96a7 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xe0d57332 simple_rename_exchange EXPORT_SYMBOL_GPL vmlinux 0xe0e2d689 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xe0f3122c handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0xe0fb8afc edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xe109d77b bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xe1107719 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0xe11962e9 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0xe11a73af mxic_ecc_get_pipelined_ops EXPORT_SYMBOL_GPL vmlinux 0xe11ad7f7 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0xe11b2ca6 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe11c17d5 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister EXPORT_SYMBOL_GPL vmlinux 0xe168cbd2 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xe16da85b sdhci_alloc_host @@ -25191,7 +25170,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe189554f wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0xe1978076 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe1ada25f devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xe1b5470e dt_init_idle_driver EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off @@ -25199,60 +25177,58 @@ EXPORT_SYMBOL_GPL vmlinux 0xe1efa2b8 iommu_map EXPORT_SYMBOL_GPL vmlinux 0xe1f3b6d1 mtd_is_locked EXPORT_SYMBOL_GPL vmlinux 0xe1f62899 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xe1f98b5d ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0xe1fee3c4 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xe204c2ec blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xe206fd63 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0xe20871bc sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe21bdd7c ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe22123af security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe2380c5e snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0xe23adc89 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xe24202db nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xe253a8a2 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0xe25d3955 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xe263f314 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xe26985e7 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe291a293 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xe2a44d81 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b64b24 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xe2b94161 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xe2be105b ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0xe2c6a31b iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0xe2d52f30 hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe2dbb0ac __put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0xe2e512ff mtd_blktrans_cease_background EXPORT_SYMBOL_GPL vmlinux 0xe30e1c34 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xe319215d ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe322cac8 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xe36d7aac crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0xe377f5ce snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xe378e749 spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xe3808e17 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe38a4cae alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xe38cdb1f crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xe393f877 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xe3947cad trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39fd24c ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xe3a00057 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xe3a27b4c tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xe3a46f23 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3bdb341 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xe3cb2329 snd_soc_card_add_dai_link EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3fe231a __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4215214 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xe4305dea mtd_writev EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe4319408 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xe434ffae xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xe440dbf6 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xe44d3906 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xe45a9518 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe4606e10 ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0xe46abf86 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xe473db61 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0xe47999a4 kasprintf_strarray @@ -25261,14 +25237,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xe4978995 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xe49e30b1 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe4a6052e ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xe4a811c5 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xe4ab1056 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe4a875c6 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b2d2e0 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xe4b54a2a sdhci_pltfm_free EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b85295 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe4b85ede ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xe4bda814 snd_soc_dapm_mux_update_power EXPORT_SYMBOL_GPL vmlinux 0xe4c2b938 fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm @@ -25276,7 +25252,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4cb45e9 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xe4cf10ba hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xe4dd2e98 null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0xe4dff433 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL vmlinux 0xe4fa5ad1 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xe526ee69 blk_mq_alloc_sq_tag_set @@ -25284,47 +25259,49 @@ EXPORT_SYMBOL_GPL vmlinux 0xe53fe944 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xe55162ce scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0xe55a6d77 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xe55c1fbe blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xe55fa418 snd_soc_dapm_new_controls EXPORT_SYMBOL_GPL vmlinux 0xe56e6923 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL vmlinux 0xe5713a8f crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xe57831c2 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xe5788595 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe585c44f percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5970bc0 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL vmlinux 0xe5a31de5 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xe5a3edda eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xe5a7a4ee devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0xe5aa7dfd i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0xe5adb44d sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xe5b03f86 regmap_read EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe61a938f powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xe6201579 pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xe622556c syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6295b79 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe62b247e phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xe638be26 snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL vmlinux 0xe644752a irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0xe6471cc7 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xe64daad4 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xe6697e52 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xe671800b cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0xe6746396 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe67c684e mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xe682531a wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xe684f20e tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xe694bef1 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xe6940ba2 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xe6968b95 ping_close EXPORT_SYMBOL_GPL vmlinux 0xe69caa96 blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0xe69db68f dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xe6a82c95 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xe6a84099 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0xe6c67b33 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6faeaf9 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70b278b xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xe7140a2c ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe718f4b9 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xe728b5a9 regmap_field_test_bits EXPORT_SYMBOL_GPL vmlinux 0xe72c0af5 sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0xe72eeb19 mas_store_prealloc @@ -25339,7 +25316,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit EXPORT_SYMBOL_GPL vmlinux 0xe78fca34 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xe7931217 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xe7978ce9 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xe7ace75e perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0xe7ad29fa regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0xe7b8c253 dmaengine_desc_set_metadata_len @@ -25350,6 +25326,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds EXPORT_SYMBOL_GPL vmlinux 0xe80e65e2 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81e5c52 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xe820420a __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0xe821d6f5 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xe844f091 dma_get_required_mask @@ -25359,7 +25336,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe8702355 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xe893fc20 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xe89a7dde pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xe89d71d5 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0xe89fbb16 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xe8a7b40f pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xe8b0c175 subsys_system_register @@ -25370,8 +25346,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0xe8c8ea3d usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0xe8cda6a3 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8d77f61 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xe8fc556a dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xe8ff39a1 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xe900bd46 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xe9036b7f sdhci_execute_tuning EXPORT_SYMBOL_GPL vmlinux 0xe9064459 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xe9112379 da9052_adc_manual_read @@ -25380,6 +25358,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xe92fcc5b iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0xe9347b8a adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9406054 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xe94153c7 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0xe943fb1d gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp @@ -25395,8 +25374,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xe9971b3c __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0xe9983dac devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0xe9994d15 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xe99967cd ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xe9a09a87 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xe9a3c153 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe9a3cc0b dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xe9a40402 nand_ecc_init_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0xe9a4c003 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite @@ -25404,8 +25384,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xe9a8d99a __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0xe9aa91e8 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xe9af3ff5 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xe9b0a535 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xe9b2b607 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xe9bc927d ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xe9bec437 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap @@ -25420,43 +25400,51 @@ EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea01fc99 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0xea0910fc sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xea0ef6c6 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xea10de0e led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea1ccda1 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5da6d5 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xea518b02 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xea612bcd ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0xea855a16 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xea87d539 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xea889ed7 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xea9d3017 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xeaba8295 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xeab26891 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0xeac574c7 of_device_request_module EXPORT_SYMBOL_GPL vmlinux 0xeac918dd mtd_write_oob EXPORT_SYMBOL_GPL vmlinux 0xeac9b92b crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0xeacaa558 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xeacb46e0 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xeacf369c snd_soc_dapm_sync EXPORT_SYMBOL_GPL vmlinux 0xeacfc6c8 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL vmlinux 0xead1bf4e ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead4deb3 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare EXPORT_SYMBOL_GPL vmlinux 0xeade267e wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae7f7ac raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0xeae91f3f snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL vmlinux 0xeaeb3a6e driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xeafff86b devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0xeb1a6113 i2c_client_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xeb2b7cf3 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL vmlinux 0xeb30a0f3 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xeb493374 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xeb499699 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0xeb69231f alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk EXPORT_SYMBOL_GPL vmlinux 0xeb7255f2 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xeb72d151 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0xeb7a6d34 blk_mq_quiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work @@ -25470,20 +25458,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xebe724b9 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0xebe7cdae fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xebf116cd phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xebf30201 devm_mtk_clk_mux_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xebf53e58 snd_soc_dai_set_fmt EXPORT_SYMBOL_GPL vmlinux 0xebf56371 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xec0525bb kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xec0a1679 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xec1356c6 clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xec182a0b proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xec30732b of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xec43f60a find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xec5002fd badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xec5cf831 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xec5f106b shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7ae17b pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xec7d0a2e devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0xec88a3d0 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xec8f7a40 mtk_mmsys_ddp_dpi_fmt_config @@ -25491,45 +25480,39 @@ EXPORT_SYMBOL_GPL vmlinux 0xecadaba1 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xecbb5541 snd_soc_put_volsw EXPORT_SYMBOL_GPL vmlinux 0xecc191e8 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xece71ad4 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xed06653e ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xed08c2be led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0xed0e35dc get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0xed103f5f __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xed255b3e synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed2c8279 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0xed5266cd perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xed5fe298 inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0xed6013f3 net_selftest EXPORT_SYMBOL_GPL vmlinux 0xed66c4e8 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0xed76c4d8 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xed788f1f sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0xed792393 devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xed7bcd8c rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xed7d0ba3 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xed8414df find_vpid EXPORT_SYMBOL_GPL vmlinux 0xed8444b1 mtk_clk_register_ref2usb_tx EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed8e40ee bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr EXPORT_SYMBOL_GPL vmlinux 0xed91eeb4 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xeda3f2af dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xeda88ca1 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0xedc38dc3 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xedc9a6bd usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xedfe0a4f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xedef0f99 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xee0c7768 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0xee17a9e8 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xee207503 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xee207624 xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0xee289505 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xee38e029 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee5f3aa5 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xee615f91 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xee6a8971 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee83f802 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xee8fba1a devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0xee927be8 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xee964d76 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xee968d70 irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0xee982863 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xee998d7c mvebu_mbus_add_window_by_id @@ -25538,14 +25521,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xeeb2f3b9 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xeebce03c snd_ctl_add_vmaster_hook EXPORT_SYMBOL_GPL vmlinux 0xeecef97c virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xeedce2ca switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedd9d25 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xeee0749b __put_net EXPORT_SYMBOL_GPL vmlinux 0xeee5fe32 bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xeeebf7d3 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xeef79f17 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xeef9b260 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef06c0bd skb_segment EXPORT_SYMBOL_GPL vmlinux 0xef0be6a0 vcap_rule_iter EXPORT_SYMBOL_GPL vmlinux 0xef1618e5 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put @@ -25561,11 +25544,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef7526d7 ahci_shost_groups EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xef7d02b6 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef95069e perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xef9a8cfe __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa5959c inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefb3ce9b devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xefc63206 nand_ecc_choose_conf EXPORT_SYMBOL_GPL vmlinux 0xefc7d326 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0xefcb306e led_init_core @@ -25573,21 +25558,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0xeff977da snd_soc_component_initialize EXPORT_SYMBOL_GPL vmlinux 0xf0077a86 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf01feab2 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xf00e3627 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xf0337927 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xf04d2ddd __tracepoint_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf0665f7b nand_reset_op EXPORT_SYMBOL_GPL vmlinux 0xf0739b2f sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf07f498e tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xf0869528 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xf090380e genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf093f11a __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xf095a52a fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xf0aa1da9 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0xf0af29ad devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0xf0b0fdfd wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0b25745 switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0xf0b34c58 serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xf0cb6c09 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0xf0d1f041 devl_trap_policers_unregister @@ -25599,31 +25585,36 @@ EXPORT_SYMBOL_GPL vmlinux 0xf10b59fc cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xf110e892 snd_soc_card_jack_new_pins EXPORT_SYMBOL_GPL vmlinux 0xf112a22b thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf117117b ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xf11891d6 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xf11eb6d1 lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll EXPORT_SYMBOL_GPL vmlinux 0xf1275bd2 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xf145fcac spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xf14931ee nl_table EXPORT_SYMBOL_GPL vmlinux 0xf150144a snd_soc_component_get_pin_status EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf1583f63 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xf165ebff meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xf16de05d ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf187070c __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf190ec9c bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xf1958f86 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xf1a11dbc pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xf1a13a37 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xf1a8a111 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xf1b1c9cc of_property_read_variable_u16_array EXPORT_SYMBOL_GPL vmlinux 0xf1b92aaa rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xf1d16d06 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xf1e501e8 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0xf1fdd0a1 iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0xf1fe27ff usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xf21976b1 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf220888b task_cls_state EXPORT_SYMBOL_GPL vmlinux 0xf2233c70 kern_mount EXPORT_SYMBOL_GPL vmlinux 0xf2286856 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0xf22bcc36 debugfs_create_bool @@ -25632,7 +25623,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf242b481 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0xf247f127 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0xf26034b8 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf263be63 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xf272be6d gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on @@ -25648,7 +25638,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf2f59526 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf3007c03 of_css 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 @@ -25662,10 +25651,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xf350bb8d mas_erase EXPORT_SYMBOL_GPL vmlinux 0xf353a73c mtd_point EXPORT_SYMBOL_GPL vmlinux 0xf363632a debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xf363c1d7 mmput_async EXPORT_SYMBOL_GPL vmlinux 0xf37323c3 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf3823392 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf38c51a4 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xf3922b39 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0xf394544d dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp @@ -25681,29 +25672,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xf3e94565 mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0xf3f5d705 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xf3f73541 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xf40267f5 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf40ba2eb tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0xf434d17f power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xf4365123 kthread_data EXPORT_SYMBOL_GPL vmlinux 0xf436d85d phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xf443c2a0 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xf4479b5f phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0xf44da105 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4507421 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xf4531895 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xf457c9fa ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause EXPORT_SYMBOL_GPL vmlinux 0xf46fdb69 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf4789414 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf47d31ba sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xf47d51c6 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0xf47f8fca dpcm_be_dai_trigger EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf4979889 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0xf4a3a1de get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d1cdbe fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xf4dfd951 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xf4e6ea5e pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xf4ebd4c4 kgdb_unregister_io_module @@ -25711,9 +25705,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xf50bc7ea devl_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xf51500be devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xf51b04b9 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xf5270a0f nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 EXPORT_SYMBOL_GPL vmlinux 0xf52ec840 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf5361cc4 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xf531a263 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xf53f4bc4 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys EXPORT_SYMBOL_GPL vmlinux 0xf541b2e5 debugfs_create_u64 @@ -25732,13 +25727,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xf5bc38a1 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5c88a62 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xf5cc40e6 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xf5d4e7dc cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xf5dbc921 mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0xf5e1ad81 devm_of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xf5e7e23a sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0xf5ed9b45 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f9d939 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xf611b5cc regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf6201f5c debugfs_create_u16 @@ -25746,12 +25742,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xf62fce54 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 EXPORT_SYMBOL_GPL vmlinux 0xf63da6e8 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xf6453f1f ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xf64f1125 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf66e6785 __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0xf673aae3 __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0xf6787c62 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xf68495b8 blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0xf6a6fb76 hwrng_msleep EXPORT_SYMBOL_GPL vmlinux 0xf6ac9e65 irq_domain_remove @@ -25759,7 +25753,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf6baaded devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xf6bdf68c snd_soc_put_strobe EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c49f6b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xf6c3b56d sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf6ef314e serial8250_em485_config @@ -25777,16 +25771,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xf7466cee powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf768f3f5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf76a2e9e devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer EXPORT_SYMBOL_GPL vmlinux 0xf77bb462 blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0xf78fa4af get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xf793d16b class_find_device EXPORT_SYMBOL_GPL vmlinux 0xf796bfa4 stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0xf7b30d45 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xf7b9a018 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7d8b893 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xf7e613ed cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf7eaa54f ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xf7efb74b tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xf80455a1 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0xf807f242 rio_route_get_entry @@ -25799,6 +25793,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xf83e1f76 pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xf852b646 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xf8650a87 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xf86e2fc7 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf870125c nd_tbl EXPORT_SYMBOL_GPL vmlinux 0xf87392d9 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit @@ -25806,6 +25802,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf8ea346f power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fb6d8c bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xf90729be thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xf9079556 regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0xf90e7c0c __mnt_is_readonly @@ -25814,6 +25811,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xf93e0dc9 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf954a610 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf95cd63c register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf95ce2de sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap EXPORT_SYMBOL_GPL vmlinux 0xf965ca53 usb_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node @@ -25827,12 +25826,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0xf9d35e72 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xf9d93d6e pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xf9df6416 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xf9f11911 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xf9f1cfcd icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy EXPORT_SYMBOL_GPL vmlinux 0xfa07d96c sdhci_add_host EXPORT_SYMBOL_GPL vmlinux 0xfa0eb602 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xfa0ed9ea ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa357251 stmpe_reg_write @@ -25840,6 +25838,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa3d6768 snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL vmlinux 0xfa438706 md_start EXPORT_SYMBOL_GPL vmlinux 0xfa489574 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xfa4e0ba0 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xfa5f9005 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xfa74ebbe sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer @@ -25857,8 +25856,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line EXPORT_SYMBOL_GPL vmlinux 0xfab868d8 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xfaba3f91 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xfacaebfd usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xfad42fbf fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xfad6e45a call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax EXPORT_SYMBOL_GPL vmlinux 0xfadf5e20 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0xfae243f6 rio_unregister_mport @@ -25871,9 +25872,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xfb32dd79 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0xfb55947a irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb5fbd9e ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xfb63e50c tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xfb6b291c devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb6b72d3 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name @@ -25881,15 +25882,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xfb7971ca handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last EXPORT_SYMBOL_GPL vmlinux 0xfb82c16e mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb8c5ef1 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xfba1a8d9 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0xfba7d726 stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xfbadd8e3 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xfbb22ee0 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbbded69 spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0xfbca4bf3 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfbd05945 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xfbd59e79 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xfbec4333 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0xfbec96c8 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0xfbf14bfc serial8250_init_port @@ -25903,23 +25904,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xfc23985b pwm_put EXPORT_SYMBOL_GPL vmlinux 0xfc24cd43 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0xfc2ffa94 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xfc5773f0 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xfc7e489a devm_hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0xfc7e9b22 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xfc8776a8 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xfc8a4279 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0xfc8f5a4f tps65217_reg_read EXPORT_SYMBOL_GPL vmlinux 0xfc8f5f0c kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xfc967f5b devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xfca36861 snd_soc_new_compress EXPORT_SYMBOL_GPL vmlinux 0xfce50a92 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xfcec0a96 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xfceffd6b fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xfcf4bee3 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0xfcf64d9d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcf9597d tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xfcf98286 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd08d534 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xfd13a777 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xfd30e736 rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray @@ -25930,27 +25930,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xfd5c15f7 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0xfd736b59 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd8d84f8 tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0xfd99b3ab dev_pm_genpd_get_next_hrtimer EXPORT_SYMBOL_GPL vmlinux 0xfd9c4f34 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0xfdae56ce get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xfdb0a03e pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0xfdb83dd6 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbd8bb4 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0xfdd58dbb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xfde1f6fb sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfde6de9a __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xfde99bfe gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xfdeb16b3 iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0xfdf2c350 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfe016a98 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfe133878 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe293f2f sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xfe37b4da platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4b377f __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xfe4fbc75 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xfe68dbb7 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfe696e35 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0xfe6b3597 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xfe6e0fd8 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xfe6e8a9e __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xfe790431 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfe79a0cc sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xfe87f078 omap_iommu_restore_ctx EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free @@ -25959,28 +25969,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xfea44103 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0xfea5efbe spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xfeb8fa97 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfebb0ed3 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfec5d401 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0xfecb92c7 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed71772 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xfedff9b7 clk_hw_init_rate_request EXPORT_SYMBOL_GPL vmlinux 0xfee6129b devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xfeebf5da udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xfefb6c81 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff0b3c9d dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xff0e74cc ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff25426a device_add EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff421b57 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role EXPORT_SYMBOL_GPL vmlinux 0xff50b808 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xff52489e ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0xff58b0ab bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xff5c9453 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xff5f704d __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0xff709249 __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0xff70a3d8 virtqueue_get_avail_addr @@ -25989,6 +25991,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order EXPORT_SYMBOL_GPL vmlinux 0xff8d3032 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xffa6d358 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies EXPORT_SYMBOL_GPL vmlinux 0xffb2bdf4 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save @@ -26249,82 +26252,82 @@ IOMMUFD EXPORT_SYMBOL_GPL 0xe9ffcb85 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x381196a2 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x09d8a5ca iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0569af8d iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x0e88bc64 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0eb449bf iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1c0a6942 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x197e579b iwl_fw_dbg_stop_restart_recording 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 0x1fff746a __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x20015262 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2035af8b iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x21524f65 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x281dcdcb iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2bc345b1 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2befa992 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x25486725 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x26621905 iwl_init_paging 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 0x2c96485e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2d4b4146 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x31bc542e iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x32ef2c51 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3387309e iwl_poll_bit 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 0x3bd96849 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x414f41d8 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x45828d39 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3cc3a226 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45cdb8b7 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x48eabf13 iwl_read32 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 0x4c5d8a6f iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x543cbfed iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5bc02099 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a4d96cb iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x50af4f35 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x59e4f113 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x60c4bdce iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x625eee90 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6293ea78 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64bce585 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65c9a808 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6620f504 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x66fcb70d iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x68235028 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6a936621 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6b93fd66 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6bd7c574 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c16afd2 iwl_trans_send_cmd 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 0x77657fc7 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x78785f82 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77814f03 iwl_write_direct64 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 0x79fc0247 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7bd94865 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7cbb6ae2 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7d56c9a9 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x80e94591 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x819d34bc iwl_read_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 0x84bb50e1 iwl_rs_pretty_ant 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 0x89edaa2b iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8e738f78 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x92a604f6 iwl_fw_dbg_collect_trig 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 0x958e4a4d iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9b4e18a5 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9c2a23bc iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9ef1d487 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa3be9e67 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa96bd4bb iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaa9f01d9 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xab28d2e2 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xab3972be iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xae35a30d iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x99557e40 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d0fe446 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9fbf33a4 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa2c0f497 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xad72dc2c iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaee5d8d0 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb1e39cb3 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb29d11bf iwl_write_prph_delay 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 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbd3f1dbc iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbf88a7b2 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc3490ad1 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb8162fbc iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc1312227 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc267fbf0 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xc3793a4a __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc9335f9e iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xca9f02e8 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc8876ad2 iwl_write32 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 0xd49803e3 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd4f2e4d5 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdac29438 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd36740ac iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd4ab3463 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd4d1e0a5 iwl_write_direct32 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 0xe8a7fbb0 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdf327ff1 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdf99f3d3 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0d69e80 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe32e96bf iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xecf36c9f iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf321e5de iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf6ae0378 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfa9a77e9 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea28bf2d iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf27f023c iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf49a9411 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf54207be iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf7511bb4 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfccf1c3d iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfd9cdd0f iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfe4010fa iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi LTC2497 EXPORT_SYMBOL 0xbfb53e22 ltc2497core_remove drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0xf513a401 ltc2497core_probe drivers/iio/adc/ltc2497-core MCB EXPORT_SYMBOL_GPL 0x104a14ed mcb_free_dev drivers/mcb/mcb @@ -26342,8 +26345,8 @@ MCB EXPORT_SYMBOL_GPL 0xbcf52873 mcb_release_mem drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xdff9afb9 chameleon_parse_cells drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xfe407955 mcb_alloc_dev drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x277cca04 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x42197e3f ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xf2d1f3d8 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xf7a7b194 ocelot_core_init drivers/mfd/ocelot-soc MFD_OCELOT_SPI EXPORT_SYMBOL 0x4e961243 ocelot_spi_init_regmap drivers/mfd/ocelot-soc NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2daec943 nvme_command_effects drivers/nvme/host/nvme-core NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x99aaf247 nvme_ctrl_from_file drivers/nvme/host/nvme-core diff -u linux-6.2.0/debian.master/abi/armhf/generic-lpae linux-6.2.0/debian.master/abi/armhf/generic-lpae --- linux-6.2.0/debian.master/abi/armhf/generic-lpae +++ linux-6.2.0/debian.master/abi/armhf/generic-lpae @@ -152,7 +152,7 @@ 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 0xefeb6b09 suni_init +EXPORT_SYMBOL drivers/atm/suni 0x6b8b7645 suni_init EXPORT_SYMBOL drivers/bcma/bcma 0x44855564 bcma_core_irq EXPORT_SYMBOL drivers/bcma/bcma 0x8823306f bcma_core_dma_translation EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str @@ -173,8 +173,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xe36fed44 pi_release EXPORT_SYMBOL drivers/block/paride/paride 0xf0a5781a pi_write_regr EXPORT_SYMBOL drivers/block/paride/paride 0xf99a0624 pi_do_claimed -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa7a44c75 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xddc48f6f rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd35fddad btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x9e72f386 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x2ae9d2a1 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 @@ -237,11 +237,11 @@ EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd 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 0x161e1f3e caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x22f08f51 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2fa0b335 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xaea2aa0f caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xba124196 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2de87e06 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6d82da59 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6fd581c4 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc48784da caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xcf8e0d58 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 @@ -262,9 +262,9 @@ EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0xb754f93f caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xbb7c7f1e caam_dump_sg EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/crypto/caam/error 0xddbb763d caam_strstatus EXPORT_SYMBOL drivers/firewire/firewire-core 0x11dc3c0e fw_core_add_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x2685ba8f fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x27e352b3 fw_iso_context_queue @@ -1398,349 +1398,349 @@ EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0b2c6e4c iio_triggered_event_cleanup EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xedd3802c iio_triggered_event_setup EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xabd7c774 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05bbbdf6 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x08a467e8 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09f9f21e ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2880be2f ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2dda1ab0 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x468e992c ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4aeaceb1 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5666b636 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f6ec89a ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1707078b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c16a270 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x26d67e4a ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a3399d4 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43ef0322 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5089aa6e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56b6c3b7 ib_cm_insert_listen EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85901ca3 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa8f2c5dc ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5fecf99 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc32e605f ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf039cd4a ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfead0660 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x001df501 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x008b2c4c ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x760212bf ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c9fe264 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91227091 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa04616aa ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7273c3d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3f3cf37 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4451c77 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdea9d0ae ib_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x010229d3 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022a7d3a rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03710eff ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03919e40 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0396edaa rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x039a6f43 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0498d1fe rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062a55a0 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d3e92e ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d34f6ae ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11df5c85 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x121b75e2 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x150214af rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1535e11b rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x155a3b40 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1566945a rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x158ad970 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d0781d ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d259f9 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16653026 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1699231f ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1727b82b rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac251d1 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1affab04 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x044dad78 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c11b34 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x074fd337 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0764bebe rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc482e2 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e943ec6 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eaa58c1 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104684d5 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1427e8d5 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14505f4f rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1730aa45 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17e47710 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b80e96 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a0d3e38 ibdev_notice EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d93a881 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1db0c6bc ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dfc74ca ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3e70b8 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2026a5fb ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25b6036c ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f1b105 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2609120a ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26139244 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2655e75b rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27d446fd ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28792441 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28ca7109 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cfd62fc rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eccd49a ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b33a6d5 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb9276f ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e294630 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2e0aad rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e70fea4 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x208ffbac ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21180bea ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25660d56 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x275d6e27 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28de144d ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29797b89 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x298c4ca7 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d1e9b61 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2de661d6 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e502338 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f21bbbe ib_port_immutable_read EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc0fb12 ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31019cf8 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32a8db9a ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3441cc06 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35df4f3d ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3774a61a ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c00e60 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3865dc2d rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396ab76a ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a07009c ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2cb76a ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b6c3126 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c409b87 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e7ac0a8 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f12df84 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3195b214 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32dcef7a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35316ca9 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37907549 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x389e86f7 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38cf2085 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a0dd177 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3acfec5c ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c450fd6 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ca3263e rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d36fccf rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dfce07a rdma_restrack_set_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41aaab62 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c0c86b rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430ae8a9 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43249c9a ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc27a4f ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x401e7a88 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c8cbda ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x417ad9a0 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x421cb797 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x431068d6 rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x454ce66d ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45d2c697 ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x478aba47 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b36df3e ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b442c52 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c463d13 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d872969 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4616185d ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x463b56da rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4689f9d6 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46aab979 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4711a239 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471c05e1 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x475f5caa __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49a976af ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b836414 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d8f9aae ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e046fc0 rdma_user_mmap_entry_get 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 0x5064c9cd ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x509049c4 ib_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x535fee56 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53fc9308 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x544e081f rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5458cbff rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a4ec21 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54265196 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x557fdb01 ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57426459 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d6ed31 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567e2c93 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x578a90c1 rdma_hold_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a71f8ff rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9e39b9 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f023f9d rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e48574 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5930ea77 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ed7f7fd ib_drain_rq 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 0x62683d03 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x643e37e0 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x645c35af rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64213f81 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b56292 ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6828a3d7 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x699a1b3c ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a8a80fb ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b6de56a rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b710df5 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6615ab90 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x692de94a ibdev_emerg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cd4a939 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de729e8 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea0a7e6 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed851ef ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6edab65e ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b9611b1 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c6b991d ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f59716f ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71857074 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719c0867 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74679b0c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7080a4b8 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7098c19b ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73021aeb rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x732fd3b7 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x736dd54b ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7375b15f ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73eac57b rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742c0b95 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x749b92e1 ib_register_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77989aec ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x781a1ef2 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7621973f rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77286edf rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x779bd774 rdma_roce_rescan_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bcf1ad2 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb8c5a8 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ff72199 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8183df97 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d65949 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87ca5c30 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8badaaa6 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79656a26 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79cabff6 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a808fcf ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae46c20 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ca4d719 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd554de rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x824c6647 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x826856dc rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ebe3f7 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x832d7a73 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83ed6a4a ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866017e5 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x871f087d ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8812ffd7 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0f05c0 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b8fc9df ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c302deb ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cb31ea7 rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8efa3c98 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8feb1d6f ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9051618e ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90de98e1 rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92c0abbd ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92d0231d ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9433c89a rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9656103c ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9715be51 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98314bcc ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a45b895 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c8a00cb ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9caa2fdb ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d23056c ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f14ba8a rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0a3fa40 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1543bf3 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1c803ba rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa55a53fb ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa58213c2 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b33b80 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6c56b1e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91747a4c ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x958a7d72 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99335765 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a28d15b ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a622612 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e885ff3 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ec7cf70 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa00feea8 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3735861 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa385c701 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3c916fb ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa45f3ab2 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa48c53b7 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa72c77da rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8bee0a9 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa94cee29 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac15b83b rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xace7643c rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa82d4f4f ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa845dbab ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa86e0441 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacf0bae5 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadb27ad4 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadda7b46 ib_modify_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd19748 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaff4b5bc ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb056eb32 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1844516 ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3a74396 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb456e6ab rdma_rw_mr_factor EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6e4a47f ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6cf41b3 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7851cec ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8ab944c ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8ff7090 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb95cfe11 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9ef847e ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb0ffd89 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc12c72d rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc49c3a4 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbea86fe7 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf4b4c8c rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfad8822 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbff354ee ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc014b75b ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc11094ab rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc134fc9d ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc208a6e5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc474f0a6 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55fb4ea ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9513f66 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc998e7a1 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9cf660c rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb1424f8 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb5e20a5 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd3ad15a rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce435f6a ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd00f906c rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba0e7fc4 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba37ee8b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba7f8c63 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaf8efed ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb56f335 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe9c523 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc42ab4f rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc7a017f ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a80c36 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc48a9b8b ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6a39900 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc86bf67d rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcca724ab ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdbb12b9 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf097e6 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcef00ba2 rdma_user_mmap_entry_insert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd12da263 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1984c41 ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd274d434 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3d7044c ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5002ac4 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5e60097 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2fcfe61 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd41dc3c6 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd45472a2 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd47b0b32 rdma_replace_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8fcc1d3 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9fe5983 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7eba637 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8ef2511 ib_get_cached_subnet_prefix EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd42f783 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde2ec4fc ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfdc4bd0 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfe1f665 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe197b185 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd25108d rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde9fb60f __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdebc7582 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1ce2c7d ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f59d3e rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3cbbace ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3e73b70 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe41fda03 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe452814c rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3cdeaa5 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe43a126f rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe49b1aa0 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe55022cb ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6461e98 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6fa70a2 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7098f03 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7662b52 rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8912e6a rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9368c2b ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a33f6f ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb10a201 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec923097 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee9a2559 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef112064 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0a415aa ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf19261a0 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec54f267 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed7a7f62 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf679f4 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef0676f3 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef100df7 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0d42ab7 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1b7e476 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4a5a00b ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4af081f rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf58fa71b ib_get_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6285b01 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6b3e3cd ib_sa_join_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8216bc5 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa5daf7a ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc2c9a18 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdbf3324 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe7292ad ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0008980b ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06575195 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2fa72516 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x309ec9fb ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x31afbdf6 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35fd2ad6 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3694d4cf _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74b842a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf85c088a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0900c0 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa7be879 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc3e88ff ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd441308 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe961b4c ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x188c2ad2 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x222a15d3 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26684852 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ef4b9ea ib_umem_copy_from EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37c37d43 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47241805 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x496e1a03 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5347c038 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58558365 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5947e48a ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61e81bee ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63b639de uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b18d2f6 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b94b58a ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3edea2b4 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x409b85e8 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x414c01fa ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a5a94e3 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c2c7bc4 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5a550f6d uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d226e85 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6187445d ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6391c5dc ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63dca3f9 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x66ecd305 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68dcacbe 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 0x80c5840f ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8330d7b8 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c509ba9 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x988346fc _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b77cdd3 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e2a06c4 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0402b97 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa31ee3f2 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad20281c uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xae0f17eb ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82218df3 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82fb1c8d uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85db57d3 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x886b27fd uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9087aacd ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9723fef8 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa048e055 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3ae6fcc uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacc49b28 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad85f1be _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaff8ab41 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2e787df ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4132e08 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb41dfe88 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb8a7f7fc uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb2a847d ib_umem_dmabuf_get_pinned EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc441902e flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8e1e66b ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9cf795d uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd3e67d0 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2004c94 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd6f95016 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7d22760 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeed7f42e uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6277c33 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf956e59d uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9f32c44 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa1709a4 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x614e0d2d iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x61a3b9ed iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64118d34 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x86259856 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9dfc1a7c iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe026faf2 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf13a43dc iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf2afa6b ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe56023a3 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb57484c ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08eac787 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1b84ccbe iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d1f1410 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x360ec76a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7f1942ff iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x82438dd2 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb7f18ecf iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd73d9950 iw_cm_connect EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfcc61591 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a15df16 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a3ccdb8 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f8b7d8c rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27662083 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a598226 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a9c3b43 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x393c34f7 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40dd7b3c rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f3fc9a3 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57f82c8c rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x582e6a6a rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62a55bc8 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6575a19d rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65c0b050 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69c9ea9d rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72ce1ea6 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x749fd81e rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b06b083 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c469c22 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f6de365 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87e11c3c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13322ac8 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13346976 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a069237 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x223f50b5 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23f08380 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2422185b rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x249cb01c rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32afc7da rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x391732b8 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e355e62 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3fed80b4 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x457df41f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53ed1958 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d9d7b77 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5dc7118e rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x668c86dd rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a6e7661 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fb9826e rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x804cc0c0 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x834fb2fc rdma_listen EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93ec3d72 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9953ac37 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa457a31a rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5d0b31d rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac611976 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb54d2c29 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc475204e rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd85d453c rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9d3cc7f rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdad2e80c rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc0292cd rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8b9a8a2 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8bcfe9b rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1e610970 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x26bf9518 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3b2f0684 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x741f41b1 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x790a7587 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd288de09 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf167b93a rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x660323f7 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97bb413e rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98c56b7e rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a05e11a rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5a7eb72 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa7d6a993 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab4cb879 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaef0d922 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbccf1747 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc30629cd rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2e13795 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd35b3d4f rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6fa4602 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xefa2b0b8 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1264608 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x519ff689 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7f46309c rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8915ced3 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x99217313 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9c80b97b rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xee5298c2 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf0ea4513 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x37a9db1b rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x56b6b336 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6624a451 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7c55748c 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 0xaeacdbec rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xda194ee7 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0617dbd rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0f9c582 sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1176fc9e rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x328c3905 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x453c71d2 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaf42239c rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd0064350 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeab08f77 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x02b08992 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0c2d7ab0 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7695301c rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x98db0ac2 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xea36cad6 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfce4dab2 rtrs_srv_get_queue_depth EXPORT_SYMBOL drivers/input/gameport/gameport 0x1f2ddc0e gameport_start_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x392a4981 gameport_unregister_driver EXPORT_SYMBOL drivers/input/gameport/gameport 0x3a66df79 gameport_open @@ -1769,8 +1769,8 @@ EXPORT_SYMBOL drivers/input/sparse-keymap 0xda03235c sparse_keymap_entry_from_keycode EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x323d5eaf ad7879_pm_ops EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xdc426446 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x4592bc46 qnoc_remove -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x5b4fde9b qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x043bba67 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x2a819eb2 qnoc_probe EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1062a247 detach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63ba3588 capi_ctr_down EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb8be05c3 capi_ctr_handle_message @@ -1780,48 +1780,48 @@ 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 0x47da2f89 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x55812619 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8a45b1c6 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xeb581fcc mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1bbc74ca mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdc5d30c5 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1feb950c mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8a6c7266 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc72a8e59 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdcaf9452 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7801c6d7 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe54a5469 mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a0da44b mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ae41a46 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06f07c73 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x130adedd recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x16cfa780 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c4cd983 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d03b11c mISDN_freedchannel 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 0x2fbba3b2 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 0x34057a8b get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a549ce5 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fa9eb48 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x366652fc mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e56788b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ef3efd5 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a20df68 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b5b543a mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51f7a5ca recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52bf0e84 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x53e5c6f4 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5f2d2f2f mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x603db113 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66c86998 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c13e46d mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7808df4e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f5144f5 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x810e82d4 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83dc9829 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f339540 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2c34077 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa102320c recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac941a6f mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf1eee52 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb14a21d9 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5110c83 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9f3f21f recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf04931b bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5de44ae bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcef03594 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc53e78dd bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd6826940 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7372183 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2c20f0b mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8d0cb44 recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd30cb56 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9651f8f mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeff8cc43 mISDN_freebchannel 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 @@ -2601,85 +2601,85 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x65c25458 denali_remove EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe339e516 denali_init -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x12ed2496 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x374ab68d alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x38c0e470 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x52849dc5 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x59d42db5 arc_proto_default EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7694cdb6 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77060984 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9295db4c free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab75e600 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbeb50be2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4efc408 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce38f3a9 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cd278cd arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6f39f8c1 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a1d9c51 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e0c3881 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa462abd2 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc5978e12 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd8cfb81e arcnet_close EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7efe866 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf5b50479 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf71eb408 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7bee0429 com20020_netdev_ops EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd315f5e5 com20020_found EXPORT_SYMBOL drivers/net/arcnet/com20020 0xec40c2c8 com20020_check -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x434561b2 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x787cbf77 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe727c366 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x79feafbd can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xede7b955 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02192e10 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07e5818e b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a6bdf9a b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13f38a26 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d2ea238 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21e34f63 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2707334b b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27a26197 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ea843f7 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30a39652 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3228ff77 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a0091ab b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50253a0a b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x569abed6 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57d59a2e b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a6907f5 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61e69690 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e3f5cf3 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x824a2ba0 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x86ce84a8 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9dc2b30f b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1edbacf b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa38b43b7 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9debac1 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab433123 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0a5ea2d b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb19cc56 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc09c0e99 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1a4f479 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc68c4d34 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc80827ba b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8479b9c b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd61de2df b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde77ff6b b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe567e7d4 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9833b69 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef1187e8 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1de5624 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x32e1b2a6 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xca719a24 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd145ea9e b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd2e9b8b9 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x737d95e3 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7e6e6293 lan9303_remove +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x3976df10 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x702b60dd ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xab8ef2b6 ctucan_resume +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x33e6ad69 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x50026cec can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x033915df b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x04c5d1bd b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0530325e b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x161006f4 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2096b82a b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b1e85f5 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3233cd10 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35d40591 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e02532c b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3fe5ccc3 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54a527c2 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5bd8c84f b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x651d9561 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x661b6c0a b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a2d0628 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72c3a719 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7609e680 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d915a45 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b204e96 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x900662c9 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92992282 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98b5da56 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ccf1467 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9cb021f b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbaf1b65e b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0649210 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3fb9e04 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc631bf72 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcbe4beef b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd3344b5a b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5a89172 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdfd43ad4 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea99d88a b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef69534c b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6f3a83a b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8c84cad b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfde11989 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe8904b2 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1a0c8b72 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2db26334 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x421a012c b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xadfa2997 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x22a89b98 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x52f3badb lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc9c9406d lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xa939edee ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xe9a01e1a ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xf8a30722 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1cdaf484 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1f8679b8 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8a4a5987 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc7f36f68 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x305bc7d2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x4f219a9b ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xabc4f8f5 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x166de3c9 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0811261f xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2b5a66f7 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa45b095f xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfaf1ed2b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfdbe9277 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5b3f1c39 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x65fdef4d xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6e813f48 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x77bb5b4c xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd7d44a07 xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdc031998 xrs700x_switch_register 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 @@ -2695,82 +2695,82 @@ EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbeac78ef ei_close EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf25e6484 ei_poll EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0xea515029 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x3fdeaf87 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xac55cbcf bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xdc4bc2c3 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x206c35e6 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x21b91b76 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x281bcad6 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36e0167c dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x81b6dfa1 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa8442a5b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb537aa2e cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbbee4fdf t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6661f07 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd903f542 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xddb8cebe cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe4be6369 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe8d9e9de t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9c100d5 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf2efbc13 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc553eb9 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0104256d cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0135b52a cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d54341e cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d886dd6 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec208d5 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xedce49bb cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0fb64ecc cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x295ef745 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30dbb7ea cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48849989 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x513d9833 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x52035b38 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7cb82828 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ee1a578 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9954d24a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0b4d79a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb34af8c3 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc01fc381 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc2f28786 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc4409a0 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe6fed080 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc913bb6 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06ad5da2 cxgb4_l2t_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18eb16d7 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e809353 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2050a712 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x286d9f2e cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ea85f90 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x307dc2c3 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32ed533c cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33efe336 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x354b4c2d cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x376eaf48 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3842f4f4 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a45ac4c cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44f2a8dc cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46c09a33 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x494fc6bd cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4991b803 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d259491 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14d9ef46 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19817fac cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b224f5e cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x203b6cad cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x260606d0 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27fd265e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x286c88a5 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e17dd2f cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34748ead cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a92e978 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3df355b2 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e99f9b4 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4207135b cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42a5d070 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45695937 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x465b42c1 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48bc76c0 cxgb4_remove_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51d8f02d cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x617e1c89 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a6de446 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74bee7a3 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x751a52f4 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89fe6392 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a920385 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93c78447 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96582039 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x974abf6f cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x993c9be8 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa18e53f6 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa676c2de cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xacd641d0 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaebc93b4 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1480665 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4f5d15d cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc518acdf cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58e75dd1 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x591b8a6f cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b9c077b cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61cb0b62 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61dabc03 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6765a768 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69e709b6 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x911f179d cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x939020bc cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96895595 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa12d239e cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6e4d470 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8f74f99 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab545940 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac08febe cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xacd9ccc0 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaedd7a62 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb111f74 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc17a9ceb cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3c7bee4 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9d552e2 cxgb4_flush_eq_cache EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdba83c9b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9606f0e cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda5be7e6 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc2a5185 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd578de7 t4_cleanup_clip_tbl EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe12a85a1 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecbaa658 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef31ecf1 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf00798c1 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8d39cf1 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3b0482f cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7469776 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7d8caab cxgb4_bar2_sge_qregs 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 0x49dc4f27 cxgb_find_route6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x512fc1a4 cxgbi_ppm_make_ppod_hdr EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x562245c0 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5881913c cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6e403b49 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9632660b cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcc5dd596 cxgb_find_route6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdeb0ae0b cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdeea4ae1 cxgbi_ppm_init EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0953ab85 vnic_dev_register @@ -2779,9 +2779,9 @@ EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5a31d886 vnic_dev_get_res_count EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xca3b23ea enic_api_devcmd_proxy_by_index EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd3aff78a vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x00ccfa6a be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x398ee793 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 0x62ef4acf be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa3b34383 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x9d131c3e 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 0x15240389 fun_dev_enable @@ -2804,8 +2804,8 @@ EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7903a878 hnae3_set_client_init_flag EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xeff317b6 hnae3_register_ae_algo EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfa8ca31d hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x347ee170 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb89a17c7 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x1b3fa8c8 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x39617c92 iavf_register_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 0x383fd4c0 prestera_device_register @@ -2855,167 +2855,167 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6f73d5e mlx4_gen_port_state_change_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa81c9b1 mlx4_SET_VPORT_QOS_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb56107a mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x008d912b mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0115fed7 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013a1a71 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02ce12d7 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d76941 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x030d7920 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x002143f5 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c8fc4f mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03f91b44 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0663e109 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0706ba32 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ae327d3 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e2a2397 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06cb4f88 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08415da7 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09473f48 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c0b318b mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d53043a mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0df4034c mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e957ec9 mlx5_core_destroy_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2495df __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12eca5e7 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e08bc3 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15320c0d mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1123fcb1 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1174bc90 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1370a018 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x157888c5 mlx5_rl_add_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a2a602 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b87a75 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c1fc492 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c76d053 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f274f4 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a75a82c mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b44c8db mlx5_core_query_sq 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 0x1e35e4c6 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e75548f mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fcdcfae mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21a3bc9e mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x223970cb mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b79e2b mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x240f23b8 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x254b89f9 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29bf7d1e mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e1bec32 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ff97113 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22e7b696 mlx5_modify_header_alloc 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 0x2aec0be2 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2be4c631 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c1a9995 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d51020d mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f641259 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a2ae9f5 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ad22e99 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc7ee3c mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f170184 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x315b60e1 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32f70f07 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3417888e mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3455fa82 mlx5_get_fdb_sub_ns 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 0x34cdf0fa mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f43ac8 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36dd3aa6 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x383a944f mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39053e78 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae5f20d mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b73f823 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3568d896 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x388af181 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39350334 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a1bd16e mlx5_core_create_rqt 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 0x3dda1b5d mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4079b840 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4145a8f3 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x439cc73d mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4476c0ba mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x418479a5 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44afdc4c mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x490c3047 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b278a80 mlx5_core_destroy_rq 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 0x50c538e7 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e876499 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e9aedfe mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb14edb mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb965c8 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5010026f mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506bd66c mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5085c2bc mlx5_lag_query_cong_counters 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 0x52eb8632 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x541f9c2c mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54e602e9 mlx5_lag_get_slave_port 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 0x56fbf704 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5876d835 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aeb5963 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e44a4de mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b6a113 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55dc1a1b mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56eaef1e mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59b731a6 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e1206ad mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f9b4a9 mlx5_fc_query 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 0x6842059c mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a748f3a mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bade5b6 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec704a9 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70bfcb69 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61567206 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62bfa991 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x641fdfc8 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64dcb45a mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692a980a mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b96af09 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7110ba mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cfb69e1 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7137b8bc mlx5_eq_create_generic 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 0x728fe6e9 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7312e46a mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7501b50f mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x764de790 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76895420 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ae065f mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7714d22c mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77f968f5 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7836cfad mlx5_create_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e04da __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d3c4c1 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2fe127 mlx5_core_modify_cq_moderation 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 0x7b864195 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dae68b1 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e7ccdb0 mlx5_eswitch_get_encap_mode 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 0x7f8d9aae mlx5_cmd_out_err 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 0x8104e232 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84313e1c mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ad06fc mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x869ce227 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8336fdfe mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x836ce07b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x848f69b6 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x887e23df __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b561761 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b677048 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0d45c6 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc770b4 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cd44ecd mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89865b03 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a12eb8c mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bcd0e52 mlx5_eswitch_add_send_to_vport_rule 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 0x8e1b189c mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f0b4c93 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f9af828 mlx5_put_uars_page 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 0x8fdc1107 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91a00192 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9433bab6 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94ec1c45 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x968d5c58 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a950c4 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91418683 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x952b1c25 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x955a7d92 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d2b801 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96df2d1b __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9860be88 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x987852a3 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a6f9454 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c85efe0 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x992aafcc mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a7dc39c mlx5_core_query_mkey 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 0x9df798dc mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f34a11a mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa09c52fb mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa267d66f mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d45f43 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5240cbf mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5f7a617 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8922abb __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f29befb mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fae4846 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66dd454 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6a9a610 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa873ba20 mlx5_comp_irq_get_affinity_mask 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 0xae88692a mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadec5c4e mlx5_lag_is_sriov 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 0xb071123b mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb22cc8b8 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb33f9410 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb061c4a3 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb182580b mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3581ee4 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3de592f mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4679889 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5372ccb mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb549a054 mlx5_put_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7037fca mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92c1ce1 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac08477 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb11956b mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcc9430a mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd332a4d mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb79f3068 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb111046 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe5a5732 __traceiter_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb611c1 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc21c7631 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc39b9967 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc516e471 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e35eac mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7bc6c0c mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a1a1f8 mlx5_vf_put_core_dev 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 0xc9837782 mlx5_core_modify_sq 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 0xca889494 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca91b2a4 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcadca0ec mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb08b9ba mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9c0f6c __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdde29b9 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4651b90 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef7bd30 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfe60b43 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0944292 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1327e6a mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd29677c3 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32cdb1c mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd33d7447 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5cdbcf3 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d3436e mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8c240c7 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbab6780 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdccff8bb mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf450614 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8d753af mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9af132c mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda983868 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdce7a133 mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf595053 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe075ef2b mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe133c244 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c7c2d0 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e1eb37 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe64975b8 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe73ea60b mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8a308fd mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ffe12f mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe93e84a3 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe11a25bb mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8037832 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea6e5c5c mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb730992 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb7eb187 mlx5_qp_debugfs_cleanup 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 0xf075f62a mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf09278e0 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf204efb6 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf242d345 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee33e208 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3226dca mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf68959b5 mlx5_lag_is_active 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 0xf99ca8a0 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb79abc0 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc33c512 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc76127e mlx5_eswitch_unregister_vport_reps 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 0xfd54f5c3 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcc820e7 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe8a2f67 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff999c19 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0728a89e 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 @@ -3129,96 +3129,96 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xff339097 mlxsw_i2c_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x18125573 mlxsw_pci_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x376f46e0 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05d1644e ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x062ac743 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07a9c282 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10fbf592 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1252b584 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x170f4c4a ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x175f9567 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x192ebd8d ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x021415bf ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x021f354c ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x024f8bf4 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0581ab40 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07380775 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07e4737e ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09695ecc ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b343529 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c5f840c ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18e35b06 ocelot_get_txtstamp 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 0x19b69d1a ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c74831e ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d094eda ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20c7f07e ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e49dad7 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e8bbb02 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2164c0c9 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2236edb4 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22a92ab5 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2304c899 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29ff691a ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a50a49a ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bb78096 ocelot_vcap_filter_del 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 0x37a938d6 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a5197dc ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39c2b638 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d37ab12 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3de63170 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4210ecee ocelot_can_inject 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 0x42cd3833 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46dfbbb2 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49672631 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49a23f9c ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b39300a ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d4a3987 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d56d2ed ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51c342df ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5434cda6 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5574e3c6 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x580ebc29 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a965d6d ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ad5b598 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bb50c57 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5de418fb ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a6fc99 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a96041 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68bf2ac2 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a55f3cf ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ab8155b ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bd061e8 ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74d2f85b ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76930bdf ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7919e0fd ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a52bd05 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d8f1923 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ff30b5e ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46229860 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4680321d ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x486817cc ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ccd9f97 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x507be8f3 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55cf00bb ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5985944b ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a6c3bb7 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b311eb7 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f249974 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f5c64d4 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f76c0d1 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60dd849f ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61e4cf34 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x651baf20 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x679996de ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x687d3b92 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68ce2501 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c7ff6ba ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e39a93f ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77e851e7 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ab89e99 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bbb5cd1 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80457dc7 ocelot_get_strings 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 0x8978bb6b ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e81b3d5 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x853ab74f ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8705e70a ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89611e9e ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cb845c2 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d8c5948 ocelot_vcap_policer_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 0x91ebc156 ocelot_mact_learn_streamdata EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98932e66 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98b8e61a ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99e57c25 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ab13dd6 ocelot_sb_tc_pool_bind_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fed9ea7 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3602309 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa52b74bc ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa63f6315 ocelot_sb_pool_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9064c03 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9fd4912 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab64d4c2 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae0560b8 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae64d451 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf4bc4f0 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8919765 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa673fff ocelot_mact_forget EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3689c8a ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb620a153 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7604c8b ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbaa587eb ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb61f904f ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb89b6265 ocelot_sb_pool_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcd4a571 ocelot_sb_port_pool_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc25146b1 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3fe8ca7 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc531e3d4 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2c4db16 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc315542e ocelot_fdb_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 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd13ba785 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4292954 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6162f70 ocelot_mrp_del_ring_role 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 0xddbabcb4 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe269db28 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2e9670f ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6d0c2a8 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7de25f5 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe84a41be ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9d41f9c ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6faeac5 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd799baa ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfa6ba78 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4000eb3 ocelot_sb_port_pool_get 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 0xf332b2ee ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4382ae3 ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf79b7ab2 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9cf063b ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfaa630e0 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb627c4f ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff597fca ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeea5da15 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1e16021 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff29e8e8 ocelot_ptp_enable EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x01931b91 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 0x659cc380 qed_get_fcoe_ops @@ -3243,11 +3243,11 @@ EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaa8c322a wx_mng_present EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb90df4fa wx_reset_misc EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe296a86d wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x40593016 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x49802cc6 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6d9c4920 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf790d1b8 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xffb96b50 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2e8d9f02 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7e0176d6 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9ab0359e hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb2371e03 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbae247d3 hdlcdrv_arbitrate EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok @@ -3262,9 +3262,9 @@ EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0xa3d2db4d miic_destroy EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0xa4598598 miic_create EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x9e89ee76 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x347fa1c5 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbb27c909 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc6e33314 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa307826e pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xce74afb0 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xda304a34 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto EXPORT_SYMBOL drivers/net/sungem_phy 0x5c8dd16d sungem_phy_probe EXPORT_SYMBOL drivers/net/team/team 0x2f93110b team_options_register @@ -3408,22 +3408,22 @@ EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf1c41653 ath11k_info EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfdb348ac ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x084f04ed ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x090ad30b 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 0x1befc5e6 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2f0e77d4 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17077555 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2336d74e ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x42f6cdcd ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6384eaeb ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x803ff0b2 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x90368971 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x453e5434 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5dd68779 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6ce01a8c ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x99b87438 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9c07b2b1 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb12ac884 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 0xc7303718 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd157b5f8 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5ee8a8a ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbf0e4642 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc0b2a8e5 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc9e82789 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09acce38 ath9k_cmn_update_txpow EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10b78c91 ath9k_cmn_get_hw_crypto_keytype EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x129648e9 ath9k_cmn_process_rate @@ -3576,26 +3576,26 @@ EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8804a58 brcmu_pktq_mlen EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8ca8555 brcmu_pktq_init EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf3638f4b brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x01d27166 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x09cb2c51 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x25ef4797 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x05edf6d0 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x16f3f4c6 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x19bdbf5d libipw_txb_free EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x399bc3ae libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x44f50803 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x531c58e1 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7ef81144 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4f28a91b alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x668b744c libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x77782ef0 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x797faa3b libipw_channel_to_freq EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x91e3da1b libipw_wx_get_encode EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa0b2831b libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa5f5c24e libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb12a834d libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa332c013 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa69fbc8f libipw_freq_to_channel EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe9fbda7 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc5f64d03 libipw_xmit EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc98a3ae9 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd833a76 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe9e3f3d0 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeddcbd61 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf2dd8253 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf9e7fb93 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb929af0 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcaac0f46 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd04942a6 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4bcea1b libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe766530c libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf4b1ef31 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf69e46d6 free_libipw EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x005687b3 il_set_decrypted_flag EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05d38c53 il_wr_prph EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08103087 il_force_reset @@ -3704,12 +3704,12 @@ EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __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 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x721062ae iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77118c75 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bdc4afa __tracepoint_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 0xacf53d99 __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 0xe978194f iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1c939cbd hostap_set_roaming EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x23683901 hostap_master_start_xmit @@ -3811,38 +3811,38 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8f29c7e4 rtl_usb_suspend EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x095f5350 efuse_read_1byte EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b1a5c65 rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11855cbe rtl_cam_get_free_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16a584f1 rtl_ps_enable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17a02e40 rtl_cam_empty_entry 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 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3188c93e rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33e8b28a rtl_process_phyinfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39d4e306 rtl_signal_scale_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a241cb8 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c736341 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e9a7472 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46edf1f8 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a47b8f4 rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5aed457f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f7488bd rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64397e54 rtl_cmd_send_packet EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x852e01a0 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88ab75e2 rtlwifi_rate_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b612acd rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9efef11b rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f78586c efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa80b6746 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa13a5744 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa780c13 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab241283 rtl_phy_scan_operation_backup EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0ae9adf rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc356faae rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc62dbb90 rtl_dm_diginit EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6468837 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb4f074d rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce391c3b rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5f894c3 rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9cc24d5 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf96416c rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb9d980b rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1181a9b rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3841bec rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe921977 rtl_cam_mark_invalid EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffdd2c0c efuse_one_byte_read @@ -3921,88 +3921,88 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xecc399e7 rtw_pci_shutdown EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x8cb51d98 rtw_usb_probe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xaeb298cb rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x9d7ac429 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xeae416d9 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x71415ab6 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03602886 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0436ebfe rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09c4384c rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x320919fb rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x4597cb0b rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xde328764 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01105cbe rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x08ad1c1b rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b11ebdf __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b330dd8 rtw89_core_napi_deinit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0eed7365 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x102c8212 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x181a0db7 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23030eed rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2638d730 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30c9bda8 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x31605ebe rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3bc11539 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3cdd3e0b rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ddd442a rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ea692d7 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x428f69d5 rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4869d22a rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d4f0e79 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d73adda rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4feaf527 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x552215a9 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x561f0876 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0fc82cf3 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x108b0ef9 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10f06e89 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12388d32 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1473133a rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x176faee7 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x18acb806 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1904d0ae rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b9cf54c rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x243b03ee rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2624ce59 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3204ca35 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x353d4c1a rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c3faf06 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ce6a36f rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4105be81 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45f46b5d rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46b62c05 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x526139b5 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55f0817e rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56b1f7d5 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x586f10d4 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c0a2d09 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d496d56 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5fa60e4e rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6356dbd8 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64216abc rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x68dd41f1 rtw89_phy_set_txpwr_limit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f958fd7 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x715a0c4a rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e61689e rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x874a49d6 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d3b179a rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90872918 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x92fcb55a rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93117111 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95fe237a rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x97af4a1f rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9856beef rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa633549b rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa89f2694 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa676d42 rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaddf4e61 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xafb38159 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb14c9ffa rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3c1652b rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb92bd476 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbce7f70d rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbdd3e2df rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe4eddcd rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc5519f07 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4a89acf rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdaf9e926 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdec5e5d3 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0215ce7 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f79406e rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70b5a2c6 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x769dd7c5 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a0b35d6 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95c19ba4 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ad11fc7 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad50678b rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb26b498d rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb9fef32b rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd1dcdd3 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc7b41231 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc0a2737 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc773227 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd1b5e15e rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde961a09 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdf073f11 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0d5037c 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 0xe40e3eda rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xea9539f9 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee20a4c1 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf00df2bb rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0a4b98e rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf41214a2 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6808343 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf82b5662 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf98c87d4 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc58efc0 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfff82178 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x03261fee rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x23c91125 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x333e2edd rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x516f93f3 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x609d1917 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x67990767 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe438cabc rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe851a19f rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeaa72505 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xece2a58c rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf03dced1 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0dbace2 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf1439a52 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf59e7a68 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb5be4c4 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x10699980 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x161f7b64 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1901c93c rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1a1aaeeb rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1cd2fb4b rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x288f4a9e rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3b714d2b rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x676bf2f8 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x67c1ced2 rtw89_pci_ltr_set_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 0x764db4ee rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8d133aac rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x93fdb586 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x81a80c20 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 0xb0c4d7ff rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb82b49f9 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbb89aa42 rtw89_pci_fill_txaddr_info EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd3858a43 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe856ce16 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xedc2df61 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf4fc3d00 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd58bd670 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 0x8e3a15a6 rsi_config_wowlan EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x854f6176 wlcore_tx_complete @@ -4238,26 +4238,26 @@ EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe2edf67 fc_frame_crc_check EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffab80e5 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x07509e7c sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6bdf52bb sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc011f19f sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd2ad0ada sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd73d204a sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcd56be84 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf1fe94f6 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf75a9d12 sas_resume_ha_no_sync EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x08ee1d13 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 0x0b1821c5 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0dc540ef qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x23f1b41e qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x23f210c4 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x26371430 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3df1c66e qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4e3129c6 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x878b625d qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9af4ec22 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3292945 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf42e4087 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfa8d3fec qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x06e23acd qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x152fee9b qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2ffa5abe qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x47d980f4 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x873d31b0 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x927128fa qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9874c0d9 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbaab45d9 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf982498 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd7c1c53f qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8b4fd16 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb336e69 qlt_abort_cmd EXPORT_SYMBOL drivers/scsi/raid_class 0x13c7c0ab raid_class_release EXPORT_SYMBOL drivers/scsi/raid_class 0xba62163b raid_component_add EXPORT_SYMBOL drivers/scsi/raid_class 0xf219bc6f raid_class_attach @@ -4368,18 +4368,18 @@ EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x69bef496 qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xae4b53c5 qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0cafcfb8 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2ee723a9 qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x34c150c0 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4699192d qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b59eb83 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4c945660 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5232498f qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6fc5cdd7 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xad9bb4bb qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xadc82fc2 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb59b690b qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcb4f3a28 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf35d5396 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6a60704e qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7cc20f13 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x853b7833 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8a7b5e46 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc93a7298 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd690a5ab qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdcbf8d57 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xeb925778 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf600d6b5 qmi_decode_message EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space @@ -4480,19 +4480,20 @@ EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x0352c81d ade7854_probe EXPORT_SYMBOL drivers/staging/nvec/nvec 0x19180d77 nvec_write_async EXPORT_SYMBOL drivers/staging/nvec/nvec 0x52ed1605 nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x022b8442 rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x025c350e rtllib_wx_set_rts EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x036e6bc6 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x050b03cd free_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08e52e3f rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1964fb27 alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2149fcf2 rtllib_DisableIntelPromiscuousMode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29dd77e5 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3746a959 rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x385fba0f rtllib_wx_set_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b72b4af rtllib_wx_set_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e345a99 rtllib_softmac_start_protocol EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f544545 rtllib_wx_set_rate EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x488db3ad rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4de20b87 rtllib_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50dd178b rtllib_wx_set_gen_ie EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b47c2cd rtllib_wx_set_scan EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62a9c691 rtllib_wx_set_encode @@ -4505,7 +4506,6 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7511c0a8 rtllib_wx_get_mode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79822f0d rtllib_sta_ps_send_null_frame EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79eaed7f rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ddbc8f8 rtllib_rx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7eda0890 rtllib_wx_get_name EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f2c3cdf rtllib_wx_set_essid EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88958343 rtllib_ps_tx_ack @@ -4521,11 +4521,11 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb53a5ce6 rtllib_wx_get_scan EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb62f3d3a rtllib_reset_queue EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb76b1949 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb87c1aa1 rtllib_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1f6eaa9 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc66b880b free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc50ac96a rtllib_rx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7a0e9ce rtllib_wx_get_freq EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc93013e3 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce29ed51 alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd129db6e rtllib_wx_get_rate EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd37eb801 rtllib_wx_get_essid EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd82dfe8e rtllib_start_scan_syncro @@ -4537,6 +4537,7 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x165b81ff ieee80211_wpa_supplicant_ioctl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x17049836 ieee80211_wx_get_mode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x178c1c38 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e7b8e43 ieee80211_txb_free EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2634dd4e SendDisassociation_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38ead5bf dot11d_update_country_ie @@ -4544,7 +4545,6 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d0a968d ieee80211_ps_tx_ack EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x481f2cf4 ieee80211_wake_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4974281a ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52f31822 ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56f12eff ieee80211_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5849e8dd to_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e9bbab3 ieee80211_start_send_beacons @@ -4568,6 +4568,7 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3448fe8 ieee80211_stop_scan EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6fe1648 ieee80211_softmac_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab97d40a ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad236743 ieee80211_rx_mgt EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae941c78 dot11d_scan_complete EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2e6dcab rtl8192u_dot11d_init EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2fb30cb HTUpdateSelfAndPeerSetting @@ -4575,8 +4576,7 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc53e9745 ieee80211_wx_set_essid EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5d30d58 ieee80211_softmac_stop_protocol EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0384b99 ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd13388d5 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7350ea2 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9e1adff ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb5dca1d ieee80211_wx_get_wap EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe035abd1 ieee80211_wx_set_gen_ie EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe357cb29 ieee80211_wx_get_freq @@ -4587,131 +4587,131 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf13b67a5 ieee80211_wx_set_power EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf40bfcb6 ieee80211_wx_get_rate EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe8449db ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07ad938b iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x088706f0 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a7af8a9 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10f746dc iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d6ccdd7 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x240fa38e iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f958dfa iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x335cf8ec iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x358530f8 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35c6f404 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b599a48 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b8c84c4 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e6684e1 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4118f3c5 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4817fc29 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5443c4dc iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57791dc3 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a5c0d66 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b87b16e iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dd37f18 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60c80e25 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60cb23bd iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e692ff0 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7171f89e iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x785ea3ea iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c320e4e iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8076a7aa iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8da46818 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91e4856a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93d9b710 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9494ee90 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x968896b6 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ba2efef iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ef68e47 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad581746 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb90e1f5c iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba4289d2 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfb115cb iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc766a7e iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd183da7e iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9ff7baf iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe36e9b9d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8f68fdc iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf180fd80 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3396c47 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03e98764 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b1974ba iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fe5a600 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10058d3c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x136cf715 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x153527c4 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15541cbb iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1654c621 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a6ff01e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2da402dd iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e1c8c40 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38b3bd80 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43693262 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x473009c6 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47757266 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c4111f7 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5489aed7 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c26a10c iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c6982b3 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x607b45ae iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62e3ab39 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62f0ce2e iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x675164a2 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a963f0f iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7da64542 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c7533e7 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90161fc5 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x919e416f iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9222d7eb iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94305a17 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95721de7 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96519c72 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x981d7073 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e9379fa iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6ecf3a1 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6ac5cc5 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb5390c5 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4292688 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd51a44a7 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd8a3d46 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xddcb4fbd __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf6ea562 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9bde70d iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/target_core_mod 0x01a4ee1d transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x03c578c4 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0505d578 target_put_nacl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa640629 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffd1c5d5 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x023418cb target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x034547c5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x0352b587 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d47766c target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fb1bfd7 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x09ab441b sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x0af687db core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d5e3cc4 target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1743fd59 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x1800c666 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ae2c795 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d092156 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x20554aaf transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x21fd7c37 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x24b68dd0 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x270d7a3d target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c4f2544 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x2da25a74 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e741d23 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x30a8b13a target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x328904f4 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x37bd9296 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1911a1fc target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1aaa722f core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b4e46f5 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bb3ad41 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d5c42fb transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2255145f transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x23c9aa43 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2472bf30 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x266ef94c transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x26bb9016 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x31a02ece transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x31cf0d29 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x3959d3cd target_remove_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x50eb2381 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x518bea12 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x60c7cde9 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x620204b3 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a6a4438 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bf82edc transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ce6df78 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x3eb10d0d target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x406ab4d1 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a521677 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cf67cda spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x530e3586 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c7eb363 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x60d7ab55 target_submit_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x68105062 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x69d4a8ed transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a134c23 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6cde43 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x777b9f6e target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x645c6d20 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x694e29ff target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e5a0ff7 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x70cba066 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x737ffa13 target_complete_cmd_with_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a42ed11 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a63965d target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bd627bb sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c80d2ed sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a641b1e core_allocate_nexus_loss_ua EXPORT_SYMBOL drivers/target/target_core_mod 0x7d0c6a99 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ee9caa3 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x80d83474 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x84c3ee00 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d327d8a target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x80d53588 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x870da8b6 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x88156278 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x88f4d549 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c0303ef sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dd8bced target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dde53b8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e4f225a target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f7c3861 target_stop_session EXPORT_SYMBOL drivers/target/target_core_mod 0x90114100 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x90cda372 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9137e606 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x961e3595 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x98386d09 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ea2da53 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa08a0e06 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x917eeb62 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9953615e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9fad5ec7 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1c3c3e2 target_put_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xa22d9959 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf77c33a target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb36141cf transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa28ae688 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3acf5f1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa69a9355 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xad465f29 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2aa40b7 passthrough_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0xb3dcaeec target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf3f8d04 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb73718fe target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdb8363c core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1b18428 target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0xc1c54ba3 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc3475b5f target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc374248c spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc43f2ef6 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8e27487 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd2014a5 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0057bb7 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xd09a6434 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xda9a60cc sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xde6e93a9 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf181a86 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7e67202 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xe86a3c7a core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9ddc219 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xec966059 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xedb7ce98 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xee37d060 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0f097b0 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xf17edc6f target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xf21d16b1 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7403201 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc894edf7 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb405065 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb80c029 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfa6c666 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4135f04 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd760f65d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7cb6784 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd0b4aa2 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xea89e024 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xec425fc4 transport_deregister_session EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf752384f target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8cd3222 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa99e530 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc50fe0b spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf565d9f3 target_wait_for_sess_cmds EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1d2c8862 ufshcd_system_resume EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5229e211 ufshcd_shutdown EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9fde055e ufshcd_runtime_suspend @@ -4726,7 +4726,7 @@ EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xceedc155 ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8722fa22 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2a7c3415 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xf88a3d69 sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x5329f35e sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e32aab4 usb_wwan_chars_in_buffer EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x55e0cde8 usb_wwan_suspend EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x56c4c081 usb_wwan_close @@ -4919,10 +4919,10 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8dbb4347 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0110a949 w1_ds2781_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xcb5c94c4 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x558824e7 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x67dc149c w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0x870d1625 w1_unregister_family EXPORT_SYMBOL drivers/w1/wire 0x9479b78f w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xed257d8d w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf882f41e w1_add_master_device EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write EXPORT_SYMBOL fs/fscache/fscache 0x1a8f1709 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume @@ -5053,12 +5053,12 @@ 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 0x30cd707a lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6d1d52aa lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7626f1a8 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa4f52970 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xaccf2534 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xfee6baef lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x02bb9e71 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0fa57542 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6a36bd3c lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x97e3416b lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb557d09f lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc3d248fe lowpan_nhc_add EXPORT_SYMBOL net/802/p8022 0x31bbffd6 unregister_8022_client EXPORT_SYMBOL net/802/p8022 0xabb64296 register_8022_client EXPORT_SYMBOL net/802/psnap 0x3361da20 register_snap_client @@ -5118,109 +5118,109 @@ EXPORT_SYMBOL net/9p/9pnet 0xf15fc0a7 p9_client_lock_dotl EXPORT_SYMBOL net/9p/9pnet 0xff72788f p9_client_symlink EXPORT_SYMBOL net/appletalk/appletalk 0x13473349 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x4733b705 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x92a4c067 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xf0cde942 atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x02cbd843 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x0aa95076 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x273f8967 atm_dev_lookup +EXPORT_SYMBOL net/appletalk/appletalk 0x8d3ba32c atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x9c51fccf atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xa4798076 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x00405c8c vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3c03ca39 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x389fab3a atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x3e7ff2be atm_charge EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x5dfcd419 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x52a8c32d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x697b9aa5 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x76209578 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x8bd09c71 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x71421dc5 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x759f1243 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x80ff6a87 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8586a187 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9b7d3544 vcc_release_async EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb694362d atm_charge -EXPORT_SYMBOL net/atm/atm 0xb749d7e4 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xba20bd6f vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xda8642a4 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0xec4e10ff deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xb08075ae atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xb5d91170 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xb9ac35e5 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfd255546 atm_dev_deregister EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x16bbe393 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x1ff86293 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x45580c65 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x759fd303 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x84a303b8 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x54f468eb ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x80922f06 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x95180d1a ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xafc7e30a ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8eef4d7f ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x9b3ef8ec ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xa33f10cf ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xbd8d8f63 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd17dca67 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd45d27b7 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf6691b88 ax25_header_ops -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0456bf74 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04425b04 hci_set_hw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0979841e hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d98f7c2 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0dc17a7d hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1630867b hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b0725d3 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ea557e9 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0aaa518d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d894f97 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0de9b3c1 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12e45dc2 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13bdd498 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x150e3c41 bt_sock_reclassify_lock EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2607c755 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x41bd76bc bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x42f4470b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4367e0de hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44a1970a hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x58c3e197 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b27db23 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x602c8c4c hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66cfd508 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b4c8d88 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b5a21fd hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6fafb2a0 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x722e5e27 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a994744 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e448b bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x230c4d23 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x23295e45 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32ac509f bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32f8ea2e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ca33c30 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cfb31e7 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e987094 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x50429d6e hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52641d17 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5940041f l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca9562b bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60985bba hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6234c945 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6aa50ba6 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x764273ee bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76fcb534 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a542c13 __hci_cmd_sync_status_sk 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 0x7c62c9db __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x81c87c27 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x840c3dfd bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8448cef8 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b11fa06 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c8aa71c hci_alloc_dev_priv EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x98598a04 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c474a80 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d074828 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d392ab3 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e977034 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2ff759b hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa52a4dee bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa9866c7 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaafb911c bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb15cbcfd bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc103d3ef bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5e9f10a bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc85f2f21 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb81ed26 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xceba6987 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfcfb7e4 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd133ea84 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90d48c1b hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x969447ea hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2d561dc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa38b3b5e hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8787b67 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae070c2f hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7ecc7c8 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9515db4 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc2b64ac bt_sock_stream_recvmsg EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda5d8087 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb5c77f8 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8b78a84 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda4e1185 __hci_cmd_sync_ev EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf0c542a bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2656127 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5516dc9 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9a3946d l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xed4bf8fa __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf24d849e bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5de7292 bt_accept_unlink -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2624314a ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x28426b8b ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x817c8e3f ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xacc7aea0 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaecffef7 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe996a834 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe175166e bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe529bc1a hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe60e7228 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xebe79a76 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef1c3ba0 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef40b7b0 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf20e06ec __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4da951f hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf680e406 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7a1abc3 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb5dc10b bt_accept_enqueue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x087cbc47 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x19304414 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1af798b2 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4abb8254 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdf3344f9 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe6fd392d ebt_unregister_table_pre_exit EXPORT_SYMBOL net/caif/caif 0x0fccc337 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt EXPORT_SYMBOL net/caif/caif 0x29a7fbc1 cfcnfg_add_phy_layer @@ -5236,25 +5236,24 @@ EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client EXPORT_SYMBOL net/caif/caif 0xf5fbbd00 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x200e3185 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x3fe12164 can_rx_register -EXPORT_SYMBOL net/can/can 0x513e73b3 can_proto_register -EXPORT_SYMBOL net/can/can 0x8036a8f8 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x9eda2cbd can_send -EXPORT_SYMBOL net/can/can 0xf8313e7b can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x00c67ca9 ceph_con_init +EXPORT_SYMBOL net/can/can 0x356af3c1 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x6087a973 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x659403b9 can_proto_register +EXPORT_SYMBOL net/can/can 0xd1c582bf can_rx_unregister +EXPORT_SYMBOL net/can/can 0xda500b66 can_send +EXPORT_SYMBOL net/can/can 0xe294e17e can_rx_register EXPORT_SYMBOL net/ceph/libceph 0x0114683d ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x0454f8b3 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0468b5de ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x081d29b4 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0x09a0a54e osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc EXPORT_SYMBOL net/ceph/libceph 0x0a6209ef ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x0b77cd7a ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x0be8662a ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x0c336641 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x0cedf01f ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x0d05e80b osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x1019aafe ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x163828a9 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x1646766b ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x1843ccbd ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0x1943a22e __ceph_auth_get_authorizer @@ -5267,7 +5266,9 @@ EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy EXPORT_SYMBOL net/ceph/libceph 0x213b98b5 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x2217fbdb ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x2878c17d ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x29b6e9e0 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x29e62ee1 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x29f44c22 osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x2c80fc06 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x2e2691f2 osd_req_op_alloc_hint_init @@ -5282,15 +5283,12 @@ EXPORT_SYMBOL net/ceph/libceph 0x38079358 ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents EXPORT_SYMBOL net/ceph/libceph 0x3ab05966 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x3b5440ee ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy EXPORT_SYMBOL net/ceph/libceph 0x3ff25697 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x442a0435 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46b908e9 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x491be461 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x4a57b9c5 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid EXPORT_SYMBOL net/ceph/libceph 0x4f9518ef osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec @@ -5300,36 +5298,35 @@ EXPORT_SYMBOL net/ceph/libceph 0x5d6cf246 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x5e471c4c osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x604ff5fc osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6072d9f1 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x60f7eb46 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x62c0d49e ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x62dcb51d ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name 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 0x6486cfc8 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x662cd020 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0x694a4682 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0x779fd099 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x790fee7f ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x7916a7a8 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0x79becda1 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7d0800b9 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x7d624ca6 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x7f98a0f3 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0x8225f6af ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x825aa35c osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x82a5c575 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0x8cf56f2d ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x8dbe05d3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x8faeaaf3 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x90bb3b36 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x96f9345d ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x984fa856 osd_req_op_cls_request_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options EXPORT_SYMBOL net/ceph/libceph 0x9bf992b4 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9ccd31a8 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x9e082d30 ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping EXPORT_SYMBOL net/ceph/libceph 0xa1a675ea ceph_parse_mon_ips @@ -5342,17 +5339,17 @@ EXPORT_SYMBOL net/ceph/libceph 0xadc9dca9 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xae333bbc ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb2730be2 ceph_con_open 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 0xb5830e52 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb67f6ce0 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7500367 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xba3db332 ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags EXPORT_SYMBOL net/ceph/libceph 0xbbf67f79 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context EXPORT_SYMBOL net/ceph/libceph 0xc0a86bae ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc1b76cd7 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor EXPORT_SYMBOL net/ceph/libceph 0xc327feb9 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0xc5f3a2ba ceph_client_addr @@ -5360,11 +5357,13 @@ EXPORT_SYMBOL net/ceph/libceph 0xca0b176d ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file EXPORT_SYMBOL net/ceph/libceph 0xcbb6742a osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd10c51d9 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr EXPORT_SYMBOL net/ceph/libceph 0xd6e38d08 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xd86a7032 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0xdcbdfefb ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xdd32a85d ceph_msg_put 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 @@ -5372,6 +5371,7 @@ EXPORT_SYMBOL net/ceph/libceph 0xe22eb2f4 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0xe3d0347e ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0xe49c9993 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xe843fe8f ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xef99e4fd osd_req_op_extent_osd_data_pagelist @@ -5386,8 +5386,8 @@ EXPORT_SYMBOL net/ceph/libceph 0xfa548237 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0xff0b1806 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xff4edc12 ceph_auth_is_authenticated -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x31c60f86 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe8d3620e dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x258403f9 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x380faf41 dccp_req_err EXPORT_SYMBOL net/hsr/hsr 0x9f9cc5dd is_hsr_master EXPORT_SYMBOL net/hsr/hsr 0xea1e1cd6 hsr_get_version EXPORT_SYMBOL net/ieee802154/ieee802154 0x61edbcfe wpan_phy_for_each @@ -5396,51 +5396,51 @@ EXPORT_SYMBOL net/ieee802154/ieee802154 0xa426da8c wpan_phy_find EXPORT_SYMBOL net/ieee802154/ieee802154 0xab1b14d4 wpan_phy_unregister EXPORT_SYMBOL net/ieee802154/ieee802154 0xb4805a10 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x01b0c97b __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xbcff2e8e __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc9fdd69d __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd8ef45b9 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xf1c559f3 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08ed02a9 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x888de051 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa1688f49 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb72c7ce2 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x162356cf arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x50143a96 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x67229850 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa5bcf68c arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6b4bfa90 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9c83ff4e ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd0915390 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf4714076 ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x3be17343 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x40c85f9b xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6da34327 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12351736 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4123b3be ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x480d72fd ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x92c01495 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x97d4d108 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb0b55ced ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc07c7cf0 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcea7ee0a ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd3602265 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3855907e ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x41949191 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5f098411 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7cea020e ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x2f67ff57 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x49b128a9 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x26aee34c xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x941c62e1 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x0da626bb lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x225f0a19 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x43aa1e65 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x5b56dbff lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb5b109b7 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xc3b3cf10 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xf12f4cd3 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xf4f9f22a lapb_disconnect_request +EXPORT_SYMBOL net/ipv4/gre 0x77bd23e6 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5e9c7d7c ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5f3f7a75 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6787803c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xec518986 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0a35ed20 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2e42bd7a arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5a52992b arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd1f29c8 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x51dc3e68 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x65117887 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8a9c1ab1 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcc9c41ac ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x942fb6aa xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xe76b0dcb xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3f291249 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12e58ee8 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1747cf58 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x557df9db ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6260a4ae ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7bee313d ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7eee889b ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ba29eea ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc6fde3ae ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcdf90b61 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x762221e4 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc0f51fbc ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd0c1405e ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfc906e03 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x9e97b2e6 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xc807f48a xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x0c701356 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd8281e93 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x2775adbf lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x2a064eb6 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x49ebc44f lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7149ed04 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x7513f633 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xaa95e5b1 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xeb412067 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xeda0a6da lapb_connect_request EXPORT_SYMBOL net/llc/llc 0x14f25de6 llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x185289b1 llc_mac_hdr_init EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack @@ -5456,159 +5456,159 @@ EXPORT_SYMBOL net/mac80211/mac80211 0x07f514b0 ieee80211_ctstoself_duration EXPORT_SYMBOL net/mac80211/mac80211 0x08352bb0 __ieee80211_create_tpt_led_trigger EXPORT_SYMBOL net/mac80211/mac80211 0x0a25a4c9 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0b94843b ieee80211_txq_schedule_start EXPORT_SYMBOL net/mac80211/mac80211 0x0e22528e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x102efd2e ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x10f60a7d ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x12bd8a78 ieee80211_beacon_get_tim EXPORT_SYMBOL net/mac80211/mac80211 0x15159940 ieee80211_handle_wake_tx_queue EXPORT_SYMBOL net/mac80211/mac80211 0x1651d316 ieee80211_rate_control_register EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1a83e4ee wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x1af0cef1 ieee80211_register_hw EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x1f07bfd3 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x214a261e ieee80211_reserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x25f9ee9b ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x279ff2d9 ieee80211_unreserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x293d87a3 ieee80211_sta_pspoll EXPORT_SYMBOL net/mac80211/mac80211 0x296a509a ieee80211_stop_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x2a22b10e ieee80211_disable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0x2bdd4754 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x2dd6975b ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x2e676110 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x30f05205 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x33e2d6b3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x306515f2 ieee80211_proberesp_get EXPORT_SYMBOL net/mac80211/mac80211 0x344d18af ieee80211_iter_keys_rcu EXPORT_SYMBOL net/mac80211/mac80211 0x38081956 ieee80211_rts_duration EXPORT_SYMBOL net/mac80211/mac80211 0x389c89e6 ieee80211_generic_frame_duration EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x392ccb20 ieee80211_rts_get EXPORT_SYMBOL net/mac80211/mac80211 0x3a8179d5 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x3b03bee6 ieee80211_beacon_update_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x3bfe35ce ieee80211_find_sta EXPORT_SYMBOL net/mac80211/mac80211 0x3c86ef1a ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x405c811b ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0x4147eb6d ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x42b15ad0 ieee80211_get_unsol_bcast_probe_resp_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x4324dbbb ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x45ac5a14 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x462d594c ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x46a6da84 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x48fcc62e ieee80211_beacon_get_template EXPORT_SYMBOL net/mac80211/mac80211 0x4a63a77b ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4ca53cbb __ieee80211_schedule_txq EXPORT_SYMBOL net/mac80211/mac80211 0x4ec389d4 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x54eaada2 ieee80211_free_hw EXPORT_SYMBOL net/mac80211/mac80211 0x562c68bd ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5bcff3e9 ieee80211_unregister_hw EXPORT_SYMBOL net/mac80211/mac80211 0x5d3cb4b8 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5d3ef9f1 ieee80211_get_unsol_bcast_probe_resp_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x5e444df5 ieee80211_report_wowlan_wakeup EXPORT_SYMBOL net/mac80211/mac80211 0x5eb4ee73 ieee80211_channel_switch_disconnect EXPORT_SYMBOL net/mac80211/mac80211 0x5f47fd57 ieee80211_rx_ba_timer_expired EXPORT_SYMBOL net/mac80211/mac80211 0x60dc6c9b ieee80211_chswitch_done EXPORT_SYMBOL net/mac80211/mac80211 0x6aaa5575 ieee80211_ap_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x6c504a98 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x6c90ce59 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x6d05cd88 ieee80211_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x70c388b7 ieee80211_sched_scan_stopped EXPORT_SYMBOL net/mac80211/mac80211 0x70ca92b5 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x73a715dd ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x76508cfc ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0x7813766c ieee80211_stop_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0x78cf0d30 ieee80211_enable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0x7a5c5c7f ieee80211_sta_recalc_aggregates EXPORT_SYMBOL net/mac80211/mac80211 0x7ab3f2d5 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7b0697fb ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0x7bd48f0e ieee80211_queue_delayed_work EXPORT_SYMBOL net/mac80211/mac80211 0x7e432b82 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x7e79dfd5 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x7eb63051 ieee80211_txq_may_transmit EXPORT_SYMBOL net/mac80211/mac80211 0x8138b649 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x840aa8f3 ieee80211_txq_may_transmit EXPORT_SYMBOL net/mac80211/mac80211 0x841ecac0 ieee80211_start_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x8498a718 ieee80211_free_txskb EXPORT_SYMBOL net/mac80211/mac80211 0x866ee6ed ieee80211_tx_rate_update EXPORT_SYMBOL net/mac80211/mac80211 0x86e725da ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x898ee877 ieee80211_tx_prepare_skb EXPORT_SYMBOL net/mac80211/mac80211 0x8d41726d ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x8e7c4297 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8f183633 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0x8f4c4b79 ieee80211_get_tx_rates EXPORT_SYMBOL net/mac80211/mac80211 0x90c0aa9f ieee80211_txq_get_depth EXPORT_SYMBOL net/mac80211/mac80211 0x91413d18 ieee80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x9a17e2fe ieee80211_send_bar EXPORT_SYMBOL net/mac80211/mac80211 0x9baf74e4 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x9c0b5afe ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0xa1e3de4d ieee80211_disconnect EXPORT_SYMBOL net/mac80211/mac80211 0xa21df23e ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xa45d96c6 ieee80211_reserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0xa7c73c7b __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa86a86ac ieee80211_tx_dequeue EXPORT_SYMBOL net/mac80211/mac80211 0xabba424e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xac963b5f ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0xad8a9bcb ieee80211_get_tkip_p2k EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0xb0cfd91e ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xb0d36b68 ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0xb12f52dc ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xb1b147af ieee80211_alloc_hw_nm EXPORT_SYMBOL net/mac80211/mac80211 0xb53ceb82 ieee80211_tx_status_8023 EXPORT_SYMBOL net/mac80211/mac80211 0xb5a684e8 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc355d166 ieee80211_beacon_get_tim EXPORT_SYMBOL net/mac80211/mac80211 0xc42bf7b2 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xc6cf556a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc61aef1b ieee80211_tx_prepare_skb EXPORT_SYMBOL net/mac80211/mac80211 0xc87a7ec0 ieee80211_mark_rx_ba_filtered_frames EXPORT_SYMBOL net/mac80211/mac80211 0xc89e61b0 ieee80211_nan_func_terminated EXPORT_SYMBOL net/mac80211/mac80211 0xc9603e56 ieee80211_csa_finish EXPORT_SYMBOL net/mac80211/mac80211 0xce371eed ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd0b9cda2 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xd2229c99 ieee80211_ctstoself_get EXPORT_SYMBOL net/mac80211/mac80211 0xd5632560 ieee80211_sta_set_buffered EXPORT_SYMBOL net/mac80211/mac80211 0xd7ff9435 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xdc61ca9a ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0xdddb286b ieee80211_stop_queues EXPORT_SYMBOL net/mac80211/mac80211 0xde27974e ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xde5f9d8e ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xe074f21f ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xdf9946d0 ieee80211_free_hw EXPORT_SYMBOL net/mac80211/mac80211 0xeb64c640 ieee80211_iter_keys EXPORT_SYMBOL net/mac80211/mac80211 0xef5505c8 ieee80211_radar_detected EXPORT_SYMBOL net/mac80211/mac80211 0xf05d56b5 ieee80211_send_eosp_nullfunc EXPORT_SYMBOL net/mac80211/mac80211 0xf287be23 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xf347b922 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xf7bb04d1 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf9e90aa2 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac802154/mac802154 0x21a94787 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x352428a1 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf49a4a48 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfbe02358 ieee80211_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x34ef713c ieee802154_register_hw EXPORT_SYMBOL net/mac802154/mac802154 0x5129e106 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0x804495d5 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x96d51e63 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x57ad78ec ieee802154_configure_durations EXPORT_SYMBOL net/mac802154/mac802154 0x974f42b1 ieee802154_xmit_complete EXPORT_SYMBOL net/mac802154/mac802154 0xbec5c728 ieee802154_xmit_hw_error EXPORT_SYMBOL net/mac802154/mac802154 0xc1a023fb ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xf87bb088 ieee802154_register_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00f64252 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x222124b7 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29486747 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c35eff7 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d8648df ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7581cbc1 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8201763f ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2f475c9 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc3ae6a47 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc833154f unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd6ab7c1e ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd7f42bbd ip_vs_proto_get +EXPORT_SYMBOL net/mac802154/mac802154 0xcab35c1d ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe2aca652 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf8d5598a ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08fe52bf ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x231bb393 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x581f8511 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5849d0ef ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x65ae9660 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x852b0644 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b1b6da7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ccd205e ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91ffcedb ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9272bc87 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb7b87369 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc27b31bb unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcef7e36a ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd715d42b ip_vs_conn_in_get EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb10d063 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe7538691 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf78f8fe4 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x39db5251 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6505d5c register_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x820868a0 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 0x100b78af nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x625e7214 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xc30a5e2e nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc952fc99 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x1003a990 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x3171a3b7 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x962079c6 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa6e445ca nf_nat_mangle_udp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x089a8fa6 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x0bb1810f xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1ef4f53b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x1bcd0b44 xt_unregister_targets 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 0x48025819 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x848cd527 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x4b05cfb5 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x563450fd xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x701af586 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x890ce773 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x99108c32 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xc4372fe7 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc91e1509 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9aab973f xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa99ab10e xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd75b2544 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd4e3e54c xt_register_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 0xf7ef7e28 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xeced257e xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/netfilter/x_tables 0xff1849bc xt_unregister_target EXPORT_SYMBOL net/nfc/hci/hci 0x2a5b4037 nfc_hci_reset_pipes_per_host EXPORT_SYMBOL net/nfc/hci/hci 0x2f424036 nfc_hci_send_cmd_async EXPORT_SYMBOL net/nfc/hci/hci 0x3a16186f nfc_hci_allocate_device @@ -5632,246 +5632,246 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xed241f1f nfc_hci_recv_frame EXPORT_SYMBOL net/nfc/hci/hci 0xf6b42767 nfc_hci_set_param EXPORT_SYMBOL net/nfc/hci/hci 0xfaefab7b nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/nci/nci 0x15d7a2a2 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x1754d707 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x17fa2a87 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x300ef7b9 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x3017cd95 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x35eb2619 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x36ddf548 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x3accdd50 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x3b1d1a89 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x3fa56489 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x41e68844 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x4a5fd5e3 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x4c67240b nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x58136615 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x59cd458b nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x6e8d97be nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x747a6cfb nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x7d27da81 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa9823456 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xaaa806d9 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xac06c681 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xaecd47f9 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x033283ac nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x09c68e45 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x0ba1450f nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0d805709 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x21bb9bc7 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x32649cfe nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3c717cb4 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x53ec5557 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x54f2f9f7 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x5ca0dd7c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7264e20d nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x7c5a1d6f nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x7e25eb52 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x87665da6 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x8b61c054 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x9a9ce9d9 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x9bc8f19d nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xa6626f89 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa92855b6 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xabad96e2 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xb1315580 nci_free_device EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc39ebe84 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xc90c96e6 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xd85e9ba5 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xe0791086 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xecd48a95 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xf9dd170a nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xff4869c3 nci_send_frame -EXPORT_SYMBOL net/nfc/nfc 0x0bcff731 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x2326abdf nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x28869239 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x2f1dfcca nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x330493cf nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x3b67f80c nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x3d2b8717 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x40f14e8d nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x4692fa07 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x4ae0e4ef nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x58772765 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x5bfdaf62 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x5df8db74 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x7616e9c5 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x7b778595 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x822d802c nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x8c028216 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x91bee5d2 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x9ea01510 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xb1dcf4cc nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xd20a3546 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xee877d18 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xf20426ac nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xfc50837e nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xfd47e497 nfc_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xbba3faae nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xc5a8fe22 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xd12d1a63 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xda3daa38 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe3dad4cc nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xea01924a nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xeaf3ebc2 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf4a840f0 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x032de8e6 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x0d88c0eb nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x1864a97c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x18bd2369 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x19280108 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x1a49927d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x20501b00 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x2ce78b99 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x2cef6658 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2d0b7bfa nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x35eb19a1 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x637af753 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x706fab5a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x7605d153 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x91cc0483 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa5cec466 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xbb969d6e nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xc15bb986 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xc4e40e20 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xd8f6d34b nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xda925bdb nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xddcd5fdb nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xe4622816 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xe5ce40dc nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf8ae12f1 nfc_se_transaction EXPORT_SYMBOL net/nfc/nfc_digital 0x7e48540f nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0x89bb3f30 nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0xa361e6a8 nfc_digital_register_device EXPORT_SYMBOL net/nfc/nfc_digital 0xf02b6206 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x0388a3e2 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x081900fa pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x101fa461 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x1955bb79 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x380626f4 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x4a9e6f3b phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x8fa5a00e pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xffe4e900 phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a96a263 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a31cd73 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/phonet/phonet 0x13e5623d pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x2c07e26a phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x2c35a0da phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x32394b6a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x550b5563 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xb1ce98e1 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xb554e0ed pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd34b1504 pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x14d1e337 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x14fcbafe rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x153de142 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x158d025f rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1d5aa37f rxrpc_kernel_check_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x46ed837d rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x48d47b16 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4eab3a36 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c2a1382 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x61de1f59 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x631dea40 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x77e7a85b rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7e1e4221 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8794a427 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8900fa66 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b2441c6 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc4619e5b rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xce6db214 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeaae7a88 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7222176 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7421d87 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0xae79ecbf sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x0928c4d7 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x2377fce6 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x2b05789b __traceiter_smcr_link_down +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3e1d04af rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3ea1ee6e rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x431aa05d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x54ce4b4b rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fef7218 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x60cfc35a rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x681f4b87 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6fee7803 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9edde057 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc9d330cf rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcfd2116d rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xea97569d rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8fc46a6 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/sctp/sctp 0x917ec566 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x6203d4d2 __tracepoint_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0x736ba91d __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8125d99f __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x9f52c470 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xa12477bd __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xa5e2ae02 __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc429f572 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xefae38d2 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xf1cab4fc __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 0x56faed64 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6eb25820 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xef703e8b gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0xaa232011 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc6d618de xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xeeb26126 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x14372767 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x42d8c44f tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x9f7f68e3 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xa709ca4b tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xbd5ea072 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x03420571 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0380d221 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x04f98ac3 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x062d4097 ieee80211_get_channel_khz +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x73d3bc5f gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7f6ed2c0 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9d7e3f94 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8eb9e505 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd25d3fba xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xef6407f9 svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x49fedf9c tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x54ac891f tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xa4dd2d1e tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xbf7eeec7 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0xf7ce8044 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00ae5452 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x02c3ac65 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x02cfa5f6 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x0362aee7 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x03ec5688 ieee80211_get_channel_khz EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0767ea99 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x0c916699 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x0c934223 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x073fc14f cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x0c33f45c cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0e1bec51 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x0e639f4e cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0x0f5a3f3d wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x13723058 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0f5da43d cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1020ab11 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x13c0ddbd cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x15313161 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x16e9a87a cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x176d77be cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x17f23034 ieee80211_data_to_8023_exthdr EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18eab575 cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x19f0358e wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x1c1fa269 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e35f839 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x21e2e1e8 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0x25335ded regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x28636727 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x26f266a4 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x26f8a13b cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x286aae42 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x28a6b02c cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x2b6e8045 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2b6bae3b cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x2c449a64 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x2e9642e9 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0x2e9c16fa get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x30dfe981 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x2ffa4832 cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x347c45a5 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x352c838e cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x3698a5c2 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x367c52d6 cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric EXPORT_SYMBOL net/wireless/cfg80211 0x39910b7c cfg80211_assoc_failure EXPORT_SYMBOL net/wireless/cfg80211 0x3e6c55fc wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x3f879388 cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x435da393 cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x456a8bb1 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x46f92e90 cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0x47b32748 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x4bcc65d0 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x4ad72411 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x4b0a8fdc cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4da8e619 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x4e7a5dec cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x5607bb06 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x55b91bdd cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x562134be cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x5634c3ba wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x5a953b39 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x5acb20be cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x5d534e7b cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x5e19123f cfg80211_put_bss EXPORT_SYMBOL net/wireless/cfg80211 0x5e4805f7 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x60e678a5 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x618c64a3 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x631879a3 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x61b9db2b cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x64b72814 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x65c1c5bb cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x66afa332 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x690bbd88 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x69d517ec __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6e91e555 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x7086ab77 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x722acc39 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x758cc92d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x769f7c7e cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a0bb845 cfg80211_cqm_rssi_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b6c3bc0 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x7bb8d56e cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7b52b571 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7b782e85 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f8fb27b cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0x80dc1e84 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x80f57eea cfg80211_put_bss EXPORT_SYMBOL net/wireless/cfg80211 0x812975c7 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x8157125d cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x8190e4a9 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x81b46394 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x83b6b91f cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x83f04ea5 cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x848cd8b1 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x8aed4340 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8bf52947 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x8e24994e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8b5f0f4c cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8d8b2248 cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x91089f0d ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x92db577a cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0x935ed1e9 cfg80211_sinfo_alloc_tid_stats EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x988a3ed3 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x989bc0ba cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x98ca2053 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9ade491e cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x9ba51d31 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x98bda3c7 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x98f26b88 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9c01e511 cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match EXPORT_SYMBOL net/wireless/cfg80211 0x9dac1530 cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0xab493320 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xab9d0221 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x9f2f4e83 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa10a21e7 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa8a5e75b ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0xabf0485f cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xaf753e50 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xb0f9f0c6 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb4390758 cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0xb6f0592f wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xb8bb86b0 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xb8c06356 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xbb2a8257 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xb854ff7a cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0xbb5307ad regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xbc5fb5ba cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0xbed52579 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc0a99c9c cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xc1242b9b cfg80211_get_ies_channel_number EXPORT_SYMBOL net/wireless/cfg80211 0xc42ed18b cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc52aec50 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc6cdd1d5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xcba24e88 cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd40d4230 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd02a0d39 cfg80211_rx_unprot_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0xd889d479 cfg80211_any_usable_channels EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name EXPORT_SYMBOL net/wireless/cfg80211 0xdbd27410 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xdc3a13c7 cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0xdcc7d3b4 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xde5f49a2 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdf623889 cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0xe006789d cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe297bc70 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe74a5567 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe04c8652 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xe3b04e42 cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0xe75e917a cfg80211_rx_mgmt_ext EXPORT_SYMBOL net/wireless/cfg80211 0xeb3ba7f9 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xebff7e46 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xec7b592d cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0xeee74670 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xf03cadd1 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0xf0619b84 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xf0b26dc8 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xf2398ea7 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xf3f542ce cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf48d1865 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf8e9a1d6 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xfd999e08 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xf861d7be cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/cfg80211 0xfda1a546 freq_reg_info EXPORT_SYMBOL net/wireless/lib80211 0x13cbcc9d lib80211_get_crypto_ops EXPORT_SYMBOL net/wireless/lib80211 0x28147238 lib80211_crypt_info_init @@ -6118,87 +6118,81 @@ EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect EXPORT_SYMBOL vmlinux 0x00027a17 cpu_user EXPORT_SYMBOL vmlinux 0x0006ddc2 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x000f1f8a xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x001b970d pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base -EXPORT_SYMBOL vmlinux 0x00201f47 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x0022bbb8 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x002c3047 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x003b08bf zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x00306272 skb_checksum EXPORT_SYMBOL vmlinux 0x004167fe blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x005aab3b sock_wake_async EXPORT_SYMBOL vmlinux 0x005c6ea7 file_remove_privs -EXPORT_SYMBOL vmlinux 0x005ee66c udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x006f671d xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x0075e030 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x00788091 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x007a3e68 phy_device_register EXPORT_SYMBOL vmlinux 0x0080fdaf init_task EXPORT_SYMBOL vmlinux 0x00a584f0 get_vm_area EXPORT_SYMBOL vmlinux 0x00ab8624 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x00b0c6e7 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x00abcd8c tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x00ae2973 skb_split EXPORT_SYMBOL vmlinux 0x00b1fad4 md_write_end EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00ba7889 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x00c576dd phy_print_status EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count EXPORT_SYMBOL vmlinux 0x00dc13d2 __kmalloc_node EXPORT_SYMBOL vmlinux 0x00dd5a7b mii_nway_restart EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x010023b0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x0100cba9 ethtool_notify EXPORT_SYMBOL vmlinux 0x010d2f32 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x01171daf tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x0117f26b cqhci_pltfm_init EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x01281a55 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012d62bc inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x01353088 skb_copy -EXPORT_SYMBOL vmlinux 0x01389ef2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0138e22a mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01557beb dev_remove_pack +EXPORT_SYMBOL vmlinux 0x015f36c5 param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0x0169b7e2 mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x018107f2 inode_add_bytes EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01a66ff3 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x01aa00ca phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x01b3d293 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x01cbf640 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x01d2d13f scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x01ed7079 inode_init_owner EXPORT_SYMBOL vmlinux 0x01f8ce63 phy_detach EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x0222e634 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x023afef2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x02490e82 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x024abb4e snd_card_free_when_closed EXPORT_SYMBOL vmlinux 0x02599074 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029d370a inet_ioctl EXPORT_SYMBOL vmlinux 0x02a0aec9 page_pool_create EXPORT_SYMBOL vmlinux 0x02a0b4ef tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng EXPORT_SYMBOL vmlinux 0x02c77cff md_write_inc EXPORT_SYMBOL vmlinux 0x02d40c4e pcie_set_readrq EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef5aec rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x02f14c0f generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x030f685f tcp_seq_stop EXPORT_SYMBOL vmlinux 0x0311ec4d of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x0322aff8 nf_setsockopt EXPORT_SYMBOL vmlinux 0x033393c3 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x03349fc1 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x0338ba42 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x033e595f tcp_read_skb EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x03564f31 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x035ea587 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x036025a9 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036bb111 bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate EXPORT_SYMBOL vmlinux 0x03754d4c kill_pgrp EXPORT_SYMBOL vmlinux 0x037a0cba kfree @@ -6206,11 +6200,13 @@ EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity EXPORT_SYMBOL vmlinux 0x03839e25 component_match_add_release +EXPORT_SYMBOL vmlinux 0x038e6719 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs EXPORT_SYMBOL vmlinux 0x039818c0 pci_read_config_word EXPORT_SYMBOL vmlinux 0x03a758b0 register_shrinker EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03e0867f netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x03f14658 pci_request_regions EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x03fbd681 phy_attached_print @@ -6226,59 +6222,52 @@ EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x0487daf4 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x048aff9f blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0x049132b2 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x04ab6d09 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x04d9ea98 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x04edd8ed padata_do_parallel -EXPORT_SYMBOL vmlinux 0x050384d1 netlink_capable +EXPORT_SYMBOL vmlinux 0x05019e3e mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x0523c987 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052df3a1 udp_ioctl -EXPORT_SYMBOL vmlinux 0x052e8301 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x0527640e security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x0533c057 of_lpddr3_get_min_tck EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible EXPORT_SYMBOL vmlinux 0x0564effb vme_register_error_handler EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x05803e21 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x058ddbbf tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x059c8407 brioctl_set EXPORT_SYMBOL vmlinux 0x05a5258c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x05a71cea ip_setsockopt EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05bc00f9 dst_destroy +EXPORT_SYMBOL vmlinux 0x05cb3cc3 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05da1cc8 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x05e7d710 vm_map_pages EXPORT_SYMBOL vmlinux 0x05e872bf jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x05f27ee2 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x05f3b46d inetdev_by_index -EXPORT_SYMBOL vmlinux 0x0608184c xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x0615d187 elv_rb_add EXPORT_SYMBOL vmlinux 0x061651be strcat EXPORT_SYMBOL vmlinux 0x0618fce1 of_get_ddr_timings EXPORT_SYMBOL vmlinux 0x061c29f8 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x0622d37a tty_register_device EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x064dd111 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x067f42f4 inet_accept EXPORT_SYMBOL vmlinux 0x0689fdd1 kill_anon_super -EXPORT_SYMBOL vmlinux 0x069ca22e fqdir_init -EXPORT_SYMBOL vmlinux 0x06a17084 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x06a3d1f0 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x06aba9cf inet_accept EXPORT_SYMBOL vmlinux 0x06ae267e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x06b8dbf8 sock_no_getname EXPORT_SYMBOL vmlinux 0x06ba7724 phy_read_paged EXPORT_SYMBOL vmlinux 0x06bbe2e3 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x06bd2b43 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x06cba590 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x06cd9bef xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06eb392c put_cmsg +EXPORT_SYMBOL vmlinux 0x06f1f90e tcf_idr_release EXPORT_SYMBOL vmlinux 0x06f33b57 ww_mutex_trylock EXPORT_SYMBOL vmlinux 0x0707c664 of_device_alloc EXPORT_SYMBOL vmlinux 0x0708d544 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x070c0804 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x070fffc8 vga_put EXPORT_SYMBOL vmlinux 0x0717eb31 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic @@ -6286,7 +6275,6 @@ EXPORT_SYMBOL vmlinux 0x072ba2d0 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw EXPORT_SYMBOL vmlinux 0x074bdd6a snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0x0759c807 tcp_seq_next EXPORT_SYMBOL vmlinux 0x07705da6 pci_read_vpd EXPORT_SYMBOL vmlinux 0x077708d5 pci_enable_wake EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev @@ -6295,6 +6283,8 @@ EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07ab18a6 input_flush_device EXPORT_SYMBOL vmlinux 0x07af2cd8 filemap_fault +EXPORT_SYMBOL vmlinux 0x07c04511 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x07c31da3 ping_prot EXPORT_SYMBOL vmlinux 0x07c718fb register_sound_mixer EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged @@ -6307,45 +6297,55 @@ EXPORT_SYMBOL vmlinux 0x0811db22 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL vmlinux 0x0816ddd5 dm_get_device EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08372547 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister EXPORT_SYMBOL vmlinux 0x085dbcfd scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x088336f8 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x08864582 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x0889f833 tcf_exts_validate EXPORT_SYMBOL vmlinux 0x088bc9df seq_file_path +EXPORT_SYMBOL vmlinux 0x088ef5e4 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x0896e2bb phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x089e9ba2 setattr_copy +EXPORT_SYMBOL vmlinux 0x08b1de05 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x08babec9 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x08bb0034 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x08c6f7ff sock_no_connect EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x08d7740f __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x08dea6fb udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08ea9a77 tcp_check_req +EXPORT_SYMBOL vmlinux 0x0907085d kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x090b9a4e seq_path EXPORT_SYMBOL vmlinux 0x091772e9 simple_lookup EXPORT_SYMBOL vmlinux 0x091e57ad dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x092e7783 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x09310e75 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x09324499 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x09338c64 forget_cached_acl EXPORT_SYMBOL vmlinux 0x094bd1a6 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x094c1b87 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x095bd567 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x0970cdd9 inode_set_bytes EXPORT_SYMBOL vmlinux 0x0975a338 param_ops_charp EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x0984eb53 sk_common_release EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x098d8ce3 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x09922eec sk_send_sigurg EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09d78843 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ce6b9 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x0a10c602 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x0a18c40e __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a276b93 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x0a2fbce1 __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x0a311f52 arp_create EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr EXPORT_SYMBOL vmlinux 0x0a44fb79 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0a509d11 inet_release -EXPORT_SYMBOL vmlinux 0x0a554303 nf_hook_slow EXPORT_SYMBOL vmlinux 0x0a71b8e4 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x0a855291 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x0a8733e8 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x0a7bf8c8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0a8cc2d4 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x0aa0fcea _dev_alert EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq @@ -6356,39 +6356,42 @@ EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update EXPORT_SYMBOL vmlinux 0x0aec18d8 mdio_device_free EXPORT_SYMBOL vmlinux 0x0aecfac8 devm_clk_get -EXPORT_SYMBOL vmlinux 0x0af8d95d sk_capable EXPORT_SYMBOL vmlinux 0x0b00ad46 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x0b01855d rtnl_notify -EXPORT_SYMBOL vmlinux 0x0b17d51b udp_gro_receive EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b36d717 inet6_getname +EXPORT_SYMBOL vmlinux 0x0b2c869a km_report EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init EXPORT_SYMBOL vmlinux 0x0b49230e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0b4f4181 sock_create_kern +EXPORT_SYMBOL vmlinux 0x0b5b85e0 fqdir_exit EXPORT_SYMBOL vmlinux 0x0b5f0075 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x0b617fea input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x0b6394a1 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7be8bf skb_eth_pop EXPORT_SYMBOL vmlinux 0x0b7c5e06 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0x0b7d8081 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x0b80a0b6 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x0b80dbf1 tso_build_hdr EXPORT_SYMBOL vmlinux 0x0b9117ab dump_page +EXPORT_SYMBOL vmlinux 0x0b991151 bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bae7123 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate EXPORT_SYMBOL vmlinux 0x0bdde590 __inode_add_bytes EXPORT_SYMBOL vmlinux 0x0bdec356 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0c0fa5f4 security_path_rename +EXPORT_SYMBOL vmlinux 0x0c25d756 nf_log_set EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c4ce3a8 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x0c4f14d7 skb_dequeue EXPORT_SYMBOL vmlinux 0x0c5f10ed uart_register_driver EXPORT_SYMBOL vmlinux 0x0c618e85 tty_lock -EXPORT_SYMBOL vmlinux 0x0c8b1a0e inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0c6a19ee neigh_direct_output +EXPORT_SYMBOL vmlinux 0x0c7c908c ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x0c9199a0 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0caaa590 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x0cace7e1 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cbfa86e fs_param_is_enum @@ -6401,31 +6404,35 @@ EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x0d1d8def from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x0d254b51 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d4d892f mmc_retune_release +EXPORT_SYMBOL vmlinux 0x0d4e9057 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0da30176 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dcfbefb sk_dst_check EXPORT_SYMBOL vmlinux 0x0dd2b17c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x0de42701 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x0dfcda06 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x0e0c48da invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x0e1f85ef uart_match_port EXPORT_SYMBOL vmlinux 0x0e2635ae blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x0e2bd131 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0e54ec85 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize EXPORT_SYMBOL vmlinux 0x0e61ee72 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x0e69c866 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x0e6d060b folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0x0e7684bb phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x0e7a38d5 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x0e8904fc fs_param_is_bool EXPORT_SYMBOL vmlinux 0x0e8ffcba devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x0e939017 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x0e9f812b fd_install EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eaa8eb9 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x0eaab56e __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ebe75c6 pcie_print_link_status EXPORT_SYMBOL vmlinux 0x0ec34822 __scsi_print_sense @@ -6434,83 +6441,82 @@ EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy EXPORT_SYMBOL vmlinux 0x0eef9d2f pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x0ef5ec01 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x0ef7e77a sock_i_ino EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable EXPORT_SYMBOL vmlinux 0x0f10b0f3 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0f176f84 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x0f1a2d2c ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f21901e security_path_mknod -EXPORT_SYMBOL vmlinux 0x0f3ccd8a inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x0f4a86d1 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x0f4ea6f3 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x0f54270b netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x0f601205 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x0f613dca register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x0f6ef049 snd_card_file_remove EXPORT_SYMBOL vmlinux 0x0f823125 rawnand_sw_bch_correct EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9cbd0d pneigh_lookup EXPORT_SYMBOL vmlinux 0x0fa062c0 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x0fad9b93 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x0fb04c62 cqhci_deactivate EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fb307b1 d_obtain_root EXPORT_SYMBOL vmlinux 0x0fb9418f cfb_imageblit +EXPORT_SYMBOL vmlinux 0x0fbfd6d6 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x0fc8598a sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x0fd0398e max8998_read_reg EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock -EXPORT_SYMBOL vmlinux 0x0fd5f7ba sock_alloc EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create EXPORT_SYMBOL vmlinux 0x0fdd8352 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x0fe99d6c napi_consume_skb +EXPORT_SYMBOL vmlinux 0x0feabcc5 vlan_for_each +EXPORT_SYMBOL vmlinux 0x0fee15d5 neigh_ifdown EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod EXPORT_SYMBOL vmlinux 0x0ff1d467 cqhci_init -EXPORT_SYMBOL vmlinux 0x0ff63a52 netdev_state_change EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x100742f9 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x1014e7fd tcf_qevent_init EXPORT_SYMBOL vmlinux 0x1016b061 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x10184841 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x101bfa73 rproc_boot -EXPORT_SYMBOL vmlinux 0x102445a0 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x103329f2 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region EXPORT_SYMBOL vmlinux 0x103ba32b of_phy_connect EXPORT_SYMBOL vmlinux 0x105a9537 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0x105ab518 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1060eb06 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked -EXPORT_SYMBOL vmlinux 0x10775a16 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x1075894f inet_frags_init EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108982b3 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x109446ba pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x109bef3b ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x10c828ff netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x10a6eaf5 sock_no_mmap EXPORT_SYMBOL vmlinux 0x10c8762c devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x10c8edb7 snd_info_register EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10eada4f sk_error_report EXPORT_SYMBOL vmlinux 0x10f68118 phy_init_hw -EXPORT_SYMBOL vmlinux 0x10f7be46 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x10f85a83 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x11053c46 netdev_reset_tc EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x110e52ae scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x11168acb vfs_mknod EXPORT_SYMBOL vmlinux 0x1116d076 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x1116df60 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0x1127c6c6 to_nd_btt -EXPORT_SYMBOL vmlinux 0x1127e264 free_task EXPORT_SYMBOL vmlinux 0x113a60fd pci_enable_msi -EXPORT_SYMBOL vmlinux 0x1143defd iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x114b6c6c vc_cons EXPORT_SYMBOL vmlinux 0x1157e355 input_get_poll_interval EXPORT_SYMBOL vmlinux 0x115d00d1 inc_node_page_state EXPORT_SYMBOL vmlinux 0x115fad4c mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x118e1333 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x1195e28d pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x1197ef8d jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a91343 sock_create -EXPORT_SYMBOL vmlinux 0x11c19b59 netlink_ack +EXPORT_SYMBOL vmlinux 0x11bf0822 security_inode_init_security EXPORT_SYMBOL vmlinux 0x11d075cc twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x11e07eaa tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x11e21701 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x11de3b81 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x12062088 tty_port_init @@ -6519,46 +6525,46 @@ EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave EXPORT_SYMBOL vmlinux 0x121303bd snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL vmlinux 0x121b1ffc d_tmpfile +EXPORT_SYMBOL vmlinux 0x1224705f xfrm_state_free EXPORT_SYMBOL vmlinux 0x122991b7 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x122bf9c2 snd_ctl_notify_one EXPORT_SYMBOL vmlinux 0x12394197 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x124037dc ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x12794a81 d_instantiate_new EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down EXPORT_SYMBOL vmlinux 0x1281f4d5 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x12914541 tcp_shutdown EXPORT_SYMBOL vmlinux 0x1295e7af deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x1297119b softnet_data EXPORT_SYMBOL vmlinux 0x12a28cb4 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x12b3c6ab xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x12a8a838 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x12ca0018 file_path EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fa593b __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x1301b237 mii_check_media EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x132531ff qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x132783e1 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x1327ab2e mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x132f0c7d flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x13336760 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x1358071d unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x13622a2e mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x136c8744 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x138b85c9 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x138ba8d8 snd_jack_set_parent EXPORT_SYMBOL vmlinux 0x13c392be d_alloc_anon -EXPORT_SYMBOL vmlinux 0x13cca7ea ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f7a17a __napi_schedule +EXPORT_SYMBOL vmlinux 0x13f948b5 eth_header_cache EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock EXPORT_SYMBOL vmlinux 0x1411dbac kobject_del -EXPORT_SYMBOL vmlinux 0x141bbc17 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0x141d166e tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x14205027 param_ops_invbool EXPORT_SYMBOL vmlinux 0x14249c3a vme_bus_num -EXPORT_SYMBOL vmlinux 0x142bc0ac skb_set_owner_w EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x145255e6 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x1456850f rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x14586433 generic_update_time EXPORT_SYMBOL vmlinux 0x145c4dd0 fs_context_for_reconfigure @@ -6566,22 +6572,21 @@ EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table EXPORT_SYMBOL vmlinux 0x147899a4 begin_new_exec EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x1498f62a dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x14a6cd18 ww_mutex_lock EXPORT_SYMBOL vmlinux 0x14b5f0cb mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x14c8d3bd tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x14cd924c jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x14cde273 pci_enable_device EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x1503e5c9 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x150c6558 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x151b2034 nd_btt_version EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1534952e sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x15412496 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x15319795 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x154628c0 skb_append EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156cfc0d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x15536b32 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x15780e8d i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x1586cb07 phy_modify_paged EXPORT_SYMBOL vmlinux 0x15a05c9c scsi_print_result @@ -6591,133 +6596,151 @@ EXPORT_SYMBOL vmlinux 0x15c045e6 get_fs_type EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le EXPORT_SYMBOL vmlinux 0x15e8476d snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x15f36836 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x15f3ea88 audit_log_start +EXPORT_SYMBOL vmlinux 0x15f7d4ec __dev_get_by_index EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x15fe6268 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x15ff7876 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x1618a5ff phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x161d9bb5 phy_request_interrupt EXPORT_SYMBOL vmlinux 0x1621cc12 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x16234a16 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163a82e0 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16429896 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x1642c4df mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find EXPORT_SYMBOL vmlinux 0x165fc97c fc_mount EXPORT_SYMBOL vmlinux 0x1660ff8b pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0x166679d2 mdio_find_bus EXPORT_SYMBOL vmlinux 0x166a12d9 phy_get_pause +EXPORT_SYMBOL vmlinux 0x1686976c sock_kzfree_s EXPORT_SYMBOL vmlinux 0x169e2564 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16b5aec9 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x16bf4dd5 get_task_cred EXPORT_SYMBOL vmlinux 0x16ca0ec7 dqput -EXPORT_SYMBOL vmlinux 0x16de6ef3 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x16ca92b9 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x16d1daef tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e9cd16 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x16e89bb8 tcf_action_exec EXPORT_SYMBOL vmlinux 0x16ec948a crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x16eeacaf cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0x170475d6 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x17139f09 bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0x171655d2 pci_find_bus -EXPORT_SYMBOL vmlinux 0x1718ca8c sock_no_accept -EXPORT_SYMBOL vmlinux 0x172592d2 kernel_connect EXPORT_SYMBOL vmlinux 0x17397661 dma_set_mask EXPORT_SYMBOL vmlinux 0x174978c5 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x17566258 tso_start EXPORT_SYMBOL vmlinux 0x175a177a jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1777383d __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x177b66d0 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x177ff0b3 phy_start EXPORT_SYMBOL vmlinux 0x178c11f4 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1798f0db genl_register_family EXPORT_SYMBOL vmlinux 0x17b26c82 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x17b35f1e ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x17bde25b ip_options_compile -EXPORT_SYMBOL vmlinux 0x17cdd118 nf_log_trace EXPORT_SYMBOL vmlinux 0x17d03338 padata_set_cpumask EXPORT_SYMBOL vmlinux 0x17ebb21a mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x17f20ea2 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x17f8fb30 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x181c5672 __sk_dst_check EXPORT_SYMBOL vmlinux 0x1823543e snd_timer_stop +EXPORT_SYMBOL vmlinux 0x18265f0b sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1838e39f __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x1847439f mfd_cell_disable EXPORT_SYMBOL vmlinux 0x1853a15e request_key_rcu -EXPORT_SYMBOL vmlinux 0x185a5fc8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x186a8a9e phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x18835387 mr_dump EXPORT_SYMBOL vmlinux 0x188691f9 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x189b45da snd_soc_alloc_ac97_component EXPORT_SYMBOL vmlinux 0x189d821a kill_block_super -EXPORT_SYMBOL vmlinux 0x18d37637 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x18e2d379 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x18e303db nf_log_register EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x18f3c5c8 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x18f879c7 sync_blockdev_range EXPORT_SYMBOL vmlinux 0x1901a398 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x19125f36 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x194539f5 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x194cd16d nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x194e390b inet_shutdown EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x195d6426 vlan_vid_del EXPORT_SYMBOL vmlinux 0x1962ee70 i2c_get_adapter EXPORT_SYMBOL vmlinux 0x19729b51 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x1981e90c tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x1997ff0b dev_open EXPORT_SYMBOL vmlinux 0x1998bcad dev_addr_mod EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec EXPORT_SYMBOL vmlinux 0x19cc890a pcim_iomap -EXPORT_SYMBOL vmlinux 0x19d63f59 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x19cce09b sock_efree EXPORT_SYMBOL vmlinux 0x19d74c1e vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x19e6feb9 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x19e986f9 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x19f4f95f mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x1a0b938c sock_alloc_file +EXPORT_SYMBOL vmlinux 0x1a12d232 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x1a396278 inet6_offloads +EXPORT_SYMBOL vmlinux 0x1a45ae42 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1a5ffef4 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a6c1403 sock_wfree EXPORT_SYMBOL vmlinux 0x1a7abc02 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1aad088f noop_qdisc +EXPORT_SYMBOL vmlinux 0x1ac6d8de security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x1acf742a simple_transaction_release EXPORT_SYMBOL vmlinux 0x1ad02fd7 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1aebcf57 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x1adada83 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x1adc3dc7 sock_pfree EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b085ebe __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x1b08ce16 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x1b0a21fe __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x1b0f0182 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1b1eb255 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b37e00c udp_read_skb EXPORT_SYMBOL vmlinux 0x1b4fdc5a snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0x1b5bb091 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b7d815f jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x1b7dd710 module_refcount -EXPORT_SYMBOL vmlinux 0x1b98376a ppp_input +EXPORT_SYMBOL vmlinux 0x1b906847 unregister_qdisc EXPORT_SYMBOL vmlinux 0x1b985ac2 of_get_parent EXPORT_SYMBOL vmlinux 0x1b98ae38 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x1ba66b98 __invalidate_device -EXPORT_SYMBOL vmlinux 0x1bc12370 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x1be08c2e netif_skb_features +EXPORT_SYMBOL vmlinux 0x1bb4a2f8 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x1be502b9 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x1befb5f7 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x1bfd1a61 vm_event_states -EXPORT_SYMBOL vmlinux 0x1c24bcfd inet_add_offload -EXPORT_SYMBOL vmlinux 0x1c2bfbfb sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x1c2c65b6 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x1c001b3d sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x1c3969ae input_open_device EXPORT_SYMBOL vmlinux 0x1c559c8c snd_jack_new EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c5f3a02 mr_table_dump EXPORT_SYMBOL vmlinux 0x1c6610db kobject_add EXPORT_SYMBOL vmlinux 0x1c6e6809 sound_class EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c779a4d tcp_conn_request +EXPORT_SYMBOL vmlinux 0x1c7c3a19 skb_tx_error EXPORT_SYMBOL vmlinux 0x1c7d31f7 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x1c8233ca unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x1c8b1b3a tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x1c9034eb register_sound_dsp EXPORT_SYMBOL vmlinux 0x1c9fe693 fs_bio_set -EXPORT_SYMBOL vmlinux 0x1ca46c4a netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x1ca9d5b8 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x1cadab9d snd_info_free_entry -EXPORT_SYMBOL vmlinux 0x1cb02b61 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x1cba3f0c blk_put_queue EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x1cc922c6 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x1cdd06e7 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1cdacaa4 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x1ce930ab inet_frag_destroy EXPORT_SYMBOL vmlinux 0x1cf57755 cad_pid EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed EXPORT_SYMBOL vmlinux 0x1d2a044b start_tty +EXPORT_SYMBOL vmlinux 0x1d32324d xfrm_state_flush EXPORT_SYMBOL vmlinux 0x1d329626 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap EXPORT_SYMBOL vmlinux 0x1d384ab8 pci_find_capability @@ -6727,8 +6750,13 @@ EXPORT_SYMBOL vmlinux 0x1d50060e tty_port_close_start EXPORT_SYMBOL vmlinux 0x1d5ca863 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x1d656e69 pci_iomap +EXPORT_SYMBOL vmlinux 0x1d68220e __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d7a280d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1d87fc5b xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1d8e9617 iptun_encaps EXPORT_SYMBOL vmlinux 0x1da100ea phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1dc06324 sock_no_accept EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dcb5218 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap @@ -6737,30 +6765,31 @@ EXPORT_SYMBOL vmlinux 0x1de5826d jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1dfa3fe1 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0dd3a9 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1e2f908c udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1e10dce3 iterate_fd +EXPORT_SYMBOL vmlinux 0x1e3b0ff3 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1e3c92a6 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x1e482934 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x1e4cb0b6 ndisc_send_skb -EXPORT_SYMBOL vmlinux 0x1e51fe96 inet_frag_find EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot EXPORT_SYMBOL vmlinux 0x1e5d149c nand_ecc_sw_hamming_get_engine EXPORT_SYMBOL vmlinux 0x1e5de3d1 mii_check_link EXPORT_SYMBOL vmlinux 0x1e64ce13 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x1e64d58f pci_choose_state -EXPORT_SYMBOL vmlinux 0x1e679d65 rt_dst_clone EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e86bfe8 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1e95ed56 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 EXPORT_SYMBOL vmlinux 0x1eb67d21 set_blocksize +EXPORT_SYMBOL vmlinux 0x1eca96ac tcp_sync_mss EXPORT_SYMBOL vmlinux 0x1ece2103 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x1ed4dd2a mfd_cell_enable EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edfedcb neigh_table_clear EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format EXPORT_SYMBOL vmlinux 0x1ef47291 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x1efbe689 mark_buffer_write_io_error @@ -6769,51 +6798,50 @@ EXPORT_SYMBOL vmlinux 0x1f1d8b01 remove_proc_entry EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0x1f50e9ac pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x1f70d96b netif_carrier_off EXPORT_SYMBOL vmlinux 0x1f78d993 simple_release_fs -EXPORT_SYMBOL vmlinux 0x1f792177 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x1f83a795 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x1fb2a41f inet_select_addr +EXPORT_SYMBOL vmlinux 0x1f80a4c8 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc29c2c mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1fc389fd __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fdf511b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x1fd8f083 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2011de33 inet_select_addr +EXPORT_SYMBOL vmlinux 0x202f1180 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x20382efb security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x2041a3e9 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x204ace1e kthread_bind EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list EXPORT_SYMBOL vmlinux 0x205b0ee8 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x206907e4 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x206f1249 dget_parent EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x2076de82 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x20830aa4 d_splice_alias -EXPORT_SYMBOL vmlinux 0x208a561c rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x20929698 snd_ctl_rename +EXPORT_SYMBOL vmlinux 0x209f867a gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data EXPORT_SYMBOL vmlinux 0x20a7bd2f fb_blank -EXPORT_SYMBOL vmlinux 0x20bcfa6a xp_can_alloc +EXPORT_SYMBOL vmlinux 0x20d475d9 udp_set_csum EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20e32818 snd_ctl_notify EXPORT_SYMBOL vmlinux 0x20e9216b input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x20f7524c scsi_remove_device EXPORT_SYMBOL vmlinux 0x21004bd4 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x21031d35 sock_rfree EXPORT_SYMBOL vmlinux 0x21110dbf mmioset EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 EXPORT_SYMBOL vmlinux 0x21206aff seq_hex_dump EXPORT_SYMBOL vmlinux 0x212c512d posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2138286e tcp_req_err EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213bb534 udplite_prot +EXPORT_SYMBOL vmlinux 0x213cd5e9 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x2152ed3b phy_error EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header EXPORT_SYMBOL vmlinux 0x215697d5 kmem_cache_free EXPORT_SYMBOL vmlinux 0x215f3749 devm_release_resource -EXPORT_SYMBOL vmlinux 0x2162d621 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset EXPORT_SYMBOL vmlinux 0x21b5984f simple_dentry_operations @@ -6823,75 +6851,73 @@ EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x21c5e518 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x21c6c2cc i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x21c818b2 sock_set_priority EXPORT_SYMBOL vmlinux 0x21d282e0 param_get_ullong EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e69810 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21f39762 tegra_dfll_runtime_suspend EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq EXPORT_SYMBOL vmlinux 0x21f8563b snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0x21fe2ed7 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x22080309 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x22081c8d sk_alloc EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x22235371 vme_master_request EXPORT_SYMBOL vmlinux 0x2227f872 path_get EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2232a2fe skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x223c8f62 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0x224a03ad file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0x2251fc9d rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x2254d485 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x22630f74 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x22613ae6 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x226baad9 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x22717ae5 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision EXPORT_SYMBOL vmlinux 0x22780ab5 dma_fence_describe -EXPORT_SYMBOL vmlinux 0x227da902 udp_seq_ops EXPORT_SYMBOL vmlinux 0x229ae2c6 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x229e3d4e security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound EXPORT_SYMBOL vmlinux 0x22b555dc jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x22c00b3c __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x22c4f736 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x22d605a5 locks_free_lock EXPORT_SYMBOL vmlinux 0x22df8005 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x22ea3ea2 add_to_pipe EXPORT_SYMBOL vmlinux 0x22ed5a1b iov_iter_discard +EXPORT_SYMBOL vmlinux 0x23157a89 alloc_fddidev EXPORT_SYMBOL vmlinux 0x233647dd kill_fasync -EXPORT_SYMBOL vmlinux 0x234607dc tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x23496343 skb_copy_header EXPORT_SYMBOL vmlinux 0x2362ba9b get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init EXPORT_SYMBOL vmlinux 0x2365401a set_page_dirty +EXPORT_SYMBOL vmlinux 0x2367d866 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x239e4d0f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x238ceb34 xp_dma_map EXPORT_SYMBOL vmlinux 0x23a204c2 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x23a87dcd pci_enable_device_io EXPORT_SYMBOL vmlinux 0x23aee11a truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path EXPORT_SYMBOL vmlinux 0x23bbf945 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x23caddeb mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x23d19a62 dev_get_flags EXPORT_SYMBOL vmlinux 0x23dac456 vm_mmap +EXPORT_SYMBOL vmlinux 0x23db3b14 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23f71f0a xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node EXPORT_SYMBOL vmlinux 0x24014262 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x24059e6f xfrm_register_km EXPORT_SYMBOL vmlinux 0x240784ec lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x241f9bd7 inet_sendpage -EXPORT_SYMBOL vmlinux 0x2426a7db udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x242f1ff9 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0x243cb12d param_set_short EXPORT_SYMBOL vmlinux 0x243f52bd locks_copy_conflock EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2444d7f1 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x2452e0e6 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x2454eda1 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b6399 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x246790df idr_for_each EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update EXPORT_SYMBOL vmlinux 0x247d466a mmc_can_discard -EXPORT_SYMBOL vmlinux 0x249baeb1 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24b6c746 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x24b800ef dev_get_by_index +EXPORT_SYMBOL vmlinux 0x24bb69b2 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x24c0a63c of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d6f877 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x24da5f2c get_inode_acl EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x24e4f513 vme_dma_list_exec @@ -6900,53 +6926,52 @@ EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x2525a938 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x25281314 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x25282236 freeze_bdev -EXPORT_SYMBOL vmlinux 0x25410d5b sock_no_listen EXPORT_SYMBOL vmlinux 0x256318a5 blkdev_put EXPORT_SYMBOL vmlinux 0x2564c17e blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x2574b05f netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation EXPORT_SYMBOL vmlinux 0x25959dd8 dqget EXPORT_SYMBOL vmlinux 0x2597ec1a end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x25a9b92e neigh_update +EXPORT_SYMBOL vmlinux 0x25adfae6 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x25bda3b1 input_register_handle -EXPORT_SYMBOL vmlinux 0x25cb75f5 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x25d57d17 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x25ce8379 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25f2c4e3 inode_insert5 EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table EXPORT_SYMBOL vmlinux 0x261ec8a4 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x262e4095 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x2632c671 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263ef60a devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x2659a1e3 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x26747be6 phy_device_create EXPORT_SYMBOL vmlinux 0x26784361 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x2680fbf3 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26cbf487 tcf_register_action EXPORT_SYMBOL vmlinux 0x26d53914 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x26dc9988 of_device_is_available EXPORT_SYMBOL vmlinux 0x26e889c6 pci_write_config_byte EXPORT_SYMBOL vmlinux 0x26fbccdd jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x26fc7c0f unlock_page +EXPORT_SYMBOL vmlinux 0x26ffadc2 skb_eth_pop EXPORT_SYMBOL vmlinux 0x2704314f devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271b04af tcp_v4_connect EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x273aef90 dput +EXPORT_SYMBOL vmlinux 0x273e01bd dev_alloc_name EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp 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 0x27759f75 inet6_getname EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27830e82 pci_restore_state EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278b0a66 ip_defrag EXPORT_SYMBOL vmlinux 0x279de142 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x279ef368 set_cached_acl EXPORT_SYMBOL vmlinux 0x27a3ef5d snd_pcm_set_sync @@ -6954,12 +6979,14 @@ EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27c360a5 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x27cb055b i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x27ccdc1b tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource EXPORT_SYMBOL vmlinux 0x27d0fafb tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0x27d9bedb sockfd_lookup +EXPORT_SYMBOL vmlinux 0x27dec8f3 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x27f6e403 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x280ca23e phy_error EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281cb88d tcf_exts_change EXPORT_SYMBOL vmlinux 0x281e5033 rproc_add EXPORT_SYMBOL vmlinux 0x28266ea3 timestamp_truncate EXPORT_SYMBOL vmlinux 0x283000c0 dquot_load_quota_inode @@ -6967,63 +6994,55 @@ EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy -EXPORT_SYMBOL vmlinux 0x289671e9 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x289c314c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x28a4f46f inet_frags_fini EXPORT_SYMBOL vmlinux 0x28adab0f dma_resv_fini -EXPORT_SYMBOL vmlinux 0x28c41b92 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x28d1ba68 regset_get -EXPORT_SYMBOL vmlinux 0x28e82c24 dev_load EXPORT_SYMBOL vmlinux 0x28f788ba setattr_prepare EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable EXPORT_SYMBOL vmlinux 0x29205785 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x292d3a6b tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2932340e dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x293394fe vfs_setpos EXPORT_SYMBOL vmlinux 0x29438f39 textsearch_destroy EXPORT_SYMBOL vmlinux 0x294805fc scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x29552f6a skb_push +EXPORT_SYMBOL vmlinux 0x295da8f9 unregister_netdev EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296d5948 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x296ef2f9 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x297f7928 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x29735bab sock_i_ino +EXPORT_SYMBOL vmlinux 0x298421bd sk_dst_check EXPORT_SYMBOL vmlinux 0x2984e487 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x2989bcaa sync_inodes_sb EXPORT_SYMBOL vmlinux 0x299b682e __scsi_execute EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x29a49324 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x29a52cfd crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x29b1244d xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x29b2bbb6 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x29c63b91 ping_prot EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x29e9dd78 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x29f80451 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x2a0a3083 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x29fbfe6a xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x2a0837f4 inet6_register_protosw EXPORT_SYMBOL vmlinux 0x2a2a03cb param_set_invbool EXPORT_SYMBOL vmlinux 0x2a2d6372 dm_register_target EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit EXPORT_SYMBOL vmlinux 0x2a4ede15 devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a704d6f security_sb_remount -EXPORT_SYMBOL vmlinux 0x2a725bb5 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2a805298 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a97a44c inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aaec033 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x2ab302d6 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x2ac78258 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x2ada9c90 skb_ext_add EXPORT_SYMBOL vmlinux 0x2ae304dc dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x2b1bf71d skb_recv_datagram EXPORT_SYMBOL vmlinux 0x2b1f67ca devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x2b221143 ip_frag_init EXPORT_SYMBOL vmlinux 0x2b28acca tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x2b30ce49 tcp_check_req -EXPORT_SYMBOL vmlinux 0x2b330d2f xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x2b529203 seq_release_private EXPORT_SYMBOL vmlinux 0x2b74f678 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x2b7b9199 __fput_sync EXPORT_SYMBOL vmlinux 0x2b7ba207 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x2b7bc73a tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x2b807930 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x2b8cb32f cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0x2b900d37 seq_pad EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask @@ -7031,37 +7050,32 @@ EXPORT_SYMBOL vmlinux 0x2bb1aea4 serio_interrupt EXPORT_SYMBOL vmlinux 0x2bb3d5a6 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x2bb5f64d mmc_get_card -EXPORT_SYMBOL vmlinux 0x2bc9c96e qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x2bd28ae2 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2be52841 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x2bf9a9de inet_addr_type EXPORT_SYMBOL vmlinux 0x2bfe5672 block_commit_write EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c1c7168 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x2c252e0c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x2c0de25c ip_output +EXPORT_SYMBOL vmlinux 0x2c1a42ae tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2a7ba2 sock_release EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c3b614b ip_frag_next EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq EXPORT_SYMBOL vmlinux 0x2c4c2625 __filemap_get_folio EXPORT_SYMBOL vmlinux 0x2c570eb1 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x2c6b4bb8 skb_copy_expand EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c752a1a datagram_poll EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c7d1fa7 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2cb03714 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2c9259de udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x2cc3b742 sk_net_capable EXPORT_SYMBOL vmlinux 0x2ce1ad9c blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x2cf9c08c ppp_unit_number EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x2d04cc12 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d2269c7 udp_set_csum EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d40b456 arp_tbl EXPORT_SYMBOL vmlinux 0x2d4472c2 zstd_find_frame_compressed_size EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font @@ -7072,28 +7086,28 @@ EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc EXPORT_SYMBOL vmlinux 0x2d790e2c read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x2d798e2e tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x2d8f54f4 netif_skb_features EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9e7184 kernel_listen EXPORT_SYMBOL vmlinux 0x2db081a9 sg_miter_stop EXPORT_SYMBOL vmlinux 0x2db68317 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x2db869e5 genphy_resume EXPORT_SYMBOL vmlinux 0x2dbbc9d5 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x2dc31335 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2dcd0573 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x2dd0edc8 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x2dd32f84 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x2ddff561 skb_checksum EXPORT_SYMBOL vmlinux 0x2ddff855 get_tree_keyed EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de4df98 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x2e123789 nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x2e15d8cb blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x2e161d21 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e404f7f clocksource_change_rating EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk EXPORT_SYMBOL vmlinux 0x2e48f776 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x2e6ef198 noop_fsync -EXPORT_SYMBOL vmlinux 0x2e7d02de inet_getname EXPORT_SYMBOL vmlinux 0x2e987b74 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x2ea8f348 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x2ea909a5 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set @@ -7102,146 +7116,150 @@ EXPORT_SYMBOL vmlinux 0x2f03c438 i2c_del_driver EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1eba13 dev_set_threaded EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f3ca14b kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2f3909b0 __ip_options_compile EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x2f5ae254 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x2f5afdee xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f612fae tcf_action_exec EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream EXPORT_SYMBOL vmlinux 0x2f736e4d scsi_done_direct EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f795142 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2f7c180f tcp_shutdown EXPORT_SYMBOL vmlinux 0x2f8ec91e inode_set_flags EXPORT_SYMBOL vmlinux 0x2f9dac04 pci_map_rom -EXPORT_SYMBOL vmlinux 0x2fa7d330 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x2fa8a754 tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0x2faa16cd alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x2fb5b1ec qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x2fd8e5b7 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x2fdf98b4 vfs_get_link EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2ffdcf87 pci_release_regions EXPORT_SYMBOL vmlinux 0x2fff27c5 locks_init_lock -EXPORT_SYMBOL vmlinux 0x30081468 udp6_csum_init EXPORT_SYMBOL vmlinux 0x3008e13f pci_disable_device EXPORT_SYMBOL vmlinux 0x300fad6e d_path EXPORT_SYMBOL vmlinux 0x30132404 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x301e0c1d tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x3034df95 inet6_bind +EXPORT_SYMBOL vmlinux 0x3039bd49 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x303a5c3f dev_deactivate +EXPORT_SYMBOL vmlinux 0x30446089 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x305006e3 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x3052d996 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x3056eed2 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0x305a1a3a vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x305faf50 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x306276fc scsi_print_sense EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x307935e2 snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0x308539cf security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x30870586 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x3087368a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x30877e42 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x308bc6d6 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x308f0106 snd_pcm_create_iec958_consumer EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x309a66c1 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30afbeef unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x30b20f46 __netif_schedule EXPORT_SYMBOL vmlinux 0x30ba72c6 snd_ctl_add -EXPORT_SYMBOL vmlinux 0x30bf9d2c udp6_set_csum EXPORT_SYMBOL vmlinux 0x30d0fdff snd_pcm_lib_malloc_pages EXPORT_SYMBOL vmlinux 0x30d5de5d dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create -EXPORT_SYMBOL vmlinux 0x31016374 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x3111a65f netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x3115fc55 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x310af396 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x311d176b ip_route_me_harder EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x31295913 snd_sgbuf_get_addr EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x314b59f7 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x314e36e0 dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x315d143d mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x315f0c0f dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x3160c4fd genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x31674e92 dst_alloc EXPORT_SYMBOL vmlinux 0x3173d664 key_alloc EXPORT_SYMBOL vmlinux 0x318511a5 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x31a176c4 mr_table_alloc EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available EXPORT_SYMBOL vmlinux 0x31a9f6be blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x31b31f93 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x31bff817 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x31de3e57 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x31fdf072 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x32018c5f xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x3220686a skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset EXPORT_SYMBOL vmlinux 0x322f8e3a vme_irq_request EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x3245df9b eth_header_parse EXPORT_SYMBOL vmlinux 0x325ae6a1 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x32648ccb ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x32748221 inet_protos EXPORT_SYMBOL vmlinux 0x3276c0ca folio_wait_private_2 EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy EXPORT_SYMBOL vmlinux 0x3293dde3 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x32abca77 __netif_rx +EXPORT_SYMBOL vmlinux 0x32b55808 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32ea0c72 inet_confirm_addr EXPORT_SYMBOL vmlinux 0x32fb56da flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x32fb8a1c sock_no_socketpair EXPORT_SYMBOL vmlinux 0x3309f721 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x3333b265 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0x333cdbd9 vc_resize EXPORT_SYMBOL vmlinux 0x333cfb2e filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x333f1f99 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x3344bd4e sockopt_release_sock -EXPORT_SYMBOL vmlinux 0x3350e875 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x335bb6b0 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x33530c1a skb_unlink EXPORT_SYMBOL vmlinux 0x3368d5e7 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x336ce246 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x3379cf8c flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x337e659a blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x33872b8f tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x338ae87a tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x339ba3f1 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x33ae5fbc tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x33b576e6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x339b6556 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x33c4f920 gro_cells_receive EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x33e9543c unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f2ad15 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x33fb225c inet_offloads EXPORT_SYMBOL vmlinux 0x33feceb5 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x340ba6a6 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x341ac72c __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x343be382 xfrm_input -EXPORT_SYMBOL vmlinux 0x3458971a eth_get_headlen EXPORT_SYMBOL vmlinux 0x345a3a6d nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x345b6029 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item EXPORT_SYMBOL vmlinux 0x34a41a8b unregister_cdrom EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34ccb378 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x34f20f95 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x34f30469 xsk_tx_release EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34ffbdac inet_sendmsg EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351e3994 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x352bc257 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x352d6105 pci_unmap_rom EXPORT_SYMBOL vmlinux 0x352d6e6b empty_zero_page -EXPORT_SYMBOL vmlinux 0x3532c116 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x3534a3ba neigh_table_clear EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3551fee1 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357088e7 pskb_expand_head EXPORT_SYMBOL vmlinux 0x3576fe06 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x357a08c0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x3577668e fget EXPORT_SYMBOL vmlinux 0x35879f24 generic_delete_inode EXPORT_SYMBOL vmlinux 0x359dc6ed pci_pme_capable EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b74000 dev_add_offload EXPORT_SYMBOL vmlinux 0x35c7ba27 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x35ce2c84 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x35e29341 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable EXPORT_SYMBOL vmlinux 0x361c364f file_open_root +EXPORT_SYMBOL vmlinux 0x36211657 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x3623a221 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x362a4d05 pci_release_resource -EXPORT_SYMBOL vmlinux 0x3630df6e __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x3633506d page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x36397e27 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x363695c1 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x363c6f94 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x364949eb uart_add_one_port EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 @@ -7249,7 +7267,9 @@ EXPORT_SYMBOL vmlinux 0x36632140 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x366ae57f blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0x36779142 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x36785f84 unix_attach_fds EXPORT_SYMBOL vmlinux 0x368e95ff mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x369b0076 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x36a4b4dd del_gendisk EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x36b50caf jbd2_journal_init_inode @@ -7258,80 +7278,90 @@ EXPORT_SYMBOL vmlinux 0x36ce5a3e try_lookup_one_len EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x36ee04ed md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x36fa0135 inet6_ioctl EXPORT_SYMBOL vmlinux 0x3705d8c2 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x37085148 param_set_hexint -EXPORT_SYMBOL vmlinux 0x370c45f4 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37221761 inet_csk_accept EXPORT_SYMBOL vmlinux 0x3731e460 clear_nlink EXPORT_SYMBOL vmlinux 0x3738a86f seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x373b344a thread_group_exited EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe EXPORT_SYMBOL vmlinux 0x3760f952 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x377310ed unregister_qdisc EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound EXPORT_SYMBOL vmlinux 0x37769b05 iov_iter_npages EXPORT_SYMBOL vmlinux 0x377ada9e crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x378d0e0f find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37a695c6 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split EXPORT_SYMBOL vmlinux 0x37bd5fff snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x37bed963 dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs EXPORT_SYMBOL vmlinux 0x37c2f2fd proc_create_mount_point EXPORT_SYMBOL vmlinux 0x37d5af48 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x37da9bd6 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e4a406 alloc_fcdev EXPORT_SYMBOL vmlinux 0x37f4d1c5 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r EXPORT_SYMBOL vmlinux 0x3808b9e5 filemap_flush EXPORT_SYMBOL vmlinux 0x38158fe6 deactivate_super EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38258272 sk_capable EXPORT_SYMBOL vmlinux 0x382664e3 set_disk_ro EXPORT_SYMBOL vmlinux 0x382934c8 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock EXPORT_SYMBOL vmlinux 0x384a33bc tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll EXPORT_SYMBOL vmlinux 0x386a8941 snd_card_file_add +EXPORT_SYMBOL vmlinux 0x386cf72c dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x38721357 ppp_dev_name EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure -EXPORT_SYMBOL vmlinux 0x389c23ea __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 EXPORT_SYMBOL vmlinux 0x38a00243 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0x38a2696e dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38aa2d76 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x38bebb02 open_with_fake_path EXPORT_SYMBOL vmlinux 0x38cf5580 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x38d58f93 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x38d6797c revert_creds EXPORT_SYMBOL vmlinux 0x38d7859d blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x38df57fe tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x38e32aba vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x38fec82a ipmr_rule_default EXPORT_SYMBOL vmlinux 0x38ffa5af d_set_d_op +EXPORT_SYMBOL vmlinux 0x3902cfbb ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x3905f4a7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x390e5901 dev_remove_offload EXPORT_SYMBOL vmlinux 0x390ed639 dup_iter EXPORT_SYMBOL vmlinux 0x391e239f dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x391eaab8 sock_bind_add EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3945bf5a skb_copy_bits EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394f66f5 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x395691af kthread_stop EXPORT_SYMBOL vmlinux 0x396b2eb4 iget_failed EXPORT_SYMBOL vmlinux 0x396b407d simple_getattr EXPORT_SYMBOL vmlinux 0x396d66e5 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x3983886c security_socket_socketpair EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39971ac3 neigh_seq_next EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399bee3b sk_wait_data -EXPORT_SYMBOL vmlinux 0x39b75e89 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc EXPORT_SYMBOL vmlinux 0x39bebed3 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39cee5ed __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x39d124ee xfrm_input_resume EXPORT_SYMBOL vmlinux 0x39d3b96c flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x39d6f34a fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x39da12a4 vme_slave_request EXPORT_SYMBOL vmlinux 0x39e5b535 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x39e9da22 snd_timer_close @@ -7339,49 +7369,43 @@ EXPORT_SYMBOL vmlinux 0x3a2be83a __traceiter_module_get EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5238db reuseport_select_sock EXPORT_SYMBOL vmlinux 0x3a542b7b snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x3a615f6c inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x3a70449c dev_get_mac_address EXPORT_SYMBOL vmlinux 0x3a76e7c5 mdiobus_read EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold -EXPORT_SYMBOL vmlinux 0x3a8617fd xfrm_register_type EXPORT_SYMBOL vmlinux 0x3a8cb026 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x3a90b188 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x3aab6c39 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x3a950f10 netdev_warn EXPORT_SYMBOL vmlinux 0x3aab78aa scsi_remove_target EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ad06d51 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3ac8d2ef dev_get_stats +EXPORT_SYMBOL vmlinux 0x3acbb3de netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3ae1c203 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x3b029491 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x3b075e4a task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x3b126c6f edac_mc_find -EXPORT_SYMBOL vmlinux 0x3b12b68e skb_trim EXPORT_SYMBOL vmlinux 0x3b168876 fs_lookup_param EXPORT_SYMBOL vmlinux 0x3b1e8da8 filemap_check_errors EXPORT_SYMBOL vmlinux 0x3b246b4c devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x3b2704ea pid_task EXPORT_SYMBOL vmlinux 0x3b28341f input_set_abs_params EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set EXPORT_SYMBOL vmlinux 0x3b2c97da snd_timer_global_free EXPORT_SYMBOL vmlinux 0x3b2ef0d8 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x3b35de79 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x3b3698e5 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x3b391aa5 snd_ctl_new1 EXPORT_SYMBOL vmlinux 0x3b3bc299 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user EXPORT_SYMBOL vmlinux 0x3b415395 md_error -EXPORT_SYMBOL vmlinux 0x3b5326ee __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3b55c319 dst_init -EXPORT_SYMBOL vmlinux 0x3b5d2a4b security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x3b56a2c6 tcp_poll 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 0x3b78e85c dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x3b979efe dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3b91dd89 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x3ba41885 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x3bbc8b3a locks_delete_block EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bcd9688 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x3be630be dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x3beb1235 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x3bfd175d snd_pcm_lib_get_vmalloc_page @@ -7392,7 +7416,6 @@ EXPORT_SYMBOL vmlinux 0x3c1dd748 mpage_readahead EXPORT_SYMBOL vmlinux 0x3c2e5639 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c35428e security_path_mkdir EXPORT_SYMBOL vmlinux 0x3c365c30 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x3c3a517b uart_suspend_port EXPORT_SYMBOL vmlinux 0x3c3e05ea cdrom_open @@ -7400,78 +7423,74 @@ EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c442d45 elv_rb_del -EXPORT_SYMBOL vmlinux 0x3c5086fc neigh_carrier_down EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache -EXPORT_SYMBOL vmlinux 0x3c62e074 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x3c68d057 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x3c71bc3b pci_read_vpd_any EXPORT_SYMBOL vmlinux 0x3c8b25dc vfs_mkobj EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3c936f45 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x3caa9e60 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock EXPORT_SYMBOL vmlinux 0x3cc071a2 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x3cc14506 dquot_resume -EXPORT_SYMBOL vmlinux 0x3cc3babb sock_i_uid -EXPORT_SYMBOL vmlinux 0x3cc449b1 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x3cc9eeda sync_inode_metadata EXPORT_SYMBOL vmlinux 0x3cd0058b snd_device_register EXPORT_SYMBOL vmlinux 0x3cded1cb of_device_register EXPORT_SYMBOL vmlinux 0x3ce36723 tty_devnum EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq EXPORT_SYMBOL vmlinux 0x3ce92584 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x3cf46f39 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x3cff2bb9 of_device_unregister +EXPORT_SYMBOL vmlinux 0x3d26c960 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x3d2e1434 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x3d379e7b tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x3d3ad461 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array EXPORT_SYMBOL vmlinux 0x3d5902ed pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x3d8782c2 nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x3d881861 sock_init_data EXPORT_SYMBOL vmlinux 0x3d8e89ff of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x3db27d3f inet_register_protosw +EXPORT_SYMBOL vmlinux 0x3db25f79 tso_build_data EXPORT_SYMBOL vmlinux 0x3db63c6b vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3dba6dd1 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3dd1056b genphy_setup_forced EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x3dd96545 unix_get_socket -EXPORT_SYMBOL vmlinux 0x3de05126 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x3df47837 submit_bio EXPORT_SYMBOL vmlinux 0x3df67960 write_cache_pages EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head EXPORT_SYMBOL vmlinux 0x3dfe4fcd t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x3e009de0 vfs_iter_read EXPORT_SYMBOL vmlinux 0x3e09e18e generic_read_dir EXPORT_SYMBOL vmlinux 0x3e1ca7b5 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x3e1e8768 skb_seq_read -EXPORT_SYMBOL vmlinux 0x3e1fb0be dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e3d1d5c simple_write_begin -EXPORT_SYMBOL vmlinux 0x3e55a46c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x3e5ef879 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes EXPORT_SYMBOL vmlinux 0x3e9f3459 tty_hangup EXPORT_SYMBOL vmlinux 0x3eaa29c4 mmc_add_host EXPORT_SYMBOL vmlinux 0x3eb5a4b3 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x3eb8e0e3 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x3ebca4ac tcp_init_sock EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark EXPORT_SYMBOL vmlinux 0x3ed8ca0d snd_seq_root -EXPORT_SYMBOL vmlinux 0x3ef00d3c inet_offloads -EXPORT_SYMBOL vmlinux 0x3ef03fef xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x3efbea45 blackhole_netdev EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0a97f0 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x3f007e77 __kfree_skb EXPORT_SYMBOL vmlinux 0x3f0d3fc2 update_devfreq EXPORT_SYMBOL vmlinux 0x3f2622de i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x3f36f0b3 iterate_dir EXPORT_SYMBOL vmlinux 0x3f40c984 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3f4134ec tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init EXPORT_SYMBOL vmlinux 0x3f637c8b param_get_bool -EXPORT_SYMBOL vmlinux 0x3f6d1a87 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x3f7506b0 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x3f7780ff snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x3f7c2a99 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access EXPORT_SYMBOL vmlinux 0x3f8f0141 send_sig_info -EXPORT_SYMBOL vmlinux 0x3f91c3a2 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set EXPORT_SYMBOL vmlinux 0x3fc82aff dev_mc_flush EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region @@ -7480,13 +7499,15 @@ EXPORT_SYMBOL vmlinux 0x3fed09ad folio_mapping EXPORT_SYMBOL vmlinux 0x4000b7af __block_write_full_page EXPORT_SYMBOL vmlinux 0x400df27c scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x401daa7e mr_table_dump +EXPORT_SYMBOL vmlinux 0x401ce488 km_state_notify EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x403f4417 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4042aebe udp_lib_unhash EXPORT_SYMBOL vmlinux 0x404a3f51 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x4054cd4e io_uring_get_socket EXPORT_SYMBOL vmlinux 0x4059693f iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x4062831f dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x406fb114 km_policy_expired +EXPORT_SYMBOL vmlinux 0x407116bc sock_no_socketpair EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 EXPORT_SYMBOL vmlinux 0x407cf74c dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x408402c3 mdio_driver_unregister @@ -7499,24 +7520,28 @@ EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40ec98a9 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 EXPORT_SYMBOL vmlinux 0x4107e48e devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x4112582c fixed_size_llseek EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41398d3c xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x413b78ff iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x4147468e ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x41603f11 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x4169e837 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x416f2c9b gro_cells_init -EXPORT_SYMBOL vmlinux 0x4177bea1 netif_tx_lock EXPORT_SYMBOL vmlinux 0x417b9c4d blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x417d3d40 get_mem_type EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x418b5b7f netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x41b751e6 security_binder_transaction EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x41d08fa7 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x41d7c332 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x41d9e820 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x41da6e25 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x41f8125d md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x421c2418 proc_mkdir EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc @@ -7528,44 +7553,45 @@ EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x4253aa7e down_write EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x42662e02 nf_getsockopt EXPORT_SYMBOL vmlinux 0x4273a01f nand_ecc_sw_bch_calculate EXPORT_SYMBOL vmlinux 0x4284b16d msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all EXPORT_SYMBOL vmlinux 0x429c595c blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x42a07e1f inet_del_protocol EXPORT_SYMBOL vmlinux 0x42acf349 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x42b2a8ab mtree_erase -EXPORT_SYMBOL vmlinux 0x42bc2841 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x42c971a1 xp_can_alloc EXPORT_SYMBOL vmlinux 0x42d6096a from_kuid_munged EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4314d093 dev_trans_start EXPORT_SYMBOL vmlinux 0x43204faf pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x4321a228 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x43307ec2 dm_table_get_mode EXPORT_SYMBOL vmlinux 0x4334094d commit_creds EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x4337f1dd folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x433ba8bc tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x433ec0b8 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x4345156b cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x4345d467 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x434e150d mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43625183 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x436a7d8d ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x437333a0 _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x43806df6 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x4383ca28 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x438483c0 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438e7629 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x4396c359 dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0x43a69bdb do_clone_file_range EXPORT_SYMBOL vmlinux 0x43b2c96d prepare_creds EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43db9381 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x43ee4af6 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x43f19e86 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x4401a620 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control EXPORT_SYMBOL vmlinux 0x44047526 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x441f85f5 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume EXPORT_SYMBOL vmlinux 0x44315e21 __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer @@ -7574,12 +7600,9 @@ 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 0x447772c5 dev_get_stats -EXPORT_SYMBOL vmlinux 0x447dcf1f ppp_input_error EXPORT_SYMBOL vmlinux 0x448959b5 cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44bdbeb3 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x44c74ade udp_lib_rehash EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy EXPORT_SYMBOL vmlinux 0x44d29a01 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x44d85108 __put_user_ns @@ -7588,78 +7611,80 @@ EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44ea1061 param_set_ullong EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x4509c984 tcp_poll EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id EXPORT_SYMBOL vmlinux 0x452745b1 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x45316185 send_sig EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453d0341 sk_free EXPORT_SYMBOL vmlinux 0x454f3199 snd_timer_new -EXPORT_SYMBOL vmlinux 0x45535b1c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x4557ad07 tcp_peek_len EXPORT_SYMBOL vmlinux 0x45611daa d_rehash EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user EXPORT_SYMBOL vmlinux 0x45819822 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x4594761d fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x4596b142 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x45971d2e __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x45972dac xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x4598f974 register_qdisc EXPORT_SYMBOL vmlinux 0x459f2c12 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x45b7fe5f tcf_generic_walker EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low EXPORT_SYMBOL vmlinux 0x45cf55dd flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x45d95ed0 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL vmlinux 0x45f64eab folio_mark_accessed -EXPORT_SYMBOL vmlinux 0x45f9b993 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy EXPORT_SYMBOL vmlinux 0x464270da cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x4652293f inet_bind EXPORT_SYMBOL vmlinux 0x465901c8 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x465af823 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x466e1043 sock_bindtoindex EXPORT_SYMBOL vmlinux 0x46767832 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x468c5b4d snd_dma_buffer_mmap EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x46a68c1d generic_setlease EXPORT_SYMBOL vmlinux 0x46b36607 simple_setattr +EXPORT_SYMBOL vmlinux 0x46cef768 param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 EXPORT_SYMBOL vmlinux 0x46d9a80f ps2_begin_command EXPORT_SYMBOL vmlinux 0x46e13817 clocksource_unregister EXPORT_SYMBOL vmlinux 0x46f3861c md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x46f7d9d9 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset EXPORT_SYMBOL vmlinux 0x470b2cb5 page_address EXPORT_SYMBOL vmlinux 0x470e35eb ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x47245560 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x4726f7f2 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x47350876 nand_ecc_finish_io_req EXPORT_SYMBOL vmlinux 0x473ab2bd backlight_device_register EXPORT_SYMBOL vmlinux 0x473e1cad t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x47454598 sk_net_capable +EXPORT_SYMBOL vmlinux 0x47499029 sock_no_getname +EXPORT_SYMBOL vmlinux 0x474ba4b2 inet_put_port EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy EXPORT_SYMBOL vmlinux 0x476240a5 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47a75501 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x47aea631 udp_seq_next EXPORT_SYMBOL vmlinux 0x47b23068 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c77761 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x47dc0543 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f17cc3 kernel_accept EXPORT_SYMBOL vmlinux 0x47f20a75 param_get_int EXPORT_SYMBOL vmlinux 0x47f757de elf_platform EXPORT_SYMBOL vmlinux 0x47fb6ce0 scsi_ioctl EXPORT_SYMBOL vmlinux 0x4813083c scsi_device_get EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x482cf6ea secpath_set +EXPORT_SYMBOL vmlinux 0x482e42fc __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x48301d06 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0x483f63f0 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x4844144f of_find_node_with_property 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 0x485a58a3 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x48661eae register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x4871c874 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x4876661c pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x4888b9df ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x488d40e1 mtree_insert_range @@ -7673,17 +7698,15 @@ EXPORT_SYMBOL vmlinux 0x48bdc400 d_instantiate EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d7bdee watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x48dcb92f __skb_checksum EXPORT_SYMBOL vmlinux 0x48de950c devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x48f27363 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x48fdf9af tcp_seq_next EXPORT_SYMBOL vmlinux 0x490257d2 __f_setown EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4916289d eth_header_cache +EXPORT_SYMBOL vmlinux 0x491d4515 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x491d8caa filemap_range_has_page EXPORT_SYMBOL vmlinux 0x4928ac0d nand_scan_with_ids -EXPORT_SYMBOL vmlinux 0x49368c01 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x493e45c8 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x49544cd2 inet_frag_kill EXPORT_SYMBOL vmlinux 0x4954e7fa bioset_init EXPORT_SYMBOL vmlinux 0x495f7dc2 nand_ecc_unregister_on_host_hw_engine EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits @@ -7692,6 +7715,8 @@ EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49a96e24 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x49bfb2f0 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x49e98e94 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup EXPORT_SYMBOL vmlinux 0x49f74b82 watchdog_unregister_governor @@ -7700,12 +7725,13 @@ EXPORT_SYMBOL vmlinux 0x4a27d63f of_translate_address EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card EXPORT_SYMBOL vmlinux 0x4a414978 param_get_string -EXPORT_SYMBOL vmlinux 0x4a6d07b1 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x4a7b3235 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x4a4190d1 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x4a458b9b kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x4a8b53e8 devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a969768 genphy_read_status EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ac96c47 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x4acd52e9 mdiobus_write EXPORT_SYMBOL vmlinux 0x4ad9fdeb blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only @@ -7716,123 +7742,125 @@ EXPORT_SYMBOL vmlinux 0x4b27cfe2 _dev_notice EXPORT_SYMBOL vmlinux 0x4b30a3a4 nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x4b30ee92 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x4b3cdd95 ipmr_rule_default EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b52b1c1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4b4caa7d __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x4b63899f dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x4b92f1a5 put_cmsg EXPORT_SYMBOL vmlinux 0x4ba02b57 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x4bbce959 dquot_disable EXPORT_SYMBOL vmlinux 0x4bc6072e vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x4bcb6787 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x4bd33df1 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x4be3b00e dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x4be74887 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x4be85a03 memweight EXPORT_SYMBOL vmlinux 0x4be9d816 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf2f742 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x4bf629b3 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 EXPORT_SYMBOL vmlinux 0x4c0c0771 dev_uc_flush EXPORT_SYMBOL vmlinux 0x4c22af80 devfreq_add_device EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c3817da nf_log_register EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c416ecf bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x4c5db34b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x4c478cd4 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x4c594e59 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x4c5dcb6a init_special_inode EXPORT_SYMBOL vmlinux 0x4c5e3283 mod_node_page_state EXPORT_SYMBOL vmlinux 0x4c66dcdf cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x4c8c7a09 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x4c9980d4 has_capability +EXPORT_SYMBOL vmlinux 0x4ca8915c skb_find_text EXPORT_SYMBOL vmlinux 0x4caa70ba devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x4cb0b4f7 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0x4cc9d7a4 snd_sgbuf_get_page EXPORT_SYMBOL vmlinux 0x4cda4f8f mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x4cdad3b8 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x4ce14d71 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x4cf0b6a3 phy_aneg_done EXPORT_SYMBOL vmlinux 0x4d0664c2 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0x4d0ccef4 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask -EXPORT_SYMBOL vmlinux 0x4d436d35 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x4d44307d rproc_detach EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d735c7b fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x4d81115d genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x4d931dde netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4da98ece netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x4dba8bbb sock_setsockopt EXPORT_SYMBOL vmlinux 0x4dbe3bbd invalidate_bdev EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock EXPORT_SYMBOL vmlinux 0x4dec6038 memscan EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node EXPORT_SYMBOL vmlinux 0x4e05dac0 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x4e17a6fa netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3e80ac netdev_emerg -EXPORT_SYMBOL vmlinux 0x4e4622a9 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x4e503c1a mntput -EXPORT_SYMBOL vmlinux 0x4e5af9be km_state_expired -EXPORT_SYMBOL vmlinux 0x4e63621a neigh_lookup EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6a7be5 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console EXPORT_SYMBOL vmlinux 0x4e798382 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x4e80e475 rtnl_notify EXPORT_SYMBOL vmlinux 0x4e822d80 touch_atime EXPORT_SYMBOL vmlinux 0x4ea2dd86 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eaf8c21 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x4ec5dcf9 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x4ecadfe1 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4ed0e241 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x4edbd312 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x4edf9dc3 disk_stack_limits EXPORT_SYMBOL vmlinux 0x4ee7457a dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc EXPORT_SYMBOL vmlinux 0x4f120734 mmc_request_done -EXPORT_SYMBOL vmlinux 0x4f144334 xfrm6_protocol_register 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 0x4f228657 I_BDEV +EXPORT_SYMBOL vmlinux 0x4f2acb36 inet6_protos +EXPORT_SYMBOL vmlinux 0x4f31a822 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x4f3d453f fb_validate_mode EXPORT_SYMBOL vmlinux 0x4f4b95ec tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x4f650bb4 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4f67594a security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x4f71bee4 scsi_register_interface EXPORT_SYMBOL vmlinux 0x4f7410fb configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x4f797be6 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x4f79856c of_find_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f841bb2 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free EXPORT_SYMBOL vmlinux 0x4f8e88dd mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x4fabd4ac scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x4fabd586 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf EXPORT_SYMBOL vmlinux 0x4fb30ea6 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x4fb31585 of_node_get +EXPORT_SYMBOL vmlinux 0x4fb8794e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x4fbda37f tcp_ioctl EXPORT_SYMBOL vmlinux 0x4fc84d6b blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x4fd068dc phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4ffc32df sk_reset_timer EXPORT_SYMBOL vmlinux 0x5005b02c of_clk_get_by_name EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501b1172 qdisc_put +EXPORT_SYMBOL vmlinux 0x500cccb6 register_netdevice EXPORT_SYMBOL vmlinux 0x50239cd7 vfs_iter_write EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node EXPORT_SYMBOL vmlinux 0x5038e3bd register_quota_format EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x503c273b mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0x504916ea vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x50537fc5 ip_check_defrag EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x50652dc2 lock_rename -EXPORT_SYMBOL vmlinux 0x50672f2f tcp_add_backlog EXPORT_SYMBOL vmlinux 0x5068e65a of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x506962d6 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x506b0319 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free EXPORT_SYMBOL vmlinux 0x507d2cea generic_permission EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x509583a6 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50aae635 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type @@ -7842,38 +7870,28 @@ EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x51013ab2 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x5136ee63 nand_monolithic_write_page_raw EXPORT_SYMBOL vmlinux 0x513708d7 iov_iter_pipe EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x51553498 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x51567cf2 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x5156ad5e peernet2id -EXPORT_SYMBOL vmlinux 0x515b43af xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51752370 kernel_bind +EXPORT_SYMBOL vmlinux 0x517527ec ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x51bd232d neigh_connected_output -EXPORT_SYMBOL vmlinux 0x51c32159 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x51c45969 free_netdev +EXPORT_SYMBOL vmlinux 0x51dafa24 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x51db36e3 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid EXPORT_SYMBOL vmlinux 0x51eb54f8 nonseekable_open -EXPORT_SYMBOL vmlinux 0x51f43e9f eth_type_trans -EXPORT_SYMBOL vmlinux 0x51ffd426 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52175790 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x52286589 dst_alloc EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0x5232c240 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x5246d3d7 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x523fd126 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x524fc0f8 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x5266d9ae inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x526be39f security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x52533520 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x526c3a6c jiffies EXPORT_SYMBOL vmlinux 0x526d7754 proc_create -EXPORT_SYMBOL vmlinux 0x528350fd qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x52836ae1 __bh_read -EXPORT_SYMBOL vmlinux 0x5287d6cb dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x52a07f1b kunmap_high EXPORT_SYMBOL vmlinux 0x52bf3c29 buffer_migrate_folio @@ -7883,156 +7901,153 @@ EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start EXPORT_SYMBOL vmlinux 0x52f31476 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x52f86650 netif_rx EXPORT_SYMBOL vmlinux 0x5307136b of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x5307a634 dev_lstats_read EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x531d3306 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x533c600d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x535984ed __skb_checksum EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x5379918f rio_query_mport EXPORT_SYMBOL vmlinux 0x537b9d04 file_ns_capable +EXPORT_SYMBOL vmlinux 0x537e35cf nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x53922f2f sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x53939a02 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x53998516 inet_stream_connect EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x53b81a43 vm_insert_page EXPORT_SYMBOL vmlinux 0x53bfd2e2 inode_permission -EXPORT_SYMBOL vmlinux 0x53d61120 sock_no_linger +EXPORT_SYMBOL vmlinux 0x53d49e11 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x53df7e6e dev_change_flags +EXPORT_SYMBOL vmlinux 0x53e93a19 dev_disable_lro EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings EXPORT_SYMBOL vmlinux 0x53f99dbc pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x5403ba74 rw_verify_area -EXPORT_SYMBOL vmlinux 0x5419a442 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x541c9ab0 get_tree_bdev EXPORT_SYMBOL vmlinux 0x541f0281 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x542b8585 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x542dbcdb writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x543a1b93 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x543adbd3 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b4ae7 nf_ct_attach EXPORT_SYMBOL vmlinux 0x5458086e jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x5458a068 put_ipc_ns EXPORT_SYMBOL vmlinux 0x5461d8fe dquot_commit_info -EXPORT_SYMBOL vmlinux 0x546dcb03 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x546e586b copy_page_to_iter EXPORT_SYMBOL vmlinux 0x548aac96 stop_tty EXPORT_SYMBOL vmlinux 0x548d73a4 fsync_bdev EXPORT_SYMBOL vmlinux 0x549779e9 pci_clear_master EXPORT_SYMBOL vmlinux 0x54a2d868 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x54b10fae xfrm4_rcv EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54d072b2 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x54e2746b param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54f21fdb remap_pfn_range EXPORT_SYMBOL vmlinux 0x54ffe608 snd_timer_interrupt EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x55086bd5 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x55174c36 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x551879ec blk_rq_init +EXPORT_SYMBOL vmlinux 0x55199fb3 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x55247a8c generic_write_end -EXPORT_SYMBOL vmlinux 0x55264751 phy_request_interrupt EXPORT_SYMBOL vmlinux 0x553ba0c5 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x5544a6b0 vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0x5546588e pci_save_state EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x554f84e0 sockopt_ns_capable EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x5555a299 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x555b6f5b devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x558531a4 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559fc038 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x55b9f548 fasync_helper +EXPORT_SYMBOL vmlinux 0x55be6942 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x55cdfd9a xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x55e0dee5 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55e56f94 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x55efdf89 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x562787da security_path_rename +EXPORT_SYMBOL vmlinux 0x55f85e8b netdev_crit EXPORT_SYMBOL vmlinux 0x562a727d inode_needs_sync +EXPORT_SYMBOL vmlinux 0x56343b9a skb_vlan_push EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work EXPORT_SYMBOL vmlinux 0x565747c4 scsi_device_put EXPORT_SYMBOL vmlinux 0x565bc591 max8925_reg_read EXPORT_SYMBOL vmlinux 0x566dc097 locks_copy_lock EXPORT_SYMBOL vmlinux 0x5672c1ea get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x5675a11a skb_vlan_pop EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56887e3f __kfree_skb -EXPORT_SYMBOL vmlinux 0x5699106a submit_bio -EXPORT_SYMBOL vmlinux 0x56ae865c netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0x56ae8771 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x56b8391e alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x56aa6abb tcf_idr_search EXPORT_SYMBOL vmlinux 0x56c7ce79 __i2c_transfer EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56dfa389 napi_complete_done +EXPORT_SYMBOL vmlinux 0x56ce7ad9 xfrm_input +EXPORT_SYMBOL vmlinux 0x56e6dad0 skb_copy_expand EXPORT_SYMBOL vmlinux 0x56f5308a input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x5708a616 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x57097a22 rt6_lookup EXPORT_SYMBOL vmlinux 0x570ff078 dcache_dir_close EXPORT_SYMBOL vmlinux 0x5746ec58 dma_resv_init EXPORT_SYMBOL vmlinux 0x57488482 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5764d933 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5772426f mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x5786080f inet6_offloads +EXPORT_SYMBOL vmlinux 0x57847d0a skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x57bb8807 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0x57beb3d3 snd_ctl_unregister_ioctl EXPORT_SYMBOL vmlinux 0x57c64edd tcp_hashinfo EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57dcbb89 tso_build_hdr EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581cde4e up -EXPORT_SYMBOL vmlinux 0x581de81f __lock_sock_fast EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x586555a5 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x5844b1e9 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x58903c26 snd_device_new EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit EXPORT_SYMBOL vmlinux 0x58aa1281 generic_writepages +EXPORT_SYMBOL vmlinux 0x58aa5e5f phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard EXPORT_SYMBOL vmlinux 0x58c9447a jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x58ca3624 skb_pull +EXPORT_SYMBOL vmlinux 0x58cf241f sk_stream_error EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58e2401f alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58eb599e __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue EXPORT_SYMBOL vmlinux 0x58fdb094 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x5908111c tcf_idr_search -EXPORT_SYMBOL vmlinux 0x590e1872 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x5919c725 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x59002512 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x591e345f get_user_pages -EXPORT_SYMBOL vmlinux 0x59238ca8 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x5953ea72 ppp_register_channel EXPORT_SYMBOL vmlinux 0x5956e014 __register_binfmt EXPORT_SYMBOL vmlinux 0x595ed69d of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0x5963b85a phy_device_free EXPORT_SYMBOL vmlinux 0x5967544b remove_arg_zero EXPORT_SYMBOL vmlinux 0x596f48cf input_grab_device -EXPORT_SYMBOL vmlinux 0x599048fb xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x597ecb28 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x59991290 unregister_nls 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 0x59bdeb83 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x59cf0b3b zstd_compress_bound EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d3bd59 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e5da02 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x59ec168f rt_dst_clone EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert EXPORT_SYMBOL vmlinux 0x5a1d2671 __devm_request_region -EXPORT_SYMBOL vmlinux 0x5a340357 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x5a210be3 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a6090b8 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x5a67c3cd pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5a8215e0 fget_raw EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9cad14 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x5aa383c7 register_cdrom @@ -8040,43 +8055,37 @@ EXPORT_SYMBOL vmlinux 0x5aba5fe2 ps2_end_command EXPORT_SYMBOL vmlinux 0x5abe6049 fwnode_iomap EXPORT_SYMBOL vmlinux 0x5ad353ca devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x5adc4383 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5afbf6aa skb_checksum_help EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5b267929 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x5b299ff9 proto_register -EXPORT_SYMBOL vmlinux 0x5b39329a unix_destruct_scm EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b6a3dbc pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x5b6cd65f mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x5b6e0e32 dst_release_immediate EXPORT_SYMBOL vmlinux 0x5b75dd3b fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x5b7bf507 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x5b8a76a3 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x5b997007 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x5b9bf70d ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x5ba7e135 mtd_concat_create EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd8eb22 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval -EXPORT_SYMBOL vmlinux 0x5be4b3a2 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf4cf58 init_net EXPORT_SYMBOL vmlinux 0x5c0feb6e pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x5c19488f invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x5c1bd9cd write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5c1d4cdb __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x5c3693fd __getblk_gfp EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c450908 bpf_map_get EXPORT_SYMBOL vmlinux 0x5c51bb2f flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x5c5a8471 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x5c654244 dev_lstats_read EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 EXPORT_SYMBOL vmlinux 0x5c867893 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id EXPORT_SYMBOL vmlinux 0x5c9c9ce4 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5c9e75b3 udp_disconnect EXPORT_SYMBOL vmlinux 0x5cb20dc5 nand_ecc_sw_bch_get_engine EXPORT_SYMBOL vmlinux 0x5cbb6dfa rproc_set_firmware EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le @@ -8085,85 +8094,93 @@ EXPORT_SYMBOL vmlinux 0x5ceebd9e pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5d0009b2 sg_miter_start +EXPORT_SYMBOL vmlinux 0x5d142ab3 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x5d194664 sock_kmalloc EXPORT_SYMBOL vmlinux 0x5d299ff4 vfs_rename EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d45193f ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry EXPORT_SYMBOL vmlinux 0x5d4a10fd devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x5d648dc4 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x5d76ff6a tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x5d7864f1 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x5d79761b param_ops_hexint EXPORT_SYMBOL vmlinux 0x5da64bac pci_dev_driver EXPORT_SYMBOL vmlinux 0x5da70af1 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x5db7513b skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x5dc4bbf9 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dde38c7 dev_set_threaded EXPORT_SYMBOL vmlinux 0x5ddf97c7 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5df9c02b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x5e06c6cb xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e13faa3 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5e1d1b17 inet6_protos +EXPORT_SYMBOL vmlinux 0x5e1a9db2 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3adf69 udp_seq_stop EXPORT_SYMBOL vmlinux 0x5e453363 mount_nodev EXPORT_SYMBOL vmlinux 0x5e4990aa mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x5e55d06d tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x5e5ffd4e freezer_active +EXPORT_SYMBOL vmlinux 0x5e6dfd95 skb_clone EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e6fb8ad __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x5e7d0a36 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x5e7e03a9 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence EXPORT_SYMBOL vmlinux 0x5e89eaeb of_get_next_parent EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ec0a557 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x5eb4f3c5 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec5d425 bpf_map_get EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack EXPORT_SYMBOL vmlinux 0x5ed80a75 snd_timer_open EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee688ba ppp_dev_name -EXPORT_SYMBOL vmlinux 0x5eedfddf __skb_get_hash +EXPORT_SYMBOL vmlinux 0x5ee8ee2b ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f10159f sk_stream_error EXPORT_SYMBOL vmlinux 0x5f137103 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow EXPORT_SYMBOL vmlinux 0x5f2e7eff unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable EXPORT_SYMBOL vmlinux 0x5f3a10ed phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x5f3dbd47 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x5f5043b8 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f551040 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5f610b7e __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x5f66cf1b __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f716dd2 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f7d33a1 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x5f7e040a tcp_time_wait EXPORT_SYMBOL vmlinux 0x5f9ea5f8 param_ops_int EXPORT_SYMBOL vmlinux 0x5fa14675 set_groups EXPORT_SYMBOL vmlinux 0x5fa37e7a pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x5fa51b3e netdev_features_change -EXPORT_SYMBOL vmlinux 0x5faa2e63 softnet_data EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fb19b34 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x5fb72184 sock_rfree EXPORT_SYMBOL vmlinux 0x5fb925e3 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x5fd90fd3 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x5fe34fdb kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x5feaed10 pskb_extract -EXPORT_SYMBOL vmlinux 0x5fee52c4 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x5fe6155c tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600d68cd netpoll_setup EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6026f7a7 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x60305f9e netif_device_attach EXPORT_SYMBOL vmlinux 0x603144c2 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x6035ba4b rpmh_write EXPORT_SYMBOL vmlinux 0x60440483 dentry_path_raw EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x6068c2a6 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x607e48b8 bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x60887fc2 mount_subtree +EXPORT_SYMBOL vmlinux 0x608d1b62 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609bddd5 __alloc_skb EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL vmlinux 0x60a90ca2 scsi_done -EXPORT_SYMBOL vmlinux 0x60b4a2bf nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x60b8e46d vmap EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get @@ -8171,54 +8188,53 @@ EXPORT_SYMBOL vmlinux 0x60e8309f genphy_update_link EXPORT_SYMBOL vmlinux 0x60f98c7e __block_write_begin EXPORT_SYMBOL vmlinux 0x60fd3404 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x6104c4f1 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x610870b2 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x610def91 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x6123592f pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x6129d6c1 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x613c0a9f netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0x613e796f imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x6150e937 poll_freewait EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615ccbfa xfrm_init_replay EXPORT_SYMBOL vmlinux 0x615d073d drop_nlink +EXPORT_SYMBOL vmlinux 0x6163151d rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x61765680 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x617dc283 tcp_peek_len EXPORT_SYMBOL vmlinux 0x6180d128 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x61a162a0 sock_set_priority +EXPORT_SYMBOL vmlinux 0x61868839 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x618a89fb netpoll_print_options EXPORT_SYMBOL vmlinux 0x61a26e7a request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x61a4cbec __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x61aa3b52 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x61aaba0a xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x61b62386 blk_start_plug EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bb7fc7 security_sock_graft EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61ce43e7 inet6_bind EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer EXPORT_SYMBOL vmlinux 0x61ec43b9 of_graph_is_present EXPORT_SYMBOL vmlinux 0x61f92744 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x620122e5 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x6218be2d mt_find EXPORT_SYMBOL vmlinux 0x621bb753 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x621e8b04 vif_device_init EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x623f97ed d_set_fallthru EXPORT_SYMBOL vmlinux 0x6240bd87 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x624d4b57 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x62515a27 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x6243ad3a udpv6_sendmsg EXPORT_SYMBOL vmlinux 0x625680dd nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0x625df921 generic_file_open EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627e645e ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x62834d13 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628d30f6 netdev_update_features EXPORT_SYMBOL vmlinux 0x629e88fa blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x62b49724 flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x62b6380a pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x62bfd3a4 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x62c3926b dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x62c7889f nla_put_64bit -EXPORT_SYMBOL vmlinux 0x62e48d57 skb_queue_head +EXPORT_SYMBOL vmlinux 0x62c7cd70 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0x6310a826 qcom_scm_pas_init_image EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params @@ -8230,41 +8246,42 @@ EXPORT_SYMBOL vmlinux 0x63518b7f phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name EXPORT_SYMBOL vmlinux 0x63554699 zap_page_range -EXPORT_SYMBOL vmlinux 0x6359b4dd in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x6361865f scsicam_bios_param EXPORT_SYMBOL vmlinux 0x63662d57 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x637493f3 __wake_up EXPORT_SYMBOL vmlinux 0x63788b7f snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x637d6e8c task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x6385ea21 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x638e59fe fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x63a15db5 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63bd5cec sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x63c31b11 pm860x_reg_write EXPORT_SYMBOL vmlinux 0x63dace2d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x63df250d dev_set_mac_address EXPORT_SYMBOL vmlinux 0x63e4a4b7 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f29eda mtree_alloc_range EXPORT_SYMBOL vmlinux 0x63fee67b flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641301e1 netlink_unicast EXPORT_SYMBOL vmlinux 0x64154340 tty_name EXPORT_SYMBOL vmlinux 0x641c72b9 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x6428db17 nand_ecc_register_on_host_hw_engine EXPORT_SYMBOL vmlinux 0x642a660c scsi_report_opcode EXPORT_SYMBOL vmlinux 0x6432223e pci_request_selected_regions EXPORT_SYMBOL vmlinux 0x643d3afd configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x643fb20a register_qdisc EXPORT_SYMBOL vmlinux 0x6450e1e7 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free EXPORT_SYMBOL vmlinux 0x64636dd3 uart_get_divisor EXPORT_SYMBOL vmlinux 0x6463849a scsi_remove_host -EXPORT_SYMBOL vmlinux 0x6479806c ip_route_me_harder EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x6488937a __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x649dfbca netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64c09b7d scm_detach_fds EXPORT_SYMBOL vmlinux 0x64c44afa pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x64d9ebb8 genphy_loopback EXPORT_SYMBOL vmlinux 0x64daf9da fscrypt_put_encryption_info @@ -8277,210 +8294,210 @@ EXPORT_SYMBOL vmlinux 0x653172d6 dm_kobject_release EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654c9c09 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x654d2f70 tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x65668167 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x65787471 skb_tx_error EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x659bfc88 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6597db59 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc EXPORT_SYMBOL vmlinux 0x659f3125 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x65a8766d unload_nls +EXPORT_SYMBOL vmlinux 0x65b1ab97 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x65b38dcc skb_copy +EXPORT_SYMBOL vmlinux 0x65bd39a3 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x65cc9252 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next EXPORT_SYMBOL vmlinux 0x65d478c7 nd_device_unregister EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end EXPORT_SYMBOL vmlinux 0x65e05ece gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x66036744 fb_class -EXPORT_SYMBOL vmlinux 0x66209360 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x66312e4b inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x663cc07c lookup_one EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x66538fce neigh_seq_start EXPORT_SYMBOL vmlinux 0x6658a7a9 nand_ecc_is_strong_enough EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel -EXPORT_SYMBOL vmlinux 0x66677c38 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x66889a9f pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args +EXPORT_SYMBOL vmlinux 0x669e39d5 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x66a1d873 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x66aa9511 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66b71ca8 napi_gro_frags EXPORT_SYMBOL vmlinux 0x66b95ea0 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x66ce8a04 security_sb_remount EXPORT_SYMBOL vmlinux 0x66dd6d42 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x670cb454 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x66de9a74 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x67308420 udp_gro_complete EXPORT_SYMBOL vmlinux 0x6734fe3c devfreq_update_status +EXPORT_SYMBOL vmlinux 0x67387f75 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x67422cf3 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674b5d1f __skb_pad -EXPORT_SYMBOL vmlinux 0x675b6a4e eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x676bba6c km_state_notify +EXPORT_SYMBOL vmlinux 0x674a6803 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x675a79ab tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x675ffddd netif_tx_lock EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x6788569d netlink_capable EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679a165e dev_get_by_name +EXPORT_SYMBOL vmlinux 0x67aad2a0 arp_send EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67de49a2 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x67e0b3c6 devfreq_update_target EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x67ed8eae would_dump EXPORT_SYMBOL vmlinux 0x67f174e3 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x6801c9bb proto_unregister -EXPORT_SYMBOL vmlinux 0x68053c01 eth_header EXPORT_SYMBOL vmlinux 0x6809c951 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x680d565b configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x683e5626 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x6819bddd netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x6834c367 skb_clone_sk EXPORT_SYMBOL vmlinux 0x68470e18 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x6857d06c simple_rename EXPORT_SYMBOL vmlinux 0x68614c6a of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x68709c7a generic_file_fsync EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval EXPORT_SYMBOL vmlinux 0x687bc5d5 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x6893476d tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x689c6f31 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x689cbfad register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a58bef xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x68a5f2aa skb_trim EXPORT_SYMBOL vmlinux 0x68a70502 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x68aa3312 key_unlink EXPORT_SYMBOL vmlinux 0x68d2f552 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x68eb0a48 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x68fa7f97 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x68fab083 proc_remove EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x69018110 msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x69230824 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x692e1f27 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x693b23f5 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x694b76d3 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x6949a4a2 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and EXPORT_SYMBOL vmlinux 0x69730bdf rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x6978316e ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x6984c06f put_fs_context EXPORT_SYMBOL vmlinux 0x6984c22d dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x69882c34 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x69a443e5 wireless_send_event EXPORT_SYMBOL vmlinux 0x69be1675 scsi_scan_host EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69e4aec8 of_get_ethdev_address EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x69e80593 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x69ef3dd6 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x69f435a2 security_d_instantiate EXPORT_SYMBOL vmlinux 0x69f69588 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x69fc0859 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree EXPORT_SYMBOL vmlinux 0x6a04d3a2 touch_buffer +EXPORT_SYMBOL vmlinux 0x6a06010b dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x6a2d1594 snd_pcm_lib_free_pages EXPORT_SYMBOL vmlinux 0x6a40847d input_match_device_id EXPORT_SYMBOL vmlinux 0x6a40f971 zero_user_segments EXPORT_SYMBOL vmlinux 0x6a45658b processor EXPORT_SYMBOL vmlinux 0x6a45d825 param_get_byte +EXPORT_SYMBOL vmlinux 0x6a51b040 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a69da17 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 EXPORT_SYMBOL vmlinux 0x6a747f49 i2c_register_driver EXPORT_SYMBOL vmlinux 0x6a7887b6 ucc_of_parse_tdm EXPORT_SYMBOL vmlinux 0x6a8831e0 jiffies_64 EXPORT_SYMBOL vmlinux 0x6a8db38a import_single_range -EXPORT_SYMBOL vmlinux 0x6a924618 skb_condense -EXPORT_SYMBOL vmlinux 0x6a9917eb security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x6a913fea inet_frag_find EXPORT_SYMBOL vmlinux 0x6a9d667e touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x6ab121a6 param_set_uint +EXPORT_SYMBOL vmlinux 0x6ac53865 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6ad6debe security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device EXPORT_SYMBOL vmlinux 0x6ae747e4 cqhci_resume EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6af7b21a packing EXPORT_SYMBOL vmlinux 0x6afb98a7 file_modified +EXPORT_SYMBOL vmlinux 0x6b0af112 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x6b1c2748 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x6b2102b9 skb_copy_bits EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b5513d3 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b6ee2f0 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x6b6f8404 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x6b70e7e3 dquot_release EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8d41ca netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x6ba634b6 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x6baa7b60 sock_release EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bc11b6e release_sock EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev EXPORT_SYMBOL vmlinux 0x6bc6eebd __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x6bcf9402 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x6be0b9b8 rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x6be9c14f current_time EXPORT_SYMBOL vmlinux 0x6bed3a60 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x6beed981 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x6bf0a5d7 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x6bf72d2a snd_info_create_card_entry EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bf872ee __sock_create EXPORT_SYMBOL vmlinux 0x6bfab9ea page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x6bff60c5 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6c0442f9 kernel_getsockname EXPORT_SYMBOL vmlinux 0x6c09a9f8 __phy_write_mmd EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c38d38f nand_ecc_get_sw_engine -EXPORT_SYMBOL vmlinux 0x6c3b2aab tcf_block_get EXPORT_SYMBOL vmlinux 0x6c4c8f13 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c6401cb sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x6c7e4473 skb_pull_data EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark EXPORT_SYMBOL vmlinux 0x6c82b520 cred_fscmp +EXPORT_SYMBOL vmlinux 0x6ca1044a sock_no_linger EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cba1cc0 register_netdevice EXPORT_SYMBOL vmlinux 0x6cbb5a9d component_match_add_typed EXPORT_SYMBOL vmlinux 0x6cd3c36a current_in_userns EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf3ffd4 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x6cf8e777 seq_write EXPORT_SYMBOL vmlinux 0x6cfefb1f default_llseek EXPORT_SYMBOL vmlinux 0x6d14a64f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x6d1a377e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x6d1d92ac dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d2a4bd0 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x6d348ccd qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x6d34e7aa dev_open EXPORT_SYMBOL vmlinux 0x6d45ceb9 param_ops_byte EXPORT_SYMBOL vmlinux 0x6d4d2648 make_kprojid +EXPORT_SYMBOL vmlinux 0x6d53ba8f security_sk_clone EXPORT_SYMBOL vmlinux 0x6d673081 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x6d6aa711 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x6d6b55b8 security_sock_graft EXPORT_SYMBOL vmlinux 0x6d6f8f33 of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x6d991bbf netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x6d9fffd3 set_anon_super +EXPORT_SYMBOL vmlinux 0x6dab3959 mr_dump EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end EXPORT_SYMBOL vmlinux 0x6dc27327 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd2ed57 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x6dd85ba0 param_get_ushort EXPORT_SYMBOL vmlinux 0x6ddcb0dd con_set_default_unimap EXPORT_SYMBOL vmlinux 0x6ddf145e dev_addr_del -EXPORT_SYMBOL vmlinux 0x6dea0380 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6dfda6a5 lookup_one_len -EXPORT_SYMBOL vmlinux 0x6e18a928 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x6e196b69 __napi_schedule -EXPORT_SYMBOL vmlinux 0x6e20b8ce security_unix_may_send -EXPORT_SYMBOL vmlinux 0x6e350e3f tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x6e407aee generic_file_llseek EXPORT_SYMBOL vmlinux 0x6e498110 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e5df701 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x6e6099b6 sock_register +EXPORT_SYMBOL vmlinux 0x6e5c03ee skb_ext_add EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock EXPORT_SYMBOL vmlinux 0x6e8383ec d_move -EXPORT_SYMBOL vmlinux 0x6e96f86e nf_log_unset EXPORT_SYMBOL vmlinux 0x6e9c57ea md_cluster_ops EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea2ab1f dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x6ea7e6c8 pci_remove_bus EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig EXPORT_SYMBOL vmlinux 0x6ebf35bc tty_hung_up_p EXPORT_SYMBOL vmlinux 0x6ebf9bd9 kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0x6ec62b5f ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6ec14b7b arp_xmit EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ee1ece8 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x6eeba8cf unregister_binfmt EXPORT_SYMBOL vmlinux 0x6ef17ac9 fb_set_suspend EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear @@ -8490,54 +8507,53 @@ EXPORT_SYMBOL vmlinux 0x6f176537 mt_find_after EXPORT_SYMBOL vmlinux 0x6f196977 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x6f31a49f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6f439f73 sock_wmalloc EXPORT_SYMBOL vmlinux 0x6f552328 posix_acl_valid EXPORT_SYMBOL vmlinux 0x6f60a403 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x6f659b64 notify_change +EXPORT_SYMBOL vmlinux 0x6f68078b inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x6f6fd13a md_update_sb EXPORT_SYMBOL vmlinux 0x6f74a7f0 ps2_sendbyte EXPORT_SYMBOL vmlinux 0x6f7cef42 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin EXPORT_SYMBOL vmlinux 0x6f8ed5a8 kobject_get EXPORT_SYMBOL vmlinux 0x6f90a869 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x6fa24612 nf_reinject -EXPORT_SYMBOL vmlinux 0x6fa70346 netdev_err EXPORT_SYMBOL vmlinux 0x6fa8f1c7 __d_drop EXPORT_SYMBOL vmlinux 0x6fab2fc2 omap_rtc_power_off_program EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -EXPORT_SYMBOL vmlinux 0x6fbc5c06 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd02ce6 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x6fd47c1c fb_pan_display EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 EXPORT_SYMBOL vmlinux 0x6fdc5a89 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x6fe491c4 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x6ff31015 key_task_permission +EXPORT_SYMBOL vmlinux 0x6ff9ecae netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x6fff5e02 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70031928 dev_get_mac_address EXPORT_SYMBOL vmlinux 0x700623ba __vfs_removexattr EXPORT_SYMBOL vmlinux 0x700c2fc2 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x7015df73 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x701a5f40 init_net EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen EXPORT_SYMBOL vmlinux 0x7035c5ce pci_find_resource +EXPORT_SYMBOL vmlinux 0x7038322b sock_register EXPORT_SYMBOL vmlinux 0x703f991b mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x70437e90 tty_do_resize EXPORT_SYMBOL vmlinux 0x7047f06b folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x704b0144 ip6_frag_init EXPORT_SYMBOL vmlinux 0x70544f1a kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x70570c07 tcp_prot EXPORT_SYMBOL vmlinux 0x705d758d dec_zone_page_state EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x7087b5f0 vfs_symlink -EXPORT_SYMBOL vmlinux 0x708d94c5 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x70ac5578 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x70ce7530 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x70b48c01 sock_no_listen EXPORT_SYMBOL vmlinux 0x70dd3181 rproc_report_crash EXPORT_SYMBOL vmlinux 0x70e35f9e pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x70f9c918 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x70ecf02a tcp_disconnect EXPORT_SYMBOL vmlinux 0x70fb6e70 nd_region_release_lane EXPORT_SYMBOL vmlinux 0x70fd821c rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x711cfe1f seq_bprintf -EXPORT_SYMBOL vmlinux 0x711de134 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x712c7ea9 seq_putc @@ -8551,10 +8567,11 @@ EXPORT_SYMBOL vmlinux 0x7171121c overflowgid EXPORT_SYMBOL vmlinux 0x7175a56d scsi_device_set_state EXPORT_SYMBOL vmlinux 0x717c4752 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x717c5cee tcp_mtup_init EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71afd10c kernel_connect EXPORT_SYMBOL vmlinux 0x71c90087 memcmp EXPORT_SYMBOL vmlinux 0x71c9fe6c jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x71dfa6f8 eth_validate_addr EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap EXPORT_SYMBOL vmlinux 0x71fc86e9 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack @@ -8563,96 +8580,97 @@ EXPORT_SYMBOL vmlinux 0x722842d9 set_binfmt EXPORT_SYMBOL vmlinux 0x72285409 drop_super EXPORT_SYMBOL vmlinux 0x72290129 set_nlink -EXPORT_SYMBOL vmlinux 0x72405bf8 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x726f41a3 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x7290825c mtree_store_range EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b90702 inet_del_protocol EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn EXPORT_SYMBOL vmlinux 0x72d5489e get_tree_single EXPORT_SYMBOL vmlinux 0x72e94292 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f86c0b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x7300254e napi_get_frags EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x73266e2d tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x732cbdd2 scsi_print_command EXPORT_SYMBOL vmlinux 0x732dd326 groups_free EXPORT_SYMBOL vmlinux 0x73381ab7 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x734eb163 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7355749c unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x735b0601 __fs_parse EXPORT_SYMBOL vmlinux 0x737511b4 snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x737b8f59 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x7380dffa argv_split EXPORT_SYMBOL vmlinux 0x738f3c6b i2c_verify_client +EXPORT_SYMBOL vmlinux 0x73992073 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739f4756 udp_disconnect EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73a259f0 map_destroy EXPORT_SYMBOL vmlinux 0x73a3592f ilookup EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range EXPORT_SYMBOL vmlinux 0x73ae8a4a pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x73bacdb9 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x73bdf883 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x73bfa2bc skb_pull_data EXPORT_SYMBOL vmlinux 0x73dddfb4 seq_open EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73ef89a2 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x73f13fe3 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0x7434b68c fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x744f197d __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx EXPORT_SYMBOL vmlinux 0x7454fc6a elevator_alloc +EXPORT_SYMBOL vmlinux 0x74595886 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x7468b4a0 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x74770408 skb_store_bits EXPORT_SYMBOL vmlinux 0x74777c23 path_has_submounts EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present EXPORT_SYMBOL vmlinux 0x7486d069 param_array_ops EXPORT_SYMBOL vmlinux 0x749466a3 mmc_command_done -EXPORT_SYMBOL vmlinux 0x74ac7b1e ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74bc5c72 pci_clear_mwi EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c222fd tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x74c9c39a snd_pcm_new EXPORT_SYMBOL vmlinux 0x74d9ab0d of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer EXPORT_SYMBOL vmlinux 0x74e54951 noop_dirty_folio EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74fa9191 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x7503cd3e devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv EXPORT_SYMBOL vmlinux 0x7510fc2e dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x75140c62 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x7527a485 kthread_create_worker EXPORT_SYMBOL vmlinux 0x7528cc04 scsi_register_driver EXPORT_SYMBOL vmlinux 0x7534800d page_mapping EXPORT_SYMBOL vmlinux 0x75386233 of_node_name_eq EXPORT_SYMBOL vmlinux 0x755c2a40 nand_ecc_sw_bch_correct -EXPORT_SYMBOL vmlinux 0x755d0820 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x7577d319 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x75817970 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x75856eef snd_register_device EXPORT_SYMBOL vmlinux 0x75986c39 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x75a433cf netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x75a35541 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x75b3648f dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cfa566 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e2994b qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x75e4fb34 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x75e98c9c blk_sync_queue EXPORT_SYMBOL vmlinux 0x75fdb774 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760a51cf inet_put_port EXPORT_SYMBOL vmlinux 0x7614681a snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7625a50b udp_pre_connect +EXPORT_SYMBOL vmlinux 0x76266b05 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764e97f8 sock_no_bind EXPORT_SYMBOL vmlinux 0x76548a0a md_done_sync EXPORT_SYMBOL vmlinux 0x7660f6b2 simple_empty EXPORT_SYMBOL vmlinux 0x7663e929 vfs_fsync EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76799aa5 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x767b6f53 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x767e9fb6 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x7698e00c param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x769bfaa5 kmem_cache_create EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check EXPORT_SYMBOL vmlinux 0x76ad9d86 pci_get_subsys @@ -8660,30 +8678,29 @@ EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl EXPORT_SYMBOL vmlinux 0x76d2c7b0 PageMovable EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d60254 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x76dcc50e ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x76df2eeb _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76e658b9 skb_append -EXPORT_SYMBOL vmlinux 0x76e90679 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x76e1416e eth_header_cache_update EXPORT_SYMBOL vmlinux 0x76eaeffe insert_inode_locked +EXPORT_SYMBOL vmlinux 0x76fc57b0 netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0x77067aa0 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x77082ac7 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x772e1bdc netif_carrier_on EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x77511ccf snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0x77676e31 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x777b57e2 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div EXPORT_SYMBOL vmlinux 0x77b5617f snd_pcm_hw_constraint_step EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77bc6096 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x77c42df7 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x77c5d2ce netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77f0c550 seq_read_iter +EXPORT_SYMBOL vmlinux 0x77f6f2bb skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x77f9a0d0 misc_register -EXPORT_SYMBOL vmlinux 0x78059a88 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x781e3c58 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x78503cf7 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x7853497e seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x7854a2b3 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x78254495 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x78556006 amba_release_regions EXPORT_SYMBOL vmlinux 0x785b6042 snd_pcm_hw_rule_noresample EXPORT_SYMBOL vmlinux 0x7868d70a unlock_new_inode @@ -8691,66 +8708,63 @@ EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler EXPORT_SYMBOL vmlinux 0x78798e1c md_reload_sb EXPORT_SYMBOL vmlinux 0x787d44c6 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7893e74d ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x789d841c regset_get_alloc EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bb2c32 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x78cd1e91 dump_skip +EXPORT_SYMBOL vmlinux 0x78dd6828 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices EXPORT_SYMBOL vmlinux 0x78e43f18 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x78e5499a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x78f203f6 netdev_change_features EXPORT_SYMBOL vmlinux 0x78fa9127 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x79026ab8 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x7913c450 vme_lm_request EXPORT_SYMBOL vmlinux 0x791babe8 folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x791cee12 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x7926350d kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x79280751 __seq_open_private +EXPORT_SYMBOL vmlinux 0x79449099 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x798f313f tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x799c51e6 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x79a21427 sock_wfree -EXPORT_SYMBOL vmlinux 0x79b62f51 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x79c77ee4 build_skb_around +EXPORT_SYMBOL vmlinux 0x7966290d skb_queue_head +EXPORT_SYMBOL vmlinux 0x7969d09b mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x79bb19c1 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x79cc87bd __nla_reserve -EXPORT_SYMBOL vmlinux 0x79e5117c ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer EXPORT_SYMBOL vmlinux 0x7a172042 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1f16af sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a354186 register_netdev EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0x7a509a06 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists EXPORT_SYMBOL vmlinux 0x7a540000 pps_event EXPORT_SYMBOL vmlinux 0x7a5b5603 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x7a5fe306 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x7a642ad0 inode_update_time +EXPORT_SYMBOL vmlinux 0x7a710c3c sk_ns_capable EXPORT_SYMBOL vmlinux 0x7a82cb16 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aae5cc0 tcf_block_put EXPORT_SYMBOL vmlinux 0x7ac5fec6 input_release_device EXPORT_SYMBOL vmlinux 0x7ac8fb1d input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad9c15d sock_wake_async 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 0x7ae42df8 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aea8d91 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x7af98c3f ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x7af4df9c neigh_xmit EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b02faf7 udp_seq_start +EXPORT_SYMBOL vmlinux 0x7b075a3f skb_checksum_setup EXPORT_SYMBOL vmlinux 0x7b075a8c twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x7b08147e dma_resv_add_fence EXPORT_SYMBOL vmlinux 0x7b103b63 phy_resume -EXPORT_SYMBOL vmlinux 0x7b1edda5 vlan_vid_add EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x7b3b9b1d flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x7b4a5642 tcp_read_sock EXPORT_SYMBOL vmlinux 0x7b5a32f2 pci_scan_root_bus EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap @@ -8758,29 +8772,32 @@ EXPORT_SYMBOL vmlinux 0x7b6e6acc console_stop EXPORT_SYMBOL vmlinux 0x7b83575e pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x7b996907 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7b9e4153 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off EXPORT_SYMBOL vmlinux 0x7bace3bc dec_node_page_state -EXPORT_SYMBOL vmlinux 0x7bd260fa tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x7bcae664 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x7bce4e89 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x7bda4977 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x7bdfa7bc sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7bf8a59a wireless_spy_update EXPORT_SYMBOL vmlinux 0x7c11bf63 dma_map_resource EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1ad63c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x7c20b506 xfrm_lookup EXPORT_SYMBOL vmlinux 0x7c27f2ae freeze_super EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c81447b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7c4e9d2f __skb_recv_udp EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update EXPORT_SYMBOL vmlinux 0x7c9777af mdio_driver_register EXPORT_SYMBOL vmlinux 0x7c9ae44e scsi_is_target_device EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca5090e security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x7ca5239a __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 EXPORT_SYMBOL vmlinux 0x7ccdc47f bio_add_page EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7cf24845 mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfa18e9 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7cfee283 xp_alloc_batch EXPORT_SYMBOL vmlinux 0x7d078bd6 vme_irq_handler EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc @@ -8788,63 +8805,61 @@ EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible EXPORT_SYMBOL vmlinux 0x7d315062 seq_read EXPORT_SYMBOL vmlinux 0x7d405842 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7d44e72e inet_del_offload +EXPORT_SYMBOL vmlinux 0x7d455b74 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d66131d read_cache_folio EXPORT_SYMBOL vmlinux 0x7d70382e scsi_scan_target EXPORT_SYMBOL vmlinux 0x7d7ccd82 irq_set_chip +EXPORT_SYMBOL vmlinux 0x7d8b8ef7 km_query EXPORT_SYMBOL vmlinux 0x7d8f9e40 ps2_drain -EXPORT_SYMBOL vmlinux 0x7d94d64b blk_get_queue +EXPORT_SYMBOL vmlinux 0x7d9f2c5d of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x7da42429 inet_stream_connect EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning EXPORT_SYMBOL vmlinux 0x7db72669 kobject_init EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dd68354 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x7dfc6b0b icmp6_send -EXPORT_SYMBOL vmlinux 0x7e05de41 netlink_set_err +EXPORT_SYMBOL vmlinux 0x7dd27d65 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e1fd80d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7e2ed5c9 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync EXPORT_SYMBOL vmlinux 0x7e517499 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x7e6cc54a pskb_expand_head EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7eab5dae tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x7eb5ce87 tegra_ivc_read_get_next_frame EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit EXPORT_SYMBOL vmlinux 0x7ecbb9f2 user_path_create EXPORT_SYMBOL vmlinux 0x7ecf5795 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x7ed01363 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x7ee8db3e netdev_info -EXPORT_SYMBOL vmlinux 0x7ef1dfae tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x7ef914ec tty_port_put +EXPORT_SYMBOL vmlinux 0x7f020020 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f042503 pci_scan_bridge EXPORT_SYMBOL vmlinux 0x7f151a40 vfs_ioctl EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs EXPORT_SYMBOL vmlinux 0x7f275aef skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x7f28261b ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x7f349c90 param_ops_bint EXPORT_SYMBOL vmlinux 0x7f36f57e fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x7f387734 request_key_tag -EXPORT_SYMBOL vmlinux 0x7f3adeff __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x7f464eb6 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f6314ea eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f65d5dc sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x7f69ae58 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x7f775230 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable EXPORT_SYMBOL vmlinux 0x7f9dd81a phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x7f9ef381 xfrm_register_type EXPORT_SYMBOL vmlinux 0x7fb87fe1 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x7fc06708 request_firmware EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fdd445d udp_skb_destructor EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read EXPORT_SYMBOL vmlinux 0x7fe220dd configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node EXPORT_SYMBOL vmlinux 0x7ff9c32a clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x80053347 vif_device_init +EXPORT_SYMBOL vmlinux 0x8009b686 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 EXPORT_SYMBOL vmlinux 0x800fe4f4 backlight_force_update +EXPORT_SYMBOL vmlinux 0x8014af5e ata_std_end_eh EXPORT_SYMBOL vmlinux 0x80390bab take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages EXPORT_SYMBOL vmlinux 0x803a2a35 i2c_transfer @@ -8856,9 +8871,7 @@ EXPORT_SYMBOL vmlinux 0x80693eb8 fs_param_is_path EXPORT_SYMBOL vmlinux 0x807d30d4 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x809d98d8 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x80b6e152 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x80b6f5ce tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x809abc48 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d10e6a mmc_erase @@ -8868,8 +8881,6 @@ EXPORT_SYMBOL vmlinux 0x80d55a32 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x80d6726d logfc EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e0baae __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x80e50c3f skb_split EXPORT_SYMBOL vmlinux 0x80e59582 from_kuid EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80f523fb jbd2_journal_get_undo_access @@ -8881,11 +8892,12 @@ EXPORT_SYMBOL vmlinux 0x8115f8f1 dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0x811a3ede scsi_dma_map EXPORT_SYMBOL vmlinux 0x812fcdaf pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x813729dc qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x8142b51e ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x81479285 dump_align EXPORT_SYMBOL vmlinux 0x8159bb70 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x8166f34f kernel_param_lock +EXPORT_SYMBOL vmlinux 0x816d2fed sock_set_mark EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x81862006 folio_unlock EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc @@ -8895,19 +8907,12 @@ EXPORT_SYMBOL vmlinux 0x81b861de framebuffer_alloc EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x81ceec40 rawnand_sw_bch_cleanup -EXPORT_SYMBOL vmlinux 0x81d41a64 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x81d6fd3a xfrm_state_update -EXPORT_SYMBOL vmlinux 0x81d9a5fb __scm_send EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e34953 finish_swait -EXPORT_SYMBOL vmlinux 0x81e66383 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info EXPORT_SYMBOL vmlinux 0x81faed8a cdev_device_add EXPORT_SYMBOL vmlinux 0x820684dc __folio_lock -EXPORT_SYMBOL vmlinux 0x820b5803 of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x820dab54 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x8216a68d sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x821de346 inet_protos EXPORT_SYMBOL vmlinux 0x821fe3b1 set_posix_acl EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb EXPORT_SYMBOL vmlinux 0x8243eecc genphy_read_abilities @@ -8917,51 +8922,49 @@ EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr EXPORT_SYMBOL vmlinux 0x8251fbdb simple_statfs EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8259e2a6 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x825e3bd6 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x826133c0 blk_put_queue EXPORT_SYMBOL vmlinux 0x8273f236 dm_put_device EXPORT_SYMBOL vmlinux 0x82747fd8 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x827f7a56 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x827f924e vmalloc_array EXPORT_SYMBOL vmlinux 0x82858646 of_lpddr3_get_ddr_timings EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock EXPORT_SYMBOL vmlinux 0x82925d9d __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x82a0ff3a __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x82bf137f new_inode EXPORT_SYMBOL vmlinux 0x82bf869c fs_param_is_blob EXPORT_SYMBOL vmlinux 0x82c351b6 uart_resume_port -EXPORT_SYMBOL vmlinux 0x82c530bc netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x82cf52fe qcom_scm_pas_metadata_release EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync EXPORT_SYMBOL vmlinux 0x82fbe9fd devm_rproc_add +EXPORT_SYMBOL vmlinux 0x8317e1c5 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 EXPORT_SYMBOL vmlinux 0x83253ef2 __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x83333888 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x833a7226 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x833fe099 task_work_add -EXPORT_SYMBOL vmlinux 0x8348d848 netdev_warn EXPORT_SYMBOL vmlinux 0x83501a84 i2c_del_adapter EXPORT_SYMBOL vmlinux 0x835151a6 fs_param_is_fd EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8362fad3 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x835bd3fc tcf_exts_dump EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 EXPORT_SYMBOL vmlinux 0x8395630b pci_find_parent_resource EXPORT_SYMBOL vmlinux 0x839ea81c blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x83b65144 ethtool_notify -EXPORT_SYMBOL vmlinux 0x83b939f9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x83bb6af0 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x83c305f5 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x83c43c52 audit_log EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83d2cc75 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x83e259c3 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x83e7c419 aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0x83fb90e0 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x83fc3be5 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free EXPORT_SYMBOL vmlinux 0x840875f2 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x841b4abc release_sock -EXPORT_SYMBOL vmlinux 0x841d8f7a security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x8423203e tcp_sendpage EXPORT_SYMBOL vmlinux 0x84321c45 tty_port_close_end EXPORT_SYMBOL vmlinux 0x84339dca mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x84356be7 zstd_dstream_workspace_bound EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x84673d88 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x847f1d98 dma_async_device_register EXPORT_SYMBOL vmlinux 0x84803cbf param_ops_long EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on @@ -8975,13 +8978,16 @@ EXPORT_SYMBOL vmlinux 0x84f99d94 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x84f9cb2a snd_ctl_find_id EXPORT_SYMBOL vmlinux 0x850fe2d7 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x851353a8 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x8514b835 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x853ac13b skb_push +EXPORT_SYMBOL vmlinux 0x85238109 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x85486ea2 genl_register_family EXPORT_SYMBOL vmlinux 0x854fbde5 sg_miter_next -EXPORT_SYMBOL vmlinux 0x8563513a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x85624d09 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85a21092 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bb38fc scsi_host_lookup EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region @@ -8993,27 +8999,26 @@ EXPORT_SYMBOL vmlinux 0x85eef566 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85f1285e fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x85fc8e78 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x86050ca4 vfs_llseek EXPORT_SYMBOL vmlinux 0x8609eb73 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x860de84f address_space_init_once -EXPORT_SYMBOL vmlinux 0x8617c7b5 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x861c4201 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x861ef747 genl_notify EXPORT_SYMBOL vmlinux 0x862470c0 generic_perform_write EXPORT_SYMBOL vmlinux 0x862bc663 memset16 EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863f7556 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x863fcd72 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x86405863 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL vmlinux 0x864d0332 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x865e65c5 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x866f06a5 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x865a5a26 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x8663079a skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x86887371 dm_io EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86954716 rtnl_create_link EXPORT_SYMBOL vmlinux 0x8696e440 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x869a3043 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x869d04b5 dev_uc_del -EXPORT_SYMBOL vmlinux 0x86a2cc81 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x86b99686 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x86cba426 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x86cd3c85 proc_create_single_data EXPORT_SYMBOL vmlinux 0x86d10bfe dquot_operations @@ -9022,48 +9027,55 @@ EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec EXPORT_SYMBOL vmlinux 0x86f0708e pcim_set_mwi EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fff8b3 blk_get_queue EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x8715eada tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x87243de2 sk_stop_timer EXPORT_SYMBOL vmlinux 0x8734701f request_key_with_auxdata EXPORT_SYMBOL vmlinux 0x873f0e73 nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL vmlinux 0x874ae46f skb_dump EXPORT_SYMBOL vmlinux 0x8755d660 discard_new_inode EXPORT_SYMBOL vmlinux 0x876ad166 unlock_rename EXPORT_SYMBOL vmlinux 0x87722357 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x87767d08 dev_close +EXPORT_SYMBOL vmlinux 0x8777c613 __scm_send EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq +EXPORT_SYMBOL vmlinux 0x8783c3d2 rtnl_unicast EXPORT_SYMBOL vmlinux 0x87866fb9 ram_aops +EXPORT_SYMBOL vmlinux 0x879eec0e netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds EXPORT_SYMBOL vmlinux 0x87a9fdf6 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x87b52026 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x87b85e51 nand_ecc_sw_hamming_init_ctx EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87d48530 dcb_getapp +EXPORT_SYMBOL vmlinux 0x87b8f3b3 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x87c45f6c tcf_block_put +EXPORT_SYMBOL vmlinux 0x87cec9c8 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x87d7fa31 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x87dc6a4f xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x87d86ea6 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x87f087da tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x87fe6c9f register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x880b4e20 snd_timer_notify EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881d223a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x88280add tcp_close +EXPORT_SYMBOL vmlinux 0x882e36c6 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x882eb73a page_readlink -EXPORT_SYMBOL vmlinux 0x88362385 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x88397f75 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x885e40a1 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x88614786 genphy_suspend EXPORT_SYMBOL vmlinux 0x88688484 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0x8872b223 d_exact_alias EXPORT_SYMBOL vmlinux 0x88766e99 input_register_handler +EXPORT_SYMBOL vmlinux 0x887f6aa3 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88881321 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x888b6a30 mmc_release_host -EXPORT_SYMBOL vmlinux 0x88b19efc netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial EXPORT_SYMBOL vmlinux 0x88b6db85 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x88b8f9c5 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x88c4ebf3 __nlmsg_put EXPORT_SYMBOL vmlinux 0x88c51bf3 get_cached_acl -EXPORT_SYMBOL vmlinux 0x88c60f81 phy_print_status -EXPORT_SYMBOL vmlinux 0x88c8fdad netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88eefc36 framebuffer_release +EXPORT_SYMBOL vmlinux 0x88f1264e tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x8917f414 kunmap_local_indexed EXPORT_SYMBOL vmlinux 0x893452c6 mmc_free_host EXPORT_SYMBOL vmlinux 0x893473fd set_page_writeback @@ -9071,105 +9083,100 @@ EXPORT_SYMBOL vmlinux 0x894c5b2f __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x89678447 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x896ad721 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x89854d25 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x8995d376 inet_release EXPORT_SYMBOL vmlinux 0x89b24940 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x89e9e652 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x89d4811a phy_start_aneg +EXPORT_SYMBOL vmlinux 0x89dc3f1e mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x8a152f0a __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x8a338700 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase EXPORT_SYMBOL vmlinux 0x8a47917a from_kgid EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a5123bf netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x8a5fa4bc snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x8a6408f6 dev_remove_offload EXPORT_SYMBOL vmlinux 0x8a6937f2 from_kgid_munged EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a716ce1 phy_start EXPORT_SYMBOL vmlinux 0x8a7c1d1f fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a8142bf devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x8a966316 folio_mark_dirty EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x8aa1cda4 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x8ab3f02a __inet_hash EXPORT_SYMBOL vmlinux 0x8ab5e7dc pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac1e6a3 udp_seq_next EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ace1a32 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0x8acf46d3 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x8acf7305 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x8ad1593b sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x8ad3d174 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x8ad82fd8 kset_register EXPORT_SYMBOL vmlinux 0x8adb3aeb pci_dev_put +EXPORT_SYMBOL vmlinux 0x8af3a42e xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x8af72e8f kobject_put EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b0c980e ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x8b2f7aff ether_setup -EXPORT_SYMBOL vmlinux 0x8b38c9e3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x8b385062 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x8b43139d vme_dma_list_free EXPORT_SYMBOL vmlinux 0x8b51538a pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout +EXPORT_SYMBOL vmlinux 0x8b5dc4d5 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x8b5fb54c sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b6e8c50 con_copy_unimap EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress -EXPORT_SYMBOL vmlinux 0x8b742efa skb_checksum_setup EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p EXPORT_SYMBOL vmlinux 0x8b80aaaa phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x8b8b43e9 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x8b8c9a08 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b91b88c pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x8ba698db __icmp_send EXPORT_SYMBOL vmlinux 0x8bca4648 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x8bd8ba88 rtnl_unicast EXPORT_SYMBOL vmlinux 0x8bd9eacc vfs_unlink -EXPORT_SYMBOL vmlinux 0x8bdb0d20 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring EXPORT_SYMBOL vmlinux 0x8bf2bf52 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x8bf34068 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x8bfb7ce5 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x8bfca81b inet6_del_offload -EXPORT_SYMBOL vmlinux 0x8c119715 dcb_setapp -EXPORT_SYMBOL vmlinux 0x8c16a4b1 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x8c14249a register_netdev EXPORT_SYMBOL vmlinux 0x8c50e193 stream_open EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8a33a5 inet_add_protocol EXPORT_SYMBOL vmlinux 0x8c8b0566 bio_init_clone EXPORT_SYMBOL vmlinux 0x8c94d712 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x8c9cfd24 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x8ca32e15 xp_free EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cb7534b of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x8cc3a6de netdev_pick_tx EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8ccc602b pcie_set_mps +EXPORT_SYMBOL vmlinux 0x8cd33706 __neigh_event_send EXPORT_SYMBOL vmlinux 0x8cd7a6de writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce16bf4 sock_from_file -EXPORT_SYMBOL vmlinux 0x8ceaf868 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x8cecc9c1 phy_suspend -EXPORT_SYMBOL vmlinux 0x8cfa21e5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x8d03c058 inet_dgram_connect EXPORT_SYMBOL vmlinux 0x8d050d21 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x8d1c1cfd inet6_release -EXPORT_SYMBOL vmlinux 0x8d1d7fe3 sk_alloc +EXPORT_SYMBOL vmlinux 0x8d3367a0 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit EXPORT_SYMBOL vmlinux 0x8d40b543 serio_unregister_port EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var EXPORT_SYMBOL vmlinux 0x8d55b384 unpin_user_page EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d57c560 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x8d560133 dst_init +EXPORT_SYMBOL vmlinux 0x8d5c0b31 pneigh_lookup EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d82b9ba netdev_notice EXPORT_SYMBOL vmlinux 0x8d994c05 nand_read_oob_std EXPORT_SYMBOL vmlinux 0x8d9df2c3 amba_driver_register EXPORT_SYMBOL vmlinux 0x8da6a9dd mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x8dac2085 consume_skb -EXPORT_SYMBOL vmlinux 0x8dd9da07 sock_init_data +EXPORT_SYMBOL vmlinux 0x8dafb568 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x8dda687d sock_create EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df562fa device_get_ethdev_address EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node EXPORT_SYMBOL vmlinux 0x8e05e688 __alloc_pages @@ -9180,9 +9187,11 @@ EXPORT_SYMBOL vmlinux 0x8e2053a4 pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0x8e267c3f fb_prepare_logo EXPORT_SYMBOL vmlinux 0x8e2e0252 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x8e2fa8db qdisc_put +EXPORT_SYMBOL vmlinux 0x8e345d13 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x8e373e2f d_invalidate -EXPORT_SYMBOL vmlinux 0x8e3e54d6 km_new_mapping EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e83acad eth_mac_addr EXPORT_SYMBOL vmlinux 0x8e84869a md_handle_request EXPORT_SYMBOL vmlinux 0x8e863a0a add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops @@ -9190,8 +9199,6 @@ EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid EXPORT_SYMBOL vmlinux 0x8e9e8cba grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x8ea246f3 kobject_set_name -EXPORT_SYMBOL vmlinux 0x8eac1ca2 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x8eb667b8 reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x8ec08af2 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only @@ -9203,57 +9210,51 @@ EXPORT_SYMBOL vmlinux 0x8f4e1e2f dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x8f4f2f08 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x8f5077a5 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x8f5673c6 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x8f572c68 __neigh_create EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f59a09a blk_finish_plug EXPORT_SYMBOL vmlinux 0x8f61ffa9 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x8f657410 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x8f771dcc kernel_read -EXPORT_SYMBOL vmlinux 0x8f7d482c vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x8f87b494 devm_free_irq EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa4b2ad tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x8f9eb0f1 dev_trans_start EXPORT_SYMBOL vmlinux 0x8fab1b69 mtree_load +EXPORT_SYMBOL vmlinux 0x8fabdb25 inet6_del_offload EXPORT_SYMBOL vmlinux 0x8fb6fe0c clk_bulk_get EXPORT_SYMBOL vmlinux 0x8fc0d2de mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fe09cf5 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8fe11481 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90103552 xp_free EXPORT_SYMBOL vmlinux 0x90186a79 zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x902b0453 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x902a42fa dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9032edb9 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x9036614a blackhole_netdev +EXPORT_SYMBOL vmlinux 0x903bc17b xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x904e4901 pci_get_slot EXPORT_SYMBOL vmlinux 0x9050dd8d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x90635a16 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x908b5ac4 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90d075cb netif_receive_skb -EXPORT_SYMBOL vmlinux 0x90d472a2 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x90dc8ac3 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x90cb3dd3 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x90d66324 security_path_unlink EXPORT_SYMBOL vmlinux 0x90ded6ff vm_iomap_memory EXPORT_SYMBOL vmlinux 0x90edc8fd textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x9120ec12 sock_no_bind -EXPORT_SYMBOL vmlinux 0x9130d888 dst_release +EXPORT_SYMBOL vmlinux 0x9124246a ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x913020b4 neigh_for_each EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x913aae32 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x9165f402 netlink_net_capable EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue EXPORT_SYMBOL vmlinux 0x9181fa65 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x91865964 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug -EXPORT_SYMBOL vmlinux 0x91938c8d skb_store_bits EXPORT_SYMBOL vmlinux 0x9194f493 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x9199bfb3 tcp_setsockopt EXPORT_SYMBOL vmlinux 0x919b2046 seq_puts EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x919cd81f input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x919ea612 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned @@ -9262,21 +9263,19 @@ EXPORT_SYMBOL vmlinux 0x91bfd3fe nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x91c08e23 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c42167 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0x91ccd09f kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync EXPORT_SYMBOL vmlinux 0x91f818d8 input_set_timestamp EXPORT_SYMBOL vmlinux 0x920e2f10 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x92109933 dst_dev_put EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x9221f843 poll_initwait EXPORT_SYMBOL vmlinux 0x92262b3d gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x9228b763 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9241ad1b xfrm_find_acq EXPORT_SYMBOL vmlinux 0x924ccdd8 fput -EXPORT_SYMBOL vmlinux 0x925d5e8f tcp_connect -EXPORT_SYMBOL vmlinux 0x9266fc18 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x925880e5 xfrm_register_km EXPORT_SYMBOL vmlinux 0x9268bba4 nd_device_notify EXPORT_SYMBOL vmlinux 0x926a22cf __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool @@ -9285,7 +9284,7 @@ EXPORT_SYMBOL vmlinux 0x9291a426 seq_open_private EXPORT_SYMBOL vmlinux 0x92997ed8 _printk EXPORT_SYMBOL vmlinux 0x929a3c6b phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x92b8bc38 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x92b6bcf6 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d465aa hdmi_infoframe_unpack @@ -9295,9 +9294,8 @@ EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92f40ef3 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fab84a tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9319f249 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9310be96 neigh_app_ns EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r EXPORT_SYMBOL vmlinux 0x932ad205 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x932dfe9f __vfs_getxattr @@ -9308,7 +9306,7 @@ EXPORT_SYMBOL vmlinux 0x936c0f0c dquot_quota_off EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid EXPORT_SYMBOL vmlinux 0x937d6684 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x938cc161 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x9382f29a eth_header EXPORT_SYMBOL vmlinux 0x93967d9c redraw_screen EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93af2d0f d_find_alias @@ -9316,11 +9314,10 @@ EXPORT_SYMBOL vmlinux 0x93c9e4a9 of_find_all_nodes EXPORT_SYMBOL vmlinux 0x93e0f23f bmap EXPORT_SYMBOL vmlinux 0x93e6735b block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x93fe690f xp_dma_map +EXPORT_SYMBOL vmlinux 0x93f65394 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x93feaa88 phy_device_remove EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list EXPORT_SYMBOL vmlinux 0x9413d891 kset_unregister -EXPORT_SYMBOL vmlinux 0x9416f9ed inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x943b6c5c __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x943c0cd3 snd_card_new EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be @@ -9330,113 +9327,117 @@ EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness EXPORT_SYMBOL vmlinux 0x9469b8ac blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0x94768dd2 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x949142d3 skb_expand_head EXPORT_SYMBOL vmlinux 0x9492b45a input_set_keycode EXPORT_SYMBOL vmlinux 0x9494eee8 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x94a408d2 __register_chrdev +EXPORT_SYMBOL vmlinux 0x94a5a6b9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x94a9f1ed xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x94aea258 skb_copy_header EXPORT_SYMBOL vmlinux 0x94aed2b9 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x94af206b ppp_input_error +EXPORT_SYMBOL vmlinux 0x94bbe899 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94c9d7f9 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x94ddbc88 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x94e5ff29 user_path_at_empty EXPORT_SYMBOL vmlinux 0x94ea1fd1 block_write_end EXPORT_SYMBOL vmlinux 0x94f47972 nand_ecc_cleanup_ctx -EXPORT_SYMBOL vmlinux 0x94fc478f blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x94fd8dba __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x951dc34d truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x953332e1 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x9526b35d tcf_block_get EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0x953800a4 cdev_device_del +EXPORT_SYMBOL vmlinux 0x953bd4bc xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp EXPORT_SYMBOL vmlinux 0x9544ca18 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x954620a2 __serio_register_port EXPORT_SYMBOL vmlinux 0x954f099c idr_preload EXPORT_SYMBOL vmlinux 0x9557558a md_bitmap_free EXPORT_SYMBOL vmlinux 0x9558642f elm_config +EXPORT_SYMBOL vmlinux 0x95694b86 kernel_bind +EXPORT_SYMBOL vmlinux 0x956cf5a8 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x9572eee3 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x9576b789 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x957715a3 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x958c5467 hmm_range_fault EXPORT_SYMBOL vmlinux 0x959d8d4d __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x95a27094 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x95c5a6a7 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x95cb4aea udp_read_skb EXPORT_SYMBOL vmlinux 0x95d3171a input_unregister_device EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e7459c genlmsg_put EXPORT_SYMBOL vmlinux 0x95ee3868 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x95f94043 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x95fa176d __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x96072600 unix_detach_fds EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock EXPORT_SYMBOL vmlinux 0x961e1271 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x9628e20b dev_set_alias -EXPORT_SYMBOL vmlinux 0x9644fb99 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x963ef829 udp_ioctl EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x965856f1 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x96593343 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x965d0338 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x965a44f3 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x96603250 kmalloc_large EXPORT_SYMBOL vmlinux 0x9677d212 free_cgroup_ns EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968c776f ndisc_send_skb EXPORT_SYMBOL vmlinux 0x969f115d cdev_add -EXPORT_SYMBOL vmlinux 0x96a80bcf __ip_options_compile +EXPORT_SYMBOL vmlinux 0x96a2ea90 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c4459e ip6_frag_init EXPORT_SYMBOL vmlinux 0x96c79033 snd_pcm_set_managed_buffer_all EXPORT_SYMBOL vmlinux 0x96c87f73 kern_unmount EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96da6a4a slab_build_skb -EXPORT_SYMBOL vmlinux 0x96f3b8b4 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x96e7e40d inet_sock_destruct EXPORT_SYMBOL vmlinux 0x96f7862e fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x96fafc3b generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x96fd6cd2 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x97008991 cpu_tlb EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul EXPORT_SYMBOL vmlinux 0x97255bdf strlen EXPORT_SYMBOL vmlinux 0x973649f0 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x975b4729 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x975faba5 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x978e580d netif_rx EXPORT_SYMBOL vmlinux 0x978e5c23 config_group_init EXPORT_SYMBOL vmlinux 0x979b8331 submit_bio_wait EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b24d0e xp_alloc_batch EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list EXPORT_SYMBOL vmlinux 0x97d5a5f5 vm_node_stat -EXPORT_SYMBOL vmlinux 0x97d8e1fa tso_start -EXPORT_SYMBOL vmlinux 0x9800a396 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x981fb58e netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x98349e18 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x9836c0ad inode_sub_bytes EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue EXPORT_SYMBOL vmlinux 0x984d3990 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x98521eeb __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0x986f3dd1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x9872fc09 nf_log_packet +EXPORT_SYMBOL vmlinux 0x9879fb4b netdev_notice EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset EXPORT_SYMBOL vmlinux 0x988c22b3 d_make_root EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x98c4ecb6 tty_port_destroy EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98c8c1ff skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x98d58625 __lock_buffer EXPORT_SYMBOL vmlinux 0x98e39bcc proc_set_size EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning EXPORT_SYMBOL vmlinux 0x98eb83fa phy_read_mmd EXPORT_SYMBOL vmlinux 0x98ec2c18 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x99019e3a udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x98ecf770 genl_unregister_family EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available EXPORT_SYMBOL vmlinux 0x990ec8a5 dquot_quota_on EXPORT_SYMBOL vmlinux 0x99120508 __quota_error EXPORT_SYMBOL vmlinux 0x991dcf5f vme_master_mmap +EXPORT_SYMBOL vmlinux 0x9926b375 slab_build_skb EXPORT_SYMBOL vmlinux 0x992b3204 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x9930cdc5 kmem_cache_size EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x9936a896 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0x99410e0d iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x994673c4 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable EXPORT_SYMBOL vmlinux 0x995246c3 dev_driver_string EXPORT_SYMBOL vmlinux 0x995753f3 dmaengine_get_unmap_data @@ -9444,29 +9445,31 @@ EXPORT_SYMBOL vmlinux 0x9966b0a0 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all EXPORT_SYMBOL vmlinux 0x996f070e unregister_filesystem +EXPORT_SYMBOL vmlinux 0x999b65a2 tcp_read_done EXPORT_SYMBOL vmlinux 0x999e7eda jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x999e8297 vfree EXPORT_SYMBOL vmlinux 0x99a2475f pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x99b99f7c mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bd7be7 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99dbcbc2 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a04a3f5 netpoll_setup EXPORT_SYMBOL vmlinux 0x9a0aad4f mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0x9a0ce5ad jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x9a17a50d sock_alloc_file EXPORT_SYMBOL vmlinux 0x9a1c2be0 devm_of_iomap EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a2f9708 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x9a30277a security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x9a3400fc fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x9a3e843d mmc_can_trim EXPORT_SYMBOL vmlinux 0x9a4a64c8 fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a6f3114 __netif_schedule EXPORT_SYMBOL vmlinux 0x9a6f44d6 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x9a72839d ip_output EXPORT_SYMBOL vmlinux 0x9a7fc075 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec @@ -9474,16 +9477,13 @@ EXPORT_SYMBOL vmlinux 0x9a8bb5bf single_release EXPORT_SYMBOL vmlinux 0x9aa127b6 make_kuid EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 -EXPORT_SYMBOL vmlinux 0x9aacde31 napi_build_skb EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9aafe186 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x9aba14a1 free_buffer_head -EXPORT_SYMBOL vmlinux 0x9ac68f21 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x9ad30028 bio_split EXPORT_SYMBOL vmlinux 0x9ad5e68a devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit EXPORT_SYMBOL vmlinux 0x9ae5f7a8 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x9ae89831 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x9aee250a security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x9af8ccec mpage_writepages EXPORT_SYMBOL vmlinux 0x9b0352cb jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x9b0f9ea3 jbd2_journal_wipe @@ -9492,32 +9492,32 @@ EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b2dbd5c handle_edge_irq -EXPORT_SYMBOL vmlinux 0x9b332583 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b355776 snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x9b3d89ab pskb_extract EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b59604f tcp_child_process EXPORT_SYMBOL vmlinux 0x9b68fff7 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b78aa6d xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x9b8d4d9e dquot_initialize EXPORT_SYMBOL vmlinux 0x9b8e1fb5 clear_inode EXPORT_SYMBOL vmlinux 0x9bcc1bb8 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x9bdbac23 snd_ctl_boolean_mono_info EXPORT_SYMBOL vmlinux 0x9be1af00 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x9c067f09 unregister_netdev EXPORT_SYMBOL vmlinux 0x9c0f22f2 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x9c29b676 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x9c2d075f input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x9c30e56d skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x9c330346 skb_queue_tail EXPORT_SYMBOL vmlinux 0x9c3ade68 dump_emit +EXPORT_SYMBOL vmlinux 0x9c4a32d8 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x9c4c5d0f xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck EXPORT_SYMBOL vmlinux 0x9c8565da devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8d1945 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x9c981ee3 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x9c9ce113 mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0x9ca11179 fb_show_logo -EXPORT_SYMBOL vmlinux 0x9ca73fda netif_device_detach EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name EXPORT_SYMBOL vmlinux 0x9cb3aca2 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x9cc4fbbe _dev_info @@ -9525,55 +9525,47 @@ EXPORT_SYMBOL vmlinux 0x9cd02d54 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x9cd81965 pci_write_vpd EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cdfcff9 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x9ce6327c filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x9ce7bc3e __sock_create EXPORT_SYMBOL vmlinux 0x9d036411 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x9d04d6d0 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d296e1d genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x9d2974b6 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d3b1050 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x9d456dd2 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x9d56558f netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x9d595250 blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class EXPORT_SYMBOL vmlinux 0x9d647369 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6ece5c dst_discard_out EXPORT_SYMBOL vmlinux 0x9d71c313 register_console EXPORT_SYMBOL vmlinux 0x9d75ba4c scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x9d7a587b inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x9d850d1c kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x9d9227eb sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9d76ff3f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x9db48065 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x9dcc22b2 pci_reenable_device EXPORT_SYMBOL vmlinux 0x9dd0378b mmc_alloc_host EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0x9de3bf03 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x9de5652b __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x9dfeb1ed blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0cbe6f build_skb_around EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle EXPORT_SYMBOL vmlinux 0x9e24dccd dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x9e2b0c92 cdrom_check_events EXPORT_SYMBOL vmlinux 0x9e306c75 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x9e441c8b tcf_idr_create EXPORT_SYMBOL vmlinux 0x9e4e9296 dql_init EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e6c301f __phy_resume -EXPORT_SYMBOL vmlinux 0x9e6ca81a netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str EXPORT_SYMBOL vmlinux 0x9e7b0900 vme_new_dma_list EXPORT_SYMBOL vmlinux 0x9e7ddbdf nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x9e8de917 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0x9e9e0c02 ilookup5 EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eac0309 alloc_fddidev EXPORT_SYMBOL vmlinux 0x9eb98658 pci_write_config_word EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 @@ -9582,28 +9574,27 @@ EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9ee5eadb flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x9eee6d9c devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x9ef65cad arp_send -EXPORT_SYMBOL vmlinux 0x9f0200fc ipv4_specific -EXPORT_SYMBOL vmlinux 0x9f12d31e skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x9f0344fb tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x9f1bc733 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x9f2821bb phy_config_aneg EXPORT_SYMBOL vmlinux 0x9f290c88 key_put EXPORT_SYMBOL vmlinux 0x9f29ffb3 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x9f43a107 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4a3160 ptp_find_pin EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f58dd4d neigh_app_ns +EXPORT_SYMBOL vmlinux 0x9f6008e4 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x9f6227dd input_close_device +EXPORT_SYMBOL vmlinux 0x9f627680 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x9f643f74 snd_card_set_id EXPORT_SYMBOL vmlinux 0x9f67a239 bio_copy_data EXPORT_SYMBOL vmlinux 0x9f6d1e33 rtc_add_group EXPORT_SYMBOL vmlinux 0x9f6e53c9 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x9f775829 tcp_make_synack EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f991e16 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x9f9d1119 tty_write_room EXPORT_SYMBOL vmlinux 0x9fa34329 dma_find_channel +EXPORT_SYMBOL vmlinux 0x9fadfab0 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta EXPORT_SYMBOL vmlinux 0x9fc54a9b tcf_em_register EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many @@ -9614,12 +9605,9 @@ EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0x9ffb582d generic_mii_ioctl EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa0326bd1 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0438580 tso_build_data EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa0513e3c inet_dgram_ops EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b1efe gnet_stats_basic_sync_init EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute @@ -9630,16 +9618,16 @@ EXPORT_SYMBOL vmlinux 0xa07cd9db get_unmapped_area EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa095b209 alloc_fcdev EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable EXPORT_SYMBOL vmlinux 0xa09a7782 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0xa09aa06f generic_fillattr +EXPORT_SYMBOL vmlinux 0xa09d523b dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b0d871 free_netdev EXPORT_SYMBOL vmlinux 0xa0b5b7ae dns_query +EXPORT_SYMBOL vmlinux 0xa0c7c347 udp_gro_receive EXPORT_SYMBOL vmlinux 0xa0c8099a thaw_bdev EXPORT_SYMBOL vmlinux 0xa0d0c088 kill_litter_super EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private @@ -9647,19 +9635,16 @@ EXPORT_SYMBOL vmlinux 0xa0eba4b0 thaw_super EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0ee443d neigh_destroy EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa10038fa nla_reserve EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11964eb __netif_napi_del -EXPORT_SYMBOL vmlinux 0xa120552f __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xa13d7c9c reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xa128e1ed ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xa13e18a6 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xa16d53ba netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa1c28fa4 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xa1c86243 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa1ca5fb7 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xa1cd4d6e generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user EXPORT_SYMBOL vmlinux 0xa1d29854 phy_disconnect @@ -9667,28 +9652,34 @@ EXPORT_SYMBOL vmlinux 0xa1fe64e1 scsi_target_resume EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp EXPORT_SYMBOL vmlinux 0xa209263d scsi_host_busy +EXPORT_SYMBOL vmlinux 0xa2366889 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xa23cf25e always_delete_dentry EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24491bf ida_free EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa253dc09 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xa254e53b reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xa25bf4a3 icmp6_send EXPORT_SYMBOL vmlinux 0xa25d0ab5 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xa25eb8dc dev_close EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa279bcb7 unlock_buffer EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa291af2e security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xa2ad8b83 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0xa2b4d276 keyring_alloc -EXPORT_SYMBOL vmlinux 0xa2b6d007 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xa2b57f0b __ip_dev_find +EXPORT_SYMBOL vmlinux 0xa2b943cd udp6_seq_ops EXPORT_SYMBOL vmlinux 0xa2c967ac configfs_depend_item EXPORT_SYMBOL vmlinux 0xa2cfb1e1 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xa2d36277 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xa2edf5d9 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0xa2f109fe ppp_unit_number +EXPORT_SYMBOL vmlinux 0xa2f826af skb_vlan_untag EXPORT_SYMBOL vmlinux 0xa319662c flush_dcache_folio EXPORT_SYMBOL vmlinux 0xa32c1e8e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xa33fba6a security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xa3404f96 complete_request_key +EXPORT_SYMBOL vmlinux 0xa378f180 tcp_connect EXPORT_SYMBOL vmlinux 0xa381944f dql_reset EXPORT_SYMBOL vmlinux 0xa392d07c load_nls_default EXPORT_SYMBOL vmlinux 0xa396b5ea pci_set_mwi @@ -9700,94 +9691,85 @@ EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0xa3cf2713 folio_end_writeback EXPORT_SYMBOL vmlinux 0xa3e3b41b path_is_under -EXPORT_SYMBOL vmlinux 0xa3eb5528 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xa3e42d5c security_path_mknod EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa3ff5aaa tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xa4100103 ppp_register_compressor EXPORT_SYMBOL vmlinux 0xa4116dcf max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa4267356 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xa432039f dst_destroy +EXPORT_SYMBOL vmlinux 0xa4356694 tcp_init_sock EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed -EXPORT_SYMBOL vmlinux 0xa43d6652 phy_stop +EXPORT_SYMBOL vmlinux 0xa43ef9e7 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc EXPORT_SYMBOL vmlinux 0xa45d0eb1 snd_card_disconnect EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa475df0a nf_register_net_hook EXPORT_SYMBOL vmlinux 0xa476335c vfs_fadvise +EXPORT_SYMBOL vmlinux 0xa4a99089 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence EXPORT_SYMBOL vmlinux 0xa4ba3887 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xa4c17864 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0xa4d30099 inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0xa4d651de skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xa4da85d8 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0xa4e26f7e device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0xa4f83e0c xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xa4ec0ee4 tcp_mmap +EXPORT_SYMBOL vmlinux 0xa4f76476 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa5075d85 ata_std_end_eh EXPORT_SYMBOL vmlinux 0xa51a2967 _find_next_zero_bit_le EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xa53a93c9 phy_start_aneg EXPORT_SYMBOL vmlinux 0xa5452cb7 vfs_get_tree EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55ad79c tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa561cffd dst_discard_out EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xa5767664 wait_for_key_construction EXPORT_SYMBOL vmlinux 0xa58408fa blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xa59a0505 pci_enable_ptm EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xa5b01208 udp_seq_start -EXPORT_SYMBOL vmlinux 0xa5bf28b4 sock_no_connect EXPORT_SYMBOL vmlinux 0xa5d61268 __bread_gfp EXPORT_SYMBOL vmlinux 0xa5ff1e71 input_allocate_device -EXPORT_SYMBOL vmlinux 0xa60f57c3 napi_disable EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa62a4bac _dev_emerg EXPORT_SYMBOL vmlinux 0xa63466fc dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0xa63cf9d4 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xa6474ddf sk_stream_wait_close EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa65de98e dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xa662b400 dev_add_offload EXPORT_SYMBOL vmlinux 0xa66bb838 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL vmlinux 0xa66e3a5b phy_get_eee_err EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 EXPORT_SYMBOL vmlinux 0xa68caa41 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0xa6914199 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0xa69c7b99 lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xa6a6b688 rawnand_sw_hamming_correct EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6ada6bd netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xa6ad1e46 phy_trigger_machine EXPORT_SYMBOL vmlinux 0xa6b2c6ae keyring_search EXPORT_SYMBOL vmlinux 0xa6bd2075 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xa6c5f32e netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xa6d9596d security_inode_init_security EXPORT_SYMBOL vmlinux 0xa6e3c970 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0xa6e8eeca neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xa6ed85be neigh_event_ns EXPORT_SYMBOL vmlinux 0xa6f316db i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xa6f5649c tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xa6f6bc2e netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xa6fae730 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa6fbfd39 inet_listen EXPORT_SYMBOL vmlinux 0xa70bb909 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70ef4f0 pci_bus_type -EXPORT_SYMBOL vmlinux 0xa7125157 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xa7183d4d ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xa71868eb of_match_device -EXPORT_SYMBOL vmlinux 0xa72b63b7 sk_common_release EXPORT_SYMBOL vmlinux 0xa72e7416 iov_iter_kvec EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa764314c mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xa76fc46c km_report +EXPORT_SYMBOL vmlinux 0xa7726c9b sock_sendmsg EXPORT_SYMBOL vmlinux 0xa77acd60 dma_unmap_resource EXPORT_SYMBOL vmlinux 0xa77b0b53 textsearch_unregister EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77fc548 skb_free_datagram EXPORT_SYMBOL vmlinux 0xa78b543c rtc_add_groups -EXPORT_SYMBOL vmlinux 0xa7a4198c memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xa794a30a ndisc_mc_map EXPORT_SYMBOL vmlinux 0xa7a7b81f mmc_detect_change EXPORT_SYMBOL vmlinux 0xa7a91c2a __folio_start_writeback EXPORT_SYMBOL vmlinux 0xa7b3181c up_read @@ -9797,19 +9779,19 @@ EXPORT_SYMBOL vmlinux 0xa808a022 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead EXPORT_SYMBOL vmlinux 0xa80e13f3 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xa8165ba9 fqdir_exit EXPORT_SYMBOL vmlinux 0xa84244df msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa865c2bf ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa8518532 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xa85ec91b default_qdisc_ops EXPORT_SYMBOL vmlinux 0xa87c3556 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xa88561cc fd_install EXPORT_SYMBOL vmlinux 0xa895604a devm_memunmap EXPORT_SYMBOL vmlinux 0xa897e692 bio_endio EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end EXPORT_SYMBOL vmlinux 0xa8b09416 key_revoke +EXPORT_SYMBOL vmlinux 0xa8c61821 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8d24620 zstd_init_cstream EXPORT_SYMBOL vmlinux 0xa8d6dbc3 register_filesystem @@ -9820,10 +9802,9 @@ EXPORT_SYMBOL vmlinux 0xa8fe121b rproc_del EXPORT_SYMBOL vmlinux 0xa900924c key_reject_and_link EXPORT_SYMBOL vmlinux 0xa9077cae max8998_write_reg -EXPORT_SYMBOL vmlinux 0xa907c37a genl_notify -EXPORT_SYMBOL vmlinux 0xa90c66f3 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa9092dc8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xa924e5e6 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xa92b6bda bdi_put -EXPORT_SYMBOL vmlinux 0xa92fc041 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0xa947b14f zstd_reset_cstream EXPORT_SYMBOL vmlinux 0xa952a2f1 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0xa955edb0 mipi_dsi_turn_on_peripheral @@ -9831,24 +9812,25 @@ EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa978726b of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xa98845f1 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xa9848a9d scm_fp_dup +EXPORT_SYMBOL vmlinux 0xa992b49d netdev_state_change EXPORT_SYMBOL vmlinux 0xa9a02b79 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xa9bc3476 __skb_get_hash EXPORT_SYMBOL vmlinux 0xa9c38e68 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xa9c58bc2 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xaa090504 passthru_features_check +EXPORT_SYMBOL vmlinux 0xaa12e067 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa1ad7f9 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xaa1e2b61 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0xaa267014 migrate_folio EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa44b663 nf_log_set EXPORT_SYMBOL vmlinux 0xaa650f2c __kmap_to_page EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb EXPORT_SYMBOL vmlinux 0xaa8de20b mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa9c0d81 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xaaa2fd5a pid_task EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change EXPORT_SYMBOL vmlinux 0xaab10a6c backlight_device_set_brightness @@ -9856,74 +9838,88 @@ 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 0xaae40795 nf_hook_slow EXPORT_SYMBOL vmlinux 0xaaeb29e7 user_revoke EXPORT_SYMBOL vmlinux 0xaaec04ce rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xaaf943f3 mroute6_is_socket EXPORT_SYMBOL vmlinux 0xaafd8996 get_tree_nodev EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp EXPORT_SYMBOL vmlinux 0xab044b79 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xab245421 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3eb766 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xab4910ec sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xab599b54 bio_split_to_limits EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab697f0a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xab6ac901 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab74e73a cont_write_begin EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options EXPORT_SYMBOL vmlinux 0xaba7fcb5 alloc_anon_inode EXPORT_SYMBOL vmlinux 0xabaf946e blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xabb0d119 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xabbf9b03 max8998_bulk_read EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0xabd03f97 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xabdae1e3 napi_gro_frags EXPORT_SYMBOL vmlinux 0xabe04f9a tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xabfba5d7 seq_lseek -EXPORT_SYMBOL vmlinux 0xac09a64d security_d_instantiate -EXPORT_SYMBOL vmlinux 0xac169af3 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xac0cb33f ppp_register_channel EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd EXPORT_SYMBOL vmlinux 0xac409e84 param_set_copystring EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum EXPORT_SYMBOL vmlinux 0xac4e166f rproc_shutdown -EXPORT_SYMBOL vmlinux 0xac5fc243 tcf_unregister_action EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6d051e xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xac6e9ddb tegra_dfll_register EXPORT_SYMBOL vmlinux 0xac737cb9 nd_device_register EXPORT_SYMBOL vmlinux 0xac82b35c nla_put_nohdr EXPORT_SYMBOL vmlinux 0xac89ab71 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xac957b65 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xaca7bb65 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu EXPORT_SYMBOL vmlinux 0xacd2358f pci_request_irq EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacd95ea3 par_io_of_config EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace2474d xfrm_state_add EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad09e9e2 netdev_emerg EXPORT_SYMBOL vmlinux 0xad0ad9ec proc_set_user EXPORT_SYMBOL vmlinux 0xad2363d4 console_start EXPORT_SYMBOL vmlinux 0xad2ea1db _snd_ctl_add_follower EXPORT_SYMBOL vmlinux 0xad5e9a39 input_inject_event EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad757b99 param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xad7d0c0c netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xad758a10 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xad7cf89a inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0xad93edc5 __write_overflow_field +EXPORT_SYMBOL vmlinux 0xad946fb5 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xad991bfa skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xad9bf5d1 param_ops_ullong EXPORT_SYMBOL vmlinux 0xad9d4a0a devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xadace246 __lock_sock_fast EXPORT_SYMBOL vmlinux 0xadad8bff vmf_insert_mixed EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadae8184 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0xadd3d90b __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xadd69986 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xade1a675 pipe_lock +EXPORT_SYMBOL vmlinux 0xadeaf356 lock_sock_nested EXPORT_SYMBOL vmlinux 0xadf4d702 param_ops_uint EXPORT_SYMBOL vmlinux 0xadf93899 generic_ro_fops EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0fcf5c __ip_dev_find +EXPORT_SYMBOL vmlinux 0xae14841d skb_eth_push +EXPORT_SYMBOL vmlinux 0xae180ee3 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xae191749 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xae1d1eac of_n_size_cells EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled @@ -9933,11 +9929,12 @@ EXPORT_SYMBOL vmlinux 0xae49e317 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0xae57265d sync_file_create EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xae67f3b3 __inet_hash EXPORT_SYMBOL vmlinux 0xae6cf97f jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xae6f7e0e nla_append +EXPORT_SYMBOL vmlinux 0xae828669 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb3db0e load_nls -EXPORT_SYMBOL vmlinux 0xaed240a2 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0xaedc07e1 __generic_file_fsync EXPORT_SYMBOL vmlinux 0xaeddfa59 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xaef07196 block_is_partially_uptodate @@ -9945,18 +9942,19 @@ EXPORT_SYMBOL vmlinux 0xaef15e1e snd_pcm_hw_param_last EXPORT_SYMBOL vmlinux 0xaf01d342 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0xaf166dcf unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xaf168afc secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xaf1a99b0 snd_timer_instance_free EXPORT_SYMBOL vmlinux 0xaf1f7ff1 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf42fd47 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xaf447a9b security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality EXPORT_SYMBOL vmlinux 0xaf54e371 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0xaf693832 sock_efree EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 EXPORT_SYMBOL vmlinux 0xaf864dbe param_set_bool EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0xafa11dfc generic_file_mmap +EXPORT_SYMBOL vmlinux 0xafa14327 rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0xafa1d3e2 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xafa666d7 xattr_full_name EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit @@ -9964,18 +9962,21 @@ EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafca84ff rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0xafcb83dd input_register_device -EXPORT_SYMBOL vmlinux 0xafcc2a97 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xafe1a405 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xafe91968 napi_enable +EXPORT_SYMBOL vmlinux 0xafed0f8e bpf_link_put EXPORT_SYMBOL vmlinux 0xb003f2a5 scsi_host_get EXPORT_SYMBOL vmlinux 0xb0119f2a twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb013ee85 xfrm_state_update EXPORT_SYMBOL vmlinux 0xb01400d6 serio_open EXPORT_SYMBOL vmlinux 0xb019ee3d bio_add_pc_page EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb01cc1f2 simple_fill_super EXPORT_SYMBOL vmlinux 0xb0249468 igrab EXPORT_SYMBOL vmlinux 0xb0313e5e md_write_start +EXPORT_SYMBOL vmlinux 0xb034e53a skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xb0436521 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xb0552fe1 kernel_getpeername EXPORT_SYMBOL vmlinux 0xb05de2d5 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb06ebdd0 mmc_retune_pause @@ -9984,23 +9985,27 @@ EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xb0bab6b4 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xb0c46965 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xb0cc3cee open_exec -EXPORT_SYMBOL vmlinux 0xb0dc6180 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xb11fccb6 phy_write_mmd EXPORT_SYMBOL vmlinux 0xb11ff0af generic_file_splice_read EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb124cef0 rt6_lookup EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1335969 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xb13f807c close_fd_get_file EXPORT_SYMBOL vmlinux 0xb1424eee prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0xb149822a dev_printk_emit EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb152c0c8 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0xb161e50c call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xb164fb77 tcf_classify EXPORT_SYMBOL vmlinux 0xb165156f pldmfw_flash_image EXPORT_SYMBOL vmlinux 0xb16b06cf jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xb197d35c inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb18876d9 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb193cea5 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc EXPORT_SYMBOL vmlinux 0xb1ad95da fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0xb1b347f2 seq_release @@ -10010,6 +10015,8 @@ EXPORT_SYMBOL vmlinux 0xb1dd9660 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t EXPORT_SYMBOL vmlinux 0xb1df4753 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xb1e0ec4c netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xb1ec6a83 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0xb200ffc1 kern_path_create EXPORT_SYMBOL vmlinux 0xb21cd5b7 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xb2299b4d mmc_retune_timer_stop @@ -10018,17 +10025,18 @@ EXPORT_SYMBOL vmlinux 0xb23a519c zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xb255f8f6 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0xb265a069 done_path_create -EXPORT_SYMBOL vmlinux 0xb27627e3 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xb276a704 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xb2c61afe sock_pfree +EXPORT_SYMBOL vmlinux 0xb2abf1f7 km_state_expired EXPORT_SYMBOL vmlinux 0xb2cb8808 invalidate_disk EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on EXPORT_SYMBOL vmlinux 0xb2db4b54 file_update_time EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data EXPORT_SYMBOL vmlinux 0xb2e98c42 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xb2ea9259 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xb2f81d8c request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0xb2fa6432 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xb2fdb1d5 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xb2fe4f85 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set EXPORT_SYMBOL vmlinux 0xb31dcdc5 unmap_mapping_range @@ -10037,7 +10045,6 @@ EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init EXPORT_SYMBOL vmlinux 0xb3293b20 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xb3577b09 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xb35d2aaa jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0xb3667805 dqstats EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq @@ -10050,30 +10057,31 @@ EXPORT_SYMBOL vmlinux 0xb3bc21cd mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string EXPORT_SYMBOL vmlinux 0xb3e4a9dc seq_printf -EXPORT_SYMBOL vmlinux 0xb3e54902 sk_stop_timer EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb40716f8 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xb40b82b0 pci_assign_resource EXPORT_SYMBOL vmlinux 0xb40e4aba md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xb41afa09 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42688c6 tcf_classify EXPORT_SYMBOL vmlinux 0xb43ae099 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock EXPORT_SYMBOL vmlinux 0xb448a915 of_get_mac_address EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem EXPORT_SYMBOL vmlinux 0xb46c268a pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48dbf2d ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size EXPORT_SYMBOL vmlinux 0xb49d1a65 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc EXPORT_SYMBOL vmlinux 0xb4bddb04 zstd_init_dstream +EXPORT_SYMBOL vmlinux 0xb4cbf247 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xb4d89d17 mdiobus_free EXPORT_SYMBOL vmlinux 0xb4f13d2a abort EXPORT_SYMBOL vmlinux 0xb4f5bd10 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xb503b482 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xb512f21a nf_reinject EXPORT_SYMBOL vmlinux 0xb5137ee3 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xb51cefbd nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xb527b29f ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xb5282958 to_ndd EXPORT_SYMBOL vmlinux 0xb5365a73 snd_pcm_period_elapsed @@ -10082,74 +10090,71 @@ EXPORT_SYMBOL vmlinux 0xb54b434e blk_set_runtime_active EXPORT_SYMBOL vmlinux 0xb55c6d0c scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xb57619d7 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xb5828c31 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58c8eb6 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xb592d087 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xb59cd0ac tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ad540d mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags EXPORT_SYMBOL vmlinux 0xb5b832c5 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xb5ba4ad7 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xb5c7e8ff ip6_output +EXPORT_SYMBOL vmlinux 0xb5d41bf2 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xb5d9dc41 fiemap_prep EXPORT_SYMBOL vmlinux 0xb5dbe3ac of_get_min_tck EXPORT_SYMBOL vmlinux 0xb5dc863b scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xb5e8f442 skb_eth_push EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked EXPORT_SYMBOL vmlinux 0xb6239905 seq_dentry EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb6391d62 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0xb644e68c blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xb652d03e blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb656c60c inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc EXPORT_SYMBOL vmlinux 0xb666b030 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xb6671c0c rt_dst_alloc EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67f6453 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb685dea4 trace_event_printf EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6a64bdb mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0xb6aa2f28 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xb6aa38f8 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b2df88 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run EXPORT_SYMBOL vmlinux 0xb6bb173f find_vma +EXPORT_SYMBOL vmlinux 0xb6c61a06 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit EXPORT_SYMBOL vmlinux 0xb6cf04d3 __dec_node_page_state EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb711b139 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xb6fdf018 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xb712c498 snd_jack_set_key EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb730ae9b udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xb72478ce peernet2id EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq EXPORT_SYMBOL vmlinux 0xb74d18df mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb757bba7 d_alloc EXPORT_SYMBOL vmlinux 0xb764ad8c pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb784b273 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb785880b dev_get_by_index EXPORT_SYMBOL vmlinux 0xb78d2afe of_n_addr_cells EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78f1b26 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xb7a527e0 udp_prot -EXPORT_SYMBOL vmlinux 0xb7af4172 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0xb7b6b40f of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb7bebb91 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb7bfcfba tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb7c62d82 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7db6562 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0xb7edc677 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb7f8ee4a nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb805082c inet_frags_init -EXPORT_SYMBOL vmlinux 0xb830fa54 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xb80ae1d1 __netif_napi_del EXPORT_SYMBOL vmlinux 0xb83a38fc mpage_read_folio EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85a34a3 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xb84764b7 udplite_prot EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb87107cd shmem_aops EXPORT_SYMBOL vmlinux 0xb8863862 config_item_get @@ -10157,7 +10162,6 @@ EXPORT_SYMBOL vmlinux 0xb895d323 phy_attach EXPORT_SYMBOL vmlinux 0xb8967d21 of_find_compatible_node EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a3feb1 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b7948a tcf_em_tree_validate @@ -10166,86 +10170,80 @@ EXPORT_SYMBOL vmlinux 0xb8c2206b rawnand_sw_bch_init EXPORT_SYMBOL vmlinux 0xb8c2e6b9 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xb8ce517e netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xb8d41c0b sock_from_file +EXPORT_SYMBOL vmlinux 0xb8dbfd08 ether_setup EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xb8e5fe6b passthru_features_check EXPORT_SYMBOL vmlinux 0xb8f3be65 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0xb8fbdd25 folio_end_private_2 -EXPORT_SYMBOL vmlinux 0xb910bf83 neigh_for_each EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb92a4669 phy_write_paged EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94b9c1d genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xb956571c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xb95acb81 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context -EXPORT_SYMBOL vmlinux 0xb96d8fcf netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb98f5139 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xb99271e4 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb99ac0af ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 EXPORT_SYMBOL vmlinux 0xb9c62201 folio_add_lru EXPORT_SYMBOL vmlinux 0xb9c8f6b0 mount_single +EXPORT_SYMBOL vmlinux 0xb9d2a0eb ip_do_fragment EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9ed9ef3 vfs_link EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba214921 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xba29c393 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xba208cb9 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xba2d1c95 inet_register_protosw EXPORT_SYMBOL vmlinux 0xba3627f8 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0xba381569 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xba3ed6d5 kmalloc_trace EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba5b6230 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xba62e8a9 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xba6a0cdf reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xba6ca5d5 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk EXPORT_SYMBOL vmlinux 0xba751515 dev_mc_add EXPORT_SYMBOL vmlinux 0xba928cb6 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0xba95549f scsi_add_device EXPORT_SYMBOL vmlinux 0xba9c4aa2 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xbacdd198 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xbaa9a92b reuseport_select_sock EXPORT_SYMBOL vmlinux 0xbad45176 tty_register_driver EXPORT_SYMBOL vmlinux 0xbad5ca2c blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xbae0197c netlink_set_err EXPORT_SYMBOL vmlinux 0xbae3fffb inc_nlink +EXPORT_SYMBOL vmlinux 0xbae79efc netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbaffd598 set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset EXPORT_SYMBOL vmlinux 0xbb0c9ae8 bio_chain EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb16d0ad inet_addr_type_table EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2b9edb dev_activate EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xbb30054f unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xbb34635f devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbb5c1904 napi_disable EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 EXPORT_SYMBOL vmlinux 0xbb944b63 mtree_destroy EXPORT_SYMBOL vmlinux 0xbb95fb10 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xbba34891 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xbbadc0eb ipv6_setsockopt EXPORT_SYMBOL vmlinux 0xbbb0170f bioset_exit EXPORT_SYMBOL vmlinux 0xbbbbefd0 of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0xbbc80be1 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0xbbe9a7cb t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xbbed263e snd_ctl_make_virtual_master EXPORT_SYMBOL vmlinux 0xbc0ec505 key_link -EXPORT_SYMBOL vmlinux 0xbc0fa3ca vlan_for_each EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc1c6426 tcf_idr_create EXPORT_SYMBOL vmlinux 0xbc2c73c8 sget_fc -EXPORT_SYMBOL vmlinux 0xbc311a88 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xbc3803b7 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xbc2cc0af skb_pull EXPORT_SYMBOL vmlinux 0xbc3ba868 sync_filesystem EXPORT_SYMBOL vmlinux 0xbc4f4bb6 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0xbc928b5d jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xbc9a85ac ip_frag_next EXPORT_SYMBOL vmlinux 0xbca56e78 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcc32da7 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xbccc9648 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xbccf3fd4 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xbcd392b6 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xbce82d7d xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0xbce8b9a7 dump_skip_to +EXPORT_SYMBOL vmlinux 0xbcefdfc5 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0xbcf427e2 flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xbcfcc558 snd_timer_start EXPORT_SYMBOL vmlinux 0xbd043365 kmem_cache_destroy @@ -10253,23 +10251,26 @@ EXPORT_SYMBOL vmlinux 0xbd1836ce dev_mc_add_global EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0xbd1c8666 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xbd2484f6 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xbd54ef33 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbd3ded16 sock_set_reuseport EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read EXPORT_SYMBOL vmlinux 0xbd724b30 zstd_compress_stream -EXPORT_SYMBOL vmlinux 0xbd7e811e tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xbd8070bb pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock EXPORT_SYMBOL vmlinux 0xbd82a5ba input_unregister_handle EXPORT_SYMBOL vmlinux 0xbd8f4b89 parse_int_array_user EXPORT_SYMBOL vmlinux 0xbdb76432 scsi_rescan_device EXPORT_SYMBOL vmlinux 0xbdb8bffe __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xbdcac14e tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xbdd84325 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xbdfa2132 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp EXPORT_SYMBOL vmlinux 0xbe176213 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xbe1d8fb2 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xbe22d5bd ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xbe345d49 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xbe4aaeba flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xbe4e98ae dcb_getapp EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe5ac976 key_invalidate @@ -10279,71 +10280,71 @@ EXPORT_SYMBOL vmlinux 0xbebfe192 module_put EXPORT_SYMBOL vmlinux 0xbec43e5f tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0xbec7e18f of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xbecd7689 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xbed8c5b1 blk_start_plug EXPORT_SYMBOL vmlinux 0xbed92c8e iov_iter_zero EXPORT_SYMBOL vmlinux 0xbee18806 of_find_node_by_name EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0xbeefec79 fb_get_mode EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf09cb1f tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0xbf41c76d blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xbf478221 inet_sendpage EXPORT_SYMBOL vmlinux 0xbf4af607 cdrom_mode_select EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table EXPORT_SYMBOL vmlinux 0xbf50b4d0 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xbf55a2cc xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5c8ad7 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xbf63971c netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xbf6560b7 mem_map EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0xbf7e4148 dev_set_alias EXPORT_SYMBOL vmlinux 0xbf7e6544 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xbf9101dd netlink_ack EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb31851 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xbfb8f0da udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xbfc5d761 build_skb EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xc015885a build_skb EXPORT_SYMBOL vmlinux 0xc0285d77 try_to_free_buffers EXPORT_SYMBOL vmlinux 0xc0298948 simple_transaction_read EXPORT_SYMBOL vmlinux 0xc03d413b devm_clk_put EXPORT_SYMBOL vmlinux 0xc04e5308 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xc0515c86 netdev_crit -EXPORT_SYMBOL vmlinux 0xc0546f67 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get EXPORT_SYMBOL vmlinux 0xc066544e ns_capable EXPORT_SYMBOL vmlinux 0xc0681519 register_framebuffer -EXPORT_SYMBOL vmlinux 0xc0750fb0 __nlmsg_put EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc097f65f sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xc0a25d46 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xc0a3d317 skb_put EXPORT_SYMBOL vmlinux 0xc0a7521e genphy_aneg_done EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc EXPORT_SYMBOL vmlinux 0xc0c5c1bd dquot_destroy -EXPORT_SYMBOL vmlinux 0xc0c7a941 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0xc0ca51e7 proc_create_data EXPORT_SYMBOL vmlinux 0xc0cbe1c6 pci_select_bars +EXPORT_SYMBOL vmlinux 0xc0ccccc4 genlmsg_put +EXPORT_SYMBOL vmlinux 0xc0cdb32e phy_aneg_done EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0e77642 tcp_child_process EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk 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 0xc0fff241 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc12c4a73 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xc1495704 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc13c13ed xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1575c5d tcp_ioctl EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc16beef3 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xc16db24e xfrm_init_state EXPORT_SYMBOL vmlinux 0xc1713931 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xc17bcc21 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc1847f86 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xc188039b __mdiobus_register EXPORT_SYMBOL vmlinux 0xc18bb14d d_delete EXPORT_SYMBOL vmlinux 0xc192fa5d flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xc199f975 ip_getsockopt EXPORT_SYMBOL vmlinux 0xc19a9121 rproc_alloc -EXPORT_SYMBOL vmlinux 0xc19fe81c noop_qdisc EXPORT_SYMBOL vmlinux 0xc1a47c17 kmalloc_caches EXPORT_SYMBOL vmlinux 0xc1af2cf8 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xc1b6378f inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xc1bfdc9d page_pool_destroy EXPORT_SYMBOL vmlinux 0xc1c28a83 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed @@ -10351,43 +10352,40 @@ EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on EXPORT_SYMBOL vmlinux 0xc2030748 cdev_init EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0xc20f949f neigh_changeaddr EXPORT_SYMBOL vmlinux 0xc2116624 path_is_mountpoint EXPORT_SYMBOL vmlinux 0xc21fb4df gen_replace_estimator EXPORT_SYMBOL vmlinux 0xc22619fe config_item_put EXPORT_SYMBOL vmlinux 0xc228223e mmc_put_card +EXPORT_SYMBOL vmlinux 0xc229ac72 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xc22a5e1c pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout EXPORT_SYMBOL vmlinux 0xc24d8618 dma_alloc_attrs EXPORT_SYMBOL vmlinux 0xc254a0c7 vfs_path_lookup EXPORT_SYMBOL vmlinux 0xc257bb65 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xc26d625b inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xc285b13a ipv4_specific EXPORT_SYMBOL vmlinux 0xc28dd38d folio_wait_bit EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return EXPORT_SYMBOL vmlinux 0xc2b375a1 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xc2b7f2f5 inet6_release EXPORT_SYMBOL vmlinux 0xc2b8eda2 netstamp_needed_key -EXPORT_SYMBOL vmlinux 0xc2bfe0a2 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xc2c944ca blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xc2e1ae1f ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc3080415 security_inet_conn_established EXPORT_SYMBOL vmlinux 0xc30a3cc0 zero_fill_bio EXPORT_SYMBOL vmlinux 0xc3135805 key_validate -EXPORT_SYMBOL vmlinux 0xc3185f4f __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc359d2d6 phy_init_eee -EXPORT_SYMBOL vmlinux 0xc35aa844 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0xc36c5a7e pcim_iounmap EXPORT_SYMBOL vmlinux 0xc37335b0 complete EXPORT_SYMBOL vmlinux 0xc37b3000 max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc37c6548 netlink_unicast EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc3863667 rtnl_configure_link EXPORT_SYMBOL vmlinux 0xc38af621 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer EXPORT_SYMBOL vmlinux 0xc3946098 jbd2_fc_wait_bufs @@ -10397,18 +10395,16 @@ EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb EXPORT_SYMBOL vmlinux 0xc3dfacfa dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xc3e0d971 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xc3e1daff snd_dma_alloc_pages_fallback EXPORT_SYMBOL vmlinux 0xc3f4d51a mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc3f7607f sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xc3fd598d abort_creds -EXPORT_SYMBOL vmlinux 0xc40226da netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xc4076982 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc402479e __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc404a6b2 skb_put EXPORT_SYMBOL vmlinux 0xc41074ff jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4215112 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xc42e1b81 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xc441e229 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xc443f0d9 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xc442cd7c __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0xc449abd6 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp EXPORT_SYMBOL vmlinux 0xc45f46c5 configfs_remove_default_groups @@ -10416,34 +10412,40 @@ EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc478c82b sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xc49959bc napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xc4ae58ce nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc4ce2a5c inet_add_offload EXPORT_SYMBOL vmlinux 0xc4d48d95 d_add -EXPORT_SYMBOL vmlinux 0xc4daaa89 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xc4db3786 input_get_keycode EXPORT_SYMBOL vmlinux 0xc4fadc57 find_inode_nowait EXPORT_SYMBOL vmlinux 0xc50a3ae8 generic_block_bmap EXPORT_SYMBOL vmlinux 0xc5132bb9 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xc52d467e seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xc537f2c8 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xc54104ec skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xc544322d input_free_device EXPORT_SYMBOL vmlinux 0xc555736f __scsi_add_device +EXPORT_SYMBOL vmlinux 0xc556054b vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xc56b763a proc_symlink EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset EXPORT_SYMBOL vmlinux 0xc58262e5 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xc5859ec0 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xc596c521 inet_shutdown +EXPORT_SYMBOL vmlinux 0xc58c5d37 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc59e5b08 snd_card_register EXPORT_SYMBOL vmlinux 0xc5a0ec0e rpmh_write_async -EXPORT_SYMBOL vmlinux 0xc5a4256e __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xc5a4452f can_nice EXPORT_SYMBOL vmlinux 0xc5a67598 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc5a69ee0 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource EXPORT_SYMBOL vmlinux 0xc5aadd13 fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0xc5b1b640 d_genocide EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc EXPORT_SYMBOL vmlinux 0xc5bcd453 bprm_change_interp EXPORT_SYMBOL vmlinux 0xc5c2bd27 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xc5c414c1 dev_add_pack EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user EXPORT_SYMBOL vmlinux 0xc5cbe059 init_pseudo +EXPORT_SYMBOL vmlinux 0xc5da9976 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last @@ -10451,30 +10453,28 @@ EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc60f1a5a vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc632e7b5 netdev_printk EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63c975d tcp_conn_request EXPORT_SYMBOL vmlinux 0xc6455a5b tc6393xb_lcd_set_power EXPORT_SYMBOL vmlinux 0xc658dc03 proc_create_seq_private EXPORT_SYMBOL vmlinux 0xc65e05c8 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66152ef netif_schedule_queue EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc6718e4e follow_down_one EXPORT_SYMBOL vmlinux 0xc6785822 vma_set_file EXPORT_SYMBOL vmlinux 0xc6820daf tty_vhangup EXPORT_SYMBOL vmlinux 0xc685a5c0 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xc68b54ba netlink_broadcast EXPORT_SYMBOL vmlinux 0xc69f0cf4 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle EXPORT_SYMBOL vmlinux 0xc6a23e88 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xc6a2f573 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xc6a3fc96 param_get_ulong +EXPORT_SYMBOL vmlinux 0xc6b12dc5 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xc6c1356e netif_device_detach +EXPORT_SYMBOL vmlinux 0xc6c7b3df tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d261fd pcie_get_readrq EXPORT_SYMBOL vmlinux 0xc6d39f95 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xc6d96aa5 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xc6d97c8a __alloc_skb -EXPORT_SYMBOL vmlinux 0xc6dd6fea rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xc6deafc6 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xc6efae8d padata_alloc_shell EXPORT_SYMBOL vmlinux 0xc6efd2a6 refcount_dec_and_lock_irqsave @@ -10484,34 +10484,27 @@ EXPORT_SYMBOL vmlinux 0xc70e0562 config_item_init_type_name EXPORT_SYMBOL vmlinux 0xc712d79e __starget_for_each_device EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72ad03b dev_set_mac_address EXPORT_SYMBOL vmlinux 0xc72b287e tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xc72ea77b xfrm_init_replay EXPORT_SYMBOL vmlinux 0xc7364d39 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xc74babf9 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xc74e76c2 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xc755dd7a inet_frag_destroy EXPORT_SYMBOL vmlinux 0xc758ebef uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xc75b43b8 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xc760fe56 sock_create_lite EXPORT_SYMBOL vmlinux 0xc767ea6a page_get_link EXPORT_SYMBOL vmlinux 0xc77223f5 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain EXPORT_SYMBOL vmlinux 0xc78650fc param_set_bint -EXPORT_SYMBOL vmlinux 0xc7966d42 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xc7a4c7e9 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ac08e9 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7b36506 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xc7b4273f skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d4194c netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xc7d88d22 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0xc7ead4dc flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7f8fd26 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xc7fd3000 km_policy_notify EXPORT_SYMBOL vmlinux 0xc8061025 phy_loopback -EXPORT_SYMBOL vmlinux 0xc81dd67a sock_bind_add +EXPORT_SYMBOL vmlinux 0xc80eb643 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0xc82b7ef3 __destroy_inode EXPORT_SYMBOL vmlinux 0xc82bd1a0 md_unregister_thread EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape @@ -10520,30 +10513,35 @@ EXPORT_SYMBOL vmlinux 0xc83a0715 readahead_expand EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8754232 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88ee8b6 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xc88f19c4 filp_open +EXPORT_SYMBOL vmlinux 0xc89071bd inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc89b97bb blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread EXPORT_SYMBOL vmlinux 0xc8aaf7ef _copy_from_iter +EXPORT_SYMBOL vmlinux 0xc8af9855 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8c24bd9 tcp_mmap +EXPORT_SYMBOL vmlinux 0xc8be36e3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc8cf99ae kfree_skb_partial EXPORT_SYMBOL vmlinux 0xc8cffb24 iterate_supers_type EXPORT_SYMBOL vmlinux 0xc8d0226f keyring_clear -EXPORT_SYMBOL vmlinux 0xc8db0760 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xc8df5bbd flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xc8e173ed _find_next_bit_le -EXPORT_SYMBOL vmlinux 0xc8fbafe0 dst_dev_put +EXPORT_SYMBOL vmlinux 0xc8fa5ee4 mr_table_alloc EXPORT_SYMBOL vmlinux 0xc8fbb81b of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xc90578f2 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xc913d895 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc91d73f4 blk_integrity_register EXPORT_SYMBOL vmlinux 0xc924678a __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0xc94f2f75 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xc95f2021 backlight_device_unregister EXPORT_SYMBOL vmlinux 0xc96170f1 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc96ca74b twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xc96cc76d dcb_setapp +EXPORT_SYMBOL vmlinux 0xc97110ed netdev_err EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc976a9a9 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xc97e45a5 d_find_any_alias @@ -10561,32 +10559,27 @@ EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit EXPORT_SYMBOL vmlinux 0xca1b952a blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xca1ba2c3 follow_up +EXPORT_SYMBOL vmlinux 0xca1f8cd9 proto_unregister EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca3c9c3b tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xca25fc26 skb_condense EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4b7eae dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xca4cb2b5 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0xca4e3c41 udp_sendmsg EXPORT_SYMBOL vmlinux 0xca4faf2d dev_uc_add EXPORT_SYMBOL vmlinux 0xca50c2e1 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xca513ca8 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible EXPORT_SYMBOL vmlinux 0xca618e62 submit_bh EXPORT_SYMBOL vmlinux 0xca63d8a3 _dev_crit +EXPORT_SYMBOL vmlinux 0xca67d1b4 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xca77bdbf kmalloc_large_node EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xca7fe704 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9b7903 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xcaa43d6d seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xcaaa0de7 do_map_probe EXPORT_SYMBOL vmlinux 0xcadf3dd4 override_creds -EXPORT_SYMBOL vmlinux 0xcaf6113d __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xcaf62c62 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xcb00989e kernel_accept EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu EXPORT_SYMBOL vmlinux 0xcb2923bb vme_irq_generate -EXPORT_SYMBOL vmlinux 0xcb29c85a skb_dequeue EXPORT_SYMBOL vmlinux 0xcb304007 dquot_drop EXPORT_SYMBOL vmlinux 0xcb36c1c7 iov_iter_advance EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier @@ -10595,23 +10588,20 @@ EXPORT_SYMBOL vmlinux 0xcb6b6827 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0xcb6c506f _dev_err EXPORT_SYMBOL vmlinux 0xcb77a31d zstd_is_error -EXPORT_SYMBOL vmlinux 0xcb885df8 skb_vlan_push EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcb9e1dbf sk_reset_timer EXPORT_SYMBOL vmlinux 0xcba6f79e validate_slab_cache EXPORT_SYMBOL vmlinux 0xcbb075de block_dirty_folio EXPORT_SYMBOL vmlinux 0xcbb348d7 single_open_size +EXPORT_SYMBOL vmlinux 0xcbb4d0ad neigh_table_init +EXPORT_SYMBOL vmlinux 0xcbbc1d72 udp_skb_destructor EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbbfe642 netdev_change_features -EXPORT_SYMBOL vmlinux 0xcbca789d xfrm_state_add -EXPORT_SYMBOL vmlinux 0xcbccd69e tcp_time_wait +EXPORT_SYMBOL vmlinux 0xcbd0eddb sock_kfree_s EXPORT_SYMBOL vmlinux 0xcbd12fb9 of_iomap +EXPORT_SYMBOL vmlinux 0xcbd30ec2 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbf3e306 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0xcbf7cc72 pci_scan_single_device EXPORT_SYMBOL vmlinux 0xcc07665c snd_pcm_mmap_data EXPORT_SYMBOL vmlinux 0xcc180c75 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xcc1a5328 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc2bd745 param_get_uint EXPORT_SYMBOL vmlinux 0xcc2de794 vme_bus_type @@ -10624,24 +10614,23 @@ EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info EXPORT_SYMBOL vmlinux 0xcc81f3a7 jbd2_journal_start EXPORT_SYMBOL vmlinux 0xcc846ad3 set_security_override -EXPORT_SYMBOL vmlinux 0xcc867a2b __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xcc8cb282 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xcc8f1c1a nand_ecc_prepare_io_req +EXPORT_SYMBOL vmlinux 0xcca38f40 napi_gro_receive EXPORT_SYMBOL vmlinux 0xccab4548 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xccbbb149 tcp_req_err +EXPORT_SYMBOL vmlinux 0xccb2597a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xccb3331b mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xccc38749 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xcccb8504 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xcccdbedf fb_set_var EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce40ee3 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xcce46306 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xccebedb0 tcp_gro_complete EXPORT_SYMBOL vmlinux 0xccfb1c02 tty_unthrottle EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xccfd4979 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd0d1bae security_path_unlink -EXPORT_SYMBOL vmlinux 0xcd2500f4 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd2abc69 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0xcd2df254 bio_copy_data_iter @@ -10652,53 +10641,50 @@ EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr EXPORT_SYMBOL vmlinux 0xcd79b159 twl6040_power EXPORT_SYMBOL vmlinux 0xcd7ffab9 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xcd8bdebb bpf_link_put EXPORT_SYMBOL vmlinux 0xcd8ccb5b pci_pme_active -EXPORT_SYMBOL vmlinux 0xcd993c85 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xcda22b04 napi_enable -EXPORT_SYMBOL vmlinux 0xcda364d4 skb_clone -EXPORT_SYMBOL vmlinux 0xcdb871b4 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xcd982ee3 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xcdb683cd security_unix_may_send EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc6cc33 ___pskb_trim EXPORT_SYMBOL vmlinux 0xcdc94d3b jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xcde114de mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdfde795 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xce0399d5 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xce14192b lock_sock_nested +EXPORT_SYMBOL vmlinux 0xce1a902c tcp_read_skb +EXPORT_SYMBOL vmlinux 0xce24b1a9 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake EXPORT_SYMBOL vmlinux 0xce2f8d40 zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xce34038f bdev_end_io_acct EXPORT_SYMBOL vmlinux 0xce3520f2 rproc_put EXPORT_SYMBOL vmlinux 0xce3b32d2 put_disk EXPORT_SYMBOL vmlinux 0xce3c235d bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce456f7f __skb_recv_udp EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5651d7 sock_set_mark EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5c97e1 fget -EXPORT_SYMBOL vmlinux 0xce674d4d netdev_alert EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce86cefa follow_pfn EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceae510f vmalloc_to_page EXPORT_SYMBOL vmlinux 0xceb8be39 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xcec6dec3 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xcec80af2 snd_card_free EXPORT_SYMBOL vmlinux 0xcedb53f0 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xcedbb937 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xcede275c memremap EXPORT_SYMBOL vmlinux 0xcee93c95 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xceeec69b cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xcef2e4db rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list EXPORT_SYMBOL vmlinux 0xcf19abbd mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0xcf1fd0ea inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xcf1fda5b xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xcf211bf9 proto_register +EXPORT_SYMBOL vmlinux 0xcf283925 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xcf2c78a1 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0xcf384a96 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xcf45c094 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0xcf45feb5 uart_remove_one_port EXPORT_SYMBOL vmlinux 0xcf572ec2 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xcf586f5c kfree_skb_reason EXPORT_SYMBOL vmlinux 0xcf62c09f __dquot_transfer EXPORT_SYMBOL vmlinux 0xcf62de85 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only @@ -10706,130 +10692,130 @@ EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfb20f12 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xcfbe287f eth_type_trans EXPORT_SYMBOL vmlinux 0xcfd1eb8c snd_pci_quirk_lookup EXPORT_SYMBOL vmlinux 0xcfd57899 __of_get_address +EXPORT_SYMBOL vmlinux 0xcfdb3101 neigh_parms_release EXPORT_SYMBOL vmlinux 0xcfe53bcb pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xcfea6d90 udp_poll EXPORT_SYMBOL vmlinux 0xd00f312e ptp_clock_index EXPORT_SYMBOL vmlinux 0xd0219de6 __mdiobus_read EXPORT_SYMBOL vmlinux 0xd022d558 irq_domain_set_info EXPORT_SYMBOL vmlinux 0xd02aa6f4 bio_uninit -EXPORT_SYMBOL vmlinux 0xd032c981 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xd033b765 show_init_ipc_ns EXPORT_SYMBOL vmlinux 0xd03616b0 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0xd03b0a1f mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xd03eb5e9 make_kgid EXPORT_SYMBOL vmlinux 0xd047f5fd pps_register_source EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04e8782 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xd04d9350 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xd05525f4 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xd057d030 pci_dev_get EXPORT_SYMBOL vmlinux 0xd05d3ebe jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xd05d77f9 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd06dcae7 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0xd0707963 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd080fdde scm_detach_fds EXPORT_SYMBOL vmlinux 0xd0832c96 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xd0872547 neigh_lookup EXPORT_SYMBOL vmlinux 0xd0a7d758 may_umount -EXPORT_SYMBOL vmlinux 0xd0a7f275 netdev_notify_peers EXPORT_SYMBOL vmlinux 0xd0b99b4c param_set_charp EXPORT_SYMBOL vmlinux 0xd0c69e13 do_splice_direct EXPORT_SYMBOL vmlinux 0xd0dca570 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xd0e79532 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xd0e7edd2 sockopt_lock_sock EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd10952d8 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xd0f41665 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0xd10ba42b scm_fp_dup EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd118f507 km_query EXPORT_SYMBOL vmlinux 0xd11fc54f __do_once_done +EXPORT_SYMBOL vmlinux 0xd127bd09 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd139f33b block_write_full_page +EXPORT_SYMBOL vmlinux 0xd14308b6 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd16413d0 ip6_xmit EXPORT_SYMBOL vmlinux 0xd172109a gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xd1b01222 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0xd1b50472 md_check_recovery EXPORT_SYMBOL vmlinux 0xd1d335a9 snd_pcm_hw_constraint_minmax EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1de3daf fget_raw EXPORT_SYMBOL vmlinux 0xd1eac6c2 simple_link EXPORT_SYMBOL vmlinux 0xd1f64e8a i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xd201712e blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down EXPORT_SYMBOL vmlinux 0xd2067cea starget_for_each_device EXPORT_SYMBOL vmlinux 0xd209dba3 flush_signals -EXPORT_SYMBOL vmlinux 0xd22e96b4 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xd234e0ed mdiobb_read EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked EXPORT_SYMBOL vmlinux 0xd253274e snd_dma_alloc_dir_pages EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd2595cf6 xsk_tx_completed EXPORT_SYMBOL vmlinux 0xd25994e0 folio_write_one EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd278c824 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xd26261c2 poll_initwait EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd27e44e1 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xd27e84fd jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel -EXPORT_SYMBOL vmlinux 0xd29c2045 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xd299e1dd xsk_tx_completed EXPORT_SYMBOL vmlinux 0xd2a0dade bio_init -EXPORT_SYMBOL vmlinux 0xd2cdc8d7 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd2d0d7a0 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xd2d6434b __netif_rx +EXPORT_SYMBOL vmlinux 0xd2a9cfab nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used -EXPORT_SYMBOL vmlinux 0xd2d9bc22 kernel_getsockname EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e0f3b1 netdev_features_change EXPORT_SYMBOL vmlinux 0xd2ed3760 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd306f6d5 netif_receive_skb EXPORT_SYMBOL vmlinux 0xd3139fdd cdev_alloc -EXPORT_SYMBOL vmlinux 0xd319e7c7 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xd3195d28 inet_addr_type EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get EXPORT_SYMBOL vmlinux 0xd333600b jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xd33969a2 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xd33ca703 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xd34950b0 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string EXPORT_SYMBOL vmlinux 0xd363d21c _copy_to_iter EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd37cd0f7 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xd3828003 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xd387fe0c sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xd391d1e0 set_capacity EXPORT_SYMBOL vmlinux 0xd394b897 iget5_locked EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3a74a6e ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xd3a51991 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd3d0882e netdev_alert EXPORT_SYMBOL vmlinux 0xd3db5162 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xd3e13e87 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xd3e1757e xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xd3e52c54 of_clk_get -EXPORT_SYMBOL vmlinux 0xd3f0b08c dev_alloc_name EXPORT_SYMBOL vmlinux 0xd3f3776d follow_down EXPORT_SYMBOL vmlinux 0xd3f4e493 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xd3f8d867 udp6_set_csum EXPORT_SYMBOL vmlinux 0xd4039337 max8925_bulk_write EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd40c4b3e d_alloc_name EXPORT_SYMBOL vmlinux 0xd40e92c9 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xd41e6ec6 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xd4275859 sock_cmsg_send EXPORT_SYMBOL vmlinux 0xd43d1c5d dquot_commit EXPORT_SYMBOL vmlinux 0xd448fff4 of_node_put +EXPORT_SYMBOL vmlinux 0xd44b9642 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xd44d76c6 of_lpddr2_get_info -EXPORT_SYMBOL vmlinux 0xd44f5ec7 dev_change_flags +EXPORT_SYMBOL vmlinux 0xd4540f1f udp_seq_ops EXPORT_SYMBOL vmlinux 0xd4547a57 mmc_of_parse EXPORT_SYMBOL vmlinux 0xd4552e99 snd_pcm_new_internal EXPORT_SYMBOL vmlinux 0xd459ce6e alloc_mdio_bitbang EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd461b4b9 netdev_update_features EXPORT_SYMBOL vmlinux 0xd4636ddb device_add_disk EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd4976866 __vfs_setxattr EXPORT_SYMBOL vmlinux 0xd49c718f generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd49fb15d skb_seq_read EXPORT_SYMBOL vmlinux 0xd4a353e8 phy_advertise_supported EXPORT_SYMBOL vmlinux 0xd4aa9979 bd_abort_claiming EXPORT_SYMBOL vmlinux 0xd4b7aeae mmc_can_erase EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4cea536 dm_table_get_size EXPORT_SYMBOL vmlinux 0xd4d6138d __find_get_block -EXPORT_SYMBOL vmlinux 0xd4d94750 dev_add_pack -EXPORT_SYMBOL vmlinux 0xd4e04b99 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo EXPORT_SYMBOL vmlinux 0xd4e9ad84 mii_link_ok EXPORT_SYMBOL vmlinux 0xd4f607c3 setup_new_exec @@ -10837,8 +10823,9 @@ EXPORT_SYMBOL vmlinux 0xd503c458 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0xd50ecc81 param_set_long EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52dd536 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd52d75c5 __scm_destroy EXPORT_SYMBOL vmlinux 0xd533650f dentry_create +EXPORT_SYMBOL vmlinux 0xd5392461 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xd5402d13 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xd54dcb15 setup_arg_pages EXPORT_SYMBOL vmlinux 0xd54fb91d pci_disable_msix @@ -10846,14 +10833,11 @@ EXPORT_SYMBOL vmlinux 0xd575c9fb key_payload_reserve EXPORT_SYMBOL vmlinux 0xd57719b1 pci_get_class EXPORT_SYMBOL vmlinux 0xd580f9b0 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xd58370c7 inet6_register_protosw EXPORT_SYMBOL vmlinux 0xd5889a54 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xd5977a7b of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xd5b32567 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xd5b34bf1 sock_create_lite EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state EXPORT_SYMBOL vmlinux 0xd5b9c2fb snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0xd5eb667f xfrm_policy_insert EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0xd607190d dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k @@ -10863,18 +10847,19 @@ EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract EXPORT_SYMBOL vmlinux 0xd6595a54 snd_pcm_hw_refine EXPORT_SYMBOL vmlinux 0xd664f3b5 __bforget +EXPORT_SYMBOL vmlinux 0xd6719ce1 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xd6726b59 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd6758b8a security_inode_copy_up EXPORT_SYMBOL vmlinux 0xd6852102 rawnand_sw_hamming_init EXPORT_SYMBOL vmlinux 0xd687358b fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6958ad7 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xd69af250 dev_get_flags +EXPORT_SYMBOL vmlinux 0xd6a68a47 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6aee084 update_region -EXPORT_SYMBOL vmlinux 0xd6b4cdca reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6bd9515 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xd6cbe5a4 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xd6d768eb inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd6df82fa phy_mac_interrupt EXPORT_SYMBOL vmlinux 0xd6e01215 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc @@ -10888,60 +10873,59 @@ EXPORT_SYMBOL vmlinux 0xd73324f5 rawnand_dt_parse_gpio_cs EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd742d8be security_sk_clone EXPORT_SYMBOL vmlinux 0xd753b674 seq_vprintf -EXPORT_SYMBOL vmlinux 0xd763ba82 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf +EXPORT_SYMBOL vmlinux 0xd78dfea0 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xd78eaa3e scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xd7936c8d fqdir_init EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load EXPORT_SYMBOL vmlinux 0xd7c0b12d block_invalidate_folio EXPORT_SYMBOL vmlinux 0xd7c161bc copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xd7c17b7e skb_recv_datagram EXPORT_SYMBOL vmlinux 0xd7c8ed8b dquot_quota_sync EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete EXPORT_SYMBOL vmlinux 0xd7d6ebc0 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler EXPORT_SYMBOL vmlinux 0xd7f70248 block_write_begin -EXPORT_SYMBOL vmlinux 0xd7f947f8 sock_kmalloc EXPORT_SYMBOL vmlinux 0xd8048606 is_free_buddy_page -EXPORT_SYMBOL vmlinux 0xd8064ccf __scm_destroy EXPORT_SYMBOL vmlinux 0xd80af28f pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xd816cfef security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xd81a37ca rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd82c0139 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0xd83dbcfc snd_pcm_stop +EXPORT_SYMBOL vmlinux 0xd840ba7b dev_load EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc +EXPORT_SYMBOL vmlinux 0xd8651131 nf_log_unregister EXPORT_SYMBOL vmlinux 0xd866a301 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xd86acfa3 neigh_xmit EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd8763d87 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xd888f2df xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0xd8a7d2ae tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b053ce read_code EXPORT_SYMBOL vmlinux 0xd8b1a38e from_kprojid EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8b7b0d7 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xd8c021fe key_move EXPORT_SYMBOL vmlinux 0xd8d45b40 mmc_start_request EXPORT_SYMBOL vmlinux 0xd8da1681 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0xd8e2b4b2 key_type_keyring EXPORT_SYMBOL vmlinux 0xd8eff777 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xd8ff8197 skb_find_text EXPORT_SYMBOL vmlinux 0xd903b50f blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0xd91102ba mode_strip_sgid EXPORT_SYMBOL vmlinux 0xd9137984 mark_page_accessed EXPORT_SYMBOL vmlinux 0xd91a4dcf param_ops_ulong EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92f159e xfrm_lookup +EXPORT_SYMBOL vmlinux 0xd92796a1 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xd96559fa security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0xd96a93e5 param_set_ushort EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages EXPORT_SYMBOL vmlinux 0xd9863122 param_ops_bool -EXPORT_SYMBOL vmlinux 0xd99a8c88 inet_ioctl +EXPORT_SYMBOL vmlinux 0xd996b457 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xd9a24e77 km_policy_notify +EXPORT_SYMBOL vmlinux 0xd9a96137 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xd9aec92a dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0xd9b75409 ac97_bus_type EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled @@ -10952,21 +10936,20 @@ EXPORT_SYMBOL vmlinux 0xd9ceba2b mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9dcb355 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xd9f9aa3d of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0xda07e9bb nand_ecc_sw_hamming_cleanup_ctx EXPORT_SYMBOL vmlinux 0xda09dc6f fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0xda0ae844 of_get_compatible_child EXPORT_SYMBOL vmlinux 0xda11fa23 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xda145877 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xda16a4de simple_rmdir EXPORT_SYMBOL vmlinux 0xda20d693 param_get_charp +EXPORT_SYMBOL vmlinux 0xda267c5d icmp_ndo_send EXPORT_SYMBOL vmlinux 0xda334ad6 ps2_command EXPORT_SYMBOL vmlinux 0xda3817a3 __nla_put EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda56cc79 mmc_is_req_done EXPORT_SYMBOL vmlinux 0xda570425 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xda5b454e napi_get_frags +EXPORT_SYMBOL vmlinux 0xda6259c0 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0xda68fe3d inode_newsize_ok EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0xda960992 dma_unmap_page_attrs @@ -10974,162 +10957,158 @@ EXPORT_SYMBOL vmlinux 0xdaa842b1 snd_jack_report EXPORT_SYMBOL vmlinux 0xdaabef8b input_setup_polling EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacc1324 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xdad6c760 neigh_event_ns EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae09408 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xdae79a3e put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf EXPORT_SYMBOL vmlinux 0xdaf86cfe page_pool_release_page -EXPORT_SYMBOL vmlinux 0xdaf8d3db xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xdafa9fda vga_client_register EXPORT_SYMBOL vmlinux 0xdb0038ed i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xdb0611ab kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xdb0deba6 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xdb308b5b xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xdb3915c9 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xdb43a1ae __free_pages EXPORT_SYMBOL vmlinux 0xdb475240 kern_path EXPORT_SYMBOL vmlinux 0xdb4be312 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xdb4ed01e xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0xdb51e5fa __nla_put_64bit EXPORT_SYMBOL vmlinux 0xdb5ba103 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xdb67de7c arp_create EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb6d9b19 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0xdb753622 param_ops_string EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit EXPORT_SYMBOL vmlinux 0xdb83358f unregister_console -EXPORT_SYMBOL vmlinux 0xdb85a7ad inet_del_offload EXPORT_SYMBOL vmlinux 0xdbaa0d47 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xdbacaa1a bdi_register EXPORT_SYMBOL vmlinux 0xdbbdbaa4 pci_add_new_bus EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbd2a41c phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xdbcaff34 __skb_pad +EXPORT_SYMBOL vmlinux 0xdbcc9631 free_task EXPORT_SYMBOL vmlinux 0xdbdc7eb0 snd_power_wait -EXPORT_SYMBOL vmlinux 0xdbdcfdf5 ip6_xmit EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe36638 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xdbf367ac inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xdbf8a133 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xdbfc4bd1 is_nd_btt EXPORT_SYMBOL vmlinux 0xdbfdc33a blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdc0cd323 qdisc_reset EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1b5489 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xdc1fed43 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xdc24a6a7 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xdc2bea1d sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xdc30ba41 ip_local_deliver EXPORT_SYMBOL vmlinux 0xdc3ee7be __inc_node_page_state EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc43f140 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xdc442051 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc4fdd46 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xdc5ead9d bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xdc9fc793 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xdcbd3118 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xdcbf86ec skb_expand_head EXPORT_SYMBOL vmlinux 0xdcc51eea amba_request_regions EXPORT_SYMBOL vmlinux 0xdcd0da5f devm_kvasprintf EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress EXPORT_SYMBOL vmlinux 0xdce74e19 __mmc_claim_host EXPORT_SYMBOL vmlinux 0xdceeb799 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xdcf537d4 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd1fd975 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xdd176a2d netdev_printk EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd287994 skb_vlan_untag EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create EXPORT_SYMBOL vmlinux 0xdd41e9fa set_anon_super_fc EXPORT_SYMBOL vmlinux 0xdd4d1b19 __register_nls EXPORT_SYMBOL vmlinux 0xdd5288ec put_watch_queue -EXPORT_SYMBOL vmlinux 0xdd57c1ab skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xdd5aaa35 phy_start_cable_test EXPORT_SYMBOL vmlinux 0xdd745464 cancel_work +EXPORT_SYMBOL vmlinux 0xdd7a42ca in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd7f55bd arp_xmit EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0xdd838f68 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8be17a sock_edemux +EXPORT_SYMBOL vmlinux 0xdd87772e nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xdda1b7ab dentry_open +EXPORT_SYMBOL vmlinux 0xddb98b86 consume_skb EXPORT_SYMBOL vmlinux 0xddd8b0ff registered_fb EXPORT_SYMBOL vmlinux 0xdde50d44 textsearch_register EXPORT_SYMBOL vmlinux 0xddede27e page_symlink -EXPORT_SYMBOL vmlinux 0xddfc0efd qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xde2e57f8 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xddee0c29 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xde3bf4a6 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xde48f8d9 param_ops_ushort EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xde5e50cb inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xde610488 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xde5ebc67 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xde6612aa jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xde707243 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xde803b03 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xde81f822 dev_addr_add -EXPORT_SYMBOL vmlinux 0xde914780 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xde8f146f __sk_dst_check +EXPORT_SYMBOL vmlinux 0xde914c47 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xde9eb9e7 snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0xdeb4616e __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xdeb7d714 ip_defrag EXPORT_SYMBOL vmlinux 0xdec9d2b2 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xded00d2c seg6_push_hmac EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdefd8083 register_md_personality EXPORT_SYMBOL vmlinux 0xdf079ee7 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xdf0fe882 param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf292ec9 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf30535e cdev_del EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5ea77a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xdf6c3e37 pneigh_enqueue EXPORT_SYMBOL vmlinux 0xdf8781fc devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xdf8b70cc sk_error_report EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfd15997 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type EXPORT_SYMBOL vmlinux 0xdfdac7cf param_set_int -EXPORT_SYMBOL vmlinux 0xdfe3c7ca km_policy_expired EXPORT_SYMBOL vmlinux 0xdfed6e5b dma_free_attrs -EXPORT_SYMBOL vmlinux 0xdff664e5 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes EXPORT_SYMBOL vmlinux 0xe0082929 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xe034cd6c unix_destruct_scm EXPORT_SYMBOL vmlinux 0xe03a97c7 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 EXPORT_SYMBOL vmlinux 0xe050f016 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xe0598ede sockfd_lookup EXPORT_SYMBOL vmlinux 0xe0617a8b snd_ctl_rename_id EXPORT_SYMBOL vmlinux 0xe0771b92 of_match_node +EXPORT_SYMBOL vmlinux 0xe07eae5b tcp_read_sock EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0a0edc3 wake_up_process +EXPORT_SYMBOL vmlinux 0xe0a38ea9 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xe0ad1c43 dquot_get_state +EXPORT_SYMBOL vmlinux 0xe0aeeef8 udp_lib_get_port EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco EXPORT_SYMBOL vmlinux 0xe0cfb2b8 param_get_hexint +EXPORT_SYMBOL vmlinux 0xe0d1c9d5 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xe0e15a0a __break_lease EXPORT_SYMBOL vmlinux 0xe0f115e7 param_get_long -EXPORT_SYMBOL vmlinux 0xe102cc3e udp_seq_stop -EXPORT_SYMBOL vmlinux 0xe1048ed2 neigh_table_init -EXPORT_SYMBOL vmlinux 0xe10f86e3 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe135190c tcp_parse_options +EXPORT_SYMBOL vmlinux 0xe139b2f2 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask EXPORT_SYMBOL vmlinux 0xe193625a blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0xe19cdab1 of_get_property EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1bd278e audit_log EXPORT_SYMBOL vmlinux 0xe1c9b3c5 contig_page_data EXPORT_SYMBOL vmlinux 0xe1cd33cc module_layout EXPORT_SYMBOL vmlinux 0xe1d57e9b param_set_ulong EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format EXPORT_SYMBOL vmlinux 0xe2059dda pci_match_id EXPORT_SYMBOL vmlinux 0xe205dd09 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0xe2077415 vlan_vid_del EXPORT_SYMBOL vmlinux 0xe20ceb62 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xe2136542 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xe21498b5 nd_region_to_nstype @@ -11137,17 +11116,15 @@ EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum EXPORT_SYMBOL vmlinux 0xe2318bf5 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe2392d6e __udp_disconnect +EXPORT_SYMBOL vmlinux 0xe24f68f9 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe265a499 qdisc_hash_del EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark EXPORT_SYMBOL vmlinux 0xe26e6e40 generic_write_checks_count EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe27bb019 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xe295ebe1 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xe2c4da33 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xe2b12982 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d66b75 xfrm_state_free EXPORT_SYMBOL vmlinux 0xe2e10739 devm_iounmap EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user EXPORT_SYMBOL vmlinux 0xe2ee00b5 kiocb_set_cancel_fn @@ -11158,124 +11135,131 @@ EXPORT_SYMBOL vmlinux 0xe3218bc2 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0xe32729b2 nla_put EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe33eeccd register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe3418bb6 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xe34593aa tty_check_change EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe3490481 qdisc_reset EXPORT_SYMBOL vmlinux 0xe3509b8f dquot_file_open EXPORT_SYMBOL vmlinux 0xe35ace4b crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xe381f428 tcp_prot EXPORT_SYMBOL vmlinux 0xe387acb9 pagecache_get_page EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3b20b1a inet_dgram_connect EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region 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 0xe40a580f ps2_init -EXPORT_SYMBOL vmlinux 0xe40b096f skb_queue_tail EXPORT_SYMBOL vmlinux 0xe40d965d set_create_files_as EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xe457e8e0 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe44cb194 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe45a7379 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xe4632e02 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xe4682c10 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xe4720b7a sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xe472ae19 call_usermodehelper_exec EXPORT_SYMBOL vmlinux 0xe473c8b4 vga_get -EXPORT_SYMBOL vmlinux 0xe47827cc netif_carrier_off +EXPORT_SYMBOL vmlinux 0xe48ad9b4 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xe4a8d570 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0xe4bb5453 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xe4bd767a snd_pcm_lib_preallocate_pages EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid EXPORT_SYMBOL vmlinux 0xe4d0e983 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xe4e21749 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xe4f49e9e tcp_close +EXPORT_SYMBOL vmlinux 0xe512a3a9 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xe515c8e5 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe528e624 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xe532844b tty_kref_put EXPORT_SYMBOL vmlinux 0xe5473ecf mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0xe557320e vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe55898eb __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xe5645714 security_binder_transfer_file 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 0xe58e8d4f vfs_get_fsid EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5925645 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xe5a61e03 unregister_shrinker EXPORT_SYMBOL vmlinux 0xe5bd2620 of_root EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c8f0de inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xe5d7a698 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe5e174b9 sock_gettstamp EXPORT_SYMBOL vmlinux 0xe5e1f3d4 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xe606769f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe608690d sock_i_uid +EXPORT_SYMBOL vmlinux 0xe60ba0e8 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xe61918cf param_set_byte EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xe64ffc36 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xe6641393 write_inode_now EXPORT_SYMBOL vmlinux 0xe66d48d4 send_sig_mceerr EXPORT_SYMBOL vmlinux 0xe674a3b6 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0xe679a34f ip6_frag_next -EXPORT_SYMBOL vmlinux 0xe6878cfc tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xe67e04cc netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xe68803d4 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size EXPORT_SYMBOL vmlinux 0xe6950079 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xe6b55390 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xe6beb891 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d54710 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct EXPORT_SYMBOL vmlinux 0xe6e1c5d7 phy_find_first +EXPORT_SYMBOL vmlinux 0xe6e273b4 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xe6e31809 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0xe6fc78a8 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xe6fd941a phy_get_eee_err EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv EXPORT_SYMBOL vmlinux 0xe713ef17 hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0xe734b6f9 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe72b28c0 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xe731c2a7 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0xe74015e0 ndisc_ns_create EXPORT_SYMBOL vmlinux 0xe74f4485 flush_dcache_page EXPORT_SYMBOL vmlinux 0xe7559720 inode_init_always +EXPORT_SYMBOL vmlinux 0xe76c39d0 sock_init_data_uid EXPORT_SYMBOL vmlinux 0xe771ea17 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xe78f7a9f flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xe7a37172 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe7bd7277 nf_log_unset +EXPORT_SYMBOL vmlinux 0xe7c32d5a tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next EXPORT_SYMBOL vmlinux 0xe7dc4a0f __check_sticky +EXPORT_SYMBOL vmlinux 0xe7e3e615 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths EXPORT_SYMBOL vmlinux 0xe7fe45af snd_pcm_hw_rule_add EXPORT_SYMBOL vmlinux 0xe802b0cc of_get_nand_ecc_user_config EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0xe82b5fd0 snd_compr_free_pages -EXPORT_SYMBOL vmlinux 0xe82e27ad ethtool_op_get_link EXPORT_SYMBOL vmlinux 0xe83168a8 pci_find_next_bus EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub EXPORT_SYMBOL vmlinux 0xe864e709 path_put EXPORT_SYMBOL vmlinux 0xe86bbedd try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xe88827d7 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xe8921785 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0xe89d8d0f inode_dio_wait EXPORT_SYMBOL vmlinux 0xe8a1e258 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe8ad96da brioctl_set EXPORT_SYMBOL vmlinux 0xe8b244e5 misc_deregister EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision EXPORT_SYMBOL vmlinux 0xe8bd1544 of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0xe8be7a6e set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xe8c381a0 udp_poll EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len EXPORT_SYMBOL vmlinux 0xe8d970fc genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0xe8f42d8c irq_stat EXPORT_SYMBOL vmlinux 0xe90cec4e bio_put -EXPORT_SYMBOL vmlinux 0xe9137076 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe915cb46 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xe9173ed9 snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0xe9195ac7 default_qdisc_ops EXPORT_SYMBOL vmlinux 0xe91b2670 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write -EXPORT_SYMBOL vmlinux 0xe932c55a eth_gro_complete EXPORT_SYMBOL vmlinux 0xe9331371 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xe9359a99 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xe937f2b2 sock_edemux EXPORT_SYMBOL vmlinux 0xe94eb0c2 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe957ca6a __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xe9628ce8 sort_r EXPORT_SYMBOL vmlinux 0xe9701a24 pci_release_region -EXPORT_SYMBOL vmlinux 0xe998bad4 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe9746c4c inet_frag_kill +EXPORT_SYMBOL vmlinux 0xe97fe097 __icmp_send EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0xe9a2f5ea ns_capable_setid EXPORT_SYMBOL vmlinux 0xe9a71a71 input_set_capability @@ -11288,41 +11272,41 @@ EXPORT_SYMBOL vmlinux 0xea122343 dcache_dir_open EXPORT_SYMBOL vmlinux 0xea23055b __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3e8f3c dev_set_allmulti EXPORT_SYMBOL vmlinux 0xea3f01cd iov_iter_init EXPORT_SYMBOL vmlinux 0xea57d7ee scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xea598c9a ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xea5afc7f pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xea6285ef phy_set_asym_pause EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea7987f1 key_update EXPORT_SYMBOL vmlinux 0xea7c72b9 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xea828a93 skb_clone_sk EXPORT_SYMBOL vmlinux 0xeaa64b85 scsi_device_resume EXPORT_SYMBOL vmlinux 0xeaaa0ee4 mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0xeab19923 input_event -EXPORT_SYMBOL vmlinux 0xeab68e0d rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0xeadc9846 generic_listxattr -EXPORT_SYMBOL vmlinux 0xeaf744f8 nf_log_unregister EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb1d15da tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xeb260991 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xeb2c59d3 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xeb3120ec pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb53178a crc8 EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r EXPORT_SYMBOL vmlinux 0xeb5888a2 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xeb6e7301 inet_recvmsg EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xeb74cc74 tcp_read_done EXPORT_SYMBOL vmlinux 0xeb806b92 do_SAK EXPORT_SYMBOL vmlinux 0xeb837e30 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xeb83d090 unix_get_socket EXPORT_SYMBOL vmlinux 0xeb8de46a scsi_partsize +EXPORT_SYMBOL vmlinux 0xeb90fbad xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xeb915d6c bdi_unregister +EXPORT_SYMBOL vmlinux 0xeb923ad2 km_new_mapping +EXPORT_SYMBOL vmlinux 0xeb9780f5 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint EXPORT_SYMBOL vmlinux 0xeba5fa2e fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0xebac8ea5 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xebb15e3d inc_node_state +EXPORT_SYMBOL vmlinux 0xebb30eeb sk_wait_data EXPORT_SYMBOL vmlinux 0xebdd8e94 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xebe22b15 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0xebe632db zstd_decompress_dctx @@ -11330,53 +11314,63 @@ EXPORT_SYMBOL vmlinux 0xebefafa9 pps_unregister_source EXPORT_SYMBOL vmlinux 0xebf22791 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xebf58090 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xebf72ca7 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xebfba190 scsi_host_put EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high EXPORT_SYMBOL vmlinux 0xec19c8de mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xec3124bf mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xec3345ed con_is_bound EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead EXPORT_SYMBOL vmlinux 0xec41e133 vme_irq_free +EXPORT_SYMBOL vmlinux 0xec47afda inet_stream_ops EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5b1e65 poll_freewait +EXPORT_SYMBOL vmlinux 0xec5c6f27 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0xec6726b0 kernel_write +EXPORT_SYMBOL vmlinux 0xec71deb5 napi_gro_flush EXPORT_SYMBOL vmlinux 0xec7d2b67 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xec807e00 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xec8083bb configfs_register_group -EXPORT_SYMBOL vmlinux 0xec855c59 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xec89ba75 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xec9815ca eth_get_headlen EXPORT_SYMBOL vmlinux 0xec993819 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xeca4ff0c sock_create_kern EXPORT_SYMBOL vmlinux 0xeca8fed0 truncate_setsize EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and EXPORT_SYMBOL vmlinux 0xecb25596 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xecbac969 dev_activate +EXPORT_SYMBOL vmlinux 0xecc86f2d tcp_v4_connect EXPORT_SYMBOL vmlinux 0xecdf0bd8 vfs_create -EXPORT_SYMBOL vmlinux 0xece2bbcd security_inode_copy_up EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xecf3b2a8 pci_resize_resource EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecf9eab8 dst_release_immediate EXPORT_SYMBOL vmlinux 0xed08e678 input_reset_device -EXPORT_SYMBOL vmlinux 0xed2b9377 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xed51a312 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xed1d25cb phy_stop EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed698fd0 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xed79693f mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap EXPORT_SYMBOL vmlinux 0xedc5c035 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0xedc86fc4 ptp_clock_event EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xeddabf7a nf_log_trace EXPORT_SYMBOL vmlinux 0xede0b00b filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xedf645d4 ip6_output -EXPORT_SYMBOL vmlinux 0xedfb244e nf_log_packet -EXPORT_SYMBOL vmlinux 0xee1d9c8a register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xedeab764 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xedf3680d __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xee137491 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee2e1550 mdio_device_register EXPORT_SYMBOL vmlinux 0xee30c569 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xee362319 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xee414318 is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit +EXPORT_SYMBOL vmlinux 0xee51c3f1 neigh_update EXPORT_SYMBOL vmlinux 0xee53384f may_setattr EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode EXPORT_SYMBOL vmlinux 0xee599895 __post_watch_notification EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xee7ae426 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder @@ -11386,66 +11380,65 @@ EXPORT_SYMBOL vmlinux 0xeea5a6cf mdiobb_write EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeec280e6 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xeec663e7 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xeedd5f84 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init EXPORT_SYMBOL vmlinux 0xeef6995c serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0xef07117a nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xef141925 skb_dump EXPORT_SYMBOL vmlinux 0xef1bd1e7 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xef3421f5 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xef1bdcba fddi_type_trans +EXPORT_SYMBOL vmlinux 0xef39e196 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xef42b598 tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xef7f5c23 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xef85a9d8 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xef767f5e phy_init_eee +EXPORT_SYMBOL vmlinux 0xef87ae65 eth_gro_complete EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8ce107 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xef9b2b84 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0xefa6bcf7 i2c_clients_command EXPORT_SYMBOL vmlinux 0xefa83d03 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xefc1ab50 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0xefc62d64 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xefe870e0 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xefe939a6 tcp_add_backlog EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0xeff3b911 jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0100361 netlink_broadcast EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn EXPORT_SYMBOL vmlinux 0xf01d8255 d_lookup EXPORT_SYMBOL vmlinux 0xf01dba14 of_device_is_compatible EXPORT_SYMBOL vmlinux 0xf0271837 snd_timer_continue EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work +EXPORT_SYMBOL vmlinux 0xf0438a4c reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0xf0472d65 _dev_warn -EXPORT_SYMBOL vmlinux 0xf0496729 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0xf0541aa3 elv_rb_former_request EXPORT_SYMBOL vmlinux 0xf0615e86 register_sound_special_device EXPORT_SYMBOL vmlinux 0xf06212c1 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xf06c876a ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf072c6f0 sk_free +EXPORT_SYMBOL vmlinux 0xf0820ea4 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xf085de95 netif_tx_unlock EXPORT_SYMBOL vmlinux 0xf088dc68 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf0aad6bd serio_reconnect -EXPORT_SYMBOL vmlinux 0xf0ac108c udp_pre_connect -EXPORT_SYMBOL vmlinux 0xf0b61120 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xf0c47243 kern_unmount_array EXPORT_SYMBOL vmlinux 0xf0c60015 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xf0e45a1d sock_kzfree_s EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb EXPORT_SYMBOL vmlinux 0xf0ef52e8 down EXPORT_SYMBOL vmlinux 0xf0f549a2 serio_rescan EXPORT_SYMBOL vmlinux 0xf102732a crc16 EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0xf10c19ca xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xf1155219 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12acc3e rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xf13d02db genl_unregister_family -EXPORT_SYMBOL vmlinux 0xf143df74 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xf15e2bc0 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0xf16ae0ac of_chosen -EXPORT_SYMBOL vmlinux 0xf179e229 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0xf17ac066 zpool_register_driver EXPORT_SYMBOL vmlinux 0xf1811861 md_flush_request 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 0xf196c8c7 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0xf1a733b9 truncate_pagecache EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align EXPORT_SYMBOL vmlinux 0xf1bc076c jbd2_journal_abort @@ -11458,15 +11451,17 @@ EXPORT_SYMBOL vmlinux 0xf1f09598 tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0xf20b53a0 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xf2136063 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xf217d499 zstd_init_cctx -EXPORT_SYMBOL vmlinux 0xf217f935 skb_unlink EXPORT_SYMBOL vmlinux 0xf225833f amba_device_unregister EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2419aef nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xf25bd822 is_subdir EXPORT_SYMBOL vmlinux 0xf26566c6 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier EXPORT_SYMBOL vmlinux 0xf276cc27 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf27e1f49 netif_device_attach EXPORT_SYMBOL vmlinux 0xf2874a4c iov_iter_alignment EXPORT_SYMBOL vmlinux 0xf287fb20 kernel_param_unlock EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init @@ -11475,33 +11470,33 @@ EXPORT_SYMBOL vmlinux 0xf2aa81c7 __ps2_command EXPORT_SYMBOL vmlinux 0xf2ab01e0 __breadahead EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2afc1a3 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xf2b1d54b vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2de2ed2 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2e7a8ac pci_iomap_range EXPORT_SYMBOL vmlinux 0xf2ea7703 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf30603de mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xf306985e pci_claim_resource EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update EXPORT_SYMBOL vmlinux 0xf3182854 console_force_preferred_locked EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf32bee55 __udp_disconnect EXPORT_SYMBOL vmlinux 0xf32d3160 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0xf3438223 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf347da33 get_phy_device EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf352a110 eth_header_parse EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user -EXPORT_SYMBOL vmlinux 0xf365c4ed unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress EXPORT_SYMBOL vmlinux 0xf37034dc rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xf371a4cc __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xf385ec2c devm_ioremap +EXPORT_SYMBOL vmlinux 0xf386185e tcp_filter EXPORT_SYMBOL vmlinux 0xf38a3fe8 pci_free_irq EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf392acb0 ip_options_compile EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after EXPORT_SYMBOL vmlinux 0xf3aa0d4d dm_table_event @@ -11509,55 +11504,58 @@ EXPORT_SYMBOL vmlinux 0xf3bf7dc5 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xf3c87aea pci_read_config_byte EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xf3df04a7 sock_bindtoindex EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e70a82 iput EXPORT_SYMBOL vmlinux 0xf3e9db1e vfs_tmpfile_open EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user EXPORT_SYMBOL vmlinux 0xf3fef72d pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf4152a10 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xf4201210 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xf4257b86 __bio_advance +EXPORT_SYMBOL vmlinux 0xf429e7c4 netdev_info EXPORT_SYMBOL vmlinux 0xf4356c24 alloc_buffer_head EXPORT_SYMBOL vmlinux 0xf4359068 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0xf43a390e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf448177b sk_mc_loop EXPORT_SYMBOL vmlinux 0xf4497cf1 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf46ff72f skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xf4710738 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const EXPORT_SYMBOL vmlinux 0xf481248d of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xf48f5081 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xf495574a pci_disable_msi EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xf49ffe4e xfrm_state_flush EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4ace1e4 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0xf4c52cff dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4f0848f padata_free EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf50cbd52 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xf53b10e5 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xf53309e9 ___pskb_trim EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf550838e datagram_poll +EXPORT_SYMBOL vmlinux 0xf543204e netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xf544ad6f sock_no_sendpage EXPORT_SYMBOL vmlinux 0xf55c8b6d __read_overflow2_field EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5653759 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xf567a168 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xf567a220 ip_frag_init EXPORT_SYMBOL vmlinux 0xf56a15a9 dquot_scan_active EXPORT_SYMBOL vmlinux 0xf56ef87b balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0xf594e2fd __folio_put EXPORT_SYMBOL vmlinux 0xf5aa8020 dcache_readdir EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5bbd0e3 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xf5c1b54a iterate_fd +EXPORT_SYMBOL vmlinux 0xf5c731a6 tcp_recv_skb EXPORT_SYMBOL vmlinux 0xf5d27f6e blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xf5db30ae gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5e9de95 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf5f15441 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xf5f41afa inode_to_bdi EXPORT_SYMBOL vmlinux 0xf60b999b i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xf60d014d alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xf61245c2 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xf61e0b74 zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf62106c0 t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0xf62b9d63 __bh_read_batch @@ -11565,6 +11563,7 @@ EXPORT_SYMBOL vmlinux 0xf62df998 twl6040_get_pll EXPORT_SYMBOL vmlinux 0xf6327d99 security_cred_getsecid EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf643d7f8 xfrm_state_delete EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion EXPORT_SYMBOL vmlinux 0xf650b4f8 set_bh_page EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit @@ -11573,48 +11572,48 @@ EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf67be0dd ihold EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6a2ba54 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xf6a241ea netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xf6a7be8d dev_mc_del -EXPORT_SYMBOL vmlinux 0xf6be3cf3 skb_queue_purge EXPORT_SYMBOL vmlinux 0xf6c79f51 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xf6cad5d4 __brelse EXPORT_SYMBOL vmlinux 0xf6d811a7 vme_register_driver EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xf6e8c850 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0xf6ea1b39 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf6e8cea0 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xf6ea5920 ppp_channel_index EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6efae2b inet_listen EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fd8f55 dst_release EXPORT_SYMBOL vmlinux 0xf7018337 of_platform_device_create EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner EXPORT_SYMBOL vmlinux 0xf7070264 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf71e6e88 rtnl_create_link EXPORT_SYMBOL vmlinux 0xf71ebfeb tegra_ivc_init EXPORT_SYMBOL vmlinux 0xf72f7c26 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xf7340d20 __ip_select_ident EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xf76097c7 tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0xf7616f87 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xf7657707 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf761fb57 ppp_input EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf76e7c6a of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0xf7703923 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xf77bf040 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xf77a94c2 udp_prot EXPORT_SYMBOL vmlinux 0xf77dd0b5 pci_set_master EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf787e113 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xf79b3d3d pci_request_region EXPORT_SYMBOL vmlinux 0xf79c18c2 noop_llseek EXPORT_SYMBOL vmlinux 0xf7a25e0a twl6040_reg_read EXPORT_SYMBOL vmlinux 0xf7a85468 input_get_timestamp EXPORT_SYMBOL vmlinux 0xf7a9fedb serio_bus -EXPORT_SYMBOL vmlinux 0xf7cdd588 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xf7d2b784 d_drop -EXPORT_SYMBOL vmlinux 0xf7fbf506 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xf7e0ddb2 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xf808ac63 fault_in_subpage_writeable EXPORT_SYMBOL vmlinux 0xf80992aa phy_driver_register EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf8196c74 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf820f84c vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top EXPORT_SYMBOL vmlinux 0xf83a7694 md_finish_reshape @@ -11626,67 +11625,68 @@ EXPORT_SYMBOL vmlinux 0xf87c1a57 tty_port_close EXPORT_SYMBOL vmlinux 0xf87daedb generic_write_checks EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf889db6b xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xf88d7301 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xf8a14f12 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xf8a6d077 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xf89b651c tcp_seq_start +EXPORT_SYMBOL vmlinux 0xf8a16789 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xf8ab46a0 set_user_nice EXPORT_SYMBOL vmlinux 0xf8b10bac twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xf8b4fb10 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xf8bbea23 mtree_insert EXPORT_SYMBOL vmlinux 0xf8da7c5d tty_unlock EXPORT_SYMBOL vmlinux 0xf8db1c61 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xf8e5b499 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var EXPORT_SYMBOL vmlinux 0xf8fb71ef tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xf925e1e7 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf92bec04 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf92eabca sock_alloc EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94a46fd sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xf94cf894 xp_alloc EXPORT_SYMBOL vmlinux 0xf94dd3fa vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xf957e36f simple_transaction_get EXPORT_SYMBOL vmlinux 0xf95a2100 walk_stackframe EXPORT_SYMBOL vmlinux 0xf9617f24 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf970acae alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xf971a698 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf979df2f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xf98e5c84 arp_tbl EXPORT_SYMBOL vmlinux 0xf996b972 blk_queue_io_min EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep EXPORT_SYMBOL vmlinux 0xf9a5eabd con_is_visible EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool -EXPORT_SYMBOL vmlinux 0xf9f0c5c3 nf_ct_attach EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0dfd73 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0xfa13ee40 __folio_alloc +EXPORT_SYMBOL vmlinux 0xfa1d185b napi_build_skb EXPORT_SYMBOL vmlinux 0xfa4000cb snd_dma_free_pages EXPORT_SYMBOL vmlinux 0xfa451c53 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xfa495b08 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xfa4a2edf secpath_set EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier EXPORT_SYMBOL vmlinux 0xfa5f37e9 single_open -EXPORT_SYMBOL vmlinux 0xfa60328f tcf_register_action +EXPORT_SYMBOL vmlinux 0xfa6ab590 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xfa6eed40 xp_alloc EXPORT_SYMBOL vmlinux 0xfa70ecf7 empty_aops EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order -EXPORT_SYMBOL vmlinux 0xfa741600 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xfa8de0cf pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xfa93e885 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xfa97665d inet_getname EXPORT_SYMBOL vmlinux 0xfa9c71ef blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xfaab84a8 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xfa9e4537 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xfabfc393 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xfac66e69 folio_migrate_copy EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfacb29ec __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xfae145cb cqhci_irq EXPORT_SYMBOL vmlinux 0xfae2177f genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xfafa867f xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfb0f34e7 audit_log_start EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read +EXPORT_SYMBOL vmlinux 0xfb24b17a inet_bind EXPORT_SYMBOL vmlinux 0xfb2947d4 dev_uc_init EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf EXPORT_SYMBOL vmlinux 0xfb3db82e snd_timer_resolution -EXPORT_SYMBOL vmlinux 0xfb5e01b4 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xfb5e3e62 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xfb603a9c seg6_push_hmac EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6b2c8b iptun_encaps EXPORT_SYMBOL vmlinux 0xfb702020 give_up_console EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below @@ -11698,12 +11698,15 @@ EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout EXPORT_SYMBOL vmlinux 0xfbdfd3f1 ioremap_wc EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfc087011 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xfc12e55e nand_create_bbt EXPORT_SYMBOL vmlinux 0xfc20476e filemap_map_pages EXPORT_SYMBOL vmlinux 0xfc2086b5 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xfc21df0e tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xfc22daee xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xfc2361bf udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xfc28345e jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xfc2f14e9 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xfc2b3100 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xfc2c06d1 inetdev_by_index EXPORT_SYMBOL vmlinux 0xfc310a5d pci_fixup_device EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0xfc35f18b jbd2_journal_flush @@ -11713,6 +11716,7 @@ EXPORT_SYMBOL vmlinux 0xfc4bdbb7 simple_unlink EXPORT_SYMBOL vmlinux 0xfc5155cc iov_iter_xarray EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc536b60 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xfc59b075 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xfc8991fa rproc_free @@ -11722,31 +11726,28 @@ EXPORT_SYMBOL vmlinux 0xfcb5ddc2 config_group_init_type_name EXPORT_SYMBOL vmlinux 0xfcbe60dc pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0xfcc55f73 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfcc7ead2 sock_gettstamp EXPORT_SYMBOL vmlinux 0xfcc9917f of_platform_bus_probe EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf74135 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfd210c26 inet_sk_set_state EXPORT_SYMBOL vmlinux 0xfd260db7 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xfd519e12 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xfd5acd5d rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xfd327b83 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xfd3ae04a dev_get_iflink +EXPORT_SYMBOL vmlinux 0xfd409c3f netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xfd57ffce xfrm4_rcv EXPORT_SYMBOL vmlinux 0xfd64ffa3 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xfd81feac bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0xfd88a348 rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd8ff6b6 napi_complete_done EXPORT_SYMBOL vmlinux 0xfda243cf mdiobus_register_device EXPORT_SYMBOL vmlinux 0xfdad2367 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xfdc4d7b8 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdd5edb8 retire_super -EXPORT_SYMBOL vmlinux 0xfdedca2c skb_try_coalesce EXPORT_SYMBOL vmlinux 0xfdeea182 textsearch_prepare EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe04cfa0 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xfe07688b phy_do_ioctl EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page EXPORT_SYMBOL vmlinux 0xfe1e248b end_page_writeback EXPORT_SYMBOL vmlinux 0xfe21166d dquot_get_next_dqblk @@ -11755,11 +11756,9 @@ EXPORT_SYMBOL vmlinux 0xfe2e2a88 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4bed49 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe631cca dev_deactivate -EXPORT_SYMBOL vmlinux 0xfe6d4e68 kernel_listen EXPORT_SYMBOL vmlinux 0xfe868408 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xfe90d936 eth_validate_addr EXPORT_SYMBOL vmlinux 0xfe9a7a84 unregister_key_type EXPORT_SYMBOL vmlinux 0xfe9b7b5a generic_fadvise EXPORT_SYMBOL vmlinux 0xfeb61425 da903x_query_status @@ -11767,16 +11766,15 @@ EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu EXPORT_SYMBOL vmlinux 0xfedcf728 filp_close EXPORT_SYMBOL vmlinux 0xfee56ab9 of_get_next_child -EXPORT_SYMBOL vmlinux 0xfeeed1a4 neigh_destroy EXPORT_SYMBOL vmlinux 0xfef00c70 locks_remove_posix EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff23a860 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xff263e0a import_iovec EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register EXPORT_SYMBOL vmlinux 0xff2d1c47 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0xff5487f3 param_get_invbool -EXPORT_SYMBOL vmlinux 0xff5b3c54 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap @@ -11784,38 +11782,40 @@ EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xff8c7d7e jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xff8d5633 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xff91b48a __neigh_create EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0xffb66ac6 input_copy_abs EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffc1084a netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xffc51dca ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xffcadd9e mmc_run_bkops EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd7279b tcp_filter EXPORT_SYMBOL vmlinux 0xffe8f384 simple_get_link +EXPORT_SYMBOL vmlinux 0xffeae195 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xffee361c cdrom_release EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff47514 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xfff63bed tcf_get_next_proto EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x1cd7edbc sha1_update_arm EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc5bd08ff sha1_finup_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x01f0e5e9 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x18d33792 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x1b1e7f1f af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2e2188f8 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x300e41a9 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x3ebb91a7 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x49f375ce af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5aa042e1 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x6c50a9c1 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x993267d5 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x9cf2914d af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x9de50e99 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xa281e068 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xa7b343bf af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xa85b1d73 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xaf4f7bc9 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xc505aaf6 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xda9c3e6f af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x00635774 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1579fbc8 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x159dbdb1 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x2bbe9fbe af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x4e82ab92 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x524ed72f af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b92318f af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x6b43a355 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x789a5297 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x78b3ee5b af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x88c091f7 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x8dd90abd af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xa5bf2a48 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xc2380631 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xeb320386 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xfb145756 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfb61f7c4 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xfce463ca af_alg_alloc_areq EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0x5a6c88ab aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt @@ -11933,7 +11933,7 @@ EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf7fe55c6 spk_synth_flush EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf9335ee6 spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x6217c9f5 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x66d9d8ab sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xab8d3ba1 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 @@ -12007,61 +12007,61 @@ EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd269c365 bcma_core_is_enabled EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee14b346 bcma_core_pci_power_save EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf167c7b4 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0a4f9f96 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x65a98c17 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x679b98a1 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x67b12637 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8f87444e btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa20cbc61 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe80d3a7c btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf1f065df btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0496343d btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0670a9ce btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4727d1dc btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67997b57 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c1cc081 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x77cef352 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ccbb546 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e5f0565 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9446e33c btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9757b5ff btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa39ee3ea btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xca86d44f btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xccbd3330 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd23c1d1f btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdae53bd8 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xec278e09 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf5421758 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x14e4aba7 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c0512ae btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2bce60a8 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d2517b5 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6d9856f0 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8d3807f1 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbdae0c41 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc2f11be4 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3566db5 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xea9f5dfd btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfb1936c4 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x48088737 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xcd12a216 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xe35dee61 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0088f2d6 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x09e6c77e qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1cf9ae7e qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa79d1742 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xede44a61 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0214ff10 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1dfe84ba btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x64112bab btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x97ef8358 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x04103c08 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x061582c5 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1590fe56 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x61a183d1 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9006aea9 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa5ea6c6d btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc142336a btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xde35d998 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0731c83a btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ec0f01b btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x232ba094 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f85ef25 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4876e5d6 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x62f2f64a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x73dd7ce7 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88f3a9c8 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b5f8bf8 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa548c1a9 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xabe9e9b0 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb1e742d0 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb68f435e btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xba040bf3 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbe8879c9 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe311153f btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe37e3b43 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x36401419 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3f7d9e19 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3fdce3a4 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x47bdaab5 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x663a29e8 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7f69a001 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8335b0ac btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaadfe265 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xadb73dc4 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf838c22 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xed1570db btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x022e0920 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x30838b35 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4391e1d9 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x263e0b3b qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x333f0281 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x79307c40 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x968485bc qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xab57cbaa qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0349f4d5 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x243df966 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x26e52891 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x50634b55 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x696f0e74 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9fb0dba7 btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb82327e9 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xeea07ca7 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29fb4b7a hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x68c0312a hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdc6d8668 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf8f2813a h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x00d35a65 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3e9fed17 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4157ac73 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbac9f8c1 h4_recv_buf EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0f7199e4 mhi_ep_power_up EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x19ce1501 mhi_ep_queue_is_empty EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1e669401 mhi_ep_register_controller @@ -12332,73 +12332,75 @@ EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfa53edb2 comedi_close 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/crypto/qat/qat_common/intel_qat 0x053f49de adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x06ce8f38 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09d990c8 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05b6de3c adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05dec5b7 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a45c210 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10a50b9a adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1102a7b0 adf_dev_down EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1218af8c adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x134891f8 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19af9194 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20e9cb9c adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20f40e9b adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x13ea4591 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ea6e218 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x26748023 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x291c07cb adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2aabcd8e adf_init_admin_comms 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 0x2dcc4764 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33552582 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x35a7e13d adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x386e82c3 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a4c3791 adf_devmgr_pci_to_accel_dev 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 0x4038ca70 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x413049c5 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4270a229 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x45a2f47d adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4908eb87 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a6fe22a adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a947c6f adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4ab5cd0a adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4cb2cdf8 adf_gen4_enable_pm EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4eadcd1c adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4f2a5edb adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x550f1b63 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55434f9d adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5684be89 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60ca8f2e adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x666a5359 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68413841 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x70ae1577 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x755c0728 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c4ccf37 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7fbd4ee9 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x83fe6d82 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8459125f adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8616756a adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x86dc225d adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87f16899 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ad8af66 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9189165b adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x952412ad adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96c4b60c adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c53358d adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9fa85f4e adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4c81870 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa809bf08 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa83e9427 adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0f2ce7a adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb102df69 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb767c52f adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb9e9d60a adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0f5e909 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc19810cd adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x527b9925 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x54a6b726 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59d0336a adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a522018 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5addb2bc adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5c3bbc18 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63830495 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6920c563 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b7a2de2 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d9e2bff adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7846792d adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e47f800 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8eb8e2fb adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91bbc337 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x940651af adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e1cd599 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e46b429 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ea619c3 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa105f072 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa499ad17 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa4de28b1 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa2ddef8 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaedbcda6 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1670705 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb22f1736 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb4dcafd6 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbcfbad6d adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2484e5a 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 0xc5ef7eaf adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xca144c96 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc04b94f adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7172c0f adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc9ea953b adf_vf_isr_resource_free 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 0xcfe30dbf adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd150f60d adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd1e21ab9 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd30c856e adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd283a39 adf_dev_init 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 0xd69cf01b adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd71e4018 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdcc44469 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdfc4f716 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd847b0a6 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe15a88a3 adf_gen4_init_pf_pfvf_ops 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 0xe59a5197 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe89d7137 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xedb8cb04 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefb730e5 adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf3c078c2 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb623b7c adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfd7dbd3a adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfd8f6f36 adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfe4d8fe8 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf4a37cf2 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf65d25a2 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfae62699 adf_cfg_dev_remove EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xe9e490b0 dev_dax_probe EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x20f277b4 dw_edma_probe EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa6b910fd dw_edma_remove @@ -13117,18 +13119,18 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf91e7ec1 iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf9ad0119 iio_update_buffers EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x11f6453d rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1a89dda3 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2527414c rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28bc3bb3 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x54899ca9 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x677dbcbd rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x82843378 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdbc2144b rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf4f16004 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf712bf0d rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfa35278e rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb46d6a5 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x05dfb52c rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2670e58b rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x320e3e24 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x40f14a68 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x57743779 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6139df6e rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7375dac0 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa4d60e43 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa671ba09 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd35e1e42 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf7960c72 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfe8f533c rtrs_iu_free EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa2e069b3 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x85290ea3 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend @@ -14427,81 +14429,81 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf5e2c8f3 mux_control_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xffe00ac3 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x56daff17 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf9c8c768 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x061de6eb c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x997f53ab free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc8dc1ec1 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd33a69ec c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd869ffc1 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe9c5cf26 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6541d5e1 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x869ad277 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9bdbd44a free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb0d00b03 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e6c5eda alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x4cb93aee devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x55cb1d51 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x08c735d4 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b664a1d unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x27e06371 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x27f2e80e alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6a5adf0b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc88f8394 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x27536aac unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x90dc2e10 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb1b0d77c register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc58e0277 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x004b5d01 can_rx_offload_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 0x1a410a68 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33e67bcb unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5aea9edc can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17086fb9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b243ee7 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x32aab2a6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x43356298 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47efa121 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5139dd3c can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55674ba9 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5a66c6b6 of_can_transceiver EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x63f6e868 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x647c2917 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x66e325b8 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x672c5b52 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6873d6bb can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d031773 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b1b2dd9 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7dfc07d6 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x860eaffb can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x865a2c7a can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8cba31d5 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8f3811a2 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x916a62e7 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ccca945 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa29fcd2f can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa42c8ecc can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6a99626 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa71ec608 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7604376 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2e2a68b can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6250c4a can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcbfc98d8 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd48b0287 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeadaf513 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec77c2a7 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x685a7b72 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6beb3418 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c00623f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f9750f2 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7657d7f7 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7dbdc758 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x80608ace can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x914eab03 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x951ae050 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96793fc3 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x995e6ed8 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9feeb7cf can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa23f6fd5 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xadea5a9d can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaf490499 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb150d9ea safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbcdcb5a6 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3a16737 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc4b317de can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe120e420 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe19c0f95 open_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf1ffece5 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3429431 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfdf81848 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0a60a6aa m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x48c35e5d m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4e8c0c5c m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x68abbfbd m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x748386d2 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7c8804f3 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc178a05c m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf7e7a545 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1de6e395 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2a31f397 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2fcb7c5 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf38df338 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x04703e1a m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1b5b75a4 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4f5e9f7a m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x907afda4 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc3fda242 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcaa105ec m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdc79a3c6 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe06acd02 m_can_class_suspend EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x80d2717d alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa9ba035d register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe1c63fbd lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xb72166fa ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x3bbc1d59 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x05d56fc8 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2d85b194 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x69ad2875 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x712cffa4 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa3b6c4d2 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa7fca005 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe16e17c5 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe46046b7 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe4a20d2a rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe8d605ac rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf0ff024f rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfe9e0673 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x908f1cf0 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9da6538f free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa467803d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbf7ebb59 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x6e0409eb lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x9a49129d ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x492bb395 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x03bb5168 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x142d46e1 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x23690479 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2a464f7f rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3fb8f898 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4b06cc90 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7d0679f6 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa48078e2 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xaac4a003 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcc0fc979 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd55805c0 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe9f312bd rtl8366_vlan_del EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x44e67488 ax_NS8390_reinit EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x278e71c6 arc_emac_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xdd8c4f00 arc_emac_probe @@ -14520,88 +14522,87 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb7fbacd3 fun_cq_create EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xbfccfd09 fun_serv_stop EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc309e46f fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1d4fa23b i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xf0d2f17d i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x096e467b ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4d7b5238 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x587c3576 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7042f3f3 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9297bb15 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x0cac6ed8 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2c6f2972 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x11c8656d ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2fcb247d ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6f55809c ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xaffcc137 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf611d7ae ice_del_rdma_qset EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02320e16 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02595c0c mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x042d08e8 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x062510b9 mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06dc961b mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06edc2fa mlx4_get_counter_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09265991 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a47d2f2 mlx4_phys_to_slave_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b508459 mlx4_alloc_hwq_res EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b6ef2a9 mlx4_buf_write_mtt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c929c80 mlx4_CLOSE_PORT EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d5b8554 mlx4_qp_modify EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x138d7959 mlx4_update_qp EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a758b6 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16216606 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16070789 mlx4_alloc_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x163fbf3b mlx4_unicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17a58970 mlx4_mr_hw_change_access EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17f7ca7a mlx4_qp_to_ready EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x195583c5 mlx4_db_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c3e8dc0 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d571449 mlx4_set_vf_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1deef88f mlx4_map_sw_to_hw_steering_mode EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9bc2b2 mlx4_mr_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2052e314 mlx4_write_mtt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x206ecc35 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d9bfcb mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b0fe00 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254491b8 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x258f3424 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a602dd1 mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x303a6077 mlx4_mtt_addr EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32f15fd9 __mlx4_replace_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3395a62d mlx4_pd_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34375dd5 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x367d4322 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a70dc3 mlx4_free_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37c15afb mlx4_config_roce_v2_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c563f7 mlx4_mr_rereg_mem_write EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39113bb7 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b238830 mlx4_get_counter_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4174d8e6 mlx4_uar_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43d307c9 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4402044f mlx4_get_active_ports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448539fe mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44889122 mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4499414e mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x480017e2 mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b88e84e mlx4_cq_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ebd54b5 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4edada5c mlx4_set_vf_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f919116 mlx4_map_sw_to_hw_steering_id EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51c2a81a mlx4_mw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5968f11b mlx4_get_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c6607c2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fcd3e58 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d227410 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ea6fb32 mlx4_vf_smi_enabled EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63ca0422 mlx4_mr_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64435bb7 mlx4_cq_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c95c46 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64dd103f mlx4_vf_smi_enabled EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x671b6405 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67e17060 mlx4_slave_convert_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68274ca2 mlx4_get_protocol_dev EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x690361bd mlx4_register_interface EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x698db4e4 mlx4_wol_read EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c035215 mlx4_config_vxlan_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c1b3f27 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d0eebbb mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e84d22a mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71fa5f76 mlx4_get_vf_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7286d489 mlx4_qp_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72de0b8a mlx4_find_cached_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76a7ba80 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e8bad3 mlx4_get_slave_default_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a2925aa mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e78db7f mlx4_phys_to_slave_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d82132 mlx4_srq_lookup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83296e18 mlx4_mr_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a4e8499 mlx4_read_clock EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a5b7ffa mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aef38ca mlx4_vf_get_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b6c0f60 mlx4_wol_write EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8efbc6f1 mlx4_unicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90b6bcef mlx4_mr_hw_put_mpt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90e8407c mlx4_INIT_PORT EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91918fc6 mlx4_counter_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9409c210 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9547073d mlx4_get_slave_default_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f4b3d9 mlx4_mw_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x971b1112 mlx4_mtt_cleanup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98ebefc1 mlx4_register_vlan @@ -14612,19 +14613,21 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa884ae9a mlx4_get_internal_clock_params EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8bbddc7 mlx4_bond EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa2b1188 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba24698 mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad1723f5 mlx4_flow_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae384d80 mlx4_ACCESS_PTYS_REG EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae4415e8 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaecee5fc __mlx4_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb05e3957 mlx4_unbond EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4c30a79 mlx4_multicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5887b2d mlx4_qp_release_range EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8a097fb __mlx4_unregister_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb68a9e5 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc241fdd mlx4_get_vf_config EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc9b5eab mlx4_mtt_init EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcfc0c84 mlx4_set_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdaa92f0 mlx4_xrcd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe11ed75 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbebd8165 mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2eadafb __mlx4_register_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc42acda5 mlx4_qp_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc65ffef4 mlx4_get_base_qpn @@ -14633,90 +14636,89 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd65d4dc3 mlx4_srq_query EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6adc291 mlx4_multicast_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6dc54e9 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd81c12c5 mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd934e24e mlx4_srq_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9280cd mlx4_pd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde6ba318 mlx4_get_devlink_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfdbc000 mlx4_register_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c6797e mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5129356 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb7c28dc mlx4_free_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed2cd852 mlx4_port_map_set EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef3a32e0 mlx4_multicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1f12303 mlx4_hw_rule_sz EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2fdb6a6 mlx4_qp_reserve_range EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6bb83d2 mlx4_flow_steer_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb2fca3a mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb4bdfe6 mlx4_set_vf_spoofchk EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcad8e5e mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe0a4bb5 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02e74cf9 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x021116b7 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0365ea4b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05560525 mlx5_query_hca_vport_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 0x08df0f48 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6fa275 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1256b471 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14d49e34 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce8bf3a mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f4100cb mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a2024e mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7b5878 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cf235e3 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e0f17ed mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ea5e6c5 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42116f08 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43affee1 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4473281f mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472e7075 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ac3c26e mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562b30d1 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57822e21 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d30a56 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a0fb0c2 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe5c588 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607a33e8 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61c39287 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62e8f9d3 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x646a6a66 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689c8818 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68c8bbb9 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694b205e mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d289eed mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e7d8f99 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a83c25 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x744ed5c1 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78b4c086 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78e8d095 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d142ac5 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f16eb7b mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0726a8dc mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c27c15a mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c4b91a1 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e98494f mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x115a20f0 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20380e65 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20e43335 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x210db5cd mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2744abec mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c70f2a6 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x363517cd mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36f8bfa9 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42ea2084 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44ccce87 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x473d5364 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48da03b5 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a4d7d82 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f38467a mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x531624c8 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f1911e mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58bf1371 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62e0ca6e mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cf38564 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72c2afd4 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73ce0588 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7860a9fd mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb0aeb2 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x815a2a92 mlx5_query_hca_vport_pkey 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 0x84ac353c mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8de6543e mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x922508f7 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x973b1488 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9907fbd6 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1c20388 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70064d3 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8046a48 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa08a56f mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc18fe8 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2348e69 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5aa147f mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1bbe8e5 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc363fe48 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97c6701 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9a8cf7 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce4b2502 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0163502 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f95b65 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd82b831 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf6e8376 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0e4e35c mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe696be0c mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaa1586e mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd0ab66 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0298007 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c41f2b mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4f6c392 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52975e5 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe70bd0c mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82503d06 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86d874bb mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a75e5ee mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a93833c mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b546132 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90997e72 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91c13903 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92df5e30 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94ebcdc8 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x952c9ecf mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f0ba51 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f9f79c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5f1853 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e051cda mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e42d47e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f82cbda mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6f525cc mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70cd7fa mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd297dbb mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c029b4 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3529fe5 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc47329fc mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8068593 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf20aa5e mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd126e4bb mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd66ff6b5 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74d7032 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7f263b9 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdca7a8fd mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0f58d86 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ea014c mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6431790 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea817fa2 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb836b92 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2889f6 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdbc8686 mlx5_query_port_max_mtu EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x133201b4 ks8851_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x68a21789 ks8851_remove_common EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6bfde8a9 ks8851_suspend @@ -14724,55 +14726,55 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x5aceb972 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x015ef313 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05f91969 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bb8283e ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x284839cc ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x287d209b ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d1d7567 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ffd673c ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x323120f0 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39b48c77 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46842a9d ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a66fa55 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4af9999b ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4affa9a1 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b439a9a ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x576e5fad ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6dabe970 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x738b38e8 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80e2c5aa __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x835da02d ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8952562c ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c18b49f ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6fcbe0c __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa88aaf88 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1af464b ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb68ce3c2 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb0b3a12 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf25f800 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2a8746d ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc54858d1 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcaf9a4c9 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd760ea61 ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbf6c199 ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0931381 ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0e21ef3 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1bdfef5 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf46d4764 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4babd2e ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8818a3c ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0520581b ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05c4d2fe __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x081c6454 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c8558f1 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21af88d5 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27ce5722 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a486e03 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b78828d ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2dd9989e ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42cd86b6 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46087c9d ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b1fb3d4 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f0bb355 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53688f54 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b4d0e78 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f2a37ad ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62e3cfb5 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64aa4bc2 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67b9db02 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x701fdf13 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f805b73 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x801159ae ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80f4ce3f ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8757e2ef ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a6ead26 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e3d9195 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9534c368 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0eaa0da ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3fd5094 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf78e159 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc570276e ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7e1a5c1 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9d42b18 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe218aa56 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe62d6c59 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6fa7c46 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebc7d71e ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf887f940 ocelot_bridge_num_find 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 0x02986306 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2e0bec04 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0337527c stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x22e30453 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x324c6e53 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 0x7abe4fab stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x60282991 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x88c817e2 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 0xa85e9fd1 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbf1aeccf stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe9be6a42 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x97636d20 stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x55269765 stmmac_remove_config_dt EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbf659c45 stmmac_pltfr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd9e4254b stmmac_pltfr_pm_ops @@ -14782,17 +14784,17 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4d2fa87b w5100_pm_ops EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x56a465c0 w5100_ops_priv EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x597b754a w5100_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0xf7a7d996 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1929331c ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3ea5d8df ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x67365136 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb1d013f0 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfcaaf1fd ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x51e7647c macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0df4e8e2 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x46e4b1fd macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x968692f1 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc23bdcf9 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/geneve 0x9bf6bdbe geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2ad7973e ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3a7fea4f ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x92538aa0 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb80e36b1 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd6ed5865 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x017a0e74 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1ba4a033 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1f981b37 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3073650e macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x72c67ecb macvlan_link_register EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xff083e21 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x941a3657 mdio_mux_init @@ -14881,15 +14883,15 @@ 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/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/tap 0x0852f02d tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x1e42b85f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x360666a4 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x7235f757 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x928ae5ee tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xb0055a13 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xb0b923ba tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xbceac537 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xf4c8db20 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x0e811e2b tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x20b8ad84 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x2ea4dff4 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x48aef215 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x60715c89 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x6f6b273b tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9c8dc514 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xb3de742f tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xc3712f09 tap_create_cdev EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x294f5f2c usbnet_generic_cdc_bind EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2a228f8e usbnet_cdc_bind EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2ec1445b usbnet_cdc_update_filter @@ -14908,7 +14910,7 @@ EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x99ef1b77 cdc_ncm_change_mtu EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb8b50d91 cdc_ncm_rx_verify_nth32 EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf67b1741 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x1a2ed490 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xc0ebc097 rtl8152_get_version EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x73da0378 rndis_command EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x939ea770 rndis_status EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9627b069 generic_rndis_bind @@ -14949,11 +14951,11 @@ EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe65ec751 usbnet_start_xmit EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe95264a0 usbnet_read_cmd EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfef7211b usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x0ca137a0 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x37745265 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5b46761b vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xef8c3dd1 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x4cf7fdbd libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x02b6dbb7 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x02de296c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x82189ffc vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe6cf252d vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xf2e6008b libipw_rx_any EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c4c2b5b _il_grab_nic_access EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b9dc6c5 il_remove_station EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64b56104 il_dealloc_bcast_stations @@ -14997,31 +14999,31 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbf1b815e 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 0xcf6bd160 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x009ff88f mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x02d77076 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0905b66e mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d82a1a3 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x11e65017 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1478bbe2 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1a30dad1 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x40850d58 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x480f94e5 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57d1a2e7 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58d6009a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x655edeca mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6e75c877 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x74719d95 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76844892 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79cf5178 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80846fc0 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x90280462 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x973ae495 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad87444e mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbaa0f67a mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb5efa55 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc9680df1 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x05322f82 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d05a401 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f0ad92a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47f67f73 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f9e7a0e mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f74eabf mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x64ee4a5c mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x663923a3 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x670403ba mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76179e0c mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8852c14f mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x898be876 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c8c733f mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9067093b mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9ed49a44 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xab892386 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb02e07a5 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc2cfa685 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 0xfefc578a mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd50ef729 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd9182469 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde9c0e75 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5ba0503 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9ceabe6 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff8c87f2 mwifiex_write_data_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0712b98b mt76_mmio_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d088797 mt76_get_rate EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x133c1e4a mt76_get_min_avg_rssi @@ -15065,7 +15067,6 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7250af13 mt76_wake_tx_queue EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74fcb525 mt76_tx_status_skb_done EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76d50732 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77479f96 __mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77dba917 mt76_unregister_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79842899 mt76_mcu_skb_send_and_get_msg EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f9b0be8 mt76_pci_disable_aspm @@ -15076,6 +15077,7 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x865dca75 mt76_register_debugfs_fops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x872e2342 mt76_get_of_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ba0545d mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d7138dc ____mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90440102 mt76_sw_scan EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91777a66 mt76_dma_rx_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94daef6c mt76_rx @@ -15360,43 +15362,43 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe2c0e980 mt76x2_mac_stop EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfcf50b42 mt76x2_set_sar_specs EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x04359dd7 mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0c9978b5 mt7921_mac_sta_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0fd3e205 mt7921_mac_sta_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1cbd7eea mt7921_txwi_free EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x22e56046 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x26c3ff8e mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x285e2ae0 mt7921_ops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2a9b46f4 mt7921_usb_sdio_tx_complete_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x30021d16 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x366f2020 __mt7921_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x36e2849a mt7921_run_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x380ff672 mt7921_mcu_parse_response EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3d815130 mt7921_check_offload_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x79c58f52 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x44717092 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6da117bf __mt7921_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x878e8235 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8d70cdd1 mt7921_mac_sta_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9703b8d5 mt7921_sta_ps EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xabd7ace7 mt7921_update_channel EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaf56dce9 mt7921_register_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb399edf0 mt7921_mcu_drv_pmctrl EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb826c41c mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc7f8090a mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcf368958 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd14000a8 mt7921_stop EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdf3907da mt7921_rx_check EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdf4bace6 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdf506dbc mt7921_mac_sta_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf2f0fcee mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x376d4a0a chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x80c1e2db wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8e166d72 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbb76ad62 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdefb411f wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe7c52023 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xed01e6bf host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0a858a95 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x21437407 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0572f7a1 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x21d07ebd host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x284d64ed chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8a23aded host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9d08e2e1 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf0ea5fa8 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf99c2ef4 wilc_netdev_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4b5e2284 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xaa2bc521 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xba0ef055 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe6ca9bdc qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3907820d qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5256e64c qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5aaf7765 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6e4428a3 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9f3f08be qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa18634a6 qtnf_get_debugfs_dir EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x01d3b876 rt2800_config_filter EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03a29d9d rt2800_write_tx_data EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f46da2d rt2800_process_rxwi @@ -15565,44 +15567,44 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4ac270e rtl8723_phy_path_adda_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5b81f86 rtl8723_phy_rf_serial_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd7841cb rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0454d572 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d9c7edf rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10172724 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1215acac rtl_action_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1321e6b5 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15ae2c01 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x174576cf rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b691163 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fe17e0b rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1400fdb4 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26f69ebe rtl_set_tx_report 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 0x2a30fcec rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3345c624 rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a5fe6e9 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43064314 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x474d99e8 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c731bc1 rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56f244cf rtl_ips_nic_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x572d210d rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bee6d00 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c691572 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84f4e1bc rtl_deinit_deferred_work EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92b5fbc8 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 0x9e5a93ac rtl_action_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xade8bb80 rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcb6b94 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbaec0873 rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb6cb439 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbcb0670e rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7153ff8 rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb9ce0cf rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdab5c23c rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe35c082a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7bbae0d rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1d76eef rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd69bad9c rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7c366ed rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea8a7836 rtl_deinit_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfda0581b rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x367cca0a rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6c34547a rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x75f16366 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x855ff363 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xababb4c1 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 0xfdd48e57 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x063332c4 cw1200_core_release EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3c515d97 cw1200_irq_handler EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x59e644dd cw1200_can_suspend @@ -15914,53 +15916,53 @@ 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 0x82860bfa qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00103e61 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0263d767 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x027fe591 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0493bb9e cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b71a7ad cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1848d398 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a24e889 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1aefb653 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1af6964e cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d033683 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26e00157 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b238dd6 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f762f44 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fd09768 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3eaf70a4 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4264f147 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x509dd8eb cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x528696c6 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bcc58a8 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c3d3997 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c568956 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62a02ceb cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f7ca51b cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x750f005b cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x014c1220 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02cd55e6 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18aade5e cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1aa3dff1 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f489d49 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21ecf54d cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23b70802 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d772934 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e376979 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36f52533 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37fd103f cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f301096 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f721afb cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5136d053 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53a7ed88 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cdca262 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e3f3a3b cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fd1a704 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6229ddc1 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x684f4f5d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c84fc23 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cec4c31 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73aeab62 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73e952e5 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77f3628f cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ab1053d cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e1a1dd3 cxgbi_sock_rcv_peer_close EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a0b2b3f cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bc4600a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f7465da cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95e2ba14 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98620fa7 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa09e95f5 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1717d57 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa322105a cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabed7777 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf54bdba cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb946c7fb cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84382012 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8813039b cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a417840 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91c1d3dc cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91d5a0f9 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94546d38 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x966d20de cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96b1e4e7 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e91d8c2 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa83e6a3 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3cf22ab cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd4da588 cxgbi_sock_rcv_abort_rpl EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcaa8f7ca cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda65d78c cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe365f707 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8ad96e7 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc73c5f0c cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccc8395b cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe35548f7 cxgbi_conn_xmit_pdu EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0a37cd9 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0c49292 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1bd6ebc cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7846ec8 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb59facf cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf18d5f69 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf46ecc43 cxgbi_parse_pdu_itt EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0a0fd579 fcoe_get_paged_crc_eof EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x379118f8 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x430dde0d fcoe_ctlr_device_add @@ -15990,173 +15992,173 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc9fafaae iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd47a146d iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xe11de78c fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x001b24e8 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0064add0 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0aaf1b44 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0edc843b iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x000dde6e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01e5c0c9 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04916da7 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08f9bb67 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cabae14 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f27c376 iscsi_eh_abort EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17a53a77 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b87539f iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d44b902 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1da3bce6 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38dac15a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x130ab10e iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x160af456 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x163361b5 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cc4c410 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x205a8b5a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x211a6239 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27dbde4f iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29f76e3a iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2dd9f718 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x300cf655 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3392b6b5 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34d3d9ad iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39baa376 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3adca8e7 iscsi_conn_send_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bf7f00f iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d857523 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f584e76 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41e6fbc1 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41f38e3e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c02df10 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d84be0d iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e75faba __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52099bfe iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54b228ae iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61941916 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62f8bead iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66880689 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6748d27b iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x682a0028 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x877dc4b9 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3df2ad48 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f9ee863 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x481d591c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50ebeda0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56ad7664 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x582deb79 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6836812b iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x735a17af iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d243bbe iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81f41f6c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8749f53b iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8df38c40 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90665ab5 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91faec7a iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96b95c88 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97335aa6 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2d0e292 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8156aeb iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8469124 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8af5050 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd09e87b __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3077f1e iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc44a84bd iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc756026f iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf574066 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd292a515 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd45c157e iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4699b25 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4ed01a3 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9f55755 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf8d677f iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ef22dbe iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fc6de6d iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa322baad __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa77cc616 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaef25a49 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb53e390e iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xceb3a796 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1f3ada5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd29cfe32 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3f762ac iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc3de7ae iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde506e9b iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf58db17 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0330107 iscsi_host_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeafc7275 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf635bd3a iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf813443c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1078d159 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x214d76df iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a53fdc9 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31594e70 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3dba59e1 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5473c384 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x639bb486 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x838f0921 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87a6f902 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4a5bc0d iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbeaaa537 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc395b715 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc62fc887 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcf6b7810 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdd6dc07f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3a3dcf7 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4669f48 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec7a9e1a iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee7a90ad iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb31f162 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07eeb3cb iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16964311 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b52af26 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x526ceee6 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6abe89eb iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7211d87a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72bff5b2 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x74da6e46 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c24aa6e iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84510d7e iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x908e2c8b iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e24c7c4 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa385e42d iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc52d62e8 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce80bd85 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0127fcb iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf905d961 iscsi_tcp_r2tpool_free EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x066d7136 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e82d653 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1131a913 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15b9304f sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d9e6e5f sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x107df24e sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1433c282 sas_unregister_ha EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22e7fadd sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2736a63d sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x342bd5ce sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x375dd4ed sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2396802b sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28d62df6 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2cf8ba10 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a5c2614 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43ee9596 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48b1c15e sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e5f6e2f sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x570a08f6 sas_ssp_task_response EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58d5e02c dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x593a26e3 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b629962 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5dac0eed sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e42ef4a sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63e2894a sas_drain_work EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64f542de sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6952d71c sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d1bb926 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c767e1f sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8154fd80 sas_execute_internal_abort_single EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81933daf sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86e82b7c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85d6a584 sas_get_local_phy EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90130bbe sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9082c823 sas_abort_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90bc1bd2 sas_eh_abort_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91515439 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99fc9cca sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e2eb0f6 sas_lu_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f28b81c sas_phy_enable EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0e600ec sas_eh_target_reset_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb244f2fb sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9cda892 sas_domain_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba56f730 sas_slave_alloc EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfdebdd5 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0d17e0d sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd8f98852 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd96da112 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc026e7e7 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcdfb3d60 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1810187 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0e1530c sas_ata_schedule_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb51080a sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xefe8bd52 sas_task_abort EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2256ec3 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf31c5254 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf864de93 sas_abort_task EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x0c32c7c4 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00d6b7c8 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x022f1889 iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x028b6f61 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05f210c4 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a7d5ba1 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ab060a4 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10e21e1b iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19ade8e3 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f60b4b2 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25e0c2aa iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0611c448 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ab326ec __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ed3a971 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x108fc151 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x112be551 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x157df426 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x194551d1 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x231faa5b iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x272fb1f1 iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ef29780 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fa90cfb iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4417f4e6 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4700bc6d iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bbfecf9 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bf4fa20 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c8331e5 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5212840e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55b43651 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40436e4d iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41112b45 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x423d91f2 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42ca8ca3 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a61d2d5 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d0137c8 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51df72ff iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56fdd267 iscsi_destroy_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58650174 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a10ab78 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5adc5e93 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cc0941b __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f30bde1 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x615cf688 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x676b3309 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a0d730a iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f8f6a8d iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68aaf4f5 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68ffd952 iscsi_remove_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b49bb0c iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f77cdf8 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7069f1ea iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x707ef21a iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72a1031c iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cd4226e iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75873edc iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e2a94a5 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8157602d iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f756c79 __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82ab4a28 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83055776 iscsi_get_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x862836bc iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9069dbd0 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa34ba254 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bd1f376 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90423cc6 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95650568 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9670381c iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3867dff iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7eef34c iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa9e936c iscsi_unregister_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac1c9f31 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3c78ed6 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb40ad13c iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb481a144 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbafbe831 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad629263 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb248e00a iscsi_post_host_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe4bc5e2 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7184d23 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd16e1135 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd331ae54 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcdca6c9 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0da64a9 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2c8318d iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc2e8b17 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd21973b iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd5be5bc iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf89d53f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1a95815 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc71a26c0 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb3d1ca1 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf5bc0d0 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfea008a iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7ee2c7e iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa99bacd __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfddb9687 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7bc8c64 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea962ad0 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0d6684d __traceiter_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1830ad07 sas_is_tlr_enabled EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3369a2a9 sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x83225b90 sas_tlr_supported @@ -16374,10 +16376,14 @@ EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x265bcd70 nvec_unregister_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x9df87697 nvec_register_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xe9f05631 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1cd969f2 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8355fab9 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa92c983d target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb9fc0447 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5e13dd98 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x648da418 target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x68ebaf4c target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6a964eda target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8b7517a4 target_stop_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xbb656e22 target_submit +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/tee/tee 0x00d43fc7 tee_client_get_version EXPORT_SYMBOL_GPL drivers/tee/tee 0x093da622 tee_shm_register_kernel_buf EXPORT_SYMBOL_GPL drivers/tee/tee 0x1e80d9be tee_shm_free @@ -16473,8 +16479,8 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0xa98db4a3 __uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xc15ad2dd __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xff61acbd uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa1a27e4f usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf058010b usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x58da9831 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7e14ad29 usbatm_usb_probe EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1f9785cd cdns_suspend EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x606f9d5b cdns_clear_vbus EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8f1c2463 cdns_drd_gadget_off @@ -16791,22 +16797,22 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe6a0a2c5 ucsi_create EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeb7f5117 ucsi_send_command EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf1e933a4 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x03c6b68a usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30807c78 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4779e0c1 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57d0304b usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x13d0b90e usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16869f07 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16fc6228 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7765dc82 usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x801ee35b usbip_event_happened EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x87d843bf usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x99656830 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x89acf6fa usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa99e00c6 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb3495d13 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb655e2cf usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe0444f55 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea531688 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xef9b28b1 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf47b2399 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfc443139 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfeec2059 usbip_alloc_iso_desc_pdu EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x02ac5dfb vdpa_register_device EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x03c96e05 vdpa_mgmtdev_register EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x23349284 vdpa_mgmtdev_unregister @@ -16961,292 +16967,292 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xae65a1b4 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 0x00bb39e1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0ea255a2 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x18cee33e nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c65a424 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9393377d lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x09827beb nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1924dcbc nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x28efc2f3 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4ce0f7ef nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x843d15e1 nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe35875b9 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf02db659 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xacecf3e1 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xddea12cb lockd_down 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 0x083f5b7d nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08f63689 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0981345c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07171f66 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x071fb2af nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a46766e nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0efa2b12 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f1db8a8 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x104825ec nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eb97b07 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eecd478 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fc576cf nfs_clear_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1392426a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1703b548 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x186564b5 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1db50d55 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fca57c4 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x200c106f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x118881fd nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12f0474c nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x167ee77e nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17f399ab nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8cc4c2 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cc4c259 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d4e1e30 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2df3a3 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fddf153 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20890ff9 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22653ac8 nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25909dd7 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x230e2cab nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2702f326 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28be672b nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x296be59d nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c6124ca nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26c76f44 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27aaf516 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28f170b5 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2eda16cd nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x301768cb nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30c723e5 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d6ddd87 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7744ad nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ea15889 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3137c84d nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34543523 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35afc053 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x323d9358 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32bdfce6 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32d1aa69 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37c7ef61 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d80779 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3804377b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3813a3ea nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38fb0a67 nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b2a9017 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c990d3c nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e23e687 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e4fe8e5 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c4820a9 nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x410f921c nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x434507a4 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4651ef25 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46fe21e1 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x472911a2 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4879d4c7 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48da1a88 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48f4c25b nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x497df440 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49dffd37 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a7a41dc nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x441e717e nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45a0458e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45b5354e nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bea5eee nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c391b04 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d33a27e nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d98f8b3 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e7c93da nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ecaf44d nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4effe400 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d1484bf nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d339ac5 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e651819 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5053c5d3 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50ae424c nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x521026f7 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53241d61 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x555be225 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e22458 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52e5f8cc nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c1bcfd nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5647aa91 nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b6ac494 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c5c2792 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5da4daef nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f8dd847 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f8ea7a9 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652371f5 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x667a9f6d nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678228fb nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68c6e3a9 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cf8ba34 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59b4dc9e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cc6395e nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d78fbe7 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e9bb44a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63502c85 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65abddec nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x671bd7f9 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6816d915 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e5bfeb2 nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ef6be06 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fb59c47 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72a148a3 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x738b9e7f nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fc8c8dd nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7193ab69 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744fa738 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ce8455 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7644fd7d nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f99d0d nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77b051fa nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79ae87d6 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c908b97 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d967b7b register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1f3193 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x814713cc nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8270c920 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83606ec5 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x751deb0b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b32499d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c4858a9 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc8f5cf nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e0415d1 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eb7b2f9 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x812f135a nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81f239b1 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8354a4cd register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a1d1dc3 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ad08bc2 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f010191 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f9bc79e nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8610645c nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a747ca4 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d2c1f36 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d6e0d6d nfs_request_remove_commit_list 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 0x92fda694 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93dbba06 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946a49fd nfs_writeback_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96de6500 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979d8847 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x982e293a nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9568bd2d nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95f4acdf nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9723b438 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97ddfad8 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a0f706f nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b01ab9a nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa37ae865 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa62b0000 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa65a1ee0 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993677a2 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5b7d30 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ba54414 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cf63e77 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cf91f87 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2228fbe nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3026549 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4d2adb4 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5586628 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5a4b30c nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6528474 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa765adf8 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa80bf71c nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9ca3ae2 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9e626e8 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9fa46ad nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae39b438 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0088dd0 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3a1a94c nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4de120e nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74d668e nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbca6832a unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd0ab28d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbefd41bb nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf23ec97 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf97ecf1 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0255c2e nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc039c224 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2294120 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaca442f2 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad575efc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae52275f __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae822ab8 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb41ca745 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb474bb62 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb9835e6 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc4e2be7 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd8450ab nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe05c17c nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6e594ac alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc882bfb5 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca16784f nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbadbae8 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc2ef64b nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcedcc570 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0f27da7 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a4aea1 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd33cbd69 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd34385a7 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f212fb nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd609d046 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7605e4f nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd96c8bbe nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd994d599 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9d16693 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c62f09 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf11f7d2 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd158d8f2 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd407667c nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd40df15a nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd464d615 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd49e5013 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd94bd410 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda2eb823 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb513773 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb9e4931 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbf14843 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdea919dc nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfc93d2b nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53e3e1d nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9bb527a nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeba3f0e8 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec984b00 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3b4acb6 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4153e28 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf65d302e nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6ec5a68 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf759f4b8 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b4f97b nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8c2c2fe nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf920dc8e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc38f10c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd30b2cd nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde14c13d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee14474 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdee33bfd nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf070fea nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf450c45 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0339164 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9500faa nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe997d35d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea482bff nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae92a10 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec968814 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef9177a3 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15fd52f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2772b89 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf539df06 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf559bd08 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf62b10a3 nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9d7e12e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfba4c6be get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbd603ed nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd5ef247 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff80deb9 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff8ebe0c nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa54ca6 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x9aeb5f6a nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x040d62f9 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04cbaf3c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7025aa nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe883cc3 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff90346a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x677f7d9b nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0161580e pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x041bbeab pnfs_destroy_layout 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 0x0b6fff49 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11a98618 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12503c6f nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18871ab9 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18a47911 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18d71df3 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d71a841 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fa3a08f nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a7127c __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19715835 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b52c73c __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x232cce59 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x238c7895 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28ea86e1 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b295cc4 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bc81121 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d470311 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x323509ca pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34d82afe pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35c59249 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37eea725 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b0bb0a6 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41039315 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4128e1bd pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41cfe8f0 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44525fae pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3163db4f pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31992a23 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33e4ffb5 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33ead1db nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37c7f7fe nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3add75e8 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4139e15b pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x423854b2 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x441f853d pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44b58996 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e75ad4e nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e8eaef0 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51a0fe3c pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53e223a9 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5554448b pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55614b67 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55f8c850 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56f16327 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x534426ca nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x537ef36d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54d23409 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x575ea44d pnfs_read_done_resend_to_mds 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 0x5b005290 pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63068d95 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d7edea6 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6397bb32 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x661fa162 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c9d4de4 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5a6f1a nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d6f44a1 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ec878a3 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7256ae49 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x777ef2df nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cc4c91f nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f16d1cb __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fb87700 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7227282e __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74294973 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x755b8a8c nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a3a102c nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b0d11ba __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c3afde7 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b0281f4 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c7136aa __traceiter_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 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80b65168 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80a47b4e pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81c4c19f pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83e8718c pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84098b77 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x825ea8f4 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x879523db pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87ab5a51 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x889c426e __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a86ed70 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b25fa92 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c5a14d2 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ad18379 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8af1aeeb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b879e58 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4ff844 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fbfbbae pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f810ed8 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fc78913 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9187eadb __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91cb8c2e nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x924ef2b9 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95a52c9b nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x990e935a nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93ccf0fc __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9619facc pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a560a65 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ca99d5a pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d14070a nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa65f153e pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8396e10 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabc2a862 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac1ff22b pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad66abe8 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaedbf80e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c0bf5d __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3e3d20d nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0d7b758 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ac4e3e pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5bec452 pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8b4812e pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb699cdda pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9ea9939 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbedb3455 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3668d1a pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc699ef70 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc09eaec pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc200bf60 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 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd677d1e nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd007c69e __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd38bb2db __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd596c205 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6f60c2c nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd775214b nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7868fcb pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbe57e50 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1340160 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1784ca7 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3f74662 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4272f8a __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9ca9441 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9dbbe9a pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb451c60 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc3a447d nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdceb76a7 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddb4a9a4 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf4793a4 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfdd5922 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2052009 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe233d7e4 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0a00038 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5340fd2 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe575bea5 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe67e47ac nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed9e3b1e pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef918c8e nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf92f322b pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfabd2a8e nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcc5c45c nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdad4b10 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9d7e650 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaac70d5 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc84ce0b pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcc0b88d pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5c3c8894 locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x89f4b28a locks_start_grace @@ -17255,38 +17261,38 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb39c2784 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc2afe7d4 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd22afc5d nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x7d3ff367 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0a9ddfb5 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x479d6160 nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x42f6efea o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x40b83771 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4951410c o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5aa5d87d o2hb_register_callback 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 0x84f85b39 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9a4564df o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x74707054 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7ea2c9d4 o2nm_node_put 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 0xaa6bcf30 o2nm_node_get 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 0xce2443de 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 0xdd6a38ec o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe88281c5 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 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfd79a54d o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x557871b4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x709fa458 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x08eb081c dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3c7db69f dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5f80199b dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7bedc13f dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8bb0a26c dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8e793754 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb52c36cb dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbd9d47ee dlm_print_one_lock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf81e3bc6 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeab1b862 dlm_register_domain 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 @@ -17333,8 +17339,8 @@ 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 0x3572b591 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc48d9ebf lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x442433cd lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf4f2fcee lowpan_header_decompress EXPORT_SYMBOL_GPL net/802/garp 0x4aebe7c6 garp_register_application EXPORT_SYMBOL_GPL net/802/garp 0xb61ae47a garp_unregister_application EXPORT_SYMBOL_GPL net/802/garp 0xb9737c86 garp_init_applicant @@ -17353,256 +17359,256 @@ EXPORT_SYMBOL_GPL net/9p/9pnet 0x3e3b8d26 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 0x1b2bbeec 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 0xafe2e684 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1b25ee83 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x29f9d2b6 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3689ec80 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3c8cab31 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x45c44917 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5434fd69 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbc2a9260 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xec6b2847 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf0f2e827 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x9b356fd4 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x005b092d nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f200f81 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x23f85698 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x28c9f843 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x29d76d92 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3520f2cd br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x374e2716 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4571336b br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x47ac3c60 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x57ff398c br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x641a054e br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x737a9a75 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x74347685 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x757bf080 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x847bfdc5 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x87cc93b5 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8963cb5b br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x986904d7 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b4764e1 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa137bb24 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2c7b2d7 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0567263 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd82206f6 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe83026b4 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xecc37299 br_mst_enabled +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x091e921a l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x34f96b43 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x57ed2f37 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6865d244 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7457a715 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7e13f89a bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83b05f80 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc851dbb2 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe4c0a5b5 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x1b06c5c1 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03f5824e br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x06ea5191 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a02ffd9 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e428bee br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0ea1655e br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x19c290a3 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x20098502 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2d4e5ae8 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x376e6049 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x392d134d br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49ab14d9 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x66cdf5ca br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7aedd1bd br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8f473feb br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x953310c8 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa817ebf6 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb014a7a7 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb14e93e1 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb51bcaa6 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf48c8f9 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd8bac584 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfa63443 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe06fce2c br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8a3cc33 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xede55756 br_forward EXPORT_SYMBOL_GPL net/core/failover 0x792e380c failover_register EXPORT_SYMBOL_GPL net/core/failover 0x812afe36 failover_unregister EXPORT_SYMBOL_GPL net/core/failover 0xc552002e failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02200c87 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x027cd580 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0843b6b8 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c334192 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10c9654f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a68220f dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10421dc7 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1127ed93 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x15691153 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17828315 dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1952310d dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x28610d17 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3814f052 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x478ac804 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a223b3d dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23c6ab3e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x273052db dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x275d7d64 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35cc1d3e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36593656 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40f8c22c dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x471757ad dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5033b0b3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51731bdb dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x54a2853c dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x58a4391c dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c169474 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d422112 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x61a78fc0 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x62459b85 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64019fce dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6751ae1d dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b73aa86 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x75670673 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f4470c8 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d9a30b4 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a5e9348 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f750427 dccp_check_req EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85a2d0ab dccp_set_state 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 0x8b70e396 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8dca1d1a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8942efc3 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c83c038 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d692a8e dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91359f78 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96b7caa0 dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0xa03a4174 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa279cbc9 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa505a5d6 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9a3e11c dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaedb8c7c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0edf7b3 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdcc7d13 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9936696 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa09d988e dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2c81a44 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa43f2cdf dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafbe2e8f dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1c873fe dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd4a113a dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe49a0280 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2acc93f dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf64c34c0 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0aa1723e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7d4e78e0 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86c274db dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9e4b74a5 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa8495601 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xad826597 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01ac05ad dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x023d54d2 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb79fc1b dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6894b47 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x292d39f1 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x37def569 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x43438759 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x658b3935 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb9c576b6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe16a7b7e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00bb9b08 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0a3a15d2 dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fa0f96c dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12a16b73 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1fb04588 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x204b29f7 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2899bcd7 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28f78a43 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a893ff9 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d89634e dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38eebb71 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x17b0b6ce dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27280669 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39835b0d dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40c964ad dsa_tag_drivers_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 0x470fc6bd dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4e65386d dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x55d87bcd dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69607d5c dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69a31b98 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e0f25af dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f47bf5c dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x703b44d7 dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x726c85b1 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77011c00 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ace89de dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8319bf54 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8caae703 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49743a1b dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60e202c2 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62abbb16 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x63e89ebf dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x73729f8f dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79913fc4 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8385e231 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8442ea62 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8cdd80c8 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e418792 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x92061bf5 dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa743ccf1 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaada39a3 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb93eb0cf dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f005c09 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa250363d dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb835036f dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd9c26c1 dsa_tag_8021q_bridge_join EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcce9bce7 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc303925c dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5ac0dc4 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc670b7e5 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc692f6f dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcccfa488 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xced7f70c dsa_switch_shutdown EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd43acd3f dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd9a914a dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc574bc8 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4bd0751 dsa_devlink_port_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2a7622e dsa_tag_8021q_standalone_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1e69f8cd ieee802154_hdr_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x51c40836 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x56a0ccc7 nl802154_scan_event EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x571b266d ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbb15f5ab ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd87bbcae nl802154_scan_event 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 0x73f5149f ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xbab54ea7 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x271f376f esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x823a9f42 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd07f8fe2 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x2508d3bf gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa7ef9199 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x242bc529 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x32393701 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3240b655 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3404d490 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x57a53efb inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x672973d5 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7a55c282 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x866be41e inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdccc13c9 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5d02dd68 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x157e2d3a ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x41f283ee ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42717767 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4a9ec83d ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5db488c1 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d496bd7 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7238f6b8 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x786cf18e ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f1ec4f4 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x819a223c ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x911a8578 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x956a5978 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e87bb37 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafb766a7 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb7ac61e7 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1cfefbd ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1c4943d ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x35a0c439 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa1131c43 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa75fd36f nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe8bf13b2 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x9a733591 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x18977544 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x21e03202 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x224ae3a2 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5297d82c nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa7cca12e nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc9e100d1 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xed26a3d9 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x355d884c nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9b024d08 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9bf5e5a3 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf78a0179 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x54e729bf nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6bd51dfa nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b03c74c tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x43805e9c tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c7e22f4 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x65546ab7 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf25905ea tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x05774b18 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x36547418 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x589e64e0 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x61d487d6 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x64eeaa82 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8df5fa80 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd61a6cb1 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfb06d01d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x095c36e8 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3f59b588 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc6a57718 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9ca3a787 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc4841702 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe1102716 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x00bf323a udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7e109bce udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xa556a5df ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xaecbeb2e nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb43e5768 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb6f0b5ab nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5927c376 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2cea8e26 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3719e17b nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x67f7fbd1 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x924be54f nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xac5a3a30 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb59c6564 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe4a1c652 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xb23a2925 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x70d7142e nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x75ff56b6 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9ea5a602 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x313fa193 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4f07a243 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x072c3b19 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1178e646 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1188099b l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14b67525 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43730f22 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x483374ab l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b0efbd1 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x65d7ad5b l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ac47590 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77201beb l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82f3cd38 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x848f5a0e l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91822666 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x988f61f8 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99d2d185 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa1647b8f l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4837f30 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe432ffd4 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1f623d2 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb841d61 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc79737e l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x69b84b6a l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x472a70a1 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8ff819ee esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb15f150c esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0xce252240 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe2cfe509 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1a904e96 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1fc9d017 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4e53eba2 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x713b984c inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd503fc42 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xed421fb7 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa9158cf inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfd15caa0 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfdd4be29 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x18d16773 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29d3b4e5 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2f73ca4a ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x372ec90c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d0583ea ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51a7ee93 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6524b60c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c7c6a9c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9d4a5bc3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa2ee9c39 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1812b71 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb483691b ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb7c90cf2 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbe92326b ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc9b226aa ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdfe0f866 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe2388e8a ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf3f287cd ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb12abbd0 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x8b715291 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x49b9e27c nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd45bca20 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x9cc64619 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x003898f6 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1454885a nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2121bd63 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7d6814b1 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a256f80 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9b56c5c2 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc839ff3f nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x4ca53d59 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1ee5c4c7 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x71a18a4b nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8a12dc4d nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x004d3e33 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x57dffa0a nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x00811c84 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0e852d2e tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe9e54464 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xec6c9b61 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf5773504 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x18ffb7e6 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5b8f4ec7 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x688c0436 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7a1babc5 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x83db4ba2 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x86170234 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbf856241 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf64ba076 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6380f908 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd9169898 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe5f86441 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x43b3ba9d ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5c444985 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6fb7d473 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x33d600ab udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4ae33f46 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7b9bd893 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0aacc4f1 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3be293e7 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x914bd623 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x247e343b nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0fbc9ebf nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x87196e83 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9d1d08c9 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb9f5c9fe nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc4e978a3 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdaf0463e nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf46c1894 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xcbc29c30 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x14f99396 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3a1dacb1 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb8ad654b nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xcd7b85cf nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe5f5c8ed nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x144774cb l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x17e49949 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x226091f7 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3618f77c l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4990439d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49bd75f2 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e4e4ee1 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6078598f l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x68d92f68 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x843bca1e l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c376451 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d4c9cee l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa72c995e l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab18bc7f l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0a2570f l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc189c76a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd41eb799 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xde839be8 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xedeb8e88 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf02a69ac l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1f9d64a l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x279fa72b l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8b8b2ebf l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x735d5227 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x07c81c13 ieee80211_iterate_stations_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13c31347 ieee80211_hw_restart_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv @@ -17633,318 +17639,318 @@ EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8c9d046 ieee80211_set_active_links EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb1fe2ec ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7bf8ceed mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7af23a7c mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x861e84b7 mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8f15aaed mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa0ea5558 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc31a9c00 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc93a4a92 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x18c3da75 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2195105c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa0b32320 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeca64781 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf7921f9f mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x13f74192 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15964599 ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x24efc2d5 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2da7beb6 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23afe4e7 ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c669bf9 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e9d5bb2 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46570a18 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f1e94e1 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40582add ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x438007b3 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x453a043c ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4737b282 ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6df4d299 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fe70cb3 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x641dfe50 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6d0ff212 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 0x7a3f14e3 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b00a005 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7cdc72c2 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fc9510e ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8619b1c3 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x92834eea ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a5e80c6 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 0xa19cd99e ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa45b978f ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfcda6bb ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee5d5f0c ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfcd9d590 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x09a2dae3 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8efdfbb1 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa0070859 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd883e984 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x16eabbb5 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3c3885a0 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5496ef06 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6625c68 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6717a03 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabc0d8b3 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4b5b5b3 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7ec0679 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea2e96a1 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4130d72 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x97c8ad97 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa468c996 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcec030a3 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcfa4f478 unregister_ip_vs_pe EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5aba9fda nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9b6e67eb nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x653795bb nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x85e8aa56 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa8be246f nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb2d711d4 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbc4e9939 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02d870ca nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a829611 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf3067f19 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf5388755 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c486b9 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x063e3d52 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08a61fa8 nf_ct_get_id EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10ee5519 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12f1ec35 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12facc4b nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x197a6010 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x217f8793 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21bf5c23 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2694d2df nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c85827f nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cb9ac19 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eb24b5f __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10071e03 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1344adb4 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x140628e6 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x166b1eea nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22c387f8 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x237d90ff nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24492d78 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x253a594b nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26dd263b nf_nat_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28befdb1 nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c5b7059 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ecb4e32 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3167261b nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31c8a64b nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3396faac nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38e15a00 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3983e9b4 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39fe3680 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a02638e nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ce68055 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dc119e5 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f07fb9e nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f68634c nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f9b9782 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29e2bdb9 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2df80097 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30c70d33 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30e529a7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34517bc6 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36236f98 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x369ba58e nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x378a41cf nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f125d3c nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42ee5791 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43de657b nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45159f51 nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x474f3e35 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b659c91 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d38473f nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e6e972c nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b881918 nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f22a2fc nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5012fad8 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x544f7dc2 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x552e1c2a nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55af6263 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a8aa763 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ba3ee12 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d7c9eff nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60fc7ee8 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x620075a8 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62a70ace nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x631ac676 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67947b9f __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68c3ca19 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f75b559 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53c5fb35 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x572d365c nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57b9d789 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58cc18c4 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59332985 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b7f5636 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fbaa4e6 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x642f9164 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x665a2907 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6788ffd3 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6840e9d6 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e2aedae nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5ec65f nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75c74aa7 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7687b618 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca63f19 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81a1c725 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8828b07f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a1aa13c nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7883943f nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b6621d3 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d20b00e nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x826037d9 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89cb0220 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b4118cf nf_confirm EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x977594db nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99946749 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99a61979 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a518329 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa127f8bf nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa184b0aa nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5a08bfc nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7cb0b52 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9d8c57e nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3b6234 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x967a4b02 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97f16bdf nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a9d22c8 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fc3c0b8 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1ecf17f nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa30a911a nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa356a65b nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa88049d2 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa30c7a8 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa3bc86a nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad8de09f __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae76bed5 nf_conntrack_unregister_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb05c0e07 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb33b37c3 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb33d0bca nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb346e83b nf_conntrack_in EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6b9cefb nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7588b17 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaede700 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbd0e1bd nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8d4d874 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfd3447f nf_conntrack_alloc 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 0xc5991663 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce7c9414 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3fff47e nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4287db1 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc51cf6c0 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6a14c74 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc1a461a nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd07e588b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2314e5b nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd281eed0 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd963e75b nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9e2cd35 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd22d280 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddc2a1b4 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe40ab2f4 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe58fe865 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8503af0 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe95cc32a __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb89a626 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd64191e1 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd65388db nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd871d6a9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd4608af nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe413a720 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe580a8b6 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7e8b779 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe83a57d5 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe851eb50 nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2687342 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed7b8e3a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2d1ac97 nf_conntrack_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6c05e4d nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9c5b904 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf454a0a6 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf51d9017 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7bb6340 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfaf3e77d nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffd26ca8 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7dfacb6a nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x25c641d2 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x890b8615 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd6efdf76 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf45319e3 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4098c583 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0a32171e nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0f2f03dd ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x107a0825 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6e9034ea ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc54ee40e ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd171c8c0 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd4b0e332 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7abd144 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x306bc63b nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5aa1bcb6 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x47aca678 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x818aa770 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xca822504 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06509c83 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x28c6b808 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3638b312 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x415223db flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4207b0d8 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4e05904e nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x54611cca nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x629ba1bc nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x686cec67 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x75f9b29b flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8493c54f nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc7123cea nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc74553ed nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcfbffad7 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe22dd56b flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe3dae414 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfe22ad8a flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x09885b91 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x18614aaa nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27dab393 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x362caa3e nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3b9c040d nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x16683b6d nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x677ab5e3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbd322ae6 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3f4ff82c get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb659da0 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x64a95051 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa3e7b9ef nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x18b1f14f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x23b86efb ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x48d24c09 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x63bc7c9f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa2416ca5 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcb587e06 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe078af5e nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x83ef3a21 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4b2d4fa6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0e43959a nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4e35b603 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x78e4d2d6 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c528777 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x255b485e nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2e5aa350 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3675ec39 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4b0ac779 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5472d4a1 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x62b7634c nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8621c1a7 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8cdcc949 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8eceec74 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8f4de20c flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9faf627e nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa3917d2a flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc3fc9b80 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd8589eb4 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2eda661 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4575182 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x163148a3 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29bcaa07 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x316b6438 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31b720d2 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x326ba8cb nf_nat_packet EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a908d20 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d01df75 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b3fa068 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89759d7a nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99110226 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaf56c3d2 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb851354d nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb9c253a0 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd62bf1e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x725a7e8a nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b2d2e1d nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b635049 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f8c26b7 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa19121e5 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa7c7d704 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb45c33c0 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb58ecb31 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb72f6c65 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcdb08ea1 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 0xdbe6e887 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeeabf0fc nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf23c5864 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfe0385c9 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08e4db09 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x134b7d7a nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1468fa9d synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd073951 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf601f071 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf780080b nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x03f64216 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0d3ed706 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0e7fd3ae synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2c498adf synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x46ad1d90 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5b078c15 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x71679d4e ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaf00dc39 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x487272fc synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x502a0ee4 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6315de8c synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8634c2e6 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc67d7e27 synproxy_send_client_synack_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xccafafec nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd4003d21 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd700099f nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00bf3039 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b7ad2be nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18a43b4e nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dbd407d nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x201bb297 nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20d462e0 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24bfc965 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x250a3429 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd5e88e14 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd7b7054f ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe2b058cc ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00aeae42 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04213a56 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07fc4c86 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a77b403 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f065f59 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11fa45a5 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1441795e nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16732326 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b036d41 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e296ce0 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28c8e5df nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a084157 __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 0x3e2071b7 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43b55ffe nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36a8142a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39d14708 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c7d2d06 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d8af217 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43514642 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47a58db6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4888ddab nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f63ae06 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x524c3996 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x538407b7 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e3e3c87 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x673ef5dd nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67652e7e nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6864dbb7 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c796c73 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x738cc175 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78bec34f nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c24ab37 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d8103e8 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84287d0d nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8987e1b6 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62fa88eb nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e9e632b nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73c44485 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x806fe845 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86473597 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b24ebf2 nft_set_lookup_global EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e2f3f8b nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93011a44 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9952f64c nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b54ecc8 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c911889 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d42983c nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x94e85773 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96f0e316 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa35f9512 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa78231a7 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9624473 __nft_release_basechain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5b11d9f nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc20bf7b nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe3ba8d2 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbec0fd3e nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcada141b nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc9c571a nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7efac80 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdad35162 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadd6a90c nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae876b58 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb10c180f nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf7c1d8e nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc413a6c8 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5a86df9 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf1391a1 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcc27cda nft_set_catchall_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdfc102df nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdfeea0a3 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0403027 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe1369041 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7df32a7 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed4f7fb9 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9ef85e0 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec9e45ce nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xedbd9c27 nft_meta_set_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf34237a1 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf38ef446 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4382b498 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f4c93e3 nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6511ca9c nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bc28295 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8d81d277 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x80e4f7ca nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x967303de nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaa2297a1 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbc9eed51 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc3685183 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc39bdb9f nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf16c53fa nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfb413b5e nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd0d645c nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x78c0de5b nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8dc2fe6d nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xac82a698 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7d4bc479 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa3e01972 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x05e879d7 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd4444e7a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2e160522 nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xdf278d8b nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1c7be177 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4c0de5ee nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4d2583b7 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9830b09a nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd055cc5d nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x8a19fdf0 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4f4b5073 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x53b967da nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc2b57b52 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcf0f7580 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe612ca1f nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x07524980 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x43bdf419 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6bfaea09 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x30dacc2e nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x49fb36c4 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb6f46a79 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x09a94e54 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10bfa2b9 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d2c6c7e xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20b4fbff xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3aa77db7 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x08fd6ed6 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x205563b0 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21a54b24 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x363c064f xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x394bb75a xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5931b53d xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d8adcdb xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f69c53d xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x433b15ce xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b202d73 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x588e2d56 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7eb0afe4 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b1893e6 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5d9194b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2c2f840 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa814ed93 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9150b22 xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc2cd70e1 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9bfc726 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd057d62c xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda27a0b1 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd068372 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd0e34a0b xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe37c8805 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe8bf0ebe xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9c8ed21 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5a80258 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd899240 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf83341c4 xt_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x21fdade5 xt_rateest_put EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xcd78913a xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x50bb4289 nci_spi_read @@ -17955,439 +17961,439 @@ EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfa46d3af nci_uart_set_config EXPORT_SYMBOL_GPL net/nsh/nsh 0x26ca7042 nsh_pop EXPORT_SYMBOL_GPL net/nsh/nsh 0x8f11f1fd nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x02a50e7c ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0cd23962 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x44af5dad ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x59c5e6c5 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbc65b15a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9cba6a8 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x17d08eca psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x92effac4 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x9f53541f psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xab7ef30b psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x27285ad4 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4f622ff4 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x254746be ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2df3c425 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4fe994dc __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x52f66467 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd8c36a8c ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfc546f40 ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x126ed2ee psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x4a926bb8 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x4fe916b0 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xe9065ada psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7b9497d4 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 0xcdd64394 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa5050cd4 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf42f6b98 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0d4ffeb1 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x13336680 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x1624558a rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x2906fef3 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x00f6bce5 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0a5b22fd rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x17a08c6c rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x31772202 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x3445b9b7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x2ce4551b rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x42cc4853 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4b50ace2 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x54ad505d rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x558593bc rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4607f15f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x4a85ff82 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x54094334 rds_for_each_conn_info 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 0x70182aa9 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x7354f9a3 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x76e65742 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x76eb181c rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5a6ebe8c rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x5eb689a0 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x635d8511 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x641726ff rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x69d34013 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x78e5cb76 rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7edaa310 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x813f7062 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x824f2bf5 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x853c8cee rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x909dc307 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa0466f10 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xa97d17ee rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xa981dc0f rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xbf4748ac rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x818a72d4 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x87517304 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x93075d1d rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x93cbdbef rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa60f6d88 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xae3bbef9 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xb9aa7b10 rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd00140e0 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xd9c863db rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xe1aa9338 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xe4f7532e rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc5b51c08 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcdf4fda8 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xd5a11542 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe9bfcf6a rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xf043e643 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf6d1a253 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x388e4402 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5fb2a2f8 pie_process_dequeue +EXPORT_SYMBOL_GPL net/rds/rds 0xf61a1f33 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf8451a7e rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xff868b26 rds_trans_register EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x73c54adf pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa558af5c pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x0b86e245 taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x387d86f4 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x04e21f57 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x431b195a sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x924d7fee sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb89799b1 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x0c7fbb64 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x0d7ac3a6 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x23566d80 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x30f4e494 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5070f3b0 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x62bfb61c smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x6c767e43 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7190e550 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x82f95a42 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xbf27a068 smc_proto6 +EXPORT_SYMBOL_GPL net/sctp/sctp 0x169950b4 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7322b830 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x89f8d61e sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xef2c542d sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x1258ec33 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x238ef6d3 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x41424eab smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x6b752186 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x828ee0e8 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x9617c641 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xac2fa9a0 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xb2ddaaa6 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xe42fe324 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf7777cbb smc_hash_sk EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x425984e5 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 0x982c2404 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb8ebb8a3 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbbab52e9 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x774e3dff gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8a1b2776 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5d0499a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc5366e1e gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a3bb15 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024fad7e xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031108b5 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044d440e xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x048c1872 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00b5fcf1 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01bfc036 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02086d80 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0240d42f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028100fd xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02c57799 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0321c6e1 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x053791cf rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a29c98 xprt_alloc_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06566989 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0612f357 rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x068f8107 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f9bae8 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09035528 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0973b997 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c27e9a cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad57d6d svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6753fe xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0702d076 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0709aa10 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07319dc6 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07495361 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0929ff47 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09b1c4d3 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4ac4c8 svc_drop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10bf2461 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1149473b xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11fb4da1 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1277a6a7 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f87fed svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13adc3ec xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14375639 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15db8d37 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168d9007 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d60942 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d84d2c5 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e3e3df3 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e551ea4 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e649a64 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9f95ae rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fcf5df4 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ad6151 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140cb747 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14885212 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x157ad8d0 sunrpc_cache_unregister_pipefs 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 0x1848cc96 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1974cf59 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab5bd64 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6138e1 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18fc0dc4 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x195ae6f8 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aba1532 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8a2042 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c976783 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cac513c rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef684a2 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f6efcba sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f97a8e4 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2002c30f svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24341056 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24847a1f rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bd740d rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fcbe21 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266c9fd3 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27136ac6 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27142b7b svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287750a1 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2893137f xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28fedc2b xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f885d02 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x224b9593 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2381c6ca svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x249287b1 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24cbbc5f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x250d7bb0 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26502d32 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27918808 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28706ce8 rpc_cancel_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7df034 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da3932a rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc45306 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed34d5d rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f31cfe4 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30768820 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3076cac3 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314710f3 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29fb4fc2 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a368818 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ab44056 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0ab096 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bfd995d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c5a6b56 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c896447 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d8359bc rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c3af08 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3248cf6c svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328b0d97 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3364f62e xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340806a5 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35603a03 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x369a1c52 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37576d22 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37bc45fa xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x342dc2ac cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343846af xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343e2b6f rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34890cf0 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x355e6b92 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35b02295 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e4777b rpc_shutdown_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8fa9e7 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1e7775 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc8c156 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd9e03c svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e41cecb xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ee7f1d5 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f4463c6 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f58f6df svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x389ff44e xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395e5d32 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ae01a4 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dcfb135 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eeb7723 rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42477023 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430bc300 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44998255 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b364f9 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4683cf2a svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x475e32fa rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e1d71f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4abca6db sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4006c9ca svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ed28d1 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a058ef svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x446815f4 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44bfdf86 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451637aa unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472edf7c xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x497dbdbc xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a2c21f svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8dc6a3 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e586b0e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8e0fe3 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f76b09b svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510ff307 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52539102 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52fe99ed svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb8cae8 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f4ed453 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e6aa12 xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ce54a0 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55eb36f8 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56434c15 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57060120 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b63d62 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d1f286 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a37733d svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c9d9ad xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f2c0ff svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591fe9b2 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595a22fe gssd_running EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b94d0a6 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb52989 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c7eb2af rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf9ab6a sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d50733f rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e3968b9 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eabc175 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1335b4 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be5a8d5 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c000795 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf9bdf6 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e8b1432 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fd5358b svc_fill_write_vector EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60efab96 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x617d51a4 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64138d7f svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c56087 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fe099c rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661442dd rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x675a3b53 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d64ece rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6978654b rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d58c95c svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e234bc1 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0b94a3 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f59bbf1 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7107edb7 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711b11ff rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6138d57b xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64099b50 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6411957d svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6412e67f rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x644e43ad svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647b4c04 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676e5a7f __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ac41d0 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69052e56 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69065a51 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a29a8a9 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b1f08f1 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b88db5f xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd29131 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dcbdda5 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e638357 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70fd4151 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x711c5809 xdr_set_pagelen EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7228619d cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734722b7 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b072c9 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7541c42c xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77c19ed9 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7817a066 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7817be50 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7963ab16 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9297cb cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d32d3db rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7340fca5 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740cc392 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74394cf6 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76304615 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76379ff3 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a117c11 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a88483f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a9112a4 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd8411e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd8cb02 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c72c9d3 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf4c733 svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e485fb7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a5efbe rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82544711 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8422403f svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x843d6e29 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e95954 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8765f03a svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87d3c476 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x886d5070 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b018e85 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d73130d xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8daed8a6 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed75baf xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x907d9005 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90801d7c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e523af1 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f922133 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fcde671 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81dc483f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82405e3f svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x837bd699 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x857c6a83 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x884ee104 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c3bdb3f xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c7cd803 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6af539 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f91cd77 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9014daf6 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90793e57 rpcauth_init_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92e1407d rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9337f267 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9420afc9 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942cd791 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x945e6699 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b58a0b rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af1a7ab rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ba0e6dd rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c5ed00d xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa143853f rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a75bb5 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2defa59 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5681425 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c4e032 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa73ca866 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8572cef xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8ae043e xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7f950f xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa875e58 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaada555 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf2578e3 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf27046f svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95957e55 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96a3cea8 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96a94457 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9895cf19 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99bcf1aa rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7ef53f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f654afe xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8c6b7c rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe4e587 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0504fe2 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa148e60a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa151f893 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1acebcf rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c3ccc4 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2ae489a svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa30a8c68 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d0703d cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8e7d328 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92ba29e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b2f04a xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9a79d1 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac05b73b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc221d0 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae2370b2 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6833f1 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6d2f82 svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb05d0c51 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb09ce449 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3aa8f0e csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b3ea1e rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ef00a4 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafddcbfa xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb121f53b rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4306996 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ae38e5 rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb57e6270 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb58e7756 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65159ce xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7083057 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ef8bf5 rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c157f1 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e42be5 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3c1c32 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1ab5a4 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbe28a15 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc15bc3a sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe02e503 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe6d6df4 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf37e3b2 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf98856b rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb59ffd9e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb667ec90 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ab07d2 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb966b9c2 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbadeadfa xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaebd2e8 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb67b283 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbb71c89 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca8f870 rpc_destroy_pipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa68817 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfbd73b4 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa25d85 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa542ad rpc_release_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc096e4f4 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0a45f3c rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0bbe251 xprt_unlock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc150b84f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc15d2af9 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc167c497 rpc_clone_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc275a69c xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3604cfc read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc397b134 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d7e6aa xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc50cb5c9 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc571dc06 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b07af9 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1d0f9a3 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2652c6e rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc27f8eaa rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2fa3bd8 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4cff8c7 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc626e754 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc64b7183 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc69e6082 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a1a473 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc809abd3 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81b514b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8871720 rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98a46dc svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6a7516 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2be4f5 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc68bab7 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8f55202 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc981029a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca525754 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6bd8ed xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbca0972 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdae35e2 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce214061 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2b0b35 rpc_mkpipe_dentry EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee8ed47 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcef7bbd2 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf5b7ead rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09998d4 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd27de7d8 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3ba88df rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45733ab rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4cfc8a5 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4d8da55 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd516d6dd rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81da392 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88c7bca svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8cced97 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb889a2f xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc15f2f svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbdc51d1 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca1e3af rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd22b5ea7 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2535665 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3606b52 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4be6751 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5dd71fb svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89dd62a rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d0393f svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddc251fe svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde23226a svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde5f7edc rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1abac1e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe28ebd4f xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3484a06 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52b4adc svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddfc952e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffaafb9 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe154ff52 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1601fa1 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1da7e43 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29e1426 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46607a5 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d9960c xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe60af74a rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7a89d5b rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ce45c2 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b7a705 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f9aa92 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe717eb5f xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe811f748 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8383d12 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8cbe8ea bc_svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9659585 xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb107b19 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebba0935 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedaceeeb rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c0c575 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeace622c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb08444c svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6b80a9 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec4c9821 xprt_add_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef4a2ef1 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0e0a438 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1fa75f6 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf33e08fe xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf359e956 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4e80f51 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf586cb71 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f0dd07 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99792b2 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe058083 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe28ce54 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe74f248 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff177feb cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff70f55c sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb0ed4b svc_xprt_close -EXPORT_SYMBOL_GPL net/tls/tls 0x4ec074bd tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x78549e9f tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xa743dbb5 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xa8d03603 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0180f8b4 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef70a58c svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef832b76 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0951959 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1512940 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1babacb rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3b9642a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4186f2c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5e30837 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8328e98 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8401ce7 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa363fa read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe9345db rpc_proc_register +EXPORT_SYMBOL_GPL net/tls/tls 0x22503be1 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x6d73da48 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x7c30c6cb tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xe2904121 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x005aec8a virtio_transport_dgram_enqueue 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 0x0e44cba4 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e5dfd25 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1391931f virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x232d6436 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x254d98dd virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a29e5ab virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2df3bf93 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e7b1165 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31b6a30a virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38a47c00 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f5ca1a7 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41341aa2 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x473ed038 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e44b121 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ebbfce1 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f7c6a87 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68977735 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x699bd2f4 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78958b40 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ad29441 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9da991fd virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa272bef9 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb191e8f9 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26f97986 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a83d4cf virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2aac3852 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fbc657e virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fce7928 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x332e82dc virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cea48ea virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4507acd3 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4dc59017 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x540e7770 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x655cc7cc virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d7127e4 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x772be4cb virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79e2318a virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x838dbcc8 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x871aecbd virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87e6a80f virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8daded57 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8db072b8 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x989c654e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a32a15c virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa745ac7d virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa81093cf virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb91868e5 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 0xbe957916 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4f49de1 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcaa3237c virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcfed02b6 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8c930c9 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdab76788 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe54a6cd5 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb076e9b virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebe575f5 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef82c9fc virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08533739 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc349890 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd77028b virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4f1ee57 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6987af6 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeaccbb7b virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebcaec82 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3d4a622 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa8a4667 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd10f4ee virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0054e7ce vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00794c42 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19c3cad9 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x214050ab vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x236b35a4 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2391b919 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ea6735e vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10d1f23b vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13cb2e1b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19aeb4b3 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21c8fae6 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7961f7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f25cd61 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41583c58 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44f8d777 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45eea14b vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f2d661d vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53cd343e vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5a54d5cd vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76c383f3 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d955d21 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59a019f6 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x656f1fd5 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x820a893f vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x89046443 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95b45899 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x959f4118 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a90b054 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ff4468e vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa44cff5c vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa753c09b vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xab28de8e vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xace1b0db vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6185987 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2719540 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd554384b vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd84a7653 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe945290e vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb5125d7f vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xee6683d4 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf06c93cd vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfed2fd56 vsock_core_register +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00488257 cfg80211_vendor_cmd_reply EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x02e974ca cfg80211_wext_giwrts EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x054775b7 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42659ba8 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3dfbc0c8 cfg80211_wext_giwscan EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48e08ecf cfg80211_shutdown_all_interfaces EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b327f31 cfg80211_wext_giwmode EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x57ec46fb cfg80211_pmsr_report EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x623badbb cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x714d9d37 cfg80211_wext_giwscan EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9850fbce cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5f516a2 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb96866dd cfg80211_vendor_cmd_get_sender EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf6ef8d1 cfg80211_wext_giwname EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc35d4ee1 cfg80211_wext_siwrts EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xce46e0c1 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd73841a2 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde1aed9d cfg80211_vendor_cmd_get_sender EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe74f324b cfg80211_wext_siwmode EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xefab1f7b cfg80211_wext_giwrange EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname @@ -18402,10 +18408,10 @@ 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 0x444739b7 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x447efb19 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x56d964ad ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9cafd274 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2585711e ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x38b1767f ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8ead6931 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xed2f2d4a 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/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock @@ -19149,15 +19155,17 @@ EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0x0001fd66 mtd_read_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x0004a385 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x000a4b27 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x000c9b28 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x001b72f9 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x001ed779 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x00240aec espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x002af407 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x00326628 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist EXPORT_SYMBOL_GPL vmlinux 0x005aafff devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x007a91bb nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x007b6863 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x007df278 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x0081ab26 follow_pte @@ -19167,31 +19175,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x00a03fd8 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x00c02366 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x00c10e1c tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x00cc4859 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d99925 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x00dd95af irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x00e15b0e snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL vmlinux 0x00e6b09d mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0x0105e18a dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x01117fef reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0118b204 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x0122b10e pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x01352252 __put_net EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x014fccdf ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu EXPORT_SYMBOL_GPL vmlinux 0x0163c53c get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x016fcfa5 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x0178344f devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x01857df5 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0189d92c ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0x018ab15c PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x018f9d5d skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x0190bfb5 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x019cf27c mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x01c056ee ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x01c1ef41 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01ca8c88 ping_close EXPORT_SYMBOL_GPL vmlinux 0x01d4f6b6 vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01e2520e device_store_ulong @@ -19199,12 +19207,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire EXPORT_SYMBOL_GPL vmlinux 0x0212b764 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x02187d4c gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x022d69a6 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x022e1fb9 usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise EXPORT_SYMBOL_GPL vmlinux 0x023de970 snd_soc_dapm_mixer_update_power EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x02515e4d devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x0259f086 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x026df9a1 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup EXPORT_SYMBOL_GPL vmlinux 0x026f9d40 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x02908dbc amba_device_alloc @@ -19216,14 +19225,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table EXPORT_SYMBOL_GPL vmlinux 0x02d5ea99 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x02d9744d tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x02dcbe17 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x02df73bf blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02eeffe7 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x02f1e9df find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x0306e02e debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03146728 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0323fe52 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0335a63a register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x033d6f69 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x033e00bb snd_soc_component_compr_get_caps @@ -19231,19 +19244,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x03515b0a gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0x03533a33 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x0354e6f7 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x03565b5e alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x0367fcf6 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x0371b879 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x03827561 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0396cc73 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x039f6715 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03b5a098 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x03d4190e peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x03f10f93 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x03f3a8a3 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x04069d4e task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr EXPORT_SYMBOL_GPL vmlinux 0x041695f7 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x04178de1 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x041a173f devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x04206c1a devres_get EXPORT_SYMBOL_GPL vmlinux 0x042964c0 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x0438c76c gpiod_set_debounce @@ -19252,9 +19269,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046c3b0d sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x04734255 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x047c92f9 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x047cc2e8 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x048685b9 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x04955691 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x049cb4ea kthread_flush_worker @@ -19273,13 +19290,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch EXPORT_SYMBOL_GPL vmlinux 0x051ed688 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x051f5987 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x0528c5cd sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x052f415c irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x053ffb32 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x0558d4ee pci_doe_submit_task EXPORT_SYMBOL_GPL vmlinux 0x055fb9eb register_virtio_device @@ -19289,7 +19303,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x0574c13e pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x057c4411 kthread_data EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058f2b24 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x058f347b l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x0591494f bio_trim EXPORT_SYMBOL_GPL vmlinux 0x05a05b97 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x05a06d5a pm_genpd_remove_subdomain @@ -19301,6 +19315,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x05cdcd58 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x05e334be add_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0x05e34897 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x05e55ba2 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x05e7ff37 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x05ef2313 null_dailink_component EXPORT_SYMBOL_GPL vmlinux 0x05f25c32 da903x_write @@ -19312,9 +19327,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x0644b574 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0664c97e ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x0669093f ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0x066930e5 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL vmlinux 0x066c45f4 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x0681117c pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x068a75c6 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x0684b70e xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x0697886f dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x069acbc8 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x069b1d42 sysfs_remove_groups @@ -19322,44 +19340,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x06a2aed9 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x06a3562e mtd_add_partition EXPORT_SYMBOL_GPL vmlinux 0x06a5a3a8 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x06b1ab13 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x06b4be05 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x06b219e3 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x06b88fe7 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06ccd63b lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x06cd1fc6 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x06d4ed79 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x06def5c8 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x06e152e7 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0x06e4e9d1 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x06e97352 component_add EXPORT_SYMBOL_GPL vmlinux 0x06ed6508 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x06f4223a ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x06f785bb inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x0716e3b0 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x072d5f50 gadget_find_ep_by_name EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x075f2c4a ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x0762acd9 vcap_rule_iter EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076b539c int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x077560c2 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x077f805e snd_hwparams_to_dma_slave_config EXPORT_SYMBOL_GPL vmlinux 0x07824f65 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x07a6519f fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07bf90ca sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x07c04ccd host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x07c2f494 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x07c958fb nand_get_small_page_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x07d17953 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x07e5b6d7 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x07e60d7a sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x07ed23c6 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x07ee63fb ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x07f41bf7 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x08039e3e clockevent_delta2ns @@ -19368,23 +19385,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x081d790c disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x081e6a75 regmap_field_test_bits EXPORT_SYMBOL_GPL vmlinux 0x081ef4ae dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x08239cf5 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0820f359 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x08292bd3 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x0838011f security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x0838a47f aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x084a92e8 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x0850d56c inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x08746e6a md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x08919704 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x089ec43e cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x089f67da ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x08a525c1 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x08a77f14 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x08ac6d90 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x08bdfec6 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x091c5eaf usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09347a26 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x093b7ece device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x093f95ec dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x094833db ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL vmlinux 0x096a2921 usb_get_phy @@ -19398,11 +19418,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x09aa0343 snd_soc_dai_set_channel_map EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09b76052 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x09b824f1 ping_close EXPORT_SYMBOL_GPL vmlinux 0x09c099f5 of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0x09e32296 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09e9dfbd sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x09f95a27 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x09f9c8f1 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0x09fdee02 regcache_mark_dirty @@ -19411,21 +19431,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a2b51b1 snd_soc_add_component_controls EXPORT_SYMBOL_GPL vmlinux 0x0a2ec820 dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x0a3ae895 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x0a3f140b __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x0a52a7b0 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x0a565041 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0a6ca4bc sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0a723e40 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x0a8228c1 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x0a8a303b sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0x0a8dcb3b ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x0aa22d98 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x0ac4be03 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x0ac8a31f i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge EXPORT_SYMBOL_GPL vmlinux 0x0aea9230 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x0aeacdec nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x0aebf7ad debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x0af16cae transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x0afc8808 devm_release_action @@ -19433,12 +19448,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b131cf8 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x0b253f85 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource EXPORT_SYMBOL_GPL vmlinux 0x0b2edff6 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0b4bbe2f tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x0b53a851 user_describe EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status EXPORT_SYMBOL_GPL vmlinux 0x0b720b51 nand_select_target @@ -19446,8 +19459,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x0b78570a pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x0b78c4a2 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x0b7cde85 snd_devm_card_new -EXPORT_SYMBOL_GPL vmlinux 0x0b7f451e get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x0b98c1a1 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x0ba5f142 usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x0babe3f3 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor @@ -19455,15 +19466,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x0bb84bb4 edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x0bb9c5db __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x0bbe82b3 sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x0bd5adab __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x0bd43ff5 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x0bda0f85 of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x0beab600 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfe822a elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x0c07ad83 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x0c0edad6 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x0c150684 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x0c1c7f57 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x0c240495 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x0c255f4a mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x0c300730 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c335485 of_nvmem_device_get @@ -19471,27 +19485,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x0c532575 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x0c668a33 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x0c6bfa40 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x0c715a97 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x0c79a67d __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x0c7d0b9f fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x0c8129f0 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c8adaf2 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x0ca2f813 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x0ca44d2d ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0caa9ca0 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0cabc363 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x0cc815df snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0cc92a8c ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0ccd35aa fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x0cd0fe2b __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x0cd86710 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x0cdf4884 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x0ce3ca8b wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x0ce63297 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x0d02e5a4 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d0b418e register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x0d1213b8 handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0x0d1ef83a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0d214045 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x0d244025 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x0d246d58 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0d2e58f4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d368bfa ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe @@ -19507,13 +19523,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x0d8623d3 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x0d8d6a31 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d9c10a1 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x0dab3bfb ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x0daeb489 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x0daf8ef3 clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x0dc7a5a6 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x0dc8b3b9 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x0dcfdf9c mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x0dcffca4 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x0dd191d7 snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order @@ -19526,11 +19538,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure EXPORT_SYMBOL_GPL vmlinux 0x0e2f87b3 hte_push_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x0e3454bc snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x0e47b1d0 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x0e48f21a powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x0e49d94f gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x0e5278de pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x0e579d06 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x0e85f062 set_capacity_and_notify @@ -19538,29 +19548,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x0e8c3b4f devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x0e967bb0 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x0ea5d859 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x0eaf0e68 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x0eb2ca0d of_property_read_u32_index EXPORT_SYMBOL_GPL vmlinux 0x0ebf6933 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id EXPORT_SYMBOL_GPL vmlinux 0x0ed2e6ec hte_ts_get EXPORT_SYMBOL_GPL vmlinux 0x0ed7bf32 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x0ed9a763 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x0eda495b meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x0ef6838f device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x0f00025b phy_init +EXPORT_SYMBOL_GPL vmlinux 0x0f01f660 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x0f0a6b89 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x0f0bfc9a fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x0f0d762e ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f2eb2bd ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0x0f39c904 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x0f498fa8 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x0f46fcc1 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x0f4c928c kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x0f4fa381 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x0f503081 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x0f6e0f92 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x0f664896 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x0f76e7ac ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name EXPORT_SYMBOL_GPL vmlinux 0x0f8175a6 pinctrl_generic_get_group_name @@ -19569,32 +19578,35 @@ EXPORT_SYMBOL_GPL vmlinux 0x0f926df7 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x0f9732d4 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x0fa8e4bb mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fc6b9e6 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0x0fd59af1 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x0fd829fe shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x0fe52d3d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x0fefbac1 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x0ff185b4 tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine EXPORT_SYMBOL_GPL vmlinux 0x1004552d tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on EXPORT_SYMBOL_GPL vmlinux 0x101a9aae pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x101b7ec8 io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0x1043b3f9 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0x10539ddf devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0x1060c3df class_interface_register EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x106fda60 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x107bbbe9 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x1083f2b9 mtk_clk_unregister_ref2usb_tx EXPORT_SYMBOL_GPL vmlinux 0x10869f3c vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x10992538 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x10a8df95 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0x10b3516f rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash EXPORT_SYMBOL_GPL vmlinux 0x10c45701 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x10d24e39 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10df220d sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x10eb209c mtd_is_locked EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x11033ead unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x110891fd clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits @@ -19603,28 +19615,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x111683e8 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x114610d0 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x114ca7fa switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x114fc65a md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x115a2938 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x115b0009 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x115ba00c l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x116a8187 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0x1171c909 ZSTD_getErrorName EXPORT_SYMBOL_GPL vmlinux 0x11778c8f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x1177bef6 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x117dc1da vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x1190b2a4 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x11c6d1f6 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x11d068d2 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x11ca19a7 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x11d2a028 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0x11d89227 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e23df0 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x11ea0cc1 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0x11f1d194 ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x11f32910 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x120dd63a __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier EXPORT_SYMBOL_GPL vmlinux 0x121de648 usb_gen_phy_init EXPORT_SYMBOL_GPL vmlinux 0x121fdc5e snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x122ee6c1 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1260f0f3 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x1266b1f6 mtk_pinconf_adv_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x126800e5 regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x126d5ccd cpts_tx_timestamp @@ -19632,9 +19646,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x12763b81 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x1280e104 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x1284a4db bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x1293876b dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x12b64769 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x12a94d90 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x12b93e65 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x12b9c5d3 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x12bd1c39 hrtimer_sleeper_start_expires @@ -19645,6 +19660,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x12dcf63e class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x12dfba91 device_rename EXPORT_SYMBOL_GPL vmlinux 0x12fea4df blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x130037b2 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x13066b29 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0x13085afe dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x130a036f cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x130cfb92 pm_generic_freeze @@ -19655,7 +19672,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x13315485 devm_clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk EXPORT_SYMBOL_GPL vmlinux 0x13411437 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x13420405 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x1354926d snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL vmlinux 0x1359f495 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x136020d8 crypto_alloc_acomp @@ -19664,28 +19680,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x13815497 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13a46508 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x13abf3fb ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x13bfecc5 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x13c77274 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x13dcfcb4 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x13e03587 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fc5fe8 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x1411c723 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x1417256b led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x1419068f usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1428d67d nf_queue EXPORT_SYMBOL_GPL vmlinux 0x144d7386 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x14627ead pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x1475cf75 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x147a7a59 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x14884acc perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x148b5c68 msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x148efe6a __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x14939fda snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL vmlinux 0x1498081c posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x14afabfa dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x14b03668 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x14bd0321 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x14d31d06 fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x14f39108 ohci_hub_status_data @@ -19695,7 +19711,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1527c865 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x152ac537 tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x1531a699 vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0x1538874f fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x1538bbbe PageHuge EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15440f5b device_match_devt @@ -19703,7 +19718,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x15659942 xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0x156e3106 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x157b15ba cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x157e49a9 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts EXPORT_SYMBOL_GPL vmlinux 0x159c312e relay_flush EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register @@ -19713,7 +19728,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x15b14106 cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x16048c48 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x160fccf0 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x16133972 snd_soc_component_exit_regmap EXPORT_SYMBOL_GPL vmlinux 0x161c36b6 dev_pm_domain_set @@ -19747,18 +19761,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x172a593b snd_soc_component_compr_open EXPORT_SYMBOL_GPL vmlinux 0x173d3a7d usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x173e2eea do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x17402823 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x173ecc17 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x1743c1dd hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174fcdc6 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x17523302 ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0x1755fa6e of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x175de67f sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1767c951 ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0x176c1ded blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x17792886 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x178731cb subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x1793511c dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x17971271 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x179e41ef snd_dmaengine_pcm_refine_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0x17a55729 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x17ab9c03 regulator_set_load @@ -19766,24 +19782,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x17b757e0 usb_string EXPORT_SYMBOL_GPL vmlinux 0x17cfb200 pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0x17d9ec30 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x17e6deef ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x17ebb36a fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x17fe8eb0 devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize EXPORT_SYMBOL_GPL vmlinux 0x1812197c relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0x181cfe57 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x18251be5 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x1822838d ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x18308dc2 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x18309432 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x183fd8b0 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x18484513 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1855de3c ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18646184 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x186a4286 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x188018ac meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x18897420 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x18b51638 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x18beb768 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x18d9cabe regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x18da1e2c lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg @@ -19791,7 +19806,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x18ea6523 snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x1904ed32 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x19072db3 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x190c8e11 iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x190e0112 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x19145e50 dmi_kobj @@ -19800,30 +19814,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x191ff086 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x19262737 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x1937e053 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x194100d1 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0x19585993 nanddev_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x1977bd72 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x198c866e strp_process EXPORT_SYMBOL_GPL vmlinux 0x19978f71 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled EXPORT_SYMBOL_GPL vmlinux 0x19a3e0a0 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x19b0f992 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x19b302ff musb_root_disconnect EXPORT_SYMBOL_GPL vmlinux 0x19bad8ce bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x19bc1059 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c22101 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x19c2eb17 snd_soc_dapm_disable_pin EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str EXPORT_SYMBOL_GPL vmlinux 0x19e4dadf fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener EXPORT_SYMBOL_GPL vmlinux 0x19faeb70 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x1a03110e bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x1a05c249 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x1a103dbc badblocks_init EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a10dae4 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string EXPORT_SYMBOL_GPL vmlinux 0x1a171c47 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x1a1d916d __irq_resolve_mapping @@ -19835,16 +19848,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x1a5cdf75 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x1a5fac38 of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a79830d espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x1a86e636 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x1a9348ad __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x1a952f40 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1a9770a0 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x1a97a244 dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0x1aa35062 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1aad8846 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1ab2ae8d bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x1ac3966f ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x1ac6d18f device_destroy EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full @@ -19852,36 +19860,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x1b0970a0 mxic_ecc_process_data_pipelined EXPORT_SYMBOL_GPL vmlinux 0x1b098741 __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x1b15daff snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0x1b33ee6f ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x1b498f02 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x1b2964a1 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x1b638dd7 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x1b63d90a iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x1b6498e6 snd_soc_component_write EXPORT_SYMBOL_GPL vmlinux 0x1b67e4e2 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x1b6d1784 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x1b6f3027 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x1b844ec3 irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1b960d63 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1bade7c6 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x1baf8fe3 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x1bbae7dc mtd_del_partition EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bd29890 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf7f28a nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x1bf86cf8 __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x1c05f45e crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x1c1fec8c dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1c1bd24b xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1c1daac4 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c2ddf56 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1c30b537 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x1c317b80 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x1c3ad417 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1c3b8358 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x1c4e70b1 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5931c1 nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs @@ -19894,11 +19896,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c7a6a2e mpc8xxx_spi_tx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x1c7e9685 irq_gc_noop EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c86a3b3 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c86dd0a tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c88f130 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x1c8cda83 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x1ca52892 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x1cad8a59 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x1caefa01 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x1cb4160e iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0x1cb665c6 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0x1cb8edab musb_interrupt @@ -19908,21 +19912,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral EXPORT_SYMBOL_GPL vmlinux 0x1cdf0a82 pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x1ce58a5c phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x1ce67980 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x1ce811ca sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x1cea3104 rhashtable_walk_start_check EXPORT_SYMBOL_GPL vmlinux 0x1cf1e3e7 usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL vmlinux 0x1cf728a5 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x1d0e4da3 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x1d194a2d power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d22dc91 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x1d254cfb led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x1d2c5180 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x1d332b48 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d3e7b0c netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x1d51b9d9 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x1d52d22b devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x1d53a29b regmap_register_patch @@ -19930,25 +19930,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x1d616e78 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x1d668ee0 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d7af6eb sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x1d876d4a snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x1d876f3d strp_done EXPORT_SYMBOL_GPL vmlinux 0x1d885c09 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x1d8d84f2 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1d8f232d dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle EXPORT_SYMBOL_GPL vmlinux 0x1db979eb usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x1dba54d1 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1dbd6540 sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0x1dc672f8 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x1dcc9a6d xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x1de91f41 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x1df1d42e rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x1df681f0 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1dfd77e3 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x1e016857 nand_prog_page_end_op EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0920c5 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x1e0d1d4c mtk_clk_unregister_plls EXPORT_SYMBOL_GPL vmlinux 0x1e168d26 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0x1e230afa ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1e2bac48 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1e2bb111 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x1e2c4160 strp_stop EXPORT_SYMBOL_GPL vmlinux 0x1e3c57bd umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x1e4e92ba extcon_get_edev_name @@ -19963,12 +19968,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e91d550 usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0x1e99c8be user_read EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eb025dc devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebc5a42 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ebc83ab phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed2b316 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x1ed82965 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x1edbe8c6 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x1ee57a41 tps65912_device_exit @@ -19978,6 +19981,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f18f10c sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x1f24b1e7 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x1f26c498 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x1f27135c ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x1f27d3a1 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x1f2e1a15 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x1f32045b fat_get_dotdot_entry @@ -19988,6 +19992,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f610914 bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0x1f6f4b5e iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0x1f763464 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f770c40 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1f7da953 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout @@ -19999,25 +20004,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fe8554c genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1fe8c689 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x1febb8b2 mtk_hw_get_value EXPORT_SYMBOL_GPL vmlinux 0x1febc3cb mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x20008ad7 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x2007de21 of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x200efddf mt_prev EXPORT_SYMBOL_GPL vmlinux 0x201516a4 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x201b44d4 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x202ae397 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x202c351a ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x203e31e6 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x203f4a3f ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x2050863e da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x2068efcc pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x206b2b76 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x20742292 kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x20766775 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x2076e8bf xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2099020b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x208f25de sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x209a583d kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x20a51af0 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x20b133eb ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x20b607b1 devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x20b7550e gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x20b7dcea genphy_c45_pma_read_abilities @@ -20039,15 +20046,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x21763036 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x218b60b7 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x2193dfd0 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x219d26c4 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x21a43a12 devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x21a43f94 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21a9138a rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21b52946 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21c8ea8f inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21d98d63 ima_inode_hash @@ -20056,28 +20062,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x222b7540 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x22350929 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x2237d3f4 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x22399887 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x2250e5b8 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x2255acbb crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x22560794 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x2263e315 mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x22689f71 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x227086e7 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x2272fdea rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0x2277cf14 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x227a04e0 snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x2293efce scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x22955f14 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x22990d8b dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x22a55d6f crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22ab927f xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x22abf8ed mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x22b04801 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x22cc760e generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends EXPORT_SYMBOL_GPL vmlinux 0x22ea8ae8 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x22eabe0f usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x22fe0dbc regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x2303ea36 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x2305580c mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0x23166849 pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x2329374b of_platform_default_populate @@ -20085,6 +20089,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put EXPORT_SYMBOL_GPL vmlinux 0x234dbfb8 pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x2356a7cc bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x235bbce2 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x235ddcdc i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x236d7701 i2c_get_device_id @@ -20095,27 +20100,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x23935d9d __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x2393e395 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a5f77d ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x23a8c5e4 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x23ac4d8a ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x23aeed6a i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x23b10f30 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause EXPORT_SYMBOL_GPL vmlinux 0x23ba62c7 snd_soc_dpcm_can_be_params EXPORT_SYMBOL_GPL vmlinux 0x23bad46d genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x23c174cb __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x23d04c6e fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x23f76172 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23d62aec ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x2421af71 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x242afeee irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x24309fe1 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0x24481a87 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x2448a32d bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x244a8d72 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2468d251 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x246b84a4 r9a06g032_sysctrl_set_dmamux +EXPORT_SYMBOL_GPL vmlinux 0x246dd514 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x246e5171 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x2480c577 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x2486c29d devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x2488c84b gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x248a7745 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x24924d00 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x24935cd5 devm_nvdimm_memremap @@ -20127,8 +20134,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x24c82133 xas_store EXPORT_SYMBOL_GPL vmlinux 0x24ccaa51 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x24d0cdec snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x24d5ea7a phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24ea81f2 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister @@ -20140,35 +20147,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x253b4b86 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x25423c6f fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x2546ab60 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x254b7e44 balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x256e5a42 devm_register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0x25740313 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x257b6964 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259bcf43 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x259febe9 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2598e310 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x25b249ed ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs EXPORT_SYMBOL_GPL vmlinux 0x25d18ef5 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x25ddb4e6 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x25e0b488 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x25f72629 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x26220c34 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x262793b4 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x26315010 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x2634872a pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x2642b2b7 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x265014bd ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265a7766 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x2666efb0 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock EXPORT_SYMBOL_GPL vmlinux 0x26720e80 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x267cff00 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268d378e bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x26953f5d ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x26982b7c __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x26c3aee6 dma_resv_get_fences @@ -20177,23 +20180,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x26ca9979 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x26e94e94 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26ff6c7d msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x2709b163 mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x270f7b4e crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x271d42a9 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x271ee2b6 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x272d5c50 pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2753bbd2 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x275e90e7 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x2771c107 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x27a7ef34 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x27ac1fcc __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x27c6d8d9 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x27c75cee __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x27d0dc2a dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x27dde711 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x27e0487e kthread_park EXPORT_SYMBOL_GPL vmlinux 0x27e8c836 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter @@ -20215,17 +20214,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x2878562c usb_udc_vbus_handler EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x288798fd synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x28a590e2 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x2888af66 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x28958561 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x28a7db63 nd_fletcher64 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 0x28b6e28d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28b794bc iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x28bf0b70 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x28e30426 i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0x28e54840 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x28e5c822 mas_store EXPORT_SYMBOL_GPL vmlinux 0x28eac003 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x28efa89c perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x28f1f447 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x28f1f793 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x28faf984 pcie_port_find_device @@ -20236,17 +20239,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x2914caa0 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x29157809 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291fbd8b devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x292702d5 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x292aa1b0 mtd_panic_write EXPORT_SYMBOL_GPL vmlinux 0x292cbee1 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x29305b5b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x29317b13 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295ffac3 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x2960556c pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x296a4a21 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x29717446 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2974543c ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x29757dbf trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x297e05ec rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x297fad9e fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x29802638 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x2982ce2a pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0x29867811 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x29a3b030 virtqueue_is_broken @@ -20255,39 +20261,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x29b95892 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x29c21a0f power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x29c23715 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x29c31a04 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x29c7a496 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x29d164fe regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x29dd55ad receive_fd EXPORT_SYMBOL_GPL vmlinux 0x29e4f27d tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x29f39d4b fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x2a06163a device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x2a2ab222 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2a28d0ae do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x2a2d92c1 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms EXPORT_SYMBOL_GPL vmlinux 0x2a344cb6 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0x2a385be8 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x2a421d55 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x2a4a1c5e platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x2a4a55ab wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x2a62918a gpiod_set_transitory 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 0x2a81a4f9 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x2a84fbb5 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x2a8ece53 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2a889650 put_pid EXPORT_SYMBOL_GPL vmlinux 0x2a971d65 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a99cf69 cpts_register EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aa2a6b9 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update EXPORT_SYMBOL_GPL vmlinux 0x2ab12b5f crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x2ac103cb cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x2ac3fabd sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x2ac7cc96 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2ac850fc ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x2acb84d6 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x2acfef39 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0x2adf930e regulator_unregister_supply_alias @@ -20298,16 +20301,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x2af8dad2 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x2afba396 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x2b17b722 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b29563d __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2b3a77de ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x2b3fa5fb pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2b425368 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b602b4d vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b7433af task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x2b758d18 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x2b843da5 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x2b99aae8 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x2babaaec crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x2baeeffa dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x2bc84084 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x2bd42168 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending @@ -20315,16 +20320,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x2bfbdb79 sdhci_pltfm_unregister EXPORT_SYMBOL_GPL vmlinux 0x2c000275 mtk_clk_gate_ops_no_setclr EXPORT_SYMBOL_GPL vmlinux 0x2c00865a extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x2c0ed0db __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x2c15cdd3 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c22062f snd_soc_put_strobe EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c3ba608 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x2c48514e xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x2c4aa2d8 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x2c4b17dd usb_gadget_frame_number EXPORT_SYMBOL_GPL vmlinux 0x2c4c0bb5 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2c5a5352 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x2c5efbe9 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put @@ -20333,7 +20336,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e4153 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x2c910a04 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x2caa97db devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x2cb2314d mbox_controller_register @@ -20344,8 +20346,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x2d0de179 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x2d148754 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2798a4 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d3036fc crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x2d350432 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off EXPORT_SYMBOL_GPL vmlinux 0x2d36f5ec crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x2d3f7999 invalidate_inode_pages2_range @@ -20354,17 +20358,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access EXPORT_SYMBOL_GPL vmlinux 0x2d69c2ed led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x2d6e16ca ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x2d77c391 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x2d833cc4 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x2d8b84db usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0x2d8bd3b6 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x2d9bd589 ahci_platform_assert_rsts EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x2dbd7e74 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x2dc1c69b ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x2dcba2fb kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x2dcdd3fc fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2dcf8b1b ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x2dcfc6c3 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x2dd719a2 mtk_clk_simple_remove EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed @@ -20372,7 +20374,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2dfe6411 iommu_detach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x2e002868 anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e0c49a8 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace EXPORT_SYMBOL_GPL vmlinux 0x2e3ed325 otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 @@ -20397,23 +20398,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x2f06a665 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f1410cd sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x2f1ad82a blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x2f1ce426 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f1f6781 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x2f229f13 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x2f2e262e bio_poll EXPORT_SYMBOL_GPL vmlinux 0x2f30368b sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x2f30c20c dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x2f3e704f tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x2f441c8d trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x2f5858be rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x2f5cd3dd mvebu_mbus_add_window_by_id EXPORT_SYMBOL_GPL vmlinux 0x2f5f1abb devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x2f6dfbdf vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x2f81ba0b sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x2f8592c4 __devm_clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x2f8ad3b3 ahci_shost_groups EXPORT_SYMBOL_GPL vmlinux 0x2f8bb288 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x2f8ff9fc inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x2f995d45 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x2fa45eda edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x2faab801 pm_clk_add_notifier @@ -20425,11 +20426,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj EXPORT_SYMBOL_GPL vmlinux 0x2fd47035 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x2fdde47e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2ff634d4 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x2ffa5502 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x30038faa of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x3013ec5b __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x30237e13 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x30250288 devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x302d9ee8 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL vmlinux 0x302dd1b3 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x30372d50 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x304e97c6 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x304f3672 pinconf_generic_parse_dt_config @@ -20441,15 +20445,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x30982d75 devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30becfc0 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x30b03e37 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x30c0f561 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x30c2c554 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x30d13d47 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x30e3beb0 mtd_lock EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x310b698a __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x31215c5b sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single EXPORT_SYMBOL_GPL vmlinux 0x3146f689 pci_disable_ats @@ -20457,22 +20458,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x3155ee90 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x31597f06 wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0x31641242 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x317202bc nf_route EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x3198f895 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x31a269c3 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x31a40acb __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu EXPORT_SYMBOL_GPL vmlinux 0x31b1da04 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x31b2e848 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x31b43185 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x31b61b0e dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x31c42401 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31cd02b8 mas_walk EXPORT_SYMBOL_GPL vmlinux 0x31d23d74 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x31d8f6a5 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x31d98cff da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x3200d9cf blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x320c8ec9 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x32159692 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x32324811 of_property_match_string @@ -20480,19 +20483,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x323747d1 snd_soc_component_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0x323de0e5 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x324a0368 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x326cd767 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x326e4601 __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0x327349e0 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x328165b5 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x3292f93c l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x329686e7 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x32bbb262 snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cfa537 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x32d92a72 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x32f4c0a2 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x32e0648b skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x32f12107 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x331952c2 sdhci_end_tuning EXPORT_SYMBOL_GPL vmlinux 0x331d2050 tpm2_probe @@ -20500,28 +20502,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x33392b14 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x333f56d2 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x334383e2 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x334b8632 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x3353341c wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x335ab8d2 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x33645433 snd_soc_dai_set_bclk_ratio EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x336bb517 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x3371826a gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x338e7bd0 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x33904a1c sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x33a1f8d5 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x33ae653f __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x33ba46f4 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x33c64087 usb_gadget_check_config EXPORT_SYMBOL_GPL vmlinux 0x33c7e37d gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x33ccf42c of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x33cf4c13 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x33e10e0b bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x33e4784a raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x33eec9ff mtd_writev EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f477da ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x33f85a41 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x33fd5ead da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3405b10a ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0x3423124b crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x34245078 bio_associate_blkg_from_css @@ -20534,8 +20538,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x3457e04b bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x34794272 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x349011b7 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x34930a44 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x349e1cb8 of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x34a3b6f3 wakeup_source_add @@ -20545,28 +20547,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x34ae35e6 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x34c175ae ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x34ccc1c5 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x34cd8cd8 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x34d017d2 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x34d0bcdf led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x34d43d24 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x34dae4e3 ahci_platform_enable_resources EXPORT_SYMBOL_GPL vmlinux 0x34dbc133 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34e76764 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x34ebc22d dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x34f686ed snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x34fbefd2 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x351a0659 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x3523b5ee vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0x3525b025 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy EXPORT_SYMBOL_GPL vmlinux 0x353207c0 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x353a0b2c clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3543d685 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x353a9f4d ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x355c0fe8 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x355d1b94 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x35657b25 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x356c08e0 cpufreq_cpu_get_raw @@ -20581,19 +20580,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x35a5c964 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x35dca8d2 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x35df23fa of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x360657f4 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x36307a4c skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x3634537b fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks EXPORT_SYMBOL_GPL vmlinux 0x364826ae led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x364d49f1 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x365438ee gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x36578918 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365ebed7 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x3664adf9 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3664d836 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x36660b1b debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x3666cec8 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x367d9648 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x3682a9db ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs EXPORT_SYMBOL_GPL vmlinux 0x369a3f13 fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot @@ -20604,51 +20604,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x36df1a82 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x36e70824 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x36e77798 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x36ed6904 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x36f1e569 mas_pause EXPORT_SYMBOL_GPL vmlinux 0x36f8a233 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x37120c71 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x371aa83f gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x372ef1c6 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x372f1b7d __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3746c1df ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x374855e8 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x3765c99a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3765f85d find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0x3772192a xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x378254eb i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x3786b6f1 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x37a6986b snd_device_disconnect EXPORT_SYMBOL_GPL vmlinux 0x37b0d9ba usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x37ca4c38 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x37d01df8 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x37da77dc lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x37dbd49c hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x37eccb23 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x37fb6269 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x380318d0 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x3809e5e7 phy_modify EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x381402bd xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x381a84a4 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x3821cfa2 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x3822ab68 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x38266c37 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x382f8304 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x3836c97e simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x3853307b fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x38533835 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x385c4ef0 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x3861fb92 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x38681215 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x386967fd skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x3878937e fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x388cb919 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x389b5afc sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x38a43445 regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aa89a2 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x38b991b9 verify_signature EXPORT_SYMBOL_GPL vmlinux 0x38bcd95b mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update @@ -20669,10 +20661,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x3958ca91 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x396c66cf i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x39717efd pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x397a1108 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x397b9ef1 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x39888f44 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x39938f90 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string EXPORT_SYMBOL_GPL vmlinux 0x39ade127 rio_mport_get_physefb @@ -20680,10 +20671,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39c39a14 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x39d628cd dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x39ec11a3 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x39f0bbd0 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x3a02139a ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x3a14f027 sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a153f67 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x3a29105b __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3a31ab02 snd_soc_put_enum_double EXPORT_SYMBOL_GPL vmlinux 0x3a35b9d6 usb_gadget_unmap_request_by_dev @@ -20695,13 +20687,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a544c8c irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x3a584d02 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x3a612757 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a62d454 devlink_net EXPORT_SYMBOL_GPL vmlinux 0x3a648a6a fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x3a6df65a tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x3a7b4824 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x3a7f784c ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3ab70944 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x3ac9a02a mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource EXPORT_SYMBOL_GPL vmlinux 0x3ace4f48 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0x3acf34d2 da9052_regmap_config @@ -20712,8 +20703,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b07f8da pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x3b08a01d rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0x3b1458bf __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x3b216a54 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x3b1e2d3f seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x3b1f78c7 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x3b2491c1 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x3b43c5ee pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x3b475209 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release EXPORT_SYMBOL_GPL vmlinux 0x3b62227a vchan_tx_desc_free @@ -20721,28 +20714,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b74c064 irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0x3b913903 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3b993dc8 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x3b999f26 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x3bb09074 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register EXPORT_SYMBOL_GPL vmlinux 0x3bb4e3ba mtd_kmalloc_up_to EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdfef27 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x3be325f8 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3bf55856 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x3bf88c64 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x3bf98f43 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x3c005cdf __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x3c0938c6 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x3c1ac2f4 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c215279 mtk_mutex_get EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2eb80f perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x3c31b91f ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3c45d434 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x3c4b15f5 mtk_eint_do_resume EXPORT_SYMBOL_GPL vmlinux 0x3c511b56 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x3c5e2516 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c702a92 sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout EXPORT_SYMBOL_GPL vmlinux 0x3c94d3ec mtd_ooblayout_get_databytes EXPORT_SYMBOL_GPL vmlinux 0x3cac4488 shash_free_singlespawn_instance @@ -20757,27 +20754,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 EXPORT_SYMBOL_GPL vmlinux 0x3d052c96 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x3d0d1373 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x3d1fa034 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x3d2e80da sdhci_reset_tuning EXPORT_SYMBOL_GPL vmlinux 0x3d2fe466 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x3d31e9e3 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3c6cfa __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x3d4196f1 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x3d4cb2d4 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d5a7195 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x3d5b5fde fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x3d714301 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3d769be8 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x3d79577f synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x3d8277f2 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x3d852d6d inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d87b98d regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3d98b9c9 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x3d98ded2 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x3d99d9cc __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3d99e36c nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3d9c44cd tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x3da6830b tegra_mc_write_emem_configuration @@ -20787,6 +20779,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3debbd14 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x3e03b697 snd_soc_dapm_dai_free_widgets EXPORT_SYMBOL_GPL vmlinux 0x3e0759c2 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3e16fd41 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x3e199b89 pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x3e32d683 subsys_find_device_by_id @@ -20795,7 +20788,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3e3fc154 snd_soc_tplg_component_remove EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x3e464537 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3e4dd9f3 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x3e659b91 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x3e66ebd3 pci_test_config_bits @@ -20805,28 +20797,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms EXPORT_SYMBOL_GPL vmlinux 0x3ea27391 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0x3ea3c77c icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x3ea71a5f fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x3ead6e3b led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x3ebf618f mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x3ec14647 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ecc198c nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x3ed7243a mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put EXPORT_SYMBOL_GPL vmlinux 0x3eee6b4a omap_iommu_save_ctx EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f13bf38 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x3f1ae786 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x3f206296 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f240920 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x3f338ea7 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x3f3d1e46 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset EXPORT_SYMBOL_GPL vmlinux 0x3f527143 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x3f735646 tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0x3f849b0b netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8fb95a sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0x3fa0cc96 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x3fa5499a create_signature EXPORT_SYMBOL_GPL vmlinux 0x3faa5cc5 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x3fb7f4e0 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x3fbca6ca blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x3fc02682 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x3fe15544 cpuidle_get_cpu_driver @@ -20836,13 +20830,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ff7da31 devm_clk_hw_register_fixed_factor_index EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x4013a7e7 musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x40143c3c inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x40161b73 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x401a1bfe of_led_get EXPORT_SYMBOL_GPL vmlinux 0x40320586 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x40402352 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x405ad3a9 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406718a3 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution @@ -20858,20 +20849,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x4090462f snd_soc_put_xr_sx EXPORT_SYMBOL_GPL vmlinux 0x40973975 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a9579f strp_init EXPORT_SYMBOL_GPL vmlinux 0x40aabecd pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0x40b72532 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x40b9c656 component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0x40c22472 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x40c8b8a6 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x40c8fa49 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x40dc5946 crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x40e8cb35 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40ffb226 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4102686c raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x410cd378 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x4116144c virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x412ae15c snd_soc_component_compr_pointer @@ -20883,24 +20873,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x41524e28 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x415504f2 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x41580488 mtk_clk_unregister_gates EXPORT_SYMBOL_GPL vmlinux 0x4170ca88 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x417a1cc6 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x417f43f6 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x418616f2 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x4187d776 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x41916154 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x41939eda nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41b21624 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x41c7c065 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0x41cf23bf qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0x41d1253a mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x41d8fb4b sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x41e11b54 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41f2abde percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x41f388c9 of_genpd_remove_last @@ -20909,7 +20895,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4208e40c sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0x420bc539 device_move EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4222cf99 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x42255861 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x4226704c dev_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x422dea79 edac_pci_add_device @@ -20917,6 +20902,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x424e80ba tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x42543ab5 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x428138bc ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x429216fc usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode @@ -20924,30 +20910,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x42d651ac firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fe238b rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42fe66c5 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x4306a9f5 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x4309629f crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x430bb69e fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll EXPORT_SYMBOL_GPL vmlinux 0x43261d25 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4329df8a inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x43304cff fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x434b97dc dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x434e2832 sdhci_cqe_irq EXPORT_SYMBOL_GPL vmlinux 0x435d1411 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4362e563 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x4362056b sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x4363e3f6 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x436d6916 sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x4372f3c2 sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43817a61 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x438b851e sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x438fe0c3 dpcm_be_dai_trigger EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x43b2daec clk_hw_register_gate2 EXPORT_SYMBOL_GPL vmlinux 0x43c6a81f kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x43c894f5 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x43c8ad56 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x43c995ef crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear @@ -20965,44 +20949,49 @@ EXPORT_SYMBOL_GPL vmlinux 0x43fd4d61 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x43feffe4 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x440c6330 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x440ec073 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x44189f5d bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x441fdec9 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x442b84ef fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x442ca78f devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442e3dc8 get_task_pid 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 0x444274d1 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x44474b22 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x444f0d85 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445d2d57 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x445e6a95 of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0x4475db31 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x4480a4d4 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x4481b4db pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x44836bd5 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448ee311 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features EXPORT_SYMBOL_GPL vmlinux 0x449ca038 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x44b9aaa4 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c50e9e pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0x44c78c0e __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x44ce6526 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44ecc757 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x44f0373c do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x44f19bfa pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x44ff5b7f sdhci_reset EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450a3611 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x450e2a88 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x4510e98c gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x45150b46 mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x45264c8e fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x4526ac63 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x45318846 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0x4535593e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4534c083 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x45361d93 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x454b6d2d tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x454b9362 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x45556fe9 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x4563e864 fwnode_connection_find_match @@ -21011,12 +21000,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x45753a94 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x457f5f09 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x45828cc5 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x4598c497 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x45a89600 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x45b10e9d security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x45b7c28d ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x45a4b1ab perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x45a877fe lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x45cbaf70 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects EXPORT_SYMBOL_GPL vmlinux 0x45e44242 dw_pcie_link_up @@ -21025,16 +21012,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x4614363a dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x46159895 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x462540f5 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x462821e3 thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x462c4fba ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x462cda03 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x462d2d0d bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x4652fc9d iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x465aaaf6 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x466d6b78 of_changeset_action EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4674480f __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x467fbff2 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x4688b1a1 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier @@ -21043,13 +21029,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x46bc24e5 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x46d68dcc bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0x46f636c0 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0x46f6ceba virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x47004225 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0x47078130 snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL vmlinux 0x470a4631 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x470ab216 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request EXPORT_SYMBOL_GPL vmlinux 0x472e7f46 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem @@ -21066,10 +21052,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47a2624c mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL vmlinux 0x47a89e92 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy EXPORT_SYMBOL_GPL vmlinux 0x47acc3d0 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x47b09e7b unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x47b35e92 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x47b49d0d switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x47bd9f41 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0x47c890a9 snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL vmlinux 0x47cf2faa dev_pm_set_wake_irq @@ -21078,10 +21065,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x47e6cd74 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48067e19 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x480ba477 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0x4815c1ca watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x4819214f iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x48193e47 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x481968af spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0x481f3904 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm @@ -21091,13 +21078,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x484c0d38 efivars_register EXPORT_SYMBOL_GPL vmlinux 0x48508f04 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x4853a541 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x485f7b24 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x48632d15 bgpio_init EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic EXPORT_SYMBOL_GPL vmlinux 0x486f9047 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x4874d222 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x48790992 of_pci_get_devfn EXPORT_SYMBOL_GPL vmlinux 0x4879acc6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x48823daf metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48aa6a18 vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp @@ -21108,6 +21095,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x48bfd84a mtd_ooblayout_ecc EXPORT_SYMBOL_GPL vmlinux 0x48c288fb attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c6f2a1 ahci_platform_assert_rsts EXPORT_SYMBOL_GPL vmlinux 0x48c705ec spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x48d1fc71 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x48e6be28 gpiod_export @@ -21118,23 +21106,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x4918c4fd relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x4932bb8e devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x4932d80f ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x495bebe6 usb_gadget_connect EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable EXPORT_SYMBOL_GPL vmlinux 0x496656fe snd_dmaengine_pcm_unregister EXPORT_SYMBOL_GPL vmlinux 0x496b055b dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x497659a9 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x497c3a76 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x498ca09a ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49989ff6 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x49a4d00f __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x49af1788 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue EXPORT_SYMBOL_GPL vmlinux 0x49d3209d input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x49d3b1c7 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status EXPORT_SYMBOL_GPL vmlinux 0x49db4510 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x49e39078 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x49e8f471 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x49eeab98 driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x49f3b75c rio_add_mport_pw_handler @@ -21145,18 +21135,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft EXPORT_SYMBOL_GPL vmlinux 0x4a30ac47 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x4a3ab3df fscrypt_add_test_dummy_key -EXPORT_SYMBOL_GPL vmlinux 0x4a4f7f7a find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x4a433b70 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x4a504144 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x4a5edd29 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x4a68c32c is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x4a7095cc snd_soc_jack_report EXPORT_SYMBOL_GPL vmlinux 0x4a73b557 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x4a80e9eb usb_gadget_set_state EXPORT_SYMBOL_GPL vmlinux 0x4a848e36 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x4a8729e1 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x4a8af9a2 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x4a98713a devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x4aabbbaa led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x4ab9ef4a blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x4ac660c9 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x4aca13b9 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x4ad34b18 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x4aec56e1 snd_soc_component_update_bits @@ -21170,35 +21160,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x4b5e35b3 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x4b6139d4 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x4b65f4f8 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x4b725205 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4b862150 ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x4b8a21f0 iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x4ba32a48 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x4ba6cab3 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4ba9b4b2 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x4bb6a0a4 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x4bbb97de __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x4bbe0c05 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc18270 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x4bc345ed dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x4bc5b023 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x4bdae9d2 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x4bd3c13e ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0x4bf4fdfe rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x4bf94b97 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c042ebf xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c358ccc del_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0x4c3744f3 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x4c426751 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x4c457dc4 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x4c4ce1c1 sdhci_execute_tuning EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x4c5a3a2d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x4c5c8b58 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb29a65 of_map_id EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbf486f netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x4cbfcd13 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x4cca07b8 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4ccadf5b nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x4ccb8a37 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x4ccdb2f7 snd_dmaengine_pcm_request_channel EXPORT_SYMBOL_GPL vmlinux 0x4ce0fae9 pinctrl_generic_get_group_pins @@ -21207,6 +21195,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d01154a gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x4d09d12f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x4d0a1b14 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x4d0f179c vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0x4d218025 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x4d24a772 scsi_get_vpd_page @@ -21214,15 +21203,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4d3d56af power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x4d40a46b ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x4d4d3a18 snd_soc_dai_compr_pointer EXPORT_SYMBOL_GPL vmlinux 0x4d5c37a4 relay_open EXPORT_SYMBOL_GPL vmlinux 0x4d60b731 __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d70aa00 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d764473 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d7bdc45 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x4d80d5e3 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x4d879b2c ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x4d8ca51d clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x4d8f6141 tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0x4d995f35 rdev_get_name @@ -21233,26 +21221,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x4db81579 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x4dc51621 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0x4dc56b88 ZSTD_customMalloc -EXPORT_SYMBOL_GPL vmlinux 0x4dc665d9 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4dc852cb udp_abort EXPORT_SYMBOL_GPL vmlinux 0x4dcd486a mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x4dd34388 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0x4dd49fea dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4de798e8 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x4de8357d phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x4def2bf6 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4df1281c rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x4df8cce1 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL vmlinux 0x4e0363a5 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x4e068955 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x4e07bee9 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x4e0c9db8 mtd_unlock EXPORT_SYMBOL_GPL vmlinux 0x4e1541c1 ZSTD_customFree EXPORT_SYMBOL_GPL vmlinux 0x4e1b8b7a check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x4e1f0864 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq -EXPORT_SYMBOL_GPL vmlinux 0x4e356206 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x4e51a334 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x4e59b020 sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x4e5f398e usb_deregister_dev @@ -21262,8 +21247,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4ea6c480 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb4e354 devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x4ec3f264 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x4ed5ce12 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x4eda0986 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0x4eda4a0e nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x4edfae0c gpiod_export_link @@ -21271,14 +21254,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x4eed713a sdhci_cqe_disable EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f08710c __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x4f09ac24 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x4f09e97c __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x4f11df6e phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x4f17c5ad acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x4f31ce7a snd_soc_unregister_dai -EXPORT_SYMBOL_GPL vmlinux 0x4f359469 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x4f3928af usb_phy_generic_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0x4f4370cf mxic_ecc_put_pipelined_engine @@ -21287,16 +21267,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x4f592a97 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x4f5bce22 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f5c63cd virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0x4f65d1c4 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x4f684968 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f81acec ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x4f827a28 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x4f855c82 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x4fabeff2 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x4fc6f1f0 wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0x4fcfb45d cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fd29d4d ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0x4fd89f29 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fde8d74 unregister_ftrace_function @@ -21308,17 +21290,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x4feca6f7 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x4ff3ad94 put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x4ff70a72 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x50209e24 snd_soc_bytes_tlv_callback EXPORT_SYMBOL_GPL vmlinux 0x502c31c3 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x5042464c skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x5057c133 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x505a05ff pskb_put EXPORT_SYMBOL_GPL vmlinux 0x505b49da scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x50683a10 snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x508f8a77 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x50959bc2 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x509816d4 blk_trace_remove @@ -21327,13 +21309,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x50c9fa78 fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0x50cfee04 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x50d54f88 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x50e3c3ee pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f14ee6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50e9026f unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x50f905c5 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50feb777 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x5104b538 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x5114064a snd_soc_get_dai_id EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x5126c2c7 mmc_regulator_set_ocr @@ -21345,12 +21325,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x517e7951 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x518443c9 led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0x518c47ef snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x518fa4bc __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x519fe7ce snd_soc_component_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x51b21c7f ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x51b90e5c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x51bdeed2 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x51c32b65 devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x51cf4482 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x51dcd29e sdhci_abort_tuning @@ -21360,7 +21340,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x51fe129d __mtd_next_device EXPORT_SYMBOL_GPL vmlinux 0x520dc643 snd_soc_put_volsw EXPORT_SYMBOL_GPL vmlinux 0x520dd1dc nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x5217c7f5 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x5218e619 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x522cbc58 devm_nvmem_device_put @@ -21368,22 +21347,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x523a6566 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x524bcfa2 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x524eb170 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5255e54b bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x525be52e devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0x526092a5 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x5261322c rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x5261a418 irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x5264d505 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x527fe876 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x528ec9e1 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x5297f0d0 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x529e16e0 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x52a9aff1 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52bd9f2e ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x52bf58ae scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52d29168 ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x52d2ed60 rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0x52d4f1eb spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put @@ -21391,6 +21368,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x52de9c4b cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x52e646cb gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x52ffbeb2 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x53113a8e ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x5313ee1d soc_device_match EXPORT_SYMBOL_GPL vmlinux 0x5316f3fb __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0x532b8c41 led_trigger_read @@ -21400,7 +21378,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x536924ad gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5380dea8 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x538a57f4 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x53a53b71 devm_clk_hw_get_clk @@ -21409,25 +21386,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x53cf0bbc ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x53e0f397 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x53e53587 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x5405b391 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x540b5d87 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu EXPORT_SYMBOL_GPL vmlinux 0x54177207 mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x542956dd __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x5430208d ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x543d01aa pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x543fdde7 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x5445dbbd ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x544a07d2 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x544ab9bf fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x544d6243 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x5463d806 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x546ccb52 mtk_clk_register_gates_with_dev -EXPORT_SYMBOL_GPL vmlinux 0x547dc903 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x5473379b ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54b2a5ab skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x54c069ca power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x54c18fdb wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x54cb2bec samsung_sdi_battery_get_info @@ -21436,14 +21408,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x550abe7e nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x550dbb0f pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551f180e switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0x552349d8 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0x55322ac4 sdhci_calc_clk EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x5540a41f ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0x554fdc91 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x55611516 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5569cec2 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x55854f83 vfs_fallocate @@ -21462,7 +21434,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5602f156 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x560c6855 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x560f3835 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x56172034 of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical @@ -21472,20 +21443,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc EXPORT_SYMBOL_GPL vmlinux 0x56389601 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x563907eb ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5639a1bc ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x56460525 snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0x56504bd3 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x5662c0ff ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x565c20c2 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x56684863 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x56708e88 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x567918ce sdhci_cleanup_host EXPORT_SYMBOL_GPL vmlinux 0x567f0767 shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5680c583 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5684f8a2 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x568cc59b snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x5690e107 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x569d1a43 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x56a5b1a7 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c20a2a l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x56cc40f9 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x56db1332 register_mtd_user EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter @@ -21493,15 +21466,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x5703d243 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x57077ffc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x570c3cad unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x570ce7e0 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x57198b49 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x571e3d0c device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x5720ae69 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x572a411e device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x57339406 tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0x573e4141 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x574f6143 __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x575533ca devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x57682a14 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x577594a7 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x57857d3d fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579626af irq_domain_set_hwirq_and_chip @@ -21510,11 +21484,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x57a42c0e devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x57a47acb devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x57add41c lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x57bf2864 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f601c3 snd_soc_get_xr_sx EXPORT_SYMBOL_GPL vmlinux 0x580828f4 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5835c28c inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x58392bd2 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x584147e0 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x5847f162 component_del @@ -21524,13 +21501,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x5863c0ad pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x5864e1cf fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x58690071 device_register +EXPORT_SYMBOL_GPL vmlinux 0x586c095c of_css +EXPORT_SYMBOL_GPL vmlinux 0x586d217e blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x587313e6 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x587cf43f __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x587ed853 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x588e742b pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0x58a03db8 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0x58b02794 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x58bd1fd2 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x58c1b838 subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x58c30f18 snd_soc_component_read_field EXPORT_SYMBOL_GPL vmlinux 0x58c370db ftrace_ops_set_global_filter @@ -21540,7 +21520,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x58db9f00 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e587d3 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x591fc317 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x590f889e ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x59244209 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x59298048 arm_iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x593589f7 xhci_update_hub_device @@ -21549,11 +21529,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x59532dfa dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index +EXPORT_SYMBOL_GPL vmlinux 0x596e6f76 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x5973d14a component_master_del EXPORT_SYMBOL_GPL vmlinux 0x59810409 devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0x5985cf44 fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598914b4 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x599fefe6 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem EXPORT_SYMBOL_GPL vmlinux 0x59ab16b0 __cpufreq_driver_target @@ -21568,6 +21548,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x59ef714e of_get_mtd_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59fac05c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5a01ddf1 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x5a03e648 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0x5a0b3b22 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x5a0fd603 transport_configure_device @@ -21579,19 +21560,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x5a303a4c blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x5a39a0f5 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a6846a2 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a6f517c power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x5a71e7d4 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a873d79 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x5a92a13f strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x5a93d3b0 snd_soc_add_card_controls EXPORT_SYMBOL_GPL vmlinux 0x5a94bbb8 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x5aa11980 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x5aa743a5 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5aaab9d8 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab27fd4 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x5ab67f85 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x5acf7335 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5ae284aa ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x5ad0d085 ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x5ae92cf1 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free EXPORT_SYMBOL_GPL vmlinux 0x5b1f6ae9 tps6586x_update @@ -21613,8 +21596,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ba0cc75 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index EXPORT_SYMBOL_GPL vmlinux 0x5baf349c snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x5bb654f1 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc51b94 xfrm_dev_offload_ok 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 @@ -21639,6 +21622,7 @@ 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 0x5c855b27 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5c9761e9 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x5c99edbc devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x5ca01320 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple @@ -21646,7 +21630,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5cb8ce5f dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5ce59cc5 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cfb0506 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll @@ -21654,10 +21637,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x5d124560 simple_rename_exchange EXPORT_SYMBOL_GPL vmlinux 0x5d24456b __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d421420 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x5d4d2cc6 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x5d624424 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d5fa303 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d630f9a governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x5d643a26 snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x5d679813 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x5d6a1750 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x5d6b10d9 nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0x5d7b0634 __root_device_register @@ -21671,29 +21656,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x5d98399b device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da9658a sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x5daa6aa2 hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x5dab03b2 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x5db2ed43 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x5dc7fb15 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x5dc943c2 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x5ddbbb0b iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x5debcb69 ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0x5def32ff dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x5e0071dc hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x5e04992c mmput_async EXPORT_SYMBOL_GPL vmlinux 0x5e10ae97 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x5e18f846 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x5e2098cc root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e2a3439 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x5e31297e devres_release EXPORT_SYMBOL_GPL vmlinux 0x5e36bd28 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x5e4106b8 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e495e5a bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 EXPORT_SYMBOL_GPL vmlinux 0x5e59ae4d iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0x5e7179b9 usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x5e7347ca regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x5e78d650 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume EXPORT_SYMBOL_GPL vmlinux 0x5e92d2b8 device_store_int @@ -21703,6 +21690,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ec384f7 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x5ec4dfdd sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x5ed33677 snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL vmlinux 0x5ed811c8 mtk_clk_register_composites EXPORT_SYMBOL_GPL vmlinux 0x5ee50fb2 balloon_page_list_enqueue @@ -21712,21 +21700,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f0e4fad blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f3058c1 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x5f490377 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x5f4ea0f7 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x5f5c8cdf dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x5f607761 nand_change_read_column_op EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f82d42f dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x5f8d3796 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x5f90d35f badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x5f9564fb mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x5f95db36 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x5f9f0ad8 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5f9a0cce devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x5fa00a8d devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5fb31328 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x5fb539f9 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x5fb58e4e imx_pcm_dma_init EXPORT_SYMBOL_GPL vmlinux 0x5fbcd808 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt @@ -21734,6 +21721,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x5fce905b anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x5fd85ed4 posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5fe7c1ca ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x5fecb780 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x5ff8d9b1 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup @@ -21742,38 +21730,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x6009c29c vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x6011eb03 rhashtable_init EXPORT_SYMBOL_GPL vmlinux 0x601ef1ff edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x602535ec __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x602dac04 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x602fa239 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x60342c5e tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x603b2717 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL vmlinux 0x6042569a ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x6060ee96 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x6063a2e9 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x60670b5a ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x60828a8e blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x60879ab7 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x608b0411 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x609538a3 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x6096e0dd netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60b9062d phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0x60c3f129 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x60b3580e __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x60c4dc0c devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x60d72677 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x60dbd310 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x60df3760 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60fa0642 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x60fbdc0e fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x61006a4c iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x6104d841 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x610f5cfa ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x611f8725 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x611474dc bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x61200c1c pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612b1904 scsi_dh_attach @@ -21782,10 +21763,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x61425f7f wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x616c3f17 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x616e5c00 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x61774cd4 mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0x6177c84f debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x617aecdf xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x617dadb7 ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x618f502c meson_pmx_get_funcs_count @@ -21801,7 +21782,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x61d254e3 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x61d89efd stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x61d8ad48 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x61dc1974 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x61d96ed3 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x61f2cca6 __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 @@ -21819,6 +21800,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6248429b rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x624fc230 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62555195 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6258fcfe dev_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context @@ -21829,7 +21811,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x62ca2d85 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x62ead30b nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x63005f9b skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x630fe883 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x6314a8ab device_find_child @@ -21839,10 +21820,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x631d1be6 vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x63281f98 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x632888ea set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x632a224c __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x632fdad7 __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x63327528 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x63329053 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x633f4102 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6340060f ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x63504d9f simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x636a7c27 trace_put_event_file @@ -21851,35 +21834,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x638be588 pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x63aa0160 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x63bd123f dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x63b624d3 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x63be3af3 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x63bf9685 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare EXPORT_SYMBOL_GPL vmlinux 0x63c4b455 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x63cbb025 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x63d42942 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x63e276e4 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x63f04a18 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x63f944d0 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x64000702 sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0x6411ad5f edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x64174f34 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x641bae11 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 EXPORT_SYMBOL_GPL vmlinux 0x6427bb37 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x643510b2 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x643aa4af dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x6445b8d3 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x645f8b36 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x64624132 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x64696e62 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x64698caa fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x646a62ae thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x647550e9 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x64842bba of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x648464dd mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x64a6afeb led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x64b25ae8 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x64b501fb tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x64bcefbb pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove EXPORT_SYMBOL_GPL vmlinux 0x64d3114e dm_noflush_suspending @@ -21889,14 +21870,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x64f469fc genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x64f64d80 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x64f75c25 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x64fd9535 nf_route EXPORT_SYMBOL_GPL vmlinux 0x650c1f89 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x650df29c extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6521a27b vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x65223f68 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x652701f6 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x652978e7 dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x654c954c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x6548a721 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x654a3536 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x65520d5d snd_pcm_stop_xrun EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key @@ -21908,11 +21892,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x65861bef noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x65897d17 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x6599394d icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x65a797ad ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x65a8a2db msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x65b0c1e4 i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x65c1c284 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x65c98865 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65ede427 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x6623b338 start_poll_synchronize_srcu @@ -21920,25 +21904,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x665a4c51 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x665d7d7d ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x665f910f perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x666e8643 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x66823d48 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x668e2106 usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x6691d35c snd_soc_dapm_weak_routes EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL vmlinux 0x669878d6 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x669d5f78 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x669a3376 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x669bfafc ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x669dc2c8 mtk_clk_register_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0x66a94286 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x66ac2155 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x66b202b3 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up EXPORT_SYMBOL_GPL vmlinux 0x66bf70a7 rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ece530 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x66ecf0e8 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x66f2666f ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x66f4f49e sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add EXPORT_SYMBOL_GPL vmlinux 0x671376d9 regmap_get_device @@ -21946,7 +21928,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x672bd33b spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x673f176f __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x676f56ee ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x6764bbf9 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x678a09c8 msi_unlock_descs @@ -21954,9 +21936,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x679239dc usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x679cfdfa __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x67a06a0a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x67a2d37c strp_init EXPORT_SYMBOL_GPL vmlinux 0x67a4aa7a edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x67b258b9 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x67b3dbac nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x67cbdfad vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x67d793c3 sysfs_remove_link_from_group @@ -21964,21 +21946,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x67e4bdd2 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x67e822a6 devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x6804cd8e wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x68099411 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x68103448 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x6819428b of_thermal_get_trip_points EXPORT_SYMBOL_GPL vmlinux 0x6826d28b unregister_mtd_user EXPORT_SYMBOL_GPL vmlinux 0x682ed198 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68315956 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x6835fc4e __sdhci_add_host EXPORT_SYMBOL_GPL vmlinux 0x683e2b0c paste_selection EXPORT_SYMBOL_GPL vmlinux 0x6848fee8 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x684c829a tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x6862dbf2 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x686a0333 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x687a416c ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used EXPORT_SYMBOL_GPL vmlinux 0x6880cae3 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x68847eb2 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x6896eda7 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x689eb61b register_wide_hw_breakpoint @@ -21987,20 +21968,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x68c73e84 extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x68cc7969 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x68d91268 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x68ef68c7 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x68f1d581 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x68f38491 nanddev_cleanup EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x691472b4 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x693625e5 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x69628363 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init EXPORT_SYMBOL_GPL vmlinux 0x6974106e phy_put EXPORT_SYMBOL_GPL vmlinux 0x697434c9 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x698402de sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x69848df3 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x6991fb45 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x69a99ab9 rockchip_register_softrst_lut EXPORT_SYMBOL_GPL vmlinux 0x69b1745e FSE_readNCount @@ -22019,9 +22003,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a51f4c3 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x6a5c0887 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x6a5ff764 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x6a6314d0 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x6a66e814 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x6a7841c0 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x6a877a59 __dma_fence_unwrap_merge EXPORT_SYMBOL_GPL vmlinux 0x6a8b3728 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x6a8ff989 dma_map_sgtable @@ -22029,7 +22014,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0x6ab54f9a perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x6ab5b587 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x6ad40921 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x6ad86d4f hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x6ada60ca power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel @@ -22046,36 +22030,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux EXPORT_SYMBOL_GPL vmlinux 0x6b4e3641 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x6b506872 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x6b5cb969 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x6b6d5e2a scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x6b656453 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b81fa02 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x6b82dacc pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0x6b84de50 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x6b945dfe sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x6ba5c713 pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0x6bb04338 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x6bbd6dea ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x6bc313cb pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x6bc46bcc vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bcea82d ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params EXPORT_SYMBOL_GPL vmlinux 0x6bf1c2fa snd_dmaengine_pcm_open EXPORT_SYMBOL_GPL vmlinux 0x6bf97600 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c2346ab udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work EXPORT_SYMBOL_GPL vmlinux 0x6c7f12ee irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c822a06 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x6c834add mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca0613a xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6ca4fd74 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0x6ca54071 fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0x6caaa24b spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x6cae38e1 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6cbe4fb4 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x6cc5ce47 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x6cc8250e thermal_zone_get_zone_by_name @@ -22084,25 +22069,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x6cd4f943 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x6cd6867a uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x6cd95570 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x6cda0140 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x6ce4d41f virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x6cfa3006 folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x6d03de60 snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL vmlinux 0x6d046fb3 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d13adad perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x6d252f50 mtd_wunit_to_pairing_info EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d48ccdd eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x6d48d808 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x6d610571 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x6d68e7f5 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x6d6c669c thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d82e46a addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x6d900acb iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x6d98f1fb dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x6da1d2b4 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x6dae63fe devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x6db6ea2c irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dbfeda7 pm_generic_runtime_resume @@ -22121,7 +22110,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6e424184 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x6e4da990 kobject_move EXPORT_SYMBOL_GPL vmlinux 0x6e5073d9 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x6e55f17d seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x6e62ecd0 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x6e679321 xas_find_conflict @@ -22129,22 +22117,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x6e7192ce wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e96043a mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x6ea1dd01 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6ea37212 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x6ea3b7e5 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ec28ab0 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x6ec498b6 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x6ece5c3d __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x6ed00b47 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0x6ed29efa set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6edc8381 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer EXPORT_SYMBOL_GPL vmlinux 0x6eeda12a of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6efad060 nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x6f0f9cb3 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f135463 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f2af29c dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x6f2f20fe cros_ec_cmd EXPORT_SYMBOL_GPL vmlinux 0x6f34fc02 relay_close EXPORT_SYMBOL_GPL vmlinux 0x6f42aafd kiocb_modified @@ -22154,24 +22144,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x6f7c34d4 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action EXPORT_SYMBOL_GPL vmlinux 0x6f884a98 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6f95905f tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa99f10 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register EXPORT_SYMBOL_GPL vmlinux 0x6fca8054 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x6fca9e20 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6fcb5fb7 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd9f879 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x6febb4e9 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffbba7c sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x70041466 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x7009a0c6 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x701ef02c bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x702e4128 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x703ad3b9 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x704b2d9d pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x7057c567 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x7058d696 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x7060e3e6 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x70624754 snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array EXPORT_SYMBOL_GPL vmlinux 0x7081a04b fuse_conn_destroy @@ -22187,13 +22178,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x70d21709 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0x70d5e146 of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x70d9bb95 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x70dbd1c5 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x70e0d78f fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x70eb350d cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x70ed4e44 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x70ef1ed9 snd_card_free_on_error EXPORT_SYMBOL_GPL vmlinux 0x70f85dbc gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x70fb2e86 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x7102919f pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7103dec0 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x7110a8cc percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x7117e03a mtk_clk_gate_ops_no_setclr_inv @@ -22201,14 +22195,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x7163ef22 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7168e1af bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x7169cd31 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x716d6f4b input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x71785d8e pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x719d79fc fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a13546 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event @@ -22217,22 +22209,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71cf085c dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0x71d34525 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x71efb404 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x71d5d6e4 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0x7204c3ca kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x72079245 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0x72149c1f balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x721d1705 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x7228387b __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x723a3d4f ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x723b14d9 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x72416628 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x7242d2f2 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x72459d31 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x72621e8d iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x726d0a83 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727cbc7e tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x728349d3 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x7293b40d debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72b0e1cf l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported EXPORT_SYMBOL_GPL vmlinux 0x72c153a0 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x72cbafe7 platform_get_resource @@ -22241,27 +22236,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x72dec0f9 usb_del_gadget EXPORT_SYMBOL_GPL vmlinux 0x72fc6ef1 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x73046682 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x730f3962 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x73159afa __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x731a2c6d tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x73203a0e blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0x73233c11 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x7343b971 mtk_pinconf_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x734d2dba __put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x73524ffa iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7354dae1 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x735aaf37 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x735f5e0d gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x73683f07 snd_soc_set_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0x736a17b1 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x736e54fa skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x7378af4e nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x73a1fda6 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x73a2a8cc rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0x73bc8916 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL vmlinux 0x73c8543e ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73cdc770 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x73def597 snd_soc_component_init_regmap EXPORT_SYMBOL_GPL vmlinux 0x73e4e6c0 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features @@ -22274,6 +22268,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next EXPORT_SYMBOL_GPL vmlinux 0x74293d45 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0x742f8785 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x744b0422 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x7467a6a9 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x74734fba max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x747538d4 alloc_page_buffers @@ -22294,10 +22289,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x74f5d54b snd_soc_dai_set_pll EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0x74ff73d6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x7503c9dd tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x750db9ea __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x7516e35f perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x75173da2 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x751b60d6 put_pid EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x752778fb fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x7528a91e serdev_device_set_baudrate @@ -22305,9 +22301,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x752e7084 nand_reset EXPORT_SYMBOL_GPL vmlinux 0x752fc819 snd_soc_dai_active EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof -EXPORT_SYMBOL_GPL vmlinux 0x75400c7f __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x754cba33 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x75557f11 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0x7569fb59 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x756b9deb platform_device_add @@ -22315,12 +22309,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x75790ee2 spi_setup EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x758bdc8e rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x758d36ec ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only EXPORT_SYMBOL_GPL vmlinux 0x75ab7449 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x75afbc3c ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x75baf09a usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x75bb57f3 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0x75d846e3 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x75dcf0ac ip6_route_output_flags 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 @@ -22330,11 +22327,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x75f24ff1 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter EXPORT_SYMBOL_GPL vmlinux 0x75fbd791 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x75fc87d9 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x75ffac54 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0x7603e07c __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x760739b7 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x7608f3cc bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x76226591 dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0x763a3c60 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x763aa313 bdev_disk_changed @@ -22351,8 +22346,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x76772a1b devm_thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0x767d3cdf gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7692c400 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x7697ac59 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x76982122 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x76b845f5 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x76bddbe6 irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0x76c2baf4 pci_epc_get_features @@ -22363,35 +22358,39 @@ EXPORT_SYMBOL_GPL vmlinux 0x76ea8e6c dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x76edad15 pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f73a52 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x76ffb7ab sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x771e197b of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x7724fb9e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x772f65aa sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x7749cd4f __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x77661423 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x777bf953 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x7791d732 arm_iommu_create_mapping EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 EXPORT_SYMBOL_GPL vmlinux 0x77a16253 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x77a444f8 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x77a4745a ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x77a7263d regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string EXPORT_SYMBOL_GPL vmlinux 0x77affd25 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x77b7e4f0 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x77bcb0ab uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0x77d23f30 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x77d37abb blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x77dc2194 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x77e415db __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77fa7f9a task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x77fddb08 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x781a0830 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x78224b09 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x78252345 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x783255cd dbs_update EXPORT_SYMBOL_GPL vmlinux 0x78330e5d usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x783af5a7 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x784a59e7 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available EXPORT_SYMBOL_GPL vmlinux 0x787c5691 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty @@ -22402,17 +22401,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x78b7b0be bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x78c499da meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x78c8188b sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x78ced9dc __put_net EXPORT_SYMBOL_GPL vmlinux 0x78d130fb __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e1a821 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x78e378a8 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x78e8b081 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x78ee8b6f rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x78f85038 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x79000681 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x7909c6f4 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x790dab02 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x7927bdbe xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x79406b88 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x7911dbb2 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks @@ -22420,16 +22418,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x794f49ac mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x79509a41 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x7954e683 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x79623976 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x79684607 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x796e3580 nf_conn_btf_access_lock EXPORT_SYMBOL_GPL vmlinux 0x796e6b0e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x796ee7de netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x79765492 snd_dmaengine_pcm_prepare_slave_config EXPORT_SYMBOL_GPL vmlinux 0x7982047e mtd_ooblayout_free EXPORT_SYMBOL_GPL vmlinux 0x79934de8 snd_soc_component_write_field EXPORT_SYMBOL_GPL vmlinux 0x799441d3 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x7997fa8b regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x79a83c67 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x79c2e78c __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x79cc0cac __tracepoint_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x79d087b7 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0x79d3e6c5 snd_soc_dai_compr_set_params @@ -22437,18 +22436,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x79ea017a irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0x79f06e65 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x7a22eafd mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x7a233044 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x7a244f73 input_class EXPORT_SYMBOL_GPL vmlinux 0x7a2cf325 clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x7a3231c4 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7a3d4155 ata_sff_hsm_move 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 0x7a4c46f6 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x7a6640ae tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x7a672233 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a770eab perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x7a7aa63d regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a7ed842 xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a852662 fscrypt_fname_encrypted_size @@ -22456,7 +22456,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x7a8c54f3 fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0x7aa457bc irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x7ab4d76b crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7ab99184 clean_acked_data_disable 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 @@ -22465,41 +22464,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x7aeb60de devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x7aedcdc0 device_link_del EXPORT_SYMBOL_GPL vmlinux 0x7af07948 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x7af0c858 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x7af45e64 vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0x7af9b990 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x7aff96bf of_property_read_variable_u16_array EXPORT_SYMBOL_GPL vmlinux 0x7b065f25 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x7b077633 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x7b0d3211 strp_process EXPORT_SYMBOL_GPL vmlinux 0x7b172338 pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x7b17f795 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x7b19848c ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x7b1c3e02 mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x7b234ced dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0x7b3078c5 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x7b33a30f pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7b37b3f3 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7b361ae6 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7b368e6a __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x7b3d3a8f icc_enable EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b738c58 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x7b77b4ff device_match_any EXPORT_SYMBOL_GPL vmlinux 0x7b7bd5ca stmpe_dev_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x7b7c2c8a fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval -EXPORT_SYMBOL_GPL vmlinux 0x7b925017 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9ca0b6 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bcc93c2 irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request EXPORT_SYMBOL_GPL vmlinux 0x7bf0a7b2 devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x7bf34229 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x7bf83f0c add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x7c057e51 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x7c16975e imx_pinctrl_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c341020 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c444aff bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x7c4fa6e4 mbox_flush EXPORT_SYMBOL_GPL vmlinux 0x7c586b4f __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe @@ -22507,7 +22502,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x7c71778f blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0x7c7a1fe2 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x7c871861 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x7c91e5a6 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence @@ -22523,14 +22517,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x7ceb400d led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d086dca register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x7d0ba560 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x7d125140 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7d1be7fb inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x7d3069b1 gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x7d35fd54 register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x7d388bd7 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x7d3aa0fe snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x7d3d83a6 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x7d43d9f1 dw_pcie_ep_raise_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x7d48bd29 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x7d4ae792 of_phy_put @@ -22539,30 +22532,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq EXPORT_SYMBOL_GPL vmlinux 0x7d6ecf46 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x7d7113eb edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7d74a9ed xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x7d7e1135 pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0x7da21fc4 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x7daad0cf ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x7db74000 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7db7479c ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x7dc4bef5 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x7dc69317 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x7dd4afd0 of_css EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dde5199 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de6c789 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x7deee30d mtd_read_oob EXPORT_SYMBOL_GPL vmlinux 0x7df38f5b devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7dffc1a7 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x7e0036f6 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7e008071 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x7e040083 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x7e045eb4 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x7e186e75 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x7e1f101c snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0x7e295cda ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7e23f801 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x7e335bed screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x7e384ba7 sdhci_setup_host EXPORT_SYMBOL_GPL vmlinux 0x7e3a625f component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x7e3a9d15 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e43e049 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x7e4dc1f2 snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk @@ -22575,21 +22569,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e817c86 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x7e8caefe devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7eb349e1 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x7ead0610 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7eb84f46 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x7ed08ad7 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x7ee60e2f extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x7f0545a5 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x7f078fdc vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x7f086e27 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x7f0c1259 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x7f12494a debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7f2ad1be __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x7f2d4a9a extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7f3c03e0 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x7f3de5ef __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x7f5172c7 nanddev_isbad EXPORT_SYMBOL_GPL vmlinux 0x7f5e95ed pci_create_slot @@ -22601,6 +22593,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7fc6af6e sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0x7fca84b0 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x7fd02c6b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7feab0dd ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x80022d2a blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x801c1e87 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x801e9410 __rio_local_write_config_32 @@ -22616,10 +22609,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x80578848 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x805d7189 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x805ddace ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x805fe3e8 disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x806df327 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x806ebed0 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x807f5e1b snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude @@ -22627,27 +22618,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x80932cc5 amba_bustype EXPORT_SYMBOL_GPL vmlinux 0x80974daa genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x80a86af2 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x80ab2f53 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x80b63c4a tegra20_clk_prepare_emc_mc_same_freq EXPORT_SYMBOL_GPL vmlinux 0x80babc49 snd_soc_link_compr_shutdown EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cbd67a xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x80cd7324 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x80cd7f24 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x80ce75ae __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x80d17d92 ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d872b5 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx EXPORT_SYMBOL_GPL vmlinux 0x80f506cb usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x80f62233 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x80ff33a9 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x8109ba9b dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0x810b3a2c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x810f4256 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x8113b890 iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8120c86b sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x8129cf37 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x81332474 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x81523db7 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x8154bde7 serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable @@ -22655,10 +22646,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x8162731f dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x818646ae ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0x818a1b98 nand_ecc_restore_req EXPORT_SYMBOL_GPL vmlinux 0x819958e2 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x81b290f1 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x81c91618 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0x81c93550 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x81cb63b0 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x81cf96a8 __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x81db28fa snd_soc_dapm_free EXPORT_SYMBOL_GPL vmlinux 0x81e2b927 __devm_regmap_init_i2c @@ -22670,10 +22664,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x81f543cf rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x820774f6 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x82164db1 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x821dfae7 ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x8220ddd5 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822f64c1 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x82391fb2 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x82475c61 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x8253dc93 musb_set_peripheral @@ -22681,7 +22676,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x825de761 pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0x827307a6 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x827ed5e6 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x82852ee2 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x82925a46 ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x82a29ccc relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x82a63ec5 tpm_put_ops @@ -22693,30 +22687,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x82d0bdcd device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x82d2929d devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e9fe38 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x82fd7e5e ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x82fdcfad gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x8301b2db dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x8312d5b3 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x8313923b i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x831f7b31 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x831fb00d gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x8325b4e8 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x8345ca6f spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x8345d7c8 hisi_clk_register_phase EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834ca44c devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x835d83f8 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x83718cd2 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x8378ee0b dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x837ac7f0 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x837bb48c fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x838181c9 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x838c999f pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0x83966755 of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x8396dc75 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x839f3ef0 mnt_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x83bc1469 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x83ce1736 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x83d3deab usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x83f0d8f4 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv @@ -22725,14 +22718,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x842ad0f9 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x84300bb2 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x843d59e5 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x84403863 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x844976f3 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845dcfa6 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x84696c94 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x84742b8c tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x847d02d0 nand_op_parser_exec_op EXPORT_SYMBOL_GPL vmlinux 0x84895110 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x8497eac7 arm_iommu_detach_device @@ -22744,11 +22739,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x84ac42dc blocking_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x84ae9a43 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x84be380f snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x84c3e5a5 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x84d5f36a hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x84e44f63 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x84e6aed7 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x84f58a75 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x85006a67 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8503122f tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x85042f42 icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy @@ -22758,7 +22754,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x852023bc genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0x85214acd dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x85229ee5 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8528acfc skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x852ded8b __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x8538400b rockchip_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put EXPORT_SYMBOL_GPL vmlinux 0x8554878e vp_modern_probe @@ -22770,14 +22766,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x8589ce3b snd_soc_get_strobe EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder EXPORT_SYMBOL_GPL vmlinux 0x85976125 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL vmlinux 0x85a640f4 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x85b1550f __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x85b72af1 class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x85c0f393 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x85c8b2e8 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x85d95245 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85dc3e10 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x85e342ba crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x85eacd5a ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x85fb0d10 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x85ff5a46 devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode @@ -22787,37 +22783,38 @@ EXPORT_SYMBOL_GPL vmlinux 0x861ec98d mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8635b557 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x864ad5b2 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x8656182f dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x8663f2ad pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x866c05e1 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x866d19ca cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x86704321 mvebu_mbus_get_pcie_io_aperture EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8682d8da watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8699cae7 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x86a15ebd pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x86ae4c93 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x86e9e6a5 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x86ec0bb4 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x86ee9ca3 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x86f01c55 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x86f8a0ff usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x8702c5ed xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x872a38a0 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x872a7456 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x87326088 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x873f6c58 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x8746d077 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x875c2d0a sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x875dea3d rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x8771a665 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x878c563e simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x87906e3f inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x879ce3ee snd_soc_dapm_put_volsw EXPORT_SYMBOL_GPL vmlinux 0x879dea6a nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL vmlinux 0x879e582b ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x87a51cc7 usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create EXPORT_SYMBOL_GPL vmlinux 0x87c12694 sdio_writeb @@ -22829,19 +22826,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x8806f5c3 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x880a5612 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x880e1bde fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x881833b2 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x881bb079 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue EXPORT_SYMBOL_GPL vmlinux 0x88343c6d pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x88434809 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x88467734 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock EXPORT_SYMBOL_GPL vmlinux 0x8848fda7 iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit EXPORT_SYMBOL_GPL vmlinux 0x886f8701 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x8872a246 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x888a9f8c fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x88975b22 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x88991582 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x88a548c2 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x88a8ae02 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp @@ -22850,6 +22850,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x88ce3787 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x88d32d2a pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x88df9e96 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x88fe34df ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x890199ab uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x8913712f blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x891f2ca3 usb_set_interface @@ -22858,12 +22859,13 @@ 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 0x89450b1f ata_sff_dev_select 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 0x895705b0 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x8962f7ad nanddev_markbad EXPORT_SYMBOL_GPL vmlinux 0x8966ca3c __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x897dacd7 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8974914d metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x89b33f02 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x89ba8483 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify @@ -22878,26 +22880,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a0357a0 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x8a0945fb regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x8a0aa2a5 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8a10370a ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x8a23b9b7 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x8a257bd3 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x8a2eace3 snd_soc_jack_add_gpios EXPORT_SYMBOL_GPL vmlinux 0x8a2efae0 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x8a3659f5 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x8a36fa08 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP EXPORT_SYMBOL_GPL vmlinux 0x8a4aa8d1 snd_soc_unregister_card EXPORT_SYMBOL_GPL vmlinux 0x8a4b2ff5 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x8a4dc9b3 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a61498c raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a63e788 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x8a7330d1 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x8a7f4636 fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0x8a7f7076 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8a81cbea sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a912ac8 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x8a92ceb1 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot EXPORT_SYMBOL_GPL vmlinux 0x8aa35d83 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x8aaa55af nf_queue EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap EXPORT_SYMBOL_GPL vmlinux 0x8ab28aaa nanddev_init EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files @@ -22905,17 +22911,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x8ad4072c regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x8ad9e1e9 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x8adeda75 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8ae14102 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x8ae4a145 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8b103aea iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b1a2760 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x8b1ec2f8 sdhci_dumpregs -EXPORT_SYMBOL_GPL vmlinux 0x8b3df284 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x8b241c31 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b6ca7a0 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x8b6fa430 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x8b6fc108 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8ba36d41 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x8bb655b0 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0x8be407cc pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x8c0038d6 dma_request_chan_by_mask @@ -22925,17 +22933,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c0e3cac of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail EXPORT_SYMBOL_GPL vmlinux 0x8c0fb8b6 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x8c34e520 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c3d6e1f thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x8c3f7638 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x8c476e6c skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x8c62a924 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x8c699f2e devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8ee3cb fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x8c903c0e genphy_c45_read_pma 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 0x8cb5aeff ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x8cc1515d led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x8ce5328b em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x8ced0253 pm_clk_destroy @@ -22948,15 +22957,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d38aa89 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x8d498e8a pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d583b41 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x8d8139d0 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting EXPORT_SYMBOL_GPL vmlinux 0x8da5ca39 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x8da9be7b ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x8db6227f rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x8dbf50b9 xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table EXPORT_SYMBOL_GPL vmlinux 0x8dc3ac92 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8df10594 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x8df42133 usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL vmlinux 0x8e14db8e of_pse_control_get EXPORT_SYMBOL_GPL vmlinux 0x8e1b1f60 sdio_disable_func @@ -22968,38 +22978,38 @@ EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x8e634735 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6e4163 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x8e8f2686 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0x8e911895 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x8ea02fa5 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x8eb6e7be switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x8ebc40a5 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x8ec0cf00 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x8ee12f56 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8efc1635 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b43a8 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f14c860 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x8f1f12e1 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x8f2f6d29 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x8f40ccab ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x8f4d2252 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x8f668468 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f8391d2 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x8f897fca ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x8f8c0301 rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x8fa7d58a pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x8fa927f2 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x8face64e ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x8fb013a2 snd_soc_dapm_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0x8fb0a1ce devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x8fb38238 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8fc769db skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x8fca15c4 imx_pcm_fiq_exit EXPORT_SYMBOL_GPL vmlinux 0x8fcd92df icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0x8fd485a8 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x8fdccac7 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x8fe2a9f6 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x8fefd2fc icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0x8fefd447 fscrypt_ioctl_get_nonce @@ -23008,15 +23018,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x8ffa0410 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x90024902 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x900d1590 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x901965ca led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x901c596d imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x901f31e6 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x902b99cf msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move EXPORT_SYMBOL_GPL vmlinux 0x904c8759 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x90817c75 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x9085750f dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0x9086f590 mtd_ooblayout_find_eccregion EXPORT_SYMBOL_GPL vmlinux 0x9095f2d3 pci_epf_destroy @@ -23036,10 +23045,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x90dda90e clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x90f32d9b snd_soc_limit_volume EXPORT_SYMBOL_GPL vmlinux 0x90fb0375 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x91000719 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x910c3231 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x911cdfbd sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x912ac819 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x91425849 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x9144782d sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x9146e8bd nanddev_bbt_cleanup EXPORT_SYMBOL_GPL vmlinux 0x914902fc spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table @@ -23050,6 +23062,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x917eaa86 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0x9180969c hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x91850b55 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x918ea845 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x91a7057b cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0x91ac2583 is_software_node @@ -23065,10 +23078,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print EXPORT_SYMBOL_GPL vmlinux 0x91f3edcd rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x91f4a108 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x92063dcd tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x9206f440 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x9212ad48 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x92146267 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x921e4c44 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x9229f356 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x9231fcd7 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x923a42e6 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable @@ -23076,24 +23089,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object EXPORT_SYMBOL_GPL vmlinux 0x9253ab60 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x925bd6ac fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x925ccd17 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x92663ad5 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x92813f4c ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x9288594a sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x92973c80 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter EXPORT_SYMBOL_GPL vmlinux 0x929f2bdc snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL vmlinux 0x92a94fc6 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0x92aa1d24 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92bc81b5 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x92ca3d59 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d39d0c skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x92db8b01 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92e6d14f rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x92e72951 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x9303429d led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x930fa2ca __mmdrop EXPORT_SYMBOL_GPL vmlinux 0x9312d674 thermal_zone_device_register_with_trips EXPORT_SYMBOL_GPL vmlinux 0x93195fbd deregister_mtd_parser EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve @@ -23102,16 +23111,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x9332ee97 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x93388f9a do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x934a8ecb kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x935ab0b7 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x9360de2b fwnode_connection_find_matches EXPORT_SYMBOL_GPL vmlinux 0x936c668d input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x936f58d8 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x937efe29 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x938a6275 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f5e284 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x9402fd74 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x940a864b sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x941c128b adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name @@ -23130,29 +23141,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x94ae488e phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x94b4b52c set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x94b8fbff iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x94bc4ef7 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x94bc553b ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x94c31f79 led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0x94d98ced pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x94e9a5fa inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x94ea7558 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x94fdb13d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x9500763a xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950769d9 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x95222ff1 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x9528d3ef sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9545414a bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x955ee96c crc64_be EXPORT_SYMBOL_GPL vmlinux 0x95681c68 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95768b48 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9590452f i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x95917d3f virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x95920f5c ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95972ac2 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x95ae4fe1 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x95b9919c __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free @@ -23166,6 +23177,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95fccaa0 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x960bfcd0 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x960cb777 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x960ddd8b uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x96511fae uhci_check_and_reset_hc @@ -23180,11 +23192,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x968b9577 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x969754f4 musb_get_mode EXPORT_SYMBOL_GPL vmlinux 0x96a01f77 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x96a0a40e ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x96aa6af0 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x96ab7ffc dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96c066ff __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x970afa25 mas_empty_area_rev EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw @@ -23194,31 +23206,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same EXPORT_SYMBOL_GPL vmlinux 0x97592516 nand_get_large_page_hamming_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x975973e6 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x975c4c13 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x97630ae9 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x97635183 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x976d2c5b bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x9771a77b nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x977ff5ea skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x977807cc devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x9778d148 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x9780ba05 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0x9792b9b1 mtd_block_isreserved EXPORT_SYMBOL_GPL vmlinux 0x979f2e5b devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x97a54489 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x97aa0e9c compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x97c1db88 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x97dca1f4 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e00680 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x97e3bc2e skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x97e4bbd5 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x97eec1b9 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x980373fd ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x98133a45 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9816f159 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x981c1a00 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL vmlinux 0x98227a03 snd_soc_component_compr_copy EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x9835f5a2 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x9838a448 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x98390e8c devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x983e9c7e fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier @@ -23233,24 +23244,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x9890f394 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x9893b2c9 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x989770d2 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x98a3cd89 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x98b2ee40 device_add EXPORT_SYMBOL_GPL vmlinux 0x98c83e50 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x98cb27c3 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x98d2b9bd ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x98d5974b sm501_set_clock EXPORT_SYMBOL_GPL vmlinux 0x98da18b2 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x98ea79d2 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f5699a ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0x98f7768d ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0x98fdc1d7 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0x9900394c of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x990f1e72 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x9926b061 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x992bcf42 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x992c83cf crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9931973f xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x9932106e mtd_ooblayout_set_eccbytes EXPORT_SYMBOL_GPL vmlinux 0x99368a58 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x993d10c1 rio_inb_pwrite_handler @@ -23259,18 +23268,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x9960a8e4 folio_wait_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x996759ea of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9979fd70 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x998be0bf syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x99924c42 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x99974042 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x99c5856a security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x99ccd786 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x99cf9633 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x99dfb0ef crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x99e854ea __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name EXPORT_SYMBOL_GPL vmlinux 0x9a3eff1f pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x9a536e9c fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x9a5dfa5b spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x9a604a87 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x9a7d963b encrypt_blob @@ -23278,6 +23287,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9a8e292e devm_irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x9a97b96c edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x9a9f0b54 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x9aa62568 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x9abc5845 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0x9ac10eba mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops @@ -23290,42 +23300,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9aef6a5a usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9afee6a1 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x9b0001a1 sampling_rate_store EXPORT_SYMBOL_GPL vmlinux 0x9b000dfd sm501_misc_control EXPORT_SYMBOL_GPL vmlinux 0x9b040d1a regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x9b061472 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x9b07a7cc irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x9b104824 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x9b134f81 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x9b2211c5 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x9b2aab51 firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0x9b3f5ba5 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9b4ee6de cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x9b4264d5 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x9b517357 of_msi_get_domain EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b5bed67 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x9b6405eb xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x9b66d977 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x9b6e0e64 ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default EXPORT_SYMBOL_GPL vmlinux 0x9b7a9b51 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9b8a014c ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9625f3 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x9b9b01ab trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x9ba62bbd fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x9bb759f2 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x9bbc74c6 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x9bc316c0 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x9bc8355d seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x9bcf2e0f devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x9bd7cba8 devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9c010bb9 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x9c025b0f cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x9c164641 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x9c213913 usb_gadget_unmap_request EXPORT_SYMBOL_GPL vmlinux 0x9c289989 __device_reset EXPORT_SYMBOL_GPL vmlinux 0x9c442af7 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x9c4ca440 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x9c61ed92 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x9c69766d dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x9c6a187f account_locked_vm @@ -23343,55 +23352,56 @@ EXPORT_SYMBOL_GPL vmlinux 0x9cc7e896 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals EXPORT_SYMBOL_GPL vmlinux 0x9ce4f5e0 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x9cea6e85 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x9cf1616c gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9d043351 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x9cf5f5ad udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d15ad3c dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d26c512 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d3c8511 of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x9d3d6488 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x9d477369 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x9d561656 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9d736a68 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x9d7c59a3 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0x9d7f577f __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x9d808363 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d8abdff get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache EXPORT_SYMBOL_GPL vmlinux 0x9d927e69 sdhci_set_uhs_signaling EXPORT_SYMBOL_GPL vmlinux 0x9d92931e tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9d95f315 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x9da0d573 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x9da2fd2f iommu_device_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x9da3075a mtk_clk_register_dividers EXPORT_SYMBOL_GPL vmlinux 0x9dbf6b6c adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9dcf55d5 mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x9dd1dc4a sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0x9dd22574 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x9dd9c527 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x9dde65a6 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9df06607 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x9e0f84f9 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9e0e2144 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x9e10528c kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x9e163fd5 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e1cb6f3 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x9e399671 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e473d13 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x9e49983f udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x9e527c9a ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x9e63d997 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x9e80a1f9 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x9e830b0b fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x9e9c0a49 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ea6d19b sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL vmlinux 0x9eb5ba25 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x9ebad1b7 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x9ec45d3d devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x9ecdbbdd usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x9ecf6a60 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x9ed2931c switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee25021 ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9efb9b43 __virtio_unbreak_device @@ -23401,10 +23411,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x9f1b61e1 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0x9f273bc0 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x9f4db42b dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x9f503113 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x9f50c8e9 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x9f52939a ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x9f55863f gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5b7d38 snd_soc_of_put_dai_link_codecs @@ -23417,12 +23425,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x9f7f1468 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x9f846faa trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x9f964647 tegra20_clk_set_emc_round_callback -EXPORT_SYMBOL_GPL vmlinux 0x9f98465c inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fb88735 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x9fbee472 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x9fcba422 of_get_named_gpio_flags EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fd612f9 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x9fd6cb0a __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x9fe82347 mtd_unpoint EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm @@ -23437,53 +23446,56 @@ EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa053a647 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xa0590d17 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xa06b7f27 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xa08004b1 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0xa084dbac vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0xa08599d4 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xa09a7077 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple EXPORT_SYMBOL_GPL vmlinux 0xa0ac5e52 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xa0c1413c nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0xa0c8624a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa0d61e8b raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 EXPORT_SYMBOL_GPL vmlinux 0xa0dfabdb extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xa0e8ee7b ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xa0ef3d3a mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xa0f6973f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa0f9cc1c ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0xa0fdeec9 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0xa109069f snd_soc_bytes_info_ext EXPORT_SYMBOL_GPL vmlinux 0xa10d1b43 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0xa10f80a8 cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0xa11990cb clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xa1312e0b ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features EXPORT_SYMBOL_GPL vmlinux 0xa14c6e5a devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0xa1661323 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xa1815e99 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa18aa160 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa190baf8 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xa1971d03 power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xa19d3a60 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xa1a73aa4 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xa1bb6bde virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0xa1c2b3cf __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xa1d7ceab bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1dbf85d devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0xa1e5b95c cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition EXPORT_SYMBOL_GPL vmlinux 0xa2003c84 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa2072d7c inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa2187202 nand_read_page_op EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa2315405 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xa23daa82 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2591b29 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xa25f763e device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xa26ad7af ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xa26c6497 xas_load EXPORT_SYMBOL_GPL vmlinux 0xa26d6c4c tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa273df36 devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xa276443f xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0xa279136a usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xa27a62cb ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0xa27ec8e4 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name EXPORT_SYMBOL_GPL vmlinux 0xa2894c88 md_account_bio @@ -23491,28 +23503,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xa297f73d watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xa2ad4cf4 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b84d29 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax EXPORT_SYMBOL_GPL vmlinux 0xa2cd82db kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xa2cf7f10 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xa2d3d5fe wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xa2d48e7c i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa309789b devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xa2f59919 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0xa30d53c4 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0xa310cbcf blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xa32206fb virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL vmlinux 0xa3326b4d dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa332ef15 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work EXPORT_SYMBOL_GPL vmlinux 0xa3437071 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xa34677d0 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove EXPORT_SYMBOL_GPL vmlinux 0xa351532e fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0xa3574da2 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xa35f2e97 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0xa372d6e5 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa3749703 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa38e59b3 snd_soc_dapm_force_enable_pin_unlocked @@ -23520,10 +23533,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xa3a4ac34 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0xa3ab9154 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0xa3b434a7 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xa3b8891d tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0xa3c5c311 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xa3d0fd04 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa3fa2ed5 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port @@ -23549,33 +23562,35 @@ EXPORT_SYMBOL_GPL vmlinux 0xa48fb411 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xa498bc46 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xa4a0ca44 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xa4a3593a mmput +EXPORT_SYMBOL_GPL vmlinux 0xa4a3d9ed ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0xa4a77c3e genphy_c45_pma_baset1_read_master_slave 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 0xa4c9def1 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xa4f4af48 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xa5009849 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xa5046e41 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xa5122a9b devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa511c429 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xa5281a17 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa532b346 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0xa532bf8f HUF_readStats EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0xa542e67f snd_soc_get_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear EXPORT_SYMBOL_GPL vmlinux 0xa565eaae devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xa572c5cb bio_poll EXPORT_SYMBOL_GPL vmlinux 0xa57893a8 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa57a31e9 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xa5806205 devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xa5828806 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa585cb94 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xa5887c56 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xa591e986 snd_soc_jack_add_zones EXPORT_SYMBOL_GPL vmlinux 0xa59f254e aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xa5a5b558 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xa5a8d1b9 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xa5ad14d0 __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xa5d293a5 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0xa5d3c50e pci_epc_put @@ -23584,16 +23599,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xa5e67339 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full EXPORT_SYMBOL_GPL vmlinux 0xa5ff709f devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa60b9502 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xa61326d6 vcap_keyset_name EXPORT_SYMBOL_GPL vmlinux 0xa613a1e0 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xa61448eb ahci_ops EXPORT_SYMBOL_GPL vmlinux 0xa614ada8 snd_soc_card_jack_new_pins EXPORT_SYMBOL_GPL vmlinux 0xa6183a44 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0xa622c32e power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa6285e4b bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xa6412171 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xa645218a inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0xa6490b25 snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 EXPORT_SYMBOL_GPL vmlinux 0xa6637294 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xa66e8eac xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xa6775420 devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xa68ffc5a phy_create_lookup @@ -23602,20 +23619,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6acaf7d pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b3ae93 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xa6c65e93 of_regulator_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xa6d24876 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6dc319c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xa6de00de ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xa6de2417 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f0da36 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xa6f56dfc pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xa6fbdbaa usb_gadget_deactivate EXPORT_SYMBOL_GPL vmlinux 0xa6fc9b3b blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xa7018b34 sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu EXPORT_SYMBOL_GPL vmlinux 0xa70a5d38 dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0xa7119f65 rht_bucket_nested_insert @@ -23626,23 +23639,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL vmlinux 0xa74fab24 usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL vmlinux 0xa7537290 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xa7621624 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0xa76b61ef anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xa76d3a37 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa76f4911 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor EXPORT_SYMBOL_GPL vmlinux 0xa79a5801 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0xa7a0d414 onboard_hub_create_pdevs EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xa7b5300d nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xa7c02903 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0xa7e1f19e fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0xa7fbf3a9 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0xa80a1e0b __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xa810b59b powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xa8124098 pcim_doe_create_mb EXPORT_SYMBOL_GPL vmlinux 0xa8144678 pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0xa8171d60 debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xa81c072a stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa822670a __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xa8268786 pwm_request EXPORT_SYMBOL_GPL vmlinux 0xa82732b1 __mt_destroy EXPORT_SYMBOL_GPL vmlinux 0xa82ba906 sysfs_remove_file_self @@ -23651,41 +23663,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xa83e9d13 bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85ff3f0 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xa87bd933 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0xa87c9c63 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xa8808560 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xa885ab7c of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0xa8873f30 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa89d34aa find_vpid EXPORT_SYMBOL_GPL vmlinux 0xa8a9b2ad sdhci_pltfm_free EXPORT_SYMBOL_GPL vmlinux 0xa8ace659 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xa8afd680 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0xa8b7f01f i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xa8c097b0 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xa8cb2a5c ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0xa8cd6bb5 vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xa8d65008 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xa8e3aeb6 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0xa8e55ef2 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xa8ebb9fe clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xa8fc3325 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xa90b44fa bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xa90ccbe4 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9277d7f bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xa929f8ca pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa92b84c5 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa943219b fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0xa966a95e crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xa9670c57 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xa987c9ed dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xa98b19e6 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa991107a bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xa99824bb seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9ae2a60 gpiochip_get_data @@ -23697,18 +23702,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xa9f04d06 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0xaa015eed fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0xaa02b068 mtk_clk_unregister_factors EXPORT_SYMBOL_GPL vmlinux 0xaa0630e0 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa13e5a1 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xaa16c0b4 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaa17d4a1 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xaa1e3136 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa35c80d devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xaa3dad1c of_device_request_module EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa53e196 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xaa60abe6 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xaa628618 sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xaa62d86d nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xaa637659 of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0xaa6fc5d5 device_unregister @@ -23717,11 +23720,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xaaa209f5 mtd_pairing_groups EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xaaa5d018 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xaaa67503 musb_set_host EXPORT_SYMBOL_GPL vmlinux 0xaaa8925a devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaad7dfd sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xaaae6b78 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaabb86d5 dequeue_signal @@ -23736,10 +23737,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xaaf990f9 devm_pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock EXPORT_SYMBOL_GPL vmlinux 0xab0d11c2 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xab0e2295 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0xab14ed48 usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0xab1a579c dm_audit_log_bio EXPORT_SYMBOL_GPL vmlinux 0xab1e86ef blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xab28b634 ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0xab295bf2 cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xab2cccd6 dma_fence_unwrap_first EXPORT_SYMBOL_GPL vmlinux 0xab33b115 regulator_get_mode @@ -23757,20 +23758,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xabd025a6 fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0xabd5cb1e md_stop EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xabf76312 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xabfe7cdb ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xac0847cb sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xac1a2675 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xac1a8669 mtk_clk_register_gates EXPORT_SYMBOL_GPL vmlinux 0xac1cc2d5 mtd_ooblayout_count_freebytes EXPORT_SYMBOL_GPL vmlinux 0xac2f1388 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xac32f86a transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0xac4ba1df dm_get_md EXPORT_SYMBOL_GPL vmlinux 0xac513e07 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xac5512f6 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xac5d6f94 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xac62049e rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac67204a nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0xac686e25 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0xac6e70e1 add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xac7a1d97 mbox_chan_txdone @@ -23784,8 +23780,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xacc5ab83 dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xacd6fdcf mtk_eint_do_init EXPORT_SYMBOL_GPL vmlinux 0xacdb525a nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xacf8970c xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0xad03d506 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xad0ab4cf br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0xad2d32e7 sdhci_request EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu @@ -23795,20 +23791,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xad711bc8 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad77d19d ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xad7e5f1c screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xad9e6b48 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xad9f1c46 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xad8340b2 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada0ce4b sdhci_alloc_host EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xada689e8 pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0xadc844ed xas_create_range EXPORT_SYMBOL_GPL vmlinux 0xadca39ce ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0xadca7f81 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xadedd8a0 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xadfb563b dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xadfc1d79 srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0xadff7738 of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xae00b226 software_node_fwnode @@ -23816,23 +23809,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xae1ab194 nand_status_op EXPORT_SYMBOL_GPL vmlinux 0xae1d642a irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xae237312 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xae25e049 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xae2d906c of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init EXPORT_SYMBOL_GPL vmlinux 0xae4651e9 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xae521be3 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xae645cce devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6b570c snd_soc_suspend EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xae6e7208 ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp EXPORT_SYMBOL_GPL vmlinux 0xae82d891 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0xae9a21dc rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xaea2d9e6 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xaea42a82 to_software_node EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeb3d613 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xaeb73bd7 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xaeb9c1d5 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xaec265c7 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xaec6ba09 dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0xaee05cb7 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xaee6cc13 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xaef07f4a mtd_get_user_prot_info EXPORT_SYMBOL_GPL vmlinux 0xaefdca42 of_irq_parse_and_map_pci EXPORT_SYMBOL_GPL vmlinux 0xaf040ecf locks_release_private @@ -23851,7 +23850,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf58eb06 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0xaf79c61b fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0xaf7a6529 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xaf825c98 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xaf85e51d usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0xaf9392e9 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xaf9770c0 nand_ecc_init_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0xafa0306c wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0xafc368d6 synth_event_trace_end @@ -23864,38 +23865,35 @@ EXPORT_SYMBOL_GPL vmlinux 0xafe5434d mtk_free_clk_data EXPORT_SYMBOL_GPL vmlinux 0xafe77342 firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff4de45 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xb00f2808 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0xb01f2379 __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb028515b devl_port_register EXPORT_SYMBOL_GPL vmlinux 0xb0368f7d invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb03dc3d1 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xb056a3f9 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb076ff97 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare EXPORT_SYMBOL_GPL vmlinux 0xb079cded snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL vmlinux 0xb085fd26 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0xb0ac14c1 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb0aeb51c nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0xb0b00ed7 pci_ims_alloc_irq EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0be4a8c do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xb0d463c8 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0xb0d5d48c usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb0db2983 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb0e3fd09 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb0e8bbf3 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb0f3b178 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xb0f748e9 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xb0fcf1a7 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0xb10b50d6 sdhci_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb113f94b mmput_async EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb120353d usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0xb1236e4b mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0xb12dff65 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xb126e364 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xb133ba8e scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0xb1348c00 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xb138ec01 phy_check_downshift @@ -23904,12 +23902,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xb1548ac4 led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xb15e924a crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb169db1f pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xb1731489 component_release_of EXPORT_SYMBOL_GPL vmlinux 0xb17dd3f8 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0xb18add67 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0xb1947135 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xb1a33699 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb1af93ca __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start EXPORT_SYMBOL_GPL vmlinux 0xb1ca4765 free_io_pgtable_ops @@ -23924,7 +23921,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert EXPORT_SYMBOL_GPL vmlinux 0xb2255138 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb22bf4f3 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xb22d77e0 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0xb2347bf1 list_lru_destroy EXPORT_SYMBOL_GPL vmlinux 0xb2359fa8 pm_runtime_suspended_time @@ -23935,10 +23931,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xb24e95cb pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xb24f1680 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xb25b07b3 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb25c08c2 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr EXPORT_SYMBOL_GPL vmlinux 0xb26ecdb3 dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0xb26fc3b0 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xb274183e int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xb2775d62 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xb27cf939 dev_pm_disable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xb29a03e8 of_clk_add_hw_provider @@ -23946,8 +23942,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2c9e28c sdhci_runtime_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xb2d36d86 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xb2da2e4a tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2eed942 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put EXPORT_SYMBOL_GPL vmlinux 0xb30c4e8a scmi_protocol_register @@ -23955,22 +23951,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xb30e869b clk_hw_init_rate_request EXPORT_SYMBOL_GPL vmlinux 0xb31013cc dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0xb31a9c2e devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0xb3290e51 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xb33cddbf snd_soc_dapm_sync EXPORT_SYMBOL_GPL vmlinux 0xb3460b92 snd_soc_dapm_dai_get_connected_widgets EXPORT_SYMBOL_GPL vmlinux 0xb34a21ee snd_soc_bytes_info EXPORT_SYMBOL_GPL vmlinux 0xb34bce9d pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xb34bf4e3 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xb34f0193 mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xb3586f41 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb35c8faa xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xb363530c blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xb37bc97f pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb3988dbd ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xb39a0b61 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0xb3a64546 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xb3a76d7c crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xb3b93a10 led_put EXPORT_SYMBOL_GPL vmlinux 0xb3d3382a devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xb3d39381 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xb3d405d7 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xb3f1a13c user_destroy EXPORT_SYMBOL_GPL vmlinux 0xb3f538cb page_reporting_register @@ -23989,17 +23987,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled EXPORT_SYMBOL_GPL vmlinux 0xb451daf9 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xb45fdcf7 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xb46d1b77 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0xb476f5a7 syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0xb47cc7f5 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xb48058e2 devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0xb48d457e irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xb48f1c5d genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xb494f90c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xb4a16cd4 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xb4a25e0a pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xb4a6537f skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xb4ab3d23 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xb4b929b9 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4e08490 vcap_debugfs EXPORT_SYMBOL_GPL vmlinux 0xb4e1075a get_user_pages_fast_only @@ -24009,29 +24003,31 @@ EXPORT_SYMBOL_GPL vmlinux 0xb500cbe2 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb519845e ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xb51ae2cb crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520ddff of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xb523adf0 skb_morph EXPORT_SYMBOL_GPL vmlinux 0xb524e4b0 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0xb55be738 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0xb55c2d95 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xb561a76e ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56eb416 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xb577f4fc pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0xb5789caf attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xb589dc9f sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xb5911367 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0xb59ea0d5 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb5a4bc96 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0xb5bf5750 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb5d2148a inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5de2cd1 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xb5e7227a __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xb5e93f22 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xb5f6cb85 rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0xb5f6d0b3 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xb5f9f36a device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xb603dfc3 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xb60bec71 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xb61439df unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xb623a7a4 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb626a644 regmap_mmio_detach_clk @@ -24039,7 +24035,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb640e988 snd_soc_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb656fec4 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xb65d156d ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xb6612312 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0xb665f893 tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xb669a8a1 class_dev_iter_next @@ -24047,7 +24042,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67beade nanddev_bbt_set_block_status EXPORT_SYMBOL_GPL vmlinux 0xb682c448 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb699ca51 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb6a089ff snd_soc_component_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0xb6aa7ea8 tty_port_register_device_attr @@ -24056,24 +24050,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6bce718 free_uid EXPORT_SYMBOL_GPL vmlinux 0xb6be7636 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xb6c4425e fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xb6c79575 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xb6d42f38 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xb6da4141 imx_check_clk_hws EXPORT_SYMBOL_GPL vmlinux 0xb6e0c2b2 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xb6e4e4ee blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d085 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6f7a0d2 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0xb7075882 mtd_check_expert_analysis_mode EXPORT_SYMBOL_GPL vmlinux 0xb707e8a5 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xb70f1ffb of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0xb7133cc3 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xb71ca5af tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0xb72cf03f tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0xb7325c51 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7368d39 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xb7408c8a __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xb7419fe5 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xb743b5bd fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xb745d7b1 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0xb7497a30 snd_soc_remove_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port @@ -24081,21 +24074,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xb7746636 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0xb7756f71 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xb7767b3e of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb77a74c9 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xb7844350 snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7913eb0 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7b607bf blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xb7bd0528 nl_table EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7d54d72 tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0xb7e0113c regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xb7efd238 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xb805ca2e dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xb80c2c29 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xb8164992 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb81817ef metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xb81be846 mtk_mmsys_ddp_connect EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb826ff78 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xb82edf7b spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0xb8369d2d od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0xb83f8ef4 usb_gen_phy_shutdown @@ -24107,16 +24102,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0xb86ba649 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0xb87e1010 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xb87f500e perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb8922642 nand_read_page_hwecc_oob_first EXPORT_SYMBOL_GPL vmlinux 0xb89ad84f crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xb89f7ef4 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb8adce21 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0xb8cc218c kthread_func EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d27411 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xb8d2a155 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xb8d30799 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb8d981ab blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xb8d9eaec of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xb8dc081a sdhci_pltfm_init EXPORT_SYMBOL_GPL vmlinux 0xb8df0e47 tty_port_register_device_attr_serdev @@ -24129,6 +24126,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb91772e6 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb92774db skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xb93355a9 pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0xb935d94c i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0xb9365713 wm8350_reg_read @@ -24143,6 +24141,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xb97cdaaf snd_soc_component_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0xb981031c i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9878e4d fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xb98ae0ed io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xb98c35e6 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init @@ -24157,26 +24157,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start EXPORT_SYMBOL_GPL vmlinux 0xb9b8c750 tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9be5c66 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first EXPORT_SYMBOL_GPL vmlinux 0xb9d58eaa mtd_erase EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger EXPORT_SYMBOL_GPL vmlinux 0xb9f257fa usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb9f60ff9 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xb9fb35ea spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0xba003922 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert EXPORT_SYMBOL_GPL vmlinux 0xba1089fe pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xba12da2a switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xba1a0fd9 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xba1bfd27 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xba1fec8f da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0xba257cfc __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3164dc inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xba35869c locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex EXPORT_SYMBOL_GPL vmlinux 0xba405e13 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xba4c733a ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xba53f688 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xba4ffc77 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xba5bdf21 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0xba5e679f device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xba5e87cc snd_soc_info_enum_double @@ -24191,10 +24191,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xbab4bc0b iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbabb328e rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xbac171db ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xbac8e1f9 srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0xbad21533 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xbad377fc spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xbad4e40c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xbae5bac5 ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0xbaf05769 cpts_create EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed @@ -24209,68 +24211,59 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb45e021 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xbb4ff321 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xbb5d5e1c ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xbb5e1670 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6cbfff call_srcu EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn EXPORT_SYMBOL_GPL vmlinux 0xbb7415c7 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xbb77d8f5 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xbb76e40e netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0xbb94f168 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xbb9acc5d ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0xbb9ebc12 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xbbadf027 blk_crypto_intersect_capabilities EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put EXPORT_SYMBOL_GPL vmlinux 0xbbc052ef mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0xbbc9e702 __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xbbecade8 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xbbed0ce2 platform_bus EXPORT_SYMBOL_GPL vmlinux 0xbbff7bbf pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xbc006d92 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc38fe46 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc4091fb devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xbc4142f2 mtk_pinconf_bias_disable_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xbc569bd5 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xbc6457f8 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xbc673a7d ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xbc6d279e of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xbc7f634f perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xbc987596 pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc69128 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xbcd27eb0 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xbcd248c6 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcde0aae __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xbcdf2a9a devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xbce4c4c9 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf86964 io_uring_cmd_complete_in_task EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name EXPORT_SYMBOL_GPL vmlinux 0xbd1672cf omap_iommu_restore_ctx EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd6b69fd scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0xbd7e24ce skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xbd8b260b __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0xbd9f6b82 dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xbdb779c6 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xbdbc45a9 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xbdbd970c pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xbdc0d5fd pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0xbdc58bd2 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xbdca4959 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0xbdcd6e5e imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0xbdd456f6 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge EXPORT_SYMBOL_GPL vmlinux 0xbde93ba4 snd_dma_buffer_sync EXPORT_SYMBOL_GPL vmlinux 0xbdf10f15 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xbdf18891 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0xbdf7af54 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0xbe08481e snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xbe0fa473 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0xbe145cae fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0xbe244ca4 fuse_free_conn @@ -24298,7 +24291,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbef3d2f5 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xbef4bab7 register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf12fad0 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xbf1ed631 snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0xbf2d406c __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled @@ -24308,23 +24300,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf5126ce __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xbf5676e9 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xbf6af3be clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xbf74d940 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0xbf928195 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf92f243 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0xbf99ef38 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xbfa73d53 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0xbfb005e3 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xbfb274c0 msi_lock_descs EXPORT_SYMBOL_GPL vmlinux 0xbfb31fab serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xbfbbba40 pstore_register EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfc46a37 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xbfcd7139 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0xbfdb89c4 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xbfdc388f synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfe83bb4 imx_ccm_lock EXPORT_SYMBOL_GPL vmlinux 0xbfe84dc9 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xbfe99b26 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xbfeb9c79 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xbff2ebeb ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xbffc119d __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xbffe037e devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 @@ -24332,8 +24327,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0059042 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0xc022d921 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xc0263b83 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc030959d tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc047b429 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xc04fc6b2 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0xc0508517 snd_soc_dai_compr_get_params @@ -24341,35 +24336,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0547dbb snd_soc_component_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xc0588b31 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xc05b9b40 switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc069cd74 dapm_kcontrol_get_value EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc06efea7 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xc07b4345 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc080517b bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled EXPORT_SYMBOL_GPL vmlinux 0xc08326b7 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09d4142 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xc0a0a904 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0cfdaee ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xc0cecf1e dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xc0db7a96 disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0e7d826 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xc0ecd22f cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0xc0ed0036 of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc0f38105 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc0f4545b ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t EXPORT_SYMBOL_GPL vmlinux 0xc138c8c0 iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0xc13cf6ff raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0xc1457c56 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xc15bfaeb ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc1772162 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xc1790153 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xc190db0f inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xc1955988 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xc19d48be proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0xc1b07ab8 devm_hwspin_lock_request_specific @@ -24381,53 +24378,61 @@ EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2226b5c blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xc229770e devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2302c04 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0xc24b4170 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xc25eedd3 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc26a7642 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0xc26ee0dd pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xc27ece54 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xc28241e4 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xc289e903 mtd_block_markbad EXPORT_SYMBOL_GPL vmlinux 0xc28a3e8e snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL vmlinux 0xc28e558a rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xc291ecb1 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xc29c92eb skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2aaea9c virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xc2ab04d5 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xc2af88f2 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xc2b46cc0 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xc2c89852 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0xc2e108e1 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xc2e3344b phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0xc2ed009f devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xc2f2a645 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc2f9dd26 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xc2fa96fe __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc2ff1eeb lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xc30416d4 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0xc30ad1bd iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xc30e20bf snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc315d452 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL vmlinux 0xc3274bb8 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xc3292187 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xc329d4d5 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc3379fd8 mmput EXPORT_SYMBOL_GPL vmlinux 0xc33e0211 usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc34e1b42 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xc34e4c7b kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xc360d81f fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xc36d6b4c usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc377b15a blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3809c43 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xc384b92b sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xc385c8e0 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0xc394cce0 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xc395d969 snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0xc3986017 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0xc3986266 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0xc39f37d8 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xc3ab158f synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xc3ab98d8 regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0xc3b3aca3 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc3b81fd6 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xc3c01aba nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3ce9e98 _proc_mkdir @@ -24435,8 +24440,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3e14a58 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0xc3e69d60 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc4092a7b ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xc423cd4e dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc42c45c2 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 @@ -24452,6 +24455,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc458a633 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0xc45a2596 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xc45d1729 ping_err EXPORT_SYMBOL_GPL vmlinux 0xc46368e4 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0xc46517ad device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xc4651bef gpiod_is_active_low @@ -24463,6 +24467,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register EXPORT_SYMBOL_GPL vmlinux 0xc4a075fe of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xc4a0e846 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0xc4b1e1d9 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xc4b869a8 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0xc4bd504a nand_write_data_op @@ -24474,20 +24479,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc4f1b63b snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL vmlinux 0xc50befa7 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xc52d766d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc512126e sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xc519d67d cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xc5312e2c sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0xc53e72d4 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc54271bf __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xc54f0bac inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc55f3006 tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name 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 0xc5a2fc6b find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b1cb92 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xc5bca823 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xc5dea5c9 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xc5e04e11 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0xc5eae01d nvdimm_security_setup_events @@ -24497,18 +24501,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xc5ff56e1 mtd_ooblayout_count_eccbytes EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc62d6b5f fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xc62e0023 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xc63551c0 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xc6407853 tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6622885 phy_get EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc670642e sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6793945 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xc67e34a4 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xc681859c gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xc683c151 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc6861fe2 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xc68e7cea usb_gadget_vbus_draw EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool @@ -24519,15 +24524,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6b3c677 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0xc6bc1592 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0xc6c7a600 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc6d92a79 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc6e42e51 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0xc704b988 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc70f4a10 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xc715dec3 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xc715fdba bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xc720ed4f fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xc72447eb dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc72dc4be bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xc73b9e87 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xc76a1154 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xc76cbb4a usb_hub_release_port @@ -24537,7 +24544,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xc7b3bdcf pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xc7b5b90a devl_port_register EXPORT_SYMBOL_GPL vmlinux 0xc7c7d2e5 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xc7cc0a4e inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xc7d82696 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xc7e27c50 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0xc7e36a84 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xc7e412fa device_create_file @@ -24545,7 +24555,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf EXPORT_SYMBOL_GPL vmlinux 0xc7eb86b8 snd_dmaengine_pcm_close_release_chan EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc802d3fb xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xc80df47e msi_domain_get_virq EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xc819bdb3 snd_soc_dai_set_fmt @@ -24565,24 +24574,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xc89d0b1e imx_pcm_fiq_init EXPORT_SYMBOL_GPL vmlinux 0xc89f4213 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0xc8a6d8b4 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xc8b0ab44 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xc8b9a988 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xc8c11a97 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xc8c1b209 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xc8c2f5ea dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0xc8cc5686 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8df2b57 snd_soc_of_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xc8e67273 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xc8ef3bb2 of_thermal_is_trip_valid EXPORT_SYMBOL_GPL vmlinux 0xc8facfac rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xc8fdb2a4 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc91301bf blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar EXPORT_SYMBOL_GPL vmlinux 0xc92148b9 nand_readid_op EXPORT_SYMBOL_GPL vmlinux 0xc9346a68 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc9424d79 __class_create EXPORT_SYMBOL_GPL vmlinux 0xc945062f devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xc9456fcd ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc964eee6 extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read @@ -24593,25 +24601,27 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc988c301 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0xc9abadaa ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xc9b116a2 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0xc9b99d0e pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xc9c1f9dd ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc9cba2b4 ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9d5bfc4 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xc9d636e9 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0xc9db0991 ZSTD_isError -EXPORT_SYMBOL_GPL vmlinux 0xc9e8387e ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xc9eaacc7 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9f26454 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0xc9fa975f pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fc801c netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xca05d332 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xca0a9f1d fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xca0baad8 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xca111f85 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xca1846f5 sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0xca18b110 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xca1fd82c ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xca283e7b l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xca3891da bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xca3d3cc5 xas_split EXPORT_SYMBOL_GPL vmlinux 0xca40ebc3 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds @@ -24620,6 +24630,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xca6b7c66 lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop EXPORT_SYMBOL_GPL vmlinux 0xca8f2842 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xca91e69a devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xca9329b6 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xca9c3791 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0xca9ccec2 wwan_create_port @@ -24629,32 +24641,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xcad61c34 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xcad83499 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0xcadcfb7c vcap_chain_id_to_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcae12ea8 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xcae2c9be register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xcae5e27e mt_next +EXPORT_SYMBOL_GPL vmlinux 0xcae79c4a free_fib_info EXPORT_SYMBOL_GPL vmlinux 0xcae8ab14 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0xcaeb3a8d cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line EXPORT_SYMBOL_GPL vmlinux 0xcafbcdd7 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0xcb0d4cd7 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xcb0ee9ac bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xcb11ceea thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb121a7c __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xcb23742a subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xcb279db2 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcb3faf46 serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xcb42d738 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0xcb4a2fb9 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xcb4a5a19 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xcb4fca99 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0xcb55f26d devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb57b8d1 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0xcb5ab3b6 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xcb5dd0de udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xcba249f2 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xcba4b849 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xcbad3287 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xcbba169e pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0xcbbf9da5 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0xcbd4a67f devm_reset_controller_register @@ -24669,12 +24679,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xcc373ca1 md_run EXPORT_SYMBOL_GPL vmlinux 0xcc386f5c usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc401526 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xcc433076 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xcc54b22b call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xcc499ac4 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xcc56519e blkcg_set_fc_appid EXPORT_SYMBOL_GPL vmlinux 0xcc6fb0cc usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xcc739e2e ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xcc75fb76 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xcc78cf14 tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put @@ -24683,13 +24693,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xcc97a38e deregister_mtd_blktrans EXPORT_SYMBOL_GPL vmlinux 0xcca4e24a __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xccaf937d get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xccb84610 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xccbb7349 dax_inode EXPORT_SYMBOL_GPL vmlinux 0xccc5cd32 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd019a9 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xccd55476 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string EXPORT_SYMBOL_GPL vmlinux 0xccd8855d fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start @@ -24700,12 +24706,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xcd0f8d3b uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xcd160ff8 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xcd1be206 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xcd1c8f45 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size EXPORT_SYMBOL_GPL vmlinux 0xcd2d144d __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0xcd2db7b2 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd3dbbcd ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xcd456b5e blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0xcd4b1812 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0xcd65a703 kernel_kobj @@ -24718,6 +24722,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcdb3729b dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdb7e187 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcdbbab31 ip6_input EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd131d9 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdf18a7e dma_request_chan @@ -24743,57 +24748,63 @@ EXPORT_SYMBOL_GPL vmlinux 0xceee2ac2 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xcef83b62 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcf03ca7b sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xcf07268e usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xcf07abf2 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xcf0b4e5d ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf15a4e8 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xcf18738b gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0xcf19c5c7 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0xcf1bc126 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2e5b47 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xcf381650 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0xcf39c861 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0xcf41be11 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0xcf434afd get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0xcf544370 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xcf56365f __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xcf5a2988 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xcf5d002c mtd_lock_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0xcf63bbfb wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xcf6815eb ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0xcf68ab4f snd_soc_runtime_action EXPORT_SYMBOL_GPL vmlinux 0xcf76d2df iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0xcf7d6bec fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0xcf83542e mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf99aa2d __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xcf9d5019 mtd_get_device_size EXPORT_SYMBOL_GPL vmlinux 0xcfb19665 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc80ea7 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xcfd9ebd7 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xcffdd8ee of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0xd003877f dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0xd015f3dc usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xd01cb87c ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xd02781f3 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xd028be5e pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0xd0347020 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xd037f7a3 of_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd041c62c devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd05c2bce mas_empty_area EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0816615 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xd08b90a3 wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0xd0a2c530 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0xd0a5e00b snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xd0a931ae devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xd0a94dbb percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0xd0b69dac snd_soc_bytes_put EXPORT_SYMBOL_GPL vmlinux 0xd0bc059d omap_iommu_domain_activate EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c1d752 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xd0c8bd9c nand_erase_op EXPORT_SYMBOL_GPL vmlinux 0xd0cb6079 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xd0d83a9e sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax EXPORT_SYMBOL_GPL vmlinux 0xd0f218b7 mtk_clk_gate_ops_setclr EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xd0fcdb47 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0xd125a2a6 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0xd142c501 mas_prev @@ -24802,10 +24813,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xd159285f tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xd159d052 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0xd1670320 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xd184d525 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xd185e6ac regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd188b2f7 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xd18c80f1 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd19441c8 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xd19d3150 sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0xd19fabf7 usb_del_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update @@ -24817,16 +24827,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xd1ca6bc1 iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f35a5b bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xd1f3b903 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xd1f83ed4 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd1ffcb9b sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1fba794 netdev_is_rx_handler_busy 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 0xd223c706 vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0xd22ee570 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xd236d3cd devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0xd239dcf5 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xd242d420 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block EXPORT_SYMBOL_GPL vmlinux 0xd256a555 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write @@ -24834,57 +24845,53 @@ EXPORT_SYMBOL_GPL vmlinux 0xd2688ef8 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xd28e643c ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xd2951cac wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd298a10e devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xd29abfd5 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a16f0a get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0xd2ad7523 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2caefcd inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xd2c819e8 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xd2d0e511 imx_get_clk_hw_by_name EXPORT_SYMBOL_GPL vmlinux 0xd2d164ae devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0xd2e4919b platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xd2f1e5e8 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xd2f481e8 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0xd2f6f3c1 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0xd2fa3690 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0xd3004343 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xd30134ad bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xd30155df device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd306a459 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd3079fb0 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xd30debdf pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd31f06f9 clk_regmap_gate_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xd328d4ab pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0xd32bbda6 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xd32cfc64 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xd33a5a12 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd352b4b9 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0xd3535b93 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xd3624a26 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0xd36800ec sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xd3765a27 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xd37849df of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 EXPORT_SYMBOL_GPL vmlinux 0xd382a9f6 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xd38eb2f3 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xd39c99f2 xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd3b8dddf nanddev_ecc_engine_init EXPORT_SYMBOL_GPL vmlinux 0xd3bf4552 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xd3c4218d blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0xd3d824a8 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3cd4b8f ping_bind EXPORT_SYMBOL_GPL vmlinux 0xd3e07aad fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL_GPL vmlinux 0xd3eeb20d ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd4022939 snd_card_rw_proc_new EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41b0f69 ata_sff_queue_pio_task 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 0xd4324619 debugfs_create_file_size @@ -24894,13 +24901,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xd455967a fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0xd45fb36c dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0xd4656891 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xd47a2655 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xd47e29d6 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd47e35f6 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xd4800654 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xd489adc8 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd493f482 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0xd4975687 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0xd4a64009 snd_soc_pm_ops @@ -24917,7 +24922,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xd4fa7bec pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0xd4faa6e4 irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xd50c5cc6 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd50d4a8c dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xd50dcd4a __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xd51993da devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group @@ -24926,19 +24930,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd536943e md_start EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd550a096 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xd5579af9 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xd55892c1 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata EXPORT_SYMBOL_GPL vmlinux 0xd5694f64 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd571ef90 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xd58799e6 dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0xd596d5d7 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause EXPORT_SYMBOL_GPL vmlinux 0xd59b9799 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xd59bea5f crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xd5a2a466 nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0xd5a582db ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd5a7b8d4 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xd5aad8ac snd_soc_put_volsw_range EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5adb740 __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xd5bac5e9 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xd5bbfb20 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xd5c1be60 snd_soc_free_ac97_component @@ -24946,34 +24953,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xd5d008d3 cpts_misc_interrupt EXPORT_SYMBOL_GPL vmlinux 0xd5d32fbc check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0xd5dd942d rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xd5f03601 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xd5f91f0b rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xd606753a __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xd6170131 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xd62c7758 snd_soc_dapm_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xd630146e snd_soc_link_compr_startup EXPORT_SYMBOL_GPL vmlinux 0xd63cfeb0 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd63e15f1 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0xd640efb0 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xd64333e1 nand_prog_page_begin_op EXPORT_SYMBOL_GPL vmlinux 0xd647a41a component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0xd64b1fe3 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xd64e11db __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xd6629922 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd686d5e9 mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0xd68f019c devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd68fc444 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xd696b60d devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xd697c2a0 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xd69af5d2 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xd6a19fb7 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0xd6a3d823 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xd6c3c178 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0xd6c55c8f dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0xd6dd85cc ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xd6efb23d crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xd72577f4 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xd7292f78 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xd72d2aec scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0xd72d607e clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xd74a552b regulator_is_equal @@ -24985,6 +24992,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xd7818caf device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xd788b809 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xd795acec get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xd7a36e25 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0xd7a457a9 snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0xd7a48158 mtd_block_isbad @@ -25002,7 +25010,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xd7ee6f20 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xd7ff7abc regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xd80c09a3 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xd817d9b6 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0xd823998a devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xd829686f irq_chip_ack_parent @@ -25013,26 +25020,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock EXPORT_SYMBOL_GPL vmlinux 0xd84ece5f dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xd8575e3a device_create -EXPORT_SYMBOL_GPL vmlinux 0xd85833f6 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xd85ac3ca debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0xd85acdae usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0xd8656303 usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0xd879f405 syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd88840b7 nand_change_write_column_op -EXPORT_SYMBOL_GPL vmlinux 0xd8a14688 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd8c14e6f sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xd8cc7505 of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0xd8d0ab21 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8e567b8 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0xd8e76375 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xd8ec03c8 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0xd8ee66f2 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xd8f6a995 fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0xd9072afc serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0xd911f9b6 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xd9128fc8 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xd91c1fe6 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd9266f2e amba_device_add EXPORT_SYMBOL_GPL vmlinux 0xd92b3be5 dev_pm_opp_free_cpufreq_table @@ -25043,9 +25046,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xd960d226 nand_get_large_page_ooblayout EXPORT_SYMBOL_GPL vmlinux 0xd96818ad scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xd968560a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd96a79b3 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd96bbfc8 rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xd96d466e pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd9725af3 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0xd98ad5b9 __class_register EXPORT_SYMBOL_GPL vmlinux 0xd99cd6d3 usb_of_get_interface_node @@ -25054,15 +25059,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xd9a77c2c blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0xd9ac614e dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xd9b61455 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xd9b89227 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xd9bae62d dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0xd9be96e5 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0xd9bf1af8 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xd9c46382 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xd9c578de device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xd9d011e2 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xd9d105df blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e57492 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0672a6 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister @@ -25075,11 +25081,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xda3d1146 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xda444362 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xda6f487f extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xda7346e0 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xda714cbd udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xda8282a6 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0xda9015a6 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xdaa39253 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xda97eccb ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xda9b6b77 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xdab247a4 vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert EXPORT_SYMBOL_GPL vmlinux 0xdab6b2f4 mpc8xxx_spi_tx_buf_u8 @@ -25088,7 +25095,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdadc14d2 iov_iter_get_pages_alloc EXPORT_SYMBOL_GPL vmlinux 0xdaf17293 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf59fa8 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xdb03fee2 snd_soc_dpcm_can_be_free_stop EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xdb2526b0 meson_clk_mpll_ops @@ -25101,9 +25107,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xdb8360df devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xdbaa280b ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0xdbaa85d0 user_update EXPORT_SYMBOL_GPL vmlinux 0xdbbca44c kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xdbc56526 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbc607a9 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xdbdae583 devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq @@ -25113,25 +25119,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbf7a657 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf94176 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xdbf94212 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock EXPORT_SYMBOL_GPL vmlinux 0xdbfa53a1 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdc00eb0a ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc09c9b5 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0xdc10fb2f snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL vmlinux 0xdc11acf2 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xdc22db10 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xdc2ba6e7 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xdc31f7d9 devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc59333e net_selftest EXPORT_SYMBOL_GPL vmlinux 0xdc5c1b79 folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0xdc5c42ae blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xdc601493 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xdc616d31 tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc682e0b fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc89928f usb_wakeup_notification @@ -25139,18 +25141,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc8d0ff2 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0xdc94d6ce pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9d9a86 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdca9bacb query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xdcc6a905 __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xdcd4a807 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xdcd58bde strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xdcdc6508 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xdcde3364 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcf2e0f8 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xdcf24316 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xdcf6a99b thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0d4fda devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xdd108bb9 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xdd28d862 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xdd393bc6 meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0xdd455787 blk_queue_max_zone_append_sectors @@ -25165,7 +25166,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck EXPORT_SYMBOL_GPL vmlinux 0xdd936d60 ZSTD_getErrorCode EXPORT_SYMBOL_GPL vmlinux 0xdd9aee9a auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdda166f2 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xdda80e17 snd_soc_card_add_dai_link EXPORT_SYMBOL_GPL vmlinux 0xddade827 mtk_mux_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0xddba1c7a devm_init_badblocks @@ -25187,21 +25187,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0xde476953 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xde4821fd ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xde52b185 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0xde6d33d9 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7264b4 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xde8d43ca devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xde92deeb sdhci_enable_sdio_irq EXPORT_SYMBOL_GPL vmlinux 0xde92e913 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xde9468ab vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0xde9c5dde vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0xde9e0fea devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xde9feb70 ping_bind EXPORT_SYMBOL_GPL vmlinux 0xdea61b2c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xdea90977 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdea9ef93 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xdeac3193 snd_soc_component_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0xdeb1e05d pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xdec79669 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xdecf75f5 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xded2bf91 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xded2fda2 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0xded55275 of_reserved_mem_device_release @@ -25211,7 +25211,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdee79454 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xdeef68b9 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xdefac698 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xdefe0ff9 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis @@ -25220,44 +25220,43 @@ EXPORT_SYMBOL_GPL vmlinux 0xdf223a70 arm_iommu_release_mapping EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf27cf49 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xdf54348c stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0xdf581536 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xdf6480d5 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xdf72e81f badblocks_show EXPORT_SYMBOL_GPL vmlinux 0xdf7370dd zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xdf7acd5d ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xdf8db2b1 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xdf918846 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xdfa67b4a usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xdfa744d1 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xdfaa57dd led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xdfb9278e snd_soc_debugfs_root EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set EXPORT_SYMBOL_GPL vmlinux 0xdfdacb23 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xdfe61f88 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xdfea9f0d bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xe0031744 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xe005f999 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0xe0166482 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xe025cd92 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe033420d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe0222c2a ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xe03b88ec crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe056edb4 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xe057a172 snd_soc_dapm_get_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu EXPORT_SYMBOL_GPL vmlinux 0xe06b2ffb devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xe06c2f0f regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe079eb5a xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe07c09c2 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xe08c8855 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xe08d786f sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xe096535c tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xe0a4023a blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xe0a6b18c usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0xe0abd07e dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0xe0ad2d1c __tracepoint_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0cd479c __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xe0e886da fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xe0eb552c ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xe0ee1a4e cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xe0f8787e _snd_pcm_stream_lock_irqsave_nested EXPORT_SYMBOL_GPL vmlinux 0xe0f89290 dm_table_set_type @@ -25266,7 +25265,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe11ad7f7 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0xe1213db7 pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0xe13d5d41 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xe14308e4 ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0xe1461fcd snd_ctl_disconnect_layer EXPORT_SYMBOL_GPL vmlinux 0xe155b2bf usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xe15bc667 clk_register_hisi_phase @@ -25275,35 +25273,42 @@ EXPORT_SYMBOL_GPL vmlinux 0xe1700688 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0xe18c00b1 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xe19061af bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xe19068ee devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe1a20cdd tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0xe1af1b38 yield_to EXPORT_SYMBOL_GPL vmlinux 0xe1b629ba devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xe1bd4839 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1c8f2f8 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xe1e1dc7f fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe1e4d3f6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe1eb768c sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xe1f73b6f irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xe1fa691d tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0xe20411c5 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe2081986 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xe20fd6be fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0xe214fd59 nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0xe2177c5a fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xe2256d0b snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xe2313ba1 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xe23143a0 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe23d4c67 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xe23e9c54 vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xe241b43f devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0xe2425d11 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe24d260d phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xe24f0320 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xe25f7ec8 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xe2679cbb usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xe26c3f95 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xe26ea7d9 icc_disable EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe272268c ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xe2869783 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0xe28f429a tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xe297b16b serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xe29b4d4c clk_register_composite EXPORT_SYMBOL_GPL vmlinux 0xe29ebb99 attribute_container_find_class_device @@ -25313,31 +25318,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xe2bd73e2 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0xe2d52f30 hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe2dea76d __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe2e3ea7d bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xe2ec1a5b sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xe2ee7709 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0xe2f4587b of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0xe3073a0b __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe30d7622 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xe3261a7f of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xe327167a __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xe32f5d78 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe34b2ac7 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xe379541f edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe389225f xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xe393a5e9 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe39efb08 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xe3ae1461 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3b90089 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xe3c48e71 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3f5fd81 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xe3f7da27 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe4012d6f of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4122ed4 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xe414455a tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xe418ec62 rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0xe4216579 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xe4229782 devm_regmap_init_vexpress_config @@ -25345,7 +25345,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4349cce usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0xe43b77db power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0xe43d423f fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xe45260d8 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe4403151 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe44abcf6 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xe4635e9e generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xe463e840 disk_alloc_independent_access_ranges @@ -25364,13 +25365,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4b55bc6 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4c0fae7 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe4c18c57 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0xe4d8f09e usb_gadget_wakeup EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e8e1b6 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xe4f1530c skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xe4fc5fe1 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xe509a5cb vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xe50e52c9 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0xe50e8393 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0xe5114918 __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe511c7b3 mtd_ooblayout_set_databytes @@ -25378,52 +25381,48 @@ EXPORT_SYMBOL_GPL vmlinux 0xe5133dd0 of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xe5162d66 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0xe52b8f01 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xe531d7a2 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0xe539bc73 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xe544ec1e nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xe551774b skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xe5692586 nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0xe571c0fb device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe5763f1e xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xe57647cc __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xe577bca4 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xe587cba2 mtd_write EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5894d25 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xe59c4a75 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xe59d6f47 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL vmlinux 0xe5a26f7c phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xe5a92b33 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5b83bd6 ahci_platform_enable_resources EXPORT_SYMBOL_GPL vmlinux 0xe5bc0d79 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe5c161e7 ahci_platform_deassert_rsts EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe5cb775b iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe5f42f47 hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xe5f93a85 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe5facc21 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xe5fc394b pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0xe621ed06 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62b152e __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xe637ba81 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xe63fb7f1 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xe640692b tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xe644f38a platform_device_put EXPORT_SYMBOL_GPL vmlinux 0xe64e73c5 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xe65cfbc0 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xe665f409 vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe66b65b5 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xe6800ff8 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xe68015fa ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xe69ec7e4 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0xe6a12074 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log EXPORT_SYMBOL_GPL vmlinux 0xe6b9dc1c pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xe6baa9ea em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xe6d195dc register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xe6d87b90 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe7033a69 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0xe718e9ba __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xe723593f switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0xe7244430 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0xe72d39c9 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0xe72eeb19 mas_store_prealloc @@ -25435,18 +25434,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xe76dbd22 tegra_mc_get_carveout_info EXPORT_SYMBOL_GPL vmlinux 0xe77b5a37 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe7809410 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit EXPORT_SYMBOL_GPL vmlinux 0xe79211b7 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0xe7a0f4a8 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xe7a3d85e devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe7b14c5b kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe7c720b0 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xe7c79664 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0xe7c7c0ac nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e737a9 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xe7ebfeef bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe81a20bd soc_device_register EXPORT_SYMBOL_GPL vmlinux 0xe82a2b7c snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xe8369787 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xe840d55c cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports EXPORT_SYMBOL_GPL vmlinux 0xe84fc1fd usb_autopm_put_interface_no_suspend @@ -25456,36 +25457,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe88013a9 mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0xe884a123 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xe88dcc7c inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0xe8936ff7 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xe8a1415c snd_ctl_apply_vmaster_followers EXPORT_SYMBOL_GPL vmlinux 0xe8a49e35 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xe8a71703 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xe8a79adc serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0xe8a98db8 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xe8b4ccf0 nand_cleanup EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8eb09d8 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xe8f5b9c7 dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xe8fc8820 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xe90fcfda ping_err EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe918a0c0 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xe91fd286 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe9409e03 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe941bdad xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp EXPORT_SYMBOL_GPL vmlinux 0xe94a0b1e nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xe9520e80 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe96f04bc ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xe97c1579 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xe98e8ad2 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xe98ed25b mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe99502d6 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0xe9be0692 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe9c64d5e netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9e076e4 scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check @@ -25508,15 +25507,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xea5d41f1 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0xea87d539 meson_clk_mpll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xea95526a scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xea98b9e1 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xeaae3b5d __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xeab77d3c blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xeabd6e02 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xeac3826d usb_free_urb 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 0xead7765b bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xeadbd617 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xeade8cb2 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaefd585 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xeafeaf28 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0xeb2a2bb4 init_user_ns @@ -25524,7 +25525,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xeb5eeaa5 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xeb666c36 genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb7ba38c perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xeb7ce7b9 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xeb83fb70 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer @@ -25545,56 +25545,51 @@ EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xec161c08 blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0xec2bc72b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xec2f0ebf ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0xec30c0e6 __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xec3f579b __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0xec4f743f pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xec53b477 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0xec63e8ff component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xec70d7bd ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec96596d skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0xecc86e5a device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xecc9e537 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xecd106c8 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0xecd94b99 buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0xeceae8f2 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0xecf2cb22 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0xecf3615f __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xecfa5373 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xecff49c4 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0xed09b6a0 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xed0d09de ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xed214b71 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse EXPORT_SYMBOL_GPL vmlinux 0xed33988f devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available EXPORT_SYMBOL_GPL vmlinux 0xed35b614 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0xed37fb8a gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xed3a3d4f nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xed563f81 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0xed5fe298 inet_pernet_hashinfo_alloc EXPORT_SYMBOL_GPL vmlinux 0xed67310b devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xed837927 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xed8444b1 mtk_clk_register_ref2usb_tx EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed8fa4d2 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed983e94 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0xedaa2c76 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0xedaadf16 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xedb64e7f dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xededee98 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xedf0da15 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xedf1fd2a sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xedf6c6d9 strp_done EXPORT_SYMBOL_GPL vmlinux 0xedf9009c devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0xee1803e3 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xee25b9b9 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xee278edf fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xee2ba7d6 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xee2ff20f inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee480119 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xee49b3e7 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xee4f3905 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xee549b97 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xee5d7494 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xee694a90 devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xee6961e5 of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible @@ -25603,6 +25598,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xee8f1573 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xee9c6cac serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xeeae8df9 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0xeec7c6ec meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0xeed1b8c8 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xeedbc9ff pm_clk_runtime_resume @@ -25628,37 +25624,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xef7d2a0f sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0xef8d41fd dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xef9475fd metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0xef94852d spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info EXPORT_SYMBOL_GPL vmlinux 0xefaae5af of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xefb25a97 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0xefccdded __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xefd2b421 of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xefd3afec snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0xefd50ccf cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xefd9da2c crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xefdd5eca __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xefe16a4d ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xeff19cd1 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0xf01475c0 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xf02368e8 put_device EXPORT_SYMBOL_GPL vmlinux 0xf0249876 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf036ede9 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0257c7c __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xf03f26b4 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xf043f1eb is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xf04d2ddd __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xf053bf64 ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0xf056bb61 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05d21b7 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf0637276 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xf07c2c89 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0xf08d7263 filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream @@ -25667,15 +25658,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xf0cae5ad usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xf0d0ce52 snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL vmlinux 0xf0d1f041 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0d5d1bc sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xf0e82ef3 snd_ctl_register_layer EXPORT_SYMBOL_GPL vmlinux 0xf0ea342e sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xf0f439f0 snd_soc_add_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0xf0f96d9f devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted EXPORT_SYMBOL_GPL vmlinux 0xf0fb685b snd_soc_component_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xf0ffb083 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf141285b tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0xf13041ee ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xf14174d1 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xf1435951 blkg_conf_prep @@ -25692,19 +25685,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xf18ac470 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0xf193b96f sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0xf19da217 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xf1bd4991 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xf1dc1257 __cci_control_port_by_device EXPORT_SYMBOL_GPL vmlinux 0xf1df623c snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register EXPORT_SYMBOL_GPL vmlinux 0xf202d0e3 nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xf20d9bf7 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xf219d957 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2319592 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xf237bbd8 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter EXPORT_SYMBOL_GPL vmlinux 0xf2574215 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0xf257e4ba meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0xf26d391b sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf2754f1a ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL_GPL vmlinux 0xf28b4aac shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on @@ -25712,7 +25708,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf29ac1c1 snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0xf29efb61 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xf2a31d07 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xf2a97891 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0xf2b94859 register_mtd_blktrans EXPORT_SYMBOL_GPL vmlinux 0xf2bbb447 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xf2c7202a pci_user_read_config_word @@ -25734,13 +25729,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32cefd2 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf329f9ce inet_hash EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33bf08f sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0xf340b593 mtd_read EXPORT_SYMBOL_GPL vmlinux 0xf34167e5 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0xf342d774 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3456c93 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xf350bb8d mas_erase +EXPORT_SYMBOL_GPL vmlinux 0xf3710af5 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xf372fc2b xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu @@ -25748,26 +25746,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xf38c4fc3 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0xf393b3be of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3b349cc devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3c61354 nand_gpio_waitrdy EXPORT_SYMBOL_GPL vmlinux 0xf3d65d04 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf3d70496 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xf3e3d07a crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xf3f6ee49 usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0xf3f8b739 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xf404277f fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xf406e13f mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0xf40c5074 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xf40ebc6d ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xf41dbb3c mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0xf41e26cf tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0xf43d038f snd_soc_info_volsw_range EXPORT_SYMBOL_GPL vmlinux 0xf43fcf93 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xf444b052 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46ad12e sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xf46c2ab0 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0xf470d7c9 serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xf474e081 dev_pm_opp_find_level_exact @@ -25777,20 +25772,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xf485393c virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0xf4865b3b regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf4953f87 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xf499d1a2 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xf49a1d75 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xf49bd8ac sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0xf4ac6175 snd_power_ref_and_wait EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4b63435 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xf4bf75e0 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf4c31eb3 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xf4c46abd fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4e52574 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xf4ead9a4 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf4fbfe15 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf4db680d xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xf50bb592 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xf50bc7ea devl_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xf511a16d md_do_sync @@ -25804,19 +25795,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xf547d4c8 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0xf548797d virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf552f275 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf553b4c2 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xf5710e33 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0xf574503c powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xf579b282 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0xf584d709 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL vmlinux 0xf586e6b9 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xf5876ceb skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xf58ba7da devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xf58828f9 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xf59edb9d device_attach 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 0xf5b5db94 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xf5cc0d3d regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xf5ce6ffb fsnotify_add_mark @@ -25825,16 +25816,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5e0ee35 led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf62f25b1 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 EXPORT_SYMBOL_GPL vmlinux 0xf642c8ab rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0xf645e551 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0xf65907d5 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf6598379 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf674b02c sdhci_pltfm_register EXPORT_SYMBOL_GPL vmlinux 0xf693ec81 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0xf69790dc dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0xf6a12d0a serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0xf6a6fb76 hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0xf6b62684 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0xf6b80407 rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c8aa0c clk_mux_determine_rate_flags @@ -25847,25 +25841,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xf6ee4a6d iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xf6f345e0 snd_device_get_state EXPORT_SYMBOL_GPL vmlinux 0xf72351ee bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf72374d1 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf7271f3d cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7311ff4 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xf731d13f snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xf741de35 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf753be45 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer EXPORT_SYMBOL_GPL vmlinux 0xf7761fdd smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xf7797bfb __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf77c5b9d init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xf79c4db1 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf79cf35c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf7ba47dd ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c5c3db get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xf7c96d98 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xf7ce3dea task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xf7d31704 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0xf7d72ae7 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xf7d795a6 snd_compr_stop_error -EXPORT_SYMBOL_GPL vmlinux 0xf7f04300 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xf7f5139b pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xf7f5727b strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xf7f5d81c devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf80c33fe apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command @@ -25874,9 +25873,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xf815cbea inverse_translate EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event EXPORT_SYMBOL_GPL vmlinux 0xf81e1222 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xf81e5cc7 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0xf82137c9 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0xf82262c2 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xf827147d lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8288aac skb_segment EXPORT_SYMBOL_GPL vmlinux 0xf8293076 mtk_devm_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu @@ -25884,14 +25884,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xf8599dad crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0xf85f3663 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xf865822d of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0xf86bc86e ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xf87deeba ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xf87b5c1a ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xf88145ed crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf893fc88 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xf8a0784f rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0xf8a78036 sdhci_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0xf8d08193 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xf8d20dec blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xf8daeeed kobject_rename EXPORT_SYMBOL_GPL vmlinux 0xf8e1deac folio_invalidate @@ -25904,39 +25903,40 @@ EXPORT_SYMBOL_GPL vmlinux 0xf922f856 cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xf925c4e7 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0xf9288b2a nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xf944dc81 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0xf947dc75 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf95db1af debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap EXPORT_SYMBOL_GPL vmlinux 0xf963857a snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0xf96408ef mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xf9695e02 snd_pcm_stream_lock EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node EXPORT_SYMBOL_GPL vmlinux 0xf96dfb07 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xf9730293 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xf97db83b mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xf98e7977 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0xf98f8a23 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xf993fa34 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xf9997e46 snd_soc_bytes_get EXPORT_SYMBOL_GPL vmlinux 0xf99a0cd4 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a42af4 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xf9a4bffc devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xf9af96d0 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf9bdc5d0 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0xf9d7c157 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xf9d978d0 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xf9e0994a rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0xf9f73105 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy -EXPORT_SYMBOL_GPL vmlinux 0xfa1e0d21 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa1fec53 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa231abb serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xfa27aab4 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xfa28da2b report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xfa32d8b6 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule EXPORT_SYMBOL_GPL vmlinux 0xfa4c31c9 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xfa717e64 ahci_handle_port_intr EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0xfa7c2e49 mas_next EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next @@ -25949,16 +25949,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xfabc995c relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xfabdcb0e vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xfac0e4b0 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xfad556be __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae674b0 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xfaf429ae handle_fasteoi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer EXPORT_SYMBOL_GPL vmlinux 0xfaff929c dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xfb06fcc5 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xfb0b7f57 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xfb1174e6 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xfb18ac91 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xfb1b19d7 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xfb22bdc8 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb292365 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync @@ -25968,7 +25966,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xfb61a349 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xfb62f1c2 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xfb664dd2 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xfb6a8c2b nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name @@ -25977,6 +25974,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfb82c16e mtk_mux_gate_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0xfb96186f regulator_put EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xfba54ba8 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xfba6114e snd_soc_get_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0xfbaa5de6 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action @@ -25985,26 +25983,28 @@ EXPORT_SYMBOL_GPL vmlinux 0xfbc6a4e5 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0xfbdd5682 devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0xfbe0f17d soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbe6e20f __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc067229 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xfc0d43ab usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xfc11edf9 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xfc122dd6 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1c45d2 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0xfc232b06 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfc2be3bb lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xfc314efd ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xfc26c27f sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xfc320e07 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0xfc654826 icc_put EXPORT_SYMBOL_GPL vmlinux 0xfc68fe45 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xfc856aa0 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xfc9cfb18 tegra_bpmp_mrq_return EXPORT_SYMBOL_GPL vmlinux 0xfc9ebef9 finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0xfcb0be67 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfcba17b6 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xfcbadac2 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0xfcbdf88e dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0xfcd43ad4 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0xfcd949ab crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfcdfd9a2 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xfce4c7c1 of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0xfcf90919 pci_bridge_secondary_bus_reset @@ -26012,10 +26012,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfd01fbad to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xfd0940b9 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xfd121145 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0xfd2190bc extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0xfd247e83 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfd2e06d2 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0xfd47eefa dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier @@ -26024,8 +26024,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xfd6cc1da snd_soc_component_set_pll EXPORT_SYMBOL_GPL vmlinux 0xfd6f5e21 of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd84fb30 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xfd902e92 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xfd903a83 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xfd909a8b devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0xfd9b96ef vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xfda3488e mtk_mmsys_ddp_disconnect @@ -26038,22 +26038,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xfde6ce44 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0xfdea7bed phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0xfdf3a002 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xfdf406a0 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xfdf5013c switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xfe126158 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xfe15b8c6 sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe211b9a ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xfe224457 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xfe263de1 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xfe3717a4 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xfe41e705 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe4f45da cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0xfe4f708e pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xfe728477 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe5231c9 net_selftest EXPORT_SYMBOL_GPL vmlinux 0xfe838e5d regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xfe8900dc devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page @@ -26061,38 +26058,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xfe9cb36c cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0xfe9e3b8c snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0xfea0b6ac xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xfea1b3f1 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xfead104e of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0xfeb176c2 mtd_blktrans_cease_background EXPORT_SYMBOL_GPL vmlinux 0xfebc47eb virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xfebe7d55 sdhci_free_host EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfeca8716 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xfeccf61d fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee129c7 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0xfef64ea5 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xfefce8e1 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff0bbe34 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xff11a7ab skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xff127e76 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff1b470b irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0xff1dffcb debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0xff20a2af regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2bdc4d get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xff2fbdf4 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role EXPORT_SYMBOL_GPL vmlinux 0xff462c05 of_phandle_args_to_fwspec 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 0xff867a07 __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0xff8d35ab devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xff90b0fb ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xff9b808b pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0xffa38362 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0xffa6823c clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc155f9 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0xffc88e1a blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0xffca1e09 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xffdc7625 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xfff33e92 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0xfff5e074 rockchip_pcie_enable_clocks EXPORT_SYMBOL_GPL vmlinux 0xfff669be synth_event_create @@ -26347,82 +26350,82 @@ IOMMUFD EXPORT_SYMBOL_GPL 0xf611734c iommufd_device_bind drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x082e2acc iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x00dce049 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x026f41ae iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0758908e iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0accdf17 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x115a0f96 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x03642663 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x064b2b0e iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x076d887b iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x09bbf135 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0a28395b iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x11440299 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x14747186 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16758ade iwl_write_direct32 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 0x1c9856b3 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1e11c8f4 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1e987710 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1ed1184f iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1fc0ec7d iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x235a72b1 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x25331004 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2a47d469 iwl_fw_dbg_stop_restart_recording 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 0x2e0e5f73 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2ef76ea0 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x31da22b7 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2e2b8b38 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x325ad882 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 0x39144807 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x407a734d iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x43289da1 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x460a3dc2 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x46df0e70 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x47872cdb iwl_write_prph_no_grab 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 0x4c091270 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a8f2c80 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x52cc0a25 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x52dd28ff iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x56296f2f iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5f6e583c __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5faef736 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x654dc10a iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6914339e iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6a0e2091 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6f3c375b iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x71e72774 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x742658e4 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f752e24 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65b6cd2d iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x71cd996f iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72c37b01 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x747fa64d iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x755de030 iwl_fw_dbg_read_d3_debug_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 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7afce35d iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ec19c44 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a148734 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828d0f38 iwl_poll_direct_bit 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 0x85c050fe iwl_pnvm_load 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 0x88190a5f iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x922169c5 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8c733b59 iwl_fw_dbg_stop_restart_recording 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 0x966f6030 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa674ff72 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaa009e2e iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xac5b7728 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xae827f73 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d4eae52 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9f63986a iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa04706bc iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa6327e87 iwl_get_nvm 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 0xb4294d08 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb432225a iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb6a7ce88 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xba2f5c28 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbae1fa81 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc0c71cfb iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbc24a070 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbdb8884a iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbfeba69d iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc29893ab iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc7a72890 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xca17f240 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcb062385 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 0xd10fbf57 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd1750cdd iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd0d8c256 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xd27bb2d8 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xd2de3cc1 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xda1c70cc iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xde51e787 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd2e858dd iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd85da221 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb3efd81 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdcb545a8 iwl_fw_dbg_error_collect 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 0xe2c26b0f iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe5b7e1c8 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe745ad5c iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xec0d7d5d iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf185d373 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf73b1990 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf7aa83a2 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf8d32d60 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfa09d65e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfa2f2d2c iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfacffd0e iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xff66090e iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfffc0641 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfb695455 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfd68d672 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi LTC2497 EXPORT_SYMBOL 0x955354e2 ltc2497core_probe drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0xf22cce99 ltc2497core_remove drivers/iio/adc/ltc2497-core MCB EXPORT_SYMBOL_GPL 0x069598d5 mcb_alloc_bus drivers/mcb/mcb @@ -26440,8 +26443,8 @@ MCB EXPORT_SYMBOL_GPL 0xe5d5e33f mcb_get_irq drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeab91d67 mcb_bus_get drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x7acd9ba4 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0xa93647f6 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x1615f685 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xdc75875c ocelot_chip_reset drivers/mfd/ocelot-soc MFD_OCELOT_SPI EXPORT_SYMBOL 0xeaf43bd8 ocelot_spi_init_regmap drivers/mfd/ocelot-soc NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x06850319 nvme_find_get_ns drivers/nvme/host/nvme-core NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x17939caa nvme_execute_passthru_rq drivers/nvme/host/nvme-core diff -u linux-6.2.0/debian.master/abi/ppc64el/generic linux-6.2.0/debian.master/abi/ppc64el/generic --- linux-6.2.0/debian.master/abi/ppc64el/generic +++ linux-6.2.0/debian.master/abi/ppc64el/generic @@ -139,7 +139,7 @@ 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 0x13c6334c suni_init +EXPORT_SYMBOL drivers/atm/suni 0x9bdde032 suni_init EXPORT_SYMBOL drivers/bcma/bcma 0x6935f28c bcma_core_irq EXPORT_SYMBOL drivers/bcma/bcma 0xa21d1055 bcma_core_dma_translation EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str @@ -160,8 +160,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xc5064944 paride_unregister EXPORT_SYMBOL drivers/block/paride/paride 0xc67b2dcb pi_write_block EXPORT_SYMBOL drivers/block/paride/paride 0xdc6eb5f7 pi_disconnect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xc461f7ae btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x3fa14b4a rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x020782a3 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x68fe32f0 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x335c594b 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 @@ -1293,350 +1293,350 @@ EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xab82dcd1 iio_triggered_event_cleanup EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xbd76867b iio_triggered_event_setup EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xfc5b2e67 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x021d682e ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12117a3a ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1669e442 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2bb4da04 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d186754 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d8b132b ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4eb5a57a ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a8c80e7 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64f2c26a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0038cbc2 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1697bd79 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20c1bff2 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2fb64cd4 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32836c79 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x493bc3ef ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4cc64533 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69038b48 ib_send_cm_rep EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76261496 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82cdf310 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e01979e ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac2e7b24 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6bb7a07 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0a9aa20 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00be1dd4 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76e4b5d4 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f7888a0 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x95e1a246 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xacc54c02 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf3e3a07 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4913a8b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe7d77421 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01012358 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x016cbee5 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e4b0e3 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x021bc04b rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x027986c9 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c8f93f rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05172c52 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x090dad14 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094edfdd rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x015658e0 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0267152b ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062a2f55 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0859935a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0866cfed ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09201450 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d5eea2 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e55eff rdma_user_mmap_entry_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a28bdef rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa385c8 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c701442 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c8a2d11 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f5d1b32 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10f2f26b ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11341d1b rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1251dffc ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ca63646 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d9f187b ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f891322 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104e8886 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10542494 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10976611 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119ce2ad ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1232f560 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12650729 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x146a14f0 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1562c81f ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x159a1497 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x165c27df ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b4cb4d ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x192361ca ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19633acf ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb38dd6 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1c3a0d ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d363341 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fbc592f rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2105a17e ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2142ab5e ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22a02e11 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a616e8d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b6321e8 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c42d038 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c58e893 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d49a9a6 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1deae3c3 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fbef432 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff7836c ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x212d2ff4 ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23744beb ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x252e366f rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x243b1972 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25c3f271 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25cf7c04 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a235abe ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a923574 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dd0659a ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ddaf088 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2df9f4b2 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x280affc7 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x296160af rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b7eca68 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e12f642 ib_unregister_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331a709f rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3721f414 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37571ed3 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x378cf37b rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x385a71fd rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3574fc ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a537297 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8abc3e ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3509eb92 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a6e4f0 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38ec82df ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39a1d228 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f07ca68 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f193c99 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f5e3cdd rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fadf361 ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404b95f5 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c990f9 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4154dc37 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d56cf5 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x409c2666 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x421c34ec rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4252d5ed ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4435b9dc rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46e1efbf rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471d5f12 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47715f63 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47972c6a ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48783bd8 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49009e4c rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c58c8da ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4704f326 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x474fc424 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d564a9 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47eee2e0 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x484ee4c1 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4857756a rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49850822 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49c16693 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b029005 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d0c601c ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d6f18fd ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e764458 rdma_rw_ctx_post EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fab950c rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50637233 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x515c0dee ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51d25de1 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5300f3be rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x534a37f2 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d23b6e ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f76a4db rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x508219e4 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50d9ce1a ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53691ea6 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x553af36b ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567e646d ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x562e45a5 rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5764f1ca rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58cc4bf6 ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x592f037a ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593e0a6d ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b6a0195 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e45a8df ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f051f82 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x608ae90d ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6116b63f rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a038121 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0309d3 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c9bf389 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5da1fbf7 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e61e55f ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e64488f ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ea0086d rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5798a5 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb56154 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6038020d rdma_restrack_del 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 0x61d68d65 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64a6a08d ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6610c3d9 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66dd0438 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6797e2a0 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d448ea rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x691889bd ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a20c66d ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x635c91e0 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69818c5f rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae590e6 rdma_move_grh_sgid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c3b8b22 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8cead9 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e91920e rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ebd25d0 ib_dma_virt_map_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fa802fc rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703b1e66 ib_modify_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x723a7cbf __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x709f7cf6 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70ba8839 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x715898a3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71845d70 rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e20236 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x759bc7fe rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x782624a3 ibdev_info EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790f8e25 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x794ac157 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0e31dc ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a93943f ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae129ae ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cddc815 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e18326c ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e263aff rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f95b92c ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d423c7 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81a3b49f rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82717cba rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x827872dd ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f68062 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83f4140e rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85b30f9b rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86290307 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cd5bad ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d9cfe10 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ffa196b rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79fe9059 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a23de27 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5e2a3a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ddc3f01 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x800eda75 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x821409e5 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8509379f rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85422866 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87c005e5 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87e62b10 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881b847b rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x889be3fa rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88f93e73 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8927514f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89ed5eae rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa9d863 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c7cebb8 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8f4120 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90acf790 rdma_nl_put_driver_u64_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b5f66a ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96a9570e ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970c94ad ib_dealloc_pd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x988814fe rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ce1de9 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a812eee roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab4a8b0 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9be063af rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c2458a6 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eb81e02 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c13d00 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0d8aacf ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa21bd375 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa24d108d ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f3b4c60 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0944133 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1c0769b rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa24d9199 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa30315c1 ib_find_exact_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57e2b6e rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa59ab507 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa730206a rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa4aea93 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac627f67 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac673ffc ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5cc150 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e42484 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7bea558 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9897e0a ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9ddc60e ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f7a71c ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac053bf1 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac93e6f1 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadb1e8e4 ib_close_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf616613 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a2dd3a rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb209417a rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2740ad2 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb18ba975 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1b0e732 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb31991d4 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3fcfe86 ib_free_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6253e54 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6b782db ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7bb6669 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91c3d07 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba03534e ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6daae0 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc884a48 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd641327 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfb7c03c ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00a31b6 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17905be ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1c8b233 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30ce226 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42a793f rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc625bd51 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc63d6628 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7946e9e ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7cffaa9 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7f5db58 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca554e17 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd3f2a78 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcebc6403 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7c41a72 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb86b4342 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb14e77c ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd1e4b7 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd865581 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdab75cc ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1566eb7 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1e6e5cb ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3dbeeca rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42bdf81 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7300d76 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8fd95cf ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9dfb69d rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb7d490a ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc64c639 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccfe1ca0 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd324a59 rdma_restrack_get_byid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd11f4dc2 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd206dd7b rdma_nl_stat_hwcounter_entry EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd23eab19 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd267863b __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3ff90eb rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd638cd0d rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd240eb17 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2dfd6dd rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4396450 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5881db7 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5a04790 ib_dealloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e5180e ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd78b3f69 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c53b6b rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8345f00 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9ff2e1b __ib_create_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda409378 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb68011e rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc3edea9 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdca0c938 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd198eea rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf719cfa ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf924353 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47a3282 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda9f0a02 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbda48d6 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddccbe01 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfd97550 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07291de rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0e540de rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3358a2f __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe442b4c4 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe54e4cd6 ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe60c4d77 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a5cb7f rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5e7b1b3 ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b65561 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b7ae5f ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9b5675c ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9550a35 rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea5b41fc ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea82be9f ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb66f7f2 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebd82824 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xece0be6f ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecef9ae5 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1a139a __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed2325b4 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed124f8 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1baeb14 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf229503f ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf270a541 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf27e2b97 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2c8dd36 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2f4b29d ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5cec699 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeae33515 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec034583 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec0b565b ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec61ae66 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed0cc77e ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef942fa7 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1ba6462 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c08ce4 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1c7d80b ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2df3cf6 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf325039b __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf433b5c8 rdma_rw_ctx_post EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf621e9d9 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6d15250 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74ccb9a rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf85c28e4 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde89fb4 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff7900cf ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8d29fb rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfff1a4ab ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09888158 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e58dc0a ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x19221920 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20869de2 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x266101b3 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x354eeabb ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf772f404 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa64e32a rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb291c40 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe28c86d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffe9da19 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00248412 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x011daa70 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x106b2416 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x120ea799 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e565e4e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29d37066 ib_uverbs_flow_resources_free EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3858d469 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x401896d4 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fc51753 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5555e361 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d20b319 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63a52adc ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64b4da03 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x445a0e0f ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x470000fe ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5a454e6d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c98e9f6 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f7c1836 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62d45316 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6712aceb ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x69733753 ib_umem_odp_release EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a7f8fd1 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ba47209 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f3df307 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8093d9c8 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x852e618a uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x87ea736a ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88262453 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ec1b2f6 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ef1dd3e ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f33171d ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa014cc97 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8602340 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7ff4941 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ee15fc9 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ee5c157 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8636f4c1 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8d938b5e ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x99b5d15d uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ceaad85 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e66ee86 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3d6ee88 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8212218 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8dc774d uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xae4033bf _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf6e1f3a uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb0116533 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5f5a23c ib_umem_odp_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe4caf0c ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc587b023 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7516471 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd755160c ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd82efdcb ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9974f0b uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe47f3496 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebd95ebe uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf131c171 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf326e277 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfed29f62 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0505ff1f iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x467f16bb iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c03ed74 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9f4f3b7a iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa83b4026 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd6c2eac3 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc707e69 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc205da88 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdaba3c0f flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdaf7d425 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb029130 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd06ba66 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdfe551de ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea38221b uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb8d7065 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0de31c8 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x16c8ecb1 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d5a08e1 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x46e945fc iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x492c772f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x561509bc iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c150be9 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a6eca1e iw_create_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfe6708f9 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17cb9e85 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f550a9d rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d9500f3 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f1839c9 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x342bf137 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34f4ed07 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39038b4e rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ed7b62d rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fdc5ea4 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x568a2930 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58b9cbd7 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5abc1091 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6368f5b2 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b47856f rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ca92c86 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e7617e0 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d2af4bf rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80f74e2b rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x82fb5a10 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83d63458 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d95b0a8 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfd2cf48f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b6d69ce rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c2398cd rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x109971ad rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x121ae3f2 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a242330 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b6e4cd0 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1be12592 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27826de5 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3af31e4d rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3eb42ffa rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4143d7a5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41a40956 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41fca0cc rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43a2931c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x501897fa rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5dcfb4aa rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6030f65e rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a4b1903 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ccfa1eb rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8059f87f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x862ed9c5 rdma_accept EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad3f3ab3 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaddbd9b2 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0e332ff rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb34c13a2 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc074b581 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd30d0122 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd39aba34 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda9b48c2 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde21f739 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdebcbc1b rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0f2e2b0 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe305a32a rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9cbe364 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x087106ce rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0c6c33b3 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0dc27e06 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4979110a rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5e82367f rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xef628c7a rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf28ae2c8 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa64e375d rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa89ff2bc rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8fbb932 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad145615 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad3246df rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf138ac7 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb11901bd rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbefe366c __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd577a7f6 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7fd319a rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf00ba972 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb9da768 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfee7bfc2 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x419c4e54 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x677b9bfb rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb8b1f5f2 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcfb7dc20 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdc00a832 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xef03e4d7 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xff14a66d rtrs_clt_close EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x44366411 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4934dd39 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x997c6d28 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc49c5f77 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xdac289eb rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xecd629f8 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x74f5c817 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x860b2460 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x993a670f rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa4c1b3fa rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xebb4e54b rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf2bd58a5 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xeacec99c rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf0e49fc1 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x19a3ba29 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x38e91169 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5b797d91 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd2b2c999 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeb96c253 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xed50e40b rtrs_srv_resp_rdma EXPORT_SYMBOL drivers/input/gameport/gameport 0x18cd5a74 gameport_unregister_driver EXPORT_SYMBOL drivers/input/gameport/gameport 0x3407054d gameport_set_phys EXPORT_SYMBOL drivers/input/gameport/gameport 0x56e2d216 gameport_start_polling @@ -1674,48 +1674,48 @@ 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 0x577a602b mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaa688fb3 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb7c50b0d mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfc992a57 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9dc47fb2 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbf761453 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00e039eb get_next_bframe +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0ad16568 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x19542ae8 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9ebbf46f mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xccef9c53 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x5e28bc6d mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa4f9d236 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x022cfb43 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09bcb05a recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17ed2a41 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2056446c mISDN_freebchannel 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 0x2c107131 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c81beab dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d920655 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 0x419220db recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44d11260 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45160735 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e6235ec mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43a8296a mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5680df5c bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5628e234 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5b7707f6 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c9bea75 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e162933 get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x700b3d0c create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x76f85195 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77e7c5be mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8302e29d bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8843719d recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d0fc11f mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74ee15f6 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x888e0e0b recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x889c0171 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f615c9e recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb783c6a4 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa282f716 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9646957 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1dd7ad3 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5a2b4ae bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbba08e12 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2a7efe6 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdda348bc mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xde8f27ca mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1809064 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe61a6ec2 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec5b23f2 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeca8a674 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef2e5173 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf32c3da1 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4737a4d queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc78c69f mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf658d145 dchannel_senddata 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 @@ -2476,88 +2476,88 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd133a368 nand_monolithic_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe90a7cda rawnand_sw_hamming_calculate EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfa981894 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0fc2bd09 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x19d384aa arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b5047ce arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x20f6e82e arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x263e28c4 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29d3ab6b arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3a395689 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0d6aaadb arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0e28aba9 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x633344e1 arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x88764417 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa2fc4bfc arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc561e246 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6a8dd410 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6d8fd1c5 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x86a9c70d arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x892f0474 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d3dc590 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad76d674 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbca177e3 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd76dcc9d arcnet_close EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee8f978e arc_proto_default EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb569684d com20020_netdev_ops EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcb459a78 com20020_check EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcda5dc5a com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x530037e2 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xaa4cebea ctucan_suspend -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf718f20d ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x54e66622 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xdef776aa can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0563a66d b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x184399a5 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1853b839 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18c5a8cb b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d31862c b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25af8abb b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3402bfae b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a3d78c2 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f014076 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x413f1bc9 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bdb3202 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cfc01a6 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60b80865 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72c45d25 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82ef878c b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ed9003a b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ef7a215 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8fef53dd b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90fc0771 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95bc053e b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b546d12 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa057ddc5 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaeec47fb b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf38ff0d b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaff73b0a b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0408115 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba95e17c b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3e59337 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc598e7e b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4a55f94 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6494a25 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde22645b b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe04952d3 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe44bc4a7 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed7fb550 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeeccbe19 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4559754 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfad41044 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1498f2d5 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x62eb4f7c b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb7d610d0 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc2c5e5aa b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x26e251f0 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3321eb64 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x34126a5d lan9303_remove +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x49149d5e ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x6630cf01 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe40845be ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x3c852394 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x4c1df5ae can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0167cf46 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x031a6550 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19ef2f07 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d2d14e1 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a0b520e b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2bdc4b61 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30b3e2d1 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a3f803d b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4da9eb56 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5371393d b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56c14e4d b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x580c1130 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a613eb2 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c52b825 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e7996a3 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64a9f5f8 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e857dac b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72b7ca00 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72c71b91 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7eb5f7ff b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f03198b b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91f268c1 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98622f04 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b877417 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa048e50f b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa676b0c4 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xace71ce1 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb281e0be b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb40a7663 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbbcef43 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc306b877 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca5d47c0 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcad50afa b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc9ac722 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4336086 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbfa2c5d b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe7f8e2f b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff823a55 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0bbd2003 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x25e4cb9d b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa91ea9cf b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfc971551 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x296fe328 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x79cd3697 lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x445a27e9 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x483e1b85 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x6b0dc69c ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x052810b5 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x26b3fb6e vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7020a0ee vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xed53e899 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x0044ca59 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xa1810707 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xad2ba20b ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x186eaab8 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6ce8d1da xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb37e814b vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xed36e75a vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0bb6e614 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5275c672 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 0x98528df8 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa5ffe4e4 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xaec3db3d 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 0xdba437be xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xbcd9e50d xrs700x_switch_remove EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01c04baf NS8390_init EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x06cf9d75 ei_poll EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt @@ -2570,9 +2570,9 @@ EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe0b0f67b ei_set_multicast_list EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf376ffdb 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 0xa7b52810 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x961b2f60 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x996057f8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x972776c6 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1f3f4a82 cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xaca23ef0 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable @@ -2592,80 +2592,80 @@ 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 0x06480b29 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29af1eb8 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4e17970e dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x548d2171 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b1ee05b cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61b5d478 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ed13013 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c465524 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8aedfeae cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x92ab19d8 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b545168 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb7ce54ae cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8a6e8e3 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7beb538 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef6d1014 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5f83449 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b5fbff7 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c2450d5 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0fdb26d5 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x453485c5 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f16ab70 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51a859ab cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53390863 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ecb26fd cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73c0d1fe cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7720b02b cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7cab7157 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8bd85232 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b67cc3e t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcaa3d4a8 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe45fce40 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7e43f3d cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5a26613 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00298f6d cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06f3eb32 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0730c471 cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20cb28db cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24b7a8da cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24eabf2f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x258bff37 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2692fbda cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2be99aec cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3505e574 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d62a220 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4607b885 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b5d8cee cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17d0ca97 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18d38b6b cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18dbfcbf cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e056c18 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d8b2f0d cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e395827 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3581d050 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x438d8d05 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x462bdf4f cxgb4_alloc_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5215397c cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a2ce587 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e6fa500 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6142c42c t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x684049ee cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71accca7 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71c46070 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76259590 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d542ee3 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ea6582c cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f32ee3d cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9203dbe8 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94cface1 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95b02852 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99bcadfe cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c9a20bf cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0f4b558 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2fdeb8e cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa667923e cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1b9cde7 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc24a17a4 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6de29d4 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd7e9e8e cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd320af8f cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3d9c4cd cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x511909ef cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a19817a cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ffefa79 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60ffeddb cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x652de96f cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66c66456 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f8dc77a cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b7bddeb cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e1f23aa t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82281af3 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x823a0fcd cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8290d98d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x893f31fc cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d8d46f7 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e00e219 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98028651 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1e26da6 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3982d27 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8a357fa cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9917384 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd28ef74 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd13f17ea cxgb4_l2t_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7797de6 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc7d47c2 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcf17e6a cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf7988f3 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0e4d73d cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe97cf92a cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9dca44d cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb88bd2f cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee8ea266 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7575699 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe19a026b cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe268ae59 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4525cd0 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeae033e2 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee0faa96 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef49b76d cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0fa8d86 cxgb4_check_l2t_valid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc202a04 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0ee466cc cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf36873e5 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5547e6c cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa0cc9f6 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfaeba84f cxgb4_map_skb EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1fce7bc0 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x390af204 cxgb_find_route6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x49df6ac0 cxgbi_ppm_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6979fb5c cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x88699235 cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x891a3ee4 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc52b22f6 cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xeaa5045d cxgbi_ppm_ppod_release EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x645a43e7 vnic_dev_register EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x897c252a enic_api_devcmd_proxy_by_index @@ -2673,17 +2673,17 @@ EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x93aad1d4 vnic_dev_unregister EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1266b0b vnic_dev_get_pdev EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xed49ef66 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x459b459b 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 0x5ccec7b4 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc456baea be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa8cb4e45 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xa7c1398f 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 0x27d9fda0 fun_dev_disable EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3ce71f91 fun_reserve_irqs EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x87f47928 fun_dev_enable EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb8cecd0f fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x6f59e05c iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x90fc1990 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3e8330fb iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x61d95a58 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 0x2bc87899 prestera_device_register @@ -2734,166 +2734,166 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd24256 mlx4_is_slave_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfda20ef0 mlx4_get_slave_pkey_gid_tbl_len 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 0x01061fb8 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x022c27cb mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d0dc2a mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x032196be mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c77422 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04742c44 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069928c4 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0960b31b __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa2fd85 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c0eb429 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d5d0b5 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e33c68 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x165bf293 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16ba5d16 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e53591 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dc71773 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e1b895b mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x022ecf95 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02b05a65 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06112ad4 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x082632b6 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ac3d402 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d22e776 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d3dd9df mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10846d03 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x110cadd3 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ee6192 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x163bd153 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18187f83 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aac3749 mlx5_eq_disable 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 0x1f8b105a mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd946cd mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21bee11d mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c709e0 mlx5_sriov_blocking_notifier_unregister 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 0x2474e9ce mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26268a03 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c6d02e6 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e099c34 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x234f13e3 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x251d15e9 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28397a68 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28bbd6da mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3054a073 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x323d556f mlx5_get_uars_page 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 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36df598a mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7dc201 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e2b13ed mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed9c8c9 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a8806b mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41825378 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44fd95ad mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c07107 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47549c41 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49effd5f mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc6f607 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3707c712 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a04e828 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a0b8726 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3be8277e mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c1b214a mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3caca956 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d2d1039 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3db197b3 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e0b3f40 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x411334ca mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43e5a46e __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4761b805 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47b90caa mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48d6203a mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c0ca7ed mlx5_eq_create_generic 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 0x4e3a3e52 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e44f180 mlx5_lag_is_roce 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 0x4f6cbc4d mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503cc76d mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517dd6a2 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55375a9b mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x508ab95e mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c520f4 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52261061 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53bcfa8f mlx5_modify_header_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 0x55bef13e mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a8818e mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597db070 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf3b7be mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d010af6 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e17d379 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5edc97f6 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf06e8c mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd2fcd5 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5e60b0 mlx5_core_destroy_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 0x61e0a1bd mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61fa063e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67822eab mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61f9bf55 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62766606 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62a851ea mlx5_lag_is_roce 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 0x69a4407b mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b659e99 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b75e462 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6f6ef6 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ceda61d mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d76fb12 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69771414 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b67dbf3 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ce10eaf mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71cf18a9 mlx5_eswitch_reg_c1_loopback_enabled 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 0x74682567 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7556a6e7 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x766b402e mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x795d310d mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5f8357 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b1ff1dc mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73142116 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78c3c989 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f840f9 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b830e8 mlx5_core_modify_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 0x7e245d9b mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f59c012 mlx5_core_modify_tis 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 0x826a6a04 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83596c08 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ccf106 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x831e230b mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86d193a6 mlx5_core_destroy_mkey 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 0x8a47c0fc mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4842c4 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8799f073 mlx5_eq_notifier_unregister 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 0x8efbc0df mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8caa09fe mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8da523c5 mlx5_core_modify_rq 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 0x94038aec mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9615b200 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94773af2 mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x970b9eab mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99e1bc54 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bfe181c mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97e66707 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x995cf551 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a00c945 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a500dde mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a9f91eb mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be05467 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce56905 mlx5_cmd_do 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 0xa4f785fe mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa65a16d8 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8c91807 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa983133a mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa5891b2 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc16f30 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad617bba mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9de3c7f9 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa03ee561 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa20c7a55 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39cdb50 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa40e6e3e mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa52467cd __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa856c353 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa882644b mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa95a9c94 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9afcf53 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabbe89a4 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac0e85a4 mlx5_eswitch_get_proto_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 0xaec745a8 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf7a91f4 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc9d5ea mlx5_fpga_get_sbu_caps 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 0xb0888dc6 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a758cb mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5348fb0 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafb15d0c mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1fe7e1b mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb31ed918 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb45d9327 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb54a74ce mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb587ac28 mlx5_rl_remove_rate_raw 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 0xb946744a mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94d4f10 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3a033c mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba6d061c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7bf43e0 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9733101 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba1053ef mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaccc7fa mlx5_vf_put_core_dev 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 0xbc4ef3c9 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbccb3317 mlx5_core_query_sq 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 0xbf2aa9c8 mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f0e4d6 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2776d56 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3127fba mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3e43cd4 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc493780b mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4ed3561 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c8d1aa mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce53f723 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef76f48 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfa153f3 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc44cb116 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc539a929 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b54d03 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ac88e3 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc8a6e5f mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd0744f7 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf5e6648 mlx5_eswitch_vport_rep 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 0xd2c2c6a9 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59d6457 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59e57bf mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd69aa851 mlx5_lag_get_peer_mdev 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 0xd75d0418 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6eeed74 mlx5_core_detach_mcg 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 0xd8770b9a mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda453c20 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc4cd504 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc72360d mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8149192 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd824d793 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd97c228e mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdccfda74 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcee8a81 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd4f32ab mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf41bdd1 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5e375b mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd7d3ab2 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0cd3feb mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1a5df32 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1edcad1 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2075381 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2904a1e mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe329f829 mlx5_create_cq 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 0xe4226c28 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe45af9dd mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe49b72dd mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4b0c3b3 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f89205 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e0516b mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe98e2b50 mlx5_eq_update_ci 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 0xecdb3fb1 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee7cf209 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef7fe286 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefd8c465 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeceb8fc3 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeddd7fcf mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf014f047 mlx5_fpga_sbu_conn_destroy 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 0xf33e8ef9 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3ec1092 mlx5_eswitch_get_encap_mode 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 0xf997249e mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa2a674b mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa9b2567 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4e3664 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbb2d1d3 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa48d547 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbde7808 mlx5_eq_get_eqe 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 0xfd883721 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfec08049 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda3c05e mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe4a1846 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe939add mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa4f568 mlx5_core_alloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x011f0102 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf @@ -3007,105 +3007,105 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa1d6b684 mlxsw_i2c_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8c47a496 mlxsw_pci_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa28e74f3 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x016b3328 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07a322d2 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bb176a9 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bf0bf63 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fcc743c ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x142dd0af ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16933c2d ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0380da72 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x058f0467 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x065667fd ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08421a3f ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0cf679e0 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x169537a8 ocelot_vcap_filter_add 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 0x1af7b607 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e918524 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21cb4507 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25ff8368 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2867b9fd ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2877709e ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x195d23fe ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e97b89e ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x241a118a ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26d0c446 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29937744 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b87d435 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d381e70 ocelot_sb_port_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 0x3046a470 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31622d72 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3383a5b9 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36a99ba6 ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37f91d24 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3947d434 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39f0850d ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b95636c ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fdb07e4 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31f94aa3 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3605ad1d ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x373d2b94 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39a0e6f5 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a07b893 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41b760b8 ocelot_sb_tc_pool_bind_get 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 0x45159efb ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a14a932 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4acf6f4e ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c0c25f3 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d6abc6e ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50610ba6 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53732fb7 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55f8b30e ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e447466 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x631ec816 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x640c3fbd ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64a9f1db ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6501839f ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6be3b7a7 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71b562fd ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x727b9b4f ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73ac23c5 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7848122d ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x790dd98e ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b2092b0 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80064819 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43154ba8 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46a898ec ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c976ef2 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d40ba5c ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f02998d ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f7497bc ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50d2bea6 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53dbc5ed ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x577f4eac ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57ae08f3 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x589c8e51 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ee4c697 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63c51fce ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66e9b7e6 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6742015e ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a0a38e0 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d241e44 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72da54cd ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7353aa71 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3ef7ac ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b3b85bc ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b8e0953 ocelot_mrp_del_ring_role 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 0x81a82ce1 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x842d4a9d ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x897564ba ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f7cb265 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x894a28af ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90751d87 ocelot_vcap_filter_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 0x925b6782 ocelot_fdb_dump EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x959e27ad ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x983376f9 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c7b4867 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x945e81ae ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9488a0d5 ocelot_port_policer_del EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e7d6a1d ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa41ec553 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7407109 ocelot_sb_pool_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 0xabe62adb ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae2251d7 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8571e02 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8ed5790 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa1ccf94 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa1dbcf5 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf217b6b ocelot_hwstamp_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4531276 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7212383 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb909cbb8 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9ee49e6 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3aea4c3 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6017688 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6a2411f ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba750a40 ocelot_sb_occ_tc_port_bind_get 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 0xc017af53 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc30f360b ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb529b06 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb636315 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd20551b ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1b07d63 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5f3d1b2 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7c4dd03 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca5b9058 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccd2ad2a ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce213f9f ocelot_sb_port_pool_get 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 0xd0d9b756 ocelot_port_bridge_join 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 0xd10fb83c ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4f276e5 ocelot_sb_tc_pool_bind_get 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 0xdf1a2379 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4e53eca ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7459567 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8ad5b09 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda1b4362 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1ae4f69 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe51ff424 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6912146 ocelot_sb_occ_port_pool_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb4c894c ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebcf06dd ocelot_devlink_sb_register 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 0xf12a4ad4 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf341b4d7 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4ab7d19 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8c40330 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbc2bf44 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc61a910 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x198d7ef0 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee638943 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1ee2799 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf787d05d ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd3fed6f ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2e66067a 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 0x647e8cf3 qed_get_eth_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8fdb840a 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 0xb84e31fd qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa4f8a5ef qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xec87a4f3 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3acf1fd4 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x5bb6f6d3 qede_rdma_register_driver EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0c55e2df wx_reset_hostif EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41725bd1 wx_init_eeprom_params EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5433607e wx_sw_init @@ -3124,11 +3124,11 @@ EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdcb8d9d6 wx_init_rx_addrs EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe72c657d wx_read_ee_hostif EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfbf2fad3 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x09d57bb3 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x37f1d602 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x68c6c804 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd9540554 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfd618829 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x10a80851 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x13a59e1a hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9b99df5b hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaeca18f8 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc79127d2 hdlcdrv_arbitrate EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok @@ -3157,11 +3157,11 @@ EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xbcd19e58 lynx_pcs_create EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xf77e8804 lynx_get_mdio_device EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7a736ff4 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8a0de660 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x919b6898 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xb0e7ed38 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xddd5df92 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x77723933 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8399471c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd92387ed register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfdc2d2d9 pppox_unbind_sock EXPORT_SYMBOL drivers/net/sungem_phy 0x1872e444 sungem_phy_probe EXPORT_SYMBOL drivers/net/team/team 0x0cebc565 team_options_unregister EXPORT_SYMBOL drivers/net/team/team 0x23783749 team_options_register @@ -3304,22 +3304,22 @@ EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6376a65 ath11k_pcic_map_service_to_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf3507363 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d4ea207 ath6kl_core_create EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x13f30983 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1d192db4 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x332cb575 ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x498ac5e0 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6eed1850 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a5704a ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x879b33ce ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3c2335a2 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x49decda1 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5cd825a8 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x832c2247 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8385b1bf ath6kl_core_create EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x96ed078e ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x98797146 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xadd2f264 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9a1efd21 ath6kl_core_rx_complete 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 0xbf0cb05f ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca5243ae ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd80d54cf ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd6557547 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7c5a41e ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05100e59 ath9k_cmn_process_rssi EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d9c897e ath9k_cmn_init_channels_rates EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e271e37 ath9k_cmn_setup_ht_cap @@ -3475,26 +3475,26 @@ EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x172b9a75 stop_airo_card EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x41e5cebb reset_airo_card EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc2deb429 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x00e5e043 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x04a75ae1 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d548886 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3afa3fb6 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3e16a5a2 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x52664ddb free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0274d4fa libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x02df85c7 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x036a7d09 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x05321f86 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1694c659 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x17c7c714 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1aca7084 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2271c033 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62b9b961 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6f932fc5 libipw_get_channel_flags EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x736a42bc libipw_wx_get_encodeext EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x840d669f libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x91065ac5 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93491ad3 libipw_freq_to_channel EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b802335 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa62739b3 libipw_freq_to_channel EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb06d9c40 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcc069354 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc64f4cc9 libipw_rx EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd1001cf0 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd8e68950 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd128a28 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf058d5ef libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf43fa34b libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6ceb5d6 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf935d01e libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd9c1e9f5 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde0b6c37 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xebadfc3a libipw_channel_to_freq EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0569d210 il_set_tx_power EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06b65283 il_connection_init_rx_config EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07897659 il_tx_cmd_protection @@ -3603,7 +3603,7 @@ 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/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ad637ab iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f80370e 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 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event @@ -3708,26 +3708,26 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc2a64eeb rtl_usb_disconnect EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc8a76533 rtl_usb_resume EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd81f446d rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06387697 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00922c67 rtl_phy_scan_operation_backup EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19dbdb8f efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b396d81 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2358f723 efuse_shadow_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31af5bed rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32ff0a4b rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38455a64 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38794330 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x390377ca rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47ec3918 rtl_cam_mark_invalid EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4aa1eb1a rtl_ps_enable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x510b9ce5 rtl_signal_scale_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x579d4ba1 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f544e3d rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60357a68 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70813719 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x711af535 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7384e910 rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74aeac9f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74c5c61b rtlwifi_rate_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x796b5282 rtl_efuse_shadow_map_update EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ac693b0 rtl_cam_add_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ae88a8d efuse_one_byte_read @@ -3737,14 +3737,14 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980058a6 rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabdabf0f rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4cd577b rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba095ccb rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9c5cc84 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc71001a rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2d3527f efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e6f17d rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3eb0924 rtl_rx_ampdu_apply 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 0xeddbca5a rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0426f64 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3fca189 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfaaec32f rtl_phy_scan_operation_backup EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x2a42553e rtw8723d_hw_spec EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xb78222b3 rtw8821c_hw_spec EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xc1a22f8c rtw8822b_hw_spec @@ -3820,89 +3820,89 @@ EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc0104090 rtw_pci_shutdown EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x252886bf rtw_usb_disconnect EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x6baa86b3 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xf3c349d3 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x845d9b23 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x1ff8d74c rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05baa9f2 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07b1074b rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10b8a2f6 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1552fcd9 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15887fa5 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15d41148 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x189b9fe3 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1dcdfba8 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x262d3655 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x27a13aeb rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x310a9a52 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33a40f94 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x348e8b1d rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x361b684a rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39a99325 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39e72071 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41066bc4 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xbb93625d rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xcc0db0ad rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x57a8fcc2 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01475c52 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a277968 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0ac0b178 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0cc7d5e9 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13828975 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13fe592e rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17343279 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x188165fe rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x205e36d1 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x259412ac rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2f621935 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x35d850a2 rtw89_phy_get_txsc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x415be050 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41c72cbc rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45804b88 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4aab6ea2 rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b963ef8 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c61a908 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4eb96eb0 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5269ee33 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x54867c35 rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5625ce86 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56bc6d2a rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d0d9e9e rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65636ea4 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a94a1ed rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b25e774 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c3906e3 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e0ddd52 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44ff0a6d rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x498c26f8 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4addf329 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x51b21214 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x53c4a342 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x594bffb2 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x59b3dd67 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bc719ea rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5bf373fb rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x634d8064 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64f298a1 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6935c77c rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a669766 rtw89_core_napi_stop EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75b15a85 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7cb5b6ad rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d8e501f rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fb6f78b rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x80b5272d rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x83e6a90e rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9140d18c rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa62db10e rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xafb3b338 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb36c40a4 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb50ca212 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb7396720 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb75cf46f rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb92af0c7 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc777514a rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8e61b39 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcbd305ce rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf1ee78d rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0e51553 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdaf31927 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73a4af95 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74446364 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75460881 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a91bf9d rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f11c1ab rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91c95eae rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9673c7ef rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x978c1b71 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9819b2bb rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa4afb26f rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaab8307a rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad519701 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0e03372 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2f40cff rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb458a074 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc00935cd rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcaf5e5e6 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcba4f383 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd14c1568 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd317c0fd rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd78e98b9 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdba4991b rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc214f88 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xddc6104b rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1bd5d4c rtw89_phy_set_txpwr_limit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe74a6d9b rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf016138e rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf20723cf rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf326dab9 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9d422e8 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1bce95cc rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe951cee8 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee143bf9 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef9fae43 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf10e68d1 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf978157b rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb25d978 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd626628 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfef7d41e rtw89_core_fill_txdesc_fwcmd_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1e7ac936 rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2280ee2b rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x22563ac4 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x25272f52 rtw89_pci_enable_intr EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3369b581 rtw89_pm_ops EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3cfe1a2e rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3e32aa47 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x58b4961f rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x644fcdba rtw89_pci_recognize_intrs EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6f1f494a rtw89_pci_disable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8c5da755 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x90dae92f rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x95113fd9 rtw89_pci_fill_txaddr_info 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 0x9fa823b3 rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9fd8dd30 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd5b42814 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd758a366 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe1c80273 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf56ad132 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb9256c2e rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc419f1ef rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xca77b84e rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe329b754 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf33826ab 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/realtek/rtw89/rtw89_pci 0xfae4358d rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xff6ae3d6 rtw89_pci_fill_txaddr_info EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x94bb46ca rsi_config_wowlan EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x92138363 wl1271_free_tx_id EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa32a0fcc wl12xx_is_dummy_packet @@ -4116,26 +4116,26 @@ EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf85d4cf9 fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9acab8b fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1ed2088b sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3bb8f8fe sas_resume_ha_no_sync EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x61d14e95 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x73b2b774 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x75e312fa sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8f932cdf sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa2fca3ed sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xafd9c39c sas_resume_ha_no_sync EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x746c55ac 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 0x20d70325 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3e0102ed qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x403667b4 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x40634084 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5df8ef8a qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x67ac1f3f qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8474368b qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96bc7856 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb056f8e5 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf7557b0 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed142126 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xffa28793 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24363e4f qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x45931276 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4625d15d qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x54217930 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6233006c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6b3636f2 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f16c8d9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbcbedcb8 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd07f7bf5 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xde3500f8 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xedbed8a3 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf20e3740 qlt_stop_phase1 EXPORT_SYMBOL drivers/scsi/raid_class 0xc8ddadca raid_component_add EXPORT_SYMBOL drivers/scsi/raid_class 0xe71a821f raid_class_release EXPORT_SYMBOL drivers/scsi/raid_class 0xf6e6452a raid_class_attach @@ -4192,19 +4192,19 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3213aafc spi_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaecb977b spi_display_xfer_agreement +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2590e1e2 qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f143389 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f9917bf qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3cef7bd7 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3f922b2b qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x49347455 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b86316d qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ee38a75 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5e82173a qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8012a6d3 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8256d01d qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa61abdaa qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaadf556c qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd084a099 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdeb3d741 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf2db8f04 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x848da537 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc51bd8c5 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc7383cc7 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfd8dd223 qmi_txn_cancel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ec28188 sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1031300b sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10ff6ff2 sdw_read_no_pm @@ -4296,10 +4296,7 @@ EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6e6a6ad7 gbaudio_module_update EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x6c2e998f adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xfaed712c ade7854_probe -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0447d083 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0688337c rtllib_rx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07a6a828 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a6533e9 rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ae6694e rtllib_act_scanning EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f282baa RemovePeerTS EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component @@ -4307,10 +4304,10 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24b52ad4 rtllib_wx_set_auth EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x290a4d1a rtllib_wx_get_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2aa1f75e rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31082557 rtllib_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x321e7f09 notify_wx_assoc_event EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x340c03da HT_update_self_and_peer_setting EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38d11627 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x396e3bb0 rtllib_xmit EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b4dc9d6 rtllib_wx_get_rts EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b61bf8f rtllib_softmac_start_protocol EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f9a09c7 rtllib_wx_set_mode @@ -4319,6 +4316,7 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c3b8693 rtllib_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51461fd7 rtllib_wx_get_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5296b33f rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52a3c793 free_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a8dadfd rtllib_wx_set_essid EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61cbdc9f rtllib_wx_set_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x660232b1 rtllib_stop_send_beacons @@ -4327,6 +4325,7 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x694ab891 rtllib_EnableIntelPromiscuousMode EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a006eb5 rtllib_wx_get_essid EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6eddf5e0 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78e143c1 rtllib_rx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9354e7f1 dot11d_init EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95f1b7d2 rtllib_wx_set_gen_ie EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96acc2b7 rtllib_wx_set_rate @@ -4342,16 +4341,16 @@ EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf2ee274 rtllib_wx_set_rts EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3b6b7c6 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf53b49bf free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf04b10be alloc_rtllib EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf781b2e0 rtllib_ps_tx_ack EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa951451 rtllib_wx_set_freq EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb307464 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe8b346a rtllib_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeaac954 rtllib_wx_set_rawtx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0196232c ieee80211_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x042e5536 ieee80211_wx_set_encode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bc9153b ieee80211_wx_set_power EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d232f26 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14e3f1a8 ieee80211_txb_free EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x160ba73e ieee80211_wx_get_mode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16d4e87f dot11d_reset EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f4d5ec6 ieee80211_softmac_stop_protocol @@ -4367,12 +4366,15 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5da13cbe is_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x639ec089 ieee80211_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7011be0f ieee80211_txb_free EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x724b9893 ieee80211_wx_set_wap EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7adc12f7 HTUpdateSelfAndPeerSetting EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dd82673 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x863b0367 ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89af5091 ieee80211_reset_queue EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8bae2281 ieee80211_wx_get_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f027c79 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f2cb1fa ieee80211_rx_mgt EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9149bd4e ieee80211_wx_set_scan EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9373e6d8 ieee80211_wx_get_name EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9524fc9b ieee80211_disassociate @@ -4385,8 +4387,6 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab0a96a2 SendDisassociation_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4500de5 ieee80211_ps_tx_ack EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5fc658d to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbab7295d ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd068665 ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf348c80 ieee80211_wx_set_mode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0ef319a dot11d_scan_complete EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9989363 ieee80211_start_send_beacons @@ -4403,131 +4403,131 @@ EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1ce757f ieee80211_wx_get_wap EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3f4ca53 ieee80211_wake_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf644fa47 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01efcc7e iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07943469 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d201790 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d3048b6 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a0a7993 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c5d0362 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22845b7b iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22e17ee6 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed08e63 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37097466 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3dcd11cc iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f198297 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40079c44 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40773852 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44b1f4e0 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fe127d5 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x559a7b32 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x567bb8db iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b93df74 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d286f77 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5eda2239 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62a410e7 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66c29994 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x687b2a2d iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b418861 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cf34d58 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e4407f1 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f049eac iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7386bd7d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b16ad8a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c8906fe iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ab00f47 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c70bc2c iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c7dc660 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e650df1 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9274d61f iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d59910f iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d5a5f69 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac10fe55 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad065543 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbdf277c7 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc99e06e4 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe49f3f42 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe768a726 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b6eedc7 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x184186ad iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a955ea0 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21ed14ed iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26937f51 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28f6201b iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29e3fab5 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30be2a9b iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34bae2cb iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b605f32 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ebb3ff6 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ecbdd08 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x407fee7f iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x420e4bb1 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4411d645 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x457ac012 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4638e2c3 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e67de44 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5287d93a iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x540b5a23 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6184bbe6 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e412506 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x758fc3be iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7af50910 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b5230a2 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f6e9208 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9346d31a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94daeaf8 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b991cf4 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa240d2f1 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb656de89 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbd808bc iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc29f089d iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2a6adf9 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2bd1bfc iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4d29e39 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6bf73a9 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca431fb0 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb223f93 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4a34718 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1f5c165 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5b34640 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb210f4e iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2bce623 iscsit_allocate_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff9ab76f iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x024ebf40 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x02eaee77 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x04977924 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x0735a555 target_complete_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf95afde8 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00a0f287 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x00f71034 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x020e4a16 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x067efccc target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x0792d93c sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x07d7e7c3 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x086af3fa sbc_get_device_type EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x096273ea sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x11a5925f target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a1b033e sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ce5f3f transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ff3d0b target_backend_unregister EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x164c60cb transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x16636d78 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d6b9b22 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1da308ba __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1dd0d8a9 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x1f7c4738 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2220d9c6 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x249b38f2 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c7284ab target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2da813ce target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x38350cc4 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x392d6e00 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a9adf39 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d6488af target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x23d5cfdd target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x24ddae2e core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x28d0aed2 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x299d7300 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2db9e832 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f90f1c7 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x323ae115 transport_handle_cdb_direct EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a734ade transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x3baa36eb target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c569319 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ddc84a8 target_configure_unmap_from_queue EXPORT_SYMBOL drivers/target/target_core_mod 0x43fac392 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x441830f8 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d1ab17c target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x447add47 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x462f793e core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cef98db target_complete_cmd_with_length EXPORT_SYMBOL drivers/target/target_core_mod 0x50d64571 passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x50ff0b8c sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x51753da8 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5379f640 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x54171a35 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x54683100 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5783c013 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x59779e7c target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a5a33ef core_alua_check_nonop_delay EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6045ed56 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x65322adb target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c5f83b4 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6de5e5bb target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x7050a158 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c0d1032 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x61ad9172 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x661d0f69 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e30b9b0 core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x71afc7bf target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x720ab443 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x72506149 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x73f875aa transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x75e58c6a target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x790dd908 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f2fc3e5 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x80c36a9f target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x8178baa4 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x83ded8ed transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x886f957f transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x905c2038 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x95a9a465 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c5c4578 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ea69092 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xa09d138a target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b8018c target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa83553f8 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8272ef5e target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x8283c3f8 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x859ebfc3 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c5e0a35 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fb9ecf0 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x92d2ad65 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x947cac01 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9665cece target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9856a261 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ac3243e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f8896dd transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0e72584 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6bc58e6 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa884561a target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xad205cc3 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb371d544 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8c9bf92 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2005ad5 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2429899 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc26dcf21 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xc624ba7a passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xca67f7a6 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf7af488 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xd11afdd0 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1f0db6f spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd33c3c4a transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd714b318 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7898dcc target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8ea1c4a target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9243e09 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe50500cc transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5884d9d target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xe88c852d target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9f29813 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xef21a0dd spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1560ce8 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf8ec14a spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xafdc7dc3 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xb11e2121 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xb198c255 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb261f734 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4c02814 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6cd454a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc353402b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9f8303d core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd30fde16 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb019328 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc1581a7 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3448023 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4344a87 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7ad83ae target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf14469c4 core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9ead683 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfaf56135 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd2ce4b6 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf42e220b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa012b80 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbcfa61d target_execute_cmd EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x13710551 ufshcd_get_local_unipro_ver EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x17ce9188 ufshcd_runtime_suspend EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3ad06392 ufshcd_system_suspend @@ -4542,7 +4542,7 @@ EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb29fe107 ufshcd_dwc_dme_set_attrs EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x03678f3d usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4c7255a2 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x845a4c2d sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x0187093b sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x09272ce0 usb_wwan_suspend EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1b03e4ff usb_wwan_port_remove EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4506ab36 usb_wwan_resume @@ -4666,9 +4666,9 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6ba1b65c w1_ds2781_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd86dd57e w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/wire 0x0bcf26fb w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x495ed1f5 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x8e6ccd2c w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5ff22e83 w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0xa2d564c9 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf4592763 w1_add_master_device EXPORT_SYMBOL fs/fscache/fscache 0x0c90ff13 __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x160a324b fscache_addremove_sem EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write @@ -4802,12 +4802,12 @@ 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 0x28df3416 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x437671fb lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x44258d34 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9b45ab01 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa47d8a62 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xca4e1ad2 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4011ba5d lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x784bcc9d lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa65ca089 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbce785ba lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdc7c6e93 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdf49fbad lowpan_register_netdevice EXPORT_SYMBOL net/802/p8022 0x357b8bb5 unregister_8022_client EXPORT_SYMBOL net/802/p8022 0x3d440524 register_8022_client EXPORT_SYMBOL net/802/psnap 0x20022aaf register_snap_client @@ -4867,109 +4867,109 @@ EXPORT_SYMBOL net/9p/9pnet 0xea853b46 p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0xeac663e0 p9_client_setattr EXPORT_SYMBOL net/appletalk/appletalk 0x1966d8a4 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x39dd839d aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xa75f1631 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xd0523864 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x70d4f39d atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xdf496cf2 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf41bb329 aarp_send_ddp EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2e2943be register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x3a86e405 vcc_release_async EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x6745e160 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x6e05b974 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x78e01cd1 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x7973c559 atm_charge -EXPORT_SYMBOL net/atm/atm 0x83d0f7d2 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x84f0e24d vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x8590efa8 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5920fd33 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x593abb7f atm_charge +EXPORT_SYMBOL net/atm/atm 0x67344e5c vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x6875c5ed vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x83418e31 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa161ab2c register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xa18cc6a0 deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbd378756 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xc51c885a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xb3454d29 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xb51fcdae atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xb66b7674 atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xd2b966f9 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xee34182a atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe5d0124f atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xea3361a7 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x05e0352c ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x13e6e619 ax25_find_cb +EXPORT_SYMBOL net/atm/atm 0xf5a9dce2 vcc_process_recv_queue EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x21896981 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x158a0cdc ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x1acc2fdf ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x44a2bc92 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x27711ab5 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6cc142d2 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x5404a865 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x5ac103c6 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x87512f5c ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9c8b3238 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x9d4800e1 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcaa53233 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdad095a2 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf21fa6f4 ax25_header_ops -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03b99d8c hci_recv_frame EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13ef524c bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x15ddf1e3 __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x17e66eaa bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x195eabc5 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b307532 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20a64d1f bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20c4205c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08ab93b1 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x099daeb5 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x11f23899 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15d0bcac hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1652ee83 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a2a95c7 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1af1d5f7 l2cap_conn_get EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2264785a hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2be06611 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e71f87c l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x363e61f4 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36effe46 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3de1755c hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3df3b3cc hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x42fcfdce __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44c3f62b bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d44d1f bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d7588a hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a17abc8 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c93eb02 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54dbc80c hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55dff3a6 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57a01c34 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dba4e71 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x62cb4937 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b1f4503 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x23a8266a hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36d2d163 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36f1faf1 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x39d3c004 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c959664 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40927ce6 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43cb7766 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4815454f hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d7e2d3d bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f75663c hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fd96e2e bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x521294ab bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5563dff8 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a6f0513 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x612ad650 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62e10dde bt_sock_ioctl EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ae02907 bt_sock_poll 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 0x80f4f399 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x852c6264 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8632df9a __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x86e32ab3 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x894013cd hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89728fbf bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f4a8514 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fa010b6 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x842b2f74 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x84353e9f l2cap_chan_close EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9af329c7 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b881ca8 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3643539 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8ddfb29 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc9db307 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1a44898 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90e4514a hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93548e3a bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ebf3d47 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa075ec26 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa502da73 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa8b53d4 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaae29a27 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafbd649f bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb06e9768 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb586f053 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9eee9d5 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfbf0b1c hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfedc614 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5311ee9 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc54b3481 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8154c79 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca952252 __hci_cmd_sync_status EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8043fc4 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8845aa0 hci_recv_diag EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe33a8b45 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7d45c26 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeac8148e bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec3f9f0f hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xedd6a0b5 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeff0e1b4 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf02367be l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1808fe7 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbcd885c __hci_cmd_sync -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3f8f6def ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x58c529d7 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5fde63f2 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7d98b6d0 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9a578bd1 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9e0bce6e ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde2466f1 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7711f3f bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb5f18b5 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb68263e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf609c2c0 bt_accept_enqueue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x210ec2e7 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x784be3b0 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8a65ce0e ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8dd03072 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbb578c2e ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc97341dc ebt_unregister_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt EXPORT_SYMBOL net/caif/caif 0x22c0377a caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative @@ -4985,21 +4985,20 @@ EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client EXPORT_SYMBOL net/caif/caif 0xc5bd8605 caif_connect_client EXPORT_SYMBOL net/caif/caif 0xf9073c78 get_cfcnfg -EXPORT_SYMBOL net/can/can 0x397d90b6 can_rx_register -EXPORT_SYMBOL net/can/can 0x47673e71 can_send -EXPORT_SYMBOL net/can/can 0x76b733f7 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x7f982801 can_proto_register -EXPORT_SYMBOL net/can/can 0x9f429ce0 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xd01475bc can_sock_destruct +EXPORT_SYMBOL net/can/can 0x444de849 can_proto_register +EXPORT_SYMBOL net/can/can 0x7aed19f5 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xaade8dde can_send +EXPORT_SYMBOL net/can/can 0xc7dc07d3 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xe37ae822 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xf84ff022 can_rx_register EXPORT_SYMBOL net/ceph/libceph 0x04cca8e8 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0x068a2494 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0c49d541 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x0c779499 osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x136b4262 ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x14995aab ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x156cebbc ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0x1741a2ce ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x188fd0f5 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x19ea722c ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0x1a64041a osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x1bce6fd6 ceph_osdc_flush_notifies @@ -5022,13 +5021,15 @@ EXPORT_SYMBOL net/ceph/libceph 0x3ecc0291 osd_req_op_copy_from_init EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy EXPORT_SYMBOL net/ceph/libceph 0x42612228 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x43f7ecf5 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4a3e0295 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid EXPORT_SYMBOL net/ceph/libceph 0x4cdb521e ceph_copy_to_page_vector 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 0x51663159 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x53bde46a ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x55bdea73 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x55c36985 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x575d7454 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0x57b3c906 ceph_osdc_unwatch @@ -5038,6 +5039,7 @@ EXPORT_SYMBOL net/ceph/libceph 0x622768eb ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0x63717680 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x646392b2 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr EXPORT_SYMBOL net/ceph/libceph 0x6d32d5d7 ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0x6d74afe9 osd_req_op_cls_init @@ -5047,6 +5049,7 @@ EXPORT_SYMBOL net/ceph/libceph 0x6f8579d6 ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x6fecbf98 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x774844af osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x7840b1e4 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x78713f76 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x79104750 ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x7bc91487 osd_req_op_extent_osd_data_pagelist @@ -5054,22 +5057,21 @@ EXPORT_SYMBOL net/ceph/libceph 0x7d9102d1 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0x80ecd8e3 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x84d013ac osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x84e8e3a8 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x86163b67 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0x86532dba ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context EXPORT_SYMBOL net/ceph/libceph 0x8bbe4fab ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x8c41d064 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x95fd5196 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x974d2762 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x97785650 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options EXPORT_SYMBOL net/ceph/libceph 0x99a189f3 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9a2138ed ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x9a22610b ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x9ba46526 osd_req_op_raw_data_in_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 0x9d2e98b4 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x9db4ed06 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x9f29134c ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping @@ -5077,7 +5079,6 @@ EXPORT_SYMBOL net/ceph/libceph 0xa616c8e3 osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers EXPORT_SYMBOL net/ceph/libceph 0xa6da25b5 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xa73541ba ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0xaa79048a osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0xac3464db ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer @@ -5087,14 +5088,15 @@ EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb6432786 ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb803e55e ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xb82bdcf8 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xb83b0563 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xba4257b4 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xbb4fc770 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbd0940f1 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc5d955f0 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xc7181b4e ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file EXPORT_SYMBOL net/ceph/libceph 0xcc906498 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0xd1bcae2b ceph_print_client_options @@ -5104,12 +5106,10 @@ EXPORT_SYMBOL net/ceph/libceph 0xd47a8dfc ceph_monc_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 0xd83cbcaf ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xdb1e1028 ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0xdb530f49 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0xdc2a6d83 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfa227a9 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xe022108c ceph_pg_pool_flags EXPORT_SYMBOL net/ceph/libceph 0xe1ecb5d8 ceph_osdc_clear_abort_err @@ -5117,26 +5117,26 @@ EXPORT_SYMBOL net/ceph/libceph 0xe4fdf345 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc EXPORT_SYMBOL net/ceph/libceph 0xe7a45b7c ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xe999ab65 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0xea946e4b ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0xec04ebd5 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xec09f377 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xec166087 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xee0b67fc ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xee74db62 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xef15d8ac ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xef35522e ceph_msg_new 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 0xf14a570b ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0xf75f827e ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0xf764a641 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0xf9c703f3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xfa13384a ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xfb9de4f1 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xff8cf8ca ceph_msg_data_add_pages -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3197a250 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x70d87667 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8c42546d dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x991fab9d dccp_req_err EXPORT_SYMBOL net/hsr/hsr 0xc8ddbbee hsr_get_version EXPORT_SYMBOL net/hsr/hsr 0xe2534a1d is_hsr_master EXPORT_SYMBOL net/ieee802154/ieee802154 0x35dc6f83 wpan_phy_unregister @@ -5145,51 +5145,51 @@ EXPORT_SYMBOL net/ieee802154/ieee802154 0x9558aabb wpan_phy_register EXPORT_SYMBOL net/ieee802154/ieee802154 0xa85a5782 wpan_phy_free EXPORT_SYMBOL net/ieee802154/ieee802154 0xb72259bd wpan_phy_for_each -EXPORT_SYMBOL net/ipv4/fou 0x067a25aa __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xa9661e40 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x191e5599 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x2709573f __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x0ef23d8c gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0310e7d6 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4b7b8270 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x926b865c ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa945002e ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x32976000 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3d4178ec arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6d0c2864 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa1f39d54 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x25263161 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xaab00d86 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf25cbcd1 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf982c3d0 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x0d7688aa xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x87eae7e7 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xb02cbe02 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x012ebf10 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9f15662d ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4a1c0ce ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4a8c1ab ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbf9188ed ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc4d9a50e ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc74a1c0a ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd6a123a6 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xda599f47 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5373ab03 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6099bcdd ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x95eb56d7 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe35565d6 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0d2a8da3 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xdc9bdf2a xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x536a8fa8 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa066b32d xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x1ec33aad lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x2fc3e03f lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x38534148 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x5f610921 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x725d69de lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xb44619a6 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xb7f300d7 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xc6f49d35 lapb_setparms +EXPORT_SYMBOL net/ipv4/gre 0xa11e10de gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0dab3058 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3c38bbb7 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3eead815 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xef1fa5b5 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x787aa512 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcf44bab6 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd83b867b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe4dada47 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x28962a7d ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x36c91b3e ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x532d81f5 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd6912f7c ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x823117c2 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xdca582f9 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xda08e954 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x00d0199c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c31aee5 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x331f5bd6 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x496290e9 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b7a6de7 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6c252ced ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8f1a8ea0 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcd47d865 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xda3640d1 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4c4f15af ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x64833603 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8070a512 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8b3a5f6 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x209bafc7 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xbda65f91 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe25f2c38 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfb671a3d xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x3f57a4ea lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x44ba5313 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x667ec335 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x72c51a6b lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x8a4c527d lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa5102760 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xec917109 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xeddeaa6e lapb_disconnect_request EXPORT_SYMBOL net/llc/llc 0x09095a15 llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x0dcdaab0 llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack @@ -5202,88 +5202,90 @@ EXPORT_SYMBOL net/mac80211/mac80211 0x0349853b ieee80211_rx_list EXPORT_SYMBOL net/mac80211/mac80211 0x04816827 ieee80211_start_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0x05ebabb1 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x06dc15d5 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x09b09223 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x084eebad ieee80211_unregister_hw EXPORT_SYMBOL net/mac80211/mac80211 0x0adef8cf ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x0c25a819 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0db12d0a ieee80211_beacon_get_tim EXPORT_SYMBOL net/mac80211/mac80211 0x131120ab ieee80211_chswitch_done EXPORT_SYMBOL net/mac80211/mac80211 0x14fe4745 ieee80211_connection_loss EXPORT_SYMBOL net/mac80211/mac80211 0x15b49a6a ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x1970f7bf ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1c4f0512 ieee80211_unregister_hw EXPORT_SYMBOL net/mac80211/mac80211 0x1cb73fb5 rate_control_set_rates EXPORT_SYMBOL net/mac80211/mac80211 0x1cc45d1e ieee80211_send_eosp_nullfunc EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv EXPORT_SYMBOL net/mac80211/mac80211 0x2ef99b37 ieee80211_manage_rx_ba_offl EXPORT_SYMBOL net/mac80211/mac80211 0x305a83c8 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x3649131e ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0x36b4c4b1 ieee80211_sta_pspoll EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x39437cd5 ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0x39cedd9e ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x3b2a5d5a ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0x3c0ce307 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x3dbfc126 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x3fd6e0a9 ieee80211_tx_dequeue EXPORT_SYMBOL net/mac80211/mac80211 0x40d65f8e __ieee80211_create_tpt_led_trigger EXPORT_SYMBOL net/mac80211/mac80211 0x41ef4499 ieee80211_sta_block_awake EXPORT_SYMBOL net/mac80211/mac80211 0x485b0686 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x499ceb59 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4a4d85e9 ieee80211_get_unsol_bcast_probe_resp_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x4f16f199 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x501f0c85 __ieee80211_schedule_txq EXPORT_SYMBOL net/mac80211/mac80211 0x532b16e6 ieee80211_disconnect EXPORT_SYMBOL net/mac80211/mac80211 0x54f5ca90 ieee80211_tx_status EXPORT_SYMBOL net/mac80211/mac80211 0x56a8098a ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x57fdd7b8 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x5709efff ieee80211_txq_may_transmit EXPORT_SYMBOL net/mac80211/mac80211 0x581dc7ea ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x58ceb279 ieee80211_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x605ae7bd __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x62e9b40f ieee80211_beacon_get_tim EXPORT_SYMBOL net/mac80211/mac80211 0x633f2aac ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x64c5ac2a ieee80211_ctstoself_get EXPORT_SYMBOL net/mac80211/mac80211 0x67fcad3f ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6b8f8816 ieee80211_beacon_update_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x6d7a9d41 ieee80211_channel_switch_disconnect EXPORT_SYMBOL net/mac80211/mac80211 0x70a91f92 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x766932df ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x77e7cade ieee80211_reserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x780924bd ieee80211_tx_status_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x780efb69 ieee80211_handle_wake_tx_queue EXPORT_SYMBOL net/mac80211/mac80211 0x7893e8cf ieee80211_mark_rx_ba_filtered_frames EXPORT_SYMBOL net/mac80211/mac80211 0x7b395ebb ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x7b60f501 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x7b989e96 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x7c1fc88d ieee80211_get_fils_discovery_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x7d640d52 ieee80211_queue_delayed_work EXPORT_SYMBOL net/mac80211/mac80211 0x7fa3c976 __ieee80211_get_rx_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x80deaffc ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x819cdfce ieee80211_restart_hw EXPORT_SYMBOL net/mac80211/mac80211 0x8344c425 ieee80211_start_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x836b3811 ieee80211_send_bar EXPORT_SYMBOL net/mac80211/mac80211 0x842c878d ieee80211_scan_completed EXPORT_SYMBOL net/mac80211/mac80211 0x84e4a716 ieee80211_tdls_oper_request EXPORT_SYMBOL net/mac80211/mac80211 0x874829ac ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x87a593d2 ieee80211_beacon_set_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x88c70e3b ieee80211_sta_eosp EXPORT_SYMBOL net/mac80211/mac80211 0x8aad1ba9 __ieee80211_get_radio_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x8e279b1f ieee80211_queue_stopped EXPORT_SYMBOL net/mac80211/mac80211 0x919608ef ieee80211_stop_queue EXPORT_SYMBOL net/mac80211/mac80211 0x921f5459 ieee80211_sta_recalc_aggregates EXPORT_SYMBOL net/mac80211/mac80211 0x93ae7b93 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x954674a8 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9595b49c ieee80211_free_hw EXPORT_SYMBOL net/mac80211/mac80211 0x95bd8f5a ieee80211_stop_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid EXPORT_SYMBOL net/mac80211/mac80211 0x98b091a4 ieee80211_get_tkip_p2k EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x993f9165 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x998580dc ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0xa02a3e94 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa10c4a60 ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0xa16883be ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa535281d ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xa82f65e5 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xabb4501d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xabf10a35 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0xadee5121 ieee80211_sched_scan_results EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq EXPORT_SYMBOL net/mac80211/mac80211 0xb2fbf990 ieee80211_rts_duration EXPORT_SYMBOL net/mac80211/mac80211 0xb3364151 ieee80211_wake_queues EXPORT_SYMBOL net/mac80211/mac80211 0xb640150f ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xbad7feeb ieee80211_register_hw EXPORT_SYMBOL net/mac80211/mac80211 0xbae95df9 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbbd27050 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbbf059fa ieee80211_free_hw EXPORT_SYMBOL net/mac80211/mac80211 0xbcd01dfe __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xbcdff7b1 ieee80211_unreserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0xbd8b1fb9 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xbdb2bdbe ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc072df6c ieee80211_txq_schedule_start EXPORT_SYMBOL net/mac80211/mac80211 0xc3487245 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xc3d433f9 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xc7dee408 ieee80211_proberesp_get EXPORT_SYMBOL net/mac80211/mac80211 0xc835bb37 ieee80211_sta_uapsd_trigger EXPORT_SYMBOL net/mac80211/mac80211 0xcc2a218a ieee80211_stop_queues EXPORT_SYMBOL net/mac80211/mac80211 0xcf6909e9 ieee80211_disable_rssi_reports @@ -5291,75 +5293,73 @@ EXPORT_SYMBOL net/mac80211/mac80211 0xd31aa7db ieee80211_sta_register_airtime EXPORT_SYMBOL net/mac80211/mac80211 0xd9a583f9 ieee80211_report_wowlan_wakeup EXPORT_SYMBOL net/mac80211/mac80211 0xda49e948 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xdb52d0e4 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xdc8ff162 ieee80211_txq_airtime_check EXPORT_SYMBOL net/mac80211/mac80211 0xe90e8e89 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xeaea7fa3 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xeb7359d5 ieee80211_restart_hw EXPORT_SYMBOL net/mac80211/mac80211 0xec9a5841 ieee80211_tx_status_8023 EXPORT_SYMBOL net/mac80211/mac80211 0xed8a92ec wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xeeb99ba7 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xeef49aa5 ieee80211_tx_prepare_skb EXPORT_SYMBOL net/mac80211/mac80211 0xef437793 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xf1fbf230 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xf2ae65d2 ieee80211_reserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0xf4de7d52 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xf5f97700 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0xf916e364 ieee80211_stop_rx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0xfa75a864 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xfb6b904b ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xfe5def5c ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xfdc1b1e7 ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0xff228eac ieee80211_radar_detected +EXPORT_SYMBOL net/mac802154/mac802154 0x039bd8eb ieee802154_free_hw EXPORT_SYMBOL net/mac802154/mac802154 0x0c2d9e94 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x1f1513c5 ieee802154_unregister_hw EXPORT_SYMBOL net/mac802154/mac802154 0x256129eb ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0x65640fae ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x6df89029 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb8c17ea6 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc738658a ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x47d2a359 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x921ff141 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0xb87f349b ieee802154_register_hw EXPORT_SYMBOL net/mac802154/mac802154 0xea429604 ieee802154_xmit_error EXPORT_SYMBOL net/mac802154/mac802154 0xec75d53a ieee802154_xmit_complete -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b5bb458 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e619f40 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3bb51b47 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4541d4f5 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x57c1f958 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e52a276 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6caeaf5a register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7594313b unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7bfef277 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8140a2ea ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83fd2649 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89b27cdc ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaa7bf9ab ip_vs_nfct_expect_related +EXPORT_SYMBOL net/mac802154/mac802154 0xfff441d4 ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x030196e0 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06a443e1 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b47e11b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13d05087 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a3e2f65 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x523ebfa1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63256d4c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x70f9ee2f ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa622c097 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb134b3f8 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe08e262 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca281a24 ip_vs_tcp_conn_listen EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf15581b7 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf89a2d86 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe42fb0bf unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf613a54e ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8841e25 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1e536330 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 0x8c35449c nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x3b250633 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x9e2c3e3b __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd164e6bb nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xe3bcc013 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x32ce9335 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5fda6ab3 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xb8686323 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xf1e6dd23 __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x04945238 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x04e75d03 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x238b2a9b xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x29ea1779 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x1a1744a1 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x40a59cd7 xt_unregister_target 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 0x82e97a96 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8b14be19 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x73643d6f xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x96e07571 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x9f925d03 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x9eed76d1 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa0a27751 xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb2becb5e xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc4568c93 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xcbb2bd0c xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd606e04d xt_find_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 0xfafc5039 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf65f1f95 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/netfilter/x_tables 0xffe072dc xt_register_target EXPORT_SYMBOL net/nfc/hci/hci 0x0713c1c7 nfc_hci_disconnect_all_gates EXPORT_SYMBOL net/nfc/hci/hci 0x15665d4e nfc_hci_send_cmd EXPORT_SYMBOL net/nfc/hci/hci 0x19fb75e8 nfc_hci_set_param @@ -5383,247 +5383,247 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol EXPORT_SYMBOL net/nfc/hci/hci 0xe55c959c nfc_hci_driver_failure EXPORT_SYMBOL net/nfc/hci/hci 0xf5c26946 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x040e8634 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x0b74789a nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1fcd160b nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x2fbed56d nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x42337e64 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x5b17950b nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x5f82a69b nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x6334a930 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6536a563 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6638eabc nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x666d8cb6 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x734a0bf7 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7fa37807 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x81ace6d1 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9cd9f7b2 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xb9a9bf3d nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x0914d742 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1056c306 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x12da8eac nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1771e51b nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x2036c062 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x22b52bbb nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x2849d2e8 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x33d369e9 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x3d8c1de5 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x40ac14b9 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x41bcf534 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x47b6d8ed nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x56ec01eb nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x58745630 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x5c980a89 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x653e4463 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6a26122c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x6ad01d71 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x6f32ce3d nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x7098196a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x79b9d952 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x99867a78 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb45bdd7f nci_send_cmd EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbb71d8ba nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xc168dc17 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xc407276f nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xceec902a nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcfdce31b nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xd19b9631 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xda65553f nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xdb88fd1a nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xdfe438b1 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf4743a4e nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf5af83f7 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xf94daa89 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xfb24be24 nci_send_data -EXPORT_SYMBOL net/nfc/nfc 0x00a93e3e nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x06a0f2c1 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x1642b758 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x17b284a5 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x1ff3aade nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x2c307598 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x3a6068d7 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x3bece6eb nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x476de24d nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x5c4b9bbc nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x5cfefea5 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x61025090 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x62308324 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x680fab52 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x7a016858 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x8f3605d7 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xa0998809 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xa6a4ebd6 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xbedd4d0a nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xd05e1c46 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xd1a44b24 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xd41601a4 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xd922889f nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xdf65f1d6 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xffd4e33b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nci/nci 0xbb0be162 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc6b21c4e nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc9ac7ef5 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xcceab16d nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xd7b028c5 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xdc32a2f7 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nfc 0x00931630 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x0b849352 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x14fa0e48 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x1b35ff5e nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x1e38ed49 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x2be9e92f nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x34b5ccad nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x37a42235 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x419b2ee0 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x49544c40 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x4bcbe261 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x507fbf5d nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x637e323c nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x7fbcb6a6 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x83b90a89 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x874b573f nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x931a1423 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xbbddf898 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xbfcaeadd nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xc0974f3c nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xd1835d89 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xdd68d7a5 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xdfb8fa75 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xf49e759b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xf80f8ef7 nfc_tm_activated EXPORT_SYMBOL net/nfc/nfc_digital 0x1b0f6225 nfc_digital_register_device EXPORT_SYMBOL net/nfc/nfc_digital 0x38f06517 nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0xc4125f33 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0xc9d3f815 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x1324ec99 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x1fb9b8d9 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x2d9d81bb pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x2e73df17 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x5a43feb2 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x8b3c2701 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xa51ee6b9 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xd2d08de1 pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2894c227 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ee2a651 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/phonet/phonet 0x28aa32bc pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x3e0ecf1c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6e9e2a60 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x93f129d2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xafbb1ab9 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xb6d364a4 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xcc373fe0 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xe0f4b11f phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x02cfe8d2 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15b25808 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x16e176f2 rxrpc_kernel_new_call_notification EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a4e195b rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x46dd6915 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x53996e75 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c3fca83 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5f49702c rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x64e5e975 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x71ac7c6e rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x79709932 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x957d7c27 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9799ef6b rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9aad5232 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb375ee21 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd32096a0 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdbfaede0 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf402bafb rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7f1e93a rxrpc_kernel_recv_data -EXPORT_SYMBOL net/sctp/sctp 0x6bf9ec11 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x13da1914 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5012661f rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ba285aa rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d6905da key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x63f0bb1e rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7979034b rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7b695e2b rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8cd9046e rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x992136a9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x99740be0 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9f0df4ad rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd2c16be8 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf5d812a rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe0e84b4d rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xed81a650 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8cfaf0c rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x9ed36276 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x1b6b7328 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x32c85f77 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x6886d038 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x6bdd9ca7 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x69cda07f __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x77de6cec __traceiter_smc_rx_recvmsg 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 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xbcde2ed3 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4739fad7 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaa3987a6 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcdd61968 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd1c6c6a xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc38a06fb svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdb44a152 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x0cfd2932 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x96dcb9f6 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xe06031f7 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xfe6697ec tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0x083f1bd4 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x028de2f7 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6018699e gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbfdff967 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfbfdeed8 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x16f2286f xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7680f4dc svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8a65f19c xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x159925ea tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x9c21d5c5 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xc3944dba tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xe51cf8d4 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x86c9b65e tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x01996b03 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x027eda92 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x039808e3 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0607fdf9 __cfg80211_alloc_reply_skb EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0bab7a7e cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x0b5da73d cfg80211_report_obss_beacon_khz EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width EXPORT_SYMBOL net/wireless/cfg80211 0x1058e841 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x10bcce2a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x10d2ce03 cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1326ce6e cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0x13bc733e cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x13d73f4f cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0x14be3d1b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x1639c4c9 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x16e4023b ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x185d21f5 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x188a431f ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x187d8527 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x19799944 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x1aa95f32 cfg80211_cqm_rssi_notify EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x209836a0 cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x2241af44 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x22e0852c cfg80211_rx_control_port 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 0x2a6d47c7 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x2d1bf8bf cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x2dfe00bb cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x2e35363c wiphy_unregister EXPORT_SYMBOL net/wireless/cfg80211 0x32845c7e regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x34b2ffc6 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x362c7d17 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x36310f10 cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class EXPORT_SYMBOL net/wireless/cfg80211 0x36e07a0f cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x37dd253b ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x382f9506 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x392da80c cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3a20c17a cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x3af76fee ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x413da793 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x4255a41e cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x425e0885 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3fbd8848 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x40be7c0f cfg80211_inform_bss_frame_data EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x42f7805b cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0x436f1c57 wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x454603ca cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x4653d88d cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4715411b cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x4796dbcd cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x4b10ace9 cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x4eb9f209 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x4e2fea40 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4e91dce0 cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x51122317 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x513c1a0a cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x530651a4 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x536053da cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x541ebd44 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x51835d72 ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x5784ed7d cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x57fb3e22 cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x5a377136 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x68c79b34 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x63e4e364 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x65e067c3 cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel EXPORT_SYMBOL net/wireless/cfg80211 0x6c4da2d9 cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x6c5312ed cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x6eed9251 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x7102e701 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x6f2e4aa4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x714aab19 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0x719efe63 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x75116b7e cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x76273bca cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x722c8908 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x77c6bb8a cfg80211_remain_on_channel_expired 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 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0x812b8afa cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x85b041c7 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x846ddc5a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x861e58ad __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8855a8e0 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x8963de59 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x89b1ca31 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x8a940455 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x8bb06d82 cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0x8c275f2c freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0x8f0fb846 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x8f15ec26 cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x90017bbb cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x90cadbf9 cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x91d2a2f6 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x93686776 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x9716298d cfg80211_cqm_rssi_notify EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates EXPORT_SYMBOL net/wireless/cfg80211 0x9879ec62 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x99ef9f92 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x9b7f4dd4 cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match EXPORT_SYMBOL net/wireless/cfg80211 0xa0fbe0bb cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0xa2199902 cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xa397d57f cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa4b909e8 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa9d04071 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xaa033fd7 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa3f447c3 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xa664d28f cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0xaadd7031 wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0xac4220ac cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0xac755867 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb355dc5f cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xb39716c4 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xb47ac278 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb496dc4a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xadc6b471 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xadfa719d cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb2e2b8b6 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xb3c24653 cfg80211_cqm_pktloss_notify EXPORT_SYMBOL net/wireless/cfg80211 0xb4b89a40 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xb560b4c0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb5a0f4ca cfg80211_update_owe_info_event EXPORT_SYMBOL net/wireless/cfg80211 0xb6bc3b45 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xba8561ed cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0xbe1c3109 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0xbf9d02da cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0xbffabe42 cfg80211_assoc_failure EXPORT_SYMBOL net/wireless/cfg80211 0xc39c3d3d wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc65e8988 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc5121b79 __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xc84a322d cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc99d6eb2 __cfg80211_alloc_reply_skb EXPORT_SYMBOL net/wireless/cfg80211 0xca6fe01e cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xcbc621cf ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd07972d8 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xd4ee269b cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xcfcb3116 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd34480a5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd41895a3 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd4f1a858 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd5c7d884 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd60e7bb4 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xd63298b2 wiphy_apply_custom_regulatory EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdadcf770 cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc02e307 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0xdc0ae8d0 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xddb20834 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xdec10751 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0xdf4486bf wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xe110f303 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdfa7f061 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0xe24a4496 regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0xe4912a30 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe4e0557f cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xe5346e37 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xea2813c9 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xf3c8e66d cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c281b0 cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf52a0c6a cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf46153c7 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf4f39a8b cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf80d80b0 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xf985e642 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0xf98b5381 __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xfb933fd1 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xfd10eff5 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xff854fb2 ieee80211_get_channel_khz EXPORT_SYMBOL net/wireless/lib80211 0x07e04397 lib80211_crypt_delayed_deinit EXPORT_SYMBOL net/wireless/lib80211 0x3d1c1a45 lib80211_get_crypto_ops EXPORT_SYMBOL net/wireless/lib80211 0x635314ba lib80211_register_crypto_ops @@ -6001,99 +6001,95 @@ 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 0x00074b33 scsi_partsize -EXPORT_SYMBOL vmlinux 0x000831c7 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x000b57dc input_set_abs_params EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001ca13f inetdev_by_index EXPORT_SYMBOL vmlinux 0x00225e65 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x00258046 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect EXPORT_SYMBOL vmlinux 0x004571ac generic_read_dir EXPORT_SYMBOL vmlinux 0x00531784 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0x0054a516 iov_iter_revert EXPORT_SYMBOL vmlinux 0x006413f1 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x0075616d open_exec -EXPORT_SYMBOL vmlinux 0x007b1986 __dev_get_by_index EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x009c2960 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00cbfe00 fqdir_exit +EXPORT_SYMBOL vmlinux 0x00c70368 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x00cc9831 netdev_features_change EXPORT_SYMBOL vmlinux 0x00d68f09 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count EXPORT_SYMBOL vmlinux 0x00ee5193 __devm_request_region -EXPORT_SYMBOL vmlinux 0x00ef137d tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x00f7c2ca tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x00fc47e3 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x0102c348 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x0107df5a rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x010ab55b vlan_uses_dev EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x01245530 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create +EXPORT_SYMBOL vmlinux 0x01448ee5 inet_del_protocol EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x014bbc62 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x014c7ebd default_qdisc_ops EXPORT_SYMBOL vmlinux 0x014e3d5c tty_do_resize EXPORT_SYMBOL vmlinux 0x01556032 mmc_of_parse EXPORT_SYMBOL vmlinux 0x015c11e0 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x0160f45e i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x0168b7f9 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x016a9822 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x01724375 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x0173708d ip6_frag_init EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017c4f68 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x017d9a08 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x01853172 uart_match_port EXPORT_SYMBOL vmlinux 0x0186c995 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x0188544e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0187c938 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x018bf619 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x0191c1d3 skb_put EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark -EXPORT_SYMBOL vmlinux 0x019e4722 sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0x019f19ed netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x019fde58 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x01ae5c6e __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x01b83f46 cdev_set_parent EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d2b93c inet_csk_accept EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt EXPORT_SYMBOL vmlinux 0x01ec1f09 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x01ff76f6 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x02001f90 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0210c2dc inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x020deb46 napi_get_frags EXPORT_SYMBOL vmlinux 0x0214029e mod_zone_page_state EXPORT_SYMBOL vmlinux 0x021b425d mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x022ba86a netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x022ff3bb blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024b7a2d submit_bio_noacct EXPORT_SYMBOL vmlinux 0x024e21fc unregister_sysctl_table EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep -EXPORT_SYMBOL vmlinux 0x026cbc6b nf_log_unregister -EXPORT_SYMBOL vmlinux 0x026e0575 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x026e7348 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues EXPORT_SYMBOL vmlinux 0x02786417 vga_client_register EXPORT_SYMBOL vmlinux 0x027d7a7d rproc_alloc EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a78efb neigh_table_clear EXPORT_SYMBOL vmlinux 0x02af3058 cdrom_open EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match -EXPORT_SYMBOL vmlinux 0x02da302e skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x02cf6a26 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x02db2446 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x02de4e98 __ip_dev_find EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e18cf3 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x02e69a37 dev_printk_emit EXPORT_SYMBOL vmlinux 0x02ebb676 setattr_copy -EXPORT_SYMBOL vmlinux 0x0306b3d6 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x02f9b587 fqdir_init EXPORT_SYMBOL vmlinux 0x0312b66d dm_unregister_target EXPORT_SYMBOL vmlinux 0x031952cc _copy_to_iter +EXPORT_SYMBOL vmlinux 0x0334d94a tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0337d0a0 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x034bcee2 sock_set_mark +EXPORT_SYMBOL vmlinux 0x03398e5f skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0370114f xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity @@ -6101,77 +6097,71 @@ EXPORT_SYMBOL vmlinux 0x0393588a file_fdatawait_range EXPORT_SYMBOL vmlinux 0x03963dd5 seq_release_private EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03aff695 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x03a9be19 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x03e72b8e kernel_recvmsg EXPORT_SYMBOL vmlinux 0x03e95c94 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x03f5fa8a proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x0412de8f iget_failed EXPORT_SYMBOL vmlinux 0x041d880f elv_rb_find EXPORT_SYMBOL vmlinux 0x0420fa96 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x0424bb5f ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x042731ad security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x042b2ac4 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x042c3050 load_nls_default EXPORT_SYMBOL vmlinux 0x042fc727 of_read_drc_info_cell EXPORT_SYMBOL vmlinux 0x0433d640 vme_irq_handler EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x0457ad77 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0x04934df2 single_release -EXPORT_SYMBOL vmlinux 0x04a0959a netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x04cef634 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x04a28eeb sock_release +EXPORT_SYMBOL vmlinux 0x04b0a255 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04de7309 unix_detach_fds EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x04f380db eth_validate_addr EXPORT_SYMBOL vmlinux 0x04f9ad1e sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x04ff49ca dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x0500f82f phy_error +EXPORT_SYMBOL vmlinux 0x0502ea33 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x05059ae6 unlock_buffer EXPORT_SYMBOL vmlinux 0x051350d1 __brelse EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053913d9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x053487d3 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible EXPORT_SYMBOL vmlinux 0x05590ef3 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x055e45ec scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x0568c22e tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg EXPORT_SYMBOL vmlinux 0x056f52f2 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x0575e45f __mdiobus_register -EXPORT_SYMBOL vmlinux 0x0588041a skb_push +EXPORT_SYMBOL vmlinux 0x05b69cc1 skb_seq_read EXPORT_SYMBOL vmlinux 0x05cb5ee8 mmc_put_card EXPORT_SYMBOL vmlinux 0x05cebd47 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x05d27dbb tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x05dc9b3f md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve EXPORT_SYMBOL vmlinux 0x06093a08 dma_fence_signal_timestamp_locked EXPORT_SYMBOL vmlinux 0x061651be strcat EXPORT_SYMBOL vmlinux 0x061d2835 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x0628f0bc ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user EXPORT_SYMBOL vmlinux 0x064d459c generic_perform_write -EXPORT_SYMBOL vmlinux 0x06577df4 dev_get_flags EXPORT_SYMBOL vmlinux 0x065e4e47 vfs_rmdir EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x068a2d92 ip6_output EXPORT_SYMBOL vmlinux 0x068bbf27 __folio_put EXPORT_SYMBOL vmlinux 0x0690d834 flush_all_to_thread -EXPORT_SYMBOL vmlinux 0x0694074b register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x069d9b4a inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 EXPORT_SYMBOL vmlinux 0x06ac5950 dm_get_device -EXPORT_SYMBOL vmlinux 0x06b5c2a9 skb_eth_push EXPORT_SYMBOL vmlinux 0x06c6c8f1 scsi_print_command EXPORT_SYMBOL vmlinux 0x06cc3d1a phy_device_create EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal EXPORT_SYMBOL vmlinux 0x06dca96b zero_fill_bio -EXPORT_SYMBOL vmlinux 0x06e11938 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x06eda9f0 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc @@ -6179,74 +6169,78 @@ EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw EXPORT_SYMBOL vmlinux 0x074c321e __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x074ef9ee blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x075a304c __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x07642cf0 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x076e6903 pci_map_rom EXPORT_SYMBOL vmlinux 0x0773e3f7 nd_btt_probe EXPORT_SYMBOL vmlinux 0x0786ed78 param_set_charp +EXPORT_SYMBOL vmlinux 0x078b9cab kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x078e9493 dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0x079018f2 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07adbe0d scsi_print_sense EXPORT_SYMBOL vmlinux 0x07bd626a get_fs_type EXPORT_SYMBOL vmlinux 0x07c263fc agp_put_bridge +EXPORT_SYMBOL vmlinux 0x07c394b8 __skb_pad EXPORT_SYMBOL vmlinux 0x07c831c6 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x07cbbdd6 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d5b77c ppp_register_channel EXPORT_SYMBOL vmlinux 0x07d7591a d_alloc_name EXPORT_SYMBOL vmlinux 0x07de7b4c __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x07e30fbd skb_copy_expand EXPORT_SYMBOL vmlinux 0x07f09b7e pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0802f1e2 udp_poll +EXPORT_SYMBOL vmlinux 0x08026c88 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x0808f845 single_open_size +EXPORT_SYMBOL vmlinux 0x081ba8c8 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses EXPORT_SYMBOL vmlinux 0x08339eb1 security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0845486e tcf_idr_release EXPORT_SYMBOL vmlinux 0x08647777 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x0875bce0 __inet_hash -EXPORT_SYMBOL vmlinux 0x0881111d tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x08897724 i2c_register_driver EXPORT_SYMBOL vmlinux 0x08c0d281 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0x08ce18e7 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x08d8c37e __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x08f61b49 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x09025f2d skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x0932c097 inode_init_once -EXPORT_SYMBOL vmlinux 0x0937c944 inet_addr_type EXPORT_SYMBOL vmlinux 0x094bf7ea cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0956d096 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock +EXPORT_SYMBOL vmlinux 0x096bea1b inet_frag_destroy EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09bc82dc inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x099937e0 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x09be818f textsearch_unregister EXPORT_SYMBOL vmlinux 0x09bf7e9d sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x09c038a6 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x09c84c17 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x09c08d65 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09d78a22 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x09d98313 scsi_print_result EXPORT_SYMBOL vmlinux 0x09dfb71a param_ops_byte EXPORT_SYMBOL vmlinux 0x09fdfce6 seq_vprintf -EXPORT_SYMBOL vmlinux 0x09fe1fe8 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x0a000601 i2c_verify_client EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a08378a new_inode -EXPORT_SYMBOL vmlinux 0x0a1081af ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x0a16dd6d sock_no_listen EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash EXPORT_SYMBOL vmlinux 0x0a227438 mfd_cell_enable EXPORT_SYMBOL vmlinux 0x0a30b228 proc_create_mount_point EXPORT_SYMBOL vmlinux 0x0a484bc6 fb_find_mode +EXPORT_SYMBOL vmlinux 0x0a693f11 ___pskb_trim EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier EXPORT_SYMBOL vmlinux 0x0a7ec825 dump_page EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a8749c8 __icmp_send EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0abbc762 param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x0abdc12c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x0ac0f6a7 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b11399b xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x0addf47e netif_carrier_on +EXPORT_SYMBOL vmlinux 0x0ae7a0db rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1b4529 genphy_read_status EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user @@ -6258,59 +6252,56 @@ EXPORT_SYMBOL vmlinux 0x0b744b90 iget_locked EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x0b99f89c flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x0b9a589b skb_ensure_writable EXPORT_SYMBOL vmlinux 0x0b9c1fa0 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd78473 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x0be05855 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x0be7eedb __ip_dev_find EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bf25e5a dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr EXPORT_SYMBOL vmlinux 0x0bfbccda of_get_child_by_name EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c3eb655 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x0c58fdd5 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x0c46a511 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x0c4f9cb6 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x0c57c303 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c82d472 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x0c944e8c netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x0c962eda mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x0c9e7453 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x0ca62a80 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy -EXPORT_SYMBOL vmlinux 0x0cbf0990 eth_header_cache EXPORT_SYMBOL vmlinux 0x0cc37578 genphy_aneg_done EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0ccc8b13 phy_start_aneg EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd713cb udp_disconnect EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0cf34853 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc -EXPORT_SYMBOL vmlinux 0x0cfa70d3 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x0cfd2c85 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x0d034019 invalidate_disk EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d0dc7bc xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d37cf5d nlmsg_notify -EXPORT_SYMBOL vmlinux 0x0d47d799 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x0d52b99b unregister_netdev EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d62f649 blk_get_queue -EXPORT_SYMBOL vmlinux 0x0da1aff7 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x0dab27d8 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x0dd6447a udp_read_skb +EXPORT_SYMBOL vmlinux 0x0d5e2e37 audit_log_start +EXPORT_SYMBOL vmlinux 0x0d66e4d7 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0d8b3a32 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x0dd61f47 netlink_net_capable EXPORT_SYMBOL vmlinux 0x0de08198 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x0dfd14d9 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x0e0d4294 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x0e0ec0c9 inet_csk_accept EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e3a2000 registered_fb EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x0e4b13fa gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x0e4d0cff xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x0e4dbe59 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x0e615648 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x0e6214ab security_dentry_init_security EXPORT_SYMBOL vmlinux 0x0e818806 devm_ioremap +EXPORT_SYMBOL vmlinux 0x0e869448 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x0e91ece1 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init @@ -6318,144 +6309,175 @@ EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ebea124 vfs_rename EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecd471f xp_alloc EXPORT_SYMBOL vmlinux 0x0ed0c28a filemap_release_folio EXPORT_SYMBOL vmlinux 0x0edd7c2d clk_bulk_get EXPORT_SYMBOL vmlinux 0x0ee29e6a i2c_del_driver EXPORT_SYMBOL vmlinux 0x0ef32b00 register_key_type EXPORT_SYMBOL vmlinux 0x0efd79e4 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x0f013dd9 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0ee9ce inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu EXPORT_SYMBOL vmlinux 0x0f1b1a79 dcache_dir_open EXPORT_SYMBOL vmlinux 0x0f20473c dquot_acquire EXPORT_SYMBOL vmlinux 0x0f29d575 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x0f2b7f29 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x0f4651dc dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x0f4efb7e follow_down EXPORT_SYMBOL vmlinux 0x0f4f1dfc __starget_for_each_device EXPORT_SYMBOL vmlinux 0x0f63fd4f __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0f67e493 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x0f6b347e kobject_add +EXPORT_SYMBOL vmlinux 0x0f8017ac gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x0f8400bd tty_port_hangup EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x0f8da8e2 devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x0f8f87fd eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0f923ab0 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x0f93079a ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x0fa89ef8 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0x0fa9f665 seq_write EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fb72533 register_filesystem +EXPORT_SYMBOL vmlinux 0x0fbff39d __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x0fd0c81e genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x0fd69193 zap_page_range EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create EXPORT_SYMBOL vmlinux 0x0fe26ee2 folio_account_redirty -EXPORT_SYMBOL vmlinux 0x0fead96a unregister_qdisc EXPORT_SYMBOL vmlinux 0x0feda475 dquot_operations EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x0fff7667 set_capacity EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat EXPORT_SYMBOL vmlinux 0x101b30db genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x10291642 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1035f302 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x104407bb twl6040_set_bits EXPORT_SYMBOL vmlinux 0x10542099 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x1057a279 bsearch EXPORT_SYMBOL vmlinux 0x1059f0ea read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x106c0cb4 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x107483dc skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x1075c5d3 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x107e1771 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108f1293 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x10b68215 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x10b81a27 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x10b86b74 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x10ca50d4 vio_cmo_set_dev_desired EXPORT_SYMBOL vmlinux 0x10d41a9d i8042_install_filter EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size EXPORT_SYMBOL vmlinux 0x10e14d9c add_to_pipe -EXPORT_SYMBOL vmlinux 0x10e38696 napi_enable EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range EXPORT_SYMBOL vmlinux 0x10f415df find_inode_nowait EXPORT_SYMBOL vmlinux 0x10fbe580 pci_release_regions -EXPORT_SYMBOL vmlinux 0x1107eb7b netdev_crit +EXPORT_SYMBOL vmlinux 0x110335d0 inet_recvmsg EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1115009c tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated EXPORT_SYMBOL vmlinux 0x1120f834 phy_device_free +EXPORT_SYMBOL vmlinux 0x1122f77b init_net EXPORT_SYMBOL vmlinux 0x112b2e61 generic_key_instantiate EXPORT_SYMBOL vmlinux 0x11375103 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x113800a9 kernel_bind +EXPORT_SYMBOL vmlinux 0x1138f401 neigh_parms_release EXPORT_SYMBOL vmlinux 0x113afcc4 agp_generic_destroy_pages EXPORT_SYMBOL vmlinux 0x113fcad2 kill_litter_super EXPORT_SYMBOL vmlinux 0x11457c7c iov_iter_bvec EXPORT_SYMBOL vmlinux 0x1145b316 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x114e593d rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x115fe053 of_match_device +EXPORT_SYMBOL vmlinux 0x11605c60 pneigh_lookup EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x116c4f84 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x116c6457 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x116d133a nf_ct_attach EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1176e632 inet6_getname +EXPORT_SYMBOL vmlinux 0x117f2fc9 inet_add_offload EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable EXPORT_SYMBOL vmlinux 0x118acda1 dget_parent EXPORT_SYMBOL vmlinux 0x1194b94b fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x11a94111 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x11a2d815 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x11aa5978 security_sb_remount EXPORT_SYMBOL vmlinux 0x11b36c4a flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x11cfa9a3 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x11cf7971 alloc_fcdev 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 0x120e8139 unix_destruct_scm EXPORT_SYMBOL vmlinux 0x1225341a fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x1227fe9c get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x123316aa ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x1233a6e5 inet_stream_ops EXPORT_SYMBOL vmlinux 0x12399897 uart_register_driver EXPORT_SYMBOL vmlinux 0x1240b00b pps_register_source -EXPORT_SYMBOL vmlinux 0x124a4d87 inet_del_protocol EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x1252639e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x125fa7a9 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x126ec333 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x126ff68f put_cmsg EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down EXPORT_SYMBOL vmlinux 0x12805a53 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0x1282dac8 dquot_scan_active EXPORT_SYMBOL vmlinux 0x12a6dbcc agp_find_bridge EXPORT_SYMBOL vmlinux 0x12a793ff mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x12ba9d8d register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x12aea7ac xfrm_state_insert EXPORT_SYMBOL vmlinux 0x12bb13e1 key_task_permission EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f02b42 datagram_poll EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x12fbbcb8 tty_name +EXPORT_SYMBOL vmlinux 0x1305db6c sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x130edef5 remap_pfn_range EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x1317aa5a block_truncate_page +EXPORT_SYMBOL vmlinux 0x132b9983 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x13303b9a vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0x13308c89 udp_sendmsg EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x1345f9e1 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x1357db27 edac_mc_find EXPORT_SYMBOL vmlinux 0x136bec95 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x138776dc dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x13900c5e unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x1398771f simple_transaction_get EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13ad0531 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x13bd7928 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d76de9 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13dd251d d_make_root EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x140184d7 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x14261ac9 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x142951e0 request_key_tag -EXPORT_SYMBOL vmlinux 0x143a9d6d phy_error EXPORT_SYMBOL vmlinux 0x14462b7c register_cdrom EXPORT_SYMBOL vmlinux 0x144e7650 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x14514d8b param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x1457ccef cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x145f4e50 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1472894b tcp_connect EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x1493ea76 phy_start EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x14a8307e qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x14b1d296 con_set_default_unimap EXPORT_SYMBOL vmlinux 0x14b2c49c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x14bae08c ip_do_fragment +EXPORT_SYMBOL vmlinux 0x14bf5fbf dev_get_stats EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14ecdf9d sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x14ebf924 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x14f23fe1 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x14fdce79 config_item_get EXPORT_SYMBOL vmlinux 0x15051cfc to_nd_pfn EXPORT_SYMBOL vmlinux 0x150758dd mmc_remove_host +EXPORT_SYMBOL vmlinux 0x1513208c napi_complete_done EXPORT_SYMBOL vmlinux 0x15140ed0 keyring_clear EXPORT_SYMBOL vmlinux 0x1514c92a scsi_block_requests EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible @@ -6464,110 +6486,101 @@ EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x15492c03 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1558d809 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x155500bc netdev_state_change EXPORT_SYMBOL vmlinux 0x155fa142 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x1569de00 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x15681cc7 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x156acdff compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x156d646b ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x156eb1d6 fsync_bdev -EXPORT_SYMBOL vmlinux 0x15838ac8 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x15873d77 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x158b865f xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x15a2dcc7 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x15a9baa9 key_move EXPORT_SYMBOL vmlinux 0x15ac8839 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x15b71962 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bea64b tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15e1da00 xfrm_input EXPORT_SYMBOL vmlinux 0x15e2484b i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x15f0c4dd param_get_ulong EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x1605f322 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token EXPORT_SYMBOL vmlinux 0x1622fc4f vme_dma_request -EXPORT_SYMBOL vmlinux 0x16260719 task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0x1626eb64 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1637c385 sk_capable EXPORT_SYMBOL vmlinux 0x163959ba ps2_command EXPORT_SYMBOL vmlinux 0x16406cad dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x164c4890 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x16502a84 seq_printf EXPORT_SYMBOL vmlinux 0x166909dc wake_up_process -EXPORT_SYMBOL vmlinux 0x166ef5d2 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x1672369b pcim_pin_device EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168d7521 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x168de582 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x16832e36 dev_add_offload EXPORT_SYMBOL vmlinux 0x168e69a5 dquot_commit_info EXPORT_SYMBOL vmlinux 0x1696c9d6 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169a840b ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x169fc0e4 keyring_alloc -EXPORT_SYMBOL vmlinux 0x16a02bde tcp_splice_read EXPORT_SYMBOL vmlinux 0x16a5be0a pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16aaf1e0 skb_tx_error -EXPORT_SYMBOL vmlinux 0x16cf25be fget EXPORT_SYMBOL vmlinux 0x16d37d01 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e63af7 page_pool_release_page EXPORT_SYMBOL vmlinux 0x16ed1109 scsi_device_resume EXPORT_SYMBOL vmlinux 0x16efb3f3 page_pool_destroy EXPORT_SYMBOL vmlinux 0x16f574fc blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x16f94b7b dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x16fa9c2f __ClearPageMovable EXPORT_SYMBOL vmlinux 0x1708571c simple_lookup EXPORT_SYMBOL vmlinux 0x172c79f3 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x17410135 tcp_prot EXPORT_SYMBOL vmlinux 0x174116a5 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x1748560e pnv_cxl_alloc_hwirq_ranges EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x176d199f ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x17780efa dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178c55fc netlink_unicast -EXPORT_SYMBOL vmlinux 0x17a8bc85 tcf_block_put +EXPORT_SYMBOL vmlinux 0x17900db6 register_qdisc +EXPORT_SYMBOL vmlinux 0x1795c51f security_sk_clone EXPORT_SYMBOL vmlinux 0x17b5a280 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x17b71565 nf_log_register +EXPORT_SYMBOL vmlinux 0x17bf6a36 unix_attach_fds EXPORT_SYMBOL vmlinux 0x17cca897 inode_nohighmem EXPORT_SYMBOL vmlinux 0x17d2e32a pci_request_region -EXPORT_SYMBOL vmlinux 0x17de4ea0 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x17e04020 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x17ed13b7 fs_lookup_param EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x18096933 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x181d4003 tcp_ioctl EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem +EXPORT_SYMBOL vmlinux 0x182d1ba3 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x182ec3f0 vfs_unlink EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace EXPORT_SYMBOL vmlinux 0x183a53c3 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x1852a846 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x1858fb0c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x186520f2 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x1881e77b xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x18860b26 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x18879aaf unix_get_socket EXPORT_SYMBOL vmlinux 0x188de251 of_find_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188f1da7 rtnl_configure_link EXPORT_SYMBOL vmlinux 0x18d4f570 folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0x18e3cd2c radix__flush_tlb_mm EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x18e7bc17 __module_get EXPORT_SYMBOL vmlinux 0x18ea4a4d setup_arg_pages -EXPORT_SYMBOL vmlinux 0x18f001c2 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x18fb732c md_done_sync EXPORT_SYMBOL vmlinux 0x190bac53 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x19141c00 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x19150469 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x19166657 of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x192dee7c devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x19307f06 freezing_slow_path EXPORT_SYMBOL vmlinux 0x19400307 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x195967bc skb_dump +EXPORT_SYMBOL vmlinux 0x1949ac2a __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x196186d2 file_remove_privs EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get EXPORT_SYMBOL vmlinux 0x197fc89f phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x1989b924 pin_user_pages EXPORT_SYMBOL vmlinux 0x198ab749 input_release_device +EXPORT_SYMBOL vmlinux 0x199e7a53 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19a53761 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x19b13214 submit_bio_wait @@ -6575,93 +6588,93 @@ EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec EXPORT_SYMBOL vmlinux 0x19cb182c mdio_device_remove EXPORT_SYMBOL vmlinux 0x19cd1e70 get_inode_acl -EXPORT_SYMBOL vmlinux 0x19ce5fcd vlan_uses_dev EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark EXPORT_SYMBOL vmlinux 0x19d99b08 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x19db5be4 vfs_link EXPORT_SYMBOL vmlinux 0x19dcf536 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x19eb4df9 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x19ef4bf2 crypto_sha256_update EXPORT_SYMBOL vmlinux 0x19f328fe vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x19f76a06 uart_resume_port EXPORT_SYMBOL vmlinux 0x1a20f874 _dev_info EXPORT_SYMBOL vmlinux 0x1a26b8ac vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x1a40a5c6 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x1a4978dc __ip_options_compile +EXPORT_SYMBOL vmlinux 0x1a530888 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x1a617920 bprm_change_interp EXPORT_SYMBOL vmlinux 0x1a6af7fb give_up_console +EXPORT_SYMBOL vmlinux 0x1a7c5eea dev_get_flags EXPORT_SYMBOL vmlinux 0x1a994c69 end_page_writeback EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable +EXPORT_SYMBOL vmlinux 0x1aa74d63 skb_clone EXPORT_SYMBOL vmlinux 0x1ab1449f page_zero_new_buffers EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn EXPORT_SYMBOL vmlinux 0x1ac99144 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x1ad0850b ip_defrag EXPORT_SYMBOL vmlinux 0x1ad4a419 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x1adc96ad uart_unregister_driver EXPORT_SYMBOL vmlinux 0x1af3758d __do_once_done EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1af860f3 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock EXPORT_SYMBOL vmlinux 0x1b0154c4 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0a199b dev_disable_lro -EXPORT_SYMBOL vmlinux 0x1b0b43f3 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x1b224c97 inet_del_offload -EXPORT_SYMBOL vmlinux 0x1b2c9ba0 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x1b052936 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x1b3828a9 filemap_fault EXPORT_SYMBOL vmlinux 0x1b45fd0a pci_save_state -EXPORT_SYMBOL vmlinux 0x1b4d1dcb xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x1b4ee2ac input_allocate_device -EXPORT_SYMBOL vmlinux 0x1b52f2bd tcf_action_exec +EXPORT_SYMBOL vmlinux 0x1b507870 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b64e347 xfrm_register_km EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b7f7da4 ram_aops EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b924835 netdev_warn EXPORT_SYMBOL vmlinux 0x1ba1078c phy_read_mmd EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init EXPORT_SYMBOL vmlinux 0x1baee533 param_ops_bint EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb57282 of_translate_address -EXPORT_SYMBOL vmlinux 0x1bd2849f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x1bc79918 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x1bd24e4e vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent EXPORT_SYMBOL vmlinux 0x1bd651cf pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x1bf5dd9e param_set_int -EXPORT_SYMBOL vmlinux 0x1c07fd40 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x1c22a3a8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x1c0ecd8b skb_queue_head EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp EXPORT_SYMBOL vmlinux 0x1c472ad0 super_setup_bdi EXPORT_SYMBOL vmlinux 0x1c4a61b3 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x1c6383c2 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x1c6a67e3 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x1c789a63 of_phy_connect EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x1c87a7a4 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x1c91f636 ip6_frag_init EXPORT_SYMBOL vmlinux 0x1c9a9b91 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete EXPORT_SYMBOL vmlinux 0x1ca42483 phy_write_paged EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo EXPORT_SYMBOL vmlinux 0x1cbbf806 get_agp_version EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc11ef4 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x1cc1ba60 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0x1ccd6e11 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x1cd617a7 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x1cd7a468 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs +EXPORT_SYMBOL vmlinux 0x1ceb2563 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x1cf32c28 init_special_inode +EXPORT_SYMBOL vmlinux 0x1cf41a46 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul EXPORT_SYMBOL vmlinux 0x1d0e028b __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x1d13acdc mdiobus_register_device EXPORT_SYMBOL vmlinux 0x1d15a50d of_node_put EXPORT_SYMBOL vmlinux 0x1d211dd8 blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0x1d471c29 locks_init_lock +EXPORT_SYMBOL vmlinux 0x1d4a1af4 netdev_info +EXPORT_SYMBOL vmlinux 0x1d4bc178 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1d501d48 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x1d59cc6d netdev_printk EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1d6d2ef8 ppp_input_error EXPORT_SYMBOL vmlinux 0x1d732d87 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x1d85b541 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout @@ -6674,99 +6687,100 @@ EXPORT_SYMBOL vmlinux 0x1dd88fcf fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x1de3e2e0 scsi_device_lookup EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1de764b0 xfrm_state_free EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0dd61f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x1e119fbe sock_sendmsg EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 EXPORT_SYMBOL vmlinux 0x1e22baaf bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x1e2703f3 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x1e344b59 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x1e2ec51c sock_cmsg_send EXPORT_SYMBOL vmlinux 0x1e4878a3 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x1e4adbfc clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x1e4e94dc tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x1e61d133 of_device_register EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7f65a3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1e78fd1a sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue +EXPORT_SYMBOL vmlinux 0x1e8a6f2f ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x1e9a6cfd tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1ea6f423 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x1eaf5cbc platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x1ebaabd7 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x1ebef7cd __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x1ec399ab ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x1ecb0d60 pci_set_mwi EXPORT_SYMBOL vmlinux 0x1ed6b7e4 tty_unregister_driver EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 EXPORT_SYMBOL vmlinux 0x1f16060f md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x1f192f36 d_rehash EXPORT_SYMBOL vmlinux 0x1f412480 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x1f430a84 __scm_destroy EXPORT_SYMBOL vmlinux 0x1f4e1d15 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x1f5ef743 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x1f5a1c5d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x1f706ef2 reuseport_alloc EXPORT_SYMBOL vmlinux 0x1f7a9368 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x1fa5c419 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1fa8dec8 inet_accept EXPORT_SYMBOL vmlinux 0x1fabd9ab __breadahead EXPORT_SYMBOL vmlinux 0x1fb0c445 pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0x1fbce339 __vio_register_driver EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc58975 dev_load +EXPORT_SYMBOL vmlinux 0x1fcd7dcd tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x1fe3e972 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x1fe57d05 inet_confirm_addr EXPORT_SYMBOL vmlinux 0x1fe9656b pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x1fe9954b dev_mc_del_global EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x2001589d genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x20021ec2 iptun_encaps EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x2010c11b __getblk_gfp -EXPORT_SYMBOL vmlinux 0x201142a3 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x20181862 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x202452a9 retire_super EXPORT_SYMBOL vmlinux 0x202a09eb csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x2032c7f4 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x2033b0f2 input_unregister_device EXPORT_SYMBOL vmlinux 0x2038c597 misc_register EXPORT_SYMBOL vmlinux 0x203f31c2 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x20438f43 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204d7b0d ip_output EXPORT_SYMBOL vmlinux 0x205f5ca3 cdev_add -EXPORT_SYMBOL vmlinux 0x2087c91f mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x20721485 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x208a8637 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x208f2e37 ilookup EXPORT_SYMBOL vmlinux 0x209d15d9 pci_request_regions EXPORT_SYMBOL vmlinux 0x209ed6a0 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x20a20a4a __icmp_send EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a810be phy_aneg_done EXPORT_SYMBOL vmlinux 0x20af073e __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x20b12820 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x20b9368f tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x20cf4ca5 get_phy_device +EXPORT_SYMBOL vmlinux 0x20d64696 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20dc88ef inet_recvmsg EXPORT_SYMBOL vmlinux 0x20e126cc cdrom_check_events EXPORT_SYMBOL vmlinux 0x20eba0bb rproc_detach EXPORT_SYMBOL vmlinux 0x210862e5 mtree_insert EXPORT_SYMBOL vmlinux 0x211e58af unregister_framebuffer EXPORT_SYMBOL vmlinux 0x212da734 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x213870d7 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x21390b9f param_ops_invbool EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21543f36 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x215da299 tty_register_device EXPORT_SYMBOL vmlinux 0x216b8533 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x21777142 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219b1564 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x21a760cd inet6_ioctl -EXPORT_SYMBOL vmlinux 0x21a80c20 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x21a0c087 inet_stream_connect EXPORT_SYMBOL vmlinux 0x21b60242 bit_waitqueue EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21cfb5c5 eth_gro_receive EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21f15dd7 serio_rescan EXPORT_SYMBOL vmlinux 0x2207e261 __break_lease EXPORT_SYMBOL vmlinux 0x221cd090 __lock_buffer +EXPORT_SYMBOL vmlinux 0x2225c375 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2237eb5f truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x223c1259 jbd2_journal_set_features @@ -6774,42 +6788,35 @@ EXPORT_SYMBOL vmlinux 0x2249a130 handle_edge_irq EXPORT_SYMBOL vmlinux 0x224c3958 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x224d8a2d mdio_device_reset -EXPORT_SYMBOL vmlinux 0x225df058 bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x2271de19 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x227228f1 mmc_erase +EXPORT_SYMBOL vmlinux 0x22730b1e reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x2275e983 rtc_add_group EXPORT_SYMBOL vmlinux 0x22817b13 user_revoke EXPORT_SYMBOL vmlinux 0x2290f111 mdiobus_free -EXPORT_SYMBOL vmlinux 0x2292b3a0 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x22988c4b to_nd_dax EXPORT_SYMBOL vmlinux 0x229ed112 agp_collect_device_status EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound EXPORT_SYMBOL vmlinux 0x22b9300f generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x22b9d72c nf_ct_attach -EXPORT_SYMBOL vmlinux 0x22c7a223 iterate_fd EXPORT_SYMBOL vmlinux 0x22c8f37c mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x22e57f66 sock_wake_async EXPORT_SYMBOL vmlinux 0x231d2452 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x232a250c __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 -EXPORT_SYMBOL vmlinux 0x2363a615 blk_start_plug EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init EXPORT_SYMBOL vmlinux 0x236b283e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x236f1ead skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x2377bc71 agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0x237cc2b8 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x237ed869 pci_select_bars EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x239262c2 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x239a89f4 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x23a97b7d tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c5ec00 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x23cfcfe3 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e1f46b __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x23f2a078 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x23f6a56f jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x23fa21bd tcp_setsockopt EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node EXPORT_SYMBOL vmlinux 0x24159dad of_scan_pci_bridge EXPORT_SYMBOL vmlinux 0x241da931 key_put @@ -6817,39 +6824,41 @@ EXPORT_SYMBOL vmlinux 0x243d9fbf textsearch_prepare EXPORT_SYMBOL vmlinux 0x243fa41d noop_dirty_folio EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2447ab94 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x246d57e5 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x2472735e tcp_conn_request EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0x249ae436 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x24a3fc8e kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x24beade9 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d53ba0 dev_set_alias EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24efbec8 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x24f6000d sock_recvmsg +EXPORT_SYMBOL vmlinux 0x24e9962f xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock +EXPORT_SYMBOL vmlinux 0x250fbc05 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x254101f7 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x25496679 pci_read_config_word EXPORT_SYMBOL vmlinux 0x254c9287 ioremap EXPORT_SYMBOL vmlinux 0x255166d6 proc_remove EXPORT_SYMBOL vmlinux 0x255c8e24 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x25635461 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x2579ddc8 noop_qdisc EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25a1365f inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x25c45e90 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x25c84c5b xsk_tx_release EXPORT_SYMBOL vmlinux 0x25d10abd fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x25d52b0a tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25fad955 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x26152a09 mr_table_dump EXPORT_SYMBOL vmlinux 0x261a11de param_get_ushort +EXPORT_SYMBOL vmlinux 0x261cb5ba netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x2624852a __phy_resume EXPORT_SYMBOL vmlinux 0x26255201 thaw_bdev EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x26497d70 icmp6_send EXPORT_SYMBOL vmlinux 0x265da0cd filemap_map_pages EXPORT_SYMBOL vmlinux 0x2672e194 pagecache_get_page EXPORT_SYMBOL vmlinux 0x2676f161 phy_get_c45_ids @@ -6861,13 +6870,12 @@ EXPORT_SYMBOL vmlinux 0x268709b3 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26ca2292 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x2699922b netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x26b2f41f kernel_listen +EXPORT_SYMBOL vmlinux 0x26e09ceb udp_read_skb EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x2705c02e __dev_remove_pack EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2712758d dst_release -EXPORT_SYMBOL vmlinux 0x2723c710 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp @@ -6876,9 +6884,11 @@ EXPORT_SYMBOL vmlinux 0x276d2783 blk_mq_alloc_disk_for_queue EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x277ecee1 down_write +EXPORT_SYMBOL vmlinux 0x277f36d0 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse EXPORT_SYMBOL vmlinux 0x278b3384 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x27937dd8 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x27af23f5 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27be527c param_get_long @@ -6888,7 +6898,6 @@ EXPORT_SYMBOL vmlinux 0x27f89444 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x27fd4291 noop_fsync EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2832387d kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x283338eb of_device_get_match_data EXPORT_SYMBOL vmlinux 0x2853fde0 ilookup5 EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 @@ -6896,107 +6905,93 @@ EXPORT_SYMBOL vmlinux 0x2885e857 md_check_recovery EXPORT_SYMBOL vmlinux 0x288f1838 revert_creds EXPORT_SYMBOL vmlinux 0x2890b1b4 finalize_exec -EXPORT_SYMBOL vmlinux 0x2898c3ca security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x28cfbbcb inet_accept -EXPORT_SYMBOL vmlinux 0x28ec06b8 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable EXPORT_SYMBOL vmlinux 0x2906f8cd kern_path -EXPORT_SYMBOL vmlinux 0x290c9e07 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x290dfece bpf_link_put EXPORT_SYMBOL vmlinux 0x292d8be3 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x293a08b3 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x2946e602 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x294c8b05 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x294ed50b mnt_set_expiry EXPORT_SYMBOL vmlinux 0x29535d16 agp_generic_mask_memory EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x296bae3f mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0x29870085 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x2989487b nla_append +EXPORT_SYMBOL vmlinux 0x298af4a6 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x29a2fc26 of_get_property EXPORT_SYMBOL vmlinux 0x29adcf82 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x29bc9f0c inet_frag_kill EXPORT_SYMBOL vmlinux 0x29dff614 ppc_md EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29ef82b4 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x29f177db sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x29fab2dc scsi_register_interface EXPORT_SYMBOL vmlinux 0x2a03dba3 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0x2a04c95e vfs_mknod -EXPORT_SYMBOL vmlinux 0x2a070e56 netif_rx -EXPORT_SYMBOL vmlinux 0x2a15fad4 tcp_filter -EXPORT_SYMBOL vmlinux 0x2a162379 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x2a22b16a devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x2a26da2e pneigh_enqueue EXPORT_SYMBOL vmlinux 0x2a2d5bb4 vc_resize EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a575738 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x2a60f408 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x2a662acd udp_ioctl EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable EXPORT_SYMBOL vmlinux 0x2a70a748 config_item_set_name +EXPORT_SYMBOL vmlinux 0x2a7d4ee9 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x2a85678b tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2a8e32b1 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a969cea netdev_update_features +EXPORT_SYMBOL vmlinux 0x2a949648 skb_store_bits +EXPORT_SYMBOL vmlinux 0x2a95f224 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x2a9937a4 napi_disable EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa01bea dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x2aa53e9e agp_bridge -EXPORT_SYMBOL vmlinux 0x2aa70950 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x2aab0a65 pci_enable_msi EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2aac821b netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x2aaca23c md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x2aada51d seq_open EXPORT_SYMBOL vmlinux 0x2ac26c18 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x2ac9b412 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x2ad2ae92 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x2ad9281c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2acc29bb netdev_emerg +EXPORT_SYMBOL vmlinux 0x2adbf5d5 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x2af20a59 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x2b011287 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x2b0d4135 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x2b1b7319 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x2b084429 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x2b1e66fd secpath_set EXPORT_SYMBOL vmlinux 0x2b1e9f35 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x2b2fd0e9 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x2b505e3e phy_register_fixup -EXPORT_SYMBOL vmlinux 0x2b5284da kernel_sendpage EXPORT_SYMBOL vmlinux 0x2b52c249 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x2b622717 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x2b7040e0 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x2b730276 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x2b64fd4c xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x2b7afc69 mntget -EXPORT_SYMBOL vmlinux 0x2b8d4b4a inet_release -EXPORT_SYMBOL vmlinux 0x2b8eafd3 skb_seq_read -EXPORT_SYMBOL vmlinux 0x2b94e2b7 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x2b8ff43e phy_start_aneg EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock EXPORT_SYMBOL vmlinux 0x2ba36bbb shmem_aops -EXPORT_SYMBOL vmlinux 0x2baeee3a __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x2bbef32d vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x2bcff2ea da903x_query_status EXPORT_SYMBOL vmlinux 0x2bda50b5 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2bdd59a5 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x2bf5548d skb_eth_push EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c370f94 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x2c4a137a folio_end_private_2 EXPORT_SYMBOL vmlinux 0x2c5a5580 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x2c605233 simple_rmdir -EXPORT_SYMBOL vmlinux 0x2c613b49 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2c6673cf mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2c7c1cb8 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x2c7fd916 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0x2c82e7d0 tty_devnum EXPORT_SYMBOL vmlinux 0x2c878f2d bio_free_pages +EXPORT_SYMBOL vmlinux 0x2c88d354 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x2cc17514 of_find_matching_node_and_match EXPORT_SYMBOL vmlinux 0x2cc236ee dcache_dir_close EXPORT_SYMBOL vmlinux 0x2cc928bd mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cee2fa2 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x2cf05e92 d_lookup EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table -EXPORT_SYMBOL vmlinux 0x2cf2462f nf_reinject EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cfd8482 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x2d10722b ata_print_version EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d29235e blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d35ed9a xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup EXPORT_SYMBOL vmlinux 0x2d4842b3 d_delete EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init @@ -7004,121 +6999,123 @@ EXPORT_SYMBOL vmlinux 0x2d528fc0 mmc_detect_change EXPORT_SYMBOL vmlinux 0x2d5db0f2 configfs_depend_item EXPORT_SYMBOL vmlinux 0x2d6c8ede bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x2d6e4263 skb_dequeue EXPORT_SYMBOL vmlinux 0x2d8791c9 is_subdir EXPORT_SYMBOL vmlinux 0x2d96e156 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x2d97dc77 ps2_handle_response EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9ccde3 ppp_unit_number EXPORT_SYMBOL vmlinux 0x2d9f7f90 serio_open EXPORT_SYMBOL vmlinux 0x2daabdaf ps2_drain EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit EXPORT_SYMBOL vmlinux 0x2dd0fdf8 ns_capable +EXPORT_SYMBOL vmlinux 0x2dd49e5d skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x2dd83d16 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x2df10265 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x2df1ce39 arp_send EXPORT_SYMBOL vmlinux 0x2dffd37f drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x2e089f1d tcf_idr_create +EXPORT_SYMBOL vmlinux 0x2e128ac9 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x2e141080 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x2e18852d scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x2e240179 vm_insert_page EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3a0082 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x2e3ce4b7 unpin_user_pages EXPORT_SYMBOL vmlinux 0x2e3ce8f9 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x2e48f147 sock_register -EXPORT_SYMBOL vmlinux 0x2e5b2a26 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put EXPORT_SYMBOL vmlinux 0x2e5fe21d dev_addr_del +EXPORT_SYMBOL vmlinux 0x2e654158 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x2e79c30b key_validate EXPORT_SYMBOL vmlinux 0x2e804670 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x2e881483 eth_type_trans +EXPORT_SYMBOL vmlinux 0x2e8c2914 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x2e94b6f6 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x2e95ee7f mmc_is_req_done EXPORT_SYMBOL vmlinux 0x2eb759ec d_find_any_alias -EXPORT_SYMBOL vmlinux 0x2ec0555c tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x2ec09a6e nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecc5356 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x2ed10a62 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init EXPORT_SYMBOL vmlinux 0x2f190c30 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x2f1fc318 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x2f21ebac ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x2f28f5bf mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f2ede1e qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x2f632f08 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2f6db5fc tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free EXPORT_SYMBOL vmlinux 0x2f7f54b7 phy_drivers_register EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 -EXPORT_SYMBOL vmlinux 0x2f8a26ce netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x2f973c9f __nd_driver_register EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb1178b sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x2fb50ee5 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x2fb71e3a neigh_update EXPORT_SYMBOL vmlinux 0x2fbd4917 mdio_find_bus EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase -EXPORT_SYMBOL vmlinux 0x2fc89a06 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x2fcb6958 freeze_bdev EXPORT_SYMBOL vmlinux 0x2fcbdbb9 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x2fd18702 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x2fd417a9 sk_dst_check EXPORT_SYMBOL vmlinux 0x2fde2d87 scsi_register_driver EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe748c0 mmc_get_card +EXPORT_SYMBOL vmlinux 0x2ff4d7d1 skb_queue_tail EXPORT_SYMBOL vmlinux 0x2fff13fd nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x30046750 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3026cedb inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x30275c76 _dev_printk +EXPORT_SYMBOL vmlinux 0x303c3dff xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x3049b43b pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x304c44a5 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x306a870a security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x307a55c6 tso_start EXPORT_SYMBOL vmlinux 0x307eb44c igrab EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x309ac558 simple_transaction_read EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30abc583 netif_carrier_off EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30c07ab4 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x30c20fb1 nd_device_unregister EXPORT_SYMBOL vmlinux 0x30e6ed61 keyring_search -EXPORT_SYMBOL vmlinux 0x30fee3e5 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x3102082e nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x31164cc1 poll_freewait EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312966cb eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x312baaf8 tcp_connect EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x31341ef7 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x31395b54 bio_endio EXPORT_SYMBOL vmlinux 0x314098d7 inode_to_bdi -EXPORT_SYMBOL vmlinux 0x314f8f08 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x316b7170 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x317941bb key_unlink EXPORT_SYMBOL vmlinux 0x318744d9 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x3196d853 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x319c098a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x319f578c tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x31b42eab sock_init_data +EXPORT_SYMBOL vmlinux 0x31b77b22 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x31c583d5 agp_generic_remove_memory EXPORT_SYMBOL vmlinux 0x31d81a78 vio_find_node EXPORT_SYMBOL vmlinux 0x31dcaac0 dquot_drop EXPORT_SYMBOL vmlinux 0x31e0552a show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x31e5f931 current_in_userns -EXPORT_SYMBOL vmlinux 0x31f49168 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x32117ca4 dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 -EXPORT_SYMBOL vmlinux 0x321961ad ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x321b5fa4 register_quota_format EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322b9e71 sock_no_accept EXPORT_SYMBOL vmlinux 0x32301d13 scsi_ioctl EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x324c5c90 pci_release_region EXPORT_SYMBOL vmlinux 0x324cfe9e of_n_size_cells +EXPORT_SYMBOL vmlinux 0x3250bd2e ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x32530468 __skb_get_hash EXPORT_SYMBOL vmlinux 0x32548dd5 tty_unthrottle EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop -EXPORT_SYMBOL vmlinux 0x3271071b alloc_fddidev EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328b1c68 inet_addr_type EXPORT_SYMBOL vmlinux 0x32aa0d75 lookup_one_unlocked EXPORT_SYMBOL vmlinux 0x32b6efdd folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x32c05ab7 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload EXPORT_SYMBOL vmlinux 0x32e5f617 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x33158f9b pci_request_irq @@ -7126,8 +7123,10 @@ EXPORT_SYMBOL vmlinux 0x332c0913 ps2_end_command EXPORT_SYMBOL vmlinux 0x3331cea7 of_phy_find_device EXPORT_SYMBOL vmlinux 0x33331f87 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x333d73ec kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x3358e4d0 vlan_vid_add EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33aa52d8 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x33909ac0 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x33aaee46 seq_hex_dump EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page EXPORT_SYMBOL vmlinux 0x33ccd94a d_add @@ -7135,104 +7134,100 @@ EXPORT_SYMBOL vmlinux 0x33de5db9 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33f4a10c pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x33f89a2e __skb_gso_segment EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field EXPORT_SYMBOL vmlinux 0x34093fc6 agp_backend_release EXPORT_SYMBOL vmlinux 0x3422fbb8 pci_disable_device +EXPORT_SYMBOL vmlinux 0x3424fbd2 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x34341aef inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x343b6a3f tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x344e652d iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x344e95fe inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x34578cf9 kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x34632db7 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x346edad6 param_set_bool EXPORT_SYMBOL vmlinux 0x346fcdd1 tcp_hashinfo EXPORT_SYMBOL vmlinux 0x347736b3 giveup_fpu -EXPORT_SYMBOL vmlinux 0x348939ee rtnl_create_link EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b532b9 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x34b73495 sock_register EXPORT_SYMBOL vmlinux 0x34ba3754 irq_set_chip EXPORT_SYMBOL vmlinux 0x34bb681e agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34e5390d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x34c8def7 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x34ebf2b3 genphy_resume EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34fa84ec neigh_seq_stop EXPORT_SYMBOL vmlinux 0x35099681 genphy_read_master_slave EXPORT_SYMBOL vmlinux 0x3514a589 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0x352af536 tcp_req_err EXPORT_SYMBOL vmlinux 0x352bb201 xa_store EXPORT_SYMBOL vmlinux 0x3531f324 get_tree_single EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3558d113 tcp_child_process +EXPORT_SYMBOL vmlinux 0x35435516 proto_unregister EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x3574bfcf dump_skip_to EXPORT_SYMBOL vmlinux 0x357793f5 phy_resume +EXPORT_SYMBOL vmlinux 0x35782de5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x357dc167 km_state_notify EXPORT_SYMBOL vmlinux 0x3599dd0c jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 EXPORT_SYMBOL vmlinux 0x35b49283 from_kprojid +EXPORT_SYMBOL vmlinux 0x35b825cf iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x35bdcdd0 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x35c972f5 skb_append EXPORT_SYMBOL vmlinux 0x35cd435a touch_buffer EXPORT_SYMBOL vmlinux 0x35f70824 mntput EXPORT_SYMBOL vmlinux 0x36006556 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x3607e035 nf_log_set -EXPORT_SYMBOL vmlinux 0x3629c84f pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x363dc852 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x36414e02 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x3644470a qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x3642d0b7 register_netdevice EXPORT_SYMBOL vmlinux 0x36487222 inode_init_always EXPORT_SYMBOL vmlinux 0x3649487c blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x364c7389 fb_show_logo -EXPORT_SYMBOL vmlinux 0x365431c4 netdev_info +EXPORT_SYMBOL vmlinux 0x364e2826 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3667a5ab register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x366aa75c __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x3676046f ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit EXPORT_SYMBOL vmlinux 0x368f92a6 put_ipc_ns EXPORT_SYMBOL vmlinux 0x3690dc24 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x36944f04 udplite_prot EXPORT_SYMBOL vmlinux 0x369731cc blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x36ad4964 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x36b5ab20 neigh_xmit EXPORT_SYMBOL vmlinux 0x36c43ccc lookup_one_len EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x36e0cfb4 t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x36e97d2b devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x36ec8ae8 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x36ef4bb5 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x36f53c68 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x36f7f4e9 ppp_register_compressor EXPORT_SYMBOL vmlinux 0x370ca175 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level EXPORT_SYMBOL vmlinux 0x3739f689 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3749813b __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x374e46f8 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x37507fae pci_restore_state EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3757b9f0 inet_listen +EXPORT_SYMBOL vmlinux 0x3778c3fc netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x378725f2 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x379b3967 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x37a411b1 xfrm_lookup EXPORT_SYMBOL vmlinux 0x37b6eb0e clear_nlink EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs EXPORT_SYMBOL vmlinux 0x37e0a779 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x37e5854c xfrm_state_delete EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq EXPORT_SYMBOL vmlinux 0x38026cb6 complete EXPORT_SYMBOL vmlinux 0x3815b695 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus EXPORT_SYMBOL vmlinux 0x381c0cd1 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x3827539c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x3831076a nf_register_sockopt EXPORT_SYMBOL vmlinux 0x38476ad4 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38792990 napi_consume_skb EXPORT_SYMBOL vmlinux 0x387c0d4e block_write_begin -EXPORT_SYMBOL vmlinux 0x3880900d nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x3885af36 cdrom_mode_select EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok @@ -7244,8 +7239,11 @@ EXPORT_SYMBOL vmlinux 0x38ad898d filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x38ae9ed1 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x38be2e5f page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x38bff2be netlink_broadcast EXPORT_SYMBOL vmlinux 0x38d7bdb2 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x38de5d8b skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x38dfcb29 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x38e991a7 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key EXPORT_SYMBOL vmlinux 0x39227ef2 jbd2_fc_wait_bufs @@ -7254,33 +7252,33 @@ EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395d45a9 register_qdisc +EXPORT_SYMBOL vmlinux 0x3976d5cd bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39ad17fd __neigh_create EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x39c75fb7 neigh_seq_start EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39dfe5b9 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x39e0643d sock_create EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x3a0edd79 fasync_helper EXPORT_SYMBOL vmlinux 0x3a1c427b insert_inode_locked -EXPORT_SYMBOL vmlinux 0x3a43135b ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a5a6a91 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3a600217 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x3a6b6a1f fb_blank EXPORT_SYMBOL vmlinux 0x3a805762 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x3a86c468 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store -EXPORT_SYMBOL vmlinux 0x3a8cb414 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3a89cae5 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x3a8d85c6 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x3a9b9ea0 dquot_commit -EXPORT_SYMBOL vmlinux 0x3aa0efe0 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x3aa10deb skb_put EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3acd451f dev_disable_lro EXPORT_SYMBOL vmlinux 0x3ad40284 cdrom_release EXPORT_SYMBOL vmlinux 0x3ada6bfb __fput_sync EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3b165be9 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x3af0251e inet_shutdown +EXPORT_SYMBOL vmlinux 0x3affda3c rtnl_configure_link EXPORT_SYMBOL vmlinux 0x3b216ae3 find_vma EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0x3b3d24f9 param_set_ulong @@ -7289,84 +7287,81 @@ EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b69ac33 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b77a790 __skb_checksum EXPORT_SYMBOL vmlinux 0x3b8fae1b nd_device_notify -EXPORT_SYMBOL vmlinux 0x3b939955 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x3b95891f poll_initwait EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x3bca8175 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x3bd26763 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x3bd70252 dev_get_by_name EXPORT_SYMBOL vmlinux 0x3bd9452f mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x3bdd86c6 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x3be1dd81 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x3bf67fb8 tty_unlock EXPORT_SYMBOL vmlinux 0x3bf6c0b5 folio_redirty_for_writepage EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr EXPORT_SYMBOL vmlinux 0x3c060a48 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1c3135 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x3c2d992c napi_schedule_prep EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c37a5ec pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c8e87d4 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x3c97c5b5 has_capability +EXPORT_SYMBOL vmlinux 0x3c9a873d mr_fill_mroute EXPORT_SYMBOL vmlinux 0x3c9bc5d2 t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x3caefc98 __devm_release_region EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock EXPORT_SYMBOL vmlinux 0x3cb7aefd __serio_register_driver EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream EXPORT_SYMBOL vmlinux 0x3cbeff43 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x3cce92a2 eth_mac_addr EXPORT_SYMBOL vmlinux 0x3cdb650f of_iomap -EXPORT_SYMBOL vmlinux 0x3ce26c96 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf5fe9c inet_del_offload EXPORT_SYMBOL vmlinux 0x3cfb18e5 vme_irq_free -EXPORT_SYMBOL vmlinux 0x3d13c4ac icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x3cfb71f6 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x3d0e4697 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x3d241498 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x3d2d68b0 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x3d327974 serio_unregister_driver EXPORT_SYMBOL vmlinux 0x3d3b3b40 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x3d55e027 nf_log_packet EXPORT_SYMBOL vmlinux 0x3d573f5d locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3d63a76d xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3d71b801 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x3d9bcb75 i2c_del_adapter EXPORT_SYMBOL vmlinux 0x3d9ebee2 bioset_init EXPORT_SYMBOL vmlinux 0x3da2cd5f of_mdio_find_device 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 0x3dc49c68 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3ddd2cdd rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x3de9b67d sk_alloc EXPORT_SYMBOL vmlinux 0x3deb599b file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0x3dede5ba of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0x3df7035e rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head EXPORT_SYMBOL vmlinux 0x3dff30fa dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x3e026cf2 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x3e0655e8 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x3e0797f6 radix__flush_tlb_range EXPORT_SYMBOL vmlinux 0x3e2034ed vfs_statfs -EXPORT_SYMBOL vmlinux 0x3e35b913 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3e20f1da ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x3e2efc37 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e44c1a3 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x3e5995c6 generic_listxattr EXPORT_SYMBOL vmlinux 0x3e6ce2ef config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit EXPORT_SYMBOL vmlinux 0x3ee5ef67 dquot_release -EXPORT_SYMBOL vmlinux 0x3ee72c93 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x3ef343fd nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f3aab85 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f47224e tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x3f4a946f netpoll_print_options EXPORT_SYMBOL vmlinux 0x3f554c17 unload_nls EXPORT_SYMBOL vmlinux 0x3f66d998 __scsi_execute EXPORT_SYMBOL vmlinux 0x3f6e6945 make_kuid -EXPORT_SYMBOL vmlinux 0x3f80454a __kfree_skb -EXPORT_SYMBOL vmlinux 0x3f887693 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f9b50f3 __sk_dst_check EXPORT_SYMBOL vmlinux 0x3fae41a4 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x3faf43bc bio_split_to_limits EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set @@ -7374,54 +7369,57 @@ EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight EXPORT_SYMBOL vmlinux 0x3fe50046 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x3fe9319f inet6_del_protocol EXPORT_SYMBOL vmlinux 0x3fedc567 vme_register_driver EXPORT_SYMBOL vmlinux 0x3ff371fe unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x3ffaa06c ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x4003904f set_page_dirty +EXPORT_SYMBOL vmlinux 0x401a37a9 sock_no_ioctl EXPORT_SYMBOL vmlinux 0x4029325d i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x402bdfa1 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x403cb0af scsi_host_alloc EXPORT_SYMBOL vmlinux 0x4043fa34 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x404b8900 udp_ioctl EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x4068cbc7 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x4072981f flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x4092ba69 release_pages EXPORT_SYMBOL vmlinux 0x40972677 ptp_clock_event EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409c3628 blk_put_queue EXPORT_SYMBOL vmlinux 0x40a2f145 __mdiobus_read EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a781b5 udplite_prot EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40adb0fe mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x40b2ebd7 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x40bdef74 address_space_init_once EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler EXPORT_SYMBOL vmlinux 0x40e6a3b3 dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x40ec9cb7 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x40f409ba devm_clk_put EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc EXPORT_SYMBOL vmlinux 0x40ff4982 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x41033a05 inet_release EXPORT_SYMBOL vmlinux 0x4112be6e kern_unmount_array +EXPORT_SYMBOL vmlinux 0x411eda77 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x41208e38 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x41232c82 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x412851de page_mapping EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x4138dd44 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x4138d8fe nf_log_set EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414be5eb udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x416f56f2 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x4165489c netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x417074ec netdev_crit EXPORT_SYMBOL vmlinux 0x41796273 pci_domain_nr EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418fadca security_path_mknod EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x41b23d86 __inet_hash EXPORT_SYMBOL vmlinux 0x41b8ace6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x41d0875e netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x41d8294d get_thermal_instance EXPORT_SYMBOL vmlinux 0x41eb4187 phy_init_hw EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41fb6ba5 mpage_read_folio -EXPORT_SYMBOL vmlinux 0x4230d43a iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x42349202 brioctl_set EXPORT_SYMBOL vmlinux 0x42350ab5 import_single_range EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x4249d009 mach_powernv @@ -7432,41 +7430,36 @@ EXPORT_SYMBOL vmlinux 0x427600fd key_type_keyring EXPORT_SYMBOL vmlinux 0x42815ad6 uart_update_timeout EXPORT_SYMBOL vmlinux 0x42892c97 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x428da877 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x42c5f730 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x42cdf117 of_device_alloc -EXPORT_SYMBOL vmlinux 0x42e3fa0c passthru_features_check +EXPORT_SYMBOL vmlinux 0x42e650da dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x42ef45d6 bio_chain EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4300b0c0 submit_bio EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430a1988 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x430a32a7 kernel_write -EXPORT_SYMBOL vmlinux 0x4313c959 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x4310166f arp_tbl EXPORT_SYMBOL vmlinux 0x4319db11 dm_put_device -EXPORT_SYMBOL vmlinux 0x431ac351 sock_wmalloc EXPORT_SYMBOL vmlinux 0x431b6551 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x432afaaf xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4328859c __ip_select_ident EXPORT_SYMBOL vmlinux 0x4337576f pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x4346814b xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x43488d70 vio_register_device_node EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4374d800 dev_add_pack +EXPORT_SYMBOL vmlinux 0x4378e6ce kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x437d5975 pcie_set_mps EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43a988c5 ip_check_defrag EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x43c89cfe sock_no_shutdown EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43dd7b1e get_tree_nodev +EXPORT_SYMBOL vmlinux 0x43e4f4f5 ppp_input_error EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x44036927 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x441aa358 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x441c4904 folio_end_writeback EXPORT_SYMBOL vmlinux 0x4434e62a mdio_bus_type -EXPORT_SYMBOL vmlinux 0x4436f709 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x44516ede from_kuid_munged EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq @@ -7474,36 +7467,34 @@ EXPORT_SYMBOL vmlinux 0x446dfc0a agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0x447b549a dma_map_resource EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x44951568 inet_add_offload EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44b2bb57 iterate_dir EXPORT_SYMBOL vmlinux 0x44c5d7f3 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x44c62194 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x44c96fe7 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x44d48649 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0x44e12da4 bdi_unregister EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44f4c967 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x44fbc435 sock_alloc +EXPORT_SYMBOL vmlinux 0x44f53464 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x450473a5 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x450a9917 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x450b8f02 sock_pfree EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x4518f1b2 sock_setsockopt EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x4534e14d ilookup5_nowait EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4542e121 sock_queue_rcv_skb_reason -EXPORT_SYMBOL vmlinux 0x4544275a __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update EXPORT_SYMBOL vmlinux 0x4565163c mtree_insert_range EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457da8b9 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x458b4faf tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x457e0b0a mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x45ae1958 dcb_getapp +EXPORT_SYMBOL vmlinux 0x45c6ca4b netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x45cfed8a input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x45d9e95e build_skb_around +EXPORT_SYMBOL vmlinux 0x45df3ac3 fd_install EXPORT_SYMBOL vmlinux 0x45e47baf fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x45e8ee89 generic_fadvise EXPORT_SYMBOL vmlinux 0x45f7f2ac d_alloc_parallel @@ -7517,16 +7508,12 @@ EXPORT_SYMBOL vmlinux 0x462e3b10 iov_iter_zero EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header EXPORT_SYMBOL vmlinux 0x46498ca4 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x465a7b1a km_new_mapping EXPORT_SYMBOL vmlinux 0x465b96b2 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x466f2db9 write_inode_now -EXPORT_SYMBOL vmlinux 0x46718d06 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x4671cfb9 eth_validate_addr EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46863e1e tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x4688afce __block_write_full_page EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x46c265f5 fs_param_is_bool @@ -7534,108 +7521,119 @@ EXPORT_SYMBOL vmlinux 0x46c4d265 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x46cc1554 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x46cecb13 param_ops_charp -EXPORT_SYMBOL vmlinux 0x46db0018 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset EXPORT_SYMBOL vmlinux 0x4706ce58 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x47083ddb tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x471bf687 genl_notify +EXPORT_SYMBOL vmlinux 0x473db610 genlmsg_put EXPORT_SYMBOL vmlinux 0x4756be51 _dev_err EXPORT_SYMBOL vmlinux 0x47617b65 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x476a454e ndisc_mc_map EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4786188c security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x4790c664 con_is_visible EXPORT_SYMBOL vmlinux 0x4798d31f inode_get_bytes 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 0x47cb812e sock_efree EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d3d15c vfs_iter_write EXPORT_SYMBOL vmlinux 0x47e960d0 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x47fc5317 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x47ff0cb9 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x480a1125 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x480bdcb8 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482c1719 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x48483de7 fiemap_prep EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484c547c __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x484f1705 commit_creds EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase EXPORT_SYMBOL vmlinux 0x48868b6a bio_copy_data EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a8feea ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48a921ed flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c75d31 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x48d0a073 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48d54cbe xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x48d76f15 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x48e5734a kmem_cache_size EXPORT_SYMBOL vmlinux 0x48feff1e __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49058259 tcp_parse_options EXPORT_SYMBOL vmlinux 0x490a3dbb pipe_unlock EXPORT_SYMBOL vmlinux 0x490b3264 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x491604e7 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 EXPORT_SYMBOL vmlinux 0x49527c3e block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x495e8343 nf_log_packet EXPORT_SYMBOL vmlinux 0x496ea4dd kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x4972185d qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x498078cb sock_create_kern +EXPORT_SYMBOL vmlinux 0x497a04cf security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a2e84f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x49c08ca8 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x49c5006f reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x49c86d59 pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0x49e894b6 elv_rb_add EXPORT_SYMBOL vmlinux 0x49f1616e cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x49f8d551 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x4a1017aa rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x4a107802 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x4a12a557 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x4a338de3 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x4a366991 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x4a3a2515 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 EXPORT_SYMBOL vmlinux 0x4a490d3b mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc -EXPORT_SYMBOL vmlinux 0x4a58e188 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x4a5828a3 mr_table_alloc EXPORT_SYMBOL vmlinux 0x4a79c30e pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x4a7e8008 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x4a8c0b76 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest EXPORT_SYMBOL vmlinux 0x4aa53282 cdev_device_del +EXPORT_SYMBOL vmlinux 0x4aa58a10 udp_seq_start EXPORT_SYMBOL vmlinux 0x4aa7e4a2 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4ab0e362 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request EXPORT_SYMBOL vmlinux 0x4ae7ee64 set_security_override EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4b06e0bd set_user_nice EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b169bf0 netdev_emerg EXPORT_SYMBOL vmlinux 0x4b1c550a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4b267ee7 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x4b353588 cdev_alloc EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0x4b4305fc flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x4b6ef278 __dquot_free_space EXPORT_SYMBOL vmlinux 0x4b72ac5d __pagevec_release +EXPORT_SYMBOL vmlinux 0x4ba1a6d2 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x4ba2cbd1 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4bc4bb4d skb_checksum +EXPORT_SYMBOL vmlinux 0x4beb1ee5 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x4bee5902 rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c130dcb ping_prot +EXPORT_SYMBOL vmlinux 0x4c159dd3 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4c18d650 __sock_create EXPORT_SYMBOL vmlinux 0x4c205e7f tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x4c3a51ef mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x4c3fda57 touch_atime EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4b9a9c phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x4c525de8 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x4c66a43a nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x4c689166 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x4c6e5310 netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x4c712431 sk_common_release EXPORT_SYMBOL vmlinux 0x4c728438 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x4c79a1e2 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x4c85ac7e tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4c82822e skb_copy_bits EXPORT_SYMBOL vmlinux 0x4c9e2a2d pci_enable_device +EXPORT_SYMBOL vmlinux 0x4ca530e8 netif_device_attach EXPORT_SYMBOL vmlinux 0x4ca630a6 inode_set_flags EXPORT_SYMBOL vmlinux 0x4ca8915c blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x4cb0910d scsi_mode_sense @@ -7645,15 +7643,16 @@ EXPORT_SYMBOL vmlinux 0x4ccd8f7b blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x4ce1d317 copy_page_from_iter EXPORT_SYMBOL vmlinux 0x4ce85226 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x4cee5831 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x4d05d462 tcf_register_action EXPORT_SYMBOL vmlinux 0x4d15dd50 PageMovable EXPORT_SYMBOL vmlinux 0x4d2e3a71 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x4d2f3a6c xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x4d2f8a9b neigh_table_init EXPORT_SYMBOL vmlinux 0x4d3746ed elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x4d47299f xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x4d4e6119 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d746e7f tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x4d6bd546 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x4d856865 pcibios_fixup_bus EXPORT_SYMBOL vmlinux 0x4d8b64d5 devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0x4d91c13c kthread_create_worker_on_cpu @@ -7662,96 +7661,101 @@ EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4da1560f fs_context_for_submount EXPORT_SYMBOL vmlinux 0x4da9d30e folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x4dabc2c1 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x4dad4cca request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x4dadb115 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x4dc8ad75 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x4ddb9d9a vme_irq_generate EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4df8a067 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x4e24fdbb ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x4dfbe8e8 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x4e0a75bb xp_dma_map EXPORT_SYMBOL vmlinux 0x4e2e82f4 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x4e2f1742 param_get_charp +EXPORT_SYMBOL vmlinux 0x4e3274d1 skb_trim EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e35e7f3 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e50a973 dev_add_pack EXPORT_SYMBOL vmlinux 0x4e529934 dev_mc_init EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0x4e60e167 pci_assign_resource EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e69bbc2 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console EXPORT_SYMBOL vmlinux 0x4e81789f __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4eaad1bc rtnl_notify EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb52809 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars -EXPORT_SYMBOL vmlinux 0x4eb940f8 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x4ec1fc34 udp_prot EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 EXPORT_SYMBOL vmlinux 0x4ecae77c __of_get_address EXPORT_SYMBOL vmlinux 0x4edbfa3c page_symlink -EXPORT_SYMBOL vmlinux 0x4edd48a1 tcp_read_done EXPORT_SYMBOL vmlinux 0x4ee3536e starget_for_each_device -EXPORT_SYMBOL vmlinux 0x4f093675 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x4f174473 I_BDEV EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2180f5 unregister_shrinker EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2d6c9f phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4f2d16d6 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x4f341fe3 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x4f36f853 eth_header_cache +EXPORT_SYMBOL vmlinux 0x4f38b7d9 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4f3bcf83 skb_pull +EXPORT_SYMBOL vmlinux 0x4f412efb neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x4f487773 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x4f553e6d tcp_sendmsg EXPORT_SYMBOL vmlinux 0x4f6a627f param_get_uint -EXPORT_SYMBOL vmlinux 0x4f6b59aa ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4f71e05c ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x4f8e386a pci_irq_vector EXPORT_SYMBOL vmlinux 0x4f9a6e61 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x4fa2b56c ipmi_platform_add EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x4fbcc31f fddi_type_trans +EXPORT_SYMBOL vmlinux 0x4fd66ee9 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x4fd7a0e4 sock_no_listen EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command EXPORT_SYMBOL vmlinux 0x4fdfb0fb fb_get_mode -EXPORT_SYMBOL vmlinux 0x4fe87d41 dev_close +EXPORT_SYMBOL vmlinux 0x4fe42e9f eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x4feba639 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x4ff293cb remove_arg_zero EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x4ffd0bf5 machine_id +EXPORT_SYMBOL vmlinux 0x500334cd tcf_exts_validate EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500db16d netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x5017023d put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x5018fc02 pci_find_capability -EXPORT_SYMBOL vmlinux 0x501a04e2 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x502315b7 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x50240f0d mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x503a2a62 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x50532342 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506474ef sock_set_keepalive EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507443da ppp_dev_name EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size EXPORT_SYMBOL vmlinux 0x507c9468 nd_dev_to_uuid 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 0x50975e07 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x509ee02f generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x50a21a2e tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a9bbe4 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50b815cc tty_lock EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50bf4c97 netif_rx +EXPORT_SYMBOL vmlinux 0x50c93c22 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x50ced049 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50cf86aa balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d85a15 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x50eaf8cd mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x50f15176 netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x50f3619e xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x50fa792c param_set_ullong -EXPORT_SYMBOL vmlinux 0x50fbeeee vlan_for_each EXPORT_SYMBOL vmlinux 0x50fd8f36 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x5102ca16 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x5106fb68 register_framebuffer EXPORT_SYMBOL vmlinux 0x510d2b57 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x511d5421 of_find_node_with_property @@ -7762,52 +7766,47 @@ EXPORT_SYMBOL vmlinux 0x516472f6 backlight_device_register EXPORT_SYMBOL vmlinux 0x5167daf4 pipe_lock EXPORT_SYMBOL vmlinux 0x516c6bca kthread_bind -EXPORT_SYMBOL vmlinux 0x5185fe41 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x518a2f56 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0x518d6360 bdev_check_media_change EXPORT_SYMBOL vmlinux 0x5199bc9b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x519b262f __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x519bb3e7 gen_replace_estimator EXPORT_SYMBOL vmlinux 0x51b1a2e1 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x51b3441e netlink_capable -EXPORT_SYMBOL vmlinux 0x51d65ad8 sock_setsockopt EXPORT_SYMBOL vmlinux 0x51dcceb6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x51e4020f passthru_features_check +EXPORT_SYMBOL vmlinux 0x51e56198 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x51e6f7f8 dentry_path_raw EXPORT_SYMBOL vmlinux 0x51e75b68 __of_mdiobus_register EXPORT_SYMBOL vmlinux 0x51f2453d max8998_write_reg -EXPORT_SYMBOL vmlinux 0x52223fb2 genl_notify +EXPORT_SYMBOL vmlinux 0x52155ecb netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x5224ab9c devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x5230105a dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0x524659e5 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x5231dbdc submit_bio EXPORT_SYMBOL vmlinux 0x525ade0e jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x52679061 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x5268c2d2 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5275419c consume_skb +EXPORT_SYMBOL vmlinux 0x529143b9 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529b9171 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x52ad738b of_get_next_parent EXPORT_SYMBOL vmlinux 0x52b14d33 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x52cb9b43 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52da3b76 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x52e2e0ae qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x52e896fd mmu_feature_keys EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x53448769 clear_user_page -EXPORT_SYMBOL vmlinux 0x537a95ab skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x539a0183 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53a3ae10 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x53b24613 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x53b77b44 netdev_notice EXPORT_SYMBOL vmlinux 0x53d4872e pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x53d7c765 vif_device_init EXPORT_SYMBOL vmlinux 0x53d8c17f d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x53e203f5 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x53e980d1 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x53f0a2bc twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x53f29491 freeze_super +EXPORT_SYMBOL vmlinux 0x53f310cb inet_bind EXPORT_SYMBOL vmlinux 0x54013190 param_set_copystring EXPORT_SYMBOL vmlinux 0x540eafe4 pci_scan_bus EXPORT_SYMBOL vmlinux 0x5412c7c7 up @@ -7816,83 +7815,84 @@ EXPORT_SYMBOL vmlinux 0x5429ea50 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x542c13c2 vme_lm_request EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544317ff inet_dgram_ops EXPORT_SYMBOL vmlinux 0x544ef90e regset_get EXPORT_SYMBOL vmlinux 0x547a81a8 generic_file_read_iter EXPORT_SYMBOL vmlinux 0x5487c67f rproc_add -EXPORT_SYMBOL vmlinux 0x54a8d1d7 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x54ae2309 of_root EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54b2d99f netlink_broadcast +EXPORT_SYMBOL vmlinux 0x54b53b45 inet_getname EXPORT_SYMBOL vmlinux 0x54bf5d9b path_has_submounts EXPORT_SYMBOL vmlinux 0x54c6473a __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x54c8a609 of_node_get +EXPORT_SYMBOL vmlinux 0x54d4eccd xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e789e3 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x54f21145 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x54fab515 twl6040_reg_write EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x550f3366 generic_fillattr -EXPORT_SYMBOL vmlinux 0x5517204b dev_activate EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55321268 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x5558e7ff page_get_link EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user -EXPORT_SYMBOL vmlinux 0x5588d1d5 init_net EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey EXPORT_SYMBOL vmlinux 0x55981b4b input_setup_polling EXPORT_SYMBOL vmlinux 0x55be33f3 genphy_update_link +EXPORT_SYMBOL vmlinux 0x55bef174 sk_wait_data +EXPORT_SYMBOL vmlinux 0x55c89cdb tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x55d2cb8c vfs_llseek EXPORT_SYMBOL vmlinux 0x55d79b2b devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x55d97bf4 phy_device_remove EXPORT_SYMBOL vmlinux 0x55da0c72 bio_uninit EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x55e970f3 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x560e8b1a fget_raw +EXPORT_SYMBOL vmlinux 0x55ef4850 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5611d68a eth_header EXPORT_SYMBOL vmlinux 0x56261f03 of_get_parent -EXPORT_SYMBOL vmlinux 0x56285257 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563e62e7 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5659d347 bpf_map_get EXPORT_SYMBOL vmlinux 0x565e24e0 dma_set_mask +EXPORT_SYMBOL vmlinux 0x5668243c consume_skb EXPORT_SYMBOL vmlinux 0x566a57ab register_console EXPORT_SYMBOL vmlinux 0x5673891b __inc_node_page_state EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568b3b35 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x5681199c sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x568c39a9 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x5691a119 input_grab_device EXPORT_SYMBOL vmlinux 0x56a50d60 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x56aeb85f __skb_ext_del EXPORT_SYMBOL vmlinux 0x56bdfb12 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x56c068c4 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d4a663 udp_disconnect +EXPORT_SYMBOL vmlinux 0x56cc46f5 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x56f1127b task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x56fd12c4 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x570b875d alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x571467df mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x5718ae6f padata_set_cpumask EXPORT_SYMBOL vmlinux 0x571ccb89 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x572465d6 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x5741e39f phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574c77d6 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x574ca887 eth_header_parse EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5757f01d ppp_channel_index +EXPORT_SYMBOL vmlinux 0x5763b94b __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 EXPORT_SYMBOL vmlinux 0x578122ac uart_suspend_port -EXPORT_SYMBOL vmlinux 0x579103e7 dst_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57933b65 bpf_link_put EXPORT_SYMBOL vmlinux 0x57b3a98a nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x57b90f76 ethtool_notify EXPORT_SYMBOL vmlinux 0x57bb8004 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x57c4a809 ip_options_compile +EXPORT_SYMBOL vmlinux 0x57c351fa bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x57cc2370 pci_get_slot EXPORT_SYMBOL vmlinux 0x57d03f67 vmemmap EXPORT_SYMBOL vmlinux 0x57d33b29 jbd2_journal_clear_features @@ -7900,11 +7900,10 @@ EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize EXPORT_SYMBOL vmlinux 0x57e9596a dev_uc_flush EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57fc1e02 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x580ab740 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x580b2596 sock_pfree +EXPORT_SYMBOL vmlinux 0x580ae5d5 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58262f6e __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x582affbc set_anon_super EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x58324c01 mipi_dsi_dcs_get_display_brightness_large @@ -7913,12 +7912,12 @@ EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588045c3 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x588d41c5 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x58908479 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit +EXPORT_SYMBOL vmlinux 0x58980a15 netlink_capable EXPORT_SYMBOL vmlinux 0x5898c6b5 path_put EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58aed492 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard EXPORT_SYMBOL vmlinux 0x58cb16e3 __generic_file_fsync @@ -7926,31 +7925,29 @@ EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io EXPORT_SYMBOL vmlinux 0x58fbedc7 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x5906e706 posix_lock_file -EXPORT_SYMBOL vmlinux 0x590ae679 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x5918aaef rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x591dc344 inode_insert5 EXPORT_SYMBOL vmlinux 0x5932fa8e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x594069dc unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x59478aae skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595480aa udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0x59675984 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x596a0a8f get_user_pages +EXPORT_SYMBOL vmlinux 0x596c1f99 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x59729244 inode_needs_sync EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock EXPORT_SYMBOL vmlinux 0x598ec464 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x599e091a ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b515a6 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x59b8b434 vio_h_cop_sync EXPORT_SYMBOL vmlinux 0x59bdfcfd pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x59cd188e skb_ext_add EXPORT_SYMBOL vmlinux 0x59cd3525 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x59e08183 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x59f2184b inet_offloads +EXPORT_SYMBOL vmlinux 0x59cfd2e6 tcp_release_cb EXPORT_SYMBOL vmlinux 0x59f2f605 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x59f6b0e6 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore @@ -7960,14 +7957,13 @@ EXPORT_SYMBOL vmlinux 0x5a1e160e pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x5a26ecb9 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2b990b skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x5a3392ae pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0x5a3ecafd folio_wait_private_2 EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d0d83 blackhole_netdev EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5671a5 sock_create EXPORT_SYMBOL vmlinux 0x5a71b894 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x5a7f83f8 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x5a885aa9 nf_setsockopt EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9d32ac md_integrity_register @@ -7976,7 +7972,8 @@ EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree EXPORT_SYMBOL vmlinux 0x5b0698dc del_gendisk EXPORT_SYMBOL vmlinux 0x5b0ba929 fb_set_var -EXPORT_SYMBOL vmlinux 0x5b23f6c0 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5b12697b xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x5b19ffa4 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x5b3c4ad3 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0x5b4085c7 follow_up EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present @@ -7985,53 +7982,50 @@ EXPORT_SYMBOL vmlinux 0x5b5c0858 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x5b687373 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x5b7c0f1f of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x5b8f2f5a mdiobus_scan EXPORT_SYMBOL vmlinux 0x5b969f7e pci_write_config_word EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock EXPORT_SYMBOL vmlinux 0x5baec7c6 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x5bbc8337 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x5bcf04a6 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bd9a655 rproc_put EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be27b97 netif_tx_lock EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub EXPORT_SYMBOL vmlinux 0x5bef1964 simple_getattr EXPORT_SYMBOL vmlinux 0x5bf42b1b pci_scan_slot -EXPORT_SYMBOL vmlinux 0x5c29214f skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x5c3a7640 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x5c2c247d sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x5c3930d9 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c438374 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x5c57d46a security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x5c4d74be xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x5c6c288b cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x5c839041 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x5c905b8a xmon -EXPORT_SYMBOL vmlinux 0x5c97ae3f inet_sendpage -EXPORT_SYMBOL vmlinux 0x5c97cfe5 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5c94dd8c rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0x5cc873af ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x5ccc2bb5 paca_ptrs EXPORT_SYMBOL vmlinux 0x5cd92da6 set_binfmt EXPORT_SYMBOL vmlinux 0x5ce0bba9 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x5cf041ec netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5cf36ef7 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x5cf4d576 genl_register_family EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d04cebc xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x5d04d2a1 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x5d07738a xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x5d0f33ae forget_cached_acl EXPORT_SYMBOL vmlinux 0x5d34b19b pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry EXPORT_SYMBOL vmlinux 0x5d5663cf simple_statfs -EXPORT_SYMBOL vmlinux 0x5d5c9b80 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x5d6fef7f udp_seq_next +EXPORT_SYMBOL vmlinux 0x5d75e92c sock_no_bind EXPORT_SYMBOL vmlinux 0x5d76f2d4 dput EXPORT_SYMBOL vmlinux 0x5d7a1196 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x5d897867 inet_dgram_connect EXPORT_SYMBOL vmlinux 0x5da87560 mount_bdev EXPORT_SYMBOL vmlinux 0x5dab1f7d devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x5db87481 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x5db8b941 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x5dcbe1d4 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x5dcd4f8c xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x5dd41db3 noop_qdisc +EXPORT_SYMBOL vmlinux 0x5ddcd77f udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x5de1fc03 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x5de34ab9 dst_init +EXPORT_SYMBOL vmlinux 0x5de24941 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform EXPORT_SYMBOL vmlinux 0x5e197375 blk_rq_init @@ -8045,11 +8039,14 @@ EXPORT_SYMBOL vmlinux 0x5e5ae5e9 vio_disable_interrupts EXPORT_SYMBOL vmlinux 0x5e5b51a1 simple_get_link EXPORT_SYMBOL vmlinux 0x5e5da1b5 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5e6f220b security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x5e933ba2 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key EXPORT_SYMBOL vmlinux 0x5ea77d11 config_item_put -EXPORT_SYMBOL vmlinux 0x5ebb0ab1 sock_no_getname +EXPORT_SYMBOL vmlinux 0x5eaa3fdf skb_append +EXPORT_SYMBOL vmlinux 0x5ec1055c ip_frag_init EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ec708c8 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x5ecf46f4 pin_user_pages_unlocked @@ -8058,19 +8055,20 @@ EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return EXPORT_SYMBOL vmlinux 0x5ee3247e tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x5eeac7de xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x5eeece51 phy_suspend -EXPORT_SYMBOL vmlinux 0x5ef40419 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x5eef8189 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x5ef419df of_match_node EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5eff46d9 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters EXPORT_SYMBOL vmlinux 0x5f0de618 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x5f21fb64 skb_find_text +EXPORT_SYMBOL vmlinux 0x5f167947 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f37786b netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x5f368c09 ether_setup EXPORT_SYMBOL vmlinux 0x5f37ac07 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x5f393675 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f627139 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x5f6b43a6 __bread_gfp EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa EXPORT_SYMBOL vmlinux 0x5f85ac4c stream_open @@ -8079,76 +8077,72 @@ EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo EXPORT_SYMBOL vmlinux 0x5fad99cf blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find -EXPORT_SYMBOL vmlinux 0x5fb57942 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x5fbd58d6 key_revoke -EXPORT_SYMBOL vmlinux 0x5fbf6b8a tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact EXPORT_SYMBOL vmlinux 0x5fd6918b mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x5fda804e __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x5fdb76f8 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x5feb752b sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x5fed7515 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0x5ff4df70 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6006cd56 param_get_invbool -EXPORT_SYMBOL vmlinux 0x600c4f6d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x600e249d tcp_mtup_init EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x6017041b ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x601711cf kmem_cache_free -EXPORT_SYMBOL vmlinux 0x60182e73 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x601a361d neigh_app_ns EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create EXPORT_SYMBOL vmlinux 0x602036ff flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x6039a834 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x603ad28a dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x604bbcae __skb_ext_del EXPORT_SYMBOL vmlinux 0x604d56d2 tty_kref_put EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6058d55f bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x605cabec phy_aneg_done EXPORT_SYMBOL vmlinux 0x605daf1f locks_copy_conflock EXPORT_SYMBOL vmlinux 0x60708f93 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x607328c1 mmc_request_done EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60980906 security_path_mkdir EXPORT_SYMBOL vmlinux 0x60981b47 dev_mc_add EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60b202ea shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x60bd07d1 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x60c2ac30 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x60cba705 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x60d43ea7 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e17d6e tso_start -EXPORT_SYMBOL vmlinux 0x60e89c3b phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x60fadaef netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x61011d0f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x60e154e1 skb_find_text +EXPORT_SYMBOL vmlinux 0x60efcf83 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x60fa34d6 dev_activate EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614798f3 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61785842 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x618693ce tcp_splice_read EXPORT_SYMBOL vmlinux 0x6187799b kernel_param_lock EXPORT_SYMBOL vmlinux 0x618911fc numa_node EXPORT_SYMBOL vmlinux 0x6192fb68 inode_init_owner EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x61b2df7c do_SAK EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c804b7 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock +EXPORT_SYMBOL vmlinux 0x61cc7341 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x61d98df7 tcf_classify +EXPORT_SYMBOL vmlinux 0x61dc9fb3 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61e7ea37 agp_allocate_memory EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer EXPORT_SYMBOL vmlinux 0x61ea5b13 folio_mark_dirty -EXPORT_SYMBOL vmlinux 0x61f014ba tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x6202e155 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x62127e10 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x61f1762b inet_register_protosw +EXPORT_SYMBOL vmlinux 0x61f7f8fb __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x62363449 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0x625eb8a0 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x62650d84 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x6270994b put_cmsg EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range EXPORT_SYMBOL vmlinux 0x627d1a3e pci_msi_vec_count @@ -8159,26 +8153,31 @@ EXPORT_SYMBOL vmlinux 0x62a2da7e rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x62a61ec4 mach_pseries EXPORT_SYMBOL vmlinux 0x62b276c4 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x62d9a0ce xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x62dc3027 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x62e3349a mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x63103eda kill_anon_super EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put EXPORT_SYMBOL vmlinux 0x6339b238 module_refcount -EXPORT_SYMBOL vmlinux 0x6371444a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x636792c5 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x637448c6 pcim_enable_device EXPORT_SYMBOL vmlinux 0x63808338 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x6386d110 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x6386f0f4 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x63945b28 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x639af2f1 phy_free_interrupt EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region EXPORT_SYMBOL vmlinux 0x63b81347 agp_free_memory EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x63c1b070 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x63c9baaa xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x63d8dfc9 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x63de4999 vme_bus_num EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x640ca146 unix_get_socket EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6427d5d9 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x6428b539 generic_file_splice_read EXPORT_SYMBOL vmlinux 0x6432d659 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x643340e9 d_set_fallthru @@ -8189,17 +8188,17 @@ EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6493002b phy_stop EXPORT_SYMBOL vmlinux 0x64a04de4 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x64b51b96 kthread_stop EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bfe482 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x64db4434 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x64e2a5f6 cdev_del EXPORT_SYMBOL vmlinux 0x64f13d73 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x64fdb0a6 mtree_erase EXPORT_SYMBOL vmlinux 0x65034638 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x65088a09 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x65138c2f blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src @@ -8210,39 +8209,37 @@ EXPORT_SYMBOL vmlinux 0x652f5bed msi_bitmap_alloc_hwirqs EXPORT_SYMBOL vmlinux 0x6534636f dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x65358a11 of_device_is_available -EXPORT_SYMBOL vmlinux 0x653dc6ef ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654d8b88 tty_check_change EXPORT_SYMBOL vmlinux 0x6551320c ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x6555e95f mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x656468ee ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x656a7ef5 dev_addr_add EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x656ee5cb skb_copy_bits +EXPORT_SYMBOL vmlinux 0x6576bf4f ip_route_me_harder EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x657cbc83 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658f7f2d sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659abc4b tcf_em_unregister EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a0d79b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x659def3e tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x65a407e9 fb_class EXPORT_SYMBOL vmlinux 0x65b8ff69 proc_create_data EXPORT_SYMBOL vmlinux 0x65bd52dd md_write_end -EXPORT_SYMBOL vmlinux 0x65d9a595 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x65ce4689 tcf_idr_create 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 0x65e6a935 skb_copy_header EXPORT_SYMBOL vmlinux 0x660f2c82 generic_update_time EXPORT_SYMBOL vmlinux 0x6633f972 __traceiter_dma_fence_enable_signal 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 0x666cb295 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6676279f tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x667897db phy_config_aneg +EXPORT_SYMBOL vmlinux 0x6689075c netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x668fc2a0 security_unix_may_send EXPORT_SYMBOL vmlinux 0x6692adb9 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args EXPORT_SYMBOL vmlinux 0x66a4f8cd mfd_add_devices @@ -8251,42 +8248,35 @@ EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup EXPORT_SYMBOL vmlinux 0x66b4e0aa is_nd_pfn EXPORT_SYMBOL vmlinux 0x66b6f1ff mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x66c3b480 inet_protos +EXPORT_SYMBOL vmlinux 0x66d4641c dev_get_iflink EXPORT_SYMBOL vmlinux 0x66d961e6 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x66f27d10 sock_i_ino -EXPORT_SYMBOL vmlinux 0x6709d25b neigh_app_ns +EXPORT_SYMBOL vmlinux 0x6708a3ff tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x672b8963 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init EXPORT_SYMBOL vmlinux 0x674ee394 serio_bus -EXPORT_SYMBOL vmlinux 0x676f6b1e ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x6767ab48 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x6770088b scsi_report_opcode EXPORT_SYMBOL vmlinux 0x677deee6 iov_iter_xarray EXPORT_SYMBOL vmlinux 0x678b3b1b phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67909ead netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x67955583 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x679763a4 input_reset_device -EXPORT_SYMBOL vmlinux 0x6799e910 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x679fec82 tcp_seq_next EXPORT_SYMBOL vmlinux 0x67b44e28 kill_fasync -EXPORT_SYMBOL vmlinux 0x67b59308 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x67b68c7f ipv4_specific EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bd91dd udp_pre_connect -EXPORT_SYMBOL vmlinux 0x67c889bf netpoll_setup +EXPORT_SYMBOL vmlinux 0x67bedc3a build_skb EXPORT_SYMBOL vmlinux 0x67cc86c4 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x67d96967 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x67e848aa netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x67ef789c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x67e63c2b eth_gro_complete EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0x6810c740 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x6821d443 mmc_start_request EXPORT_SYMBOL vmlinux 0x68310bf1 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x6831bccc input_set_timestamp EXPORT_SYMBOL vmlinux 0x683a552f phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x684c9b47 inet_protos +EXPORT_SYMBOL vmlinux 0x683f11bd tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace -EXPORT_SYMBOL vmlinux 0x6866f2f7 proto_register EXPORT_SYMBOL vmlinux 0x686818bb down_read EXPORT_SYMBOL vmlinux 0x686c2ff5 rproc_add_subdev EXPORT_SYMBOL vmlinux 0x6870d913 generic_shutdown_super @@ -8296,132 +8286,125 @@ EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor EXPORT_SYMBOL vmlinux 0x68ae54d4 fifo_set_limit EXPORT_SYMBOL vmlinux 0x68db4e33 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x6901a8a8 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size EXPORT_SYMBOL vmlinux 0x693542cd locks_remove_posix EXPORT_SYMBOL vmlinux 0x693bb218 rtas -EXPORT_SYMBOL vmlinux 0x693c1f71 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x6942a6ec netpoll_setup EXPORT_SYMBOL vmlinux 0x694b61ec wait_for_completion_state EXPORT_SYMBOL vmlinux 0x695530f1 dma_async_device_register EXPORT_SYMBOL vmlinux 0x696071b3 mtree_load EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x69690c28 inet6_bind EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad EXPORT_SYMBOL vmlinux 0x698a31c8 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x69a58495 proc_create -EXPORT_SYMBOL vmlinux 0x69af1b86 sk_stream_error EXPORT_SYMBOL vmlinux 0x69b57af9 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x69d57f42 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x69dc036c tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x69da2f6c sk_stream_error EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69fb60a2 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x69f4c8ff seg6_push_hmac EXPORT_SYMBOL vmlinux 0x69fea2d2 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0645c1 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x6a29f886 input_register_handler +EXPORT_SYMBOL vmlinux 0x6a2fa993 dev_get_by_index EXPORT_SYMBOL vmlinux 0x6a3268b2 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x6a33e9d5 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x6a3b09f2 proto_register EXPORT_SYMBOL vmlinux 0x6a4631ff ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x6a52c184 free_netdev EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ec5b0 inode_permission EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 EXPORT_SYMBOL vmlinux 0x6a82d8f8 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x6a948e35 sock_rfree EXPORT_SYMBOL vmlinux 0x6a9a9e4f override_creds +EXPORT_SYMBOL vmlinux 0x6a9d5bc8 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x6a9eb357 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x6a9ee870 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x6aac7ce7 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x6abfd7de __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x6ac10009 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x6ad9d64b xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x6add3f38 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq EXPORT_SYMBOL vmlinux 0x6ae126a0 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x6aeccdac netdev_alert EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6aefeb6c __bio_advance EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user EXPORT_SYMBOL vmlinux 0x6b16ee70 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x6b2b07bc inet_frag_find +EXPORT_SYMBOL vmlinux 0x6b2271c2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x6b22ba7c netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack EXPORT_SYMBOL vmlinux 0x6b3b4e53 input_copy_abs -EXPORT_SYMBOL vmlinux 0x6b3bc547 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x6b555672 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5bef31 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x6b6457b0 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x6b73d115 tty_unregister_device EXPORT_SYMBOL vmlinux 0x6b8207b4 agp_generic_free_gatt_table EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9d2b8a ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb8a03 ip_setsockopt EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible EXPORT_SYMBOL vmlinux 0x6bf0f26d trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x6bf49262 _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0x6bfcae5c grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6bfd5357 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x6c098a65 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x6c11178b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x6c173051 sock_set_mark EXPORT_SYMBOL vmlinux 0x6c2184e0 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x6c23ec33 skb_trim -EXPORT_SYMBOL vmlinux 0x6c2889d5 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x6c4f2b27 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x6c406e1a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x6c609a88 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6509f4 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x6c7145d8 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x6c6f45aa netlink_ack EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6ca3ed40 netlink_net_capable EXPORT_SYMBOL vmlinux 0x6ca43c40 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cb8dc04 xp_can_alloc EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep EXPORT_SYMBOL vmlinux 0x6cca485c pcibus_to_node EXPORT_SYMBOL vmlinux 0x6cd564ff vio_get_attribute EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d064278 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x6d0b8771 genl_register_family +EXPORT_SYMBOL vmlinux 0x6cfb67ca build_skb_around EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2a5e3a tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x6d33d846 pci_release_resource EXPORT_SYMBOL vmlinux 0x6d3be2db flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x6d3c70b2 audit_log EXPORT_SYMBOL vmlinux 0x6d40eee6 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes EXPORT_SYMBOL vmlinux 0x6d664bfc set_create_files_as EXPORT_SYMBOL vmlinux 0x6d67da69 d_splice_alias EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut EXPORT_SYMBOL vmlinux 0x6d9a5e33 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x6d9b3fa0 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x6da19552 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x6db0d8ca pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x6db7d826 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dbc265b sock_no_linger EXPORT_SYMBOL vmlinux 0x6dc65b6e of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x6dc7504d scsi_dma_map -EXPORT_SYMBOL vmlinux 0x6dca7e1f udp_seq_ops EXPORT_SYMBOL vmlinux 0x6dcb5c02 dev_uc_del EXPORT_SYMBOL vmlinux 0x6dcc993a fs_param_is_fd EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddf6188 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x6deea445 drop_nlink EXPORT_SYMBOL vmlinux 0x6def5309 phy_attached_print EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e2181ac inet6_add_offload -EXPORT_SYMBOL vmlinux 0x6e261a12 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x6e30f71d tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x6e31ee17 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x6e471b16 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x6e50a270 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x6e231b36 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6e243126 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x6e3144a8 km_new_mapping +EXPORT_SYMBOL vmlinux 0x6e58b37d neigh_carrier_down EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5ee985 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72533a sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x6e7c7470 km_policy_notify +EXPORT_SYMBOL vmlinux 0x6e8feb03 __alloc_skb EXPORT_SYMBOL vmlinux 0x6e90de8f of_get_mac_address EXPORT_SYMBOL vmlinux 0x6e9a11b9 trace_event_printf -EXPORT_SYMBOL vmlinux 0x6e9a1f6b xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig EXPORT_SYMBOL vmlinux 0x6eafa9f8 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x6eb2f296 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x6ec7c364 wireless_send_event EXPORT_SYMBOL vmlinux 0x6ee229bf mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x6ee8ce04 lookup_one_len_unlocked @@ -8430,102 +8413,107 @@ EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock +EXPORT_SYMBOL vmlinux 0x6f1c9cd9 sock_kmalloc EXPORT_SYMBOL vmlinux 0x6f32c389 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x6f4a0261 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r EXPORT_SYMBOL vmlinux 0x6f878400 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x6f9c9d0d udp6_set_csum -EXPORT_SYMBOL vmlinux 0x6fa046cc phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x6fa4f735 vfs_create +EXPORT_SYMBOL vmlinux 0x6fa698c8 tcp_ioctl EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fb9bf81 is_nd_dax +EXPORT_SYMBOL vmlinux 0x6fc06b92 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fe072ea unix_attach_fds -EXPORT_SYMBOL vmlinux 0x6ff1badb tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x6ff67c23 rt6_lookup EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x70054a5c block_write_end -EXPORT_SYMBOL vmlinux 0x70095625 pskb_extract +EXPORT_SYMBOL vmlinux 0x70119c7d xfrm_lookup +EXPORT_SYMBOL vmlinux 0x7025782b phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x703f4a4d netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set +EXPORT_SYMBOL vmlinux 0x70526dc3 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706b6089 phy_config_aneg EXPORT_SYMBOL vmlinux 0x707441b8 fput +EXPORT_SYMBOL vmlinux 0x7086e2ba tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7089e22d netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x709ad8c5 param_set_long -EXPORT_SYMBOL vmlinux 0x709f0866 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x70a3642f tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x70bbc452 agp_generic_alloc_pages EXPORT_SYMBOL vmlinux 0x70c9d782 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x70cca85e sk_mc_loop -EXPORT_SYMBOL vmlinux 0x70d71a39 neigh_update -EXPORT_SYMBOL vmlinux 0x70ee6487 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x71003481 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x70d77d8c __skb_recv_udp EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x710f26db nlmsg_notify EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x7139d1bf skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x7140898b mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x7144c6be nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x71419ec9 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x7147af5e d_instantiate EXPORT_SYMBOL vmlinux 0x714a1b6c flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x716075e4 sock_no_socketpair EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7172b609 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x717699aa copy_string_kernel EXPORT_SYMBOL vmlinux 0x717f70b4 do_splice_direct -EXPORT_SYMBOL vmlinux 0x71853dcc netif_tx_lock +EXPORT_SYMBOL vmlinux 0x719f15d6 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c7b947 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x71c82b73 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x71ced673 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x71da1a65 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x71e742b8 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x71ef4ebe __register_chrdev +EXPORT_SYMBOL vmlinux 0x71f99b15 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x71fbf828 netif_device_detach EXPORT_SYMBOL vmlinux 0x71fd5367 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x71fd7fe0 __register_nls EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev EXPORT_SYMBOL vmlinux 0x72159768 mtree_alloc_rrange -EXPORT_SYMBOL vmlinux 0x7217ea56 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x7224994f md_finish_reshape +EXPORT_SYMBOL vmlinux 0x723b28b7 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x723df133 simple_release_fs EXPORT_SYMBOL vmlinux 0x72474746 tty_port_close_end EXPORT_SYMBOL vmlinux 0x7252ddfe vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x72599e25 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x7259da57 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush EXPORT_SYMBOL vmlinux 0x7265d170 folio_write_one -EXPORT_SYMBOL vmlinux 0x726bb2b7 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x726a8b34 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x727b0bd6 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x7293341f bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable EXPORT_SYMBOL vmlinux 0x72b030ed copy_page_to_iter EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72ba0248 skb_copy EXPORT_SYMBOL vmlinux 0x72bbbaf1 param_ops_ushort EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 EXPORT_SYMBOL vmlinux 0x72d06afd pci_claim_resource EXPORT_SYMBOL vmlinux 0x72ddcf16 mmc_add_host +EXPORT_SYMBOL vmlinux 0x72e5f75e skb_push EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72eeb9cb __put_user_ns -EXPORT_SYMBOL vmlinux 0x72fa405a sock_create_lite EXPORT_SYMBOL vmlinux 0x72fdb2b4 framebuffer_alloc EXPORT_SYMBOL vmlinux 0x72fe1856 would_dump +EXPORT_SYMBOL vmlinux 0x730ba92e sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible EXPORT_SYMBOL vmlinux 0x7312b55d twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x73156327 sock_i_uid EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x73254f91 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x7324159e dst_dev_put EXPORT_SYMBOL vmlinux 0x732dd326 groups_free EXPORT_SYMBOL vmlinux 0x73329d76 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x735a9967 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x73634c2e xfrm_register_type EXPORT_SYMBOL vmlinux 0x73707ae2 is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x73783415 mdio_driver_register EXPORT_SYMBOL vmlinux 0x7380dffa argv_split EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739aa926 napi_build_skb EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a97d57 kernel_connect EXPORT_SYMBOL vmlinux 0x73a9f4c3 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b9e08b xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x73ade8b5 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x73b6a7c5 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x73baeaea sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x73c19f87 skb_checksum_help EXPORT_SYMBOL vmlinux 0x73cb30a2 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x73d3ba4f __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x73ef31df security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x74066ba4 seq_putc EXPORT_SYMBOL vmlinux 0x7407ce6e flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace @@ -8537,17 +8525,19 @@ EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup EXPORT_SYMBOL vmlinux 0x7448af3b ps2_init +EXPORT_SYMBOL vmlinux 0x7449ccfa register_netdev +EXPORT_SYMBOL vmlinux 0x744d0c3d phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x74528e9b copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74568320 inet_getname +EXPORT_SYMBOL vmlinux 0x746a51c8 __neigh_event_send EXPORT_SYMBOL vmlinux 0x746b1ec0 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x74739e87 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x747b40fb dev_remove_offload EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present EXPORT_SYMBOL vmlinux 0x7485d583 setattr_prepare EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x74a07287 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x749824b7 xp_free EXPORT_SYMBOL vmlinux 0x74a08af1 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x74a3738f peernet2id -EXPORT_SYMBOL vmlinux 0x74b24051 skb_pull EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 EXPORT_SYMBOL vmlinux 0x74dca356 sb_set_blocksize @@ -8556,26 +8546,28 @@ EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask EXPORT_SYMBOL vmlinux 0x7502675d jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x7508aa44 rtnl_unicast EXPORT_SYMBOL vmlinux 0x7510c895 update_region -EXPORT_SYMBOL vmlinux 0x7511e868 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x7538b132 agp_off EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x75669e2e ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x7578edfc get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0x7591a624 unlock_new_inode EXPORT_SYMBOL vmlinux 0x75a5ac90 of_find_property EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start -EXPORT_SYMBOL vmlinux 0x75b5ef94 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x75b83307 scsi_done EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cab479 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d5d1f5 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x75e63f09 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x75f583fb udp6_set_csum +EXPORT_SYMBOL vmlinux 0x75f7ff76 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x75fb4d64 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x75fbba59 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x76039f3c rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x7615a650 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x76175881 slab_build_skb EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7619916e jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired @@ -8586,53 +8578,50 @@ EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow EXPORT_SYMBOL vmlinux 0x76899e69 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0x7694e02a sock_efree EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check EXPORT_SYMBOL vmlinux 0x76ad605d __block_write_begin -EXPORT_SYMBOL vmlinux 0x76c875d4 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0x76d2f4fa rproc_del EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode EXPORT_SYMBOL vmlinux 0x76eda258 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x76ef53af phy_write_mmd EXPORT_SYMBOL vmlinux 0x76f96ce0 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x7710af3c skb_clone_sk +EXPORT_SYMBOL vmlinux 0x770f6d90 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x7711205c blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x771ad708 md_handle_request +EXPORT_SYMBOL vmlinux 0x7721bca7 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write -EXPORT_SYMBOL vmlinux 0x77269b84 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773aee26 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x773cfd2d sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x7747182e gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x77575f05 clocksource_unregister EXPORT_SYMBOL vmlinux 0x7786740a param_ops_string EXPORT_SYMBOL vmlinux 0x778e6bbc validate_slab_cache -EXPORT_SYMBOL vmlinux 0x77aa0647 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e45964 pid_task EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77edcbae tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x77f657be mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x78138c93 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0x78179328 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x7818d04a pnv_cxl_get_irq_count EXPORT_SYMBOL vmlinux 0x78220f78 of_graph_get_endpoint_count EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x782acfae mmc_command_done EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7850e7f4 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x78528604 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x786c465a security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x7874a00c lease_get_mtime EXPORT_SYMBOL vmlinux 0x7883f1bf blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0x78851d2f _outsb EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a90458 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78faa368 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x79044a9a vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x79073fe3 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x790a6f53 fs_param_is_string @@ -8642,31 +8631,31 @@ EXPORT_SYMBOL vmlinux 0x7921baec mmc_can_erase EXPORT_SYMBOL vmlinux 0x7932743a devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x794026ae tty_vhangup -EXPORT_SYMBOL vmlinux 0x795e3a9b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x794d97d3 __ip_options_compile EXPORT_SYMBOL vmlinux 0x79645c8d __free_pages EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x798eb6ce cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x79951876 phy_get_pause EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a7a2eb dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x79b1fed1 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x79b98512 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x79c0343c ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x79c046b4 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x79c42f4d security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x79c54bde seq_read EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0x79f00cd9 scmd_printk -EXPORT_SYMBOL vmlinux 0x7a00d286 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a1dab85 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x7a20b52f logfc EXPORT_SYMBOL vmlinux 0x7a2881eb dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a3276fa tcp_seq_next EXPORT_SYMBOL vmlinux 0x7a4c6a80 migrate_vma_setup EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5e2a32 skb_condense EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node +EXPORT_SYMBOL vmlinux 0x7a82d911 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x7a832df4 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x7a840289 scsi_target_resume EXPORT_SYMBOL vmlinux 0x7a872db9 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x7a8da822 of_get_compatible_child @@ -8674,23 +8663,24 @@ EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns +EXPORT_SYMBOL vmlinux 0x7ab76a04 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7ad69db4 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7b035b4a reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x7b1013a1 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x7b1944a1 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x7b286ebf t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x7b29ab6a skb_orphan_partial EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b4dfcf7 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x7b57b1ab udp6_csum_init EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5d79f1 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x7b605222 padata_do_serial +EXPORT_SYMBOL vmlinux 0x7b6541e9 fqdir_exit +EXPORT_SYMBOL vmlinux 0x7b668ccb netdev_notice +EXPORT_SYMBOL vmlinux 0x7b7822e0 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x7b8a8d65 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x7b9c5809 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x7ba3714a dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x7ba813c5 __wake_up EXPORT_SYMBOL vmlinux 0x7bab6143 __alloc_pages @@ -8701,7 +8691,6 @@ EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x7bebc5d5 proc_set_user EXPORT_SYMBOL vmlinux 0x7bf7034f __scsi_add_device -EXPORT_SYMBOL vmlinux 0x7bf97034 inet_register_protosw EXPORT_SYMBOL vmlinux 0x7bfaf755 kill_block_super EXPORT_SYMBOL vmlinux 0x7bfdf789 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x7bff044c dm_register_target @@ -8713,10 +8702,10 @@ EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert EXPORT_SYMBOL vmlinux 0x7c673461 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x7c72db5b get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x7ca3c9b4 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x7c74dcb3 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7c75300c blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x7ca66af9 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x7cbfbd9d kern_path_create -EXPORT_SYMBOL vmlinux 0x7cd3e8aa xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc @@ -8724,110 +8713,95 @@ EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cf7921f posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7cfe3997 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x7d00b957 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d2bf2a2 unix_detach_fds EXPORT_SYMBOL vmlinux 0x7d3a4fb3 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x7d41d36f inet6_release EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d7285f9 inet_add_protocol EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0x7d9d44ac kobject_init EXPORT_SYMBOL vmlinux 0x7da473f7 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x7da5c886 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x7da8f93b xor_altivec_2 EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dbea731 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x7db12dea inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max EXPORT_SYMBOL vmlinux 0x7dd8d1be jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x7dd952f9 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7de6edd5 km_report EXPORT_SYMBOL vmlinux 0x7deb17f6 devm_arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0x7dfb9f94 softnet_data EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e0ebcfa netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x7e1183b1 config_group_init -EXPORT_SYMBOL vmlinux 0x7e13eb63 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x7e168e64 _copy_from_iter EXPORT_SYMBOL vmlinux 0x7e22aeaa try_module_get -EXPORT_SYMBOL vmlinux 0x7e2a04ad netlink_ack -EXPORT_SYMBOL vmlinux 0x7e2d5ef8 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free -EXPORT_SYMBOL vmlinux 0x7e2d9da9 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x7e2dea7a xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3a8b2e sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x7e4b00c2 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x7e4c149a sock_init_data EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize +EXPORT_SYMBOL vmlinux 0x7e7a1c36 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x7e9844a6 inet_select_addr EXPORT_SYMBOL vmlinux 0x7ea47832 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x7ec121cf of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x7ee59807 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x7ed7decc dev_get_mac_address EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7efa92d7 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x7efb259e hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x7efb817c iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f07b0d0 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x7f08c07c vfs_mkobj -EXPORT_SYMBOL vmlinux 0x7f20c696 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs EXPORT_SYMBOL vmlinux 0x7f29b6a2 radix__local_flush_tlb_page EXPORT_SYMBOL vmlinux 0x7f33293d __put_cred -EXPORT_SYMBOL vmlinux 0x7f4d07f2 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7f40a4a3 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x7f4d1093 vif_device_init EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5a838c mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x7f5fe7e7 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free EXPORT_SYMBOL vmlinux 0x7f68b98a pps_unregister_source -EXPORT_SYMBOL vmlinux 0x7f6d04b7 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load -EXPORT_SYMBOL vmlinux 0x7f7ee165 km_policy_notify EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable EXPORT_SYMBOL vmlinux 0x7f9078f8 get_watch_queue EXPORT_SYMBOL vmlinux 0x7fbd76c5 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x7fc0ec34 sock_no_bind EXPORT_SYMBOL vmlinux 0x7fccabd3 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x7fcf0729 dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x7fe30d40 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fec0985 security_sk_clone -EXPORT_SYMBOL vmlinux 0x8015d00b inet_stream_connect +EXPORT_SYMBOL vmlinux 0x800e2673 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x8018a0f4 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x8021c7fb pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x802888aa ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8056bb9d elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x807a2932 __sock_create +EXPORT_SYMBOL vmlinux 0x807da0d8 dev_deactivate EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq EXPORT_SYMBOL vmlinux 0x80858a3a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x808d69c1 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x808f8c95 pci_choose_state +EXPORT_SYMBOL vmlinux 0x8095b652 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809dc96d call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x80be69b3 pcie_get_readrq EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80dfa190 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80eca15f dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x80ee00bf tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x80f30f4b pci_clear_mwi EXPORT_SYMBOL vmlinux 0x810b6bdb pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811c6983 skb_queue_head EXPORT_SYMBOL vmlinux 0x8124378d jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x81261c6b xfrm6_rcv EXPORT_SYMBOL vmlinux 0x81296686 dentry_create EXPORT_SYMBOL vmlinux 0x8143fa6c pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x814d366b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x814c129f netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x81682ea7 ping_prot EXPORT_SYMBOL vmlinux 0x816c5d2c pci_clear_master -EXPORT_SYMBOL vmlinux 0x8170c988 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x81799fc3 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x817c583e device_match_acpi_handle EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc @@ -8840,80 +8814,87 @@ EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand EXPORT_SYMBOL vmlinux 0x81b4cb99 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81c14f18 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x81c7724a ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x81c98bde dma_resv_init EXPORT_SYMBOL vmlinux 0x81ca776d buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0x81d4ae36 tcp_make_synack EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81fa36dc kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x8210bcc3 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end EXPORT_SYMBOL vmlinux 0x82476ca8 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x82531bb2 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0x82596f50 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x82606a23 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x826c4a21 vfs_symlink +EXPORT_SYMBOL vmlinux 0x82778acf tcp_child_process EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82c89622 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x82e2084b xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x82e6dc11 vio_unregister_device EXPORT_SYMBOL vmlinux 0x82e9c86c of_find_node_by_name EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82fd6d1f sk_alloc EXPORT_SYMBOL vmlinux 0x8306a484 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x8322548c skb_unlink EXPORT_SYMBOL vmlinux 0x834379d1 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock EXPORT_SYMBOL vmlinux 0x8349059e is_bad_inode EXPORT_SYMBOL vmlinux 0x83517be8 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8359e39e xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x8361a74c mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0x8363b432 genphy_loopback EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83afc5ec mr_dump EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x83ece8bb neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x83f66c83 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x840500f9 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x84152f45 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x8419d712 __netif_rx +EXPORT_SYMBOL vmlinux 0x841a5f79 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x842ab244 file_path EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 EXPORT_SYMBOL vmlinux 0x842f84aa blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x843210a2 netlink_unicast EXPORT_SYMBOL vmlinux 0x844013ff crypto_sha512_update EXPORT_SYMBOL vmlinux 0x844b5fb2 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x84574c80 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x84594282 bioset_exit -EXPORT_SYMBOL vmlinux 0x847672bc fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x84687ac3 sock_edemux EXPORT_SYMBOL vmlinux 0x8478928e vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 EXPORT_SYMBOL vmlinux 0x848d9f1b __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x849c769a xfrm_state_update EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node EXPORT_SYMBOL vmlinux 0x84b56d2a flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock EXPORT_SYMBOL vmlinux 0x84bdaeeb md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x84be8f91 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x84d3ce28 pci_disable_msix EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0x84fa823d agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x84fece3b blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x85028c5d netif_schedule_queue EXPORT_SYMBOL vmlinux 0x851db783 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range EXPORT_SYMBOL vmlinux 0x853e461b pci_get_subsys -EXPORT_SYMBOL vmlinux 0x854ef215 ___pskb_trim EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857dbc77 arp_tbl +EXPORT_SYMBOL vmlinux 0x856df6c2 sock_wake_async +EXPORT_SYMBOL vmlinux 0x857fdcab param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x8586798c seq_file_path EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85a74ed4 tcp_init_sock EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bcd19c md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c27dd7 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e117c3 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x85ea6695 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x85eef7fb find_inode_rcu EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node EXPORT_SYMBOL vmlinux 0x862cfd61 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x86514a1f ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x8654999a in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x863e27b6 neigh_direct_output EXPORT_SYMBOL vmlinux 0x865aa759 prepare_creds EXPORT_SYMBOL vmlinux 0x867c5319 __traceiter_dma_fence_emit EXPORT_SYMBOL vmlinux 0x8687dd53 seq_lseek @@ -8925,6 +8906,7 @@ EXPORT_SYMBOL vmlinux 0x86c59d13 pci_scan_root_bus EXPORT_SYMBOL vmlinux 0x86ca2d3d seq_read_iter EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d73b76 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x86da9517 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable @@ -8935,73 +8917,78 @@ EXPORT_SYMBOL vmlinux 0x8713e86f of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x87433843 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x874ea589 iptun_encaps -EXPORT_SYMBOL vmlinux 0x87515b4b ppp_register_channel EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq EXPORT_SYMBOL vmlinux 0x8759c575 rproc_report_crash EXPORT_SYMBOL vmlinux 0x875c2023 unlock_page EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8767c517 ip6_output +EXPORT_SYMBOL vmlinux 0x876a0566 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x87944493 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x87859af4 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x8798e884 udp_sendmsg EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a5ddab inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x87ad934f mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x87ae7169 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x87af8977 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x87b097b2 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x87b4ff2b inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x87e1940a __netif_schedule +EXPORT_SYMBOL vmlinux 0x87e81ce5 release_sock EXPORT_SYMBOL vmlinux 0x87f3833b nd_btt_version EXPORT_SYMBOL vmlinux 0x87f9cc36 param_get_short EXPORT_SYMBOL vmlinux 0x880dd2eb md_error EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x883699d0 sock_alloc_file EXPORT_SYMBOL vmlinux 0x883e4117 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x884b7beb netif_device_attach EXPORT_SYMBOL vmlinux 0x885d7f00 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888c2e09 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context EXPORT_SYMBOL vmlinux 0x88b718fe cfb_fillrect -EXPORT_SYMBOL vmlinux 0x88bfc918 mr_dump +EXPORT_SYMBOL vmlinux 0x88c6a50a mr_table_dump EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88dfcce5 init_pseudo EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x890093c0 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x891d1e23 mark_page_accessed EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order EXPORT_SYMBOL vmlinux 0x892ae76a flush_signals -EXPORT_SYMBOL vmlinux 0x893e5526 sock_rfree EXPORT_SYMBOL vmlinux 0x8952afc9 seq_open_private EXPORT_SYMBOL vmlinux 0x89544a27 finish_no_open EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x8959a63e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x895cc492 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x8989d749 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x898cc82f skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x899784d8 simple_fill_super EXPORT_SYMBOL vmlinux 0x899a42dc call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x89ad9c8b netif_carrier_on +EXPORT_SYMBOL vmlinux 0x89a323f0 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x89a88998 alloc_fddidev EXPORT_SYMBOL vmlinux 0x89ba9764 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x89d5567e netif_device_detach +EXPORT_SYMBOL vmlinux 0x89c9da5a xfrm_state_update EXPORT_SYMBOL vmlinux 0x89f0cd32 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x89f4dcde input_free_device EXPORT_SYMBOL vmlinux 0x8a12e5b8 proc_mkdir -EXPORT_SYMBOL vmlinux 0x8a23bdf2 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x8a255bb5 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8a34d582 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x8a409d20 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x8a3d56e2 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4cd7dc nf_getsockopt EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index EXPORT_SYMBOL vmlinux 0x8a64eb83 rw_verify_area EXPORT_SYMBOL vmlinux 0x8a69c5cf dm_kobject_release EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a763d5e iov_iter_discard EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8c4095 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x8a8ce1e1 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8a9ffd95 disk_stack_limits EXPORT_SYMBOL vmlinux 0x8aa24284 _dev_notice -EXPORT_SYMBOL vmlinux 0x8ab885b0 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback @@ -9012,54 +8999,49 @@ EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b1f2f34 dquot_quota_on EXPORT_SYMBOL vmlinux 0x8b201438 rio_query_mport -EXPORT_SYMBOL vmlinux 0x8b31e219 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x8b400c7f seq_bprintf EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b93375d xp_raw_get_data EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal EXPORT_SYMBOL vmlinux 0x8ba552ac input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x8ba9ad05 vc_cons +EXPORT_SYMBOL vmlinux 0x8bc96b0f netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bfa8002 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x8bf371e8 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x8c08d3d7 __fs_parse EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound EXPORT_SYMBOL vmlinux 0x8c3b195d blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x8c3d6bb6 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x8c52705a netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x8c6b43e3 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8c6bcbf9 sk_reset_timer EXPORT_SYMBOL vmlinux 0x8c6d562f phy_detach -EXPORT_SYMBOL vmlinux 0x8c70aaa3 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep EXPORT_SYMBOL vmlinux 0x8cd4d8bc posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x8ce28d93 genlmsg_put +EXPORT_SYMBOL vmlinux 0x8ce038d2 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x8ce320e7 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0x8d04be36 agp_create_memory EXPORT_SYMBOL vmlinux 0x8d0a857e filemap_get_folios -EXPORT_SYMBOL vmlinux 0x8d173a1d sock_bindtoindex EXPORT_SYMBOL vmlinux 0x8d263808 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6363a3 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x8d673d7d dcache_readdir EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d755b09 fb_validate_mode EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0x8d7a36fe dquot_destroy EXPORT_SYMBOL vmlinux 0x8d8316e8 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x8d904b71 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x8d96136a flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x8d9b41a7 sockfd_lookup EXPORT_SYMBOL vmlinux 0x8d9c60b0 simple_setattr EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x8da568ac sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x8db2e993 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x8dc22f1c __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x8ddd7b43 devm_iounmap EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum @@ -9067,14 +9049,19 @@ EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8e024080 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x8e0729dc blk_execute_rq -EXPORT_SYMBOL vmlinux 0x8e311389 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x8e305737 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e47e318 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e534e57 skb_expand_head EXPORT_SYMBOL vmlinux 0x8e54ff85 discard_new_inode EXPORT_SYMBOL vmlinux 0x8e718966 vme_slot_num EXPORT_SYMBOL vmlinux 0x8e74fdbe nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x8e76acf7 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8eaa9ca4 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x8eb47ab3 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x8eb4c973 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0x8ecd584a iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x8ed904f2 send_sig_mceerr @@ -9082,47 +9069,51 @@ EXPORT_SYMBOL vmlinux 0x8ef46caf of_device_unregister EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask EXPORT_SYMBOL vmlinux 0x8f376b03 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x8f3862ce sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x8f408161 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x8f4838c9 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x8f51cd14 sk_dst_check EXPORT_SYMBOL vmlinux 0x8f58f9ec genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x8f6888b5 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x8f6c65ed super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x8f86c399 arp_create +EXPORT_SYMBOL vmlinux 0x8f7c886c xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x8f81afeb neigh_destroy EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fb33596 udp_seq_ops EXPORT_SYMBOL vmlinux 0x8fcf1b52 start_tty -EXPORT_SYMBOL vmlinux 0x8fdd2caf kernel_bind +EXPORT_SYMBOL vmlinux 0x8fdc69c3 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x8ff7e9bb reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90000ca4 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90166048 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x901c32c0 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x9022de58 timestamp_truncate EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x90282410 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x902e9182 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x903292dd serio_close EXPORT_SYMBOL vmlinux 0x9034d4cd of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x903a8a7a tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x9046acda input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user EXPORT_SYMBOL vmlinux 0x9061fa84 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x90623f5e kernel_sendpage EXPORT_SYMBOL vmlinux 0x90816d4f mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x908b1d6a mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x908c609a seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x908c9f28 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x909810f0 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x9099f8cc tcp_filter +EXPORT_SYMBOL vmlinux 0x909f4c98 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x90a86a0e tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x90afec19 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90b8e5c7 inet_frags_fini EXPORT_SYMBOL vmlinux 0x90c80456 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x90c80d56 iterate_supers_type EXPORT_SYMBOL vmlinux 0x90d4acdf xattr_full_name EXPORT_SYMBOL vmlinux 0x90f269b8 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x90feba12 vga_con -EXPORT_SYMBOL vmlinux 0x910a09db tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x910e8d35 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x91247d04 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x91100654 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x9129b609 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x912d3f15 pci_dev_get -EXPORT_SYMBOL vmlinux 0x9130ed1f ipv6_dev_find EXPORT_SYMBOL vmlinux 0x91397db7 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x914f1be7 proc_symlink EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec @@ -9132,80 +9123,82 @@ EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue EXPORT_SYMBOL vmlinux 0x916758a3 node_states EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x9184fbba tcf_idr_search +EXPORT_SYMBOL vmlinux 0x9187d832 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a7f74f send_sig +EXPORT_SYMBOL vmlinux 0x91df89b4 ip6_xmit EXPORT_SYMBOL vmlinux 0x91e27f39 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x91f10891 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync EXPORT_SYMBOL vmlinux 0x921888d2 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x9228c3d8 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x92350074 mdiobus_write -EXPORT_SYMBOL vmlinux 0x923948a2 km_state_expired EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9240ab56 skb_clone +EXPORT_SYMBOL vmlinux 0x9246354d inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion +EXPORT_SYMBOL vmlinux 0x92528cfb xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x92755028 i2c_clients_command EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9283171f ip6_xmit EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x929e4254 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x929ea69b request_firmware_nowait EXPORT_SYMBOL vmlinux 0x92a0708d put_watch_queue EXPORT_SYMBOL vmlinux 0x92a841c7 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x92b2f42e generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x92b3d81d tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x92b6c2c9 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c172ee dev_add_offload +EXPORT_SYMBOL vmlinux 0x92bb1b36 brioctl_set EXPORT_SYMBOL vmlinux 0x92c36f71 filp_open EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fe80c0 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93081583 tcp_time_wait EXPORT_SYMBOL vmlinux 0x931fc2cc scsi_device_get EXPORT_SYMBOL vmlinux 0x93244b1f page_pool_create -EXPORT_SYMBOL vmlinux 0x9336c464 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x9362120c dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9362e5c6 tcp_mmap EXPORT_SYMBOL vmlinux 0x9370cb9d jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x9372389f d_add_ci -EXPORT_SYMBOL vmlinux 0x937369d3 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x93767c02 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid EXPORT_SYMBOL vmlinux 0x938dc039 radix__local_flush_tlb_mm EXPORT_SYMBOL vmlinux 0x939faa34 __ps2_command EXPORT_SYMBOL vmlinux 0x93a14bd5 set_page_writeback EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a804ba sk_stop_timer EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x93bbb2bc percpu_counter_sum_all -EXPORT_SYMBOL vmlinux 0x93c1a2b7 sk_capable -EXPORT_SYMBOL vmlinux 0x93c29c6a skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x93c89a8b md_flush_request -EXPORT_SYMBOL vmlinux 0x93df6de7 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x93e1162a skb_free_datagram EXPORT_SYMBOL vmlinux 0x940d3a8f vm_map_ram -EXPORT_SYMBOL vmlinux 0x942356f9 datagram_poll +EXPORT_SYMBOL vmlinux 0x941cfea8 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x94366397 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr EXPORT_SYMBOL vmlinux 0x9479fc70 open_with_fake_path EXPORT_SYMBOL vmlinux 0x947fc2e8 _dev_alert -EXPORT_SYMBOL vmlinux 0x9488009f seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x948823a6 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x94882603 tcp_mmap EXPORT_SYMBOL vmlinux 0x9489da0a devm_clk_get +EXPORT_SYMBOL vmlinux 0x9492fb98 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x949ed727 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x94a68ac7 inet_frag_find EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c58fe6 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x94c892d8 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x94f4fb27 skb_clone_sk EXPORT_SYMBOL vmlinux 0x94fdba29 mpage_writepages EXPORT_SYMBOL vmlinux 0x95011168 alloc_pages EXPORT_SYMBOL vmlinux 0x950525bd pnv_pci_get_phb_node @@ -9217,26 +9210,22 @@ EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload EXPORT_SYMBOL vmlinux 0x955e8368 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0x9568fb23 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x956b0dd2 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x9571190a km_query EXPORT_SYMBOL vmlinux 0x9575f3ef dm_io EXPORT_SYMBOL vmlinux 0x9577a674 sg_miter_skip EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio -EXPORT_SYMBOL vmlinux 0x95cb5c9c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x95d096b2 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x95e46da6 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x95e85f37 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x95ffdd2b netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0x9602660d qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x960f6603 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x9611ce4e simple_transaction_set +EXPORT_SYMBOL vmlinux 0x9630f82d tcp_close EXPORT_SYMBOL vmlinux 0x9642a19f generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x964329f5 dma_find_channel -EXPORT_SYMBOL vmlinux 0x965039c7 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x96613d05 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x966f22cd tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x96705564 set_disk_ro EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x96894417 dev_driver_string -EXPORT_SYMBOL vmlinux 0x968f5dcf in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x968c36bc tcp_rcv_established EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0x96a125e4 param_ops_ulong @@ -9247,26 +9236,31 @@ EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96ccfdeb __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e70b27 inet6_register_protosw EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top EXPORT_SYMBOL vmlinux 0x97110f36 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars EXPORT_SYMBOL vmlinux 0x9720a2ca phy_connect EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size -EXPORT_SYMBOL vmlinux 0x974b0c27 ip_frag_init +EXPORT_SYMBOL vmlinux 0x97411de1 dev_open +EXPORT_SYMBOL vmlinux 0x97421780 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x974d0f22 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x97556620 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x9757b317 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x97586f21 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x97604792 bdi_register EXPORT_SYMBOL vmlinux 0x97710e58 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x9778f357 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat EXPORT_SYMBOL vmlinux 0x977f5ac7 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x97921b9d inet_offloads EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97a5b355 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x97ad350e jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x97adb052 neigh_event_ns EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97bd70bb empty_aops EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cbe2bd tcf_classify +EXPORT_SYMBOL vmlinux 0x97c684ee phy_do_ioctl EXPORT_SYMBOL vmlinux 0x97cc1718 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x97cdf156 mmc_retune_release EXPORT_SYMBOL vmlinux 0x97ce12fa pci_pme_active @@ -9277,154 +9271,146 @@ EXPORT_SYMBOL vmlinux 0x97fc144d max8925_bulk_read EXPORT_SYMBOL vmlinux 0x9814abc9 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x98168161 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x981d9189 tcf_block_get EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98430ec9 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x985330c9 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x98445bd3 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x98593954 sock_no_mmap EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set EXPORT_SYMBOL vmlinux 0x9862858e mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x988bbcb8 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x98a74e41 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x987066e6 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x987bad4d nf_ip_checksum EXPORT_SYMBOL vmlinux 0x98ab572a blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x98bcc28c security_path_unlink -EXPORT_SYMBOL vmlinux 0x98bf0a5f sock_wfree -EXPORT_SYMBOL vmlinux 0x98c2a43a napi_build_skb EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d6d320 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x98deadce __folio_lock EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x9900088f __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x98ec317c blk_start_plug EXPORT_SYMBOL vmlinux 0x99173207 decrementer_clockevent EXPORT_SYMBOL vmlinux 0x992c23c8 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x992e9879 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x992ccaee kernel_recvmsg EXPORT_SYMBOL vmlinux 0x9933f03a agp_bind_memory EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993cba4d security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x994afb84 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable EXPORT_SYMBOL vmlinux 0x9951d93b rtc_add_groups +EXPORT_SYMBOL vmlinux 0x99596793 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x9979c814 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x9980ee85 inet6_offloads -EXPORT_SYMBOL vmlinux 0x998788bf security_path_mknod EXPORT_SYMBOL vmlinux 0x999c0793 max8998_bulk_read EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x999f7e22 __kfree_skb EXPORT_SYMBOL vmlinux 0x99b74840 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x99c44a5f request_key_rcu EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e94dd6 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x99e2ef83 tso_build_hdr EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a110bdd genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x9a1d3e09 redraw_screen EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a21dbab netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x9a354c63 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x9a426305 always_delete_dentry EXPORT_SYMBOL vmlinux 0x9a4eda80 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x9a51c239 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x9a505469 nf_reinject EXPORT_SYMBOL vmlinux 0x9a52bcb8 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a5cb95f mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x9a673d6c sk_wait_data EXPORT_SYMBOL vmlinux 0x9a6b1227 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x9a87f87e ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x9a8da3f6 filemap_flush EXPORT_SYMBOL vmlinux 0x9a9020b3 file_ns_capable -EXPORT_SYMBOL vmlinux 0x9aa80c26 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x9a989b36 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aee4310 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x9afe8f4e d_mark_dontcache EXPORT_SYMBOL vmlinux 0x9b02aa03 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9b053182 dev_close EXPORT_SYMBOL vmlinux 0x9b09aafd blk_integrity_compare EXPORT_SYMBOL vmlinux 0x9b0b1c87 device_add_disk +EXPORT_SYMBOL vmlinux 0x9b0dd7fa ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x9b1a0048 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x9b1f6c4f netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc EXPORT_SYMBOL vmlinux 0x9b50b69d make_bad_inode -EXPORT_SYMBOL vmlinux 0x9b5fddb0 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x9b95d2f3 __alloc_skb EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be EXPORT_SYMBOL vmlinux 0x9bc7ebac d_set_d_op EXPORT_SYMBOL vmlinux 0x9bd36e84 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x9bdef7d7 dst_release EXPORT_SYMBOL vmlinux 0x9be1741f generic_file_fsync EXPORT_SYMBOL vmlinux 0x9bf6c158 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x9bff44e7 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x9c2cdcb1 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x9c3de173 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x9c2ae719 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x9c3cce97 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x9c575dfe fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c78d9cc skb_vlan_push EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c972fc9 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x9c99dda1 dev_remove_pack EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name EXPORT_SYMBOL vmlinux 0x9cb4745b rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x9cb6b523 bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x9cb7af8f tcp_shutdown EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd37301 register_netdev +EXPORT_SYMBOL vmlinux 0x9cdb70eb ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce4bb0b tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x9cea7cc8 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x9cf4c366 xfrm_init_state EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1ed8e7 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x9d2031a4 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x9d24b6c9 napi_gro_receive EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d3e301b find_vma_intersection +EXPORT_SYMBOL vmlinux 0x9d450a02 napi_gro_flush EXPORT_SYMBOL vmlinux 0x9d454517 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x9d50801f agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9d682ec2 __scm_send EXPORT_SYMBOL vmlinux 0x9d73d773 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x9d7d2ed5 tcp_disconnect EXPORT_SYMBOL vmlinux 0x9d7ea283 __serio_register_port -EXPORT_SYMBOL vmlinux 0x9d842dc8 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops -EXPORT_SYMBOL vmlinux 0x9da8e3d4 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x9dc69251 component_match_add_release EXPORT_SYMBOL vmlinux 0x9dc751d1 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy EXPORT_SYMBOL vmlinux 0x9dee7055 pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x9dfeeda9 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x9e06a627 nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle EXPORT_SYMBOL vmlinux 0x9e22c985 ww_mutex_lock EXPORT_SYMBOL vmlinux 0x9e22e2af dump_align -EXPORT_SYMBOL vmlinux 0x9e28726b seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x9e388e37 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x9e4d6286 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e571300 pci_find_resource EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e736291 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x9e743b21 pci_find_bus EXPORT_SYMBOL vmlinux 0x9e8089a4 stop_tty -EXPORT_SYMBOL vmlinux 0x9e8d6b4a dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea8a041 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec5ff10 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large +EXPORT_SYMBOL vmlinux 0x9ed53580 sk_common_release EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9ee58967 set_cached_acl EXPORT_SYMBOL vmlinux 0x9eea384a folio_mark_accessed -EXPORT_SYMBOL vmlinux 0x9eeca1fa tcp_prot -EXPORT_SYMBOL vmlinux 0x9f159c25 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x9f263401 inet_sendpage EXPORT_SYMBOL vmlinux 0x9f2be096 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x9f3b01ec xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5040d1 udp_gro_complete EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f52ff69 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5f8ef1 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x9f87b791 console_start EXPORT_SYMBOL vmlinux 0x9f88040b kthread_create_on_node EXPORT_SYMBOL vmlinux 0x9f9806d4 pcibios_bus_to_resource @@ -9433,21 +9419,21 @@ EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta EXPORT_SYMBOL vmlinux 0x9fbb5869 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x9fc96fb8 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa002aa7d md_reload_sb EXPORT_SYMBOL vmlinux 0xa0090b35 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xa01cbb2f sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01dbefb skb_pull_data EXPORT_SYMBOL vmlinux 0xa023c867 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03abad4 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa044309b inet_addr_type_table EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05ba7ff tcp_recv_skb EXPORT_SYMBOL vmlinux 0xa0614f89 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xa068a53e proc_create_single_data EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr @@ -9457,6 +9443,9 @@ EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bb65e0 __scm_destroy +EXPORT_SYMBOL vmlinux 0xa0c7b39a dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa0c83277 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xa0d0fd73 set_bh_page EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function @@ -9466,20 +9455,19 @@ EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa0fdc200 jbd2_journal_start EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1127ab3 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xa10c4084 security_path_rename +EXPORT_SYMBOL vmlinux 0xa11174fd tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0xa11cb052 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xa129236e dev_open EXPORT_SYMBOL vmlinux 0xa1538824 d_obtain_root -EXPORT_SYMBOL vmlinux 0xa1922432 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xa1cb1591 rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0xa1d5b702 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa1e31976 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init EXPORT_SYMBOL vmlinux 0xa1f5c3ff scsi_unblock_requests EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa212e594 udp_seq_start +EXPORT_SYMBOL vmlinux 0xa219a589 __netif_napi_del EXPORT_SYMBOL vmlinux 0xa21a274b vfs_get_link -EXPORT_SYMBOL vmlinux 0xa2256afb ip_route_input_noref EXPORT_SYMBOL vmlinux 0xa22a630c vm_insert_pages +EXPORT_SYMBOL vmlinux 0xa23537ea netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa2499592 of_get_mac_address_nvmem EXPORT_SYMBOL vmlinux 0xa24af2e7 d_find_alias @@ -9489,96 +9477,93 @@ EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xa266209e of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xa28a3e42 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xa275e153 inet6_del_protocol EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28e61a9 build_skb +EXPORT_SYMBOL vmlinux 0xa29014f9 xfrm_register_km EXPORT_SYMBOL vmlinux 0xa297ca98 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xa2a6d9f5 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register EXPORT_SYMBOL vmlinux 0xa2c49514 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xa2f42f21 sget +EXPORT_SYMBOL vmlinux 0xa3008d2e tcf_action_exec EXPORT_SYMBOL vmlinux 0xa3084869 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0xa3178e44 vmalloc_to_page EXPORT_SYMBOL vmlinux 0xa31c11ae configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xa3274729 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xa328fc3e follow_pfn EXPORT_SYMBOL vmlinux 0xa32ea1a8 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xa34d870b vlan_vid_del EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order -EXPORT_SYMBOL vmlinux 0xa37586e0 xfrm_init_replay EXPORT_SYMBOL vmlinux 0xa37d5abc __d_drop -EXPORT_SYMBOL vmlinux 0xa385a027 dev_change_flags +EXPORT_SYMBOL vmlinux 0xa38da60e dst_discard_out EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay EXPORT_SYMBOL vmlinux 0xa3be7dd8 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c0c93e ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xa3c0f796 input_close_device +EXPORT_SYMBOL vmlinux 0xa3c2dd83 netlink_set_err EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d07ee0 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0xa3d937f6 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0xa3dc868e folio_unlock EXPORT_SYMBOL vmlinux 0xa3e6bd58 vfs_readlink EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa4048627 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xa415d619 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xa4301e73 phy_stop -EXPORT_SYMBOL vmlinux 0xa4317247 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xa432a6d2 __folio_alloc -EXPORT_SYMBOL vmlinux 0xa43c377a sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xa446273d netdev_printk -EXPORT_SYMBOL vmlinux 0xa454180f phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xa463b1eb napi_get_frags EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc EXPORT_SYMBOL vmlinux 0xa49d5faa console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0xa4a05aa4 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep EXPORT_SYMBOL vmlinux 0xa4be810f lock_rename -EXPORT_SYMBOL vmlinux 0xa4c18191 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xa4c20d27 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xa4cc4059 km_policy_expired +EXPORT_SYMBOL vmlinux 0xa4d4289d iterate_fd EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush EXPORT_SYMBOL vmlinux 0xa51b2088 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xa52ea8a0 inode_io_list_del EXPORT_SYMBOL vmlinux 0xa53f14e0 unmap_mapping_range EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56a2b4f dcb_setapp -EXPORT_SYMBOL vmlinux 0xa571eee8 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xa58613aa udp_poll EXPORT_SYMBOL vmlinux 0xa58957b5 dma_pool_create -EXPORT_SYMBOL vmlinux 0xa590378c __scm_send EXPORT_SYMBOL vmlinux 0xa5907e71 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa5911558 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xa597475f mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0xa5991633 to_nd_btt -EXPORT_SYMBOL vmlinux 0xa5a3afc8 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xa5bacd27 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xa5d7e313 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0xa5e38d08 file_open_root EXPORT_SYMBOL vmlinux 0xa5e5b8e3 kill_pgrp -EXPORT_SYMBOL vmlinux 0xa5f2c83c xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6288554 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xa62c34f6 input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0xa62d9836 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xa633cdcb xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xa62d9d4d sock_no_connect +EXPORT_SYMBOL vmlinux 0xa6305391 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc +EXPORT_SYMBOL vmlinux 0xa6420765 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64931a6 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa655d1ab lock_sock_nested EXPORT_SYMBOL vmlinux 0xa6563dd1 devm_request_resource EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio EXPORT_SYMBOL vmlinux 0xa66753f8 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa6748972 sockopt_release_sock EXPORT_SYMBOL vmlinux 0xa67b5639 bdi_put EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68396a7 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xa6952de5 neigh_destroy +EXPORT_SYMBOL vmlinux 0xa698dd3c phy_request_interrupt EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xa6b1048d pci_reenable_device EXPORT_SYMBOL vmlinux 0xa6c5c797 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xa6e8985f xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa6cfaed3 sock_alloc +EXPORT_SYMBOL vmlinux 0xa6d29bdf xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xa6ebf300 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xa7167fea security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa6ee795c bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xa6fbdf0b skb_copy_header EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72c8ca4 netdev_reset_tc EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock EXPORT_SYMBOL vmlinux 0xa757789d phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xa76a0126 ip_output EXPORT_SYMBOL vmlinux 0xa772323c of_device_is_compatible EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier @@ -9586,62 +9571,68 @@ EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift EXPORT_SYMBOL vmlinux 0xa7a0aedb lease_modify +EXPORT_SYMBOL vmlinux 0xa7a2afb0 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xa7a6b257 devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0xa7b5633e input_open_device -EXPORT_SYMBOL vmlinux 0xa7d40402 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xa7dd61e7 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xa7e0cd4d skb_dump EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7fe2214 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xa82ab2b5 tcp_seq_start EXPORT_SYMBOL vmlinux 0xa82d137d kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xa83de9f7 skb_abort_seq_read 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 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa875558a dev_lstats_read EXPORT_SYMBOL vmlinux 0xa87f3570 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark EXPORT_SYMBOL vmlinux 0xa88c1b87 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa88e6bd2 __netif_schedule -EXPORT_SYMBOL vmlinux 0xa89d26bd __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xa8a54c4d nd_device_register +EXPORT_SYMBOL vmlinux 0xa8ab4e22 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xa8b7feda dm_table_event EXPORT_SYMBOL vmlinux 0xa8bf63ad pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d16d1a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa8e0a339 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xa8e3fbe9 input_event -EXPORT_SYMBOL vmlinux 0xa8f32478 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa907e108 scsi_scan_host EXPORT_SYMBOL vmlinux 0xa908c27e input_flush_device EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa92288fa gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xa925df9d i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0xa9299bf2 page_readlink EXPORT_SYMBOL vmlinux 0xa92b207c setup_new_exec +EXPORT_SYMBOL vmlinux 0xa9417ee7 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xa9437d41 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xa94d5812 put_disk -EXPORT_SYMBOL vmlinux 0xa9526a61 inet_ioctl -EXPORT_SYMBOL vmlinux 0xa9610cac dcb_getapp +EXPORT_SYMBOL vmlinux 0xa953bcd8 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa968a6da radix__flush_all_mm EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa97e2fe5 _atomic_dec_and_raw_lock -EXPORT_SYMBOL vmlinux 0xa98b17fd kernel_accept EXPORT_SYMBOL vmlinux 0xa98c04c6 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xa9a5755e blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa9bfc486 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xa9d374e1 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xa9af8e80 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free +EXPORT_SYMBOL vmlinux 0xa9e03553 neigh_for_each EXPORT_SYMBOL vmlinux 0xa9ef9e7c dma_resv_fini EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa248cc6 blk_rq_map_user_io EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xaa484fab skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xaa6199ce reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xaa637457 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0xaa69b2fd kmalloc_trace EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa878481 xp_alloc +EXPORT_SYMBOL vmlinux 0xaa87383e xfrm_register_type EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaa91524b mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range EXPORT_SYMBOL vmlinux 0xaa948a64 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xaa986564 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right @@ -9649,11 +9640,9 @@ EXPORT_SYMBOL vmlinux 0xaad46ff7 fb_set_cmap EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaada84ad inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xaadc2a56 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab13690f tcp_shutdown EXPORT_SYMBOL vmlinux 0xab23723f folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xab251f0f ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute EXPORT_SYMBOL vmlinux 0xab42072e blk_rq_map_user @@ -9666,81 +9655,77 @@ EXPORT_SYMBOL vmlinux 0xab7821cb unregister_nls EXPORT_SYMBOL vmlinux 0xab7838ea block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0xab83210c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xab892676 tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0xab92217e dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xaba12fa1 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xabb41cae skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabc3f2cd __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xabdcc8de skb_queue_purge -EXPORT_SYMBOL vmlinux 0xabe44e6d eth_type_trans EXPORT_SYMBOL vmlinux 0xabe8e033 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xabe9ee50 arp_create EXPORT_SYMBOL vmlinux 0xabf29a8d max8925_reg_write EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac0176cd eth_header EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac29233c kernel_accept EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac396bfe tcp_poll EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits -EXPORT_SYMBOL vmlinux 0xac4e1d41 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xac503263 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xac56abd9 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac771eb3 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xac7a832b dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xac988fca ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xaca04da1 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xac7b044d scm_fp_dup +EXPORT_SYMBOL vmlinux 0xac83795b phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xac87b894 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu EXPORT_SYMBOL vmlinux 0xacc861cf xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xacca9d50 phy_init_eee EXPORT_SYMBOL vmlinux 0xaccd1f67 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xacd48c56 netdev_state_change +EXPORT_SYMBOL vmlinux 0xaccd9140 xfrm_state_free EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacd84991 devfreq_resume_device EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xaced59fe neigh_direct_output EXPORT_SYMBOL vmlinux 0xacf16435 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xacff4cbc fb_set_suspend EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad10d024 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xad10fffc xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad2d49a7 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xad37ff3f mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0xad3b19a8 fs_context_for_mount EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad5330a3 tcp_read_skb EXPORT_SYMBOL vmlinux 0xad5c01c7 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xad6b2f74 dev_trans_start EXPORT_SYMBOL vmlinux 0xad7062cf iget5_locked EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad7d5246 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xad9b3cfe __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadbbb69d scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xadbbf4c8 pid_task EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc968bf tcp_init_sock EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed EXPORT_SYMBOL vmlinux 0xadd91282 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xade49a82 phy_init_eee EXPORT_SYMBOL vmlinux 0xadeaa37d locks_delete_block +EXPORT_SYMBOL vmlinux 0xadf6dfe3 nf_hook_slow EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae1e55c6 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xae261479 giveup_altivec +EXPORT_SYMBOL vmlinux 0xae2e5cbc tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae442aba blk_integrity_register -EXPORT_SYMBOL vmlinux 0xae44d5f1 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size EXPORT_SYMBOL vmlinux 0xae4fc6e1 param_ops_int EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0xae68dcab input_register_device -EXPORT_SYMBOL vmlinux 0xae6d7653 sk_net_capable +EXPORT_SYMBOL vmlinux 0xae6ec64d sock_gettstamp +EXPORT_SYMBOL vmlinux 0xae720a1d sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0xae790ac7 vfs_get_tree EXPORT_SYMBOL vmlinux 0xae7b5688 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xae8a4946 close_fd_get_file EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaec01a5e dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xaec243e6 dst_dev_put EXPORT_SYMBOL vmlinux 0xaec9eb13 cont_write_begin -EXPORT_SYMBOL vmlinux 0xaed1eec3 default_qdisc_ops EXPORT_SYMBOL vmlinux 0xaeed4fe5 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0xaeed6ff8 agp_generic_insert_memory EXPORT_SYMBOL vmlinux 0xaefd4835 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xaf151b41 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xaf110b07 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xaf158990 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0xaf171e5d of_find_device_by_node EXPORT_SYMBOL vmlinux 0xaf2b4169 get_tree_keyed @@ -9748,87 +9733,79 @@ EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf4a3ca4 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xaf59e5ee ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xaf5f1d17 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xaf8604ce fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xaf7ac20a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xaf7f2beb inet_frags_fini EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit EXPORT_SYMBOL vmlinux 0xafbf792b posix_acl_chmod EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafcc9836 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xafcdc295 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xafd2dce6 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xafde48fc qdisc_put EXPORT_SYMBOL vmlinux 0xafe6c899 mt_find +EXPORT_SYMBOL vmlinux 0xafee80d8 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xaffa84bd vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xb0090964 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xb00d42ab phy_do_ioctl EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb0234c5f mt_find_after +EXPORT_SYMBOL vmlinux 0xb031b062 unregister_netdev EXPORT_SYMBOL vmlinux 0xb03c29cc cdev_init +EXPORT_SYMBOL vmlinux 0xb048bb15 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb060ba08 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb074f004 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xb074fbae user_path_create EXPORT_SYMBOL vmlinux 0xb08cabbc dump_skip EXPORT_SYMBOL vmlinux 0xb0933871 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xb093f0b8 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xb0992f46 close_fd_get_file EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0b88f85 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xb0bd52ed tso_build_data EXPORT_SYMBOL vmlinux 0xb0bf6858 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xb0c2ea8a pci_dev_put EXPORT_SYMBOL vmlinux 0xb0d401d5 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xb0d4fb48 of_n_addr_cells EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0fbde43 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xb0fe4dd7 bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0xb10736bd dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xb10777dc tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xb107c874 inc_nlink -EXPORT_SYMBOL vmlinux 0xb1141d65 __netif_rx -EXPORT_SYMBOL vmlinux 0xb11d182a neigh_ifdown EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb11f8ce6 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb1416344 ihold EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset EXPORT_SYMBOL vmlinux 0xb148713a vme_master_request EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14dc353 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb150b384 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec EXPORT_SYMBOL vmlinux 0xb15d9dcc regset_get_alloc -EXPORT_SYMBOL vmlinux 0xb179ca2c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xb1738e20 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb178da5e skb_tx_error EXPORT_SYMBOL vmlinux 0xb180c850 agp_generic_destroy_page EXPORT_SYMBOL vmlinux 0xb189c45f jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0xb1abee06 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb1ac0f74 skb_checksum_setup EXPORT_SYMBOL vmlinux 0xb1bc75a2 mmc_alloc_host EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 EXPORT_SYMBOL vmlinux 0xb1d069d6 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t EXPORT_SYMBOL vmlinux 0xb1ee57ca component_match_add_typed -EXPORT_SYMBOL vmlinux 0xb1f90a32 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xb1ff98cf add_watch_to_object -EXPORT_SYMBOL vmlinux 0xb20e3dff km_report -EXPORT_SYMBOL vmlinux 0xb216014e skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xb21d120b tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xb2276f2f seg6_push_hmac EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb23bb401 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xb27764cc mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xb277725b tso_build_hdr EXPORT_SYMBOL vmlinux 0xb27bf005 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xb2815453 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb2a64a23 napi_schedule_prep EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xb2b00c06 nf_log_trace -EXPORT_SYMBOL vmlinux 0xb2b12d2c __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xb2d2c34b unregister_binfmt +EXPORT_SYMBOL vmlinux 0xb2d4beb6 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xb2e3f1a9 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xb2e5e67b kernel_listen EXPORT_SYMBOL vmlinux 0xb2ef70d6 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2fbab68 locks_lock_inode_wait @@ -9847,18 +9824,15 @@ EXPORT_SYMBOL vmlinux 0xb36bfad9 twl6040_get_pll EXPORT_SYMBOL vmlinux 0xb36d1e2c crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xb376d75d sk_ns_capable EXPORT_SYMBOL vmlinux 0xb3865be4 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xb394d401 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xb3b4bd80 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xb3bbd582 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xb39e246f dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xb3be5e00 kthread_create_worker -EXPORT_SYMBOL vmlinux 0xb3c5b6ef eth_header_parse EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb3e44bad xp_alloc_batch EXPORT_SYMBOL vmlinux 0xb3e485b1 qe_pin_request EXPORT_SYMBOL vmlinux 0xb3e55603 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xb3e98331 xfrm_input EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul @@ -9867,62 +9841,54 @@ EXPORT_SYMBOL vmlinux 0xb3fa0f89 input_inject_event EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4245d9c generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xb4287e60 release_sock +EXPORT_SYMBOL vmlinux 0xb427b9f7 inet_add_protocol EXPORT_SYMBOL vmlinux 0xb43c836a devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xb43dbf26 pnv_cxl_release_hwirqs EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free -EXPORT_SYMBOL vmlinux 0xb4461025 udp_set_csum EXPORT_SYMBOL vmlinux 0xb45b8210 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0xb46cda6d free_buffer_head EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get EXPORT_SYMBOL vmlinux 0xb476e9c3 devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0xb4792a21 scsi_add_device EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xb4847908 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xb484fb69 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48d674b tcp_close EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer EXPORT_SYMBOL vmlinux 0xb49b2c8b user_path_at_empty -EXPORT_SYMBOL vmlinux 0xb4a59b02 eth_gro_complete EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt EXPORT_SYMBOL vmlinux 0xb4aaeb63 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xb4b17144 blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xb4b1fb92 pci_bus_type -EXPORT_SYMBOL vmlinux 0xb4c78da2 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xb4cbaaed xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xb4e374f6 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xb4e93417 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xb4f13d2a abort EXPORT_SYMBOL vmlinux 0xb4f30e13 __invalidate_device EXPORT_SYMBOL vmlinux 0xb506f892 d_alloc -EXPORT_SYMBOL vmlinux 0xb52031e3 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0xb5243292 fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0xb5370b45 kill_pid EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 +EXPORT_SYMBOL vmlinux 0xb55bbd0f inet_ioctl +EXPORT_SYMBOL vmlinux 0xb56f44fa netdev_err +EXPORT_SYMBOL vmlinux 0xb56f6e05 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xb571b7d8 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0xb57b4966 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0xb57efdcd vfs_setpos -EXPORT_SYMBOL vmlinux 0xb58e3459 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xb580d40a inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xb59457bc dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xb5990c2d eth_mac_addr EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b0e954 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bb8cf9 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xb5c78638 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xb5b9fa9c inet_frag_kill EXPORT_SYMBOL vmlinux 0xb5ce69d9 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xb5cfae16 sock_no_accept -EXPORT_SYMBOL vmlinux 0xb5d08997 netlink_set_err +EXPORT_SYMBOL vmlinux 0xb5e5b0ee inet_sk_set_state EXPORT_SYMBOL vmlinux 0xb5e673c8 of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work EXPORT_SYMBOL vmlinux 0xb610f6bb dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xb615b9dd param_get_hexint -EXPORT_SYMBOL vmlinux 0xb62158ba blk_put_queue EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked EXPORT_SYMBOL vmlinux 0xb64538db flush_dcache_folio -EXPORT_SYMBOL vmlinux 0xb64d3cf7 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xb6560aee __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xb66dd6db find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start @@ -9930,55 +9896,50 @@ EXPORT_SYMBOL vmlinux 0xb67b7865 simple_rename EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69c47d0 fqdir_init EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL vmlinux 0xb6b46977 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xb6bc244e dst_init +EXPORT_SYMBOL vmlinux 0xb6bef0bd __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d2b514 inet_frags_init +EXPORT_SYMBOL vmlinux 0xb6e1d3fd netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e9719d security_inode_init_security -EXPORT_SYMBOL vmlinux 0xb6eb6b34 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71cd09f netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section EXPORT_SYMBOL vmlinux 0xb729ed41 notify_change -EXPORT_SYMBOL vmlinux 0xb740d5b3 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xb747073e padata_do_parallel EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb7791fde rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xb77cffa7 dquot_get_state +EXPORT_SYMBOL vmlinux 0xb78bae88 arp_send EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb792e8d4 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xb79ba046 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xb798ff3c skb_copy EXPORT_SYMBOL vmlinux 0xb7a9aba7 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xb7baaf70 mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c4de65 phy_print_status EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0xb7e26ab8 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0xb7eb722a bmap EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound EXPORT_SYMBOL vmlinux 0xb83cc038 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xb83e8a05 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xb8417eca eth_get_headlen EXPORT_SYMBOL vmlinux 0xb846b914 create_empty_buffers EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb876dadb sk_reset_timer EXPORT_SYMBOL vmlinux 0xb887c4c6 of_get_cpu_node EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b68ab0 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xb8b976e9 inode_set_bytes EXPORT_SYMBOL vmlinux 0xb8c67249 param_set_hexint EXPORT_SYMBOL vmlinux 0xb8d265f7 filp_close EXPORT_SYMBOL vmlinux 0xb8dda6bb param_set_uint EXPORT_SYMBOL vmlinux 0xb8faed33 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xb8fd4b38 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xb8fe4183 mtree_store_range EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9240adb tcp_poll -EXPORT_SYMBOL vmlinux 0xb92e827a xp_free +EXPORT_SYMBOL vmlinux 0xb91ee1c7 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xb942d43c seq_escape_mem EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9440576 mount_single @@ -9989,63 +9950,72 @@ EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb97742d9 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xb99858fc follow_down_one -EXPORT_SYMBOL vmlinux 0xb9af5d38 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xb9bb2b0c tcp_req_err EXPORT_SYMBOL vmlinux 0xb9bb3dea pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xb9be7004 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xb9c0de6c vme_init_bridge -EXPORT_SYMBOL vmlinux 0xb9c138bc netdev_reset_tc EXPORT_SYMBOL vmlinux 0xb9d66543 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xb9e075ea udp_seq_stop EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le EXPORT_SYMBOL vmlinux 0xba274076 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xba329fce wireless_spy_update EXPORT_SYMBOL vmlinux 0xba3e9fbb __put_devmap_managed_page_refs EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5e7af7 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic EXPORT_SYMBOL vmlinux 0xba691c85 _insb -EXPORT_SYMBOL vmlinux 0xba6d5e74 dev_deactivate EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba755f02 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xba844789 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xba8c15fa jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0xbaa4ae39 cad_pid +EXPORT_SYMBOL vmlinux 0xbab08931 xp_can_alloc EXPORT_SYMBOL vmlinux 0xbab114d7 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xbab17512 nf_log_register EXPORT_SYMBOL vmlinux 0xbab33860 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xbab99439 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xbabaa6b8 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xbabc2ab9 read_cache_page EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbacee28a udp_prot EXPORT_SYMBOL vmlinux 0xbad28eba input_get_keycode +EXPORT_SYMBOL vmlinux 0xbae0d8a2 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xbaf48d5c elv_rb_former_request EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbaffa629 vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0xbb02e4f1 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb12666e slab_build_skb +EXPORT_SYMBOL vmlinux 0xbb191151 phy_print_status EXPORT_SYMBOL vmlinux 0xbb1fee01 misc_deregister +EXPORT_SYMBOL vmlinux 0xbb217b86 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2a3260 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb423f6e ip_defrag EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb5a5012 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0xbb5d2326 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 EXPORT_SYMBOL vmlinux 0xbb7c5095 vfs_ioctl EXPORT_SYMBOL vmlinux 0xbb95fb10 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xbb99b97f __netif_napi_del EXPORT_SYMBOL vmlinux 0xbb9e478f of_get_next_child EXPORT_SYMBOL vmlinux 0xbba75607 down_killable -EXPORT_SYMBOL vmlinux 0xbbaa304d netdev_change_features EXPORT_SYMBOL vmlinux 0xbbcbf691 of_platform_bus_probe EXPORT_SYMBOL vmlinux 0xbbe68126 rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xbbf79771 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xbc07aa22 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0xbc0c9a46 gro_cells_init +EXPORT_SYMBOL vmlinux 0xbc3731ba security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xbc39610b ip_fraglist_init EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock -EXPORT_SYMBOL vmlinux 0xbc70bd0e nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xbc5d034f ip_local_deliver +EXPORT_SYMBOL vmlinux 0xbc6baf15 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xbc703d87 netdev_change_features EXPORT_SYMBOL vmlinux 0xbc8b83d9 config_group_find_item EXPORT_SYMBOL vmlinux 0xbc916f43 simple_write_begin EXPORT_SYMBOL vmlinux 0xbc9516ed blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbc9c4f79 napi_gro_receive EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcaf8f19 km_state_expired +EXPORT_SYMBOL vmlinux 0xbcb23768 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xbcb6b160 register_shrinker EXPORT_SYMBOL vmlinux 0xbcb75f91 may_umount EXPORT_SYMBOL vmlinux 0xbccb1ded set_groups @@ -10054,67 +10024,64 @@ EXPORT_SYMBOL vmlinux 0xbd1c4881 param_ops_bool EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi EXPORT_SYMBOL vmlinux 0xbd3df586 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xbd41668b sock_from_file EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init EXPORT_SYMBOL vmlinux 0xbd587954 mdio_device_register EXPORT_SYMBOL vmlinux 0xbd5fb019 devm_backlight_device_register EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd686195 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xbd710023 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0xbd851830 devm_memremap -EXPORT_SYMBOL vmlinux 0xbda2d6fe inet_bind -EXPORT_SYMBOL vmlinux 0xbda8ec5f skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xbdc7a48d tcp_conn_request +EXPORT_SYMBOL vmlinux 0xbdc79e17 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0xbdd46baf dqget EXPORT_SYMBOL vmlinux 0xbdd94ad2 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xbde2b88a iov_iter_init EXPORT_SYMBOL vmlinux 0xbde7b6ce scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xbdf688e6 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xbde8c1c3 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xbdec6159 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xbe0720fa of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe30ea11 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe54b067 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe69a67a filemap_alloc_folio EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound EXPORT_SYMBOL vmlinux 0xbe6d9215 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xbe6ecb07 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xbe8d5fa7 mdio_device_create EXPORT_SYMBOL vmlinux 0xbe90bd43 flow_rule_alloc EXPORT_SYMBOL vmlinux 0xbe92ccd7 deactivate_super EXPORT_SYMBOL vmlinux 0xbe957992 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xbe997468 security_d_instantiate EXPORT_SYMBOL vmlinux 0xbe99979f phy_sfp_probe EXPORT_SYMBOL vmlinux 0xbe9fb6ec pci_add_new_bus EXPORT_SYMBOL vmlinux 0xbea6338f arch_debugfs_dir EXPORT_SYMBOL vmlinux 0xbea9b6dc vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xbeb1bb0e sock_edemux EXPORT_SYMBOL vmlinux 0xbebcf48f pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xbece6f2e udp_pre_connect EXPORT_SYMBOL vmlinux 0xbed3b158 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0xbed5d1cc __check_sticky EXPORT_SYMBOL vmlinux 0xbef1f1b5 textsearch_register EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf04bf0d neigh_for_each +EXPORT_SYMBOL vmlinux 0xbf0947ae audit_log EXPORT_SYMBOL vmlinux 0xbf184733 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xbf19fd60 dev_set_mac_address EXPORT_SYMBOL vmlinux 0xbf1cbdaa free_cgroup_ns EXPORT_SYMBOL vmlinux 0xbf1e082b md_bitmap_free -EXPORT_SYMBOL vmlinux 0xbf368ac3 dev_trans_start +EXPORT_SYMBOL vmlinux 0xbf261bb7 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xbf398e2e __napi_schedule +EXPORT_SYMBOL vmlinux 0xbf4e1106 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf6596cb pci_read_config_byte EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbf7fd9ef free_netdev EXPORT_SYMBOL vmlinux 0xbf9af47a serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfb39067 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xbfb45a87 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xbfbd05d5 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xbfbe3cb7 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc8eb98 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xbfd139e6 simple_empty -EXPORT_SYMBOL vmlinux 0xbfea3088 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets EXPORT_SYMBOL vmlinux 0xc0043eb5 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xc0061b42 dst_release_immediate EXPORT_SYMBOL vmlinux 0xc011ef7e tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xc013c0c5 config_item_init_type_name EXPORT_SYMBOL vmlinux 0xc01c1946 __hw_addr_sync_dev @@ -10129,17 +10096,20 @@ EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue EXPORT_SYMBOL vmlinux 0xc0d73199 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xc0f00540 ip6_route_me_harder 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 0xc101e4bf inet6_release EXPORT_SYMBOL vmlinux 0xc1086908 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xc1110140 sock_no_linger EXPORT_SYMBOL vmlinux 0xc111871e pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq EXPORT_SYMBOL vmlinux 0xc11be751 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xc11d593c skb_eth_pop EXPORT_SYMBOL vmlinux 0xc123b39c pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc12416ca mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xc13148cc ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0xc1396329 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xc13981d5 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xc150b695 genphy_suspend EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc1514e3a padata_alloc @@ -10147,24 +10117,23 @@ EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem EXPORT_SYMBOL vmlinux 0xc1901232 dns_query EXPORT_SYMBOL vmlinux 0xc1940835 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xc1a61c4f tcp_disconnect EXPORT_SYMBOL vmlinux 0xc1ab7bbf param_ops_short EXPORT_SYMBOL vmlinux 0xc1b897f0 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xc1bf1214 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc1d17ee5 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1db7f32 srp_rport_put +EXPORT_SYMBOL vmlinux 0xc1ebc233 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xc203bb1a register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xc20ac710 get_tree_bdev EXPORT_SYMBOL vmlinux 0xc215c3d8 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xc21caafb dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xc21da8e4 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xc2254168 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xc2257da4 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xc225d7cc __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xc22ea5d9 kobject_del EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc2340958 scsi_host_put -EXPORT_SYMBOL vmlinux 0xc23bddc3 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc2394f23 peernet2id EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0xc24b5029 max8925_reg_read @@ -10173,12 +10142,13 @@ EXPORT_SYMBOL vmlinux 0xc2864898 get_vm_area EXPORT_SYMBOL vmlinux 0xc28faabb devm_memunmap EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2b068a5 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xc2be0e51 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2d291bb skb_dequeue EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2e6d5cb pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xc2ee9a1f qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xc2f4a7f3 netdev_err +EXPORT_SYMBOL vmlinux 0xc2ed7ba6 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xc2f93471 generic_file_open EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr @@ -10186,12 +10156,12 @@ EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc322cb37 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32d9410 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xc33bdda2 elevator_alloc EXPORT_SYMBOL vmlinux 0xc35e2862 phy_attach EXPORT_SYMBOL vmlinux 0xc35f93a8 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38fc05e ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xc3ac8759 __wait_on_buffer EXPORT_SYMBOL vmlinux 0xc3b52681 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xc3c37185 cpu_rmap_update @@ -10199,59 +10169,62 @@ EXPORT_SYMBOL vmlinux 0xc3e7ee11 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0xc3ed34f4 tty_hung_up_p EXPORT_SYMBOL vmlinux 0xc3f1d371 dup_iter +EXPORT_SYMBOL vmlinux 0xc3f242aa netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xc405471e dquot_file_open EXPORT_SYMBOL vmlinux 0xc4180188 mtree_alloc_range EXPORT_SYMBOL vmlinux 0xc41b759e dqput EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc4251e15 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc426bacf xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xc42b50b7 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xc444628a xfrm_policy_byid EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc457f80b inet6_protos +EXPORT_SYMBOL vmlinux 0xc4542529 inet6_ioctl EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc473f0fd inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc472d674 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 EXPORT_SYMBOL vmlinux 0xc47b08e7 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xc48ef71b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xc483b4a6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xc494770a __nlmsg_put EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xc4c08bb4 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xc4d35063 path_get EXPORT_SYMBOL vmlinux 0xc4dcee28 lookup_one -EXPORT_SYMBOL vmlinux 0xc4e5efe1 napi_complete_done EXPORT_SYMBOL vmlinux 0xc4f898ae sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0xc4f95b53 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0xc5083f79 sock_no_getname EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable EXPORT_SYMBOL vmlinux 0xc51d1530 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0xc5281419 generic_ro_fops EXPORT_SYMBOL vmlinux 0xc52bd064 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xc52fc320 bpf_map_get +EXPORT_SYMBOL vmlinux 0xc53f13f4 inet_listen EXPORT_SYMBOL vmlinux 0xc5463adb of_chosen EXPORT_SYMBOL vmlinux 0xc546ff57 pci_iomap -EXPORT_SYMBOL vmlinux 0xc552c4c7 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xc55beba4 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xc5616aa3 tcp_read_done EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset EXPORT_SYMBOL vmlinux 0xc5735c03 current_time EXPORT_SYMBOL vmlinux 0xc5845156 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xc589d9de __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5905135 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xc5938932 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xc59539d7 backlight_device_unregister EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table EXPORT_SYMBOL vmlinux 0xc5a9a171 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c2b82a tcp_add_backlog EXPORT_SYMBOL vmlinux 0xc5c68f46 dev_mc_flush EXPORT_SYMBOL vmlinux 0xc5c884c0 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot EXPORT_SYMBOL vmlinux 0xc5e46b65 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f053de skb_split +EXPORT_SYMBOL vmlinux 0xc6052129 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xc60ba213 netdev_alert EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc6285a9a sock_gettstamp EXPORT_SYMBOL vmlinux 0xc6287655 kset_unregister EXPORT_SYMBOL vmlinux 0xc62aeca8 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0xc631580a console_unlock @@ -10263,9 +10236,8 @@ EXPORT_SYMBOL vmlinux 0xc6656fbb register_md_cluster_operations EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66a9d61 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc67776dc tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xc67c3a80 md_write_start -EXPORT_SYMBOL vmlinux 0xc6a4cef9 sock_set_priority EXPORT_SYMBOL vmlinux 0xc6bc4855 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0xc6be06ae pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r @@ -10276,15 +10248,16 @@ EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6fe2a0c phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xc71351a2 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc70333c4 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xc70bd6ec ip_check_defrag EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port EXPORT_SYMBOL vmlinux 0xc73acfc5 nd_pfn_validate EXPORT_SYMBOL vmlinux 0xc73c635a arch_free_page EXPORT_SYMBOL vmlinux 0xc74bdbf4 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xc7532054 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xc754005f netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xc755fafb blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xc75d594d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xc75d3915 sock_i_ino EXPORT_SYMBOL vmlinux 0xc76b3962 simple_unlink EXPORT_SYMBOL vmlinux 0xc773d7b8 task_work_add EXPORT_SYMBOL vmlinux 0xc779c603 devm_devfreq_register_opp_notifier @@ -10294,50 +10267,49 @@ EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ac1de2 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7b23376 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xc7b2d406 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xc7b3de5f tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0xc7bfdbe5 genphy_soft_reset EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7ced5ee mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xc7e227c3 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc7f456d0 ip_options_compile EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy EXPORT_SYMBOL vmlinux 0xc7f4f462 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xc800c3a6 skb_unlink +EXPORT_SYMBOL vmlinux 0xc8124c26 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xc81d1171 of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0xc8225fb1 fs_param_is_path EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xc8421d2e netif_skb_features EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84d6397 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xc852c77d vm_map_pages EXPORT_SYMBOL vmlinux 0xc85a8a9c mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0xc85df6ce request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xc86ea85d eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xc87149b2 skb_expand_head EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87c00e8 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88417e2 sock_bindtoindex EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8a93ad7 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xc8b13b05 vlan_for_each EXPORT_SYMBOL vmlinux 0xc8bd5891 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xc8bde17c xfrm_user_policy EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8c85a32 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xc8cc1c82 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xc8d7b7b1 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xc8dc0a3b blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xc8da0a06 udp6_seq_ops EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc EXPORT_SYMBOL vmlinux 0xc8efb05e filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc8ff012e xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xc8ffc92f param_set_invbool EXPORT_SYMBOL vmlinux 0xc90a47bb pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xc9148847 phy_start EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc93504b1 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0xc9369f69 srp_start_tl_fail_timers EXPORT_SYMBOL vmlinux 0xc93b5005 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xc93dd9bf iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0xc93e87eb try_to_free_buffers EXPORT_SYMBOL vmlinux 0xc94eecde jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock EXPORT_SYMBOL vmlinux 0xc9600535 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc960dd28 qdisc_reset EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc968dbff request_firmware EXPORT_SYMBOL vmlinux 0xc96eaea1 param_ops_uint @@ -10346,44 +10318,41 @@ EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9875b29 __find_get_block EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9afbdb2 xfrm_state_flush EXPORT_SYMBOL vmlinux 0xc9b8dd1d pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xc9c751b5 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xc9c0287f alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xc9cf66dc device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xc9d9daef skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc9daa9ce call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift -EXPORT_SYMBOL vmlinux 0xc9dda146 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9ed15bb tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xc9f4d034 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xc9f8ce91 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xc9fb3b07 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xca0b1daf write_cache_pages EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free EXPORT_SYMBOL vmlinux 0xca26ac2f fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xca2a80e5 device_get_mac_address EXPORT_SYMBOL vmlinux 0xca2dac33 block_dirty_folio EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state EXPORT_SYMBOL vmlinux 0xca3cc6d5 configfs_register_group EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca589229 skb_ext_add EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0xca768283 bdi_alloc EXPORT_SYMBOL vmlinux 0xca78ab6f jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca93dd42 km_query EXPORT_SYMBOL vmlinux 0xcaabbd05 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0xcabc6bdf unpin_user_page EXPORT_SYMBOL vmlinux 0xcabd70d9 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xcabe6172 mmc_release_host EXPORT_SYMBOL vmlinux 0xcac2e838 giveup_all EXPORT_SYMBOL vmlinux 0xcac66036 dquot_transfer -EXPORT_SYMBOL vmlinux 0xcaded191 security_path_rename +EXPORT_SYMBOL vmlinux 0xcacb8e47 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xcae9863b blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0xcaf10c0e register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xcaf4a221 sock_init_data_uid EXPORT_SYMBOL vmlinux 0xcaf4e795 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xcaf9c49c tcp_seq_stop EXPORT_SYMBOL vmlinux 0xcafba8b7 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xcb0185c8 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu EXPORT_SYMBOL vmlinux 0xcb26d1b1 mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xcb2759ec blk_rq_count_integrity_sg @@ -10392,27 +10361,26 @@ EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit EXPORT_SYMBOL vmlinux 0xcb4ebe3a folio_wait_bit +EXPORT_SYMBOL vmlinux 0xcb67ba27 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xcb6ad67a mmc_can_discard EXPORT_SYMBOL vmlinux 0xcb7199a5 d_tmpfile -EXPORT_SYMBOL vmlinux 0xcb7febe6 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xcb89f7d2 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xcb8b5e96 generic_permission EXPORT_SYMBOL vmlinux 0xcb97e6de __seq_open_private -EXPORT_SYMBOL vmlinux 0xcbaf6492 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0xcbb8466e fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc5ad71 free_task EXPORT_SYMBOL vmlinux 0xcbcd8ab4 md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xcbdbdea2 inetdev_by_index EXPORT_SYMBOL vmlinux 0xcbe9da92 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xcbe9ff29 mount_subtree +EXPORT_SYMBOL vmlinux 0xcbefbc8d netdev_warn EXPORT_SYMBOL vmlinux 0xcbf40226 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xcbf77d27 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc267cb3 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0xcc28b108 tty_port_close_start EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit @@ -10421,38 +10389,42 @@ EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc61d01d bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done -EXPORT_SYMBOL vmlinux 0xcc89231e ip_frag_next EXPORT_SYMBOL vmlinux 0xcc895a78 of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0xcc95ef26 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xcca68de2 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xcca74255 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xccb0b9f0 finish_open EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free -EXPORT_SYMBOL vmlinux 0xccdfc21f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xcce73107 skb_queue_purge EXPORT_SYMBOL vmlinux 0xccea37a8 locks_free_lock +EXPORT_SYMBOL vmlinux 0xccedce92 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xccef0753 serio_interrupt EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd07aa44 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xcd09ea59 blk_get_queue EXPORT_SYMBOL vmlinux 0xcd21cf19 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xcd2686ee i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd4b57c6 sock_no_socketpair EXPORT_SYMBOL vmlinux 0xcd51334e dma_free_attrs +EXPORT_SYMBOL vmlinux 0xcd5285da phy_trigger_machine EXPORT_SYMBOL vmlinux 0xcd541af6 unregister_console EXPORT_SYMBOL vmlinux 0xcd584106 seq_dentry +EXPORT_SYMBOL vmlinux 0xcd64820d pskb_extract EXPORT_SYMBOL vmlinux 0xcd67e3de i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0xcd6cfa1b dump_emit EXPORT_SYMBOL vmlinux 0xcd6e50fc kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xcd79edf1 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcdab4a23 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xcdbd809a nf_log_trace EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcdc348c6 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xcdc362d5 sock_create_lite EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel EXPORT_SYMBOL vmlinux 0xcdc7dc50 nonseekable_open -EXPORT_SYMBOL vmlinux 0xcdc8742f dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xcdd5c2d1 md_write_inc EXPORT_SYMBOL vmlinux 0xcddabf5f scsi_host_get -EXPORT_SYMBOL vmlinux 0xcde41625 tcp_sendpage EXPORT_SYMBOL vmlinux 0xcde60f98 d_genocide EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock @@ -10464,30 +10436,26 @@ EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake EXPORT_SYMBOL vmlinux 0xce34a112 vfs_create_mount EXPORT_SYMBOL vmlinux 0xce3c4124 send_sig_info -EXPORT_SYMBOL vmlinux 0xce4023a9 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xce455d8f put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next EXPORT_SYMBOL vmlinux 0xce8d8eaa param_set_bint -EXPORT_SYMBOL vmlinux 0xce9e3fdc tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xcea0cbf3 sg_miter_stop EXPORT_SYMBOL vmlinux 0xcea13239 proc_dobool EXPORT_SYMBOL vmlinux 0xcea78de1 cdev_device_add EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceb52b4b of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xcebb8f58 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 -EXPORT_SYMBOL vmlinux 0xcef8a47c reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xceff6b4b devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xcf08b68e dev_load -EXPORT_SYMBOL vmlinux 0xcf0c5207 nf_ip_checksum EXPORT_SYMBOL vmlinux 0xcf17977e pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xcf1b4ba8 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xcf2460ad mdio_device_free EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf4382bd tcp_sendpage +EXPORT_SYMBOL vmlinux 0xcf43d7da skb_checksum EXPORT_SYMBOL vmlinux 0xcf456ec8 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0xcf7de908 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xcf81b14a mipi_dsi_dcs_get_display_brightness @@ -10495,50 +10463,50 @@ EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa2964f seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xcfa61af1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xcfb75bed security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xcfbfca65 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xcfc854b6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xcfcb6301 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xcfd69f4a __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdd8fe0 sock_wfree +EXPORT_SYMBOL vmlinux 0xcfe37f76 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xcffb6e6c ethtool_notify EXPORT_SYMBOL vmlinux 0xcffba488 tty_write_room -EXPORT_SYMBOL vmlinux 0xd01a1d30 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xd018fbac tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0xd02054b3 folio_alloc -EXPORT_SYMBOL vmlinux 0xd029be42 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xd03a7f40 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd0422426 security_d_instantiate EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd06e2c9e filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd077edf6 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xd08111bb sk_error_report -EXPORT_SYMBOL vmlinux 0xd09c6a11 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xd09605c9 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xd0a762d1 devm_release_resource +EXPORT_SYMBOL vmlinux 0xd0ab0a54 security_path_unlink EXPORT_SYMBOL vmlinux 0xd0ab169c scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd0d0bc13 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xd0bcaf98 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xd0d27b7b of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xd0d655e7 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xd0f405fe md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key EXPORT_SYMBOL vmlinux 0xd10001a1 gro_cells_receive EXPORT_SYMBOL vmlinux 0xd1036fb5 tty_port_put EXPORT_SYMBOL vmlinux 0xd114499d blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0xd11b653e srp_rport_get -EXPORT_SYMBOL vmlinux 0xd11de72d __napi_schedule +EXPORT_SYMBOL vmlinux 0xd1220f61 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd139739e skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xd14e2b62 km_state_notify +EXPORT_SYMBOL vmlinux 0xd1391fee skb_split +EXPORT_SYMBOL vmlinux 0xd13ad421 neigh_table_init EXPORT_SYMBOL vmlinux 0xd14fd9d2 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xd1595ba3 set_blocksize EXPORT_SYMBOL vmlinux 0xd16127ab pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xd1791509 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xd181d0c1 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xd181e0df scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xd18c60d5 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xd18e90e9 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xd19ea177 phy_loopback +EXPORT_SYMBOL vmlinux 0xd1adaf47 sk_error_report EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd1dc91dc vio_unregister_driver EXPORT_SYMBOL vmlinux 0xd1e87de2 rproc_get_by_child EXPORT_SYMBOL vmlinux 0xd20e1269 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd214748f rt6_lookup EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi EXPORT_SYMBOL vmlinux 0xd225f6cf tty_register_driver EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked @@ -10546,12 +10514,10 @@ EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook EXPORT_SYMBOL vmlinux 0xd269acf8 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xd2714601 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd28e378c fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0xd294321c __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xd2a22f68 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xd2adcc08 pci_iounmap EXPORT_SYMBOL vmlinux 0xd2b22173 migrate_vma_finalize EXPORT_SYMBOL vmlinux 0xd2b6f563 mount_nodev @@ -10566,30 +10532,34 @@ EXPORT_SYMBOL vmlinux 0xd35c376b pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37b1a7c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xd3711cb5 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0xd37e1075 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd391a1cf nf_log_unregister +EXPORT_SYMBOL vmlinux 0xd39c96ca xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0xd3a40336 from_kuid -EXPORT_SYMBOL vmlinux 0xd3add1cc __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xd3b26b6c agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xd3ebcb1b tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xd3b483b8 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xd3bfe10e netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xd3c5a41a sk_net_capable +EXPORT_SYMBOL vmlinux 0xd3d4dd66 udpv6_sendmsg EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd4208144 simple_link -EXPORT_SYMBOL vmlinux 0xd459afdc vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xd4455f52 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xd45acdaf pskb_expand_head EXPORT_SYMBOL vmlinux 0xd45c4c58 ptp_clock_index EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex EXPORT_SYMBOL vmlinux 0xd4615ccf crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0xd461ac0a may_setattr -EXPORT_SYMBOL vmlinux 0xd47e7331 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xd47d1b73 sk_free EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed EXPORT_SYMBOL vmlinux 0xd4960b15 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xd49894da inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xd49ba112 sk_ns_capable EXPORT_SYMBOL vmlinux 0xd4a69abb invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xd4b12118 dev_get_stats EXPORT_SYMBOL vmlinux 0xd4bb3f1e crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4c81fd9 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xd4ce3ddd ipmr_rule_default EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find EXPORT_SYMBOL vmlinux 0xd4f1ed26 max8998_update_reg EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set @@ -10597,51 +10567,48 @@ EXPORT_SYMBOL vmlinux 0xd50826f4 pci_disable_msi EXPORT_SYMBOL vmlinux 0xd523cee5 __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd53348a9 nf_getsockopt EXPORT_SYMBOL vmlinux 0xd53b9883 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xd54a3665 secpath_set +EXPORT_SYMBOL vmlinux 0xd5404783 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xd543c226 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0xd55f2072 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xd57208f5 d_path -EXPORT_SYMBOL vmlinux 0xd57f30de skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xd57f5814 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xd590dafb phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xd591e918 scsi_device_put EXPORT_SYMBOL vmlinux 0xd5968a51 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xd5a1a3ab xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xd5b12f7d radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state EXPORT_SYMBOL vmlinux 0xd5be130e cpu_core_map EXPORT_SYMBOL vmlinux 0xd5c463a2 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xd5c5fb53 netlink_kernel_release EXPORT_SYMBOL vmlinux 0xd5c61811 dm_table_get_size EXPORT_SYMBOL vmlinux 0xd5d777c8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xd5e802b0 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0xd5ef84c7 agp3_generic_tlbflush EXPORT_SYMBOL vmlinux 0xd5fcc441 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd604a123 eth_get_headlen EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd64571d1 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xd64df726 audit_log_start EXPORT_SYMBOL vmlinux 0xd656351a scsi_remove_target EXPORT_SYMBOL vmlinux 0xd66ad1d5 pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd675e95b tcp_make_synack +EXPORT_SYMBOL vmlinux 0xd67b2a8e netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xd6800a82 cred_fscmp EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec EXPORT_SYMBOL vmlinux 0xd69d73e8 srp_timed_out -EXPORT_SYMBOL vmlinux 0xd6a7e5db __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6bea872 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xd6bf3ca3 ip_queue_xmit EXPORT_SYMBOL vmlinux 0xd6cca69f pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xd6ccdb72 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6eba2d0 rproc_free EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f2c20e sk_free EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd720d95f sync_blockdev -EXPORT_SYMBOL vmlinux 0xd723d330 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xd72f04ef tty_port_init EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid @@ -10653,71 +10620,69 @@ EXPORT_SYMBOL vmlinux 0xd77ad138 cdrom_ioctl EXPORT_SYMBOL vmlinux 0xd781f97d mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd790dc74 kernel_getpeername EXPORT_SYMBOL vmlinux 0xd791deac cfb_imageblit EXPORT_SYMBOL vmlinux 0xd79301f0 twl6040_reg_read EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd799421a eth_header_cache_update EXPORT_SYMBOL vmlinux 0xd7ad0858 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xd7d18ea4 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d8a17b napi_disable EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler EXPORT_SYMBOL vmlinux 0xd7f384bd vme_bus_type EXPORT_SYMBOL vmlinux 0xd7f71c8d rproc_shutdown EXPORT_SYMBOL vmlinux 0xd8045b58 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xd816728b mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xd818dc94 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xd81b53ad blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xd81e9713 flow_block_cb_free EXPORT_SYMBOL vmlinux 0xd8204c33 path_is_under +EXPORT_SYMBOL vmlinux 0xd8215cac skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xd82bdd12 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed EXPORT_SYMBOL vmlinux 0xd83e3254 blkdev_put EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0xd875a765 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xd878c811 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xd878f0cf ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xd87e28c6 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd882be54 sock_i_uid EXPORT_SYMBOL vmlinux 0xd898d9b8 param_get_byte EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a183dd tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xd8a49d1c genphy_restart_aneg 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 0xd8bedb86 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xd8c97b67 inet_sendmsg EXPORT_SYMBOL vmlinux 0xd8cfa937 md_update_sb -EXPORT_SYMBOL vmlinux 0xd8db2d83 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xd8e2a317 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xd8fe5d0c inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xd936adec udp_seq_next +EXPORT_SYMBOL vmlinux 0xd9389647 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xd93e3901 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xd9597386 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xd95ca25d submit_bio_noacct EXPORT_SYMBOL vmlinux 0xd968a9c5 phy_disconnect EXPORT_SYMBOL vmlinux 0xd970d826 kobject_put EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages EXPORT_SYMBOL vmlinux 0xd98fb53f begin_new_exec EXPORT_SYMBOL vmlinux 0xd9902053 param_get_int -EXPORT_SYMBOL vmlinux 0xd9b3e96e napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd99a26af xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c81f14 blackhole_netdev EXPORT_SYMBOL vmlinux 0xd9cda4f1 migrate_folio EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e40b83 inet_put_port -EXPORT_SYMBOL vmlinux 0xd9e7f85e phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0xd9e98a3b ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xd9f0863d rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xd9fc05f9 netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0xd9fe148c __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xda035f35 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xda11b45c thaw_super -EXPORT_SYMBOL vmlinux 0xda18b798 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda43c105 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xda5afaa5 kobject_set_name EXPORT_SYMBOL vmlinux 0xda708c8c bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xdaa68996 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xdaba3f51 security_sock_graft EXPORT_SYMBOL vmlinux 0xdac0cc6e phy_driver_register EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdac91a96 agp_unbind_memory @@ -10728,27 +10693,26 @@ EXPORT_SYMBOL vmlinux 0xdae772e5 input_alloc_absinfo EXPORT_SYMBOL vmlinux 0xdae95ff1 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xdaf0c3ec ps2_begin_command -EXPORT_SYMBOL vmlinux 0xdafc27a4 sock_from_file +EXPORT_SYMBOL vmlinux 0xdb13fbcf sock_set_priority EXPORT_SYMBOL vmlinux 0xdb39252e buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xdb5cff1f generic_write_checks -EXPORT_SYMBOL vmlinux 0xdb60e99c xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdb5d9530 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6c5a8d register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xdb757c16 param_set_ushort EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free EXPORT_SYMBOL vmlinux 0xdb8b89e1 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0xdb8e6780 register_md_personality EXPORT_SYMBOL vmlinux 0xdb8fbe8b pci_match_id +EXPORT_SYMBOL vmlinux 0xdb96b5bf tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xdba458b8 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xdbaa2848 security_sb_remount EXPORT_SYMBOL vmlinux 0xdbb91e60 pci_free_irq EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xdbda953d mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xdbdd0ac4 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc05ba43 netif_tx_unlock EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc26a91f clear_inode @@ -10757,28 +10721,31 @@ EXPORT_SYMBOL vmlinux 0xdc4024f4 readahead_expand EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc511510 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc58fcab dev_change_flags EXPORT_SYMBOL vmlinux 0xdc7681f7 phy_connect_direct EXPORT_SYMBOL vmlinux 0xdc7ae9e7 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xdc7b24a8 generic_write_end EXPORT_SYMBOL vmlinux 0xdc812cbd update_devfreq EXPORT_SYMBOL vmlinux 0xdc844c13 dma_async_device_unregister EXPORT_SYMBOL vmlinux 0xdc853006 register_fib_notifier -EXPORT_SYMBOL vmlinux 0xdc917b18 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xdc8e63ff xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdcb203fe netpoll_cleanup EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xdcb764ad memset EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdccc3af0 netpoll_print_options EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdd0dc95e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xdcecdf21 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xdd1a1b70 mmc_register_driver EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd32b66b xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xdd4565f2 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0xdd45c6fe blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0xdd562dc2 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xdd5d4652 mmc_run_bkops EXPORT_SYMBOL vmlinux 0xdd604a25 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdd645d52 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy EXPORT_SYMBOL vmlinux 0xdd825f86 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld @@ -10787,17 +10754,21 @@ EXPORT_SYMBOL vmlinux 0xddad3c8b clean_bdev_aliases EXPORT_SYMBOL vmlinux 0xddade21a nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddc04717 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0xddd7090e fddi_type_trans EXPORT_SYMBOL vmlinux 0xddddd338 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xddde09a4 neigh_table_clear EXPORT_SYMBOL vmlinux 0xdde70f07 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde2e630f netdev_name_in_use -EXPORT_SYMBOL vmlinux 0xde485d76 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xde162f4e tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xde1bde80 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xde1e226d inet_put_port +EXPORT_SYMBOL vmlinux 0xde2be14a genl_unregister_family +EXPORT_SYMBOL vmlinux 0xde3580a2 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4e24a6 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xde516c0e neigh_lookup EXPORT_SYMBOL vmlinux 0xde52030d generic_setlease EXPORT_SYMBOL vmlinux 0xde681318 vm_mmap -EXPORT_SYMBOL vmlinux 0xde6de8c3 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xde769798 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xde89994e rdmacg_uncharge EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state EXPORT_SYMBOL vmlinux 0xde96494c dentry_open @@ -10808,38 +10779,45 @@ EXPORT_SYMBOL vmlinux 0xdef711ee nd_integrity_init EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf032905 blk_sync_queue EXPORT_SYMBOL vmlinux 0xdf0f5e62 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xdf1c1bfd phy_get_eee_err EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf266dc3 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf34731d f_setown +EXPORT_SYMBOL vmlinux 0xdf3a3fb3 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf58ec65 register_netdevice -EXPORT_SYMBOL vmlinux 0xdf59edb5 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xdf68a16a dev_addr_mod EXPORT_SYMBOL vmlinux 0xdf7eaa39 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xdf837f39 ptp_clock_register EXPORT_SYMBOL vmlinux 0xdf857a70 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xdf88afbf tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdf9c25a0 nf_setsockopt EXPORT_SYMBOL vmlinux 0xdfa6b133 d_invalidate EXPORT_SYMBOL vmlinux 0xdfb15e0f pci_write_vpd_any EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc4f3a4 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0xdff7eeb8 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe001d1eb ipv4_specific EXPORT_SYMBOL vmlinux 0xe00340e1 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xe006190a __dev_get_by_index EXPORT_SYMBOL vmlinux 0xe01a451c param_ops_long EXPORT_SYMBOL vmlinux 0xe020a2ca mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0xe027bfa5 uart_add_one_port EXPORT_SYMBOL vmlinux 0xe02f0c82 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe07573a2 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe0493d18 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xe05945f4 qdisc_put +EXPORT_SYMBOL vmlinux 0xe062f608 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe092c2bc fs_bio_set @@ -10848,74 +10826,78 @@ EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0b97938 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe0bed8a0 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe0befc12 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xe0bfdac9 bio_split EXPORT_SYMBOL vmlinux 0xe0d10803 con_is_bound -EXPORT_SYMBOL vmlinux 0xe0d48d46 ip_local_deliver EXPORT_SYMBOL vmlinux 0xe0d4cc6a filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xe0d97ade key_link EXPORT_SYMBOL vmlinux 0xe0e81b2d nd_region_release_lane EXPORT_SYMBOL vmlinux 0xe10336e5 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xe1231c07 xfrm6_rcv 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 0xe13a3784 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xe1404364 tcp_add_backlog EXPORT_SYMBOL vmlinux 0xe1437d81 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xe14cbb95 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe162ceb6 dst_release_immediate EXPORT_SYMBOL vmlinux 0xe166e03a pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xe16d0d00 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xe17796db netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xe1780ad4 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xe18f30bd filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xe1a1cf4e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe19e122e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xe1a7a200 netdev_update_features EXPORT_SYMBOL vmlinux 0xe1adf895 tty_port_open -EXPORT_SYMBOL vmlinux 0xe1cd0b4f xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xe1d43b84 _raw_write_lock_nested EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format EXPORT_SYMBOL vmlinux 0xe20383e9 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe24eb460 xfrm_state_add EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe261f7da qdisc_hash_del EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2743520 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xe29aa24d reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe27f3fc1 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xe280fad4 ppp_input EXPORT_SYMBOL vmlinux 0xe29b290b abort_creds -EXPORT_SYMBOL vmlinux 0xe2bca17d netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xe2b8fc7a netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0xe2cf0095 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2fe69d7 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xe30420cf param_get_string EXPORT_SYMBOL vmlinux 0xe30f5698 posix_test_lock EXPORT_SYMBOL vmlinux 0xe313aa88 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xe323608d sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe3280141 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest EXPORT_SYMBOL vmlinux 0xe330894b posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0xe339bdd9 con_copy_unimap EXPORT_SYMBOL vmlinux 0xe342e4e3 pmem_sector_size EXPORT_SYMBOL vmlinux 0xe34b265c kern_unmount -EXPORT_SYMBOL vmlinux 0xe3747345 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a0014e filemap_dirty_folio EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3b1b3dd tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xe3bb702a dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xe3bf82b5 __ip_select_ident EXPORT_SYMBOL vmlinux 0xe3c14606 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0xe3c7c805 devm_free_irq +EXPORT_SYMBOL vmlinux 0xe3d6453b inet_frags_init +EXPORT_SYMBOL vmlinux 0xe3e00fd3 napi_enable EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xe3f36ff4 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40c550d vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xe41389cd ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe440c0b9 reuseport_add_sock EXPORT_SYMBOL vmlinux 0xe442ea75 finish_swait EXPORT_SYMBOL vmlinux 0xe44af40e node_data -EXPORT_SYMBOL vmlinux 0xe4539cb7 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xe462f63e dev_get_by_index EXPORT_SYMBOL vmlinux 0xe4765752 eeh_dev_release +EXPORT_SYMBOL vmlinux 0xe47ee1d2 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xe488565f noop_llseek EXPORT_SYMBOL vmlinux 0xe490c994 dquot_free_inode EXPORT_SYMBOL vmlinux 0xe49d0fb4 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xe49e2d4e inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xe4a19294 poll_initwait EXPORT_SYMBOL vmlinux 0xe4b14bd9 memcpy_page_flushcache EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack EXPORT_SYMBOL vmlinux 0xe4bd73e4 vfs_getattr @@ -10923,51 +10905,47 @@ EXPORT_SYMBOL vmlinux 0xe4e2ad0e seq_release EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0xe4efb700 register_sysctl +EXPORT_SYMBOL vmlinux 0xe4f15624 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 -EXPORT_SYMBOL vmlinux 0xe505e18d tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe56870c2 rtnl_notify +EXPORT_SYMBOL vmlinux 0xe5722393 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5819d41 fd_install EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end EXPORT_SYMBOL vmlinux 0xe59f8264 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0xe5a79293 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xe5b74dcc input_unregister_handle EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cd1660 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xe5e7d7b0 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xe5f87853 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe5dd1955 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xe5f9b7e8 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xe60b14e4 bio_init EXPORT_SYMBOL vmlinux 0xe62b40c9 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xe62c14ee ip_do_fragment EXPORT_SYMBOL vmlinux 0xe630999c mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xe642a79f nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xe63d6707 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe67cf7c9 nf_log_unset EXPORT_SYMBOL vmlinux 0xe67ecda7 irq_domain_set_info EXPORT_SYMBOL vmlinux 0xe68d80d5 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0xe69a29f7 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xe69d3647 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xe6a9ee30 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0xe6b43d04 param_get_ullong EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d643b4 tcf_qevent_init EXPORT_SYMBOL vmlinux 0xe6e088a0 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0xe6ee274c pci_enable_device_io EXPORT_SYMBOL vmlinux 0xe70622dc input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xe707f121 sock_release -EXPORT_SYMBOL vmlinux 0xe7114946 dst_destroy EXPORT_SYMBOL vmlinux 0xe71ee3a2 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xe72ff8f5 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xe75458bc uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xe762ca12 udp_gro_receive EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger EXPORT_SYMBOL vmlinux 0xe768c809 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xe78020a7 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0xe78de71f pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xe79e3347 iput +EXPORT_SYMBOL vmlinux 0xe7a4c704 inet6_bind EXPORT_SYMBOL vmlinux 0xe7aafb09 vga_put EXPORT_SYMBOL vmlinux 0xe7abf1cf iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xe7afc1bd ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xe7b0faf0 rproc_boot EXPORT_SYMBOL vmlinux 0xe7b30117 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0xe7c85958 scsi_done_direct @@ -10979,20 +10957,26 @@ EXPORT_SYMBOL vmlinux 0xe81d41b2 md_set_array_sectors EXPORT_SYMBOL vmlinux 0xe82de4bf input_register_handle EXPORT_SYMBOL vmlinux 0xe8340414 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xe85b0d52 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe836c0d4 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xe8572352 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xe85cd4d9 pci_set_master EXPORT_SYMBOL vmlinux 0xe8630f2a key_alloc EXPORT_SYMBOL vmlinux 0xe8674b91 of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0xe8679aa2 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xe86d64af phy_queue_state_machine EXPORT_SYMBOL vmlinux 0xe86fc5ad bio_reset EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xe88dd280 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xe8a19309 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xe87f946d sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe881a04a netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xe88b95ba tcp_peek_len +EXPORT_SYMBOL vmlinux 0xe890f7f4 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xe8ad7b84 ip_frag_next EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xe8b5e5f0 aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xe8d6146c napi_consume_skb +EXPORT_SYMBOL vmlinux 0xe8f35b71 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xe8ff67d8 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xe900f272 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xe904e539 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf @@ -11001,35 +10985,37 @@ EXPORT_SYMBOL vmlinux 0xe92452a4 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0xe92d3339 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xe932738a dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xe94c9461 qdisc_reset +EXPORT_SYMBOL vmlinux 0xe951c96c __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe9965412 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xe99b9695 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xe99ffd3a flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0xe9b8d896 icmp6_send +EXPORT_SYMBOL vmlinux 0xe9ae5baf unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xe9b865ec netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name EXPORT_SYMBOL vmlinux 0xe9f695bd arch_get_random_seed_longs EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f715f3 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xe9fc70c0 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0xea0a119e dma_fence_describe EXPORT_SYMBOL vmlinux 0xea0bff82 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xea38129a netdev_pick_tx EXPORT_SYMBOL vmlinux 0xea381366 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize EXPORT_SYMBOL vmlinux 0xea44b306 zpool_register_driver EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea719457 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xea744d38 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xea7afb26 __phy_read_mmd EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xea909b7e devfreq_add_device -EXPORT_SYMBOL vmlinux 0xeaa554d3 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xeaaedfb2 inet6_getname -EXPORT_SYMBOL vmlinux 0xeab88e1f tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xeabe3d57 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xeac54f0e security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xea96f4fe ata_std_end_eh EXPORT_SYMBOL vmlinux 0xeac581a3 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xeac8e321 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xeacc40c2 security_inode_init_security EXPORT_SYMBOL vmlinux 0xeadf8270 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xeaf11310 neigh_lookup EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb0a9910 seq_puts EXPORT_SYMBOL vmlinux 0xeb1d4731 __scsi_device_lookup_by_target @@ -11043,8 +11029,10 @@ EXPORT_SYMBOL vmlinux 0xeb74312b mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0xeb76b7f7 i8042_remove_filter EXPORT_SYMBOL vmlinux 0xeb76d209 dquot_resume +EXPORT_SYMBOL vmlinux 0xeb7bc19a ndisc_send_skb EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift +EXPORT_SYMBOL vmlinux 0xeb92dd12 sockfd_lookup EXPORT_SYMBOL vmlinux 0xeb97739d pcie_set_readrq EXPORT_SYMBOL vmlinux 0xeb9bc554 vfs_fsync_range EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint @@ -11052,33 +11040,39 @@ EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present EXPORT_SYMBOL vmlinux 0xebad0066 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xebdea66d udp_lib_rehash EXPORT_SYMBOL vmlinux 0xebe4de0b pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xebe76cb3 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xec0396ef dquot_disable EXPORT_SYMBOL vmlinux 0xec0a6423 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xec0fd5f1 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0xec25376f vga_get EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec391561 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xec3abeac nf_hook_slow_list EXPORT_SYMBOL vmlinux 0xec4031f9 init_task -EXPORT_SYMBOL vmlinux 0xec494def alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue EXPORT_SYMBOL vmlinux 0xec5466fd pnv_phb_to_cxl_mode EXPORT_SYMBOL vmlinux 0xec64f5f9 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xec68b114 csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xec75f6d4 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xec948908 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xec772b59 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and EXPORT_SYMBOL vmlinux 0xecb07d2b mmc_free_host +EXPORT_SYMBOL vmlinux 0xecb10f38 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xecbd4a97 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xecc5d731 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0xeccc885c mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xecdf705d fget EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecef86e0 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xecf273b0 dst_alloc EXPORT_SYMBOL vmlinux 0xecfc28f6 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xed02b46f phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xed4087d5 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xed27b7e5 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xed3ee6be tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0xed523280 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed684d61 netdev_features_change EXPORT_SYMBOL vmlinux 0xed6a3480 load_nls EXPORT_SYMBOL vmlinux 0xed7c2fb9 pcim_iomap EXPORT_SYMBOL vmlinux 0xed9db5cb mipi_dsi_dcs_nop @@ -11089,16 +11083,22 @@ EXPORT_SYMBOL vmlinux 0xedcb5f4f md_register_thread EXPORT_SYMBOL vmlinux 0xedcfb2dd serio_unregister_port EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xedd5b42a dst_discard_out +EXPORT_SYMBOL vmlinux 0xeddb2599 arp_xmit +EXPORT_SYMBOL vmlinux 0xeddc210a dcb_setapp EXPORT_SYMBOL vmlinux 0xede58286 block_write_full_page EXPORT_SYMBOL vmlinux 0xedea3e7d dev_uc_add EXPORT_SYMBOL vmlinux 0xedf9bb6a unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0xedfc926d vme_irq_request +EXPORT_SYMBOL vmlinux 0xee2d03c8 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee37f5b6 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xee3d4fe4 tcf_block_put EXPORT_SYMBOL vmlinux 0xee444191 pci_alloc_dev EXPORT_SYMBOL vmlinux 0xee469fda scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee7b3d0e inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xee7bde47 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xee7deedc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xee87204b mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8c5991 sync_file_create @@ -11111,29 +11111,32 @@ EXPORT_SYMBOL vmlinux 0xeec90ccd pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeee76945 softnet_data EXPORT_SYMBOL vmlinux 0xeeea7b2e mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xef277ce8 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xef0973ac tso_build_data +EXPORT_SYMBOL vmlinux 0xef1980c4 fget_raw +EXPORT_SYMBOL vmlinux 0xef1c32aa sk_send_sigurg EXPORT_SYMBOL vmlinux 0xef2ef076 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0xef3c4ae4 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xef3ee600 fb_pan_display EXPORT_SYMBOL vmlinux 0xef45baa3 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xef5cab0d sock_no_connect EXPORT_SYMBOL vmlinux 0xef620709 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0xef674535 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xef6b2a98 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xef6e3a36 skb_kill_datagram EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xef7461fd __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xef95b298 vme_slave_request -EXPORT_SYMBOL vmlinux 0xef99fbab netif_skb_features EXPORT_SYMBOL vmlinux 0xefaeed4c phy_modify_paged EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work EXPORT_SYMBOL vmlinux 0xefb5e521 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0xefc14b02 __skb_checksum EXPORT_SYMBOL vmlinux 0xefca5275 to_ndd -EXPORT_SYMBOL vmlinux 0xefd0beb5 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xefd8dd46 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xefe8772a end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeffbe6a1 tcf_block_get EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00d48d6 tcp_check_req EXPORT_SYMBOL vmlinux 0xf01bf721 get_unmapped_area EXPORT_SYMBOL vmlinux 0xf02be8e9 file_update_time EXPORT_SYMBOL vmlinux 0xf02d5db7 mipi_dsi_dcs_set_tear_off @@ -11142,42 +11145,42 @@ EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table EXPORT_SYMBOL vmlinux 0xf07b3aea mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xf07c932a __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0xf086156b xor_altivec_3 EXPORT_SYMBOL vmlinux 0xf08a3eef dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xf08d17d1 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xf0948809 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xf0981ee5 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf09f9bf7 __neigh_create +EXPORT_SYMBOL vmlinux 0xf0a87a6e skb_copy_expand EXPORT_SYMBOL vmlinux 0xf0b01e0e padata_free_shell EXPORT_SYMBOL vmlinux 0xf0bdc382 import_iovec +EXPORT_SYMBOL vmlinux 0xf0d67fe0 xsk_tx_release EXPORT_SYMBOL vmlinux 0xf0e37ded textsearch_destroy EXPORT_SYMBOL vmlinux 0xf0e5ed29 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xf0f806da mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0xf1013f9e pci_set_power_state EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc EXPORT_SYMBOL vmlinux 0xf115e18f set_nlink -EXPORT_SYMBOL vmlinux 0xf1173b14 nf_register_net_hook EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early EXPORT_SYMBOL vmlinux 0xf1240c80 __quota_error -EXPORT_SYMBOL vmlinux 0xf125a593 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0xf127dbd8 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xf1331c4e unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked -EXPORT_SYMBOL vmlinux 0xf14da4e2 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf143fe55 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xf148d5bd param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xf188721a udp_set_csum EXPORT_SYMBOL vmlinux 0xf18a3433 param_ops_hexint EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a1ca76 tcp_check_req EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf1b0be0c filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0xf1b3c63f reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xf1cdad4b tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns EXPORT_SYMBOL vmlinux 0xf1da1159 truncate_setsize EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f7f4ce kernel_connect EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0xf21df52f migrate_vma_pages EXPORT_SYMBOL vmlinux 0xf222d70b set_page_dirty_lock @@ -11190,179 +11193,177 @@ EXPORT_SYMBOL vmlinux 0xf2554d4b blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0xf258741f nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xf265a1e2 tcf_register_action -EXPORT_SYMBOL vmlinux 0xf26d81c7 dev_alloc_name EXPORT_SYMBOL vmlinux 0xf273d29d iov_iter_alignment EXPORT_SYMBOL vmlinux 0xf287714c pci_fixup_device +EXPORT_SYMBOL vmlinux 0xf2887d20 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xf28cb383 sock_create_kern EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init EXPORT_SYMBOL vmlinux 0xf29cd557 unlock_rename EXPORT_SYMBOL vmlinux 0xf2a1e4c2 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xf2a46a90 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xf2a72998 console_stop EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback EXPORT_SYMBOL vmlinux 0xf2b2da71 pci_get_class +EXPORT_SYMBOL vmlinux 0xf2b3809e xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xf2bfc014 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cc67e6 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xf2d8243f folio_migrate_flags EXPORT_SYMBOL vmlinux 0xf2ddfb57 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0xf2e2b61d input_set_keycode EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f2364c ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f61ddf reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xf2fbac38 put_fs_context EXPORT_SYMBOL vmlinux 0xf2fbc79d seq_path +EXPORT_SYMBOL vmlinux 0xf30c66f2 skb_pull_data EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0xf34fb7e4 dquot_initialize EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf353d274 ppp_input EXPORT_SYMBOL vmlinux 0xf355892c __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xf355ec77 inet_select_addr EXPORT_SYMBOL vmlinux 0xf36d7a98 read_cache_folio EXPORT_SYMBOL vmlinux 0xf36e844d clk_get EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf38d525b __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xf372245c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf37dd381 reuseport_add_sock 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 0xf39cd77d cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xf3998865 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf3b2019b inc_node_state EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put EXPORT_SYMBOL vmlinux 0xf3fd65d1 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xf40427b5 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xf40b9ed3 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xf417ef96 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf40ba1e1 skb_condense +EXPORT_SYMBOL vmlinux 0xf42558f7 vlan_vid_del EXPORT_SYMBOL vmlinux 0xf42d3cbb jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring +EXPORT_SYMBOL vmlinux 0xf42e8ac7 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf451a76d param_set_short EXPORT_SYMBOL vmlinux 0xf46166af mpage_readahead EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all -EXPORT_SYMBOL vmlinux 0xf4726457 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf475d637 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xf476d139 done_path_create +EXPORT_SYMBOL vmlinux 0xf47eb50b dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xf48e0411 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xf4b9d93c phy_device_register EXPORT_SYMBOL vmlinux 0xf4be7f8a vma_alloc_folio EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4e32c93 serio_reconnect EXPORT_SYMBOL vmlinux 0xf4ef8e33 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fd7dbf tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xf502c117 tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0xf505d2f0 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xf50e4f7e xp_dma_map EXPORT_SYMBOL vmlinux 0xf515fc47 __dec_node_page_state EXPORT_SYMBOL vmlinux 0xf5165484 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xf51c5677 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0xf54cb3f2 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0xf55155b8 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf57f0b54 tcp_peek_len EXPORT_SYMBOL vmlinux 0xf5831381 bio_kmalloc EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5d0b8d6 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xf5d5f300 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0xf5dafb92 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xf5e029e4 sync_blockdev_range EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5e9217a sock_sendmsg EXPORT_SYMBOL vmlinux 0xf5ecd02a blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0xf5eea66e blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xf5f89cac __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf5eee56f ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xf5ff7dac truncate_inode_pages EXPORT_SYMBOL vmlinux 0xf60a1ca1 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xf60b33ab seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark EXPORT_SYMBOL vmlinux 0xf6279c29 set_posix_acl EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf62e891e rt_dst_alloc EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf652cd3b register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xf66050d1 kfree_skb_reason EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6662ef7 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6ac03fe ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xf691aa1d netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xf6b54eff ww_mutex_trylock EXPORT_SYMBOL vmlinux 0xf6baf0eb flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xf6d009ee ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xf6e79cd0 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf6fd7164 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xf6fef967 inet6_offloads +EXPORT_SYMBOL vmlinux 0xf704e256 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf70f7e5e __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xf7131f5c framebuffer_release -EXPORT_SYMBOL vmlinux 0xf7162ab1 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf72c2796 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xf7368e4c simple_dir_operations EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf745d0a3 scm_fp_dup EXPORT_SYMBOL vmlinux 0xf74e4d32 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0xf7523f66 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xf75285ca phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xf7961a73 __nlmsg_put EXPORT_SYMBOL vmlinux 0xf7a73c41 input_match_device_id EXPORT_SYMBOL vmlinux 0xf7aa2328 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf7cf26eb __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xf7e5ad20 folio_add_lru +EXPORT_SYMBOL vmlinux 0xf7e75435 tcf_exts_change EXPORT_SYMBOL vmlinux 0xf7fa733e of_node_name_prefix EXPORT_SYMBOL vmlinux 0xf802331f devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xf8047e3f tcp_read_sock EXPORT_SYMBOL vmlinux 0xf8119f79 of_clk_get_by_name 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 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8407472 sock_bind_add EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf85e9624 ether_setup -EXPORT_SYMBOL vmlinux 0xf864c673 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xf86d32e8 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xf8b64531 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xf8b9ffdb dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf8c110f2 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xf8c92ce7 backlight_force_update EXPORT_SYMBOL vmlinux 0xf8d03762 module_layout EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8d50878 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xf8dc015f inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns EXPORT_SYMBOL vmlinux 0xf8e4e273 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xf8f11c66 km_policy_expired EXPORT_SYMBOL vmlinux 0xf8f486ac pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xf8f4ac0a __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0xf8f5ae41 agp_generic_free_by_type EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var EXPORT_SYMBOL vmlinux 0xf90b3df7 iunique -EXPORT_SYMBOL vmlinux 0xf91015c8 __skb_pad +EXPORT_SYMBOL vmlinux 0xf92aa1a4 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xf9350fa2 add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf94c8832 __mdiobus_write EXPORT_SYMBOL vmlinux 0xf951d22e block_commit_write -EXPORT_SYMBOL vmlinux 0xf95f5e06 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xf96aa020 agp_backend_acquire EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97edc14 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xf996659b sock_kfree_s EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf9b832c5 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9f852ef nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end EXPORT_SYMBOL vmlinux 0xfa0f8071 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xfa10be43 poll_freewait +EXPORT_SYMBOL vmlinux 0xfa20c650 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0xfa33fb11 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xfa4072fe security_path_mkdir EXPORT_SYMBOL vmlinux 0xfa4acd60 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa7d7cfc neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0xfaab04e1 i2c_smbus_write_byte_data @@ -11370,23 +11371,23 @@ EXPORT_SYMBOL vmlinux 0xfab560ef vfs_get_fsid EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfacc25e7 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xfad3723b icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xfad6223a file_modified EXPORT_SYMBOL vmlinux 0xfaf265e3 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xfaf51491 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0xfb003c84 sg_miter_start EXPORT_SYMBOL vmlinux 0xfb0c8574 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xfb18d020 phy_find_first EXPORT_SYMBOL vmlinux 0xfb1b9b20 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xfb1f46a2 dev_set_alias EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul EXPORT_SYMBOL vmlinux 0xfb29152b blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb4663af xfrm_find_acq EXPORT_SYMBOL vmlinux 0xfb66f9eb devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6c1a0f kernel_getsockname EXPORT_SYMBOL vmlinux 0xfb853331 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0xfb8553ca tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xfb8bcda3 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock @@ -11395,7 +11396,7 @@ EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad EXPORT_SYMBOL vmlinux 0xfbb8e262 dev_uc_sync EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbdc2390 skb_store_bits +EXPORT_SYMBOL vmlinux 0xfbccff5f dst_destroy EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next EXPORT_SYMBOL vmlinux 0xfbeb1889 phy_validate_pause EXPORT_SYMBOL vmlinux 0xfbf37670 bioset_integrity_create @@ -11404,16 +11405,14 @@ EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue EXPORT_SYMBOL vmlinux 0xfc42fc97 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xfc46ed13 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0xfc53f133 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xfc662e86 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xfc56fdbf seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xfc680c24 ptp_find_pin EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xfc71ae40 security_dentry_init_security EXPORT_SYMBOL vmlinux 0xfc914ff8 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xfc9b9b7f __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xfc9e22a0 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xfc9fa7cc seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xfcbfdc09 free_task EXPORT_SYMBOL vmlinux 0xfcc415ac vme_new_dma_list EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfccf4025 pcim_iomap_regions_request_all @@ -11421,12 +11420,15 @@ EXPORT_SYMBOL vmlinux 0xfcdebcc9 default_llseek EXPORT_SYMBOL vmlinux 0xfce524e9 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd051798 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xfcf20c09 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xfd14bfbd i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xfd43ac62 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xfda0499b inet_shutdown +EXPORT_SYMBOL vmlinux 0xfd533ccf nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xfd7e2dac security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xfd98d29c param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0xfda0ef41 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xfdc89e7f sock_kfree_s +EXPORT_SYMBOL vmlinux 0xfdb6539a dev_remove_pack +EXPORT_SYMBOL vmlinux 0xfdc04d42 ip_setsockopt EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource EXPORT_SYMBOL vmlinux 0xfdde7535 get_cached_acl @@ -11438,42 +11440,41 @@ 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 0xfe202e60 skb_vlan_push EXPORT_SYMBOL vmlinux 0xfe36686d md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xfe3788e4 nf_log_unset EXPORT_SYMBOL vmlinux 0xfe3a1ac4 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfe3e52ed inet6_add_offload EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe50a99d __bh_read_batch -EXPORT_SYMBOL vmlinux 0xfe57549a vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6b21cd secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xfe7d7019 dev_set_threaded EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe927182 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xfe9a413f tcf_em_register +EXPORT_SYMBOL vmlinux 0xfebe4c5a mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xfece065e xp_dma_unmap EXPORT_SYMBOL vmlinux 0xfed07390 debugfs_create_automount EXPORT_SYMBOL vmlinux 0xfedb15a4 radix__flush_tlb_page EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu EXPORT_SYMBOL vmlinux 0xfee8de6a _raw_spin_lock_bh EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef7779c qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xfefbf1b2 inet6_protos EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute EXPORT_SYMBOL vmlinux 0xff066393 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xff170b02 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2205ee tcp_release_cb EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff36d266 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xff345789 __udp_disconnect EXPORT_SYMBOL vmlinux 0xff3e70cd agp_copy_info EXPORT_SYMBOL vmlinux 0xff5f51bd inode_update_time -EXPORT_SYMBOL vmlinux 0xff621e25 arp_xmit -EXPORT_SYMBOL vmlinux 0xff64f8cd neigh_event_ns EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6f502e inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xff761224 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xff794f31 security_sock_graft -EXPORT_SYMBOL vmlinux 0xff7ade06 proto_unregister -EXPORT_SYMBOL vmlinux 0xff887236 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xff80a7a4 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xff945bb6 proc_create_seq_private EXPORT_SYMBOL vmlinux 0xff9b832e kobject_get -EXPORT_SYMBOL vmlinux 0xffb2d29d sock_bind_add -EXPORT_SYMBOL vmlinux 0xffb40825 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xff9e94de security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xffb70700 bio_put EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xffc69840 input_get_poll_interval @@ -11482,7 +11483,6 @@ EXPORT_SYMBOL vmlinux 0xffe690fd udp_table EXPORT_SYMBOL vmlinux 0xffecc895 input_get_timestamp EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff810b6 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xfffe3242 pcie_capability_read_word EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x00f446d5 kvmppc_set_msr EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x027c3a74 kvm_write_guest_cached @@ -11601,24 +11601,24 @@ EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfbe5b2fd gfn_to_pfn EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe21ab6e kvmppc_prepare_to_enter EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x1fa72e1d kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x049ccae7 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x06fff2de af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x15669e6d af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x47c2759a af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x4b6d6c4d af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x5832f832 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x6b59d55b af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x72080e3e af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x7f30479d af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x88967baf af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x8a4ae217 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x9942e7a9 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xa5087067 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xb284a103 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xb43d2cdc af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb250851 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xf7022918 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xfa815d89 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x077fca1c af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ac0999a af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x120968d6 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x13909b49 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x144ed66b af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c01c9b2 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x1e55a62c af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x2fb684ce af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x69349a14 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x724d0667 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7c885dfe af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fddec87 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x8469d17b af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xb8e94e80 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xbef248b1 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc3c6a823 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc99c4865 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe141fa90 af_alg_wait_for_data EXPORT_SYMBOL_GPL crypto/aria_generic 0x07bd9706 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt @@ -11725,52 +11725,52 @@ EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header 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/ata/libahci 0x050af5f8 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x178b6443 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1800d9e3 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2847d046 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x42a7a39c ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x43032d9d ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x57d0e739 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x751ff0c4 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86fb701a ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa4b10232 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba6ef95b ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd5b4cde ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0d3bbfe4 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x17ceb4ad ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x214e33ca ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x34352b4b ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x416d5300 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x41a6b9dd ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b2c00ed ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5a6fdfdd ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68cf12d9 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95c6729d ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x960b602e ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa17fc50d ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa9202c89 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa0f674f ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbcc7eec6 ahci_init_controller EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc305a96d ahci_shost_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc49662e9 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc503aa7a ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc5315b2c ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc91dc937 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd0197b07 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd25d6116 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd21fb8d ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7c7af28 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe7c902db ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xca11725b ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1d50125 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd4cec117 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd837eb1f ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe6732816 ahci_set_em_messages EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeaee6f38 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf9a93b21 ahci_reset_controller EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfd792955 ahci_sdev_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0fc82561 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1753dda7 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1bd80421 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfe4e95d6 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2146ffd9 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2a2e04bd ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3703ef75 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3dd6c90d ahci_platform_get_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3ff97dda ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x52049fb2 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x53e67696 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x45aa63ed ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4dd153fb ahci_platform_enable_clks EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5bc80242 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x681451a0 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x77a73802 ahci_platform_find_clk EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7973e0fa ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7e196aed ahci_platform_enable_clks EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96054093 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa40dcd53 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xafb5fb2c ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb2f3860a ahci_platform_find_clk -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc6ff4c66 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9d23f2fd ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa1630d4c ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa9ae4dbf ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb3dce5b5 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb629026b ahci_platform_enable_regulators EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcf719512 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xecae9b08 ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef20a5b9 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf1dc4650 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdbb1b1c2 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf88e59e6 ahci_platform_disable_resources EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x964898cb __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x76ec4cd8 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x004c33a8 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 @@ -11841,61 +11841,61 @@ EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf9e0d5b bcma_chipco_b_mii_write EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6aa6f22 bcma_find_core_unit EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc769a6b8 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x00a6e918 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2e1cb4b9 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e3f8aba btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8224d5f3 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ba3816d btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xaeedee1d btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb9bde2c0 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc94afb73 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x219a7d9a btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x268f8027 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x29aef569 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b432f78 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x355a04a1 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x584f0944 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x58d9c23d btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8465cb78 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89c1553b btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8c8f545a btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8d4acf83 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x94a8fabc btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9f6f829a btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc341fc7 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc220643e btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd6249b21 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf10ae3d9 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1fb28914 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x27d169c0 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2d1df5cf btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3fb648a8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79a13abb btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79c848dc btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c01adec btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb8fbff1e btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc01b23aa btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd76b00ba btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf309bf28 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4978c146 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x626afa58 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x8e2176e7 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x24a103ff qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x33e67b6e qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4c1f8280 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6ddb648e qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdd3f58ae qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0c741eb1 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2683778a btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4d7fe7f5 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x594fb875 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x77cd1344 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x22fb5baa btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3438e179 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x44473f0c btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x54546686 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x57875bac btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6f107c59 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa502f11f btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfd77d041 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x055d15d0 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x069a221c btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x11ba4761 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a3dad00 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x30ddd972 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x581c941a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x61ad7ce5 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6272ea32 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x81a5361d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x855f7e02 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa200ed8e btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa6c6d45a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac8dc546 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc310a8cc btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcdc888b2 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf3cdb533 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf64a36c9 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x138c0e90 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2b69f01b btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a9ca386 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x483da350 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x506f276a btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c99db55 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7a3d3dab btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab755caf btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde4d1158 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf4111e0 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xecf28037 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x1248b2b6 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x835fc7f4 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xda93264a btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x62159178 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x78959648 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x94468d3b qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x97645632 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xde3e9f16 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x20adbcee btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4e44b147 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6a63d90c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8042577b btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd4a06be1 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x35c0de5d hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x42d835e5 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x62860ab2 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xeb0b0b07 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc49b4f37 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf0833f21 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x327c07f1 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x688e377c hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x930b92f2 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf3d43560 hci_uart_tx_wakeup EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x59afbbee mhi_ep_queue_skb EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5a0c8ff0 __mhi_ep_driver_register EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7462a1a1 mhi_ep_power_down @@ -12094,73 +12094,75 @@ EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x9eba58ed nx842_crypto_decompress EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xb56e0297 nx842_crypto_exit EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xfca90349 nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05b48f34 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x098e95f0 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d2c4d71 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10db9860 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x127df06c adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x17b081aa adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x18e3a586 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x052ccb14 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x071e07a7 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x076f6ead adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x07a50a81 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09beee2f adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0ea66f6a adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0f1ae48e adf_devmgr_pci_to_accel_dev EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1a15ad3f adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1e147691 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1eee96c6 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1fb0a568 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x208ddf37 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23d4d361 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2958a3a1 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2af32f08 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1bf5e432 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1d342ae0 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2038ba1e adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x295bfcac adf_gen2_cfg_iov_thds 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 0x35e5da08 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a8110b6 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d4d839d adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3be4aad4 adf_isr_resource_free 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 0x3ec1f58f adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40331c6a adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x42dc6e44 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x492fdbb6 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x554b0998 adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x58498cda adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59633b66 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ef5fa6e adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48c68457 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x56d218fb adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5a5e91b1 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5cb4c459 adf_disable_pf2vf_interrupts EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5df60b06 adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5df924e6 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6119607c adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6bf063ea adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x71cc24a0 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x721021a5 adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7268c712 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x788c1de7 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x81c50947 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84620a26 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x85a684f3 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8fbe3fa5 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x96a19f67 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c924afa adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9e77d43a adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa694c2f9 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab1cb376 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaf9471a0 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0a69090 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb494f46b adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb622dec6 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbcd575c0 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf0bd37e adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf727044 adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0af25a2 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5f7aa844 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x63d214e5 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6459fa3d adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x67ff4f73 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c45ba55 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7a7e3c20 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d71c235 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x85da8814 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x86f3d165 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8702baf7 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x87665d78 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8eb7d2a5 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x90869512 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94ad1f18 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94cc25c2 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ae8b4f8 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c4ba8f7 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa5e075ce adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad38199b adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaf80ec39 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3326a69 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb4fc1f7e adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb93f2275 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc1c9020c adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc3e1e712 adf_disable_sriov 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 0xc7619d5a adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc57ada82 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc83e0162 adf_gen2_enable_error_correction 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 0xd2b0dacc adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd588df83 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5c7aabc adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xce8b3ae8 adf_gen2_get_num_accels 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 0xdcaac1e0 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe0de7680 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd7ef5010 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd9394712 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdbcd8eb6 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe117f7d9 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe23a302d adf_gen2_get_num_aes 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 0xe6a48da6 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea46a910 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xecee65d6 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfaa86cf2 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfbfd3b75 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xed567c66 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xee6b6f2f adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeef33fb3 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf099b974 adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf6da3c28 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf7f55b1a adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfa1e6fce adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfb27c07b adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xffd2bba0 adf_enable_pf2vf_comms EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xff40c1c5 dev_dax_probe EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x734decab dw_edma_remove EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xd70ff86d dw_edma_probe @@ -12697,18 +12699,18 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf20f7d4f iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf33476ca devm_iio_channel_get_all EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x048561a6 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x08c52daa rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x25604c48 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x365b91e9 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4fba0195 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x604b5759 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x800cba0b rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8fc37cda rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa4c255ea rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcaa08ab5 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf90f8e20 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfad5dd80 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1ee7effe rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x55573cac rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7ade9ef0 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x887d1f1d rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8eb39e45 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8fc184bc rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9ef87238 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9f8fbf96 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa1f1adac rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb0db4a61 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbdb522b7 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd286db46 rtrs_start_hb EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf2a8e997 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcdddf795 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend @@ -14199,81 +14201,81 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfc3757d2 devm_mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfe0f3e9e mux_control_put -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x04673a10 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x713976d5 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1f8976c4 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x33a991b5 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4d932f5b register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x799c2fec c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd5b11c2d alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe60d0f6f unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2848810f register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x52bffb31 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9768442b alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd63b7ae7 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x001621f2 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e1c1bda close_candev +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x4493fbdd arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9e7f6ab9 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x02867e5c unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4c54749c c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x95e3b0de c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb98a9066 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe934ba38 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xec27c3f3 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x03f4822d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x23f4e912 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4f0a4389 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x605e9dc8 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0b345f0a alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d09d2e9 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e1f647e can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ebb854b can_bus_off EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x124f780f alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a076256 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d6b27e3 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b72a82f can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f73a223 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x31a4c810 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f27abdb alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bf279c7 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5e3e040b can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16d168b2 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a0bf90e of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2220e7f6 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x28544053 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x28721bb4 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3243baf9 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x418a003c can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4582aae4 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b559370 can_skb_get_frame_len EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f84059d register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x704fd09a can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x729ce797 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74143d04 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b7a2987 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x892d9ef8 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8acee77c can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x94a5936d free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaba1117c can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabfb5b69 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb233c276 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe6dc217 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8e9740a can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb0520c8 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb99829c can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd48f7e5a can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdebdcd97 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdfa4f660 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x63fe0142 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65269c81 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c855a98 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x79193fac can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x898fa307 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x973b1f02 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9a1c211c can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0f40af4 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaf6d6cb9 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbebb8240 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc0742dd4 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc2ebf57d open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdeb535e2 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdfc75bdd can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe17657a3 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe399e1d1 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe91efaa1 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe98ad3b6 can_free_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf29ac00c can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf5b56298 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7cb41e8 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4a7ce26b m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5308d5de m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x55d061e0 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9920303c m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa22e18a0 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc54192fb m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe338c5a9 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf94cb84a m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x35880b7f unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x36cf1f42 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7430845 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0f6b546a m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x43f78478 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x67ed6ac8 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8a8af75b m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9a5e027b m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa0061328 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa05d51e6 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbfdab645 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0a5aeb86 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2c522cb3 register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x78555ed4 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8940a77c register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xa0ba2135 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x66386f5a ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xa312861f rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x04ee2a13 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0674e261 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x18a80469 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x19961c35 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x26daceaf rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8d772e14 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb95dcb66 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc67747e4 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xccdad642 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd8c18bcd rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdeeb053d rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe98264e2 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x82534545 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x902cf931 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x49e421dd lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x7ca228d5 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xc3395ec6 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x042b114a rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x28dcae90 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x347c3e69 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x55cc9354 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6d97e8d3 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x89a9bc3b rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbea9f7e4 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xca03f892 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd6b5ae60 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdb179ba1 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xeb74d8d3 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfa1a4a4d rtl8366_enable_vlan 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 0x8f166028 enetc_mdio_read EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x8f7d4bab enetc_mdio_write @@ -14289,58 +14291,55 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa36cd83e fun_free_ring_mem EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc3186e53 fun_submit_admin_sync_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd7d4f6b1 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x87b67258 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xd7f5526e i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x41f51234 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x497fb8a8 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcd2d72c0 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcec9efcf ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xff6fcbca ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc034f441 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xeb473792 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x19378d84 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4d6961cf ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5f1c9e95 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x67727a3e ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6eef18cd ice_rdma_update_vsi_filter EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c90abb mlx4_flow_steer_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0167e189 __mlx4_register_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04327e4f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05f7a1e4 mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x080e0e7c mlx4_bond EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d37589f mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ea14c9c mlx4_alloc_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f743f73 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10ce9f43 mlx4_slave_convert_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14cb025f mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18488d29 mlx4_get_active_ports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x196ceeb8 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1abd0f08 mlx4_set_vf_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b3d83aa mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b663e0b mlx4_get_counter_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c5e3530 mlx4_unbond EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x247ff269 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24cdbad0 mlx4_phys_to_slaves_pport_actv EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2744e677 mlx4_srq_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2884049a mlx4_hw_rule_sz EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a919160 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c9c5919 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d3660bb __mlx4_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31247963 mlx4_buf_write_mtt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x323c879b mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3321c526 mlx4_phys_to_slave_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34104d7a mlx4_qp_modify EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3795a550 mlx4_srq_arm EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37b39aaa mlx4_unicast_promisc_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1fadc8 mlx4_flow_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4204d596 mlx4_bf_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4316847a mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a41b2a mlx4_free_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e139e35 mlx4_get_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5193554d mlx4_config_roce_v2_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ca1e68 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52744ea3 mlx4_set_vf_spoofchk EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e9a091 mlx4_xrcd_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5622cbff mlx4_set_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ade173d mlx4_mtt_init EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cd21bdb __mlx4_replace_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d5f786e mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60e6356d mlx4_alloc_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x647ddb2d mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d166ee mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65790e44 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69a735ed mlx4_vf_smi_enabled EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69d1db76 mlx4_bf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d686c61 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7468fb7d mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76005cb9 mlx4_get_active_ports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76892dd0 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76d674cc mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779bfcf5 mlx4_read_clock EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77cdcc77 mlx4_db_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7885e55e mlx4_map_sw_to_hw_steering_id @@ -14354,6 +14353,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x823aaa45 mlx4_port_map_set EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d31a88 mlx4_update_qp EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8590e4b0 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8653b466 mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87850e9d mlx4_wol_write EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x886a0464 mlx4_xrcd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b3fbf33 mlx4_uar_alloc @@ -14362,48 +14362,48 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd5b57d mlx4_register_interface EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x909b3024 mlx4_cq_resize EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91a5f8e0 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933da9ca mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98b13004 mlx4_unregister_interface EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9af4e103 mlx4_mtt_addr EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b0f7168 mlx4_multicast_promisc_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cfdd58a mlx4_mw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d731c71 mlx4_cq_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e5dcf43 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1bc2119 mlx4_get_slave_default_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa25bc163 mlx4_FLOW_STEERING_IB_UC_QP_RANGE EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28bf306 mlx4_pd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa55707b6 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa648820a mlx4_set_vf_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa730395c mlx4_mtt_cleanup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7f268c9 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa892539a mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac817454 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae641d19 mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf10a0c1 mlx4_mr_hw_get_mpt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0af9fc7 mlx4_mr_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb262af76 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb49bdd9e mlx4_slave_convert_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb66fbba6 mlx4_get_base_qpn EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7cfb8ae mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb82d39de mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb86c6034 mlx4_db_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb956a705 mlx4_multicast_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb97f4f4d mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf5eb259 mlx4_get_vf_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfcbd57d mlx4_qp_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0921f92 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5919da8 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc596e74f mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90beed5 mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae931a2 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbef320b mlx4_vf_get_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccd2d385 mlx4_multicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd007495 mlx4_buf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0a784a mlx4_buf_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd5f6d98 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce3e3263 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfbce15f mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfcd33c0 mlx4_get_devlink_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd202d7d7 mlx4_mw_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd308f855 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd316d24e mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd629d09c mlx4_get_vf_config EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7842109 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7f65585 mlx4_set_vf_spoofchk EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd828f862 mlx4_srq_query EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda20c55c mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda2c6982 mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdadb6b74 mlx4_multicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf9505a0 mlx4_alloc_hwq_res EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2eca828 mlx4_wol_read @@ -14414,78 +14414,80 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94758c6 mlx4_unregister_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed246580 mlx4_unicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2eeda79 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf97bdc69 mlx4_phys_to_slave_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae287cf mlx4_config_vxlan_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc20c002 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc3de241 mlx4_get_counter_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd11ba31 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03300630 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0429698c mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0521ddca mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c0c96b mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05e51c59 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 0x100f28ed mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1024ddf5 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10250824 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1292af49 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1450cc6b mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x162aa7ca mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18569546 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x191a586f mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a58f0c3 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca52a72 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21537907 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x215eef12 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23077f90 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2704cc92 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ef1aef mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e645e1 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8740d0 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ade3acf mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b4fed31 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c22f871 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f42f9c7 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x344acfb0 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3abeb390 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bbc6033 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef200e4 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x404fff0c mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412228b3 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x422c3388 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48df4a8a mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e550ad8 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe2e9f1 mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c16e04 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c4d907 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60fe5264 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d40eaf3 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7168167b mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71fef621 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73172ad2 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7814cff3 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ca95303 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10231a92 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1223988a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15c33a07 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bddb8d2 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c711e6c mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ea94201 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x332b7e6a mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a7f2fd0 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b0a5cb5 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3daf9760 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42ae5421 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b3a8a65 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bd82e7e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb2d912 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51e1c26f mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5331afa4 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x547ac147 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x596ef718 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bb2eb73 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61d7a1b5 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x625d268f mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62df9730 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70f66011 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7437bbcb mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77eca699 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x790e0e63 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x793d4f06 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b7780d6 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80fb369b mlx5_dm_sw_icm_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 0x81bf562e mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8febfd65 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94e84e40 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa8d72a5 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4a93ca mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacb6283c mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad802b09 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea4db10 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc24c01fb mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2c516e6 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87541f1 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd5e65b3 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f450cc mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd98b184c mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15aeca4 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2865f5f mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d9bc2e mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a071a9 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe74505a4 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebef1ac6 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf29316a6 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd7a178 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe663bc6 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83ac2cc1 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85d1ea8f mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ea7fd0 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86548fb9 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8838406f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ae04e57 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1be046 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92c14699 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92fed3c4 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x938d7751 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x941436c5 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9457436e mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x994f3be6 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9970f3e7 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b08f874 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0010b72 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b31fa2 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f48bf2 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadee6ec6 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4796551 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6a5c36a mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb1e3140 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe59dbb1 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f5eeeb mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7135eba mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd962d39c mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd47e66c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36f1f91 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe868b8bf mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea7cd694 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb11d9fb mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee1c1a48 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b73d3c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf787c298 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9d9768b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfad1e46e mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb3c035a mlx5_nic_vport_unaffiliate_multiport EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x21636309 ks8851_probe_common EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5e11cc0a ks8851_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x81281de0 ks8851_remove_common @@ -14493,55 +14495,55 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8f169b8e 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 0x02ec4f24 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08898fd0 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08954603 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b0bed45 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f6cae2f ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d742300 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f786472 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27e60083 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x352bacf7 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ff66154 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x508532ef ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x532c6858 ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e81e4b9 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x660d4a5a ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x678c1e20 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6962c34c ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e5832b1 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f5e388c ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b80179f ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82f2d482 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84075e9a ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ac1f91a ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9956d41c ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b18a528 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa63d40a9 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf8d5364 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb36c4af3 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6b9de0b ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb71bfaa5 ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe21e128 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc11e0017 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd27ff692 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd92784ae ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1e93f4d __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9e5a2ed ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf29120b8 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf332e0b0 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf49bf002 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07a7bd44 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07e148a3 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f5ead6c ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dc85942 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fa9e9d4 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22692802 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33918391 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3603a13b ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3780d4b5 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44619f0b ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44b98a5a ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4570c5c3 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bb70afa ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5137eb5e ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55aa08a1 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58569ede ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62e76101 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6326807d ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x685d7db8 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70e16297 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8235729d __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8678589a ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x970171f3 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x985d9830 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bef47f7 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c18a708 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa82e51e7 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba17ddd8 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf3cacb0 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc39b8ef ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda96f6c2 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdaae0a5a ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd1e3f9f ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe13f10a0 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2d9c646 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2f77651 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa63a3f1 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc44a7da ocelot_port_unassign_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 0x2b5ef082 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1fd906f2 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4a63f53f stmmac_init_tstamp_counter EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6540c395 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x836d972f stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x64cd6a74 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6af75a5e stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x91e85940 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 0x942ac311 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9a633c47 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xed098c0b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa6330bb0 stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x10e5e8c7 stmmac_remove_config_dt EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1b32bf03 stmmac_pltfr_pm_ops EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2eb22366 stmmac_probe_config_dt @@ -14551,17 +14553,17 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3beca660 w5100_ops_priv EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x69eca71c w5100_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7492db6f w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x97503044 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x16b909a5 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x40ab2503 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x72fb4a3d ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd127bd53 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd5f7b1c9 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0xffcf8a5a macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x007dc264 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x088a931f macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4436211b macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x50842af0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/geneve 0x0219252d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1cb0112f ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4357ce44 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5b0b89d4 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9f1226a6 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb158445d ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x225c6037 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x705aface macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x81d59fc1 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc2bc584a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcec11a4a macvlan_link_register EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x3bb04895 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x8851ecce mdio_mux_init @@ -14650,15 +14652,15 @@ 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/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/tap 0x339c1fd5 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x4a650c6f tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x5619fdc3 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x57198e04 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xbc7a57cc tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xc1aa1a26 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xd075e7aa tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xe696f8f3 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xfa38f20c tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x00242f95 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x0d0f51ef tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x1a1c7b47 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xa1656b17 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xaa4d3653 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb85a3ed2 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xc56b15e5 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xdaeb0822 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf95ce015 tap_destroy_cdev EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x08760dcf usbnet_cdc_unbind EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5ba832ba usbnet_cdc_update_filter EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9cf25709 usbnet_cdc_bind @@ -14677,7 +14679,7 @@ EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdda0101f cdc_ncm_bind_common EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe52b7ad2 cdc_ncm_rx_fixup EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf32a06b0 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x16ff5dbc rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x5df53abc rtl8152_get_version EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04c33c94 rndis_unbind EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2495d49e rndis_command EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5aaf2820 rndis_status @@ -14718,11 +14720,11 @@ EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6a71670 usbnet_update_max_qlen EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9f008f1 usbnet_get_drvinfo EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff1f94fd usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7cdc127e vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb6d50a34 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd6b5375a vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe983067b vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x5886d88a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa02988f3 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb04f0725 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xed0a42b2 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xfacbfbea vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa9e29c6c libipw_rx_any EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33b88e38 _il_grab_nic_access EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b797f80 il_dealloc_bcast_stations EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97f40708 il_mac_tx_last_beacon @@ -14766,31 +14768,31 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9c33a2e5 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 0xcc53663c lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0257a19c mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x21806bb5 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x317d8193 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x361bc153 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x476ab3bc mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f0daa2d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x666cb1a6 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x845bced5 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x849757e6 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8616f9cf mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x86221145 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c1ba326 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb69fab0e mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb8be2e49 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb984fc10 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc2b4417 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbdde444a mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0cd086b1 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ee90d30 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2663414d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x293670c7 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3240b81a mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3aa9e155 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f92e754 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x521844df mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5528554d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7200eef8 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8764bc92 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x877f978a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x90d324a8 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x91006ea8 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa8f54a3d mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb772efd mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf45402e mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc85fde8e mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc8898143 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc98eef06 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb5ad35a 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 0xd8973781 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe2b6f14a mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe9a2880d mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xecb139c4 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3e5c367 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9974ed8 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe030586 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd7a3f041 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd9559697 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf6899424 mwifiex_process_sleep_confirm_resp EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06db4779 __mt76_mcu_send_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07cc1164 mt76_token_release EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x092835a2 mt76_rx_poll_complete @@ -14842,7 +14844,6 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x955d3ca9 mt76_has_tx_pending EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x963ef9b3 mt76_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9862bd80 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9978c399 __mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c2b632e mt76_queue_tx_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2ecbcaf mt76_unregister_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4c8f1b1 mt76_tx_status_unlock @@ -14880,6 +14881,7 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf42cb57b mt76_insert_ccmp_hdr EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6d23ef3 mt76_eeprom_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8b923f2 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa945b19 ____mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb68e683 mt76_update_survey_active_time EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfca10179 mt76_get_txpower EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfedb581b mt76_rx_token_consume @@ -15131,41 +15133,41 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0298ad14 mt7921_mcu_set_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1a43995b mt7921_usb_sdio_tx_complete_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1b6e149a mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1c03a985 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x216b8fa2 mt7921_stop EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2273e713 mt7921_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2e079fff mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3bf337f3 mt7921_ops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3ff196a4 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x54e468d0 __mt7921_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5a1dc68d mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5db794f8 mt7921_mac_sta_assoc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5eb455f9 mt7921_mcu_fw_pmctrl EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x712ae941 mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7b5a2b60 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x819a67c1 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x899db644 mt7921_mac_sta_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8b3b7727 mt7921_check_offload_capability EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8f9af3ce mt7921_run_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa769e656 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xab973aaf mt7921_mac_sta_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb754b0d3 mt7921_mac_sta_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbaf6a272 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe2b46b61 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc13ee1bf __mt7921_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe420b1cb mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe96fbc52 mt7921_ops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xeb18fb86 mt7921_register_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf0575869 mt7921_usb_sdio_tx_status_data EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf892ac59 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1cf518a2 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x221f1a8d host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x23b3f407 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5ef9aa5f wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x89b189d7 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xabf76ace chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe539dd5c chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x27ae66bd qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6cdf6e2d host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8399eb45 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x90228fe6 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa2577fd4 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa39e8c79 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xae05d250 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe7c8d737 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x13432055 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 0x34e4d6aa qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x61547ef7 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xac948ee9 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xae463ff9 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdc8fdc3b qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x378d5a02 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x61957303 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x64236fd5 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6cb7581d qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc0302174 qtnf_classify_skb EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d3845d9 rt2800_config_pairwise_key EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f1368eb rt2800_read_eeprom_efuse EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f6dbd20 rt2800_config @@ -15334,39 +15336,39 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd0f6615 rtl8723_phy_txpwr_idx_to_dbm EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0ec768f rtl8723_dm_init_edca_turbo EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe9562885 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0327d707 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x067454cb rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13b67a4b rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c4bd106 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1261bd1e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17233ef2 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 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 0x3242799d rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47d18132 rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bdf1891 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4df99f91 rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52954ef9 rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5307b52f rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58341e1f rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5af70103 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6753f602 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fe88fdc rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69c66f0a 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 0x71793b25 rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x745cec7c rtl_get_hwinfo EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7eb90425 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x846e57d9 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f92a3f rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f056547 rtl_tx_ackqueue EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x888ac4d1 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9736a872 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88d6c72c 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 0x989d8ed4 rtl_lps_leave EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b7a6f2e rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0a9fb32 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2f402c2 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb75722df rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb880a414 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4f8fc36 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc71dc27c rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa503b55a rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9c4777e rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd91d6b7 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9b7f8c3 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf04a0f64 rtl_deinit_deferred_work EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7cb55714 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4f3ba9a7 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8adfdc94 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8f7df6ec rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8f7fe49e rsi_mac80211_detach @@ -15625,53 +15627,53 @@ EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x18afc4e1 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 0x024fc396 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x089ec476 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d26c22c cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1eeeff99 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x221a5d03 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x240d1200 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2767a666 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x283e442f cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28661e15 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a06a914 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d1a0b19 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42400dcd cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42a893e7 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4325bc32 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a9bf28f cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ac7290d cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eeff64c cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f53d15c cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68bd474d cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e98f4bf cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70344597 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76874933 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a84a4fb cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7adf81c1 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05ee4f19 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0696ff6f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1839fef1 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1af1319e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e5b867a cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x211644a2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24414dc5 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24da6f56 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e8b26d5 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d8876e5 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e41b44d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4722939f cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47b44024 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x482dad11 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51bb98df cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54d45539 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a1f528e cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fdd8720 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6151da81 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6261ff2d cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6659bd06 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c6cd3de cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7473f3f1 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79c73dc1 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7be5f42b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d01989f cxgbi_conn_pdu_ready EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fe7e0cf cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80c9c04d cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x828548d0 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82d3073f cxgbi_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b0ebff4 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b87a02c cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x901ef284 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9780358a cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa414ab23 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa600fd39 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae30918d cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0055e96 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb501a37d cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8418bc0 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9ca45ba cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb784d6b cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87caa344 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a4fef9e cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8be86c24 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93126595 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabbdf757 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaec10532 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7f3ab6a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd398db2 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2a39d2c cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5ad900b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9c08f22 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb9c017d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4a0a7a8 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd1a2fd9 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeced7122 cxgbi_get_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf005db50 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf33ec9a6 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf47b12a9 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfef6ef68 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf62b81e9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf93e4e59 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9ed709e cxgbi_set_host_param EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x152c0504 fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d24476c fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2db2f627 fcoe_fcf_device_delete @@ -15701,173 +15703,173 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb0c27804 iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb8b76e4e iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07ad63ab iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08295eaa iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09fb5169 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cafc226 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00b5d4f1 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12705657 iscsi_prep_data_out_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1adb5bfc iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21b8301b iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2797c579 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x301846c7 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x201c934b iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x306cccfc iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x323654d8 iscsi_itt_to_ctask EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d86e29b iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x435e8059 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e011a6f iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x500fc59b iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5989f4b0 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d6558f5 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e3ae96c iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x733ce9ab iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7483c93b iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b92117c iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bc29e9a iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x819aa410 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x845aaa06 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85127ea5 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89965e6c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4245cfc6 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49237592 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d10267a iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e3313db iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51037359 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58685998 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62dafbeb iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62fe9d85 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x661654dd iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x715a9a01 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ad45f3f iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83b323f8 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861a00b4 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8699197e iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b5564c5 iscsi_conn_start EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9178f0d7 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99f9ae03 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9babc335 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa07ab3a1 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6cc50d2 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac570b5b iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7d40923 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc081ccb iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1fdb694 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3203971 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9458901 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccf89b8a iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd125fbf8 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4ae7a74 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd51e8ae4 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9a02470 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9d58a09 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2e600ce iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe706e1fd __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96333107 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x965e37c4 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cf2ac4e iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f20cb9d iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0140742 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa06fa8ec iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa51c3e6a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa51fda8e iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa863be98 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9aa8a16 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb17338b5 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb60b5a5e iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba41afa9 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb35b8fe iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1e1ed9a iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc96f5e9f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc971e0ca iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc2cd256 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd42b5841 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcb2337f iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf1b4ad9 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe64369d7 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9a23153 iscsi_session_free EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeeeabdd3 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1cc1f00 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa0d9c36 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa41285d iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa9a9b93 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdf3b767 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x002ee62d iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b63689e iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x38b53373 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3983134f iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fae5605 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4874d4ff iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4da815b6 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f93ecec iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x710aabcc iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c628d9e iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x806a2f4a iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x85dab9ae iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x931df325 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab3a0cf7 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab9a5450 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee49a639 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf70ba87f iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x077e118a sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xece010ce iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed3340a2 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef11934d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf72d606a iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbcdd869 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ea9cbc1 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x242f266a iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a0cb76d iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d585ed6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f271bc4 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6512c94f iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68b46dc3 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78797e2f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x796082b9 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e5fc196 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b6f111d iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x947815c5 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9ba962a5 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa4966af5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc333619c iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf261178 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf832b6a7 iscsi_tcp_recv_skb EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08c388f3 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12ed2b85 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1835aa92 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f3cdbba sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11a11658 sas_task_abort EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x243b9112 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c5840c1 sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e932b44 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d101ed7 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48e3dbd2 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x496d5753 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x520bd365 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55e1728b sas_notify_port_event EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a8fdc0b sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66b2b48a sas_abort_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x671dec44 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6de5ddc0 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e2285d4 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72a2f755 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74379037 sas_unregister_ha EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a2319b3 sas_phy_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d469156 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x942b6c4e sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9517b53f sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa45686b1 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa84e228b sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x874b3f65 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c448545 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e325f98 sas_ata_schedule_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf6eab70 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0000772 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbced614c sas_find_attached_phy_id EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5c8b1fb sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc604b30a smp_ata_check_ready_type EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6e1d3f0 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc861aca8 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4670789 sas_execute_internal_abort_dev EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5a3698d sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6224da6 sas_lu_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6aa1d07 sas_slave_configure EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb2a055e sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc31c0da sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb8d7380 sas_execute_ata_cmd EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd7fb0a1 sas_eh_target_reset_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf2a2b72 sas_ioctl EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe13d9e2b sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2193774 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe54b0058 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed0b4c28 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4948128 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8128b1e sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7a600b7 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xebfe63bd sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecf9cff1 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf72752b7 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf88db050 sas_register_ha EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xc4dcb768 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x002d4ceb iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06667ac8 iscsi_dbg_trace EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c4b0b43 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11ccdae7 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x128ca310 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12dcf9a3 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17a027d4 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b74c80f iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b4a4fe8 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2caf86cc iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d131872 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f5993f0 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3028c395 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33ab1cbe iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08d3d37a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e23afde iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11f41279 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20e3228c iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22bde0a0 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x280b74b0 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2dcfc02d iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x304b6f6c iscsi_add_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4759ea7f iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47f17143 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48660ff6 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49418427 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f7442dc __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x418256c0 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x484c0514 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c1599cd iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c5eb169 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4eedc032 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50f9bc96 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x535e04ff iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55a8eede iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55bb1e41 iscsi_force_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59f885cd iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ad1dd85 iscsi_alloc_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6097c01d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6528be16 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67cfa94e iscsi_destroy_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6df3009e iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a8a763c iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d2e66a6 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x712dd38b 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 0x75520ab7 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82c04819 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84768484 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72bb8fef iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75b7d98d iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78640f61 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a91f9da iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83528838 iscsi_unregister_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84bc50cb iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87cc7717 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85d03589 __traceiter_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a8bbb62 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98ac98a2 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ab874bd iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ee8e429 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fd6b9ce iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98969c5b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1e7f494 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa89c0114 iscsi_alloc_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac517a3 iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafe23bdf __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3b3edf0 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb46b5ccf iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb54c8730 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacf1031c iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf4f86e6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb037952a iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0b9fb07 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0fdd86d 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 0xbd4f5693 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0525e9b iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc17aa9aa iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5f5c5a3 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc99de675 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce7dd012 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe159c1b iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0cd7ab2 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc17b8fd0 iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd54b72f3 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf827a55 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd61a9a4b iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6ca9e47 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd770d3a0 iscsi_recv_pdu EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe79f3977 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed4857fb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf32d7df1 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfbfc07aa iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdd57d56 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5af28c3 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf974d3c4 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff63dca1 iscsi_post_host_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0302d7b9 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x98f6126c sas_is_tlr_enabled EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa4bfd0be sas_tlr_supported @@ -15998,10 +16000,14 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1fe7ed3d gb_spilib_master_init EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x575947e6 gb_spilib_master_exit EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x426ad7f6 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3ebeb5b6 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x410f4be1 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x71718516 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe80e6d53 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x10ef9a00 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2c534d14 target_wait_for_cmds +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x319e9608 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x447b97c5 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7057fa71 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7b99d123 target_stop_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x96b379b3 target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xaf4ca84f target_alloc_cmd_counter EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x02cceac5 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x05d4be2e tb_unregister_service_driver @@ -16074,8 +16080,8 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0xa2549bde __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xc378e464 uio_event_notify EXPORT_SYMBOL_GPL drivers/uio/uio 0xdff37044 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5b545089 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfbcac582 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4e1e0bed usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xeaf4fefa usbatm_usb_probe EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0e682671 cdns_suspend EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x46c95e2f cdns_remove EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4ef94d5c cdns_power_is_lost @@ -16450,22 +16456,22 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xac039038 ucsi_register EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd0d7b24d ucsi_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3b1bd52 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x024e4c5c usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0a638375 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x27e4efa3 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x28eb9cc1 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21df12f4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32ad374c usbip_recv EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3b6a7de3 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f31ec4f usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4add98ef usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x50092e81 usbip_alloc_iso_desc_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7ac3608c usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d4cbfa1 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x86850ee5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x922fad3f usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1037311 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2cc11e3 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9aaa994 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcba710ef usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb6eacba6 usbip_recv_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xde5c1937 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5a74ab2 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0561f091 _vdpa_register_device EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1cecdb62 vdpa_mgmtdev_unregister EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1d438e4f vdpa_unregister_driver @@ -16606,292 +16612,292 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb2636067 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 0x159bfbae nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x94518c7f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4ca2b5ff nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5d797399 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7ab1ff3b lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa772ba1b nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb4e87fbc nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xca652800 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd4a4220b nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfe6654c4 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02850b3a nfs_init_client +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xce7861c5 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd2e265cb nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe71b86fd nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb153210 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0023e29d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01f49a3c nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x033d378e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03304c15 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0365cc8a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03c99443 nfs_file_llseek EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04aa3f24 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05f06604 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a2b28c8 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03f32303 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05c05d10 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06c2aa7d nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x071888d6 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x072934be nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a69003a nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c22e872 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cda14ad nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e693bf nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1574fa2a nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ad0f7d4 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c116a7d nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c5ca491 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ecc0400 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x149065b8 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14e4885c nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25714ad1 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24f3cc96 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2529e7fa unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26df9c33 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b3b089 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28d88804 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28e57edd get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a2f7ddb nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c8d06cd nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e1190f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2978804f nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b82a36c nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e2cfdb4 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e4308e8 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ecfc77e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30022213 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x304e534c nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30938c92 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x336d0104 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x362889b7 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365badfe nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3839f99b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3536d55b nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x375a7328 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384378d0 nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a16b832 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4461dc nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4e7649 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a66d919 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cd023a3 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ec3d407 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d7e9063 nfs_revalidate_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 0x4218a181 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4245c760 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42be647f nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4425d095 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x436817b7 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4418d32a nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x486a1037 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4871f437 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x488c37cd nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48c58831 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x496127e1 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a4805f nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4838f337 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f2243f nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4adad071 nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dc7c5ab register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e8b6c0e nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5035ef53 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a743f0 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51654e14 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf91670 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d941df4 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e73af59 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f7c1191 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50bc9a18 nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5385d90f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x545bf2ca nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55b7f951 nfs_dreq_bytes_left 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 0x5bee09c7 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c167cf5 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d5f6934 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605d51b8 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60ea9e17 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65428fbe nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x669f2cdb nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x690bf2ff nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a1903cf nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c9b6a78 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5acbee27 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aeabba6 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d1fff70 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e94c00b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62333fee nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a2e9468 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b2c039b nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6de0c127 nfs_post_op_update_inode_force_wcc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70b8a155 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f932df9 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70d9a437 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71c957d8 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724dbd5e nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743e4b61 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74c38210 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76744d96 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76c98a5b nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x773010df nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775a96a4 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77e53ed6 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x793c2209 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b7ed3f9 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ccdccad nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ef9e6e6 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x830dbf36 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x835d3419 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x845ce3ea nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744549a8 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74894b66 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76fb69b0 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7835e933 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x789f3596 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aa4a724 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac8b4b1 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c5c6589 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d4eb312 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1597cb register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8373f7b7 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d8468a nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x878e2ccf nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887ef764 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a542435 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b563d08 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c3f65ff nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cf7b651 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dae9960 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fcb49f7 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe01777 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9062f9e5 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a043ea6 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e8f640d nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e991af6 get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90d33137 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92dfba03 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c3c958 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x926b1964 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d02c01 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946c141f nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95e8d9bd nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x967349d0 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x985ffcf9 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98f135b9 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99c71fc5 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99d656b9 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cf3dda0 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dbb981d nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b34e58 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e13a5e nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3622a2d nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa70f6e3c nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98d579d2 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x993a4040 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99bd35ec nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99d90fa9 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c94f23b nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ea1ec0c nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3dc0723 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4324342 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa50093cc nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c04221 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5eb611e nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa654992f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7295e7f nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa92f1ccb nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa93be907 nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb255add1 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb36a9790 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3bb2683 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45e4769 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb52dda42 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5462267 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb59a3991 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5bdaf79 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb61eac81 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9a139af nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd64da90 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd80ec4a nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf88b605 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2e2d900 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ec239a nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae52bd54 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0d088b9 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb491bb4b nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5982724 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb637fd8d nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7934496 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba6416ae nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaec2195 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb1e64d2 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc8ba8e1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe82ae82 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee04c95 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf4cea0f nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfa8bc01 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfbc1fc0 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a55531 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc18478ad nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44c64ac nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc65832a1 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a30df5 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6ae4e3e nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc75b9733 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c968d3 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbfc8d0e nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf12fd79 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0d407d1 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1e4cf28 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd251d454 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2e6b62b nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3204ddb nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd844b6ec nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda28f79d nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7301d10 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8ed7a66 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcca280c9 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceaf0af7 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceb66846 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd19f6068 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1cb28d0 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd272372f __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ad4929 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd932c08d nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddbef149 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeb80f91 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe378a808 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5da1a4d nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6d272d3 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc79aa49 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc89dbe3 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0efb66f nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4832a34 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe540f8a3 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe83efd66 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb9aeb0f nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec677717 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecfee5e4 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed25b6e8 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3b1af25 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5587ed0 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf724a2c1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8cbe588 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb7b1661 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee7bceda nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef1542a7 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf25d2466 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf321b693 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf512731d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf52f0d1b nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf940fe9c nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbc1e9f8 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc29998b nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9c8159a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa2e5c5c nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe47333 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeff8377 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x616e60d5 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f0a7d9 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc9a5ce6 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x93f42eb2 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00454633 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0376a2b6 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0482bc64 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x064715f9 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0707b118 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07454f61 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09261dd9 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c727092 pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x108a13d8 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1401117b nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157ae8df nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fb51247 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x211f7d92 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24badc3c nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2766eb23 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x107146d4 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15b21713 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18f3ad50 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d0cd5fb pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21090273 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25126ed0 nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aa9a500 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2be132a6 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dbc15c4 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f4e8351 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f0dde26 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36ec2e44 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x379d3ce2 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38062d54 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e00cb8e nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43b37f7c pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aa5c4bb pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b75ec1e pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bf2a26c nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c299312 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32f1bc5e nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x332a68ce pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ad61e96 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x446bac1d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4878484d nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49d44e47 pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53ecb5ea nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57b17b8e pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59170d9a nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b61a34c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ab809d9 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f2ecf97 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f58c7a5 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64f48ad0 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6686914f nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6701fe5b nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67b6d45e pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x646c70ec nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65b1e7d3 pnfs_nfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75953616 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6aca533c nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c50d7e2 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c5eafcc pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c6c9cf9 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x731098fe pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x781d9781 pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x793d95c9 nfs4_delete_deviceid 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 0x7c8e0617 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81fdfcbd pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x818584f5 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81ad2467 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82f2a3d3 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8709cce4 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89efc1a9 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dd9797b __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8eb0a53d pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f41a368 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ff77df8 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91912170 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95fbd93c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83c54b31 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x862ff8fc __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x871844b9 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x914e6b34 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9441e58c nfs4_setup_sequence EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x981682c9 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98d41ca8 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99a5fce7 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99bf89cb nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a9f1c2f pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d4cf41d pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9daf3b25 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa615185a __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8892a34 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa99ebb3e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa363a9c pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad46fe5b nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ab0d7b pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5cb8a0b pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5e84724 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6bf734c pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9d67063 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9eb2941 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b778a11 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d929757 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa05b5bd3 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2375752 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa25de812 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3879631 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa472ea30 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf2b86f0 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb14b081c pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1c1cf24 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1f46575 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9db2014 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba35101a pnfs_generic_search_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd3ce16 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd9c5bce pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf6ba149 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc157e55a pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4af9770 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b8b6b2 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc522d975 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdbca87c pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf857455 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33ada41 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33e2baf __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc99a2fe6 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca2efeca pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e3c0b0 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd6270cb pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf152838 nfs4_proc_getdeviceinfo 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 0xd4a90ac1 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5bf865f pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8fdc06a __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9f10714 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaebefa3 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde71404b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4034fe9 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0e85cea nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe09054fd pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea42b76b nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe36d1552 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5214d71 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe881c15a nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8b0c5fb nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb888848 __traceiter_ff_layout_write_error 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 0xedf88746 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef909bc3 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf50478d6 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf63266e2 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee05e527 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeefb39b6 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0ae95e7 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5bfe432 __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8b90f25 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf96e7ccb pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb414e8b nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc5c1398 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd018216 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe217a1f pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfefd3ec5 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4c2bc7ce locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8db35347 locks_start_grace @@ -16900,39 +16906,39 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x378209c6 nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa1a3b214 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc4c9b18d nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x40997996 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2f3fde86 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x38af078c o2hb_register_callback +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xf1401392 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 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 0x7dc5a5f2 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x97d38c4e o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x87e05d5b o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8b5d58ce o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8ceef615 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x907b8a8e 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 0xb5a68449 o2nm_get_node_by_num 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 0xc41bb238 o2hb_setup_callback 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 0xdc1bdcac o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe68a8f62 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xda7290f3 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf00a367f 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 0x000ef4d2 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0880829a dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1f9b90ed dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9219a1be dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa731495a dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7adcf13 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbaad59c4 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc5ef09dc dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x96645feb dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc23445d3 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe6474bc3 dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfff67c79 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 0x0d4017a7 ocfs2_kset @@ -16988,8 +16994,8 @@ 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 0x8cfb89c0 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xaaa7b2ed lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1a92e3a9 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe74877ae lowpan_header_compress EXPORT_SYMBOL_GPL net/802/garp 0x1832211c garp_request_join EXPORT_SYMBOL_GPL net/802/garp 0x55afff99 garp_request_leave EXPORT_SYMBOL_GPL net/802/garp 0x66f05c65 garp_uninit_applicant @@ -17008,256 +17014,256 @@ EXPORT_SYMBOL_GPL net/9p/9pnet 0x7195df6c 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 0x833001be ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x70e6d315 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 0x27106a26 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4ec7d8a7 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x55c25fb5 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x643025a6 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6b6181cd l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaf89fac8 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc507d0f l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe24bcbb8 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xed3a2093 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x7e2f8e04 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1742d6d3 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24941492 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e5d5f78 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x31ebf91f br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x36130ec0 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x368dcbfa br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x494a3e64 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x49f45bc5 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x515789eb br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b918dc1 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x76cf80e0 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8147c425 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x96d29e8f br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x971164d9 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa0c1f3e br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaddd8303 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf6a976e br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb74551b br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6180bfc br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd0b006f br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfc7a9e1 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe46acede br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe69d2d68 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb385e7c br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf111f634 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x41da81be l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83191395 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8636f329 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb2db4c86 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbb69853b l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd9a4e666 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xda4452da l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xee573417 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf5d783b3 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x96688faa hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f9a31e1 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x104261b9 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2152f647 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3007e8f5 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x428c39a8 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x431c5986 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x473bb731 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4eec5825 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d188ecb br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x629485b4 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x638ffe24 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x682d0709 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e5534c9 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x85328a68 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x88f691c1 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9be5094b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb38d910d br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbce128e7 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce2989aa br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd365ad73 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe356312e br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe66701d2 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8160f75 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf1a4bf3e br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf54d990b br_mst_get_info EXPORT_SYMBOL_GPL net/core/failover 0x0fe6051a failover_unregister EXPORT_SYMBOL_GPL net/core/failover 0x4d5cc76a failover_slave_unregister EXPORT_SYMBOL_GPL net/core/failover 0xf3f47208 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c1f03ae dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x10017892 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05eba0e8 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x089abc26 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x152fe18d dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d78a2d1 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f38a2d2 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x201ea1a3 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2078c382 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x324767f7 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x340ca6fd dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37b881d7 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3fca7701 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ee2d7b5 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x379f0dca dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3bd97f88 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d930a44 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x455417e7 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47c07c2b inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x482127e1 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55ece1ef dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x57d62250 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x585e6fad dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x513a290b dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d18018a dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6022069a dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x65852ae0 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b2d0f15 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5da61d5d dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x7132cad4 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x79a7e809 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7db42f6f dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f8d6788 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x869d135a dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8156a7d8 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82a116ff dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x82ed2ff4 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88e5d9e0 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eed49dc dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d3e9273 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9efa4dc dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa134226 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaeaa1ad3 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc29c0d03 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8f30011 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac763f30 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbca8ff36 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdd86e46 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7ffa86d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf27b42f dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd25463b9 dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf3d496f dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0d7d64e dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xebe263ed dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0cf2ceb dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf52e15f3 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf96c0b2a dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa16065a dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe34a822 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x09d9c5c0 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ec7c13d dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4402608a dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8cedb245 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x93785b08 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb8deb2f1 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04d40eac dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd837d162 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2e2ba2d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6632e42 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea4d810c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea548c00 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee10f55b dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1e4f266 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x17964d0d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x53853788 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x540a394d dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x76ae4ef6 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7880dd83 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfbd493af dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x057c880f dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x05887e74 dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x177560b9 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18baf4d9 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x24a51d42 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2dad45f9 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32a3a274 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40eb5704 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x24407ad0 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d9839c7 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3124b573 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36dd5ee4 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37d83112 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38b7202c dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39c31dcc dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3be221ed dsa_devlink_params_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 0x57a42bea dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5a2e1fab dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61e945f8 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74ea9db5 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a4c3ea4 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ad914cf dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c85dbf9 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8f9fc427 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x92f41ed3 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94ebb97e dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x977cba02 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d34464a dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60ea6052 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72df947e dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d168ae5 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82557c80 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x857e92d8 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8710d5aa dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8755b676 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8897327f dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9668a9d9 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 0xa619cd54 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xabb5fdf9 dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb9657a33 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa44c6a0f dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xadfe84bc dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb77bcc99 dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc3235215 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce0e405b dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce10ae7d dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd4a9594 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xde7e800f dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe61e31bf dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdcc9a047 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe00c4039 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe1a6ce61 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xec886b96 dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf46196fd dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9eef7ba dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf558fe01 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9bb3f53 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfca61b1f 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 0xfe70ce48 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1c3b2abb ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x516cf27e ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x72725f66 nl802154_scan_event EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7f5c85e6 ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb4aed572 nl802154_scan_event EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xde8dde42 ieee802154_hdr_pull EXPORT_SYMBOL_GPL net/ife/ife 0x3de17f21 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 0xd35f66df ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0d286958 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x32a2383a esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf2970422 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x33f3ef3f gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa6079d1f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3cef3409 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x51e15970 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5eae9c1a inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7a302616 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b7e4549 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x96d79e2e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc6631cdb inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd04f816a inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe82a5957 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xca6ece2e gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x065bc580 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x14fad7aa ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e63b8fc ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20c46792 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x242aa766 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x387e0eed ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3da53664 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e80b14d __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x553f9d51 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x57ee80dd ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c95a1e0 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x620de423 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b436c26 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76182b50 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x813adb73 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xadb4d537 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd2758e0 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa31ff1e0 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x689083e7 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x813db2d9 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb35980f5 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x2589efcc nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x12e158fc nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5960d458 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x61e3377b nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8ffed03d nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbf27829d nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xccd8cec2 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe4b45a85 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xac8e40d0 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3018d7b6 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x455bd3d7 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa56a605a nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x35551a06 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x3aeedb4f nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x79b70062 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcad95cd8 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcbeae278 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdd5ce165 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf648b98a tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a691782 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2d985c9e udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x41a7fb25 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9b20e5e2 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb4670dbf udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcb759578 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcdc440e9 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe256b7a9 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x47ecb8de esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc120cb5e esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe7dcab89 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x239ce369 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5cdc5889 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe92912bd ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x99a5fd65 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf638756c udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe8825175 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6697a761 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x69b86626 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbd280ca2 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xca7520c6 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x052ffc77 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x10f45213 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x39559796 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4c75deaa nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7a097054 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdbf58ac3 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdf91d34d nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x2be9e1b9 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x070c626d nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x77836766 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x78790e27 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9cb46dca nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xd258f492 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19296e50 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fd3e014 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x395f48e4 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d9aab97 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6520bc67 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67dc9e10 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6da93613 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73bd5e03 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90e8f830 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb13075e9 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb24938bf l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb94f0797 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc48988df l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5f98f5f l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2c591f1 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd408c2bd l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8ded8ad l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeaebaa5f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6fe2087 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa791f51 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffdde56b l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xcbbf60f7 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0479907a esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x20e1804c esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa523186a esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0xafb996ee gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbaddc6d5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1f6bf4d2 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20c74af0 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x22189521 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9642634b inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb329a300 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc652b6dc inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd7e3d0be inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8767597 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf3d2bbc0 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xaddd984c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x039595fa ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1de14f9c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x250eeea5 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x29ff9e8e ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x31448026 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36d28a37 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4ba4841c ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50e43d7e ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bea14c9 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76f1e02b ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ea92a8b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x85caf0e5 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x907b7157 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x942a630a ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xada87884 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xebb22f7f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf3a01dd1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x60a80f75 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xfb1f32c6 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x54de9290 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8d7ff758 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xa75c070c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x16ff6942 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x31d4566c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6210c201 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8812e83f nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaf811381 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc56bd965 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4a07970 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc93991ea nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x11165546 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3f7a3246 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xda520d32 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4e092c5f nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe0ec15c1 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2ec55885 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4ee128d2 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6d413b90 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9fa2894b tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc9c89a05 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0431801f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3f0cfcab udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x86f22b2b udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9a282b33 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xad51a732 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc2f586d6 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd8e1570d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf10454ec udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x94425716 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x95452bd1 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb35af657 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5254ec84 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x57c4db98 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x992f42c3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x53c33cc0 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x99a73fd7 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x77720f5b ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3c263789 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x64e4a79e nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6a1ab269 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x03feb051 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2505333c nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x58bb0977 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x65fb89e7 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x82cdb2ee nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc600d01c nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xca15c35f nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe774870a nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x4e5e3083 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x866b8b74 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8e6d697b nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xda41b949 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4a0d439b nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x69ebf066 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a2fde8d l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d994c33 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b67d101 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37acd188 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x435a659c l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4aa4d78f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fa72dca l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x75794b1c l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76065132 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x81d29e3e l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86dd42db l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86f6e5e4 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cbb9d1c l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc1837db2 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc1c3dee5 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8178eeb l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc88e7fd7 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcbc09f13 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd38f8b1a l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf76be541 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb8b9d42 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x84a29549 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x61e16d1a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x51fabb04 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02bfc9f6 ieee80211_hw_restart_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e69f138 ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv @@ -17288,329 +17294,329 @@ EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed88c848 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2f25e40 ieee80211_iterate_active_interfaces_mtx EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfad2e2cb ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1ddb9647 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4c6b76b2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x710f3266 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x87a8739c mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x02b6a021 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x034077ed mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x11727d44 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1bde785b nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x51e3f1e1 mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfaf9ae3d nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d5f8e96 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0defa48e ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x121bb592 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04d8917e ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0f9e849a ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x100e8bcf 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 0x3297338a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x261abbbb ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x286e3fe9 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2fa2f001 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x36eeabd3 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a8d3fd7 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4682ab26 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x60db0cd7 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75cc45a2 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7795a109 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x791fac53 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40a6ccb3 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x42d360f4 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x65044edd ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6da7791a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x719f564d ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x815bd497 ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x822908ef ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ce34527 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e183ed7 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9bad7ba5 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 0xbc23a416 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc04ba335 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd069472a ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7b192c2 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5a7b654 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xefe7c67e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb869568b ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc433f85c ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5066860 ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0c3b8786 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0f09c4e4 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x27f886b8 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xed4b98af register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5815579 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7520f06 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0353ddb6 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9e4311e3 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf28ee40b register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf309f70f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x09952d5b nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0c8edf14 nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1f0f56d3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x529d58b7 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5732ef62 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x70bd479a nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8fe60d8c nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd8fda737 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xeae4d278 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00627ec5 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02a907b9 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02ad5663 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x041fdb71 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x098bc87f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7a9259e2 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x916e4a3f nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x94921abe nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x004ef6b1 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03a91656 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a85e207 nf_ct_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c4ca2a3 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18922a05 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b82b117 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21db1de6 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x230a4d0e nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x115169bc nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12cf61fc nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16087f60 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17ab5d4f __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f2181b8 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20caa365 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23363142 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x276b3a71 nf_conntrack_free 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 0x2965f2c8 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a232179 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a5fc1f3 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bf70d3a nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d41beff nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x315c90f2 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31f17be2 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33b6a24e nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x364f4601 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x395ab6de nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3980f67e nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ca575bc nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e70bac4 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46c9c288 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47c9bf52 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4870ff51 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a388038 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b05776a nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c256a4c nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x511e313f nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x521b3441 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x569917d0 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58c22bf0 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a2f8add nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d9d254c nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66a06d33 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2909236d nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a4b97d8 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a924abf nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x395a86d8 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3baf507d nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3db7519c nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e9b0900 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41f194b7 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x435c1e37 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x479b5ea5 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c10436c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f81130b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54444633 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55bed8c7 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5890a5f2 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ab9b52d nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c8a36df nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f1d184d nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61a9502b nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62b31d18 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65f70288 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6653402f nf_confirm EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d908864 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6daf58ce nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73773591 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x740de71a nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7572618b nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f012a56 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x818c8ab2 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87426d8d nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x889bbc08 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ac6743e nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d51b666 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d6930a2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x703ec2ec nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74bf560e __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x763c8fe7 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x763fadcc nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7947c298 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79c614d9 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b619ec1 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e473f3a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83a4f744 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85a7e2df nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89936e31 nf_conntrack_in EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6ebd3a nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e2efffd nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f07d3b6 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aa09f4b nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9742cf51 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x975ec903 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982f30cb nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d0732f nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x990608ac nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c98725c nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa24ae2dd nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa69d8aa8 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa48f5e7 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad3270e7 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae9cb231 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9055b5d7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90cef545 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9119f882 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x953e09ff nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x977b0240 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97a7593e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b75a62d nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f17f492 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fb7ed06 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa21b7b63 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2fa710a nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa35be523 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa45d7fb2 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa517c207 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa63893b8 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabf07103 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf8cfa88 nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb27d48ea nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1f5c641 nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3c99ed2 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8cfdf6 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbba36750 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbee60ef6 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5252666 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba364f20 nf_connlabels_replace EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc205d407 nf_ct_set_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc904e170 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc965e4ee nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaa08dcb nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcadf32af nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb9ea9b0 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbc379ee __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd77bf2c nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0b86e10 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8b59749 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9103b7b nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xced673da nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd330bebc nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd485cafc nf_conntrack_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd58e2897 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd59cc782 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdafe0316 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc5e887c nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe149df53 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4e773ff nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6a80184 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec65c478 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf530ad0 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea20be7a __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea9cf796 nf_ct_expect_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf17a4dbe nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2d79131 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef369aa8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1ff0733 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2c069fa nf_ct_get_id EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6e169a6 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3c2724d nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf631de8b nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9993a63 nf_ct_helper_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0a34887c nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8c46329f nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x724877df nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa54658a9 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb4059ecb get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb7482253 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa4ff251b nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x357a6963 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3e3654c9 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x43ee839a ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x56803fd0 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x732aea25 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdd26ef4a ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfaa0eb93 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xaab2cc92 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1fbc07a4 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x009a74f5 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xaa523664 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc6773d65 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x056955cb nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c07bd43 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x23c0ce7e flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27060783 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30bb55fc nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4808bee7 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x536232a3 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5b803577 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6790f289 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97ea364a flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa5daf73f nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa67426e1 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb6d05885 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc9ec693c nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe06e16d1 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb626ce8 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf10c0bbd nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03235714 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x354264a1 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0b0caf3f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x02ee0360 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf8083bf1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1978e9fd nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x531d0201 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb63ccde2 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1c3628df nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x313acfad ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x40e8f08c ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5aa8220a ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6bb63838 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7ad19539 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x909f1c2f nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb48fae70 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x1723dc5a nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0c510786 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x461e0b5f nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x831051f2 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9aaffaef nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x25c28822 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d80bd13 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4a3ec1c0 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5082e0d7 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f46b6a0 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x63913249 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76df4a6c nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x96037d2a flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa491f235 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa752ce65 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa8b15d86 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad0bbede nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb0249d3f flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd8a5767a nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb2d3372 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf73bde56 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfbfab6d3 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0217e1d5 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03b00511 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0aa54f34 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1623cbe7 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x340067d4 nf_nat_icmpv6_reply_translation EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41e7f2a7 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x453eeef6 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5b1e35eb nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ed1c1a2 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a007dfa nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f9089e7 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89a4cd5e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x98b25f78 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99c47f04 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9eb1061c nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbc00772 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbeca87fb nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0955a5c nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd147a649 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3d6ed2d5 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x41002a95 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x581992cf nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f39482e nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x689ecbd3 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x783b36a3 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7944e75d nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7a2e8353 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87f26d1c nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9071e3a7 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9fab083b nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbfcfa1e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1b0555d nf_nat_ipv6_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xead1cb8e nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd3d779e nf_nat_alloc_null_binding EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x36bad9cc nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4fe7764b synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5a57a6d7 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68c037e3 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6a86127d ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x733e543e synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9bbf0a1b nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9cfaae2e synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbe2b59d4 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc5c5e434 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3fc1900b synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x57f27c52 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9bc62e38 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa44fba51 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbbe53740 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc78b43b0 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca633a57 synproxy_recv_client_ack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd9c4596c synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03a397b9 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0523eda7 nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07b693bb __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11e4f592 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17a4551b nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e7a0f11 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1eb20c6f nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23275184 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x265461b9 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30b7e538 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd486d19c synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd821cea1 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe5533355 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf83dd9a8 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x067f332a nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16b39e7d nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x189f2dcb nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x199ed8a4 nft_unregister_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35274556 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39250c21 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35637412 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3939ba6b nft_meta_inner_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4996aeb7 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c9b0fd3 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43e52610 nft_flowtable_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x520cb5eb nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53bf9f58 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a7fc947 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ddb5446 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f15a839 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ff9b26c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x536702f7 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5adf8444 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b29b47e nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5eea2d56 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x600a52c5 nft_meta_set_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61ac75f9 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71af1934 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80caaff5 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x893c899d nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9057f3e3 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x945306f9 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96831e4c nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bfc395c nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cdf87cc nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cfe70b8 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x620e42ef nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64e75745 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a4c688c nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6cd52f92 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b922817 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85670a53 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x879915ed nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x89d7f9d4 nft_meta_set_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2befeb7 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa50f01d1 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaab27bd2 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbaa435c4 nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2e7f0f8 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc31418c0 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6aeb6f6 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc977eae1 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8b7557f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa1edf86 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0c2e05c nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4b65048 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb632529e nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb74814bb __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe375373 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe3e34b1 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1f2a3b4 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc950409f nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd1f3164d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6f2fa61 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7b40ebd nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9138abc nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdca00ec9 nft_expr_reduce_bitwise 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 0xe77f8732 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe97d0d4a nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef0df720 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0bc0174 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe56595d1 nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf131dc70 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf486e9c7 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf66f8bae nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf98964b1 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf340058b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4616042 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf80b037f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa85ed48 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffeae310 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0427ec0e nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x18bbc42b nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5b6bffed nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86ad7f93 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xab38ae97 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc6006a5a nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc65605a1 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcbd4ca5a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x84398f78 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9bb57841 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc061164d nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdf83677e nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe442acde nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x14c47202 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4ddff4cd nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9103d0aa nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xec0bf377 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x002a4835 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x14d0ed56 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x314968c5 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe9936c29 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x11ac3f66 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9fde30d9 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7908b0cd nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7e9c729c nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x972ffb46 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb6befa88 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe01ee1b3 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xd89d9650 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0e45e8e6 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1d255de5 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2e04f48d nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6d2549b9 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcb967a03 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x010cabdb nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x33170946 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x962abada nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9b2ed207 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x76311cdb nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7bec074f 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/x_tables 0x0369032b xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1049c9dc xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1992a530 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fc9ddf1 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20d6d4db xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x289a3820 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37ae7edd xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b737bab xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ef826f3 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5627d829 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62be39ac xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6807d932 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b72b7e4 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7145e2d9 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cfc1cf xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0508e531 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05ca4180 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x08170a24 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0a5812ea xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1592450f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x18f39ba9 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f72c417 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x412850cc xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x424f1570 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x525bed4b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5750fe3e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x612d32f3 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a634d90 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x744800c7 xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7db0c913 xt_compat_target_offset 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 0x8ca58013 xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e7fc12f xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1834de0 xt_hook_ops_alloc EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb17c1ce8 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb646881f xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa97ddfa1 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xac818c3e xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb8102e60 xt_check_target 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 0xcc79a408 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2e8be5a xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd42bcfe3 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd50b1bc0 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdecada64 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea9d3248 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff845c0a xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd81b2bd xt_hook_ops_alloc EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x12b2c466 xt_rateest_put EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x27098254 xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc2980154 nci_spi_send @@ -17621,441 +17627,441 @@ EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xcfb54b33 nci_uart_register EXPORT_SYMBOL_GPL net/nsh/nsh 0x07c13283 nsh_push EXPORT_SYMBOL_GPL net/nsh/nsh 0x84ba791c nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4604820a ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x76d25618 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9b6ec0a1 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc0bd902d ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd16bb982 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf23e40b6 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x14ce8942 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x22290907 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x71102978 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xb45f53d0 psample_group_take -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7e231284 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4371fba3 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8c304601 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x954d5928 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xba26acbe ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9ca783e __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf5065841 ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x0b259607 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x7dce1531 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xb59e5453 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xcf2e23f0 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x09d724b2 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x31a53bd0 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 0xb77f52ae qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfba2e818 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe1c9fa42 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x028f6df7 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x082cad54 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x134645b6 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x1a543684 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x20146ed2 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2148ca17 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2158bb79 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x2837b887 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x2871dd67 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x04c32ce6 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x079b8976 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x15410995 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x16d810d6 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x1795c822 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1f1e56e7 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2507bd09 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x278a1233 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x289257d7 rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f74c22e rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x411e7f7e rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x439a8181 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x415b6e9e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x451d0c8d rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x47c7e27b rds_conn_path_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 0x5e23a14f rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x6203b2fa rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x6c8e459a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x5c118e86 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x5e15e562 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7e437e84 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x810e65f5 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9197547b rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x9566e910 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x99fa72c0 rds_inc_init EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xa1f6e548 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa6bb8216 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa6e6e49a rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xb74b4ca0 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xbf62df47 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xc271060c rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xaf4d89ac rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb0612de0 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xb1846a16 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb4558f97 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xb507ba60 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc811bba9 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xcbe9b867 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xdbb98712 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdc4b4ff9 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xdf46ec08 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xe04b4d37 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xec2664fc rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xf8ad2b58 rds_conn_destroy -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x29957cf6 pie_process_dequeue +EXPORT_SYMBOL_GPL net/rds/rds 0xdc5baf21 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xe8ecdb81 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf1215ed8 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xfb3f8d25 rds_message_put EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x74c24102 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x9b015c7e pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf6bd4754 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 0x41ddbe82 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x58955a14 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x60419b3c sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb0e05617 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x019f2f83 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x37c089c6 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x49e5d92f smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x6a9968d2 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x81443727 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xa2bb0e98 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xd1c86336 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd4d2bd95 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xd67add52 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xfca5ac51 smc_hash_sk +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7499cde3 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7a5553c6 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbaf19250 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfd0b1dd9 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x14fd674a smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x49f45b37 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5a67bc0d smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x7ac4b292 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8b1f6193 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x8b5dea4c smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x9b41f2e4 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc08a7873 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xe73d46e1 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xeeac232f smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x21ba4865 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x40c8f38f gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4896781d gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7c3b3a56 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc9d3632a svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd67408fe gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7857c5bf svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d1f2dd xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f5e64c _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01348370 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0423176b xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05344b28 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0542c6f6 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7ad344c gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01493adc rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x017e7e93 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0437deac rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043f94e4 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0591d859 svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07f72d37 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084d0485 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x085cc066 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a054cf1 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8b6778 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b5cd6f2 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d28ee14 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e888729 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f0a4b07 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x102ca6e8 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11acf358 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13508e1f rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16dddced svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1890c96e rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a37f5d2 svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c54f729 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c349fc svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092c17e8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09aa86b8 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b4fcbd9 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b868b31 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d96d434 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0daa4fc6 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fd20129 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1008d646 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10b4f6f8 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d7f0ba svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ee3740 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1242d3a8 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12492e3d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1328981f __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14cd4631 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x170558ba rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17f8682c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x184206b7 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187f787f xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a8d8edf svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b00f8bb rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e07956d rpc_find_or_alloc_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1741c7 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd9a9eb rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218e39c8 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219e8d03 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d619f1 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221f5c76 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f0488d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243944c1 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f7bd75 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x288de6c2 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2179588f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2298b036 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2343bb56 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24c351bd svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251ae3b3 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25cb7216 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25eaa4fd xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2728e0c4 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x280a9327 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28a1e125 rpc_add_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29c78dc4 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a62f97b xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb3cc2d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be52d15 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e8a8e55 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f19d06b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x296035cb rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29cecfe8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a85aab4 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aafa6ea rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac3dacd sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2addeeed rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca47ab4 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2de0fb19 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ef27577 xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x323eddd2 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3331058c xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e3bdf5 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31af6681 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31cf3ffa rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32aa7c4e rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3356800b xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33577db4 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3388eef9 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f0f759 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349d1354 rpc_clnt_probe_trunked_xprts EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350d2c9d svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3550148f rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a542d6 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37262618 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37622e3e rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e5aaaa sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38703ce6 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359a0152 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3602fcd8 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378bc640 csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a096479 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b89e78e cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bcf105d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c8d60ae rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf22f9a rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf32c3d rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d184545 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x388b142d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b582812 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bf063f8 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bf41b0c rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f968595 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa172fc rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fdac951 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x404c9b7d xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4082e7c0 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4148228f svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4277163a svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x428b82b2 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e26603 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482b8ea6 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488cec44 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488fb9ff cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x403a1a77 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40856d7d rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ab7d19 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x440bb1d8 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a206ee rpc_init_pipe_dir_head EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ca0c40e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d729c43 auth_domain_lookup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dee4e1b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e263dbd svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f13ebee xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f33dc74 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc39c85 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507ffb41 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ac29cf xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50be0f8a xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e91ee62 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50aa88cc rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x516b790a rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51816cd5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52c38b51 xprt_unlock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53483737 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5395ccfa rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53941ae9 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53bebbea xprt_add_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568adb57 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e88e80 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59ca6c08 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a35164a rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57f2b986 xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b573e95 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6ce1d0 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2877b6 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4e6173 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bac3529 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c6ab7be rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d03aee1 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d90c352 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f713e81 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6001d0c4 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e54723e svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f339a88 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f84f557 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f9e992d rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6040ba52 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60912f3e svc_rpcb_setup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62216ec2 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631ff3d0 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64b2efa5 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fd8ab3 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65dcc321 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65fc19d9 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66cced6f xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67848009 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681803d6 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687f9e61 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69caa86b svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab7df15 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3c8cb9 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624aa925 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63401058 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f1b768 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6674a78a xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66de0239 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6797d1d6 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68b8241c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6903d075 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c72cc1 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b1e8125 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b5880b8 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b951826 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b95567d xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d08c705 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d863ac1 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f0a1205 write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a0cb9a svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ec3cae rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78b841fb rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79528c02 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79999fc5 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ab964d rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a24f3ea xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fb4148 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7383fda4 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766a9067 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78200203 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7825de7e svc_print_addr 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 0x7d1a65fc xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d1ad533 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d76a504 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1054be rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bdd7685 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce3a57c xdr_init_encode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80719ad9 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81488138 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823fdda7 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b65eac xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873db60e rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88355839 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887021a2 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x892a92d2 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aad1344 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b962ec8 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfc4a3d xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c46de9b svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca7a66f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db43bcb xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd6a265 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de4e177 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e090ffc xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e11880a xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e140c9a rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e55e7df rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8edb8a1c rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f627e13 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9f0da6 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901fc0a2 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x935ba2d5 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9366e315 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7df9176d cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ed394d6 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ef67a83 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8033cb27 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81d3a88a rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8306f038 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83991e19 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83a2deb8 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x863a0596 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8752bd4e xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a7ced8 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89b52fa5 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ec3913 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a40f236 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aaa5341 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ae42ad3 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92fcb59d sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9335a500 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93b8b7c2 rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9471830e rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970d06f7 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978d4a03 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97e59543 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983f6146 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99394943 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99dd54c7 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9da9c3 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac516ca xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b537091 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be81d85 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d1e9d3b svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d682e45 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d77ec5a svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb9e06f svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8c0095 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa19ffe39 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3bd31d9 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56552b3 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b92eb7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x955b7d05 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96481640 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c8b5bc xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97044366 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97539259 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9764eee3 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9783a2e3 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x985604a9 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98579439 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x989a5063 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d04355 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x991234ce cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c1c3270 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca4b096 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccbaef3 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd85c9f sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eff77a0 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe8dcbe svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d8e0a4 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10fcf84 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ab8814 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22f0aaf rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29412c8 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa42ffe71 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44f3b9e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa519010d svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5f6dc1b cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6779e8b rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6976f00 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d1719f xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa311f56 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb267b0 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd7f2ac xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadcb8e4c xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6229acb xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67f72b3 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8910599 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa0947cd xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa195371 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa42a459 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4dab81 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae2b0521 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae9617db rpc_clnt_xprt_switch_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf7fbfb6 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb007cbb7 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ceecc5 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2573b79 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb26be4bb svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf778cc6 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb09fdd49 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20884a2 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b7145d svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3ffbdaa cache_seq_next_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7593728 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79f3a7a xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7fcff68 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb873ad6d rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbccc05cb xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda85a8e rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec49434 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5938a9c rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c27c40 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6cb7adc rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ca2b89 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce3f046 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd904445 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe47e9e8 svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug 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 0xc1eb5afc xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc410bdd1 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc53e5f9e svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b59ecd rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc301c4de rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f6587c svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc523726f xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d469fd rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc79b2949 rpc_set_connect_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5911a2 xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca6f644d svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb9efe6c rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe795db xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc663e6f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc846b16 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd7b568e rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdaf98aa rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb9283e rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc967e793 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9cc810f xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb628697 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfb1238 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd91abfd svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce99da79 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf0c2ea8 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff43057 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd01ce6f8 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd082d6a9 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ac800d sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd180da75 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2790c21 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd377ad54 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c7ddd5 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47ccfb6 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5697df3 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d6f0b5 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7c5bf60 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84963d2 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89719ba rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8af4ed8 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8f5a993 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd93a59fb svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2f9cba svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbff70c8 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcf4bd58 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0553ee6 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd55e6eff rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd73f4407 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd96b6964 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9dd86e1 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4adc19 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaa10f9b rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb066a23 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc08240e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc57dc76 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc70f086 rpc_put_sb_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1fb1dc xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde75e6b4 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfaf3db5 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe326d3de rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4671777 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8feb2b rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0af4b94 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0dbf093 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1393b92 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe268a435 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2bf8eaa rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c5bb6a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe45fd0b5 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7c38377 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe802ad11 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8480b7d rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a38686 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e5357f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9295659 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5cd8465 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe637d0b0 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6468eda svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b0309d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f880d0 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7123247 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7dbaf2c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe814f644 xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c88e19 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaee784d svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed3f6329 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac0e622 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf474cf svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2df0a6 xdr_stream_decode_string_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0904af5 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf10ed742 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf27c8bd7 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf311e98b cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a8820a xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4ec63e4 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78f9e99 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf917557f rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa03fb2b cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa96ffac rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe11de23 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1259e07 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf21edc33 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26bebfe xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf347a88d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf418477d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4ecf477 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a0952a svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5fad043 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf773a1c7 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd496f29 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd66d1c0 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9c6410 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdb27168 rpcauth_lookup_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe70fa38 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/tls/tls 0xb3e4e4c6 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xbf004c39 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xc3028957 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xfbb5a156 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x00ae2aa1 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02b5f395 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeee4d9f xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff25c16c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/tls/tls 0x11cd6d13 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x4b2de4b8 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x4f448e9b tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x96b44766 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 0x04d1c947 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16943026 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24ee13a9 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29642c90 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f5ac993 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32908647 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x389e254b virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a55dcf8 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ce274ab virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e53c300 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6095c13c virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68a5c1d8 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c3aaa09 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x703831b4 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73aa0460 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a56c556 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89505619 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89e5cf2d virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x922d04f8 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94bd1c7e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9698ed31 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x972c6b4f virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7ceadf7 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9afc183 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0ac77443 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d8736b9 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x175984a6 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1e67b907 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1fbad23d virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25d0ea45 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28e32cb0 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34d9195b virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35237659 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38ddcf34 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x390bb3a3 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41bf8dc1 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b05f6c5 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50556c26 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x506f6a6f virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7aaf1e0e virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7af0d757 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x816d24e5 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a89d157 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c08b5bf virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8eb55542 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x968871b2 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9a2b0e5 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba26b217 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 0xc207a743 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2b85d03 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd3a8c89e virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5cd5b6e virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd28686d virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecd6e38e virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee3d4b93 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf394be0f virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04b4d7bf vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9556e7b virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9ae26d1 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc3b134b virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe094a6c2 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1b76ac9 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe96c0d92 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9bca290 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb6d7d85 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb929e4d virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd805cf7 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a0b44f2 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ea66177 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25b426a1 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ff4df65 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x351440e7 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x327a76e5 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d2f143d vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44a40b50 vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e478d9d vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53647fc2 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56c3ca7c vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6a1b5f23 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73303743 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73cc5dd4 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77714cdc vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79c6e0b9 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b37690d vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7d07893a vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c196945 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4efc12e5 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x524bbd94 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61a66c83 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x74c2fcaa vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77920ff0 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7ffbcb5f vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8052f127 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d9bb134 vsock_remove_connected 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 0xaace38e3 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad40d2ca 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 0xc2a0b483 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc8b9172e vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe69acef9 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb86a20f2 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdaaf5fc5 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdabeca71 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe8818606 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec183563 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbbf496e vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03d73b9c cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5653218 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5ce0398 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff30a98b vsock_stream_has_space EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ba3740c cfg80211_wext_siwmode EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10b7efd6 cfg80211_wext_giwrange EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x144bd141 cfg80211_wext_siwfrag EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1b2c718e cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x22c3d40b cfg80211_wext_siwscan EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x30119f81 cfg80211_wext_giwname EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48b1b75c cfg80211_wext_giwrts EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49b038fd cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b372f16 cfg80211_wext_giwscan EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x56589db0 cfg80211_wext_giwmode EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x592dfb25 cfg80211_pmsr_report EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7bc3376e cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbc25428 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbde14391 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf818c97 cfg80211_vendor_cmd_reply EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb4309a6 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf51e0959 cfg80211_vendor_cmd_get_sender EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf5ec0519 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xff7c0239 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 @@ -18068,10 +18074,10 @@ 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 0x40097dc3 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6e651595 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7506dde9 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdfefc66e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x27138775 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x63b0015a ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x96d1f4c5 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc9160684 ipcomp_input 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 0x0aaa800b snd_ac97_reset @@ -18875,7 +18881,6 @@ EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe653f724 line6_probe EXPORT_SYMBOL_GPL vmlinux 0x000edeb4 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0x001e5efe blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x002e836d ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x00302848 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0x0032cdb1 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 @@ -18883,17 +18888,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x007fff25 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc EXPORT_SYMBOL_GPL vmlinux 0x00a58f4d regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00ae677f __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x00b5e4a2 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0x00c6a61f clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x00cdce86 pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00e2a120 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x00e359b3 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x00ea87ed nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x00ec05d8 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x010dcfef pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x0112e0a9 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x01175adb dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x01318e0b perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x013f222c __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x0177f122 component_release_of @@ -18905,55 +18910,52 @@ EXPORT_SYMBOL_GPL vmlinux 0x019a0863 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x019a6832 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01ab8a99 raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0x01af75da blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x01b21950 simple_rename_exchange EXPORT_SYMBOL_GPL vmlinux 0x01ba74a5 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x01bb6c4e blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x01bdb5b9 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x01d0fa65 disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x01d7a8bc rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01f11c54 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x01f38102 pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0x01f5027d md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x01fbffcd fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x02001e89 pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x0205a907 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x0206a812 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x02261f31 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x02329eae __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0255382b bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x027acb7b of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0x027bb5a6 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x029692ec disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x029747b9 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x029dd56b lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x02a08575 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x02b69bb5 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02baf226 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table EXPORT_SYMBOL_GPL vmlinux 0x02cf5c83 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x02ef3af7 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x03026f99 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x031020dd perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x031c6a26 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id EXPORT_SYMBOL_GPL vmlinux 0x032810d3 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0328d4b5 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x03294a0a wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x032f448b of_scan_bus EXPORT_SYMBOL_GPL vmlinux 0x03321a23 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x0336fe3d dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034d1cf7 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x0353c29d switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0x035d521c udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x0347fed6 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x03646338 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x03647c62 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x036c3ba9 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x0378f79d dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x037afe6b rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe EXPORT_SYMBOL_GPL vmlinux 0x03978082 dmaengine_desc_get_metadata_ptr @@ -18967,33 +18969,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x03d494ef bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0x03e5e2b1 __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x03e7c4c8 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03ea18e0 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x03f5e5cb devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0416869d ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x0424a10b nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x042e3464 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x042f275b crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x04334dd7 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x043a2710 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x045247ae of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0x04616d76 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046ef04f page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x04798f4f ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0489e75e mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x0494a7ff cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x0497a672 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x04b46b1e __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x04b72f5f platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x04b876f1 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04ca1fc5 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x04ddde64 kvm_alloc_hpt_cma EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x05017242 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x04fb5f26 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch EXPORT_SYMBOL_GPL vmlinux 0x051f18cc fwnode_property_read_u8_array @@ -19001,7 +19002,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x0534296f device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x053cf9f2 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x054e8da7 i2c_new_scanned_device @@ -19015,11 +19015,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x05a0c9c7 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x05b36968 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x05c75a4f skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x05cfc89a wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x05d41ac5 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x05da7257 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x05f15309 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x06045e66 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0620fa91 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x0622e9e6 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock @@ -19030,11 +19033,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x064decc3 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x0654ff24 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x065a11d2 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x065ab2aa task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x0663810f ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x0683d0e7 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x0690c222 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x06949057 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x0697856f tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0699ccba ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x06a3306e balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x06a88b5c device_store_int EXPORT_SYMBOL_GPL vmlinux 0x06a99c43 scsi_free_sgtables @@ -19044,8 +19047,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06dad915 pcibios_free_controller EXPORT_SYMBOL_GPL vmlinux 0x06de8276 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x06e64f55 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x06ef2c96 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features EXPORT_SYMBOL_GPL vmlinux 0x07021ee2 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x070522a2 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x07060598 dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0x070e45b0 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x071ec5ae uart_console_write @@ -19053,15 +19059,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x073a175c dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x07449242 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x0744e2bd msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x07451f55 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0x075f829c dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x076ded36 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x0773c55d bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x076f0484 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x076f2919 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x077685b4 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x0780415c __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x078cd6fe pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0x07a261cb blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char @@ -19073,17 +19080,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x07c43fe8 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x07e62da5 decrementer_max EXPORT_SYMBOL_GPL vmlinux 0x07e7fdd5 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07fd7add sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x07f5086c devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x082bf707 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x082eb248 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x08448c0b fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x084c7610 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x085295c2 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x0852d2b9 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x0853df02 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x0856aafc irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x08580828 usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0x0858dd7c driver_find EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x0882f5da of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x088e19cc ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x0892b094 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x08c311ce dev_pm_put_subsys_data @@ -19101,33 +19111,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0x093bf326 regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x0951139b vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0x0955c4ed ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x09673fab regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x09692732 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x096b61f5 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x0987f875 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x098b5f94 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x098cebae of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x0996b27c debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x09a021b9 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x09a5ac18 of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x09a7409f xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x09abfd20 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x09c0921c class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x09d06fcb account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x09eceabf crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x09edaa45 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x09fd0c4f lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x09ffb94c xhci_run EXPORT_SYMBOL_GPL vmlinux 0x0a08fdd6 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x0a13d5c1 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0a2c31ee ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x0a2c9934 kvmppc_check_need_tlb_flush EXPORT_SYMBOL_GPL vmlinux 0x0a2f7d55 __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x0a305646 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x0a313b6a nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x0a41a37c hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a45add5 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x0a480ffb pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0a4d5956 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a5a1eef netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x0a5e0a10 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x0a638895 blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0x0a63c0aa gpiod_toggle_active_low @@ -19135,16 +19149,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a70ce89 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x0a72f564 split_page EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a81c483 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x0a9aec61 kvmppc_do_h_remove EXPORT_SYMBOL_GPL vmlinux 0x0aaa1dc7 kvmppc_save_user_regs EXPORT_SYMBOL_GPL vmlinux 0x0aaf67f9 of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0x0ab316c5 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ac2e6bd ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x0ac803ab of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x0adb0aa4 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x0ae12753 devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0x0aefcb60 hte_push_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0afc7fcd fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x0b02d975 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b102e4c vring_transport_features @@ -19156,43 +19172,46 @@ EXPORT_SYMBOL_GPL vmlinux 0x0b2f2737 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x0b3471ed platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x0b367771 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0b437540 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x0b5147c0 rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x0b55f492 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x0b5906f2 pci_ims_alloc_irq EXPORT_SYMBOL_GPL vmlinux 0x0b678568 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x0b68562b xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status EXPORT_SYMBOL_GPL vmlinux 0x0b74445a crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x0b7b3423 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x0b7c46a4 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b97f979 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0b982567 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x0ba0917f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x0ba61c9a tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x0bacee7a gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x0bae8637 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x0bb003b0 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bc1e629 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x0bc7cc47 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x0be8e6f6 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0c04367c ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x0c081983 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x0c173a00 vas_paste_crb EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2e641b xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c331012 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset EXPORT_SYMBOL_GPL vmlinux 0x0c459330 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x0c58186f ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x0c6c2236 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x0c7ffe5f wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c876546 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c9143b5 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x0ca61f60 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc65cd3 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x0cc7cddc usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x0cd30389 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0cd73854 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize EXPORT_SYMBOL_GPL vmlinux 0x0ce946f7 of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x0cfe3724 inet_ehash_locks_alloc @@ -19208,50 +19227,51 @@ EXPORT_SYMBOL_GPL vmlinux 0x0d281509 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x0d30c7a8 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x0d389db7 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0d3a6819 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d400678 phy_create EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d53076d ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x0d4e813b get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x0d5a2950 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data EXPORT_SYMBOL_GPL vmlinux 0x0d5fb31d dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d6e1801 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x0d760a3f ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x0d7f0a73 nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x0d88fd8f devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0d8a8d9e ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0da1cd2b ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x0daae0af icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x0dacd741 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0db074d4 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x0db9877c devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0dc8db1e __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x0dd465b2 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x0dd5d1bb usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0df9b260 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert EXPORT_SYMBOL_GPL vmlinux 0x0e0b1ab3 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e25f6dd devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x0e28c417 mas_store_prealloc -EXPORT_SYMBOL_GPL vmlinux 0x0e2a9ed6 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0e2a08b6 nf_queue EXPORT_SYMBOL_GPL vmlinux 0x0e2b5dd3 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e2fee87 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x0e465f74 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x0e4c02ff msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e629e18 __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x0e70e2e8 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x0e798ff3 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x0e892dcb devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ec32fa4 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id EXPORT_SYMBOL_GPL vmlinux 0x0ed32065 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0x0ed39c2b handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0x0ed78f75 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x0ee37e19 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x0ee649e4 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x0ee7b1a4 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr EXPORT_SYMBOL_GPL vmlinux 0x0eea5a5c iommu_register_device_fault_handler @@ -19263,30 +19283,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x0f39f035 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x0f3ea019 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x0f572e59 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x0f6d4b63 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x0f6e2294 mt_next EXPORT_SYMBOL_GPL vmlinux 0x0f961789 alloc_memory_type EXPORT_SYMBOL_GPL vmlinux 0x0f9b2038 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x0f9dfc2e devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x0f9ebfc7 crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fc966e4 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0x0ff2d0c9 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x10078b63 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101fce28 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x102370d5 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x103b3e84 dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x1050f25e irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1055609a skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x10627d5f crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x107454e3 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x107ba32e devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x10a26931 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x10a64860 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x10a65e2f ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x10a8eef3 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init @@ -19294,7 +19310,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x10e844f1 restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x10f2b32e hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x10f5a2a3 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x1101222b __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x1101e201 dev_set_name @@ -19302,16 +19317,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states EXPORT_SYMBOL_GPL vmlinux 0x1141e784 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x11458888 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block -EXPORT_SYMBOL_GPL vmlinux 0x1168fddc fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x117ec9de nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x1182cfdc fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x11858c48 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x118876ca __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0x118ca374 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x11904693 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x11a102bf usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x11b13fc6 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x11b563d3 sdio_signal_irq @@ -19321,7 +19331,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e880b5 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x11ef6e11 pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0x11f85e71 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x11f87a34 adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier EXPORT_SYMBOL_GPL vmlinux 0x121e2057 of_thermal_get_ntrips @@ -19333,25 +19342,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x125475af tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x1258a8d6 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x126588c0 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x12682b8c metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x126b520b inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x126c2fd4 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x12749734 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x1279a388 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x12751090 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x12820cf5 switch_pmu_to_host -EXPORT_SYMBOL_GPL vmlinux 0x1283683d kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x129a29ab copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x12aa5358 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x12b003b9 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x12bc0d39 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x12c24faa dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x12d36f71 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x12d5ef88 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x12e6e6a0 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x12e70f99 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x12e92858 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x12ed7d8b ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister EXPORT_SYMBOL_GPL vmlinux 0x12fa4dd9 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x12fae502 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq @@ -19369,42 +19376,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x1386bf28 component_compare_of EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x13969cb8 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x13aa74d4 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x13b31678 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x13bedaff fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x13befdfe pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x13c4681f find_vpid EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13d02e76 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x13d35614 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x13d83c05 get_slice_psize EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x14096b27 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142b3797 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x142e9a13 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x14352e53 blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0x1435b4e1 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x143c1e66 of_led_get EXPORT_SYMBOL_GPL vmlinux 0x1453597a securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x1456e260 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x145a36a4 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x145bfcad regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x14770373 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x1488f463 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x1490f431 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x14b195f8 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x14d42093 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x14d51a71 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x15105fa0 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x1510e25e devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x15155903 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x1524e416 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x153704e4 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv EXPORT_SYMBOL_GPL vmlinux 0x1538156b dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x153ab572 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1546b673 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x154d141e vcap_debugfs EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x1562339f iommu_flush_tce @@ -19412,16 +19418,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x159444f7 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x15984535 fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x15aad462 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd2f22 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave EXPORT_SYMBOL_GPL vmlinux 0x15c0981d usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x15c0b963 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x15c1e421 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15dc6584 tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15ed61af skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x15f36f87 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x1619e8aa reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x161e51ac tty_ldisc_ref @@ -19438,18 +19444,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x166190b4 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16a27da1 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x16abf66e crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x16b9afe1 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x16bd36b2 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x16c1264b ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0x16d2286a vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x16d87625 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16de4671 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e8c8a4 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x16ed1323 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x16fd63c0 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 @@ -19461,11 +19463,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174eedd0 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17533dd0 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x17544ad7 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x175ddaff iommu_present EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x176561a8 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x176623d4 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1783ab1a mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x1787c544 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x179a32ad cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x17a5320c devm_serdev_device_open @@ -19475,6 +19478,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x17bcc3e5 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x17c06587 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id +EXPORT_SYMBOL_GPL vmlinux 0x17ee60ea io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x17ef85e9 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x17fcb161 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize @@ -19482,7 +19486,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x1808681f device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x18094049 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x180e803c of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x181e9bf6 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x182b91f9 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x182e6d0e irq_remove_generic_chip @@ -19493,12 +19496,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask EXPORT_SYMBOL_GPL vmlinux 0x186eb8c3 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x1875fd6b hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18826cfa pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x188446f3 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x1885fd8c fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x1888a15d dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x188c38d8 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x1898ae23 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x189d3c7d skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x18ad5561 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x18b47190 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x18b5779f dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x18b9a498 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0x18be0194 pinctrl_find_and_add_gpio_range @@ -19506,7 +19510,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x18e654ea fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x18edb9d7 inet_pernet_hashinfo_alloc EXPORT_SYMBOL_GPL vmlinux 0x18f185f3 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x18f35394 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x18f459e0 of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid @@ -19517,6 +19520,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1938736f iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x193ceb05 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x194bd674 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x19579b5f crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x196086f9 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init @@ -19527,6 +19531,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x19879bf8 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a54f26 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x19a6ce1d gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x19b2c6d6 vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister @@ -19537,12 +19542,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x19dab35b ftrace_set_filter_ips EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener +EXPORT_SYMBOL_GPL vmlinux 0x19f36c7b ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x1a002550 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1a00feb0 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x1a078a0a usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x1a0eff98 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a207595 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x1a2550ec irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x1a2b567e devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x1a5bf828 generic_fh_to_parent @@ -19556,13 +19562,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x1a8327ee device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x1a95078f tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x1a9630ce __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x1a9a70ef fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data EXPORT_SYMBOL_GPL vmlinux 0x1aa263e7 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x1aaba009 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x1aac8048 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1acff6f3 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af38e41 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x1b2102a9 usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x1b27420f usb_hub_find_child @@ -19572,11 +19580,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x1b3d6934 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x1b4c8502 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x1b4d222f clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b51ae3b inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x1b5c2118 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x1b607a97 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x1b64dd02 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x1b6c94a7 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1b6d7e12 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x1b71e83d irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x1b7eb87b dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output @@ -19585,23 +19592,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ba31864 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x1ba98696 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x1bacf7de pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x1bc34143 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bccc11d device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1bd35cdb dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1bd8ab7f __put_net EXPORT_SYMBOL_GPL vmlinux 0x1bd91ebf fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x1bf2a51d __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x1bfe23cc perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x1c00357e of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x1c16795e pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0x1c1cddf9 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c1e0741 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c248ff6 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x1c25a5c8 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x1c25f066 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x1c2c526b serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x1c335f35 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1c505b9a ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c59077e kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs @@ -19613,9 +19616,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c8144ea __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8a8d2c rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store +EXPORT_SYMBOL_GPL vmlinux 0x1c8d23f8 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x1c906793 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x1caf2d71 pci_p2pdma_enable_show EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off @@ -19624,19 +19628,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ccde2d8 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x1cd26704 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1ce006a2 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x1ce5ba2f register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0x1cf2a3d0 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x1d066088 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x1d094a8b pseries_eeh_init_edev_recursive -EXPORT_SYMBOL_GPL vmlinux 0x1d1e9648 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d27d409 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x1d464fdc dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x1d4c7940 iommu_tce_kill EXPORT_SYMBOL_GPL vmlinux 0x1d562657 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1d5bfae3 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x1d63feaf sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x1d64e40b __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x1d73012d kvmppc_update_dirty_map @@ -19646,16 +19649,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x1da5d880 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x1da70447 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x1da94d12 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x1db5cec8 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x1dba4062 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x1dba60f1 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x1dcd86e8 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x1dd395ea da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x1dde1bc3 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg EXPORT_SYMBOL_GPL vmlinux 0x1df99605 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0902b9 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 EXPORT_SYMBOL_GPL vmlinux 0x1e18c7b8 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id @@ -19663,10 +19665,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e313702 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e5a6a29 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x1e6f72fc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1e608cad xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1e6b31f7 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7f1c70 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e90bd0e da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse @@ -19675,38 +19676,35 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names EXPORT_SYMBOL_GPL vmlinux 0x1ec7ffda zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x1ec82a06 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed8ab5d io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x1f0b780e spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x1f2e3b71 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms EXPORT_SYMBOL_GPL vmlinux 0x1f4fa0a9 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv EXPORT_SYMBOL_GPL vmlinux 0x1f7d548e usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8699a2 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x1f8b5369 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x1f8c0f15 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x1f919103 iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa9c37d __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x1fc16eb4 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x1fca9e0f stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x1fd8221a badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fed5683 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x1fee58b1 ping_err EXPORT_SYMBOL_GPL vmlinux 0x1fee5cfd dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2011ebc9 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x202607cc devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2034ce19 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x203d3fcd dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x2047deff switch_pmu_to_guest EXPORT_SYMBOL_GPL vmlinux 0x204d5965 kthread_flush_worker @@ -19719,10 +19717,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x208ae509 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp EXPORT_SYMBOL_GPL vmlinux 0x20a566a5 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x20a83298 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x20abe68d devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x20b3f4bb pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x20c0af29 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x20c7dca1 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x20cbd8ce switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x20ce6749 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x20cf8337 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x20e01498 ima_file_hash @@ -19743,27 +19742,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x2199e93c inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c1d9dd nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21d0febd da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x21de2a1b irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x21ec3eb8 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x21efc0e3 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x22003c05 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0x2203e668 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x2218bdd5 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x22386d29 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x2243f458 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x224f31e4 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x224fb900 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0x22652cbf nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x2267b331 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x226ce724 mmput -EXPORT_SYMBOL_GPL vmlinux 0x227ad3b6 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x22680756 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x227ef0a8 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x228695e4 device_initialize EXPORT_SYMBOL_GPL vmlinux 0x228716bb regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x2287a824 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x2293614c dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x22944ad5 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x2295a1af pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x2299c0a2 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x22a1c70f dev_pm_qos_remove_notifier @@ -19775,6 +19774,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x22decdc8 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x22df4101 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x23099cc5 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0x230d5a29 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x230d8659 early_find_capability EXPORT_SYMBOL_GPL vmlinux 0x2310605c __irq_domain_alloc_irqs @@ -19786,10 +19786,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put EXPORT_SYMBOL_GPL vmlinux 0x23505d1a extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x23693645 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x2371813a tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x235701ca __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x237197af pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x237b5aa0 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x23972d32 n_tty_inherit_ops @@ -19798,36 +19796,34 @@ EXPORT_SYMBOL_GPL vmlinux 0x23a749c2 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x23bacaed vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x23c117e0 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x23c1f9c0 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x23c334d4 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x23c60aa6 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x23cb1812 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x23d55377 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x23e2966f ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x23fa7591 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x2404b231 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x2439503e virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x24460a22 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x246b0bc4 devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0x246e09ec genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x247d7017 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x248921af sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248deeb4 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x24906a88 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x249ab1cf crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b7eacc ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry -EXPORT_SYMBOL_GPL vmlinux 0x24ccd820 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x24d1a0bf kvmhv_vcpu_entry_p9 EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e0ae1c unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem 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 0x24fffb1b rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x250395d9 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x250d4e6d spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2515c039 extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0x251b8ab3 raw_v6_hashinfo @@ -19836,15 +19832,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x25458e84 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2546793e sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr -EXPORT_SYMBOL_GPL vmlinux 0x2565c903 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x2568e228 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x2576b597 __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x257cd22b devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x258bb54b ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x258c14c8 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x259c5b77 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x25a01f7c pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x25a97a92 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x25aea91a genpd_dev_pm_attach_by_id @@ -19857,22 +19853,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x25eb1f92 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0x25f5676e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x25f8d55a strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x260c9e35 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x262b2db5 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x2630026d edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0x2644a503 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x2657ce0b crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x26731c2b xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x26876673 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x2687cf05 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x2693caae devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x26a96af8 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x26b10c9e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x26b23a3a nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x26ba48a7 blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x26bd80f1 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x26c0d98c devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x26c70c79 of_device_request_module EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense @@ -19887,16 +19885,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x271fbd07 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0x2730345a destroy_memory_type EXPORT_SYMBOL_GPL vmlinux 0x273a956b cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x27410862 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x2749a21f gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x276476c4 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x27658936 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x277b2844 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x27886598 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x278fb42f ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x279d95e3 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x279dedd5 clk_register EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x27aa7be0 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x27b00549 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x27baefc5 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x27be1c8d debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x27c49fbb mas_erase @@ -19910,29 +19907,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x280427ba register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x280df93e ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x282aa692 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x282b44fa PageHeadHuge EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x2833676a usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x2843b3da of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x285a31c4 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x285e8938 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x28623f5b pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain EXPORT_SYMBOL_GPL vmlinux 0x287236e1 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x28756709 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2883a77f bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x28996553 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x28a95137 bpf_prog_put 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 0x28b074c0 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b41def bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x28b5aa28 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x28d05de1 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x28d0a72a bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0x28e3da6c debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x28f7b0c1 cpufreq_dbs_governor_start @@ -19955,8 +19950,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x297c4c78 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x297d97ef gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x2994fab1 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x29a2ce8f ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page EXPORT_SYMBOL_GPL vmlinux 0x29c338c2 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x29c735d3 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x29cdcc8e gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x29d8ca4e pci_cfg_access_trylock @@ -19966,7 +19963,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x29e6dd99 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x29fb2fa8 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2a064081 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x2a0ad71f regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x2a23459d debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms @@ -19988,10 +19984,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a86aea3 nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x2a886054 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0x2a8b1dab led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a8dea73 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x2a90b0f1 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2a9e368c __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x2a9f4a31 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0x2aa23ee7 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x2aaaa04f pinctrl_utils_add_map_mux @@ -20000,6 +19996,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2abaa1be bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x2ad4b1d1 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x2ad55ac6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2ae33f4a raw_abort EXPORT_SYMBOL_GPL vmlinux 0x2ae37fc3 serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x2aece11b led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x2af34d28 blk_insert_cloned_request @@ -20013,6 +20010,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b4c0e1e mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67491d __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x2b7b5c38 irq_gc_mask_disable_reg @@ -20021,8 +20019,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b87c37b iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x2b8db853 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x2b90993a pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x2b94544f task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x2b97a0fc icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x2bb35396 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x2bb37b0d __pm_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x2bb688f2 pci_probe_reset_slot @@ -20031,10 +20027,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2bce968c genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2bffba5d ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x2c020a06 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x2c073d24 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x2c13ee11 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c216cfb __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0x2c22bb7e devm_of_led_get @@ -20060,21 +20053,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c969eff dev_pm_opp_of_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x2c9ef8c4 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2cb732ce unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x2cce4795 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x2ce8afb6 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2cf07f70 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x2cf7e266 irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0x2d045149 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x2d0920bb crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d1b1e7b inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x2d2683c2 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x2d26b8be inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d31976e __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x2d39e723 bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d45bcc6 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2d544c2f nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access EXPORT_SYMBOL_GPL vmlinux 0x2d65259b devm_of_phy_provider_unregister @@ -20097,17 +20095,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x2e009d2a devm_clk_hw_register_fixed_factor_index EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e04943a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e0ab8b1 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2e0afadf bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x2e1f8089 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x2e209706 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace EXPORT_SYMBOL_GPL vmlinux 0x2e37f7f2 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x2e417793 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x2e497d88 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x2e4d91c0 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x2e543b27 devres_find EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2e5b3827 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x2e5b69c8 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x2e659c7b mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2e7f8666 bus_register @@ -20119,15 +20113,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x2edabe5b virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x2edf7958 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2ee08ff6 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x2eec0ef2 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x2efaf606 pci_p2pdma_add_resource EXPORT_SYMBOL_GPL vmlinux 0x2efc3a60 devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f11d8aa rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea6a1 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2dc137 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x2f3abc9c badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x2f41eb38 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f638cdc clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x2f855537 put_device EXPORT_SYMBOL_GPL vmlinux 0x2f8a8f74 led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x2f9023aa scsi_alloc_request @@ -20135,7 +20132,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2f918b1a vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x2f9ec3fb devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x2facb798 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x2fbf7da2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2fc03553 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj EXPORT_SYMBOL_GPL vmlinux 0x2fd43f92 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x2fe250c2 virtio_device_restore @@ -20146,10 +20143,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x3010647a pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible EXPORT_SYMBOL_GPL vmlinux 0x301952be gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x301ecaff __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x302cc1c7 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x3032586c usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0x30463011 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x305a817d netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x305baf84 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x305dcb48 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu @@ -20157,14 +20154,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x308aba4a icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x30a07ef3 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x30ab0798 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x30b5c622 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x30b88521 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x30c19e14 iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x30d75a52 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x30e23660 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x30e2e1d0 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x30e4f299 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x30e88b1e phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x30fc505b crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x31002652 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk @@ -20173,12 +20167,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x31227ceb blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x312a70a3 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x312b72ce gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x312e43a6 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0x3135db05 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x313a5654 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x313dbb5a __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x315fa4e7 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x3172c5a4 __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes EXPORT_SYMBOL_GPL vmlinux 0x31867584 of_resolve_phandles EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain @@ -20188,8 +20182,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x319bd528 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31acb309 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x31ae8650 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x31b9889c dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x31bd0156 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31d87c17 __devm_clk_hw_register_gate @@ -20198,37 +20192,38 @@ EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x32342f92 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x32427eda power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32560fee skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x32682d13 kvmppc_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x3269dddb ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x328647e9 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x32a2b06b trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x32aa562f xhci_update_hub_device 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 0x32c72ca5 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x32ca43db dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x32d745cb scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0x32e05115 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x32e9ea71 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x32ef8885 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x32ebef55 strp_process EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x330ffbca of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0x332bb537 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0x3338c4e3 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x333e4a9b xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x333f275b bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x33591554 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x335d8073 genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0x33685bb7 virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0x3372f3f5 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x3377ed98 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x339270dd devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x3392db19 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x33c0a922 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x33d73fe6 xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x33e2fb1e __clk_mux_determine_rate @@ -20236,13 +20231,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x33f08ae3 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x33f1fdf1 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x34079033 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x34109e58 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0x341c4b70 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x342e4286 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x343d256d __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x3440073d ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344799a2 fsstack_copy_inode_size @@ -20251,31 +20244,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x346b0e17 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x347ca858 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x34863be5 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x3490c372 strp_process EXPORT_SYMBOL_GPL vmlinux 0x34926032 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34b331aa sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x34befa7b xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x34d8463c is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x34d8ebb7 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x34d93253 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34dcfd33 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x34e0c9a1 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x34ff1642 pse_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x3515c197 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x35165a14 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x3517a07a ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x3518b3e2 srp_remove_host EXPORT_SYMBOL_GPL vmlinux 0x3519573a dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x351c14dc hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352cb6db tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy EXPORT_SYMBOL_GPL vmlinux 0x353e969d clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x354dcbcb bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x35471d45 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x3552c405 eeh_pe_mark_isolated EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table EXPORT_SYMBOL_GPL vmlinux 0x3569c647 pci_set_pcie_reset_state @@ -20286,8 +20277,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x35a0c762 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x35cc4aec elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x35cd56f2 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x35d62207 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x35e3fc86 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x35ec0eaa of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0x35f2e575 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x360423df dma_resv_get_fences @@ -20300,41 +20289,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x367a35c3 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a3ef68 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x36ac5f89 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0x36b297fd ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x36b4aae8 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x36c09e8f of_css -EXPORT_SYMBOL_GPL vmlinux 0x36c744c2 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x36cf538b fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x36ea5bbe irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x36f97b02 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x36f3bc85 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x3719b3d1 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x372366c4 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x372e9d0f xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x372feae2 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x373711d3 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x3740f4ca ohci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x37476e23 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x374b232f ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x37588456 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x375a2a9e regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x375cd18c vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x376336be register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x37807a04 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x37927d5a pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x3796aeb0 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x379b4df2 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x379e112e crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x37b479b8 power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x37b50fd8 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x37b6d9d9 wwan_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c816d8 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x37d0527b d_same_name EXPORT_SYMBOL_GPL vmlinux 0x37d2c070 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x37e7bb15 ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x37ed6c11 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x37f60ddb pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x37fe24ae ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x3804ac38 sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0x380c8a40 folio_mkclean @@ -20342,19 +20330,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap EXPORT_SYMBOL_GPL vmlinux 0x3822b9aa kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x383447e8 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x382a542d ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x383afd2e pnv_ocxl_set_tl_conf EXPORT_SYMBOL_GPL vmlinux 0x38448626 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x3852f537 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x385c7cbb regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3865383e mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0x386c5f10 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x386ff5ab ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x388b582b dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x388ee6be ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x388f59a7 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b6722a __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x38ba84b2 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x38c89f62 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add @@ -20366,13 +20355,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x3912acd0 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x393a8a28 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x393acfe8 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x393b2f53 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x394bd38b nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0x39500ce2 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0x395f85dd bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0x396347cd __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x3966d075 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x397010dd __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x39791fa2 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x397c8f9f bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39809afe __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x3986173a __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x39a349f2 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string @@ -20381,27 +20375,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39df2231 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x39eab030 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x39f91b2a fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x3a05d5da debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x3a0c1837 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x3a0d4b57 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2b1db8 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3a2e0120 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x3a451a45 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a558dce devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a5cc773 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x3a5ecf69 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0x3a5f28b0 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x3a62fc1f is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a852150 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x3a85997b da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x3a8f1068 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x3a94304e __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3aaa9756 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x3abf0d0b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3ac26b3d ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x3ac5e1d4 vcap_find_admin EXPORT_SYMBOL_GPL vmlinux 0x3ac7eca9 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x3ac9c0fb iommu_release_ownership @@ -20409,6 +20404,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ad8884f regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x3ae54787 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x3b0cdbc7 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3b167c54 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x3b2bac01 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x3b2bc2d3 fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x3b35ae51 crypto_ahash_setkey @@ -20417,7 +20413,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b5ab98c iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x3b6dc4ce platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x3b6e5817 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x3b79cb43 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x3b7e9a14 of_alias_get_id @@ -20425,8 +20420,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3baa6f10 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3bb53e6d perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x3bcd065a clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x3bd1fc6b device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test @@ -20444,28 +20439,25 @@ 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 0x3c4839bf nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x3c56c101 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x3c5e21c1 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x3c5f57f9 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x3c63dcf9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x3c641441 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x3c66efc9 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c8146e0 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x3c8357b0 rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x3ca05bc1 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x3cb17059 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x3cb390ad ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x3cb3caa7 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x3cb3ef8b fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3cb76904 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd37407 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x3cd626f7 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x3cdea365 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3cef1e20 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x3d08c0d8 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x3d0aa73c pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0x3d18c1c6 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x3d2ad41c regulator_list_voltage @@ -20481,14 +20473,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3d9c6dd5 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x3da4a2ef ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3dabba17 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x3db41f80 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x3dbdd719 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x3dd941e3 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x3de48abe __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x3de92bd2 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3dd32574 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df02661 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x3df21b85 pci_status_get_and_clear_errors @@ -20514,20 +20503,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put EXPORT_SYMBOL_GPL vmlinux 0x3ee76f08 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef359aa tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x3f2b6a03 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x3f30125d __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x3f3a65b2 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x3f41f306 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x3f42daa9 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset EXPORT_SYMBOL_GPL vmlinux 0x3f4cbc31 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x3f5be677 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3f5ed376 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x3f680e9e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3f6f5e02 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x3f7c2c79 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x3f7feded crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ed689 mpic_subsys EXPORT_SYMBOL_GPL vmlinux 0x3f8fa808 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x3fa46b83 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3faec90e nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x3fb2234e sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x3fc73cdf screen_pos EXPORT_SYMBOL_GPL vmlinux 0x3fd02219 i2c_for_each_dev @@ -20536,13 +20529,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x3ff96507 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3ffa8721 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x3ffea37f tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x3fffae8a vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x4003e77c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x4008207b udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x40212e65 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x4021c3bd tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x402746f6 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data @@ -20552,17 +20544,14 @@ 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 0x4082d417 __put_net EXPORT_SYMBOL_GPL vmlinux 0x40885b26 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x408a9dc1 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data EXPORT_SYMBOL_GPL vmlinux 0x40b995a8 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x40c18627 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x40df1fca register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x40e77931 devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f3f531 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x40f63bb2 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before @@ -20578,27 +20567,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x417ab318 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x4192723e perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x4194b81a tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41a9e542 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41b821a1 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41cb6a69 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x41cfd65f edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x41e6c76d ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41f3459e crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x41f8da42 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x41fcfaaf i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x4200452e platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x4203ccef iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x42179050 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x4219cbcb dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x421d2307 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x4221701b skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x42278101 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x422fa56a pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x424795da mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x42571113 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x4258b96c metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x4286b8a5 extcon_dev_unregister @@ -20608,13 +20600,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x42b1a79b dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0x42d28ba4 percpu_is_read_locked EXPORT_SYMBOL_GPL vmlinux 0x42e6b765 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x42ebb43d ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine EXPORT_SYMBOL_GPL vmlinux 0x42efa839 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x4308eb30 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x43139cd3 ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x4314f4e2 dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc EXPORT_SYMBOL_GPL vmlinux 0x4327fced blk_crypto_update_capabilities @@ -20623,30 +20615,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x434ffc15 unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0x435b885c devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x435fdce3 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x43698f23 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x43737c2c sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4387f381 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x439ab171 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x43b5310f usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x43b6129d badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear EXPORT_SYMBOL_GPL vmlinux 0x43e4bd7f nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x43e6fd2c switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x43ebdaca crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x43ff064c irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4403006c perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x441f6919 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x442212ea xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442e74a5 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x4438f5fc tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x443d690f pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x4448c679 mt_prev EXPORT_SYMBOL_GPL vmlinux 0x4454bca9 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x4456d619 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x445a7025 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe EXPORT_SYMBOL_GPL vmlinux 0x448a88c7 irq_create_of_mapping @@ -20660,14 +20654,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x44c2da39 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x44ca69fd unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0x44caec28 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x44ce08fe raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str EXPORT_SYMBOL_GPL vmlinux 0x44d2d9ff sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x44d9848d xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0x44ebfb93 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x44fa8dc6 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x45058979 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x450a8b7c pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0x45143888 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x45177858 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x452c4838 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x452db55e __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x4533eebf crypto_alg_mod_lookup @@ -20675,7 +20673,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4550b703 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x4565f13c ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x457a419c md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance @@ -20684,28 +20681,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x459e22be dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x45a7fdd7 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x45bb24f1 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x45c5e9b4 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x45dfab83 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x45f0cdb7 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x460084c2 regulator_put EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x460239c6 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x460595b1 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x460a3dd1 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x461dae35 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x46253492 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x4628a20c scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x46339739 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x464fa20c badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x4651419b ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x46546e69 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x46550f40 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x4668c380 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x466a83d4 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x466ab87e mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x46760fcf skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x467c53c5 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x467e2bb5 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x467e9716 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x4684e902 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x468f9847 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic @@ -20717,11 +20716,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x46ee6a7d dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0x46f660c3 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x46fe4210 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0x47154327 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x47156e13 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x4719a5e8 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x471dfea7 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request EXPORT_SYMBOL_GPL vmlinux 0x4723e873 clk_register_fractional_divider @@ -20729,19 +20726,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x476bacef extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x47742075 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4786d81e nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x477fba0f skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x478eae60 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode EXPORT_SYMBOL_GPL vmlinux 0x479a48be crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a1fbe1 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x47a3388e sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy EXPORT_SYMBOL_GPL vmlinux 0x47ad06f2 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x47b613d2 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys EXPORT_SYMBOL_GPL vmlinux 0x47c30c14 nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x47d4483e ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x47d4c3bd sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x47f4196f watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x4801ded1 sbitmap_queue_get_shallow @@ -20752,17 +20751,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x48506a20 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4866f348 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x48844e71 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48a9e36c devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x48b0d6af irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48d61956 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x48c5593f xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x48df171f tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x48e0670c fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x48e3f6b9 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x48ef9330 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x48fca457 devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst EXPORT_SYMBOL_GPL vmlinux 0x490d414b iommu_domain_free @@ -20770,9 +20769,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x492ab2f8 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x494ff224 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x49537b54 dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x497050d7 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x4975b8cb pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0x49788096 pnv_ocxl_spa_setup EXPORT_SYMBOL_GPL vmlinux 0x497fcf8e stmpe_disable @@ -20780,16 +20779,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x49b198d3 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x49b27edd dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x49c24812 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x49c3a87e regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue EXPORT_SYMBOL_GPL vmlinux 0x49d184d2 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x49dab21e __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x49dadf99 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x49e21fa5 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49ebca80 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x49f0f98f __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x49f29e28 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec @@ -20800,8 +20795,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask EXPORT_SYMBOL_GPL vmlinux 0x4a181706 hvc_poll EXPORT_SYMBOL_GPL vmlinux 0x4a300eb2 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x4a33e921 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x4a396d77 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x4a3d6329 nf_route EXPORT_SYMBOL_GPL vmlinux 0x4a466260 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x4a4a8c02 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x4a5370bd __fscrypt_prepare_readdir @@ -20810,15 +20805,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable EXPORT_SYMBOL_GPL vmlinux 0x4a9f8e32 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x4aa6a1a1 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x4aa91321 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x4aab7fd3 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x4ab0bb90 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x4ab1ceb3 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x4abf9726 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x4ad949e9 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x4ae68207 virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x4aff86ff phy_validate EXPORT_SYMBOL_GPL vmlinux 0x4b096847 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x4b141d2d ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x4b1cdb74 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x4b20b281 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x4b24c312 pm_genpd_add_subdomain @@ -20828,8 +20822,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr EXPORT_SYMBOL_GPL vmlinux 0x4b8ed523 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x4b959bea ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x4bacb5cd inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x4bacc4c5 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be3c428 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x4be9ace9 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add EXPORT_SYMBOL_GPL vmlinux 0x4bef38a4 pcibios_free_controller_deferred @@ -20844,15 +20841,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c2c0719 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x4c2e7e65 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x4c40f8eb tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c56eccd devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x4c5bc007 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4c5cabe6 pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x4c8c1eb9 regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x4ca7bff9 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4cb08cc4 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x4cb0d149 find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb72847 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x4cb73a34 rdev_get_dev @@ -20860,20 +20853,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x4cc10679 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0x4cc13906 cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0x4cc4339a of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x4cce3b81 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x4cd922ca pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x4cf1c402 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4cf807a8 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x4cfabe5f crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d00ebd1 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x4d030e65 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x4d0374ad fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x4d1f71ad clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x4d2778c8 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x4d295880 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4d2462ed register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x4d2ad129 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4d33fd2b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4d38d71f l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4d40fa8a unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x4d4b5ab5 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x4d5a5dc5 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d6e2e84 regulator_set_soft_start_regmap @@ -20887,7 +20880,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4de9ff08 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x4df59d24 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e03f59d switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x4e04e86d xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x4e07ca68 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x4e17af6c wm8350_reg_lock @@ -20899,14 +20891,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x4e57b1cd devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x4e584442 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x4e661ed3 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x4e684bbf ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x4e698590 dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x4e6b5c0c dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e769167 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x4e8e72e9 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x4e9e9ae2 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4ea16bd2 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x4ecaabce vp_legacy_get_queue_size @@ -20917,8 +20906,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efa2795 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f15a140 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x4f245a0c __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x4f274863 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line EXPORT_SYMBOL_GPL vmlinux 0x4f629b67 device_create_file @@ -20927,8 +20914,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f6d8a67 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f883d45 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x4f9dd246 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x4fa52573 kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x4fa60ab5 of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0x4fb147de power_supply_powers @@ -20937,7 +20922,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4fda761d i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffd973e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5000cc39 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x5001f0b8 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x500f29c7 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x5017d1d4 devm_regulator_register @@ -20951,7 +20936,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x508aeb99 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x50919fbf of_changeset_action EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50c357a8 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x50c4f8ef pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x50c8dbea vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x50ca916f of_pci_dma_range_parser_init @@ -20964,30 +20948,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x50f3ed90 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x50fe1f46 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x51082264 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x510e3e18 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x51173d4c switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x512016bc class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x513100a3 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x5137ef0c dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x5146d2e8 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x514b2653 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x5150c37a devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x51522166 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x5177930e device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x5179b8ce ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x51a59a18 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x51aaba68 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51ccea87 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x51e4ee8a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x51b9b303 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x51fcfa1f iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x520cb1ac cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x521719a3 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x5218135e devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x521d26ac tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x5228bbc3 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock @@ -20995,17 +20975,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x52699f36 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x526f360d sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x527f5d65 of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0x52830c76 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x52904d2f __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x5292051b thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52c064df rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c803e0 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x52cb17b7 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x52d48d30 iommu_add_device EXPORT_SYMBOL_GPL vmlinux 0x52d4d5bb crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put @@ -21013,23 +20989,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x52e65a48 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x53042261 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5309bf02 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x531ebfa1 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x5327f813 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x53389db8 dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0x5343e795 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x5352cdc1 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x53533841 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x5357cbd8 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x536c3a51 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x537167e3 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53763650 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x537d0e90 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x538b130c strp_done EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x538e4d7f tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x538eea4c l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53b300c2 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x53b342e5 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x53b46f41 mmput EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x53c4d71d power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle @@ -21047,7 +21027,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x54337c73 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x54408483 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x544ecbf6 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x54503ff1 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x54644f4f devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq EXPORT_SYMBOL_GPL vmlinux 0x5478f2c3 badblocks_store @@ -21064,6 +21043,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x54f59b4e fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0x54ff0640 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x55039444 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x55047712 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string EXPORT_SYMBOL_GPL vmlinux 0x551acd8f rcu_trc_cmpxchg_need_qs EXPORT_SYMBOL_GPL vmlinux 0x5520c8bf blk_crypto_profile_destroy @@ -21073,22 +21053,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x554c086e thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x554c1494 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x55548b5e pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x55549df2 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x555ade5e devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x5570910e iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x55728311 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557c0e1f __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x557c622b wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline EXPORT_SYMBOL_GPL vmlinux 0x559c0148 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x55a261ba watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x55ab5615 call_srcu EXPORT_SYMBOL_GPL vmlinux 0x55b6c10a usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x55bb4a35 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55cd711c devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x55e6acc2 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x55d04173 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async EXPORT_SYMBOL_GPL vmlinux 0x55fb2b25 fscrypt_mergeable_bio @@ -21097,23 +21075,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x5617638e pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x56186d6f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x561cc368 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x563233b4 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x563234dd tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x567fb809 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x568320c1 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x56a1d663 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x56a64d1b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x56b8a4d5 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x56a75998 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x56c60ccf sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x56d2c43a usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x56d59f91 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x56dde73c free_uid EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x570c55bc tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0x57121e1f ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x57314744 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa EXPORT_SYMBOL_GPL vmlinux 0x574491d5 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x5749983c __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x575f1c02 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x57522520 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x5765512a spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x57730f7d led_init_core EXPORT_SYMBOL_GPL vmlinux 0x57789bc5 edac_device_handle_ue_count @@ -21133,17 +21114,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock EXPORT_SYMBOL_GPL vmlinux 0x583bcebc lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x583cd84b cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x58611807 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x586bef6b of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587f1ad8 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x5882f996 mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x58841961 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware EXPORT_SYMBOL_GPL vmlinux 0x58bb6e0d regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e2a18b bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x58e3c7f3 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x58fdc66f fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read EXPORT_SYMBOL_GPL vmlinux 0x591c8c2d trace_put_event_file @@ -21155,11 +21134,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x5954a3f3 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x59571063 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x5979832b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x59763d2a ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x5980720d rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf EXPORT_SYMBOL_GPL vmlinux 0x5987e19f device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x598ee43e __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x599cc69d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x59a2a2eb ipv6_stub 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 @@ -21194,16 +21174,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x5aeaab73 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x5aeb5cfe crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x5aed5392 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x5af1ca7e ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x5b041b62 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x5b0c0d69 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x5b0de5e8 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2ad035 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x5b329808 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x5b347a8c inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x5b40dbc7 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x5b5d3ebc skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x5b61eac7 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment EXPORT_SYMBOL_GPL vmlinux 0x5b72e566 fat_update_time @@ -21218,13 +21192,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bcd3347 fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd94abe bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5beb2ac3 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x5bff0c88 debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0x5bfff303 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x5c0593df stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c063656 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x5c0ff02f copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x5c2b763f bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c24f224 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x5c47f61f mm_iommu_is_devmem @@ -21238,8 +21215,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x5c86488a vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x5c8c5de7 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x5c98a862 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5c9b2e46 bio_poll EXPORT_SYMBOL_GPL vmlinux 0x5ca59ba4 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ca9a3a0 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple EXPORT_SYMBOL_GPL vmlinux 0x5cb40e95 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr @@ -21250,21 +21227,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x5cdf5421 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cf01cbf crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x5cf0ee5e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5cf11873 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x5cf892f4 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x5d077af3 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x5d0a7b58 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x5d16310b bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5d231442 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x5d244e22 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm EXPORT_SYMBOL_GPL vmlinux 0x5d3322ab pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x5d3dcd72 pnv_pci_get_slot_id EXPORT_SYMBOL_GPL vmlinux 0x5d5007ca scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x5d7ee9ac __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8ece8a xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x5d90c988 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da55d97 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dad6c78 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x5db2e2c7 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x5db6e76f usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0x5dbba8f2 regulator_suspend_disable @@ -21279,7 +21257,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x5e4a0b79 kvmppc_hpte_hv_fault EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 EXPORT_SYMBOL_GPL vmlinux 0x5e52a2d9 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x5e695473 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x5e6ce5b5 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x5e70492c irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val @@ -21295,23 +21272,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x5eedf1af xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x5ef6e601 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x5efa1ef9 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x5efa5249 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x5eff555a ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x5f10e33d regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x5f14a33c sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x5f14e2ff device_unregister EXPORT_SYMBOL_GPL vmlinux 0x5f168bc5 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5f188468 put_pid EXPORT_SYMBOL_GPL vmlinux 0x5f19e0e6 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x5f1f54ff ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x5f1fa65d balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f2ba98d extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x5f4a79c3 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x5f512bf9 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f8b90a6 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x5f9fef7b blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x5fa41e14 __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5fa8ee3f gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x5fb02e4e of_reset_control_array_get @@ -21319,15 +21295,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x5fb74f98 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x5fe05b93 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x5ff89b3f devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size EXPORT_SYMBOL_GPL vmlinux 0x601fd85d kobject_move EXPORT_SYMBOL_GPL vmlinux 0x601ff720 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x60367a69 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60498968 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x6057969d trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x6059c0e8 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x606a1917 devm_kfree @@ -21341,15 +21314,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60ad9686 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri EXPORT_SYMBOL_GPL vmlinux 0x60ba9d77 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x60bbbf46 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x60d2da88 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f37cf1 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x60f531cb blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x60fa4a70 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x60fb21c9 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x6103affe nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x6107ca3f edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x610e952e devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x6118877e rio_mport_send_doorbell @@ -21358,8 +21332,8 @@ 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 0x6137e97d ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x613f20a4 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x613fee3d sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x6173619c posix_acl_access_xattr_handler @@ -21371,7 +21345,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask EXPORT_SYMBOL_GPL vmlinux 0x619de72d encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x61ae1671 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x61af85c5 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x61b1eeb3 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x61b3974f pci_epc_stop @@ -21379,14 +21352,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x61bfcb14 of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61d7ab02 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x61dc7f0d devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x61e40996 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x61e95643 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x61eeeb2c of_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x61f11de7 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x61f4f7be dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x62061069 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 EXPORT_SYMBOL_GPL vmlinux 0x622a8028 devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier @@ -21399,6 +21371,7 @@ 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 0x62651b49 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x6276e60a iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr EXPORT_SYMBOL_GPL vmlinux 0x628b2c35 folio_wait_writeback_killable @@ -21407,13 +21380,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x62a05f78 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x62a82b6b badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c7324a ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x62c8d2c3 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x62cc677b vfs_get_acl -EXPORT_SYMBOL_GPL vmlinux 0x62d6b25b switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x62f24665 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631e6b0d sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x633b8a55 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x635815c8 crypto_unregister_instance @@ -21424,16 +21395,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x63917e5d led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x6392a69b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6393d275 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x63bcc36a generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare EXPORT_SYMBOL_GPL vmlinux 0x63c4178d regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x63cac623 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x63de83a7 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x63ec2431 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x640819a7 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x64120456 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x64219846 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x64223a72 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x643b07a3 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x643f2e7d class_unregister EXPORT_SYMBOL_GPL vmlinux 0x64417601 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x6446d84b pci_enable_rom @@ -21448,48 +21421,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x64b11d6e led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0x64bd934e tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x64c48021 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x64dbc106 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x64d77d82 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x64f38d18 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x64f3b2a2 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x64fe7302 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x650f74dc ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x65289270 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x652cc648 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653ccad9 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x653e8eb5 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x655641ee __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x6566a7ae shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x65675b05 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x65682b21 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x65713431 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x6569a53c dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x658f6a0d fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x65c3f9bf ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x65a00962 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x65c28c9f strp_stop EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65cefc7d xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x65d27115 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x65ec5535 mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x65ee17da rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free EXPORT_SYMBOL_GPL vmlinux 0x6615ed80 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x661ae1d6 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x662c2ee2 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x6637cc9c gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x66636a14 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x6670e9a3 sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x66731dfb vp_legacy_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x667d705e usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x66859d4f usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x668cad09 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x669368aa ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x669b0a38 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up @@ -21497,6 +21465,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x66c247d3 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67005f62 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x6704be78 dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0x67079948 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x670d2458 crypto_unregister_shashes @@ -21505,19 +21474,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x6731bbec bio_trim EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x675b7fa9 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x675baf40 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x675ea3cd is_pnv_opal_msi -EXPORT_SYMBOL_GPL vmlinux 0x676094a3 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x67614ea1 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x67796f9a devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0x677a5549 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0x6782a038 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x67874cc4 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679d94b4 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x679ff8bb devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x67a2838a bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x67b114e3 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x67d014d4 devm_rtc_device_register @@ -21530,19 +21494,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x6821be13 dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x68252576 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6835acb1 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x68434f3c bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x685570d4 spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x6872a812 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6888b164 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x688a8eb5 of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x6897b22c devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x68a2c50e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x68b3e7ae nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x68c9dc6c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x68d799a5 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x68eff24d phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x68fa93e0 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x6900a24f bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read EXPORT_SYMBOL_GPL vmlinux 0x690bd638 regmap_bulk_read @@ -21550,7 +21514,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x690e3d05 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x690fe0a9 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6911ec28 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x691d4c28 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x69270c8e eeh_iommu_group_to_pe @@ -21559,12 +21522,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x693b549e tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x694e558d elv_register EXPORT_SYMBOL_GPL vmlinux 0x695f5b68 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x69607871 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core EXPORT_SYMBOL_GPL vmlinux 0x6982d96c remove_phb_dynamic EXPORT_SYMBOL_GPL vmlinux 0x6990ac9c sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x69a2dbf6 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x69a54b4c xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x69aeddef atomic_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x69b11774 irq_create_fwspec_mapping @@ -21578,35 +21543,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high EXPORT_SYMBOL_GPL vmlinux 0x69f3415a clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x69ffdfaf of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x6a03b5be fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a0a5a3c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a355afc ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4a1e7c vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x6a4c2a68 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a605cea dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x6a758d2f clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x6a7c9800 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa94658 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6ab12157 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x6ab1323f housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x6abaf82d nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x6abcd291 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x6ae5d56e cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x6aefbd1d tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6af29922 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x6b0020ec to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2cebc2 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b54f830 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x6b5e34ce srp_rport_add EXPORT_SYMBOL_GPL vmlinux 0x6b6c8ca1 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x6b711379 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x6b7aeb1d of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x6b802daf __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier @@ -21621,24 +21583,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd1ad74 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x6bebb3d2 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x6be2c4bc sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x6c0dfddc nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x6c183bb0 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x6c19deea validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x6c1aaf08 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x6c186fae __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x6c1bbf31 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2a8a4d udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6c36eb32 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c3f9ad9 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c9a4d87 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cc10332 device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0x6ccc3ef8 devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6cdec617 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x6ce78857 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x6ce9302c set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x6cf3294e blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x6cf4d123 dev_pm_genpd_set_next_wakeup @@ -21650,25 +21612,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d50ffe4 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6d5e9d64 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x6d628dd6 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d768971 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x6d7a5a51 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8a84fe inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x6d925856 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x6dade462 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x6da35bda l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dbad31e sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x6dc9ac5d i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x6dc9e2f3 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd7cb2e of_css EXPORT_SYMBOL_GPL vmlinux 0x6ddc9492 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x6df8d3bd usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x6dfef2e1 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x6dff44f9 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0x6e09f750 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0x6e0ae0b9 thermal_zone_device_register @@ -21681,16 +21642,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x6e3bf122 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x6e3f4479 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e47ad48 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e5b8baf raw_abort EXPORT_SYMBOL_GPL vmlinux 0x6e6170be gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x6e67a0f3 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x6e752ff8 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x6e75cf17 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x6e70fafb bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e7970a9 of_pse_control_get EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e8f0010 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6e9e1bf7 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x6ea40cf4 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x6eab5d9a _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x6ebbad5f clockevents_config_and_register @@ -21699,20 +21659,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ed498d0 rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source -EXPORT_SYMBOL_GPL vmlinux 0x6f0dbd70 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x6f03c651 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f199cc2 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3d35f8 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x6f4080d6 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x6f238476 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x6f39e371 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x6f554633 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6f58b91d phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f70c394 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x6f7994b0 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x6f7bbe6a msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f7fef31 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x6f902270 xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0x6f927410 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6f95c58c __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa37985 devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0x6fb41712 usb_intf_get_dma_device @@ -21728,27 +21688,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x70054c4f sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x700a16d7 kvm_free_hpt_cma -EXPORT_SYMBOL_GPL vmlinux 0x700aff5a inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x7013d02b devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x702c50c9 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x7030dbf5 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x7041f2b7 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x7047955e scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x704accb8 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv EXPORT_SYMBOL_GPL vmlinux 0x70558573 synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x707394ef pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array EXPORT_SYMBOL_GPL vmlinux 0x7074edaa apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x707fa28b ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x7089c979 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x709965c3 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x709ca038 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x70a02e01 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x70be15d6 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x70a91931 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x70af0291 devlink_port_unregister 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 0x70c7e564 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq EXPORT_SYMBOL_GPL vmlinux 0x70da689b led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x70f117bd flush_fp_to_thread @@ -21756,8 +21713,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x70ff6b81 pnv_ocxl_map_lpar EXPORT_SYMBOL_GPL vmlinux 0x7103b545 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710e4e37 xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0x711bf34f fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x711c8d9d int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x71340ff6 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x7138a12c ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x7138cb4e sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x7141accf pcibios_unmap_io_space EXPORT_SYMBOL_GPL vmlinux 0x7142d492 devm_led_trigger_register @@ -21766,10 +21725,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x714c101a devm_of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x71549330 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715ccb1f msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71693ee4 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x71846179 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x71896e1b validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x7199d782 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister @@ -21778,8 +21739,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x71a8b307 srp_rport_del EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c5bc34 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x71d8bac0 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x71dc636a phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x71e5cf93 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x71f3472a pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x72124c9a divider_ro_determine_rate @@ -21787,12 +21748,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x721623cd percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x721aeb83 pnv_pci_set_tunnel_bar EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x7238ba66 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x7249701f genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x7249b860 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x724a88ae ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x724c2a4c eeh_pe_configure EXPORT_SYMBOL_GPL vmlinux 0x7251fa8c serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7267870e skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x7269e0b8 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x726ea92f divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x72742af9 fs_dax_get_by_bdev @@ -21800,29 +21762,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x727fb5e2 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72a8b3e1 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode EXPORT_SYMBOL_GPL vmlinux 0x72c1f097 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x72cedf04 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x72d9c4c9 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x72e4ac04 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72fe24d2 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x73187825 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x7312c2f7 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x733265b4 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x734705c0 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x733b07e6 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x73527863 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7362b694 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x7363357b tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x736ece4d net_selftest EXPORT_SYMBOL_GPL vmlinux 0x73741ede dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x737895e7 vas_init_rx_win_attr -EXPORT_SYMBOL_GPL vmlinux 0x7384f0e2 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x73938f73 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x738e72ba inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x7399a30e debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x739b3ef6 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x739ee153 mmput_async EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b3da08 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x73bdb177 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x73c11cbb pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x73c24961 auxiliary_find_device @@ -21830,17 +21790,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x73c4029d cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x73f26239 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x74050dab noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x740d4e7b ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x74113b85 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x7418487e bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x74190ba1 of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0x741f989f ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next EXPORT_SYMBOL_GPL vmlinux 0x74376601 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x7445071f switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0x746d4fbc get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7483a912 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x74784111 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x7489eaea pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x7498bf71 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x74a2d9db dm_table_device_name @@ -21849,17 +21808,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x74bd47fd device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74c8c8a7 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x74c949f4 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x74c98ef9 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0x74cdfe5f tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x74dbee3c regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x74dcb776 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x74e73f70 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x74ee02e4 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x74ef9faf dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x74f1a529 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x74f57712 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x74faa6c3 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7510ea19 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x751268d2 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x75150f15 vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status @@ -21870,9 +21829,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x754ec445 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x756b0191 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x756f6361 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x756fe21c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x75755886 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info +EXPORT_SYMBOL_GPL vmlinux 0x757e48dd bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x7582deb8 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x7587c336 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only @@ -21883,8 +21843,8 @@ 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 0x75fd6f0b ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x76081c88 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x7629e88a ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x762ea152 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x763e014e to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance @@ -21896,7 +21856,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76ae21ac fat_attach EXPORT_SYMBOL_GPL vmlinux 0x76cee790 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x76d6c616 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x76d4a6df nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate EXPORT_SYMBOL_GPL vmlinux 0x76e8dfe4 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x76e9044e edac_pci_free_ctl_info @@ -21904,7 +21864,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup EXPORT_SYMBOL_GPL vmlinux 0x76fdf2a4 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x7702fd1a ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x771b6d3f sysfs_remove_device_from_node EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x77241934 srcutorture_get_gp_data @@ -21915,13 +21874,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x7756ad4c devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x7766f7f6 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x776f247f ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x77722b90 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x777371c3 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x777d05cc device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x779a6bab aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x77a9d772 irq_to_desc EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b30db7 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x77bc9baa vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x77c5b823 nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put @@ -21939,31 +21899,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x785f0586 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x78641d8b __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x786aae26 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x787ad048 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x787bdf99 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788b6284 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty EXPORT_SYMBOL_GPL vmlinux 0x788e538d divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a6966e __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x78b25d37 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x78c121f3 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x78c393e5 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation EXPORT_SYMBOL_GPL vmlinux 0x78ebaade pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x78fd3daa devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x790bb659 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x79113e69 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x7924c0cb find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x7934db1c clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79466167 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79529664 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x795371a7 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x79664190 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x7967a0b3 wbt_enable_default @@ -21974,7 +21928,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79ebe446 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x79eca389 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0x79f4863e ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x7a047852 sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x7a07207d kthread_unpark @@ -21985,25 +21938,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x7a6f773f gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a93de96 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x7aac88a8 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x7ab12e64 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x7ab26743 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x7ab94df0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7abc8a70 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x7abde4f3 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x7ac3dbc8 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acef338 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1d9a2 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad935b9 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x7adc8edf strp_done +EXPORT_SYMBOL_GPL vmlinux 0x7ae65eb2 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x7af33d02 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7af4beb8 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b132ec6 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio EXPORT_SYMBOL_GPL vmlinux 0x7b228684 pci_p2pdma_distance_many EXPORT_SYMBOL_GPL vmlinux 0x7b2cef44 dm_hold @@ -22017,6 +21968,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b5e1ee3 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x7b7363df switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available EXPORT_SYMBOL_GPL vmlinux 0x7b785f4f tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x7b802221 component_compare_dev @@ -22024,11 +21976,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval EXPORT_SYMBOL_GPL vmlinux 0x7b8dbf93 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7ba44047 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb0efe5 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x7bcf5893 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x7bd97682 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x7be810cc ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x7bffb117 of_usb_host_tpl_support EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list @@ -22054,18 +22005,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x7cedcb12 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0a58ab devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x7d0f896d devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x7d16654a clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x7d1957c7 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d1cc97a register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x7d237cf9 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x7d279aef icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x7d2c1680 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x7d36d6f2 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x7d4445d6 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x7d389b7d skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x7d533714 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x7d557737 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x7d55a0c8 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq EXPORT_SYMBOL_GPL vmlinux 0x7d63bfd7 usb_reset_endpoint @@ -22074,13 +22022,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x7d74f61d pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x7d773372 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x7d7e2df9 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7d8fe503 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x7d91e5d0 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x7d965846 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x7dac51be usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x7daee516 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x7db8eef6 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7dc18c8c __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7dc2b25e ncsi_vlan_rx_kill_vid 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 @@ -22090,30 +22037,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e016902 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x7e0679a0 iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x7e0bb8c2 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x7e0f4331 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x7e1d9017 nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa +EXPORT_SYMBOL_GPL vmlinux 0x7e209fe0 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7e221364 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x7e2c1895 sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk EXPORT_SYMBOL_GPL vmlinux 0x7e4a600a phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x7e5b382e ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e640566 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time EXPORT_SYMBOL_GPL vmlinux 0x7e745cd7 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e7aa980 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e7f437d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7e8266fa udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x7e95e698 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0x7e9a9aa0 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x7ea0f6e4 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x7ead0e5f sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x7eaf91c8 pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0x7eb0c5da tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu EXPORT_SYMBOL_GPL vmlinux 0x7ebc38f8 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x7ecf89b6 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x7ee7a2c6 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7ef82e46 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x7efcdef6 md_find_rdev_rcu @@ -22126,6 +22074,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x7f649e44 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x7f67b86b debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x7f6fa756 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7f756097 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x7f75a5f1 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f828d9b blk_stat_enable_accounting @@ -22134,23 +22083,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x7fa5db59 pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0x7fc912f8 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x7fcf95b5 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x7fd960c1 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fe97d84 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x7ff645ab device_create -EXPORT_SYMBOL_GPL vmlinux 0x7ffcdc03 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x8005c661 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x80074106 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x800d5fe9 PageHuge EXPORT_SYMBOL_GPL vmlinux 0x802c3a62 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x802c3a6d __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x804092cc ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x8059f639 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x807693e4 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x80615680 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x8078f750 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x809b5de5 devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x80a84f5b devlink_net EXPORT_SYMBOL_GPL vmlinux 0x80aa7c8a vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x80c20c4d fwnode_property_read_u16_array @@ -22159,11 +22105,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free EXPORT_SYMBOL_GPL vmlinux 0x80eb3bbc nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x80fa86bc pci_hp_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x80fccd38 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x810c84e7 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812aefd7 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x812bcf8b usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x812c9fba crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x8139bbc5 usb_disable_autosuspend @@ -22175,36 +22121,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x81634980 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81718965 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x8177ffb1 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x817b3e4a sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0x817ba166 pnv_ocxl_map_xsl_regs EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x8181af08 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x819c577d tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81d06987 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x81a9cc31 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x81bac37d __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x81d1010a ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f384d9 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x81fe5736 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x82073b0b __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x820bc6f0 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x820fc801 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82277312 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x82366d0e mbox_flush EXPORT_SYMBOL_GPL vmlinux 0x823f9a08 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x8259dd91 mas_empty_area_rev EXPORT_SYMBOL_GPL vmlinux 0x826a048b to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x8298f755 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x829cb757 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x82b18c41 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x82b76c57 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82cba9ec sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x82c187cb netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x82d34227 devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e79fae perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x82ed9431 component_master_del EXPORT_SYMBOL_GPL vmlinux 0x830944fa debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0x830a1e71 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x83104a3b nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x8323159f housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0x83269e97 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x832a97b1 powercap_unregister_zone @@ -22214,11 +22165,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x8345d63f smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x835ca9e8 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x836f02a5 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x8375653b sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x8379de23 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x837d206a update_numa_distance EXPORT_SYMBOL_GPL vmlinux 0x8381916d phy_modify_mmd_changed @@ -22231,79 +22182,81 @@ EXPORT_SYMBOL_GPL vmlinux 0x83d0dcf1 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x83d7b173 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x83d91701 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x83da8f1a ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x83e52e5e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x83eebc37 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x83f05de4 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x83f41699 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x83f49084 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8413c52a clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x84289934 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x84301d6c sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x84387314 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x843f72c3 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x8444a2fa blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x844a6a16 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x8467702f securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x846b872a icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x847410b9 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x848ce62a cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x8490092e vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x849263f7 blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x8494c460 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x84a72451 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert EXPORT_SYMBOL_GPL vmlinux 0x84b8ae40 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x84ba32ed crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x84bc9cfb ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x84bf345b ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x84c69890 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x84cdbe20 iommu_tce_xchg_no_kill EXPORT_SYMBOL_GPL vmlinux 0x84ec8eee crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8503aad5 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x851aa952 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x852361ad raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x852bc0cc proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x852fba90 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x853eac25 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x8541514b vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x85455936 folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0x8549cee1 subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put EXPORT_SYMBOL_GPL vmlinux 0x8556b616 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x855b5f0a css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x855c5218 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x857e558d dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x8583c12b nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8564f8e4 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder EXPORT_SYMBOL_GPL vmlinux 0x859cf8f4 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x85a9fd9c crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x85b91aff of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x85c02941 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x85c2d8c6 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x85c9f1c2 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x85ca5e2c genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x85cdc67d proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x8602ae61 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x85f72255 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x86124988 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x86135a75 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8622fdf2 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x8649afe9 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8653694a sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86586596 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x86632908 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x8673a907 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x86653930 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867a43b5 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x867b0174 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x8683f06d cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8689a29e task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x86911b56 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x869c441b pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x86b66702 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x86b854e8 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x86cc428e ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x86d137fc dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0x86d163ec led_classdev_unregister @@ -22314,18 +22267,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x86f87600 wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0x86fb1a4a tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x86ff35b0 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x87087c61 hash_page_mm EXPORT_SYMBOL_GPL vmlinux 0x870e054f __device_reset EXPORT_SYMBOL_GPL vmlinux 0x87144343 pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x87180b75 devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x871a3302 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x871a62c5 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x8725b356 xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0x872724fd pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x87280326 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x873a25ed __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x873ecdfb skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x87510e8d of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0x875aaa3c devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x87607dc1 kvmppc_h_clear_mod @@ -22336,13 +22286,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create EXPORT_SYMBOL_GPL vmlinux 0x87b547a4 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x87b5b6ff device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x87bc89f5 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x87c22bd9 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x87ca6545 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x87d9459b dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x87ec184d fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x87f906f1 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x8804974a skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x87fa2d80 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x8806ee10 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x880ef2b0 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x881638f5 of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x8824eaac blk_queue_max_zone_append_sectors @@ -22353,8 +22302,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x8861ab59 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x886caf0e blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x8877e50b free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x887855fb ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888cf1a0 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x8894867f virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x88954efb crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages @@ -22363,15 +22312,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88ad9cee get_device EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b7b05b nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x88d241da umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x88d79337 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x88dd0f3d gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x88dee351 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x890805a2 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x890d9548 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x891ab0e6 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x891d58bd phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x891ee666 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8920ec3b ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x89225ac2 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x8927bcba devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x892c4a93 dev_pm_opp_get_max_transition_latency @@ -22381,7 +22331,9 @@ 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 0x89587ebb netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x89563b01 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x895ba4a1 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x895c81e4 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x8967f78c crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x896eb302 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x8973e41b usb_hcd_pci_shutdown @@ -22394,10 +22346,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0x89ce3e40 fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0x89e3608e crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x89e5aea1 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x89f3528a fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x89fd4d2e switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0x8a01d28f __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x8a217fb9 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x8a23c45e vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a2e08cc inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x8a34992b of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP @@ -22407,8 +22362,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a56dac3 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a687a7c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8a6aaf1b ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x8a7d3251 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8ae8c9 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x8a90c001 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x8a942fa9 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot @@ -22416,38 +22373,42 @@ EXPORT_SYMBOL_GPL vmlinux 0x8aac409e dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ac635d6 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x8ac8ef5e tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x8adcdc0c iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x8af85d47 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x8afb1fc3 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8b022f71 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8b0008e7 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x8b102479 power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b15eb69 pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0x8b263742 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x8b2f0647 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x8b3cff88 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x8b5cf857 find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled EXPORT_SYMBOL_GPL vmlinux 0x8b6d609a irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x8b7105b1 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x8b7275f1 spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b97aa56 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x8b984426 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x8b9e0d38 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x8bac0665 pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x8bb920e5 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8bba3a9e ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x8bbd2b25 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x8bd1c05e bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bd63df0 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x8bd76d5c __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x8be3754a devm_hte_register_chip EXPORT_SYMBOL_GPL vmlinux 0x8be43b84 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c2a3819 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x8c2cdea5 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0x8c364e2d pci_doe_submit_task EXPORT_SYMBOL_GPL vmlinux 0x8c390938 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x8c5803f8 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x8c636e10 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x8c665421 clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x8c6e3107 __fscrypt_prepare_lookup @@ -22455,7 +22416,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c723383 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8da424 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x8c9cb4ab evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set @@ -22478,19 +22438,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d1cb9af cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d260880 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x8d2ca01a msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d396da6 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x8d414d3a icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x8d41ac6f of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0x8d431ed3 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x8d52be66 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x8d4ac4dd ping_close +EXPORT_SYMBOL_GPL vmlinux 0x8d5e2878 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x8d67b4a4 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches EXPORT_SYMBOL_GPL vmlinux 0x8d73bcc7 pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting EXPORT_SYMBOL_GPL vmlinux 0x8d9368e1 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8da03afb sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x8da2d392 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x8db2a6ef nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x8db325d5 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x8dbcfd37 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline @@ -22504,11 +22467,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x8dffeff4 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x8e2b92db pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x8e3acb50 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e47ce06 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8e43668e lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e71edbd nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x8e7a762c pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x8e7db8dc __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x8e89a1de tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x8ea77dba fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x8ea9affa regmap_register_patch @@ -22519,21 +22483,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x8eddf621 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x8edf6d3a crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x8ee20fb0 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x8ee6f72c ata_pci_bmdma_init 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 0x8f02b965 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x8f05f527 tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f1d9337 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x8f1e2352 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x8f21a366 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x8f354cf5 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x8f272dd2 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x8f3879f3 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x8f3f0d80 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x8f3fb884 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x8f429005 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f831100 misc_cg_try_charge @@ -22542,50 +22503,53 @@ EXPORT_SYMBOL_GPL vmlinux 0x8f91d32a dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0x8f97c0bc cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x8f988d36 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x8fae1086 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group EXPORT_SYMBOL_GPL vmlinux 0x8fc476bf devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8fc78679 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x8fc7c6c0 device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x8fcf2130 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8fd4022a msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x8fd55567 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x8fd68790 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x8fe631ef dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x8ff8da44 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9014cdc3 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x90388779 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move EXPORT_SYMBOL_GPL vmlinux 0x903c5dfe srp_attach_transport EXPORT_SYMBOL_GPL vmlinux 0x9041dbd2 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x9057bc70 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x906cd166 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x907d91c1 usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0x90831986 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x908bc483 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x908c1c66 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90b3fe2c ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x90cde6f0 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x90d23c45 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dc8957 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x90f44b17 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0x90f8a352 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x9102c651 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x91062a87 pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x910a3e0d pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x91113ccb pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x9113582e sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x91173a48 pci_walk_bus 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 0x912a5afd noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x913ae2fc fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x913e8d31 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91440031 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x916b3ec2 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x9177dfec dummy_con EXPORT_SYMBOL_GPL vmlinux 0x917b8ba2 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x917d5496 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x91929714 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x91a2b50c mm_iommu_get EXPORT_SYMBOL_GPL vmlinux 0x91a5572f bdev_disk_changed @@ -22596,8 +22560,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x91d36627 extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x91d40441 xas_store EXPORT_SYMBOL_GPL vmlinux 0x91e50aba scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x91e58197 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91eab245 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x91f862a1 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x91f92437 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x92005a6a gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x920959a3 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl @@ -22608,12 +22575,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x9263fab5 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x92641b5d pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x928a90ce blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x92902c60 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x9295a175 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x929898f7 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x92ac0a8e ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x92b4e433 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x92b54180 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x92ccb70a dev_pm_opp_get_opp_table @@ -22636,7 +22602,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x933fbf83 devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest EXPORT_SYMBOL_GPL vmlinux 0x93538866 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x93ac5793 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x93b4e992 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x93c7398f mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93fec87a _copy_from_iter_flushcache @@ -22658,7 +22626,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9472d2d8 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x947a02c9 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x947d5a4e dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x947de732 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x94832036 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu @@ -22677,18 +22644,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x954f5665 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955b5e03 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x955f3851 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x955fd120 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x9562685b blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x956b8fe5 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x956f2547 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x95780aa2 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x957e37a4 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x957f00de sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x95966eea fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x95b1a828 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block EXPORT_SYMBOL_GPL vmlinux 0x95b8cb33 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free @@ -22698,51 +22667,60 @@ EXPORT_SYMBOL_GPL vmlinux 0x95cecf5d devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0x95cfb6c9 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ed3082 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x95fc19dd __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x960ab2aa cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9612db00 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x96230e1c dm_put EXPORT_SYMBOL_GPL vmlinux 0x96358014 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9659c03a sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x965f85c3 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0x967c0b30 analyse_instr EXPORT_SYMBOL_GPL vmlinux 0x967d9a33 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x967e3335 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x968d024f mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x9691e8f5 vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x96933a51 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x96aea154 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96b67ccf xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x96b762de hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x96c192a5 _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift -EXPORT_SYMBOL_GPL vmlinux 0x96cdbe20 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x96d2af1b ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x96da3a00 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x96f1744d mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fb23be ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x97030333 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x972565c9 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x973c2269 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x9740d372 pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0x974f2a65 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same EXPORT_SYMBOL_GPL vmlinux 0x97659231 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x976a7ba0 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x97826702 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x9788ae9d dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x978d9dba crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x97b82519 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x97b87751 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x97baf80b blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x97c0f740 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x97d4cd40 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x97d9ef6f ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x97dbdcca sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x97dcdb7a cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e0f6d6 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode EXPORT_SYMBOL_GPL vmlinux 0x97e36123 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x97f09aea ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x98070b73 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x980d7db4 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x980ea8f1 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x981a1fa7 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0x9846a1b7 sysfs_remove_groups @@ -22751,14 +22729,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read EXPORT_SYMBOL_GPL vmlinux 0x986325e5 kvmppc_h_enter -EXPORT_SYMBOL_GPL vmlinux 0x98733f46 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x987b805e tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0x9886459e lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x9887281a iommu_map EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x98b48da2 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x98be45cd inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x98dc0ffc ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x98e4539e pci_disable_rom @@ -22771,16 +22748,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x99473096 rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x995dd1d0 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x99687b8e ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x9974135f devres_remove EXPORT_SYMBOL_GPL vmlinux 0x997d00b1 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x9981952a devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x998ae117 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x9994e9f3 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x999d5f51 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a23e59 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x99ab489f __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x99d33b38 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x99ded003 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0x99e1d451 pm_runtime_barrier @@ -22791,17 +22770,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x9a082568 fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name EXPORT_SYMBOL_GPL vmlinux 0x9a22abee fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x9a2d7278 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x9a35aea0 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x9a37b2bd __bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x9a3a0c18 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x9a3bc6bd synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x9a405d9a extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0x9a4b6998 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9a56a502 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x9a5c728a pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x9a5f39e4 icc_put EXPORT_SYMBOL_GPL vmlinux 0x9a6520e6 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x9a74b5e4 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x9a9dc6c6 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x9aa0d510 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x9aa1c7e6 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x9aa2a6f6 acomp_request_free @@ -22809,7 +22789,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x9aa4e89f md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x9ac11a3b tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac779e8 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x9acb3729 page_endio EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor @@ -22818,11 +22797,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x9ae175b5 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af95ed6 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x9b0750ac serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x9b0c74d6 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities EXPORT_SYMBOL_GPL vmlinux 0x9b147bc9 save_p9_host_os_sprs EXPORT_SYMBOL_GPL vmlinux 0x9b255931 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9b2bdd16 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x9b4661bc rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x9b54a58d gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle @@ -22843,6 +22824,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x9bab9dd3 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x9bbf1186 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9bc5bfa8 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x9bc94569 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x9bcb56f0 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x9bd10dce pci_epf_add_vepf @@ -22850,29 +22832,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c12a8f7 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x9c089c65 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x9c266066 class_find_device EXPORT_SYMBOL_GPL vmlinux 0x9c2b1137 eeh_pe_state_mark EXPORT_SYMBOL_GPL vmlinux 0x9c33c4ff device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c71065c dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9c8fc617 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x9c986275 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9ca40806 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x9ca728c6 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x9cb59a02 xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd25311 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x9cd59b91 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x9cd71fc9 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cde6b62 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cfdd21f inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x9d02d228 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x9d038913 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d10a720 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x9d1b105a sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x9d2714fa clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp @@ -22880,11 +22862,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x9d4a5c10 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d519884 dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0x9d5aa94f serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x9d6e0e9b bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache EXPORT_SYMBOL_GPL vmlinux 0x9d8f666b dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0x9d927dc1 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d988eec devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x9d98b1b7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x9da9e8df netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x9dab0985 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x9dac551d dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x9dbf0ba3 devm_i2c_add_adapter @@ -22892,22 +22875,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x9dd8f340 wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0x9ddc8cd3 dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9e010ff3 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9e1e3b7f synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e4b4b5c of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0x9e5b7126 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9e72b772 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x9e8a6691 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x9e99d969 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc EXPORT_SYMBOL_GPL vmlinux 0x9ea8d3f8 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x9ea8e778 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x9eaa3c12 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x9ebea721 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9ebff373 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest -EXPORT_SYMBOL_GPL vmlinux 0x9ecf009f devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee22121 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9ef6d1d5 lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0x9ef956e0 max8997_read_reg @@ -22918,12 +22904,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x9f3168c2 pcibios_scan_phb EXPORT_SYMBOL_GPL vmlinux 0x9f4415d0 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x9f44586a pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9f515925 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9f48eb4a int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x9f95fd81 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x9f98dc9b iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x9fa07854 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x9fa28c34 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fa86d9c of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x9faa4c77 iommu_device_link @@ -22931,23 +22917,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x9fb7c3a4 usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fd2a252 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x9fdb65ce inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm EXPORT_SYMBOL_GPL vmlinux 0x9ff101bc skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xa000dd3d virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa00fa8a4 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01f6c48 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xa01fe8f2 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xa02b71c9 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xa03fdfb4 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa0511eed blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0xa054de37 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0721c29 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xa0790a17 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0xa07ec456 devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init EXPORT_SYMBOL_GPL vmlinux 0xa0874b8e iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xa08b2c56 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xa09726e5 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple EXPORT_SYMBOL_GPL vmlinux 0xa0bdeb17 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xa0befe43 genphy_c45_loopback @@ -22956,6 +22945,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa0d465b3 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0xa0d6abe3 pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa0e18201 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xa0e94ef1 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xa0f6fce7 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xa0fff21f devm_register_restart_handler @@ -22966,13 +22956,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features EXPORT_SYMBOL_GPL vmlinux 0xa15c155b gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0xa16286eb irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0xa1670571 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0xa170933f usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xa181a971 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize EXPORT_SYMBOL_GPL vmlinux 0xa185b2ea inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0xa1941747 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xa1ac6a7b hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa1b0e599 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xa1cc4648 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa1cd089c sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xa1d3150c ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0xa1d5d2f0 __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1ddb4a2 gpiod_cansleep @@ -22987,6 +22980,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2261ab6 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xa23023ea crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0xa2372674 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xa24409c2 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xa2524c17 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xa26340e2 key_type_trusted @@ -22994,18 +22988,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa2726a57 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xa27851ff regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xa2964bd7 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xa2985345 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info EXPORT_SYMBOL_GPL vmlinux 0xa2ac9bfa __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2b13982 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xa2b5be40 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xa2b94e07 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2c74d89 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xa2df3b07 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers EXPORT_SYMBOL_GPL vmlinux 0xa2ec24ef tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa31768fc ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xa3342616 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0xa336a003 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xa3391dc2 of_irq_find_parent @@ -23020,12 +23013,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xa3844a00 kvmppc_inject_interrupt_hv EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38cea6e call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xa396c756 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xa39ea6af md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range EXPORT_SYMBOL_GPL vmlinux 0xa3a39065 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0xa3b62b56 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3d96623 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key @@ -23033,31 +23028,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xa3f57cee kvmppc_host_rm_ops_hv EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4190065 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xa43b7014 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xa4414426 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa44ebe69 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0xa450c3df io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa4818140 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa47fc5c1 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa48809bf power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xa4895e04 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa48dde39 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xa4908cfc ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4adecbe devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa4aea4c3 dst_cache_get 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 0xa4c88828 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0xa4ca075d spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xa4ce2818 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xa4d9046b of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0xa4f10802 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xa4f1dbd9 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xa4f71c9f pci_remove_device_node_info EXPORT_SYMBOL_GPL vmlinux 0xa521a66b proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0xa52f0915 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa531b2b5 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0xa5833765 irq_gc_mask_set_bit @@ -23065,20 +23061,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xa5949b9f sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0xa59fc543 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5b4097a tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xa5b60c94 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0xa5c2b1fc ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xa5c889ea of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xa5c8a11d phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xa5cd2904 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0xa5ce0332 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name EXPORT_SYMBOL_GPL vmlinux 0xa5e25376 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f5e9f3 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xa5f66070 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa629cf88 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xa6383453 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 EXPORT_SYMBOL_GPL vmlinux 0xa65afcbf blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0xa65c7b5e msi_next_desc @@ -23091,10 +23083,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6a8e054 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b1760d __traceiter_tcp_bad_csum 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 0xa6bd922e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa6c628ad platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xa6cc8f40 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield EXPORT_SYMBOL_GPL vmlinux 0xa6d1ed49 device_set_node @@ -23107,16 +23101,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xa7170da6 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xa721f4cc led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xa722dc1d sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa727e9ad fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7269fdc devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xa730616b folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0xa737c18f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa7508a7e ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0xa7536a06 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xa75f67f7 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xa7600ac6 dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xa7615985 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0xa766f7c9 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0xa777ce80 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0xa77b59dd pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0xa781aa14 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xa781b14a __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xa785d859 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xa7896e91 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0xa78d6624 alloc_dax @@ -23124,23 +23121,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xa7941706 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0xa7ac11f9 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xa7df22ca fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa7f2077b __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xa7fb6368 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xa8019666 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xa81d80b5 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xa81e2ef9 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xa8278273 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xa8396e56 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xa84911b5 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xa84b82fb vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa852766e devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa86d557f fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xa860d253 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xa8830e9c kvmppc_msr_hard_disable_set_facilities EXPORT_SYMBOL_GPL vmlinux 0xa8879450 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0xa89d09ce __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xa8b234a2 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0xa8bf54f7 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xa8c04e84 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0xa8c05f19 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xa8c36664 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xa8d2c373 platform_device_add_data @@ -23149,30 +23147,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xa8eddd6b mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xa90e3b96 timer_rearm_host_dec EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa935a42b skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xa94b8b2e perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xa94c89f5 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0xa96c5d82 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0xa9791fcd tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0xa9808aee __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0xa9840a48 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xa98bca88 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa98cf17b __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xa99a5342 tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99d502a io_uring_cmd_complete_in_task EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0xa9d08c30 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9dcc43d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa9ddb376 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0xa9f16460 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xa9fe22b6 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xaa05b933 mas_empty_area EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xaa180fde mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0xaa24622d xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xaa341f84 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xaa4a3e95 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0xaa5bf91f fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xaa5fbcae nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush EXPORT_SYMBOL_GPL vmlinux 0xaa842591 of_property_read_u32_index EXPORT_SYMBOL_GPL vmlinux 0xaa9207a3 dev_pm_opp_get_sharing_cpus @@ -23182,8 +23180,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xaab32fed divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0xaabed25b pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xaac6e1e7 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xaad9ed8a ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xaae714ef xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xab0b386f folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0xab1307ac driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xab1f8b6b disk_uevent @@ -23191,14 +23187,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xab521ca1 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xab7433eb dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xab7a7d3e start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xab9bf022 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab9ef32e __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xac19826e pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xac3f95ae __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0xac498019 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0xac4f125e iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0xac553bbe rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0xac5831bb __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xac6e4dbc agp_remove_bridge EXPORT_SYMBOL_GPL vmlinux 0xac7c8185 dev_pm_opp_find_level_exact @@ -23208,13 +23200,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xacc3c289 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0xacd61fc7 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xacd90146 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xaceb09b2 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xacfaa362 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xacfdbc32 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xad15db45 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad29c53d cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xad2d97c5 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xad2e2e6c peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad44b183 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu @@ -23222,18 +23215,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xad599356 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad799336 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xad8bfdab attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0xad9108ba dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xad95488f mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadc492dd xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xadd066f0 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xadd3314b __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xadd394b6 fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0xadd6dc14 edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xaddba80a mm_iommu_preregistered EXPORT_SYMBOL_GPL vmlinux 0xade36f60 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info EXPORT_SYMBOL_GPL vmlinux 0xadf6ae9d irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xae010ee0 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xae0af066 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key @@ -23241,18 +23238,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xae1ff730 dev_pm_opp_sync_regulators EXPORT_SYMBOL_GPL vmlinux 0xae2ae416 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xae2b739f of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xae33aeaa ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init EXPORT_SYMBOL_GPL vmlinux 0xae3dd931 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xae439a43 pcim_doe_create_mb EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable +EXPORT_SYMBOL_GPL vmlinux 0xae48c958 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0xae641523 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae72047b regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xae7800b5 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xae7bd4d8 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7e156f xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xae7d3ef1 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr EXPORT_SYMBOL_GPL vmlinux 0xae91eac5 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0xae9df408 fwnode_get_phy_node @@ -23276,6 +23274,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check EXPORT_SYMBOL_GPL vmlinux 0xaf47b735 zone_device_page_init EXPORT_SYMBOL_GPL vmlinux 0xaf4810c4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xaf48e7e5 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xaf4a8ee0 set_thread_tidr EXPORT_SYMBOL_GPL vmlinux 0xaf4b3f78 clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0xaf5944df of_pci_get_devfn @@ -23283,13 +23282,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf667cca usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0xaf670b6c usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0xaf6929ad pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xaf731745 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device EXPORT_SYMBOL_GPL vmlinux 0xaf8c928d ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0xaf8e9b9b tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xaf9a6dbc fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xafa0d811 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xafa245cd ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0xafb13149 devres_add EXPORT_SYMBOL_GPL vmlinux 0xafb2a970 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present @@ -23301,28 +23299,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xaffaec9c devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xb006f956 wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xb0085e43 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb02184ef sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb02c77cd net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb0492f83 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xb0495521 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write EXPORT_SYMBOL_GPL vmlinux 0xb068e987 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb069db08 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xb06b50d0 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xb06b6a65 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb06dbe3b sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare EXPORT_SYMBOL_GPL vmlinux 0xb0782125 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0xb087df4c led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xb0ae0d35 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xb0af85df __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xb0b74c1a sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xb0946b08 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xb0b7dacf pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0beb2ec devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xb0c08cc7 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0c3d978 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xb0cc7398 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0xb0cf94f1 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d6fb39 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xb0eb6764 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0xb0f11ec3 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key @@ -23337,10 +23337,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xb13e7b01 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0xb15e4516 edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb168d22c devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xb16cdabe gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb173b86b fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xb176e300 fb_deferred_io_release EXPORT_SYMBOL_GPL vmlinux 0xb18a56b2 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xb1901cc9 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xb192d56b lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xb19837f7 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xb19eb0c6 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xb1a99186 pinmux_generic_get_function_groups @@ -23351,7 +23354,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb1e42f0d iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0xb1f50088 component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb21390db perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xb218bdbd wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xb21b6342 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put @@ -23359,7 +23361,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2266cab dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0xb22a6704 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0xb22d264d clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb2346ad1 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb23dbe6c hte_ts_get EXPORT_SYMBOL_GPL vmlinux 0xb23ff82d devm_clk_bulk_get_all @@ -23367,11 +23368,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xb24ec012 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0xb25fb085 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb274cdf2 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0xb281829e debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc EXPORT_SYMBOL_GPL vmlinux 0xb2a265ed kill_device EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock EXPORT_SYMBOL_GPL vmlinux 0xb2a6f828 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb2aec4c7 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xb2b1c675 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0xb2b333d9 device_match_name EXPORT_SYMBOL_GPL vmlinux 0xb2b84228 kgdb_unregister_io_module @@ -23379,6 +23382,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2d9db45 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0xb2de5a97 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xb2e18d45 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem EXPORT_SYMBOL_GPL vmlinux 0xb2f3daaa cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues @@ -23391,10 +23395,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xb37671e9 max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0xb37cfb8e led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xb37d73a6 user_read -EXPORT_SYMBOL_GPL vmlinux 0xb37fa0d6 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xb3893843 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xb38a2cf8 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0xb3920276 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb397fe33 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xb39c1c08 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xb3aa690a rio_mport_read_config_32 @@ -23407,29 +23411,28 @@ EXPORT_SYMBOL_GPL vmlinux 0xb3d06861 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xb3d815f5 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0xb3dfec7d usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xb3f954fd netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0xb4185407 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xb42cb38f nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb4463846 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0xb44de8c0 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled EXPORT_SYMBOL_GPL vmlinux 0xb4531bb6 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0xb457f420 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xb481529e ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb4834db4 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xb47dcab2 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns EXPORT_SYMBOL_GPL vmlinux 0xb48e8df8 blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb493238f virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xb4a9582f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb4b5400b ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4c81bc9 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb4ca06d5 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb4d12344 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xb4d131bd fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xb4d3dc02 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xb4dbd63f pcibios_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xb4de03da usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xb4de5374 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xb4df4c99 nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length @@ -23441,17 +23444,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list EXPORT_SYMBOL_GPL vmlinux 0xb50c7448 vas_register_api_powernv EXPORT_SYMBOL_GPL vmlinux 0xb50e94c2 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb51a7de3 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb52d7304 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb53168a5 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb5359c25 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xb53af49b key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0xb5408184 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xb5491ca3 cpu_add_dev_attr EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb56fe0f5 nl_table EXPORT_SYMBOL_GPL vmlinux 0xb57b58ac fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0xb5849d3b gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0xb58ce2d1 trace_event_ignore_this_pid @@ -23460,20 +23459,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xb5ad1d76 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0xb5bfe6ee usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xb5bffb27 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xb5c7c927 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xb5d27e0e tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xb5d4c1ab i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xb5d54f6b __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xb5de3a52 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xb602c111 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xb605a9c8 iommu_tce_table_get EXPORT_SYMBOL_GPL vmlinux 0xb606c4a9 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0xb6084be0 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb61e6210 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xb61ed48b regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xb63856bf dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xb63d6ef3 strp_init EXPORT_SYMBOL_GPL vmlinux 0xb63d7a9b gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb6430d09 crypto_stats_aead_encrypt @@ -23482,35 +23481,33 @@ EXPORT_SYMBOL_GPL vmlinux 0xb651b529 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar EXPORT_SYMBOL_GPL vmlinux 0xb658a724 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xb65cd10a ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xb675ac25 regulator_get EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67fcd77 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb69c44ef eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0xb69e1569 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0xb6b28514 xas_load EXPORT_SYMBOL_GPL vmlinux 0xb6ba9d1e badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xb6be08dd of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0xb6c3584b extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xb6c4b94f ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb6c4b205 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xb6d2e399 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xb6dc5c3d __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb7236e5c proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xb72ec284 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb733fbf9 devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb73ec4d0 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0xb74c01b6 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75376fb devl_port_register EXPORT_SYMBOL_GPL vmlinux 0xb7634b15 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xb7825ceb pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb794e085 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xb7955bca onboard_hub_create_pdevs EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7a9ab1f platform_get_irq_byname @@ -23520,9 +23517,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache EXPORT_SYMBOL_GPL vmlinux 0xb7d361a1 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb7d3cf88 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0xb7e031b0 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xb7ee7ff3 sysfs_add_device_to_node -EXPORT_SYMBOL_GPL vmlinux 0xb7f50423 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xb7fb64fd sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xb8010ae6 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0xb80bde55 pci_epc_mem_alloc_addr @@ -23530,9 +23527,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xb8445ee5 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xb8559890 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xb8680ced regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0xb86a1d62 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xb86c3fb9 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88ff877 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout EXPORT_SYMBOL_GPL vmlinux 0xb8b14362 phy_restore_page @@ -23540,9 +23537,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xb8c82ce8 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0xb8cc94e5 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d75adc bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xb8e22623 dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xb8e26489 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xb8f8a618 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb8e3eefe inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xb8fdc9ee simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xb9011658 mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward @@ -23550,39 +23547,45 @@ EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb9299cbf balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0xb92e00a5 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb9352ef4 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts EXPORT_SYMBOL_GPL vmlinux 0xb94a33a2 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xb9614885 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb967a6c7 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9720f69 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb994d28a regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb9972f4d nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support EXPORT_SYMBOL_GPL vmlinux 0xb9b2fda0 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xb9b6ceea ping_bind EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c80138 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0xb9ca6ffc filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0xb9cc15bb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb9cf31c7 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9edccda ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0xb9ffb949 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xba0dc097 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba206537 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xba223baf pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get EXPORT_SYMBOL_GPL vmlinux 0xba3d8011 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0xba456876 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xba675f63 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xba76d33e handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xba7a4b97 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xba7a5f95 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0xba986685 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xba9bf1b3 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xba9d3a0d gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xba9d96b7 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0xbaaab94c regmap_read EXPORT_SYMBOL_GPL vmlinux 0xbaadba18 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabb6746 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xbad4f902 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0xbadf17f1 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xbae718f9 srcu_init_notifier_head @@ -23591,13 +23594,11 @@ 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 0xbb1ad335 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2caf8c inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xbb393088 devm_of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb44c99c ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xbb4a2da0 hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0xbb5280cc nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xbb53cdb5 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start @@ -23605,9 +23606,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn EXPORT_SYMBOL_GPL vmlinux 0xbb91e861 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbbaaeb96 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xbbad1846 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xbbb45bcb bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xbbbf9c43 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0xbbc26bbc scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update @@ -23617,10 +23616,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xbc1553b8 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xbc1d0e62 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0xbc1d6a93 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xbc2a80f8 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xbc2d6c81 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc3995e7 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc4bb931 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xbc4c28c8 pci_get_dsn @@ -23629,28 +23626,27 @@ EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xbc6ebb77 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xbc7643cc hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc7e2dc9 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0xbc7f7f04 phy_modify EXPORT_SYMBOL_GPL vmlinux 0xbc856932 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0xbc97b99b mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0xbc9b9698 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xbca3d681 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xbca54473 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xbcb5c001 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xbcb5d948 of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xbcbc4b94 of_property_read_variable_u32_array EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset EXPORT_SYMBOL_GPL vmlinux 0xbcdbcd6b tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcde4d8b ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xbcec8a11 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name EXPORT_SYMBOL_GPL vmlinux 0xbd1c529a devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xbd1df9f4 __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xbd28f71c ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xbd2f1621 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xbd2f2965 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd47a0d2 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0xbd488b0d uprobe_register EXPORT_SYMBOL_GPL vmlinux 0xbd4a8d31 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xbd4ae6d3 devm_irq_setup_generic_chip @@ -23658,39 +23654,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd5c23d4 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xbd69a677 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd81de88 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xbd81f741 nl_table EXPORT_SYMBOL_GPL vmlinux 0xbd8b8bd8 srp_release_transport EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbda6e3d4 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0xbdb204bf wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xbdbd349e device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbde45bb3 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xbdf828dc ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xbe196ca7 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbe329d04 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xbe3ab91a iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0xbe47edf2 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xbe4885ce ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xbe517b02 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xbe5f3d94 clear_node_memory_type EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe714e8a gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0xbe726308 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xbe86c245 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xbe92586f sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe996634 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9cc647 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0xbeb8a2ad unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xbebdc713 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xbec332e1 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xbebd2671 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xbec14757 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xbec420fc usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xbed085a3 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbec8e9d5 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xbed100e6 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0xbedb5d2c fscrypt_add_test_dummy_key -EXPORT_SYMBOL_GPL vmlinux 0xbeeedc18 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xbee53319 ip6_input EXPORT_SYMBOL_GPL vmlinux 0xbef63b50 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0c4fbb sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xbf0e2354 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0xbf1e1fad rio_add_net @@ -23700,40 +23701,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf300656 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0xbf345c06 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbf38cc68 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf495c6f __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xbf57f6f4 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0xbf637302 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xbf70c117 icc_get EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xbf76bb78 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xbf76539b skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xbf873e2e of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0xbf8a5f33 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0xbf95697e power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0xbf9c2997 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0xbf9fc851 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xbfa4962c fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfbe2bd1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xbfc578d6 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xbfc69071 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xbfcd6814 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xbfcd7ee7 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed8aab vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0xc014c13d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc0043ed0 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xc0178888 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0xc0179afb to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xc01a9fe0 mnt_idmap_owner EXPORT_SYMBOL_GPL vmlinux 0xc02bebb8 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0xc03f8d25 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0xc046de95 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xc0491f6a devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xc0536e47 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xc056f5ae pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc063a9de tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xc0648cf8 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread EXPORT_SYMBOL_GPL vmlinux 0xc079988b tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0xc08cb41f devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings EXPORT_SYMBOL_GPL vmlinux 0xc09f862f of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xc09ffd24 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xc0a1cb21 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0aeade5 tpm_tis_resume @@ -23741,25 +23746,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0bd9c53 devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0xc0db58a5 debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e5c38a xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xc0e8612b fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc104598e pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc11865ae xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xc1196db2 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xc12b201f receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xc12cf607 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc132ab2a ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xc135be17 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xc153e60a __dma_fence_unwrap_merge EXPORT_SYMBOL_GPL vmlinux 0xc1639ea5 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc16a491e __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xc171f630 pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1872d97 put_pid EXPORT_SYMBOL_GPL vmlinux 0xc1a288fb max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xc1aef69a fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xc1b7c3ae regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xc1bc6256 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc1cf0c59 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xc1d3d78d device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0xc1d5d254 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xc1d7720c crypto_ahash_finup @@ -23767,7 +23773,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1e4525e regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc1fc4d11 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features EXPORT_SYMBOL_GPL vmlinux 0xc2064bfe wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0xc209fe1e vcap_find_keystream_keysets @@ -23777,41 +23782,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases EXPORT_SYMBOL_GPL vmlinux 0xc2319fd5 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc23e24df call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xc24a79c1 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xc24d1ab7 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xc2544ce3 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc257e6ec fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xc261fd69 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xc26669d1 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xc25bf6b0 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0xc267a63f flush_altivec_to_thread EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc287d3c7 device_move EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29ce6da ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xc29ddd97 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2c13b69 skb_segment EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events EXPORT_SYMBOL_GPL vmlinux 0xc2d6c4ee mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0xc2d89086 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0xc2d995f8 devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xc2de3124 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xc2e80609 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0xc2ea096d disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0xc3056351 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xc2f5e203 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0xc309141a crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc30c54d9 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0xc315b5be devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc33ec2de inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc34422bb devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xc34aea80 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xc34e0626 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xc36278d7 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xc363f1d4 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc38404e0 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc386319d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc39007eb ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl @@ -23828,10 +23829,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e04f1d sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3ebb3f3 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid EXPORT_SYMBOL_GPL vmlinux 0xc417055a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc41a0223 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xc421120e devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xc42467dc tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc421f721 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc42ab296 irq_gc_unmask_enable_reg @@ -23845,7 +23848,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xc46d32eb irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xc47127e5 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc479ffe0 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 @@ -23863,10 +23865,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc531ed3d gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xc534df1f device_attach EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc54b5052 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc54cd6d4 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xc55a12f4 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc55bd3cb __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off @@ -23876,16 +23875,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xc589d0a5 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy EXPORT_SYMBOL_GPL vmlinux 0xc5a16f47 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc5a22724 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xc5a365a9 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a6b8fc devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xc5cd8360 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xc5dd8d64 driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid EXPORT_SYMBOL_GPL vmlinux 0xc61217e8 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xc6134ef2 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6244341 l3mdev_fib_table_by_index 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 @@ -23894,6 +23892,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc64b4a3a extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xc64fdc76 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc6582f36 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xc660ce3a serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata @@ -23901,41 +23900,46 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6770e1f mm_iommu_newdev EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6799c00 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc68309b3 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xc68d5953 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xc695de86 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a1a78f ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc6b0a80f xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xc6b5df5e vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0xc6bd5c2a to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0xc6c27c8a relay_close EXPORT_SYMBOL_GPL vmlinux 0xc6c754fa __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xc6d76ef2 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6dff3de ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0xc6e384c0 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6ef354f attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0xc706cce2 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xc70aa0e3 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc730edcb switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0xc73539af regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xc746a50d vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0xc74e5b97 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xc750b478 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc74fdee9 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xc75a01ef shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xc7685b60 sched_numa_find_nth_cpu EXPORT_SYMBOL_GPL vmlinux 0xc76e8128 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xc786fc04 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xc78ad932 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xc7916221 dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xc7919c20 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc799fc2b validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xc7a03795 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a2ae7b devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xc7a5cbea perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xc7a66fd5 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a7f53d bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xc7c1b6d7 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xc7c2ab5e tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0xc7c67445 fwnode_graph_get_remote_port @@ -23945,6 +23949,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc7f245ec __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc7fd68b4 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xc8026f3e strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xc80f5e1d device_rename EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xc80f9fdb pm_generic_resume_early @@ -23952,7 +23957,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove EXPORT_SYMBOL_GPL vmlinux 0xc83debff __class_register -EXPORT_SYMBOL_GPL vmlinux 0xc83e4194 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xc83f9bc6 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0xc840f3ee pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0xc846bd5a devm_pm_clk_create @@ -23961,30 +23965,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire EXPORT_SYMBOL_GPL vmlinux 0xc85c3b10 cxl_update_properties EXPORT_SYMBOL_GPL vmlinux 0xc861f05f __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xc870b3a1 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xc8733b6e fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets EXPORT_SYMBOL_GPL vmlinux 0xc89bedca of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xc8ae8a89 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xc8a820df ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xc8c7adde pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xc8cef68d handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0xc8d7e8ac software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0xc8dbac6f clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8e29046 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xc8ea4774 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xc8ee46ff iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc92ccd3a component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xc93018a7 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9354a06 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc941e6aa to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xc94d9f08 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96550c3 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9833bc5 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xc985c58e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xc9ad1f3e ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xc9af6ebd clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0xc9b9b613 da903x_update EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc @@ -23994,19 +24000,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9e61a8a scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9f167fb tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc9f52d16 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xc9fd2ed4 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xca005995 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xca2cdfa5 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xca131d0f devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xca28e301 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xca3eba3c user_destroy EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca47a869 virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xca4b7e8e skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca524436 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xca71a482 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0xca74ef12 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xca7a06a5 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81f07b netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xca925034 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0xca928e30 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last @@ -24015,16 +24026,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xcaae9fe3 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock EXPORT_SYMBOL_GPL vmlinux 0xcac65414 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcacc36a3 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0xcaf825d7 pm_relax EXPORT_SYMBOL_GPL vmlinux 0xcaf8924d __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xcb0146d3 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0xcb0c7b0d folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xcb11e2cd phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xcb11f4e4 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xcb23480d sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xcb24bdfb sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xcb258628 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb2dec9c sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xcb376475 do_unregister_con_driver @@ -24034,7 +24043,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xcb45b867 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xcb4b46a4 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb63015b skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xcb793db5 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xcbb01e1b rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xcbb05ff9 sysfs_create_groups @@ -24043,31 +24051,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xcbc5746d perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xcbcd2dc2 pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xcbd34dd5 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xcbe1ac3b nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xcbd9aec2 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xcbe46f76 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xcbe4e5e3 tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe865b9 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xcbfe4648 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xcc0267ac serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xcc0552a4 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0xcc099e49 phy_exit EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xcc189990 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xcc18ac3b inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xcc1a2f06 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc39effa rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xcc492397 eeh_pe_reset -EXPORT_SYMBOL_GPL vmlinux 0xcc4cd35f get_task_mm EXPORT_SYMBOL_GPL vmlinux 0xcc4d2fff pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xcc5c0daa adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xcc630316 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xcc7006e8 pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xcc835010 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xcc8733a8 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xcc889f94 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc92d85e sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcca2f4b7 pcibios_claim_one_bus EXPORT_SYMBOL_GPL vmlinux 0xcca2f4c9 of_clk_set_defaults @@ -24082,24 +24088,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xccfb9a2d gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0xccff9609 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0xcd06ec42 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0xcd0f343a rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xcd15b2b4 iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0xcd163011 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0xcd2015b8 serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xcd238056 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size EXPORT_SYMBOL_GPL vmlinux 0xcd2e42f3 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd3a7b47 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xcd415681 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xcd5f953a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xcd67493d bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd814c32 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xcd90c791 tcp_plb_update_state 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 0xcdb0681a proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xcdb2b4f0 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xcdb5970a pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdbc513a pci_sriov_set_totalvfs @@ -24107,10 +24111,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xcdc7c215 pci_find_bus_by_node EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima +EXPORT_SYMBOL_GPL vmlinux 0xcdd42a8e sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xcddbd4d1 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xcdde655f crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xcde1938e ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xcde7905e ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xcde7ca57 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0xce07686e fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0xce079552 wwan_create_port @@ -24137,21 +24140,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xcf22304f usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0xcf28e12f vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf5661d3 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xcf587c4f misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xcf7ed706 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xcf878114 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xcf8873e4 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xcfb3abc5 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0xcfb9258e nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xcfb9f84e rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0xcfbef8af i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xcfc18620 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfdc7775 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0xcfe08367 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xcfe92df7 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd001c92a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xd006fcc6 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xd0186b54 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xd01aa1b9 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xd029cf5e cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xd038248a devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xd03ce80d i2c_new_dummy_device @@ -24166,13 +24170,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xd06d0c90 blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0xd0922eb9 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xd0926218 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xd0949a04 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0xd0a451cc crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd0afa0c5 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xd0ba5e6a serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0xd0bad8c6 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d94a20 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e42fd0 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xd0ef8411 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0xd1066749 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0xd120d558 fscrypt_dio_supported @@ -24185,17 +24189,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xd172b7e4 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xd176af60 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd1827a2f sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xd1a35844 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xd1a37afb ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xd1a9951b rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd1b3f1f8 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0xd1c0a7e0 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0xd1c80cc3 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d22907 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0xd1daa52a ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2140844 ata_bmdma_irq_clear 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 @@ -24203,12 +24206,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd29225e8 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd294b0a2 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xd294b79a rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0xd298920a i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a806cc ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0xd2a822c7 pseries_reloc_on_exception +EXPORT_SYMBOL_GPL vmlinux 0xd2a94d1b ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xd2ab9a14 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xd2acfa53 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xd2aecd18 of_irq_get @@ -24216,18 +24218,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xd2d05a0e usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0xd2e1a47a usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd3065f4c net_selftest EXPORT_SYMBOL_GPL vmlinux 0xd313250b devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xd316a9cc tcp_get_syncookie_mss 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 0xd32403fb ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0xd3388575 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xd339170e report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0xd33b9990 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xd342ced6 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xd34306dd md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xd348747c crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd3529031 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0xd3684e07 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xd38d06a8 set_primary_fwnode @@ -24237,85 +24236,79 @@ EXPORT_SYMBOL_GPL vmlinux 0xd3c2f489 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xd3c46a5e pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xd3d47723 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xd3daea7d ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xd3e131b8 gpiod_get_index 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 0xd3f3a156 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0xd3fe9d3d devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq EXPORT_SYMBOL_GPL vmlinux 0xd40bf635 stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0xd41c5172 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd4202d73 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xd4240258 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4317d01 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0xd4478dca sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xd4776c5d of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0xd483388d irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0xd489e950 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xd48d183b sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd49aebf7 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xd49e72dd phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xd4aeaef3 decrementers_next_tb EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b83032 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4c53a75 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd4c99e33 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd4df5af3 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xd4e2255a cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ec7653 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0xd4eea497 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd4f0eb4e mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xd4f21d5a regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xd4f58d3c auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xd4f6d449 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xd4f7cff0 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xd4fad83e md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xd4fd11ff kvmppc_invalidate_hpte EXPORT_SYMBOL_GPL vmlinux 0xd4fe0f75 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xd501e8fe regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xd50f2da6 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xd517d4f3 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0xd526188b dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0xd526e88e check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0xd52b56e5 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd53db1c0 strp_stop EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54f396f simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd565eb96 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xd5690309 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd57969c3 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0xd580c17a tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0xd594f96c platform_bus EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59a77f2 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xd59eb99a mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor EXPORT_SYMBOL_GPL vmlinux 0xd5b0bf79 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xd5b2cd6a kvmppc_clear_ref_hpte EXPORT_SYMBOL_GPL vmlinux 0xd5b63c61 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5b92a38 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xd5bb1b3e register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xd5d4e9cf uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xd5d86b96 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xd5dc8156 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xd5de9afd sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0xd5f10022 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0xd5f50183 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xd5f8a0a2 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0xd6117f4e mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0xd6197ef9 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd6174428 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xd621fc5a klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0xd62ea3c1 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xd641b790 srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd64fa8ff perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xd65f3102 of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0xd66e6258 virtqueue_enable_cb_delayed @@ -24324,17 +24317,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xd6a42d4a sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd6bbd8af register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd6ce1c25 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0xd6dae79f em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xd6deca82 is_software_node EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries EXPORT_SYMBOL_GPL vmlinux 0xd70858fd regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xd726197d tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72ab70c fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xd7365035 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd744aae3 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xd75bc428 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xd7615ef4 crypto_rng_reset @@ -24343,7 +24334,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xd769edb5 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xd76e4a35 ioremap_phb EXPORT_SYMBOL_GPL vmlinux 0xd76ffb4e __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xd778bfec xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xd7832683 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xd7886630 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xd799de96 dm_audit_log_bio @@ -24354,26 +24344,25 @@ EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7dde737 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xd7dfbb0c of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xd8001321 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0xd81f285b of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0xd83ce31f dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd8438727 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85c9131 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xd85ecb4b devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xd8748a63 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd896618b usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xd8a39b48 filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0xd8b343fd gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xd8b4f740 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0xd8bc9f4a access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xd8be4f3c dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xd8ca5bc2 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xd8d6dab4 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xd8dbce99 bio_poll EXPORT_SYMBOL_GPL vmlinux 0xd8e18701 dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0xd8f15c4e do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xd8f9ded4 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd911be12 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd93f38d6 blk_mq_sched_mark_restart_hctx @@ -24381,21 +24370,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xd943fe21 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0xd94439bb devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0xd94d103b crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xd9580251 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0xd95f6f8a scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0xd96a8056 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xd96af057 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd99519c0 mm_iommu_new EXPORT_SYMBOL_GPL vmlinux 0xd9a64f72 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd9aadac6 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0xd9ac5547 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xd9b22f2c cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xd9bb076e sbitmap_any_bit_set EXPORT_SYMBOL_GPL vmlinux 0xd9c17674 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d3c43c __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd9d8a5cc of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9e04991 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9f6ca57 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xd9fb2f0c serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda05d5e2 devm_regmap_field_alloc @@ -24406,6 +24395,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start EXPORT_SYMBOL_GPL vmlinux 0xda3a37f9 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0xda45b713 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xda4c5d53 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xda72f9cb devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xda96d872 __clk_hw_register_divider @@ -24416,34 +24406,36 @@ EXPORT_SYMBOL_GPL vmlinux 0xdac04bd5 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xdad0307c fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xdad51d76 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xdad65e16 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xdae0fe1f __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xdae5801e genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0xdaeda3f4 dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf7c6c3 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xdaf9047f raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xdb05f5eb devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xdb09a99d __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xdb25df32 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load EXPORT_SYMBOL_GPL vmlinux 0xdb3cbead clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xdb4275da raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xdb4e9a88 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset EXPORT_SYMBOL_GPL vmlinux 0xdb77c732 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0xdb7bd941 rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba837a0 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xdbac1e01 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xdbb646fb dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdc01463e ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xdc05892d sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write EXPORT_SYMBOL_GPL vmlinux 0xdc0b9a16 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xdc0d29fb __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xdc10d4aa init_node_memory_type EXPORT_SYMBOL_GPL vmlinux 0xdc115de0 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0xdc14f244 usb_hcd_resume_root_hub @@ -24454,7 +24446,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc897b41 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xdc882a1b ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xdc8c387b memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xdc941e44 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0xdc9638b5 uart_xchar_out @@ -24464,15 +24456,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdca43c05 __xas_next EXPORT_SYMBOL_GPL vmlinux 0xdcaa586f sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdcaa8502 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xdcaff29f ehci_reset EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdcfbb9b8 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0b053a netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xdd113200 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0xdd2c3377 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0xdd3420d7 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xdd34c678 __srcu_read_unlock_nmisafe EXPORT_SYMBOL_GPL vmlinux 0xdd449d14 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd4cd6db __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xdd53bde6 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xdd55f990 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd82cee3 fuse_do_open @@ -24481,61 +24479,62 @@ EXPORT_SYMBOL_GPL vmlinux 0xdda2be10 blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0xddacbcec device_reprobe EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc274d3 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xddd96a94 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0xddf2e96e create_signature EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddfa6867 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xddfe2dff nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0xde1812ca vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xde1b1d2c filemap_read EXPORT_SYMBOL_GPL vmlinux 0xde1c83ae vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xde1fa48a fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xde27113b bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xde2b5baa usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xde3b44f3 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xde4075dd ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xde465295 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xde4baeb5 iov_iter_get_pages_alloc EXPORT_SYMBOL_GPL vmlinux 0xde5c24ae pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0xde6930df rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde6fb394 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xde795a32 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xde79b913 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0xde84d664 kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0xde92db72 led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0xdeb66931 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdecc1392 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0xded372f6 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xdedccaa6 mmput_async EXPORT_SYMBOL_GPL vmlinux 0xdedccb97 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xdede3c17 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xdee409b9 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xdee40b1e platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf013f42 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xdf0a9663 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdf0b8164 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal 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 0xdf2e3585 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdf2ffc12 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xdf3d21eb handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xdf5d3bba pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xdf79d91b pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0xdf99ca73 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xdfa12202 pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xdfa66b39 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0xdfa76cb8 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0xdfaad864 tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xdfbfa6fc serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd05250 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0xdff82ab4 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xdffb8ebc __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xdffa0f1a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdffd0386 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xdffd5ff5 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xe015a12d kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xe0235356 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xe02baf68 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0xe02d2ecf sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xe03eb8c6 clk_register_composite EXPORT_SYMBOL_GPL vmlinux 0xe04ae63b __fscrypt_prepare_link @@ -24543,15 +24542,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu EXPORT_SYMBOL_GPL vmlinux 0xe06ce86b fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xe07361ad usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xe07f7c9a find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xe085c604 regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xe0899795 md_run EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09d1c69 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xe0a00954 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xe0abb688 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0c0be89 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xe0c126c8 of_get_named_gpio_flags EXPORT_SYMBOL_GPL vmlinux 0xe0ca68a8 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xe0cf6343 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0xe0d1b926 of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0xe0d83b88 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xe0d8b11e driver_register @@ -24572,87 +24573,89 @@ EXPORT_SYMBOL_GPL vmlinux 0xe149b1da __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0xe16eff9e blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xe1795791 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xe17dcc68 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xe182c25d pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0xe1a39b50 vcap_rule_iter EXPORT_SYMBOL_GPL vmlinux 0xe1a4747e devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0xe1a6f2d9 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xe1b13df6 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xe1b5c112 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c54c08 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off EXPORT_SYMBOL_GPL vmlinux 0xe1cea560 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0xe1e9a8f8 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xe1f96728 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xe1ff353f ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xe203ca66 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0xe203d292 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe2208daf xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xe230d195 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xe21bd5ff switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xe2269577 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe236bb61 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xe23da725 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0xe23e3275 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xe2540e11 is_xive_irq EXPORT_SYMBOL_GPL vmlinux 0xe268af04 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xe2737533 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0xe273e0b8 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xe273f567 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xe2741d28 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0xe284fc7e thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xe285823e security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xe28bc09d kthread_data EXPORT_SYMBOL_GPL vmlinux 0xe2a237c2 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0xe2a75451 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xe2b3792e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xe2b4f29f devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xe2b6d362 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xe2b90f0b pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0xe2ca7e69 raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d15d00 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xe2e032cf devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2fc55d5 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xe3017e84 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xe323e7c7 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xe32edd23 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xe33da7ae sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0xe3453737 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xe3545567 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe364b34d sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xe36bd426 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe37b8e2b skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xe37cad6f dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe390ae99 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0xe3948ef5 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xe39503b2 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xe3955139 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe3998193 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xe39b4e14 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit EXPORT_SYMBOL_GPL vmlinux 0xe3a6c811 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xe3aeaa03 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3ba6c23 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe3c3e43b ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xe3cb5e4c vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0xe3d74119 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xe3eecda9 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe3fafff0 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xe3fc241e devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe3fe6be1 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xe403de46 rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe40d8060 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe41c1fbc __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xe42513d2 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xe42723cf extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xe429848e eeh_pe_inject_err EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe4374975 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xe440464d ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xe447900b list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xe448ba6c sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xe463e9f1 crypto_grab_kpp EXPORT_SYMBOL_GPL vmlinux 0xe4771162 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xe4783935 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe47d9546 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xe47e4990 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xe480d1c9 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4afe95c regulator_register EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed @@ -24660,28 +24663,27 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4b946b6 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm EXPORT_SYMBOL_GPL vmlinux 0xe4d1230d __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xe4d31fdf unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xe4d512c8 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xe4dcdd9e __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe50e77f2 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xe5188704 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe5056e9c lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe50618ce skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xe51fd870 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xe526afa5 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xe544c1ba dbs_update EXPORT_SYMBOL_GPL vmlinux 0xe551d270 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xe566f5eb sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xe5681a52 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xe56cabd6 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xe57c181d msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister EXPORT_SYMBOL_GPL vmlinux 0xe5892a12 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe58b89ff sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xe58c7d7d devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe5b0c201 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xe5b41cda gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xe5be7c46 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0xe5c5c911 iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0xe5ecc7b0 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xe5ed907d ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xe5ee4005 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xe5f99450 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0xe5faf28a regulator_set_load @@ -24698,23 +24700,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xe63c82c2 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0xe657d02e dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xe6756dc3 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xe68044a0 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0xe684f5dd device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe6893410 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0xe6920bb6 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xe6999cb8 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq EXPORT_SYMBOL_GPL vmlinux 0xe6a70cfe crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xe6aeafd4 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xe6b1d3fb __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0xe6b6a51a ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xe6c46418 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xe6cd969b ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xe6d0f38e dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xe6d7fc79 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6fd62c4 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6ef447e metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe716f53d of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq @@ -24722,7 +24722,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe72c0af5 sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0xe74df9cf pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xe74ec350 accumulate_time -EXPORT_SYMBOL_GPL vmlinux 0xe7515eae ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0xe7519e85 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe76293ce dm_get_md @@ -24739,6 +24738,7 @@ 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 0xe7d8ac76 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe819af48 usb_string @@ -24750,39 +24750,41 @@ EXPORT_SYMBOL_GPL vmlinux 0xe863a8de iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0xe866f7d1 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xe87370a9 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe8837b0c skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xe89a3912 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0xe8ab26bc do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static EXPORT_SYMBOL_GPL vmlinux 0xe8d6dc14 swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe8d8c91b security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe8de24d0 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xe8e42d4f blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0xe8e77b08 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xe8ec9d51 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0xe8f43507 dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0xe8f67936 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0xe90b8a4d spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9160c3d xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xe91e0d73 devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xe932e84e usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe945f8b0 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xe949f044 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction EXPORT_SYMBOL_GPL vmlinux 0xe95a60ff rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xe975518c gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0xe97e3c81 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe990d2aa mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xe9935115 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0xe9a2c010 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe9a31519 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0xe9a85765 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xe9a9a6eb fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xe9aead96 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0xe9b04a07 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xe9b80824 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xe9c3cd98 pnv_ocxl_get_xsl_irq EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dbb9a2 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xe9ecf62b init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0xe9fefc01 rio_get_comptag @@ -24792,9 +24794,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xea0f03f3 unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xea1056e2 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea152df8 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xea1a3ce5 shake_page -EXPORT_SYMBOL_GPL vmlinux 0xea1d0412 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xea1a910b netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free EXPORT_SYMBOL_GPL vmlinux 0xea430fe0 tps6586x_irq_get_virq @@ -24821,40 +24822,38 @@ EXPORT_SYMBOL_GPL vmlinux 0xeb06f2a5 devm_thermal_of_zone_register EXPORT_SYMBOL_GPL vmlinux 0xeb094fd5 thermal_of_zone_register EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code -EXPORT_SYMBOL_GPL vmlinux 0xeb1ca786 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0xeb2bf863 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xeb2dd21b devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xeb50be6b devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xeb67139e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xeb6fd738 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb67ed90 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xeb748089 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xebb5d220 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xebc081d6 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xeb81910f ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xeb90cf4e xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xebc5d7bc scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xebcc49d7 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xebd17192 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xebd46dfc wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebd6eee2 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xebe5beef free_fib_info EXPORT_SYMBOL_GPL vmlinux 0xebe76adc regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0xec0b11ca gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xec28ebb7 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0xec2dd813 of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0xec354e16 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set -EXPORT_SYMBOL_GPL vmlinux 0xec4a7f63 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xec560683 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec6b487b devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0xec71f884 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec78d710 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xec7df69a inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind EXPORT_SYMBOL_GPL vmlinux 0xec86512f gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xec965f54 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xec974456 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xecbd4a66 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xecc1fff7 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xecc3185f tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0xecc81a4b mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xeccc209d kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xeccf0c7c extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0xeccfcdd9 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xece86019 of_dma_xlate_by_chan_id @@ -24865,77 +24864,79 @@ EXPORT_SYMBOL_GPL vmlinux 0xed099ae1 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0xed0e5eff __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0xed0f4f22 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xed1e4ae8 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xed2c0579 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse EXPORT_SYMBOL_GPL vmlinux 0xed2f66e0 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xed34d63a sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed42b3b2 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xed518c54 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xed606bb0 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xed683878 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xed7965e4 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xed6cc712 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xed728a91 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0xed86d7f7 devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr EXPORT_SYMBOL_GPL vmlinux 0xed91e852 ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xed9a1810 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xeda31df9 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xeda33d8a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xedce5154 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xedceaf82 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0xedd26008 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xedd28f33 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0xeddb9189 subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0xedf0b88c devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0xee01da67 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xee013450 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xee026b20 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xee052008 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0xee143d7f mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xee1b7cde ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xee2e4b04 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xee35b317 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xee54e518 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xee5937d8 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xee5fd83d __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xee68eb6d pci_pasid_features 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 0xee7821ca pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xee98420d ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0xeea4cc59 pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0xeeb50db5 cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0xeebb4069 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xeebc8a4d open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xeed151c3 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xeed6f596 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xeed6f8b6 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xef0dbf04 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xef2411b4 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xef1e61ff __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xef23e479 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef3248eb switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xef33f6a9 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xef3d2032 vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef48c667 led_put -EXPORT_SYMBOL_GPL vmlinux 0xef505bde tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata EXPORT_SYMBOL_GPL vmlinux 0xef6821b8 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef6d0376 opal_invalid_call EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef81243b sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xef874ffe pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xef96147c thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefbc4843 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xefc484fc find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xefc9a355 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xefd1689e mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xefce83f8 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xefd8c93d preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xeff0320f devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf00c9055 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf0157dd8 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0xf01ae533 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xf020ffa1 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0xf046eb6f power_supply_changed @@ -24943,42 +24944,42 @@ EXPORT_SYMBOL_GPL vmlinux 0xf05adac2 __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0610936 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf0679524 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xf0794a84 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xf081703b debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xf08df1dc bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0adb399 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xf0be810e devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xf0dc2ff2 icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf0e63a21 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xf0eef204 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xf0f94853 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xf0ff4fa5 blk_mq_quiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0xf10abdbc devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xf1320e31 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xf1412584 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf1437c9a rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xf1451422 of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0xf154a2ca pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0xf15bccc3 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf185d5ce __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xf1870c63 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0xf195cb7d iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xf199afd9 mas_pause EXPORT_SYMBOL_GPL vmlinux 0xf19d3911 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0xf1a2ca93 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b0ad7d ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf1bf85cb lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0xf1c60a8d restore_p9_host_os_sprs -EXPORT_SYMBOL_GPL vmlinux 0xf1d49e74 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xf1d545b7 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0xf1ded581 pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0xf1eac831 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xf2214567 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0xf2282faf hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xf22977c4 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xf22bfbf3 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xf22f7ad8 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter @@ -24986,7 +24987,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf242ebcb rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xf244cea2 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0xf26941cf devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xf273e39e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xf270a281 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0xf27f1a3a __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL_GPL vmlinux 0xf2909824 class_remove_file_ns @@ -25015,15 +25016,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xf32fab47 of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 EXPORT_SYMBOL_GPL vmlinux 0xf342426e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf347e98d tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf3579d63 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xf368958c mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xf36bc98c ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf37cea08 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf38e6a0f usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xf38e7444 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0xf39263cd unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp EXPORT_SYMBOL_GPL vmlinux 0xf3a69bdf add_swap_extent @@ -25034,10 +25034,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xf3ecfda0 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xf4131556 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xf418f970 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xf4235d99 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xf4273dd5 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xf4295e22 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xf43de8c8 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf4475498 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xf459ad8b rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xf4641007 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause @@ -25059,9 +25058,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release EXPORT_SYMBOL_GPL vmlinux 0xf4da7374 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xf4dbd16e synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xf4dfe12f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf515a400 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5183cb9 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xf5185a33 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0xf518e160 load_vcpu_state +EXPORT_SYMBOL_GPL vmlinux 0xf51cc86b iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xf526a7f1 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0xf5388f23 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xf540c67c power_supply_put @@ -25072,14 +25073,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock EXPORT_SYMBOL_GPL vmlinux 0xf56aa7f6 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xf56c18ff platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf57328f3 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xf578d86b iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0xf581a836 mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0xf59d9711 wm8350_reg_write 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 0xf5bdca6a ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache EXPORT_SYMBOL_GPL vmlinux 0xf5d82386 of_remove_property EXPORT_SYMBOL_GPL vmlinux 0xf5de203d phy_pm_runtime_allow @@ -25087,13 +25086,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf5f55069 pci_hp_remove_devices EXPORT_SYMBOL_GPL vmlinux 0xf5fca2d0 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf5fdc8d3 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xf6075329 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0xf60e7404 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr EXPORT_SYMBOL_GPL vmlinux 0xf61f6332 devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0xf620bcab __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xf6326b8f kvmppc_h_protect -EXPORT_SYMBOL_GPL vmlinux 0xf634171c sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check EXPORT_SYMBOL_GPL vmlinux 0xf64c0654 da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0xf654054f of_msi_configure @@ -25101,20 +25100,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xf66a35a9 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0xf68b4d30 vas_win_close EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a6a0e0 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0xf6b32650 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xf6b87276 component_del EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c51471 vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6c9bb81 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xf6d305b1 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xf6e05aab inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init EXPORT_SYMBOL_GPL vmlinux 0xf6e355ee dma_resv_get_singleton EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf6f080af led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xf6fd10b2 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xf70e3b96 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf713e193 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0xf71744a7 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0xf724f20a usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size @@ -25128,10 +25128,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit EXPORT_SYMBOL_GPL vmlinux 0xf75ed3e4 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xf76ac1f6 mas_store -EXPORT_SYMBOL_GPL vmlinux 0xf77ac4dd inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf76e1120 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf78c6579 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xf788c616 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xf78ea9b0 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf792c064 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xf79dd950 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0xf7a37930 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0xf7a9ab8a bus_unregister_notifier @@ -25140,6 +25141,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c073d5 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0xf7d8c5da transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf7da5a0a inet_hash EXPORT_SYMBOL_GPL vmlinux 0xf7ddd623 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xf7fc7241 spi_sync EXPORT_SYMBOL_GPL vmlinux 0xf8033d80 pinctrl_force_sleep @@ -25149,44 +25151,46 @@ EXPORT_SYMBOL_GPL vmlinux 0xf822a3b1 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu EXPORT_SYMBOL_GPL vmlinux 0xf839aaef __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xf84a7e41 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf8589bb5 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf85a2ccb rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf8a74746 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xf8ab6363 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0xf8cf558b tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xf8d0da51 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xf8db5a48 dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit EXPORT_SYMBOL_GPL vmlinux 0xf8ff501b power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xf90105e4 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0xf9061d1d io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf90ec4a9 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xf933524a devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xf932096f blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xf93cd765 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xf93ef8d0 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0xf9500362 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9529ffd xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf9631dc8 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xf96564d5 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0xf96dae3a of_get_pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0xf9708d5e pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0xf979d739 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf976db60 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xf97bbfe2 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xf994f782 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xf995b138 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9a2bbe8 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xf9a3702b register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xf9a6a72a bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xf9bf8c13 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xf9cec159 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0xf9d517b6 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf9e4aa92 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xf9fcec1a sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xfa019405 irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xfa0fa4c7 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xfa151379 mas_next EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option +EXPORT_SYMBOL_GPL vmlinux 0xfa235123 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xfa240d9b ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0xfa2ad936 uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0xfa2d30cd dev_pm_opp_add @@ -25197,12 +25201,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa445d82 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xfa471996 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xfa4db066 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xfa60ef71 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa6bd751 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xfa7ac68e pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0xfa7d2ad8 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xfa9d811d inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xfa90b275 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xfaa2cffa pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0xfaa83c6d input_class EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range @@ -25213,71 +25215,73 @@ EXPORT_SYMBOL_GPL vmlinux 0xfabe351f rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0xfac43815 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae94158 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xfaf1761a dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xfafdb253 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xfb02d701 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xfb0b8930 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xfb07e31c register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xfb100fa9 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xfb10df9c skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xfb16d4ab evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfb30823f dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xfb310eff ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xfb323890 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb398d5d br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xfb4a1df1 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb4dedaa icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xfb53fadd scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xfb54e57c pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xfb5a3fdd platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xfb7bef38 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfba6efa8 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xfb903ec0 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xfbaf3925 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbc7ca8e iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0xfbcfea1e led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xfbdd0032 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xfbdca4fc pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xfbe40ce6 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xfbf5aa35 get_current_tty EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc1f1d80 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc226fa2 class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr EXPORT_SYMBOL_GPL vmlinux 0xfc28d5cd of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xfc2a48c9 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xfc3260a1 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xfc3eb126 tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0xfc51b499 mmu_lpid_bits EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores +EXPORT_SYMBOL_GPL vmlinux 0xfc75b940 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xfc77d26d component_add EXPORT_SYMBOL_GPL vmlinux 0xfc81bdbe vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xfc89514c ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xfc9d8441 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0xfc9db7ab sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xfca0957f perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc0f47f vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfccc2779 dw_pcie_ep_raise_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xfcce6297 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xfcdf90a8 devl_port_register -EXPORT_SYMBOL_GPL vmlinux 0xfcf0543c tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0xfcf5e7f1 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfd01560f register_cxl_calls EXPORT_SYMBOL_GPL vmlinux 0xfd0e4628 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xfd1a0f7f vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xfd20a7b9 pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd3dceb6 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xfd4e2dd3 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfd646cd4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xfd562655 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xfd793bc2 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xfd8adfef cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0xfd8ddbe5 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xfd9cf73e component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xfd9f5ff7 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0xfda98b4d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfdbd1a6b inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type EXPORT_SYMBOL_GPL vmlinux 0xfdc9a73a usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0xfdd0182a devm_i2c_new_dummy_device @@ -25285,7 +25289,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xfde1185a crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xfde8dac0 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0xfdea672d device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xfdeec67e tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xfdf5a200 subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0xfdf78451 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xfdfcf877 regulator_register_supply_alias @@ -25295,20 +25298,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0xfe2821a1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xfe295895 ping_err EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xfe3d548e tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe679629 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xfe68bc4f ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xfe828b9c xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe994e33 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xfe9afb6c phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xfe9dac17 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xfea70283 da903x_write EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible EXPORT_SYMBOL_GPL vmlinux 0xfec0c46b devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xfec43358 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xfec52650 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xfed047c9 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed3348a __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xfedd63ce pci_hp_destroy @@ -25320,12 +25326,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xff314ba5 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xff33ff2f pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff5610a7 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xff566368 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xff56c62f phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xff6db3e5 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0xff6e3ae4 ping_close EXPORT_SYMBOL_GPL vmlinux 0xff746fce eeh_dev_open EXPORT_SYMBOL_GPL vmlinux 0xff7dd3ce i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui @@ -25333,18 +25337,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order EXPORT_SYMBOL_GPL vmlinux 0xff8643f5 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0xff89d05e class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xff8ddcbf devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xff8ebdc8 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xff92088b mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xffa45071 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0xffcb54dd ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xffcda2d9 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xffd20765 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xffe88d7b handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0xffef5cda regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xfff07244 bio_blkcg_css -EXPORT_SYMBOL_GPL vmlinux 0xfff5e6bb netdev_walk_all_upper_dev_rcu 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 @@ -25595,82 +25598,82 @@ IOMMUFD EXPORT_SYMBOL_GPL 0xf8cbb52a iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x17b04906 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x00439db2 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0bfa8a0e iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0f36beb9 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x115af8d6 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x022f9fbd iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x039e52f5 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x06086f41 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0ad8bef3 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0cdff263 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x11c569d8 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16301c2a iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x18b2cc74 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1b01e8f8 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1d2ff456 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1ee1c386 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x21cf6ba5 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x21e2d2f8 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x21f377d3 iwl_set_soc_latency 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 0x22baf518 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x24be2999 iwl_fw_dbg_read_d3_debug_data 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 0x2a860c61 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c66b404 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2e4a143a iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x33f57875 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2a91aadf iwl_pnvm_load 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 0x35408647 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36f6c44d iwl_parse_nvm_data 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 0x385c3b34 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x45a7e815 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x470c1d7c _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b88b887 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3da5dea5 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f47905a iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x41622cbe iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45ba2e8b iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x4932081e __iwl_info 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 0x4d634e09 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x50b6f3db iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x53e2fc45 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5a34deec iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5a81a278 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5c14d016 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a7d6a60 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4b6463d9 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x520cc602 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 0x5f7d2656 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x632ad9f7 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x65ff5082 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x691f1fa0 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6aa3339f iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5fad004b iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65eae067 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x68cc8882 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6cede856 iwl_fw_dbg_collect_desc 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 0x724e8822 iwl_remove_notification 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 0x7348f1df iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x745efeee 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 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 0x86db2555 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86dc0074 iwl_read_eeprom 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 0x892f6776 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8a48b885 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8ab93705 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8b12fdd9 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x8cfd14d8 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x907d4ea8 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x972a082c iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8ef8b3e6 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9371729b iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x97337dc0 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa57233fe iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa926ac95 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa15f748f iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa6715518 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa7f162c2 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xabe4c26c iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xac5b0d84 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaeeabef4 iwl_write32 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 0xb6eaebe9 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 0xb86bf121 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbc322ae2 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbe614987 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc1785c03 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc9c48ff0 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc5704f2d iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc758378a iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd96e603 iwl_force_nmi 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 0xd78a1188 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd95f91e0 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xda8589e1 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdb55e3fb iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdc2c325a iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe66242b5 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe7425b2f iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd09154a9 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xde4a2ec6 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe186f8a2 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe432e202 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe4f0c509 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe78f621c iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf284c184 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf5158f32 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf8ad1d51 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfa5ec394 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfb68d3b9 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef0e28f0 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf0b27f3a iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf8a63617 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfca497f5 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi LTC2497 EXPORT_SYMBOL 0x2e8680fa ltc2497core_probe drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0xe7316acf ltc2497core_remove drivers/iio/adc/ltc2497-core MCB EXPORT_SYMBOL_GPL 0x07051529 mcb_get_resource drivers/mcb/mcb @@ -25688,8 +25691,8 @@ MCB EXPORT_SYMBOL_GPL 0xecc4943e mcb_get_irq drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xee048024 mcb_release_bus drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xf3efd90d __mcb_register_driver drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x2bedf732 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0xce184139 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x7d59b338 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xc6fd15f1 ocelot_chip_reset drivers/mfd/ocelot-soc MFD_OCELOT_SPI EXPORT_SYMBOL 0x60e57340 ocelot_spi_init_regmap drivers/mfd/ocelot-soc NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5dd5c7fd nvme_put_ns drivers/nvme/host/nvme-core NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7890dbe2 nvme_execute_passthru_rq drivers/nvme/host/nvme-core diff -u linux-6.2.0/debian.master/abi/s390x/generic linux-6.2.0/debian.master/abi/s390x/generic --- linux-6.2.0/debian.master/abi/s390x/generic +++ linux-6.2.0/debian.master/abi/s390x/generic @@ -854,350 +854,350 @@ EXPORT_SYMBOL drivers/i2c/i2c-core 0xd1eda738 i2c_verify_client EXPORT_SYMBOL drivers/i2c/i2c-core 0xe3dcca01 i2c_transfer EXPORT_SYMBOL drivers/i2c/i2c-core 0xea6146f6 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14cfa69d ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x196e6667 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f116832 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x574c5e0d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a0ff936 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5be56932 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x118d706a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1351e317 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ebe02e8 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x518c630f ib_send_cm_req EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d3958a7 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x758fb974 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c2e7bc8 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x833c3fc4 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86c9a193 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96f2f2eb ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ace3bd4 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb8b9272c ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbfb35798 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00165d06 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0053f1cd ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01ee4b78 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x030f6e3f ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03a59884 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03d16698 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x048ea200 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b1b73b ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0609d716 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7552a734 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76e6a80c ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7d445b3c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9698a93 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc14d7932 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb759abd ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5e0ead3 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5ec34f2 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd99b943d ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe8c01fec ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdbd8289 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00457c13 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0203c91d ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02295625 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02dfa3a5 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03221173 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x035f0586 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04977064 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x053e31ca rdma_read_gid_attr_ndev_rcu EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09a0301d ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a74b603 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ea2002c ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f9663ea ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c63631 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12402ae2 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15c0874d ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16940851 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17024825 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x174dccfc rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b25fd0 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x076f44ef ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09dc061d rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ea51eee ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13db227d ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x145b0a76 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17003115 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189349c9 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189f4ec7 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18a4cddf ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c7d2b00 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d371b4f ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e6979b4 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21edd46f rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22eb6c0c __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2360fb2b ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24895161 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24991bf9 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24eca5a9 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2510dbaa rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2650253b ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265946e2 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e9aa32 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a0bbd2e rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b056c8c rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c68ad3f rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cc775af ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d4bd704 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dda3896 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2de712e7 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e08f4af ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e0ee53f ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x304f1a71 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bfc4984 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c513145 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e7e8c07 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a56d9a ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x221b4fc5 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22430e34 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b22457 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22cca296 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26153d4f ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x280f22de rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af1be2a ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bd47d89 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c42ffeb ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d48ae25 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f3a7f36 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3071af59 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33336828 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3490ab30 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x368d7bb1 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x381f2f3b rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e8116ac ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f413c9c ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33d51114 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33fc2dc9 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37d94f63 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x386d0e72 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c6b25cf ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d6126ed rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e7815b5 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f04c05f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f358a6b ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f812781 ib_get_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40815538 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405af2a5 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f190c0 ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x450e9ca9 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b1c3d5 rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47244a66 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47399bd4 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47a00135 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a45b294 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aea42ec ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c0f80b9 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dd87c5b ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dde9613 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x467a59ee ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46dab61d ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x496b6d5f rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4986673d ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49c53826 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a606a19 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aac8412 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3d87df ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bfabb05 ib_device_get_by_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e30fe25 ib_port_register_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fd9a61d ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502da698 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51656355 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52701a77 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ab84d2 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55b05b23 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52637e70 ib_rdmacg_uncharge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57eb69f3 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59319cb6 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e330981 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e3b8c8e ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eed5bb0 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f8b9038 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x568cf8aa ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x579b9401 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57a6d18d ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f07cbc ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5934c0d4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593eeea0 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59faa86c rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a58e4c2 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a866435 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a9cab54 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bd7b087 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9f0efb ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f1003d4 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fea48b7 ib_free_send_mad 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 0x64e0cb3c rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663b6518 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6662ca44 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d0e241 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x684b191a rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a6e783 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a640eaf ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7c1366 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61fd96e2 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62a7dae2 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64a6dbc8 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68353e85 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69845946 ib_create_qp_security EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bddcc94 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c5e3abf rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de4ef90 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cbb2cf9 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e7f0b3f ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e8f8436 ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7048935f ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x708ec7c0 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72131ff7 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x718a80e2 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x718c66a5 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x729c4713 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x733cac7b rdma_replace_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7453777d rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75162446 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7568e230 rdma_user_mmap_entry_get_pgoff EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x763cd662 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77603de9 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75d3af0b rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x765d2dbb ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7733f7cf ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77bb0566 rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ea1560 ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79787750 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a172d20 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5c5747 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8099a452 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80fe99a8 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8297ab28 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84c369f5 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84f5cbf8 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8958e396 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7af9e598 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d82ddd1 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e14bbe6 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e6b98e9 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f05831e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f62313d rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80338eb2 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80538170 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87e256e5 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88a66245 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89250dcc ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b4fed88 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c4ddcd0 rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fdd8eed ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90957444 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8efb2014 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f473e9d rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fe57b9e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90cd1d7c rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91696d65 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9184cb95 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91400d2f rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x928e2119 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9415b288 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x943f4032 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94fc9718 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97fd1ae5 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9966dfdd ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a38f298 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c1cc0cb __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c22bfef ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e01a2ec rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0148043 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa097bb5e rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0bfc5a1 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1138f09 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2833970 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5000703 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa579c0da ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7adc863 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa865c22c rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa943bdd7 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa5222bf rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6cde5d ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad10559a ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae08bcac ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae556cf6 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9700e184 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c95e648 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2ba3b9 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eacf9db rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ee0f188 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f5e951d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa25bd8b7 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3491d08 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ffc2e1 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5d27e68 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9571935 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa999253d rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f79fb0 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac6934d9 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4e4dec rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf626513 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa73d8f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb022ec8d ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1b8eca7 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e54f3e ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d61820 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3dfdc8b ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb41c916c ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0bb5eb7 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb177cad7 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb185cc39 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27b7fb4 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb49e0977 ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5224c8d ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb62fe6c5 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb71eb272 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb78792c1 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba469085 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd31d996 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0b3a904 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc157de0e rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc24948a5 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2838adc ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a4de37 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc360c653 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba09a1fc rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba4f51f3 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba8bdae7 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbac0a0d8 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc8c1f18 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc01d82a6 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c931b8 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4be1032 ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dba8ec ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc519ba02 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ef6173 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f502ed ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb2f4d88 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd769da0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5047bc9 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc845bc56 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccff191a ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce0afdbf ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf8b0c54 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfd7ba64 ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd12f00fc ib_drain_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd245aea5 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2722321 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd345387d ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd41e8537 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd54cc773 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ea464e ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd502d745 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5858b12 ib_sg_to_pages 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 0xd767951c ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd88f692d ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8c6a71a rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f3c616 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd95e9add ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd97065cc rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ded65f rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8c5f305 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd9325f3 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe04a93de ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe22e4986 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4b013e6 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe55993f9 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5818938 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb301eca ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4176b5 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbb53fea ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbd1b46f ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcd46788 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd718dcf ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfad9882 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1785213 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e0c7a1 rdma_nl_put_driver_u64 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5ca62e8 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe71c05f6 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe69d72ef rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe836b465 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8fd66e6 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe90d31ee ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95e4c86 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe88af455 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe964b61b ib_init_ah_from_mcmember EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb31252d ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebdd34df roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed59d773 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedb618b6 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee1c719e rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec681e4 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf14a5364 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebb9b199 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec50e2d2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec653451 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed397a8c ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedcfc81b ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed1eb28 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef480948 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefbaced3 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf039a8dd ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0a71235 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1424386 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2340991 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3904111 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b4ba4e rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6092895 ib_free_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7109a1d ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7926197 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf73529ef rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8d5277c ib_register_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9cb55f3 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4558c6 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9b3683 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb2bd8ec ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb962b57 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfabd140b ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac298f7 rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc3a9a8 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdc4858f rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe502383 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe725ce9 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x031aea6a flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0aac8b3c ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x12765212 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x193532d9 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc077d96 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc17b090 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfef372c0 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03bc8aad uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0a6698a9 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x170bfbf5 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x17ad6b90 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18eedc32 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x201dfd8e flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x337c7afe _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33a31ada ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35c89844 _uverbs_get_const_unsigned EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38936849 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4147f363 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43550203 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4577ffd1 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4937eb49 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5046e103 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53d1c276 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x55c73e5b ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5655ec02 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56c06d6b ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58e8ad7c uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c746e21 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6128d95f ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61fa7f83 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x623e6240 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c0df2ef uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x389e14d2 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cf4aec8 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43ebcb76 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x470f94a2 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ad22b32 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c1967e9 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5552d935 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59a3cc6d ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x60775f3e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x73ff7772 ib_umem_release EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x843ccc94 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88b26df5 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b373151 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f1e8b3b ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa57b6ef2 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa61e1fca flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb85ab055 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a197e7c ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b303e33 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f7187a6 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96a5026d uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf58c9bd ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb0d3f573 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2b2ecd9 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xba2e9832 uverbs_finalize_uobj_create EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc012c6c3 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd653df99 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd89e02a uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe08b0f67 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7cc1e5a ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe836b882 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefbb1fbf _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1d8e6f4 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8a4114f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbc7cd6d uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x10ff6d88 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a81eeac iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x46a29e1d iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x53850fdb iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x538fb33d iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74014615 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8a62cb60 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe461b0f6 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7b66f5e ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdaf92056 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdff3a851 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1a3a731 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3e74095 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5f5f764 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3d10e17 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf570ed9f ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfee3e770 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff7a6291 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x043f4385 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d36aea9 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x43b5e6bb iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x61da26ae iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79a08319 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x800ffe56 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xedce0fc7 iw_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06ee8fb8 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e9d1bdd rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x194a50c6 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x271b4f04 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x27ef4445 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x331d3f99 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41f653a4 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49512fde rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a2d04a6 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x507f76f5 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x554afd17 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64f5d99a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b629751 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f42ad87 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f976d47 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7113e8a7 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7380b89d rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c6fa5b3 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfbbaa769 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05bce41d rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07b88c4c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ec418a9 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13416c8e rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d5ab5ce rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2328aa0f rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fc8a2c5 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x426a96af rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4dfdd0db rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e7b6e4f rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x586b9d4f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x588d7acf rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x640c48c4 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67437ea7 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e181586 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b363bcc rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7cb3f432 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89abe6c4 rdma_connect EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94f8b5c6 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x966e5107 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98d3bc11 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa819f40e rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9491c2a rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadab45e4 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf958f0e rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe21a424 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc00f0d09 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0ac2402 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc908602d rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdedd95de rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf4a1ea6 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe388d5fd rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf356a784 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8c2f376 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x00029e47 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x161b5c03 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x22ed4627 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3699ee06 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x76169bad rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe8164d04 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf3027ae1 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3bbc6854 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b7028fa rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa36a2d5a rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3dad6a5 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad07a9bd rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadef2cfa rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaebd2990 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb204dde9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf3072b1 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd8fe798 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcdabbf79 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd762b5a5 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0114072 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3900786 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4b70ed9 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe70f3d8e rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9346fb1 rdma_reject +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4c3a19bd rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x54d36f29 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x73ccae22 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9007a395 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x949da6ea rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbd52dafa rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf14440e7 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0b889b66 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5cc818a0 sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5fc4bb57 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d5654e1 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb4db700d rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xacf0f999 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x12433cb9 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x15672a5f rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2b25231a rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x39cd2ef4 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x943ad5e1 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd262cb39 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xcb3a64c5 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf3f97978 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5e2b3008 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x68d6a69f rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x93528db7 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaf3cab1b rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb650e480 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb9d7b1fb rtrs_srv_open EXPORT_SYMBOL drivers/md/dm-log 0x328650d1 dm_dirty_log_create EXPORT_SYMBOL drivers/md/dm-log 0xb7bccadd dm_dirty_log_type_unregister EXPORT_SYMBOL drivers/md/dm-log 0xd3d36c1f dm_dirty_log_type_register @@ -1255,167 +1255,167 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7fa9829 mlx4_gen_pkey_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb5aee09 mlx4_get_is_vlan_offload_disabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfff48853 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c5ebc5 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x012f25c1 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0259a147 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0329fee3 mlx5_eswitch_get_vport_metadata_for_set 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 0x05ec5d0c mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x063d7067 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0685ace6 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07974e06 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08a35763 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0946e340 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x064917a5 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069861f7 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x083c9b18 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd64c9b mlx5_cmd_out_err EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c00ae34 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e52ef8b mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed1e650 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7b1c60 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b311cc mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11bb8ea5 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15242493 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16d418cb mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19585ace mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19d5460b mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a09aafc mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e1683b7 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f66699b mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1430fb7c mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a3be87 mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1adef9fc mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b73257d mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c5ec87e mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d072e9b mlx5_notifier_register 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 0x1e5cbc27 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c27e2c mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x225ce415 mlx5_eq_destroy_generic 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 0x24722638 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2613e0f2 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ec34c7 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27f20805 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e9c71c mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7fa954 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x309a0ec5 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30e64717 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22d022df mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22f6b63b mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2529de77 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26874896 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x279cdb8b __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x288aac80 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2de4e58a mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e55a4d0 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e878294 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3101e9c4 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3292b47d mlx5_fpga_sbu_conn_destroy 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 0x33d5b9a2 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33435ffa mlx5_debug_qp_remove 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 0x359be43c mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d545a53 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eeb9c25 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x404c85cc mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43634b3e mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36676ac5 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3795fc08 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37c49e12 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x387a15c5 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39709345 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d0c588b mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d715c9f mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f28e158 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f5eeb1c mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4003bb8a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4246730d mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4280fbd6 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4326c045 mlx5_core_destroy_psv 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 0x47ce00e5 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a51c19b mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c2c558e mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x464d3807 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b29e45 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47bd6a95 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x486aaa31 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f54f15 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a416176 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d3bc8b5 mlx5_core_dealloc_pd 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 0x4e193b5b mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4effbacc mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe057f9 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50962c78 mlx5_lag_is_roce 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 0x51544807 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52713f99 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54c9c79a mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54fa751f mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51d634f2 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5456cfae mlx5_sriov_blocking_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 0x5a45374d mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c452095 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe950ad mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56bdbbe6 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cbb1695 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6059ba9a mlx5_free_bfreg 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 0x63e85bae mlx5_get_fdb_sub_ns 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 0x64827211 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x649012c5 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65df1981 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6702d699 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68478f93 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65809eb2 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d60a0e __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69784191 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6acfd3c2 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc4a821 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da237fb mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fcfcb02 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70596ef6 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7107e9f7 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb93a3a mlx5_lag_mode_is_hash 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 0x74698b7e mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75c5251e mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7abd0471 mlx5_eswitch_vport_match_metadata_enabled 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 0x7bbc902c __traceiter_mlx5_fs_del_fg 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 0x7deb6ac6 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e770057 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f534b20 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fb9188d mlx5_core_create_mkey 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 0x83b5b105 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8670457d mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8700c4fe mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8239227f mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828a9632 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8493c0ac mlx5_core_create_tir 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 0x87be0c6e mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888791d0 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x899f49fb mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89f41a88 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c9f2277 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d1b8f88 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dfc1126 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909afd57 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x918f5511 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b3379d mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9500254f mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96256564 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b9fb20 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87f0e490 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89ab53c1 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d26c419 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e8a912c mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f2837d6 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91156844 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9185b4da mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x950ef5f3 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95220041 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9649b5a6 mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985e1ec8 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc81b54 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd0b1a8 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cddbc60 mlx5_core_destroy_tis 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 0x9e461694 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa347f330 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa511c089 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6372731 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6502d4b mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc66e25 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac0f8d4b mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dac9ab3 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e551297 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa407df75 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5bc6755 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7595dea mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7bef96d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b3aa80 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac88d297 mlx5_cmd_create_vport_lag 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 0xae47b7c9 mlx5_core_modify_cq_moderation 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 0xafb21898 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb112362c mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb11422ae mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb23230b6 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2d97fe7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3705874 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb551c9ac mlx5_lag_query_cong_counters 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 0xb6fb8733 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72ab986 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70f414f mlx5_core_alloc_transport_domain 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 0xb98170b6 mlx5_lag_is_shared_fdb 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 0xbd1ea0ac mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc093f285 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbf200f2 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc915b7a mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0bbf413 mlx5_alloc_bfreg 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 0xc5fb9e0b mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72d459a mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7dfe29f mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8105798 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3df8e24 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3fc9485 mlx5_eswitch_vport_rep 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 0xc8f78e31 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96dae22 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbe4137d mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc8f4bec mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce55047f mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce818d8d mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xced688f3 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf2160ed mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1eeb5f3 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc998f8fc mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca819074 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca81cd8d mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca963a64 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaad35c4 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb213904 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdcc8aae mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf376d05 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf5bb191 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd08f35bf mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd27dd0fa mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd286f7e4 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ed9b52 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4381826 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd52098df mlx5_get_uars_page 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 0xd7414ea1 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b7ccc7 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda0cd841 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde599878 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21088e0 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd72aeb95 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8ae9b97 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9d65d4f __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc08b98f mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc8da4f8 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd934cc6 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde1aa386 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5c1e5e mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe102fe02 mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a8b511 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5fd1ceb mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7f462fb mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe917f45d mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea065065 mlx5_cmd_exec 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 0xed558ccc mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf6a6c3 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff42b2e mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf14d3ebf mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf22c00af mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44e93f7 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf46a6995 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7182ee8 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cf3d6b mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf880808d mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0ab1936 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5593a76 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf71f8e75 mlx5_rsc_dump_next 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 0xfbf052d9 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc2430c6 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa991de8 mlx5_lag_get_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 0xfdfe63c0 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe493e61 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xa94ee689 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 @@ -1794,11 +1794,11 @@ EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc1d825e fc_exch_update_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc590899 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1139c0ae sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x481f835f sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x09b3a2e0 sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x69545d70 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7c9b4ba5 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x68a030ae sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9e0cd9e3 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc3504629 sas_resume_ha EXPORT_SYMBOL drivers/scsi/raid_class 0x3edef6f7 raid_component_add EXPORT_SYMBOL drivers/scsi/raid_class 0x8a021015 raid_class_release EXPORT_SYMBOL drivers/scsi/raid_class 0xa898cbf9 raid_class_attach @@ -1861,131 +1861,131 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x82598369 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x949552de srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa1d0b434 srp_reconnect_rport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x025f75c7 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06fefcf3 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0db471c8 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10fcbd01 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x143b2ad8 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14a11803 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f92887d iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x212797ab iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23c8d109 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ba16fa0 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32ea23f7 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x362861ad iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d0c5c18 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3de8661c iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f99dee3 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x446501ca iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d88bcbd iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62d1bace iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e26ea82 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x714fac42 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72499a31 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73d4befc iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x755f7974 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93c6d009 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9455d5f0 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8ca8af8 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabc575fd iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaee6aafc iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbe80744 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbb88c56 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc5f73b0 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xccd36b90 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcecb3bab iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf423a86 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd26f061b iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2d4245b iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdceb7e3b iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde487692 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde760eb9 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe592ec1d iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe80c983c iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeba22d6b iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2f1f81b iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a095e36 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a931c72 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1622dd5b iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x271bdfb2 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ef7246a iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x317c7c50 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x329acaa2 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x454de752 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d0717f0 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fd14224 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61984244 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e68c56f iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6fe0297a iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74687221 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76dddef0 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79307dca iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7bf99eb3 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ef72a96 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x838308de iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8652898e iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ab7e74e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f483d1b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa14c6d63 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafe54903 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3b81c1e iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb62c0fdc iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbab707b6 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb1509b7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9d9aa62 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd09e9b64 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4e7d6e7 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9535e07 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf053ac5 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3c37827 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7012d49 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe70478ce iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebcf9428 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee65124a iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0335b2d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0a55a79 iscsit_build_task_mgt_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5b482df iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7d61cd3 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/target_core_mod 0x012bbfb8 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x05f3f7c4 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfabaef92 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb0e7ec6 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbd5e88a iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc319c37 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe976b2e iscsit_build_reject +EXPORT_SYMBOL drivers/target/target_core_mod 0x0071fa33 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x02aa046b target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02e28d02 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x076c1db2 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x07a065ac transport_kmap_data_sg EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a1812e5 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ca99ab4 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d795957 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dfa766c transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1044b96b target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x10d6d5a7 spc_emulate_report_luns EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc EXPORT_SYMBOL drivers/target/target_core_mod 0x167a6149 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bc23147 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x26bd1c57 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b12d77f spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c860679 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f054939 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f66a5c4 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x3291ee43 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x39ae3299 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x39cc1cfc core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1922d9e8 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f89584a target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d99c831 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3769cfea __transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x44fc938d __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x48861f90 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x491d7e2d target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4afcc182 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x4efc1983 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f82f979 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a4afe0c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d3df9e8 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x41639283 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x42b1736e target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x445c4605 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4740fc04 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a8d8d03 target_to_linux_sector EXPORT_SYMBOL drivers/target/target_core_mod 0x51e9633c sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x5470d1b1 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a1a6e44 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f49293f __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x529ea47d target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x54037b62 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x541e7a66 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x620bd229 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x65601adf passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c0b77ed target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e21a5f8 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x70242ce2 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x71a861a0 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x72c7018c transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x736c2cdb transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x768f5658 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7826e5dd target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a179b25 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x67460f4f transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x67b0497a target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x68a60d29 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x68ed3a61 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b5b41f2 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x71d5484b __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7264048a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x72680b99 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x77e81ddd target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7868595f target_configure_unmap_from_queue EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7affd010 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c90621e target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x836cabf7 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x85c9c3ea target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b6928c5 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e480b94 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b4a1801 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e60d804 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x80f48555 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x81c0791f target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x8adcbf28 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8df50a4c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x91954a41 target_setup_session EXPORT_SYMBOL drivers/target/target_core_mod 0x9254532e target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x933256af transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x940e61d5 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x95b0c242 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9694b10e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x9893ef74 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a10256c target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b0ab538 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f2ee8ac target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4d29f3c target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7349dd6 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa897b469 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0d5985c transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xb30983b4 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5d829ff transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6c7f5b6 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6ef5fbf transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb88ae708 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xba1a383a target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf52d137 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf95e190 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8925248 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x99c406e0 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a07c9f7 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b308700 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d27c2d0 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa429f886 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xa640b83d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8d2fdff transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xab1d1325 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xaec0d934 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb50b3a9c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb56c30f6 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5a441f3 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5c60288 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcb543dd spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc492e04 target_wait_for_sess_cmds EXPORT_SYMBOL drivers/target/target_core_mod 0xcd31c2f0 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd171a515 target_complete_cmd_with_length EXPORT_SYMBOL drivers/target/target_core_mod 0xd6965962 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7002543 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd73d59f6 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7cd172f transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xda3ebc73 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdcd4aa87 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xed031cd6 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf20445f8 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3209954 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd84add59 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xdac04a37 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf36505d sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xe41ac44e core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe47f0a37 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe523768c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xedb2fabf sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2e44649 spc_emulate_inquiry_std EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd06bb76 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb453bf5 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd5634e core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfff34068 transport_handle_cdb_direct EXPORT_SYMBOL drivers/tty/serial/serial_core 0x057b40cf uart_register_driver EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0d57440b uart_remove_one_port EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0f183c3d uart_suspend_port @@ -2208,30 +2208,27 @@ EXPORT_SYMBOL net/9p/9pnet 0xeb20507e p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0xf503c9ce p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0xfa6c2eb9 p9_client_unlinkat -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x113e9094 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4028320b ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4fc86ace ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcc05fe5a ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xda3a0698 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdc1c63e4 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x53e11840 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x60d777a2 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa981c03e ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc2b53da5 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xda37598f ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe5897a90 ebt_unregister_table_pre_exit EXPORT_SYMBOL net/ceph/libceph 0x01cd221b osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x022dbd8e ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x07d1e2e8 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0a5dc704 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor EXPORT_SYMBOL net/ceph/libceph 0x0d1fe700 osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags EXPORT_SYMBOL net/ceph/libceph 0x11889fec osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x1841ba95 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x1c395dd5 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x1d957fb8 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0x1f211dd5 ceph_copy_from_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 0x21bda66e ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x2894fb74 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x2c99a52b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x29b7731e ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x2d206c10 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x310bed8e ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x321f5e2c osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0x328ea068 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string @@ -2243,13 +2240,16 @@ EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible EXPORT_SYMBOL net/ceph/libceph 0x4a5aa4fe ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4ef6a548 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x521399f0 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x522609af ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x527bb3a8 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x5504351b ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash EXPORT_SYMBOL net/ceph/libceph 0x5a183175 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5ceb5fed ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name EXPORT_SYMBOL net/ceph/libceph 0x63ab2af8 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x66a3f227 ceph_cls_assert_locked @@ -2263,10 +2263,12 @@ EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0x77977725 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x77f87a75 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x7acd9fe4 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x7d9a69f1 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x7e5e583a ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0x7f910e4b ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x7ff33361 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x8155a9f9 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0x85f3cab2 ceph_put_page_vector @@ -2274,6 +2276,7 @@ EXPORT_SYMBOL net/ceph/libceph 0x8699c0c3 ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context EXPORT_SYMBOL net/ceph/libceph 0x89d6b045 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x8a216a89 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x8d2cec4b ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x905ef6ef ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x90ee4a42 ceph_osdc_clear_abort_err @@ -2282,10 +2285,10 @@ EXPORT_SYMBOL net/ceph/libceph 0x93c76dcf ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x97ec9d2e ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x99094ffb ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x9bfb0fba ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x9c3c1aca ceph_auth_is_authenticated EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9cb136cf ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x9cb24924 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x9d03fdaa ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0x9d49719c ceph_print_client_options @@ -2299,7 +2302,6 @@ EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary EXPORT_SYMBOL net/ceph/libceph 0xa5f12980 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa798d940 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0xab48cc66 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush @@ -2312,6 +2314,7 @@ EXPORT_SYMBOL net/ceph/libceph 0xb7fca606 osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0xb8028006 ceph_object_locator_to_pg EXPORT_SYMBOL net/ceph/libceph 0xba80b3e1 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbada9637 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xbb880973 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0xbc57bc66 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xbc73acdc ceph_zero_page_vector_range @@ -2328,15 +2331,12 @@ 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 0xcd91fe7c ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xd1255bd7 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0xd42725dc ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr EXPORT_SYMBOL net/ceph/libceph 0xd69ec763 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0xd791555a ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0xd7c4dbee ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xd8a7f817 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xd97de220 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xda198aeb ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xde9cc67b osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0xdf007051 ceph_auth_get_authorizer @@ -2346,9 +2346,9 @@ EXPORT_SYMBOL net/ceph/libceph 0xe3cc459d osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0xe3f103c6 ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0xe539e0aa ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xe669cc76 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xe6ae2e49 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe863e00c ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xe8f82c10 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xea908c11 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string @@ -2358,45 +2358,45 @@ EXPORT_SYMBOL net/ceph/libceph 0xf548e012 ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xf9a61cf5 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xfcd58415 osd_req_op_extent_update -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4317266b dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x83fef95a dccp_req_err -EXPORT_SYMBOL net/ipv4/fou 0x1657d64d __gue_build_header +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4806fe1d dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x96459a11 dccp_req_err EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xb56fc632 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7cc3d4a5 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xb1c3abd1 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x0a8e0176 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4916cc3b ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5396cefb ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x98387608 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa0c6247b ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2228a58b arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5e54e6c1 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7bef653c arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdc86cb29 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0c016a74 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1ce51602 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6a2cb97f ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd8100432 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x6cad4976 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xb93906f1 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x82643c61 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x05563259 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x195dcd6f ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x768661e1 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x82c27655 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x93192cff ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x958fadc7 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa25c3370 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaa709d66 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd4049147 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0b8f06ba ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x79f28c4a ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7bd7649a ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x861283c8 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x3f7929ad xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x72699c0e xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x19e98ffd xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfde32968 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv4/gre 0xcf686959 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3d7a65a0 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4e5bc3a6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x79d75053 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8e260eaa ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5c06b68d arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6b09569f arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x82908e43 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xcfb5e4a9 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x225a0f90 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8dbcdf35 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa2defbe5 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfa9beb54 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x0ed378e9 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x228c55c6 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x4c4af77c udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x01952f9a ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0d25d2e9 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x215db112 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x58d8a9db ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x77e429ef ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x79369751 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc5831971 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeb6e7bb0 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfda784a4 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1155216c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x63b7f268 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x83119c1c ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x906cf476 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x09b3c1d3 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xfc89dfd8 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x35d52fce xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5103dd62 xfrm6_tunnel_spi_lookup EXPORT_SYMBOL net/llc/llc 0x1eb85f6d llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list @@ -2406,138 +2406,132 @@ EXPORT_SYMBOL net/llc/llc 0xc753e3ec llc_sap_open EXPORT_SYMBOL net/llc/llc 0xf03b6391 llc_sap_close EXPORT_SYMBOL net/llc/llc 0xf1076473 llc_add_pack -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1197fa62 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13b3ad2b ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x157bda1a ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x16c115db ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2114f245 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2a10b62c unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a083240 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b7b45a6 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5fb847ae ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x86bdb833 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8c30821f ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc65e1c74 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f000b4b register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2642916e register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31efdbfc unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3281d6a7 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3e646e37 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5709ec32 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x88e851ac ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x92ec241b ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94f4cdee register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9504ab42 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98250dab ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d33f294 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa60c7c45 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbd2622cf ip_vs_conn_new EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe786ada6 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec222039 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3a034da register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf4afeb2a ip_vs_proto_data_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 0xe548a3ef nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd2d5afae nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x4cf323b9 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x62e707c2 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x7a2b5289 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xa963f341 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x074599e3 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x543d5e2a nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x55e56555 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf5b96916 nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x01eaae88 xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1c4b82fb xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x269bfbd5 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2e12fcc0 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x4391539d xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4adeee5f xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x55c940eb xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x634f1e08 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x63a5c13f xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x65401a3b xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x69c07fd6 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x5d262592 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7abcd48e xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7d2253f7 xt_register_target 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 0xb1a1b3d5 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xacc2a5ea xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc07adefb xt_find_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 0xdcbf1f02 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xf694b5fb xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf5678f5b xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0da68316 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x040518de rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x11befdb0 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x14c3d007 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1601b8e9 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x38f4f504 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x444fb3b4 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x50da744d rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x58978679 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x662e20ca rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b65198e rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bbb5b73 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ff60f5e rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9d31a51a rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa039a682 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb0d89bb1 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbdf504d2 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xccd9a78d rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe10c5227 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe233783c rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xec650ee2 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf2b418e6 rxrpc_kernel_check_life -EXPORT_SYMBOL net/sctp/sctp 0x78b13a11 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x03e48e9e __traceiter_smcr_link_down +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3b2770fa rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4d97f71b rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x58933ff8 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5b508dba rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x67904026 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x73bec095 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d324551 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x91438ba8 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x91f2860c rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b5e2f87 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa5e3083f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbbe12d90 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdddc5c37 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf763fbf9 rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0xc89e8775 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x12892dcf __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x497725c2 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x6eec0675 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x766d236c __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x460853da __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x4fa2e3e1 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x6eba323e __traceiter_smc_switch_to_fallback 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 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6d1b9bd1 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x8b9c2afb gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdf9d42ec gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x39780eb7 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb45867fd xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc38c4979 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x00565b94 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xc793347b tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xcea68b46 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xfee35100 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xad083954 tls_get_record +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x41dd88ce gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5aed9dd6 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7ce5b505 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x48f44cbc xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4dad7bce svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb0b46d38 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x035d5dc6 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x6b5dd265 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xe4faebd7 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xf8ef6e0a tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x45cd3f47 tls_get_record EXPORT_SYMBOL vmlinux 0x000016e9 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x000320fe __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x0005fbcc tcp_read_skb EXPORT_SYMBOL vmlinux 0x0010d89f send_sig EXPORT_SYMBOL vmlinux 0x002b48e1 input_open_device -EXPORT_SYMBOL vmlinux 0x00391426 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x0045cfbd scsi_device_put EXPORT_SYMBOL vmlinux 0x005bd642 debug_dflt_header_fn -EXPORT_SYMBOL vmlinux 0x008b371e tcf_block_put +EXPORT_SYMBOL vmlinux 0x00a34fa5 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00b84e7e inode_get_bytes -EXPORT_SYMBOL vmlinux 0x00cfdb28 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x00d8e84a mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0x00ebf98f seq_dentry EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x010f7b2b dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x0119678b kbd_ioctl -EXPORT_SYMBOL vmlinux 0x011a4054 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x012579ba inet_protos -EXPORT_SYMBOL vmlinux 0x0134ebd2 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x0135d6fc skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x0140f5c7 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x014529d6 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01534586 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x0157e414 dev_load EXPORT_SYMBOL vmlinux 0x01585ca5 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x019b92b0 sget EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set EXPORT_SYMBOL vmlinux 0x01a59b6a flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x01a6d4f1 mr_dump EXPORT_SYMBOL vmlinux 0x01a807b0 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x01a9df30 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x01b49a57 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x01b50c6c skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01dfa534 flush_signals EXPORT_SYMBOL vmlinux 0x0205d411 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02108c1f sock_init_data EXPORT_SYMBOL vmlinux 0x021fc387 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x02536cb2 rt6_lookup +EXPORT_SYMBOL vmlinux 0x02311e12 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x02680827 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x02708e70 skb_split EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues EXPORT_SYMBOL vmlinux 0x02922c73 posix_acl_valid EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate @@ -2545,23 +2539,21 @@ EXPORT_SYMBOL vmlinux 0x02a67501 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x02b5bcb6 override_creds EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02d8d13e __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x02e6ee02 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x03134d30 security_d_instantiate EXPORT_SYMBOL vmlinux 0x0328b1c6 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0x0332c029 kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x03413ed3 vmemmap EXPORT_SYMBOL vmlinux 0x034833a8 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy -EXPORT_SYMBOL vmlinux 0x035ea440 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x035f5cb7 kfree_skb_reason 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 0x03736e9f param_ops_long EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037f8f53 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func @@ -2571,119 +2563,121 @@ EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic EXPORT_SYMBOL vmlinux 0x03d76108 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x042cf239 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x0404d974 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x042aa415 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x04374924 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x043fa8a0 eth_get_headlen 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 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x0493a50c generic_read_dir -EXPORT_SYMBOL vmlinux 0x04a77229 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x04bd93ea netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x04c182c8 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x04c3219e elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x04d3aaf1 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x04eea1c7 sk_error_report EXPORT_SYMBOL vmlinux 0x04fca5b7 percpu_counter_sum_all -EXPORT_SYMBOL vmlinux 0x04fecbcb __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x05025743 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x05082c88 kobject_add +EXPORT_SYMBOL vmlinux 0x050a0352 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05483c2a nf_log_unset EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg EXPORT_SYMBOL vmlinux 0x056c3b2e tty_lock EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch -EXPORT_SYMBOL vmlinux 0x0585d526 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x059da95c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x059d4b2b netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x05a363c8 raw3270_request_set_data EXPORT_SYMBOL vmlinux 0x05b872f7 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x05bae82c bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x05df72e2 proc_mkdir +EXPORT_SYMBOL vmlinux 0x05e21123 inet6_add_offload EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve EXPORT_SYMBOL vmlinux 0x05f2d06a input_get_timestamp +EXPORT_SYMBOL vmlinux 0x0605b42f ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061828ed netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x063015d4 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user EXPORT_SYMBOL vmlinux 0x063a6b31 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x0662f3fd tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x063eb4f5 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x06559acf udplite_prot +EXPORT_SYMBOL vmlinux 0x0659b496 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06786f19 audit_log_start +EXPORT_SYMBOL vmlinux 0x0681ccaf nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x06a35dcb kset_unregister EXPORT_SYMBOL vmlinux 0x06bc5d1e blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal EXPORT_SYMBOL vmlinux 0x06d29560 unregister_key_type -EXPORT_SYMBOL vmlinux 0x06e276df qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x06f0a409 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x06ff319b input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x07014243 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x070937a5 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x0734fb0f kfree_skb_partial EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0x07477af5 set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x074970e9 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x074a7912 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x075439c7 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x0770d4e5 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x074bf8dc xfrm_register_km +EXPORT_SYMBOL vmlinux 0x0761d970 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x07760cb9 register_service_level EXPORT_SYMBOL vmlinux 0x077ac8a5 generic_update_time -EXPORT_SYMBOL vmlinux 0x077aceb6 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x07885716 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x07956794 set_groups EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07eb4f6a __put_cred EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f65605 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x07ff4ad7 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x07ff8ca7 dev_change_flags EXPORT_SYMBOL vmlinux 0x08002b11 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x08129c4d param_set_charp EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082d687f udp_pre_connect -EXPORT_SYMBOL vmlinux 0x083a7bd2 slab_build_skb -EXPORT_SYMBOL vmlinux 0x083b1ce5 pskb_extract -EXPORT_SYMBOL vmlinux 0x083b489d xfrm_state_update EXPORT_SYMBOL vmlinux 0x083f7b59 kset_register +EXPORT_SYMBOL vmlinux 0x084189a0 bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x08456553 match_string -EXPORT_SYMBOL vmlinux 0x084fb48f eth_validate_addr +EXPORT_SYMBOL vmlinux 0x084a1e47 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x084b4a7f inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x0863cc0e blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x0874293b fasync_helper -EXPORT_SYMBOL vmlinux 0x087d0105 netif_rx -EXPORT_SYMBOL vmlinux 0x087eaf0d tcp_sync_mss EXPORT_SYMBOL vmlinux 0x0884445c unregister_binfmt EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x089491de _dev_warn EXPORT_SYMBOL vmlinux 0x08ad8521 register_adapter_interrupt EXPORT_SYMBOL vmlinux 0x08d138c7 scsi_add_device -EXPORT_SYMBOL vmlinux 0x09180b03 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x08e857f3 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x08f20be8 inet_shutdown +EXPORT_SYMBOL vmlinux 0x091693f1 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead EXPORT_SYMBOL vmlinux 0x0928aeea page_get_link +EXPORT_SYMBOL vmlinux 0x0940ff37 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x0941b92a gro_cells_init EXPORT_SYMBOL vmlinux 0x094df992 mdio_find_bus EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive EXPORT_SYMBOL vmlinux 0x09605342 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x0965a471 scsi_remove_host EXPORT_SYMBOL vmlinux 0x0970102e zstd_compress_bound +EXPORT_SYMBOL vmlinux 0x097679fd device_get_ethdev_address EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x09797d96 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x09a54afe proc_create EXPORT_SYMBOL vmlinux 0x09abc2d6 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x09ac8f22 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x09b24910 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x09bd7735 single_open_size -EXPORT_SYMBOL vmlinux 0x09c17568 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da36bd simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x09eeabf5 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a115627 default_llseek -EXPORT_SYMBOL vmlinux 0x0a1707d9 km_policy_notify EXPORT_SYMBOL vmlinux 0x0a2dfa75 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user +EXPORT_SYMBOL vmlinux 0x0a4208a5 sock_set_mark +EXPORT_SYMBOL vmlinux 0x0a5074e0 xp_alloc EXPORT_SYMBOL vmlinux 0x0a52f79f pci_scan_root_bus EXPORT_SYMBOL vmlinux 0x0a613d0d vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a8e1987 poll_freewait EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aa55da2 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace @@ -2692,10 +2686,8 @@ EXPORT_SYMBOL vmlinux 0x0ae5c97e pci_enable_device_io EXPORT_SYMBOL vmlinux 0x0ae66751 pci_read_config_byte EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1cedc3 netpoll_print_options EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba520b2 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x0bb42d5d pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bc5ebe1 inc_zone_page_state @@ -2705,35 +2697,38 @@ EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert EXPORT_SYMBOL vmlinux 0x0c35f91d pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x0c3a273b netlink_set_err +EXPORT_SYMBOL vmlinux 0x0c489940 kernel_sendpage EXPORT_SYMBOL vmlinux 0x0c4a7ccf simple_getattr +EXPORT_SYMBOL vmlinux 0x0c4bc66e neigh_update EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp EXPORT_SYMBOL vmlinux 0x0c71cbcf has_capability EXPORT_SYMBOL vmlinux 0x0c75ce3b pci_iounmap +EXPORT_SYMBOL vmlinux 0x0c7960d7 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask -EXPORT_SYMBOL vmlinux 0x0c8be6b3 udp_prot EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit +EXPORT_SYMBOL vmlinux 0x0c9c0b51 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x0cc91626 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0ceaf83a inet_frags_fini EXPORT_SYMBOL vmlinux 0x0cf15ee0 seq_read_iter EXPORT_SYMBOL vmlinux 0x0cf9ff9b input_get_keycode +EXPORT_SYMBOL vmlinux 0x0cfabedf sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x0cfe3a26 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x0cfeedc1 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d1373d8 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x0d1bcba4 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x0d40261a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x0d19481d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x0d321e96 __dev_remove_pack EXPORT_SYMBOL vmlinux 0x0d4350f7 register_sysctl_mount_point EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d715db9 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x0d8b7d63 init_pseudo -EXPORT_SYMBOL vmlinux 0x0d8cc418 ip_setsockopt EXPORT_SYMBOL vmlinux 0x0da19605 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0x0db795e4 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x0db84607 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x0ddbbaf3 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x0df1951c kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x0dfcd40d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x0dfd9277 neigh_table_clear EXPORT_SYMBOL vmlinux 0x0e04bd2e csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x0e0e03b7 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x0e11564c pci_set_master @@ -2741,8 +2736,8 @@ EXPORT_SYMBOL vmlinux 0x0e1af29e register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x0e1ee435 _copy_from_user_key EXPORT_SYMBOL vmlinux 0x0e23c59e param_get_long -EXPORT_SYMBOL vmlinux 0x0e3ffe8c netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x0e51ae3e skb_pull_data +EXPORT_SYMBOL vmlinux 0x0e25bfd2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x0e295c43 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch EXPORT_SYMBOL vmlinux 0x0e7395f9 __post_watch_notification EXPORT_SYMBOL vmlinux 0x0e90c0ae jbd2_fc_wait_bufs @@ -2750,36 +2745,28 @@ EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r -EXPORT_SYMBOL vmlinux 0x0eb59595 genl_unregister_family EXPORT_SYMBOL vmlinux 0x0eb69051 ccw_device_start_key EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0eba687b unregister_console -EXPORT_SYMBOL vmlinux 0x0ec64187 inet_accept EXPORT_SYMBOL vmlinux 0x0ee0c935 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free -EXPORT_SYMBOL vmlinux 0x0ef7cbe3 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x0f044f16 dev_remove_pack EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1fb5a9 tcf_action_exec EXPORT_SYMBOL vmlinux 0x0f322579 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x0f4dd889 prepare_creds EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x0f779aba neigh_seq_start EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f900308 md_check_recovery -EXPORT_SYMBOL vmlinux 0x0f9d6185 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x0fad9ed8 notify_change EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fbf4c56 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x0fd5c759 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fed4c92 skb_split EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat EXPORT_SYMBOL vmlinux 0x100953b5 dma_resv_add_fence EXPORT_SYMBOL vmlinux 0x1016a94d iput -EXPORT_SYMBOL vmlinux 0x1016e81e __dev_get_by_index EXPORT_SYMBOL vmlinux 0x1020a954 folio_unlock EXPORT_SYMBOL vmlinux 0x10312d9b dm_table_get_mode EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region @@ -2787,35 +2774,35 @@ EXPORT_SYMBOL vmlinux 0x10497616 memweight EXPORT_SYMBOL vmlinux 0x106591a9 ap_queue_init_state EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1071ab3d kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x10765aaa framebuffer_alloc EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x108dac78 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x109342d6 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x1097ac3d kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x109eeada phy_error EXPORT_SYMBOL vmlinux 0x10a202b8 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x10ca9b6b netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x10b620d5 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11047e49 tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11157f53 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc EXPORT_SYMBOL vmlinux 0x113e29a0 zap_page_range EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init EXPORT_SYMBOL vmlinux 0x11886599 proc_create_data +EXPORT_SYMBOL vmlinux 0x11909eab netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x11a043b6 xp_dma_map EXPORT_SYMBOL vmlinux 0x11b3e13c find_inode_nowait -EXPORT_SYMBOL vmlinux 0x11d02d38 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x11b63614 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11e9e089 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x11ee8f7e filemap_fault EXPORT_SYMBOL vmlinux 0x11efa1d4 blk_rq_map_user_io EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail +EXPORT_SYMBOL vmlinux 0x12020034 inet_frags_fini EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120d121a generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x121b8191 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x12236f2a __netif_rx -EXPORT_SYMBOL vmlinux 0x122823bb sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x123fe27e reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x1251a12e console_mode EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock @@ -2824,58 +2811,64 @@ EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down EXPORT_SYMBOL vmlinux 0x12802aa2 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x12a211f3 seq_release -EXPORT_SYMBOL vmlinux 0x12ac62c9 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x12b036fc cdrom_check_events EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12cf81ad write_cache_pages +EXPORT_SYMBOL vmlinux 0x12db0f31 tcf_block_put +EXPORT_SYMBOL vmlinux 0x12ea5fac reuseport_add_sock EXPORT_SYMBOL vmlinux 0x12edcae4 d_splice_alias EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x13222fd6 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x13330de6 security_sock_graft +EXPORT_SYMBOL vmlinux 0x132f7baa dev_close EXPORT_SYMBOL vmlinux 0x1335cc85 commit_creds EXPORT_SYMBOL vmlinux 0x1343d21d make_bad_inode +EXPORT_SYMBOL vmlinux 0x134760e8 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x134ae78e input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x1352b2c7 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x1352be91 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x135fab43 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x1363758b blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x137d050f pci_disable_msix -EXPORT_SYMBOL vmlinux 0x138fb38d security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x1394e9de udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x13ab2cae inetdev_by_index EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13d929a0 __cond_resched_lock EXPORT_SYMBOL vmlinux 0x140e2c4d bio_add_page EXPORT_SYMBOL vmlinux 0x140e45d7 input_register_handler -EXPORT_SYMBOL vmlinux 0x140eb704 tcf_block_get -EXPORT_SYMBOL vmlinux 0x14288699 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x143d3178 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x1452632f __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x14581d06 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x145ae027 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table EXPORT_SYMBOL vmlinux 0x147d7290 xor_block_xc -EXPORT_SYMBOL vmlinux 0x148a4f88 sk_common_release -EXPORT_SYMBOL vmlinux 0x148f097d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x148bfd9a eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x1490cb52 genphy_aneg_done EXPORT_SYMBOL vmlinux 0x14b58da1 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x14bc5e76 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14c7b490 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock +EXPORT_SYMBOL vmlinux 0x14ed267b qdisc_hash_del EXPORT_SYMBOL vmlinux 0x14fa4a42 bio_put +EXPORT_SYMBOL vmlinux 0x14ff5c71 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x15085e41 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x1509f713 give_up_console EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152253c9 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1527a504 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item EXPORT_SYMBOL vmlinux 0x1538f6d6 iget_failed -EXPORT_SYMBOL vmlinux 0x154960c5 netlink_ack EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x1557776e lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x15699296 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0x15809344 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x1583941b xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x15b0bcc4 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x15988c65 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x15a09133 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf EXPORT_SYMBOL vmlinux 0x15b6cc6c dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations @@ -2885,6 +2878,7 @@ EXPORT_SYMBOL vmlinux 0x15e8df23 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x15eab6c6 _dev_info EXPORT_SYMBOL vmlinux 0x1618ebda tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x161aa236 netif_tx_unlock EXPORT_SYMBOL vmlinux 0x161f0527 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const @@ -2892,30 +2886,29 @@ EXPORT_SYMBOL vmlinux 0x164c0ca8 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible EXPORT_SYMBOL vmlinux 0x165d2a20 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x166b6fe6 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x166ed9d7 netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0x16736a23 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x16ac9d66 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x16bbe515 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x16e043c4 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16ea3703 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x17069cf1 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x172f1421 netif_tx_lock -EXPORT_SYMBOL vmlinux 0x17384554 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x1751c52f genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x1779caad nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x178685e4 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x17a51530 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x17167118 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x17545c27 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x178ac1c6 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x17b54e90 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x17b69cc4 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x17beb726 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x17cc1f16 user_revoke -EXPORT_SYMBOL vmlinux 0x17db7269 init_net +EXPORT_SYMBOL vmlinux 0x17d4eb56 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x17e76d56 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x17fcb726 napi_gro_receive EXPORT_SYMBOL vmlinux 0x181773da pci_dev_put EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1837ce7f skb_copy_header EXPORT_SYMBOL vmlinux 0x183aa29a md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x186b1f50 skb_queue_purge EXPORT_SYMBOL vmlinux 0x186b25e9 setup_arg_pages EXPORT_SYMBOL vmlinux 0x187e5286 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x18894fc9 skb_free_datagram EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer EXPORT_SYMBOL vmlinux 0x189c6af7 alloc_file_pseudo @@ -2927,66 +2920,67 @@ EXPORT_SYMBOL vmlinux 0x18e48a9c __vfs_getxattr EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x18f38c8b thaw_bdev -EXPORT_SYMBOL vmlinux 0x1914f96b netdev_emerg EXPORT_SYMBOL vmlinux 0x19258227 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x192fe322 qdisc_put EXPORT_SYMBOL vmlinux 0x19320d2d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x1932fff4 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x19363e60 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x193c1f56 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x1954f10a xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x196bd847 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x19507bb8 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x196c3917 ccw_driver_unregister EXPORT_SYMBOL vmlinux 0x19802579 find_vma_intersection EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b99727 inet6_register_protosw EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19da4055 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x19bf4844 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x19cfcaca netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x19dacc39 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x19fb591d tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x1a03f5f1 finish_swait EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START EXPORT_SYMBOL vmlinux 0x1a0ecc6e jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x1a118039 finalize_exec -EXPORT_SYMBOL vmlinux 0x1a150ff5 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x1a1740f0 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x1a22c10f ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x1a286e76 fiemap_prep EXPORT_SYMBOL vmlinux 0x1a37831f do_clone_file_range EXPORT_SYMBOL vmlinux 0x1a4171c6 pci_get_class -EXPORT_SYMBOL vmlinux 0x1a5740cc sock_alloc_file +EXPORT_SYMBOL vmlinux 0x1a541acc netdev_printk EXPORT_SYMBOL vmlinux 0x1a6065da debug_register_mode -EXPORT_SYMBOL vmlinux 0x1a6355a8 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x1a658fd3 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x1a73d988 dm_unregister_target EXPORT_SYMBOL vmlinux 0x1a846e7b ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0x1a9223c9 __icmp_send EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9be8cd netif_skb_features EXPORT_SYMBOL vmlinux 0x1a9e07a8 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x1aa1a656 param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x1ab1081e tcf_classify -EXPORT_SYMBOL vmlinux 0x1acd20f5 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1afe595f __ip_dev_find EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist EXPORT_SYMBOL vmlinux 0x1b132904 forget_cached_acl EXPORT_SYMBOL vmlinux 0x1b1d308e module_layout EXPORT_SYMBOL vmlinux 0x1b2ec795 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x1b36ba9f tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x1b40103f generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x1b42914b jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x1b5b796f tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x1b59ddac ip_options_compile +EXPORT_SYMBOL vmlinux 0x1b5bad59 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b78542a fqdir_init EXPORT_SYMBOL vmlinux 0x1b7d9b0f tty_check_change EXPORT_SYMBOL vmlinux 0x1b9314a7 touch_atime -EXPORT_SYMBOL vmlinux 0x1b9bb208 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer EXPORT_SYMBOL vmlinux 0x1ba61965 bio_split EXPORT_SYMBOL vmlinux 0x1ba7a258 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x1bab622a dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bf36f95 dev_addr_add +EXPORT_SYMBOL vmlinux 0x1c053b1e bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x1c299266 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x1c2b918d sock_no_linger +EXPORT_SYMBOL vmlinux 0x1c2b00d0 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x1c385a43 bio_split_to_limits EXPORT_SYMBOL vmlinux 0x1c396042 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x1c3ea836 cdev_set_parent EXPORT_SYMBOL vmlinux 0x1c4112fd input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x1c506ee4 genl_unregister_family EXPORT_SYMBOL vmlinux 0x1c56610a blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt EXPORT_SYMBOL vmlinux 0x1c664434 __write_overflow_field @@ -2996,13 +2990,12 @@ EXPORT_SYMBOL vmlinux 0x1cc64518 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x1cc94dae task_work_add EXPORT_SYMBOL vmlinux 0x1cd08ecc tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x1cd32281 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x1ce26a63 zstd_flush_stream EXPORT_SYMBOL vmlinux 0x1ce35c00 logfc +EXPORT_SYMBOL vmlinux 0x1cedebbb dev_disable_lro EXPORT_SYMBOL vmlinux 0x1d04cd5f flow_rule_match_control EXPORT_SYMBOL vmlinux 0x1d0b954c kthread_bind EXPORT_SYMBOL vmlinux 0x1d17602d make_kuid -EXPORT_SYMBOL vmlinux 0x1d1ae916 neigh_table_clear EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable EXPORT_SYMBOL vmlinux 0x1d3b4a27 filp_close EXPORT_SYMBOL vmlinux 0x1d3d034a cdev_del @@ -3013,25 +3006,22 @@ EXPORT_SYMBOL vmlinux 0x1d975748 ns_capable_setid EXPORT_SYMBOL vmlinux 0x1d9bdb1b blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc -EXPORT_SYMBOL vmlinux 0x1db24a42 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x1db60eab neigh_lookup EXPORT_SYMBOL vmlinux 0x1dc4041d take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dc9abb8 iov_iter_advance EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap EXPORT_SYMBOL vmlinux 0x1ddabf67 __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x1ddbbca5 dev_add_offload EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x1deea95d show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x1defc3cb tcp_ioctl EXPORT_SYMBOL vmlinux 0x1df06ac3 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e43f061 keyring_search +EXPORT_SYMBOL vmlinux 0x1e5bce63 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x1e63fe69 vcalloc -EXPORT_SYMBOL vmlinux 0x1e65ae87 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1e90b916 arp_create EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1eaface2 uv_info EXPORT_SYMBOL vmlinux 0x1eb0f7d4 invalidate_disk @@ -3039,75 +3029,74 @@ EXPORT_SYMBOL vmlinux 0x1ed4d063 ihold EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ef7a464 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x1ede58bd softnet_data EXPORT_SYMBOL vmlinux 0x1f11f742 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x1f420b62 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x1f47278e reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x1f588448 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x1f5c8006 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x1f68def8 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x1f7b5e81 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x1f899ebf sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x1f89e0e8 input_unregister_device +EXPORT_SYMBOL vmlinux 0x1f950228 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize EXPORT_SYMBOL vmlinux 0x1fa445b1 kern_unmount EXPORT_SYMBOL vmlinux 0x1fae65af sb_set_blocksize EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x1fb3752e cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbe56a7 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x1fc1322b md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x1fc380c8 follow_down_one +EXPORT_SYMBOL vmlinux 0x1fc6e661 xfrm_lookup EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0x1fcbb1a7 bio_copy_data EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 -EXPORT_SYMBOL vmlinux 0x1fe30cc2 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x200b563a crypto_sha512_update EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x201eea82 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x2038d781 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x2017b56f submit_bio_noacct EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204db17c put_cmsg +EXPORT_SYMBOL vmlinux 0x20569bea skb_copy_bits EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait EXPORT_SYMBOL vmlinux 0x2064b715 from_kprojid EXPORT_SYMBOL vmlinux 0x206bdc83 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x209684d2 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload -EXPORT_SYMBOL vmlinux 0x20a4c4f6 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x20a0cf7d ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20d9a5d9 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x20f10ce8 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x20eef004 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x20f8eaa0 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x21210653 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0x212cf7b3 generic_setlease EXPORT_SYMBOL vmlinux 0x2150b6df ccw_device_set_offline -EXPORT_SYMBOL vmlinux 0x217c0893 ping_prot +EXPORT_SYMBOL vmlinux 0x2155dc0f xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x2180e63c drop_super EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21bb51e4 neigh_event_ns EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x21bfb849 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x21dc04b6 nf_log_packet EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21ea83bc zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x21f33704 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x21f19259 netif_carrier_on EXPORT_SYMBOL vmlinux 0x221018aa console_force_preferred_locked EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure EXPORT_SYMBOL vmlinux 0x221229f3 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x2215331a xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x22217ea5 tcf_action_exec EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x223bf3ea truncate_pagecache -EXPORT_SYMBOL vmlinux 0x223d6214 phy_print_status EXPORT_SYMBOL vmlinux 0x223e8e65 lookup_one_len EXPORT_SYMBOL vmlinux 0x2249556e devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x224bbecd set_anon_super -EXPORT_SYMBOL vmlinux 0x2294c26a mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x22710c4b icmp6_send +EXPORT_SYMBOL vmlinux 0x2280bb8f sock_gettstamp +EXPORT_SYMBOL vmlinux 0x22973809 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c3f408 udp_seq_next EXPORT_SYMBOL vmlinux 0x22cf5b27 vfs_ioctl EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init EXPORT_SYMBOL vmlinux 0x22ee3688 simple_rename @@ -3119,83 +3108,78 @@ EXPORT_SYMBOL vmlinux 0x238c8f60 init_task EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x2395346e padata_alloc -EXPORT_SYMBOL vmlinux 0x23a414bd rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x23a28611 sock_create EXPORT_SYMBOL vmlinux 0x23b12fca pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path EXPORT_SYMBOL vmlinux 0x23cb4621 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x23cf0bb4 mode_strip_sgid EXPORT_SYMBOL vmlinux 0x23d04a9e genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x23d1f0f1 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x23dcc822 input_copy_abs EXPORT_SYMBOL vmlinux 0x23f926fa scsi_scan_host EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2401f7d4 tcp_parse_options EXPORT_SYMBOL vmlinux 0x2402e00c devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x24160bf9 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x2424e492 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x2413591d dev_get_by_index EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x24352464 io_uring_get_socket EXPORT_SYMBOL vmlinux 0x2435c414 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x243e6289 kbd_alloc EXPORT_SYMBOL vmlinux 0x24419c94 page_pool_release_page EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b25e1 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x246a351b kbd_keycode -EXPORT_SYMBOL vmlinux 0x2474207c neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x247954a1 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x2476536d __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x24ac6223 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0x24c79d62 km_state_notify EXPORT_SYMBOL vmlinux 0x24cd09b4 seq_puts EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24dcb568 read_cache_folio EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24fd864a ip_do_fragment +EXPORT_SYMBOL vmlinux 0x24ea4a7c xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x25045b3f md_set_array_sectors EXPORT_SYMBOL vmlinux 0x250d1786 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x250f992e __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25251e7b xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible EXPORT_SYMBOL vmlinux 0x25363eea ww_mutex_trylock EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x257391a7 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x2581e59f sockopt_release_sock EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x2582d208 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x2583a491 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x2587729c __fput_sync EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259fe10e inet_listen +EXPORT_SYMBOL vmlinux 0x25ae8499 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x25affe2d jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x25b18883 dm_register_target EXPORT_SYMBOL vmlinux 0x25c3639e md_reload_sb -EXPORT_SYMBOL vmlinux 0x25d15fd9 dst_destroy +EXPORT_SYMBOL vmlinux 0x25dd4cc7 phy_start EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen -EXPORT_SYMBOL vmlinux 0x2608f12b tcf_register_action EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x261181ca tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x2611ac46 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x26323e35 ip_frag_next -EXPORT_SYMBOL vmlinux 0x2635742b xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 EXPORT_SYMBOL vmlinux 0x264adba1 ilookup5 EXPORT_SYMBOL vmlinux 0x267a7933 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x267c1f48 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x26a1746a phy_resume EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure -EXPORT_SYMBOL vmlinux 0x26a88af8 nf_log_trace EXPORT_SYMBOL vmlinux 0x26ab98bc generic_block_bmap EXPORT_SYMBOL vmlinux 0x26ae767a flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x26c27caa kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x26e114f4 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier EXPORT_SYMBOL vmlinux 0x26e6c34a ap_get_qdev +EXPORT_SYMBOL vmlinux 0x26ea0721 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x26f484e8 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x26fa7b76 fd_install -EXPORT_SYMBOL vmlinux 0x2708ff29 inet6_getname -EXPORT_SYMBOL vmlinux 0x27092a16 eth_gro_receive EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27260dad phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x270e7779 sk_free EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x273694bf elevator_alloc @@ -3204,87 +3188,86 @@ 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 0x27738639 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x277d4035 gen_pool_has_addr EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse EXPORT_SYMBOL vmlinux 0x27a8f51b do_wait_intr_irq EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c7b322 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x27cd280b pci_pme_capable EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d604aa unix_get_socket +EXPORT_SYMBOL vmlinux 0x27dffd99 tcp_disconnect EXPORT_SYMBOL vmlinux 0x27e3247a dev_mc_init EXPORT_SYMBOL vmlinux 0x27eac71a dev_mc_flush EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x27f17031 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x2809823b xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x280a0fd9 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x280e32f7 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282ed24a scm_fp_dup EXPORT_SYMBOL vmlinux 0x282fd6e6 phy_device_create +EXPORT_SYMBOL vmlinux 0x2836aaab tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan EXPORT_SYMBOL vmlinux 0x286cd60a md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x28712b0e abort_creds EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x289f6eef netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x28a0686a shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x28abedcb scsi_print_sense -EXPORT_SYMBOL vmlinux 0x28bf7360 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x28e4c189 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x28f8f1bd dev_deactivate EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x291798b7 arp_tbl -EXPORT_SYMBOL vmlinux 0x291cbf88 sock_no_connect -EXPORT_SYMBOL vmlinux 0x2927cd14 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x29347b18 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap -EXPORT_SYMBOL vmlinux 0x293c5404 ip_output EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed EXPORT_SYMBOL vmlinux 0x295eaa81 retire_super EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2967f93b inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x29702c05 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x2971b26a dump_align -EXPORT_SYMBOL vmlinux 0x29758255 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x297e37e9 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x2989487b nla_append EXPORT_SYMBOL vmlinux 0x298b9c6d bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x299bee87 phy_attach -EXPORT_SYMBOL vmlinux 0x29db5950 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x29a82491 neigh_parms_release EXPORT_SYMBOL vmlinux 0x29e697b0 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x2a0246e0 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x29f22c3c napi_disable +EXPORT_SYMBOL vmlinux 0x2a04e244 netdev_change_features EXPORT_SYMBOL vmlinux 0x2a078522 param_ops_uint EXPORT_SYMBOL vmlinux 0x2a11ef0d vfs_fadvise EXPORT_SYMBOL vmlinux 0x2a367be2 iov_iter_npages EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init EXPORT_SYMBOL vmlinux 0x2a4a695d dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x2a511ff0 dst_release +EXPORT_SYMBOL vmlinux 0x2a539665 dev_remove_offload EXPORT_SYMBOL vmlinux 0x2a57bb0b param_set_hexint EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a6b2a5c netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x2a6d49c7 __inet_hash EXPORT_SYMBOL vmlinux 0x2a7465d0 folio_end_writeback EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x2a99f336 mdiobus_write EXPORT_SYMBOL vmlinux 0x2a9be21a kern_path_create EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x2abf6f37 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x2aef5246 sock_register +EXPORT_SYMBOL vmlinux 0x2ade30a1 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x2ae2297b netif_tx_lock EXPORT_SYMBOL vmlinux 0x2af3f454 ssch -EXPORT_SYMBOL vmlinux 0x2b1640e6 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x2b1f09f0 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x2b1f8f37 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x2b21b559 raw3270_request_set_idal EXPORT_SYMBOL vmlinux 0x2b2dd2a2 _dev_emerg +EXPORT_SYMBOL vmlinux 0x2b316430 netif_receive_skb EXPORT_SYMBOL vmlinux 0x2b33b72a pci_alloc_dev EXPORT_SYMBOL vmlinux 0x2b4b0402 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x2b558d98 dev_add_pack EXPORT_SYMBOL vmlinux 0x2b5ecbc6 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x2b637ac0 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x2b774810 input_allocate_device EXPORT_SYMBOL vmlinux 0x2b8d49e4 vm_mmap EXPORT_SYMBOL vmlinux 0x2b8f169d configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9ec7e1 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x2ba4546c dev_uc_add EXPORT_SYMBOL vmlinux 0x2baa40ed unlock_rename +EXPORT_SYMBOL vmlinux 0x2bbc66f0 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0x2bc21233 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x2bca4ed6 tcp_conn_request EXPORT_SYMBOL vmlinux 0x2bd38b62 set_guest_storage_key EXPORT_SYMBOL vmlinux 0x2beb5f71 __breadahead EXPORT_SYMBOL vmlinux 0x2bec2579 register_sysctl_paths @@ -3293,16 +3276,15 @@ EXPORT_SYMBOL vmlinux 0x2c130447 fb_blank EXPORT_SYMBOL vmlinux 0x2c238995 vfs_iter_read EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2e9a34 xp_alloc +EXPORT_SYMBOL vmlinux 0x2c28a303 skb_ext_add EXPORT_SYMBOL vmlinux 0x2c38a0f4 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x2c44b12c dst_release_immediate EXPORT_SYMBOL vmlinux 0x2c5a6de7 ccw_device_get_ciw EXPORT_SYMBOL vmlinux 0x2c6c214d pci_match_id -EXPORT_SYMBOL vmlinux 0x2c7bde50 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x2c7eb784 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x2c7c1376 __sock_create EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c927736 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x2c976616 __check_sticky +EXPORT_SYMBOL vmlinux 0x2c99c24b xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x2cb167c2 tcf_idr_create EXPORT_SYMBOL vmlinux 0x2cb75ff1 __tracepoint_s390_cio_tsch EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top @@ -3311,222 +3293,207 @@ EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug EXPORT_SYMBOL vmlinux 0x2cfb7aad update_region EXPORT_SYMBOL vmlinux 0x2cff6b34 locks_free_lock +EXPORT_SYMBOL vmlinux 0x2d06ce9a netif_rx EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d16129f nf_log_unset EXPORT_SYMBOL vmlinux 0x2d276715 neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37aa29 tcp_poll +EXPORT_SYMBOL vmlinux 0x2d33bf60 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup EXPORT_SYMBOL vmlinux 0x2d3e9823 zpool_register_driver EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font EXPORT_SYMBOL vmlinux 0x2d5afa65 pci_release_regions EXPORT_SYMBOL vmlinux 0x2d632e4e page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x2d64dbc3 pskb_extract +EXPORT_SYMBOL vmlinux 0x2d70390a qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x2d744828 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x2d776ba8 d_obtain_root EXPORT_SYMBOL vmlinux 0x2d832cbf utf8_casefold -EXPORT_SYMBOL vmlinux 0x2d834384 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x2d9930f7 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr EXPORT_SYMBOL vmlinux 0x2daa97a6 get_phy_device EXPORT_SYMBOL vmlinux 0x2dc9beb1 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x2dcc1fc7 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x2dd967c8 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2de1b87b genphy_suspend -EXPORT_SYMBOL vmlinux 0x2dea4802 dev_close -EXPORT_SYMBOL vmlinux 0x2e2fb3f3 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x2de9f29d skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x2e064b20 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x2e5e28fd __udp_disconnect EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put EXPORT_SYMBOL vmlinux 0x2e635a2a inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0x2e64bcf0 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x2e6a17c7 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x2e6e6c9f set_page_writeback -EXPORT_SYMBOL vmlinux 0x2e6f7869 inet_addr_type EXPORT_SYMBOL vmlinux 0x2e79b30a md_flush_request EXPORT_SYMBOL vmlinux 0x2e9033b2 kernel_read EXPORT_SYMBOL vmlinux 0x2e91ccd6 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x2e98d6e0 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x2ea55deb vmap EXPORT_SYMBOL vmlinux 0x2ea62f3a pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x2eafc028 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x2eb81c99 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x2eb95027 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x2ec47427 tcp_seq_next EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2ed7c8da kill_block_super +EXPORT_SYMBOL vmlinux 0x2eeb6a0f tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2ef89bc5 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x2efda6d1 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc EXPORT_SYMBOL vmlinux 0x2f1e4e8d dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x2f1f02b5 dev_deactivate EXPORT_SYMBOL vmlinux 0x2f1f7f1f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x2f2d7b77 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f3de885 sock_no_getname EXPORT_SYMBOL vmlinux 0x2f5a5635 _copy_to_iter EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2fb1c565 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x2fbac292 sock_kmalloc EXPORT_SYMBOL vmlinux 0x2fd09944 blake2s_update EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower EXPORT_SYMBOL vmlinux 0x300d6be4 __irq_regs +EXPORT_SYMBOL vmlinux 0x30186729 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x301ffc39 blk_start_plug +EXPORT_SYMBOL vmlinux 0x302cf167 genl_register_family EXPORT_SYMBOL vmlinux 0x303cc154 set_blocksize -EXPORT_SYMBOL vmlinux 0x304a55d9 sock_create +EXPORT_SYMBOL vmlinux 0x30425889 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x3047dafe __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x304ea61f can_nice -EXPORT_SYMBOL vmlinux 0x3056b4f4 sock_wake_async -EXPORT_SYMBOL vmlinux 0x3056c025 sock_set_priority EXPORT_SYMBOL vmlinux 0x307a286b noop_dirty_folio -EXPORT_SYMBOL vmlinux 0x3089d055 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x308a20eb ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x30a428e5 security_binder_transaction EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30da3c65 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x30e131f8 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x30d70c67 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x30ebcc98 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x30ecc4e2 param_set_ushort EXPORT_SYMBOL vmlinux 0x30f622e1 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x3101323d path_put -EXPORT_SYMBOL vmlinux 0x310b093e dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x311290f5 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x3112cef1 udp_disconnect EXPORT_SYMBOL vmlinux 0x3116b586 follow_pfn -EXPORT_SYMBOL vmlinux 0x3117e4e7 rtnl_unicast EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info EXPORT_SYMBOL vmlinux 0x313314c6 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x31439edb kernel_sendpage EXPORT_SYMBOL vmlinux 0x31475e37 dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x315e7832 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x316fa41e __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x3184d96f udplite_prot EXPORT_SYMBOL vmlinux 0x31958cec zpci_report_error EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x31a8c62c sk_common_release EXPORT_SYMBOL vmlinux 0x31ae219c cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x31cfa6ac pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update -EXPORT_SYMBOL vmlinux 0x320f7601 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x3216e28c gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x3218cd96 inet_ioctl EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset EXPORT_SYMBOL vmlinux 0x32433cf0 dma_fence_describe -EXPORT_SYMBOL vmlinux 0x324bff8d tcp_prot EXPORT_SYMBOL vmlinux 0x326f077d _dev_notice EXPORT_SYMBOL vmlinux 0x32730412 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x327c8163 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x327dd817 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x32832480 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x32849335 iunique EXPORT_SYMBOL vmlinux 0x3289eebb class3270 +EXPORT_SYMBOL vmlinux 0x328e6903 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x32900546 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x329b8fb7 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x329c70a2 param_ops_charp EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32f272dc netdev_err -EXPORT_SYMBOL vmlinux 0x33191f7d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x33059b2d ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x3314079e ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0x3348bb19 dns_query EXPORT_SYMBOL vmlinux 0x33492f07 tty_vhangup -EXPORT_SYMBOL vmlinux 0x33607f63 sk_mc_loop EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table -EXPORT_SYMBOL vmlinux 0x336c1b43 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x337a96c8 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x337dc555 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x3380f48e __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x3387c8fb tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x3389d8f9 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x339af240 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x339d00e6 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x33abd205 scsi_device_get -EXPORT_SYMBOL vmlinux 0x33b488d6 sock_bind_add +EXPORT_SYMBOL vmlinux 0x33b3d9d9 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x33d75336 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x33ed0571 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock -EXPORT_SYMBOL vmlinux 0x340b367e free_netdev EXPORT_SYMBOL vmlinux 0x34182034 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x3441899c inet6_offloads -EXPORT_SYMBOL vmlinux 0x345edfce nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x34479ed2 __napi_schedule +EXPORT_SYMBOL vmlinux 0x34611295 dst_discard_out EXPORT_SYMBOL vmlinux 0x3461f0cb genphy_read_abilities EXPORT_SYMBOL vmlinux 0x3478a0ed scsi_mode_sense EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a057f6 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x34b587ee pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x34bf4b59 ptep_reset_dat_prot EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cb4c4e netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x34dca4be tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x34e23340 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x34d2aa5b dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f92efe nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x34fc089d dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier EXPORT_SYMBOL vmlinux 0x352a4294 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x3530f0d1 bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0x35446376 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x35601ab3 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x3554c629 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x359edcc7 fsync_bdev -EXPORT_SYMBOL vmlinux 0x35a6a044 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ae297a dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x35b831bc blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x35ba0e63 ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0x35cd2dcd netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x35d0ad21 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x35bd454c seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x35d3e41c dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x35e734a8 skb_push +EXPORT_SYMBOL vmlinux 0x35f02a83 rtnl_create_link EXPORT_SYMBOL vmlinux 0x35f0c7fd get_task_cred EXPORT_SYMBOL vmlinux 0x36019b2c lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier EXPORT_SYMBOL vmlinux 0x3608ce6d seq_open_private EXPORT_SYMBOL vmlinux 0x3609bf7b pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x3625050f fifo_set_limit -EXPORT_SYMBOL vmlinux 0x3640c58e netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x364721a9 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x364b007d dev_get_iflink EXPORT_SYMBOL vmlinux 0x3656067d folio_mapping EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366db323 security_sk_clone +EXPORT_SYMBOL vmlinux 0x3677004b sock_set_reuseport EXPORT_SYMBOL vmlinux 0x368123ad dev_mc_sync EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit EXPORT_SYMBOL vmlinux 0x36a51334 elv_rb_add -EXPORT_SYMBOL vmlinux 0x36adedc5 device_get_ethdev_address EXPORT_SYMBOL vmlinux 0x36c02403 ccw_device_dma_free EXPORT_SYMBOL vmlinux 0x36d6526a kobject_init EXPORT_SYMBOL vmlinux 0x36d8ce6c __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x36e41f33 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x36e7082f mtree_store_range -EXPORT_SYMBOL vmlinux 0x36f7a3c6 eth_type_trans +EXPORT_SYMBOL vmlinux 0x36ffb39f security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x3703a849 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x370c67f8 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait EXPORT_SYMBOL vmlinux 0x372707f9 phy_device_free EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable EXPORT_SYMBOL vmlinux 0x3736d0c2 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x37384055 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x3742afbb inet6_ioctl EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x376c9726 netlink_net_capable EXPORT_SYMBOL vmlinux 0x377d81bf blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x377f245d inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x378f7379 dquot_transfer -EXPORT_SYMBOL vmlinux 0x37926622 tcp_check_req EXPORT_SYMBOL vmlinux 0x37b31b51 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x37b35efe unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x37b5b060 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x37be4e5b mdiobus_scan EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d10a83 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x37f901e1 inet6_offloads EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus EXPORT_SYMBOL vmlinux 0x38231b1c unlock_buffer -EXPORT_SYMBOL vmlinux 0x3826e93d skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x382e75d5 fget +EXPORT_SYMBOL vmlinux 0x382aa41f xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x382bbdab __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x382cb79d sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x3831037e file_path EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x3837e386 inet6_del_offload EXPORT_SYMBOL vmlinux 0x384857d3 pci_enable_device EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385a8ebd qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x3860e423 end_page_writeback EXPORT_SYMBOL vmlinux 0x38705298 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x38740c03 mdio_device_register -EXPORT_SYMBOL vmlinux 0x3880cac1 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x388269e8 dst_destroy EXPORT_SYMBOL vmlinux 0x3884ce63 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x389ee54b in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x389fba47 generic_fadvise EXPORT_SYMBOL vmlinux 0x38a52db1 dma_fence_init EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list @@ -3536,43 +3503,42 @@ EXPORT_SYMBOL vmlinux 0x38c0649b mdio_device_remove EXPORT_SYMBOL vmlinux 0x38c935c6 generic_file_mmap EXPORT_SYMBOL vmlinux 0x38d7fe47 flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0x38ec682f ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x38f667a7 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x38ff8d21 clear_nlink EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x3921c92e inet_shutdown +EXPORT_SYMBOL vmlinux 0x3925cad4 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394b9b1c nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x39505db9 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x395bb4f5 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x3978077a __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x39653d8d rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x397d151d flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x39946ffa nf_register_net_hook EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39c2a0b1 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x39a400df ip_defrag +EXPORT_SYMBOL vmlinux 0x39c640bc inet_ioctl EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x39f1d5f6 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x39fd2b63 zstd_reset_dstream EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate +EXPORT_SYMBOL vmlinux 0x3a2370c8 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a588717 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x3a6ad845 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x3a6e0b15 sockfd_lookup EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x3a8ffaed skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3a9e8399 eth_header_parse EXPORT_SYMBOL vmlinux 0x3aa84422 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x3aabeb6d __skb_pad EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abdad2f phy_init_eee EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x3ace0e59 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x3acf0520 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x3ae75144 param_set_byte EXPORT_SYMBOL vmlinux 0x3ae8800b ccw_device_get_id EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x3b3c7f7c blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x3b413afb _copy_from_iter -EXPORT_SYMBOL vmlinux 0x3b48e9cc udp_read_skb EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b662342 sg_miter_next EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint @@ -3580,30 +3546,25 @@ EXPORT_SYMBOL vmlinux 0x3b79c19e iov_iter_kvec EXPORT_SYMBOL vmlinux 0x3b80a549 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x3b8c51a7 register_quota_format -EXPORT_SYMBOL vmlinux 0x3b9ba6d1 free_task EXPORT_SYMBOL vmlinux 0x3ba8a928 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x3bb39e71 ap_queue_message +EXPORT_SYMBOL vmlinux 0x3bf0f2db ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x3bf10041 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x3bf9f1c8 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x3c01d638 inet_add_offload EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r EXPORT_SYMBOL vmlinux 0x3c0ebc8a dm_kobject_release -EXPORT_SYMBOL vmlinux 0x3c0fb1af xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c531813 zstd_is_error EXPORT_SYMBOL vmlinux 0x3c55fb61 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x3c5fe73e __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x3c67afb8 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x3c67fd40 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x3c6aec8a xp_can_alloc EXPORT_SYMBOL vmlinux 0x3c768b51 xz_dec_microlzma_run -EXPORT_SYMBOL vmlinux 0x3c781653 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x3c9c0e3d tcp_time_wait -EXPORT_SYMBOL vmlinux 0x3c9ec65a icmp6_send +EXPORT_SYMBOL vmlinux 0x3c9a5a59 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x3ca3c39c tcf_block_get +EXPORT_SYMBOL vmlinux 0x3ca9bd53 skb_queue_head EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cc136a3 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x3cc56784 km_policy_expired -EXPORT_SYMBOL vmlinux 0x3cd6d7af kernel_sendmsg EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq EXPORT_SYMBOL vmlinux 0x3ce74b91 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x3d016a04 devm_ioremap_wc @@ -3612,16 +3573,14 @@ EXPORT_SYMBOL vmlinux 0x3d0fa3a4 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size EXPORT_SYMBOL vmlinux 0x3d2981fa utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x3d382f46 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x3d3c7e6a pneigh_lookup +EXPORT_SYMBOL vmlinux 0x3d4bcb83 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x3d4cb9d1 airq_iv_create EXPORT_SYMBOL vmlinux 0x3d580af7 d_add -EXPORT_SYMBOL vmlinux 0x3d600a98 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x3d626d38 eth_gro_receive EXPORT_SYMBOL vmlinux 0x3d62fa44 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name -EXPORT_SYMBOL vmlinux 0x3d78d84b skb_orphan_partial EXPORT_SYMBOL vmlinux 0x3d7aeec8 ap_cancel_message -EXPORT_SYMBOL vmlinux 0x3d7eb9fb __napi_schedule +EXPORT_SYMBOL vmlinux 0x3d8cdc7e tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x3d8e8e18 key_invalidate EXPORT_SYMBOL vmlinux 0x3d8ed963 register_md_personality EXPORT_SYMBOL vmlinux 0x3d999cf8 jbd2_submit_inode_data @@ -3630,21 +3589,19 @@ EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work EXPORT_SYMBOL vmlinux 0x3db3b5a6 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3dc8b7c0 __skb_checksum EXPORT_SYMBOL vmlinux 0x3dca0969 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dce7387 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x3df9d9d7 ip_do_fragment EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e286517 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x3e2bfd0b vfs_mkdir -EXPORT_SYMBOL vmlinux 0x3e359c9c napi_complete_done -EXPORT_SYMBOL vmlinux 0x3e3aad1a __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e42bf09 inet6_protos -EXPORT_SYMBOL vmlinux 0x3e477cf5 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x3e574725 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x3e61175f elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x3e703b20 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x3e8aac5c qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x3e842236 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x3e8c7ed9 __bio_advance -EXPORT_SYMBOL vmlinux 0x3eb26d83 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x3eabb07e sock_set_keepalive EXPORT_SYMBOL vmlinux 0x3ebba058 register_fib_notifier EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit EXPORT_SYMBOL vmlinux 0x3ecf689c mark_buffer_dirty_inode @@ -3656,29 +3613,29 @@ EXPORT_SYMBOL vmlinux 0x3f065f08 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x3f3f7461 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f48006c udp_seq_next +EXPORT_SYMBOL vmlinux 0x3f4db790 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x3f74fc49 md_register_thread EXPORT_SYMBOL vmlinux 0x3f806266 tty_register_driver EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa7fb26 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x3fa78b5f xfrm_register_type EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fc3d7b4 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x3fc437bd block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x3fc8931e security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x3fd7212c crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe88dbe scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x3ff730d7 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x4005b352 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 +EXPORT_SYMBOL vmlinux 0x4034d660 neigh_connected_output EXPORT_SYMBOL vmlinux 0x40488812 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x405d7a5f param_set_uint +EXPORT_SYMBOL vmlinux 0x40620886 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x406c7302 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x40867183 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a763a8 ilookup EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40ac8beb iget5_locked -EXPORT_SYMBOL vmlinux 0x40ae3585 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x40bb3b36 blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock @@ -3686,8 +3643,10 @@ EXPORT_SYMBOL vmlinux 0x40dc9d10 pcim_set_mwi EXPORT_SYMBOL vmlinux 0x40ed502d scsi_print_result EXPORT_SYMBOL vmlinux 0x40f64a65 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x41043903 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x41061a40 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x41258f30 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x412cabdf sock_edemux EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user @@ -3697,32 +3656,34 @@ EXPORT_SYMBOL vmlinux 0x41542792 config_group_find_item EXPORT_SYMBOL vmlinux 0x416052b4 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x41693e77 __do_once_done +EXPORT_SYMBOL vmlinux 0x416d0c50 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x4177e2a7 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x417d9a17 md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41913a59 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4191aa1c sock_release EXPORT_SYMBOL vmlinux 0x41a39fd7 _dev_err EXPORT_SYMBOL vmlinux 0x41a765e8 current_in_userns EXPORT_SYMBOL vmlinux 0x41bf1b5e cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x41e8e3ef tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x42043c5d posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x421ae800 skb_find_text EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42343e15 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x423f1332 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4254644d phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x426f030c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x42709ecc netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0x4292544e dump_skip EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after EXPORT_SYMBOL vmlinux 0x42a452fd generic_ro_fops EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find -EXPORT_SYMBOL vmlinux 0x42c0bffe netlink_unicast EXPORT_SYMBOL vmlinux 0x42c4050a zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x42c4ee92 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431b896b inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x431ede65 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x432dbdb6 netdev_features_change +EXPORT_SYMBOL vmlinux 0x43299850 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x4330d570 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x43390720 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435e2432 dev_alloc_name EXPORT_SYMBOL vmlinux 0x436de8c1 get_tree_bdev EXPORT_SYMBOL vmlinux 0x43737fd1 __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp @@ -3734,42 +3695,38 @@ EXPORT_SYMBOL vmlinux 0x43b6771a seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x43bdbd7a crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq -EXPORT_SYMBOL vmlinux 0x43c3050b netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43d9ba52 fault_in_readable EXPORT_SYMBOL vmlinux 0x43f1dbc6 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x4402a3f4 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x4434b4c5 poll_freewait +EXPORT_SYMBOL vmlinux 0x442a6e99 nf_log_unregister EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x44494d90 sock_edemux EXPORT_SYMBOL vmlinux 0x44536f8e fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x448c704d mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x44948cd2 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44ac1c9e udp_ioctl EXPORT_SYMBOL vmlinux 0x44b04520 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x44b2331f param_get_bool EXPORT_SYMBOL vmlinux 0x44b30fb5 csch +EXPORT_SYMBOL vmlinux 0x44b4512d inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x44b7db2b security_sk_clone EXPORT_SYMBOL vmlinux 0x44b8310a scsi_target_resume EXPORT_SYMBOL vmlinux 0x44b85232 request_key_tag EXPORT_SYMBOL vmlinux 0x44dadc84 try_module_get +EXPORT_SYMBOL vmlinux 0x44def558 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x44e848bf bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x44e97b81 blk_finish_plug EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x44ee053e inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x44eef00a ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x4505b690 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x450cdb71 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x45254000 simple_link EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x45317463 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454e1574 sock_rfree +EXPORT_SYMBOL vmlinux 0x4541a86b ip_mc_join_group EXPORT_SYMBOL vmlinux 0x455a6b6e dm_put_device EXPORT_SYMBOL vmlinux 0x456ef08d param_set_invbool EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45b1fde5 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait EXPORT_SYMBOL vmlinux 0x45c70e26 revert_creds EXPORT_SYMBOL vmlinux 0x45c99b53 __register_chrdev @@ -3781,16 +3738,15 @@ EXPORT_SYMBOL vmlinux 0x461a8d3d kern_path EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x461f0fbb iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x4642a661 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x4659127d __mdiobus_register EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x467f7a2b ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x468847d5 netdev_features_change EXPORT_SYMBOL vmlinux 0x4688a40d cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x468c8df4 cdrom_release EXPORT_SYMBOL vmlinux 0x469fd25e pci_map_rom -EXPORT_SYMBOL vmlinux 0x46ac6aab phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x46a2aa8b register_netdev EXPORT_SYMBOL vmlinux 0x46b0a3a3 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x46b26ff8 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x46c27b26 phy_sfp_probe EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift @@ -3798,20 +3754,25 @@ EXPORT_SYMBOL vmlinux 0x46de5075 d_prune_aliases EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x46f41bd8 neigh_for_each EXPORT_SYMBOL vmlinux 0x46fd9282 dma_pool_create -EXPORT_SYMBOL vmlinux 0x4710d995 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x4715c711 napi_enable EXPORT_SYMBOL vmlinux 0x47341e27 __phy_resume EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy +EXPORT_SYMBOL vmlinux 0x4745f056 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x47566e95 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x47580b8a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4768f407 tcf_register_action EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4779a5c8 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x478077d1 param_set_short EXPORT_SYMBOL vmlinux 0x4784612c pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create +EXPORT_SYMBOL vmlinux 0x47939f59 unix_detach_fds EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47d5fe2f find_vma EXPORT_SYMBOL vmlinux 0x47d60762 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x480d73a1 dev_remove_pack EXPORT_SYMBOL vmlinux 0x4812fac3 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address @@ -3819,109 +3780,111 @@ EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x484fc1cb dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x48511276 config_group_init +EXPORT_SYMBOL vmlinux 0x4863aa21 inet_frag_kill EXPORT_SYMBOL vmlinux 0x487370a2 fault_in_writeable +EXPORT_SYMBOL vmlinux 0x487e0747 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x48814627 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x4887189a skb_set_owner_w EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48dbacaa lowcore_ptr EXPORT_SYMBOL vmlinux 0x48ef3234 vfs_create -EXPORT_SYMBOL vmlinux 0x48f4fea3 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x48f6905b zstd_dctx_workspace_bound EXPORT_SYMBOL vmlinux 0x48f737de tty_port_close +EXPORT_SYMBOL vmlinux 0x48f793e8 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x48fcf861 address_space_init_once EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x49480387 phy_print_status +EXPORT_SYMBOL vmlinux 0x494b7752 security_inode_init_security EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 EXPORT_SYMBOL vmlinux 0x4957752a vfs_readlink -EXPORT_SYMBOL vmlinux 0x4958728a tcp_init_sock EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x496467e8 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x49672828 node_states EXPORT_SYMBOL vmlinux 0x49739c39 empty_aops EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits EXPORT_SYMBOL vmlinux 0x497aa61b fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x49833945 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x498370ca rtnl_create_link +EXPORT_SYMBOL vmlinux 0x498bc7e6 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x49989e4d netdev_update_features EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x49cec06d redraw_screen EXPORT_SYMBOL vmlinux 0x49d751c5 mdiobus_free EXPORT_SYMBOL vmlinux 0x49d948ed d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x49db0dfd qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x49ec8bc7 kbd_free EXPORT_SYMBOL vmlinux 0x49ed6fa2 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x49fc3e26 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x49f694f3 fqdir_exit EXPORT_SYMBOL vmlinux 0x4a084ff7 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x4a2fbaae __lock_buffer EXPORT_SYMBOL vmlinux 0x4a4516c1 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all EXPORT_SYMBOL vmlinux 0x4a697b39 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x4a7a6f7c pneigh_enqueue EXPORT_SYMBOL vmlinux 0x4a7d7c74 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x4a7ec0f3 open_exec -EXPORT_SYMBOL vmlinux 0x4a923294 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9da01a fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x4a9c25b5 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x4aa615ba dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4ab75d37 passthru_features_check EXPORT_SYMBOL vmlinux 0x4ac38cbd blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x4ac3c578 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x4ad636ff input_set_capability -EXPORT_SYMBOL vmlinux 0x4af520ad seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x4adcdc58 udp_ioctl EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afa04ee ndisc_send_skb EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness +EXPORT_SYMBOL vmlinux 0x4b0ff96f ip_frag_init EXPORT_SYMBOL vmlinux 0x4b192679 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x4b2af195 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose -EXPORT_SYMBOL vmlinux 0x4b44ff88 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x4b55a931 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4b596aa9 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x4b643047 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x4b65246a kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x4b828426 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock EXPORT_SYMBOL vmlinux 0x4b90609e textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x4b9f7047 nf_ct_attach EXPORT_SYMBOL vmlinux 0x4bc2537d bio_alloc_clone -EXPORT_SYMBOL vmlinux 0x4bc51d12 xfrm_state_add EXPORT_SYMBOL vmlinux 0x4bd018e2 kmalloc_large_node +EXPORT_SYMBOL vmlinux 0x4bf6e47c __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x4bf7bb65 elv_rb_find EXPORT_SYMBOL vmlinux 0x4c223c3e blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x4c294dc1 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x4c29ae21 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x4c3491e0 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp EXPORT_SYMBOL vmlinux 0x4c5d9949 sclp -EXPORT_SYMBOL vmlinux 0x4c6dba93 inet_del_offload +EXPORT_SYMBOL vmlinux 0x4c787e4a tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x4c7af6a4 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x4c7f95ac simple_transaction_set -EXPORT_SYMBOL vmlinux 0x4c84e1c8 nlmsg_notify EXPORT_SYMBOL vmlinux 0x4c8fc737 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x4c94eed4 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x4cab30db phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4ca845f4 eth_gro_complete EXPORT_SYMBOL vmlinux 0x4caea1de simple_statfs EXPORT_SYMBOL vmlinux 0x4cc9386c dquot_release -EXPORT_SYMBOL vmlinux 0x4ccb1c04 napi_enable EXPORT_SYMBOL vmlinux 0x4ccc5204 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4cdfb48b input_register_handle +EXPORT_SYMBOL vmlinux 0x4d19d960 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x4d1ff094 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x4d261aca fget_raw -EXPORT_SYMBOL vmlinux 0x4d35c3a8 security_path_rename -EXPORT_SYMBOL vmlinux 0x4d3652e9 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x4d33da1f fget EXPORT_SYMBOL vmlinux 0x4d3b9da7 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x4d46a02e pcie_set_readrq EXPORT_SYMBOL vmlinux 0x4d4f0763 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4d5666ae skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0x4d6b353f get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x4d8952ba xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x4d98e592 param_ops_hexint EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9deaaf pci_enable_wake EXPORT_SYMBOL vmlinux 0x4d9e6a52 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x4db3b475 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x4dbc168f eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4dd32c98 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4deec872 __netif_rx EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch EXPORT_SYMBOL vmlinux 0x4e18a4b7 vfs_rmdir @@ -3930,22 +3893,23 @@ EXPORT_SYMBOL vmlinux 0x4e384b65 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer EXPORT_SYMBOL vmlinux 0x4e51739a dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x4e5323da sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x4e53d16c xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e82162b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x4e707eaa __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x4e772397 inet_accept +EXPORT_SYMBOL vmlinux 0x4e81b0f0 phy_trigger_machine EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x4e8e2703 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0x4e8fcd0d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write EXPORT_SYMBOL vmlinux 0x4ea7a3fc scsi_done_direct -EXPORT_SYMBOL vmlinux 0x4eac9cc3 tcp_child_process EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eaec469 dst_dev_put -EXPORT_SYMBOL vmlinux 0x4eba0a93 ip6_output EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4eef3482 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x4ef1e1b9 keyring_clear EXPORT_SYMBOL vmlinux 0x4eff32c7 bio_init_clone -EXPORT_SYMBOL vmlinux 0x4f07c30d nf_hook_slow +EXPORT_SYMBOL vmlinux 0x4f0feba2 security_sock_graft EXPORT_SYMBOL vmlinux 0x4f15fa2f locks_copy_conflock EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel @@ -3954,124 +3918,130 @@ EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x4f5c6dcf md_unregister_thread EXPORT_SYMBOL vmlinux 0x4f5f4797 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x4f6a1ca3 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x4f6f03f3 param_array_ops -EXPORT_SYMBOL vmlinux 0x4f88ebd4 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x4fa7ff03 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf EXPORT_SYMBOL vmlinux 0x4fb34099 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x4fc0a8c6 napi_get_frags EXPORT_SYMBOL vmlinux 0x4fc14b7d param_get_uint EXPORT_SYMBOL vmlinux 0x4fd00522 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4fd0868d eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x4fe35252 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x4ff16bc4 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500ec3fa netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x50176877 dquot_initialize +EXPORT_SYMBOL vmlinux 0x502fa9ae inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x50327d9e folio_migrate_flags EXPORT_SYMBOL vmlinux 0x5042d633 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x50505428 sock_create_kern EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup EXPORT_SYMBOL vmlinux 0x50805454 simple_setattr -EXPORT_SYMBOL vmlinux 0x509092e2 proto_unregister +EXPORT_SYMBOL vmlinux 0x508a868b netdev_notify_peers EXPORT_SYMBOL vmlinux 0x5093e9aa super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x50977dcc sk_wait_data EXPORT_SYMBOL vmlinux 0x50987bf9 fb_find_mode EXPORT_SYMBOL vmlinux 0x509c8019 vma_set_file -EXPORT_SYMBOL vmlinux 0x509cb8b5 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x509f1aa4 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50a82930 csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x50ae99ce simple_rmdir -EXPORT_SYMBOL vmlinux 0x50b4550f netdev_crit EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50bb096e tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cbf4b0 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x50cf69b6 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d9860d security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get EXPORT_SYMBOL vmlinux 0x50e5fc86 igrab -EXPORT_SYMBOL vmlinux 0x50f69ea1 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x50f2aa59 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x50f75d05 would_dump +EXPORT_SYMBOL vmlinux 0x50fb05c1 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x511b1085 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x51237a93 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x512051fd genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x512e2c7b kobject_set_name EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x51548f0d unix_destruct_scm EXPORT_SYMBOL vmlinux 0x515a8d26 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend EXPORT_SYMBOL vmlinux 0x5175c06d key_move -EXPORT_SYMBOL vmlinux 0x51765d2a netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x51788bec set_page_dirty +EXPORT_SYMBOL vmlinux 0x5188249c __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 -EXPORT_SYMBOL vmlinux 0x518ef6ac security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x519c5842 generic_permission EXPORT_SYMBOL vmlinux 0x51a74ea6 __register_binfmt +EXPORT_SYMBOL vmlinux 0x51c0f586 xfrm_state_free EXPORT_SYMBOL vmlinux 0x51cc8e4c scsi_print_command -EXPORT_SYMBOL vmlinux 0x51dbb269 mr_dump -EXPORT_SYMBOL vmlinux 0x5203c4b5 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x52116a5d phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x52128d0f qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x5223169a tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x525a8cc8 iov_iter_xarray EXPORT_SYMBOL vmlinux 0x525d969f genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x526711dc __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x526f44b8 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x52795ba2 netpoll_setup EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert +EXPORT_SYMBOL vmlinux 0x52829091 tcp_poll EXPORT_SYMBOL vmlinux 0x528a40bf input_unregister_handler -EXPORT_SYMBOL vmlinux 0x5297140d tcp_peek_len EXPORT_SYMBOL vmlinux 0x5299f0b1 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x52abfb47 eth_type_trans +EXPORT_SYMBOL vmlinux 0x52b7a58a netpoll_send_udp EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52db1a14 zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x52fb2221 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x52e1e77f xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x52e8d664 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x53008645 freeze_bdev +EXPORT_SYMBOL vmlinux 0x530099f5 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0x5315ca37 blk_mq_alloc_disk_for_queue EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53424f34 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x53578846 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x533a6041 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x53589748 page_symlink +EXPORT_SYMBOL vmlinux 0x5394341f inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x539ea558 inc_node_page_state EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit EXPORT_SYMBOL vmlinux 0x53ab07d9 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x53b77d51 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x53accae3 inet6_getname EXPORT_SYMBOL vmlinux 0x53bba13c d_instantiate_new EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked EXPORT_SYMBOL vmlinux 0x53c36149 param_set_bint +EXPORT_SYMBOL vmlinux 0x53c8a07f tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x53cb3461 folio_account_redirty -EXPORT_SYMBOL vmlinux 0x53f0cdaf kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x53d2a24d netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x53e41542 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x540f0ae7 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x542b831b __neigh_create EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546b9f95 kernel_listen EXPORT_SYMBOL vmlinux 0x546c9e63 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x546dc30b tcf_classify +EXPORT_SYMBOL vmlinux 0x5470093c reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x547fbbd7 simple_lookup EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54c08525 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x54c44395 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x54cd23c1 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54eec8cd parse_int_array_user -EXPORT_SYMBOL vmlinux 0x550278c4 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x55066fad pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x552b07f0 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x552adb73 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x554a22e0 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x554fc4f6 tty_register_device -EXPORT_SYMBOL vmlinux 0x55569210 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x555ccb97 up_read -EXPORT_SYMBOL vmlinux 0x557df06e sock_no_socketpair EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request EXPORT_SYMBOL vmlinux 0x55bdb227 follow_down +EXPORT_SYMBOL vmlinux 0x55bdf880 dst_release_immediate EXPORT_SYMBOL vmlinux 0x55c55ea9 con_copy_unimap EXPORT_SYMBOL vmlinux 0x55d58db9 d_find_alias EXPORT_SYMBOL vmlinux 0x55d62a22 copy_page_from_iter @@ -4082,36 +4052,37 @@ EXPORT_SYMBOL vmlinux 0x55f156cf phy_modify_paged EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback EXPORT_SYMBOL vmlinux 0x56067056 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x5616d0a0 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x56265bf5 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x561e3784 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x562b9be5 ap_test_config_ctrl_domain EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563c22e8 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5651b7ce phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x565d4df5 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x5660f88f raw3270_add_view EXPORT_SYMBOL vmlinux 0x56718ead register_cdrom -EXPORT_SYMBOL vmlinux 0x567939fa phy_request_interrupt EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask EXPORT_SYMBOL vmlinux 0x56855dc2 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x56955d39 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x56a6d772 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x56a04728 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x56a48a55 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x56a8c859 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x56b051c1 dev_get_flags EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cf1906 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x56d78870 chsc -EXPORT_SYMBOL vmlinux 0x56e58148 dst_alloc -EXPORT_SYMBOL vmlinux 0x56e70729 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x56db6a51 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x56fb04a6 sock_rfree EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5752a5aa tcp_add_backlog EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 EXPORT_SYMBOL vmlinux 0x5775e3f9 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x57939398 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x578d794c skb_unlink +EXPORT_SYMBOL vmlinux 0x5791bfcc ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x57aab812 mpage_read_folio -EXPORT_SYMBOL vmlinux 0x57aca4cc sk_free EXPORT_SYMBOL vmlinux 0x57b4b9a1 register_external_irq -EXPORT_SYMBOL vmlinux 0x57c616ea inet_dgram_ops EXPORT_SYMBOL vmlinux 0x57cb0eab fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x57efdca0 xfrm_init_state EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one EXPORT_SYMBOL vmlinux 0x580fd5a8 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode @@ -4120,124 +4091,115 @@ EXPORT_SYMBOL vmlinux 0x58278051 get_user_pages EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5857a67d scsi_remove_target -EXPORT_SYMBOL vmlinux 0x585d2c92 netif_device_attach EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x588c852a blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x58935f79 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x5897b350 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x589df66b __f_setown EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58aeba3e skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x58af4f88 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b6d616 dev_remove_offload EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard EXPORT_SYMBOL vmlinux 0x58be1039 filp_open EXPORT_SYMBOL vmlinux 0x58c0a0bb mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x58c0e884 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58ceea4b netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x58d42789 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x58d50bb6 sock_alloc_file EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x58e182b8 tcp_make_synack EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0x58eb96ec md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x58f4acdb __dev_get_by_name EXPORT_SYMBOL vmlinux 0x590f5e6a input_grab_device -EXPORT_SYMBOL vmlinux 0x591358d0 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x59180df0 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x591b9a2c pci_remove_bus EXPORT_SYMBOL vmlinux 0x591df6fe __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x591f6976 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x593cd673 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x593f4c34 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x59563a50 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x595a67bb iterate_dir EXPORT_SYMBOL vmlinux 0x595a88a4 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x595a89fa rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x595ba33e block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x595cde3f import_single_range -EXPORT_SYMBOL vmlinux 0x59616aef phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x596e5f05 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x5981de1c md_error +EXPORT_SYMBOL vmlinux 0x5985d91b tcf_generic_walker EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table EXPORT_SYMBOL vmlinux 0x599a17f4 block_truncate_page EXPORT_SYMBOL vmlinux 0x59a6c8e0 inode_needs_sync EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59bf808c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x59bf78ed sk_reset_timer +EXPORT_SYMBOL vmlinux 0x59cf8816 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x59d0449c set_disk_ro -EXPORT_SYMBOL vmlinux 0x59d1e55d xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x59d803d2 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x59e9f7cc bdi_alloc +EXPORT_SYMBOL vmlinux 0x59f1e75a fget_raw EXPORT_SYMBOL vmlinux 0x59f3ba64 register_framebuffer -EXPORT_SYMBOL vmlinux 0x5a070a59 dev_add_offload EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a107fdf skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer -EXPORT_SYMBOL vmlinux 0x5a1e8623 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x5a14da85 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x5a2d19d4 __devm_request_region EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a4dfc16 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x5a4e9359 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x5a630934 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x5a690528 proc_remove -EXPORT_SYMBOL vmlinux 0x5a6d1943 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x5a7621db tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x5a98539f shmem_aops EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9e4bf8 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x5aa37fdf phy_get_pause EXPORT_SYMBOL vmlinux 0x5ab4c7f5 kmalloc_trace EXPORT_SYMBOL vmlinux 0x5ad24548 d_rehash -EXPORT_SYMBOL vmlinux 0x5ad5c38b qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree EXPORT_SYMBOL vmlinux 0x5ae23ac6 pcim_iomap EXPORT_SYMBOL vmlinux 0x5ae2c44d is_bad_inode EXPORT_SYMBOL vmlinux 0x5aebd787 __quota_error EXPORT_SYMBOL vmlinux 0x5afcf745 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x5affe688 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x5b041598 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x5b1b961d free_buffer_head EXPORT_SYMBOL vmlinux 0x5b27e2d1 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x5b3622ad skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x5b3e624e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x5b496dc3 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x5b49f567 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x5b58cda1 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load +EXPORT_SYMBOL vmlinux 0x5b767a42 inet_add_protocol EXPORT_SYMBOL vmlinux 0x5b95f487 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x5bb0ae68 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x5bbba74d simple_empty -EXPORT_SYMBOL vmlinux 0x5bbf2411 sock_wmalloc EXPORT_SYMBOL vmlinux 0x5bca5b7e get_tree_single_reconf 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 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf2f43e dev_set_mac_address EXPORT_SYMBOL vmlinux 0x5bf37bff jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x5c17027d nf_setsockopt EXPORT_SYMBOL vmlinux 0x5c207f71 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x5c2b3f00 inet_csk_accept EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c745e3f scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x5c77bbc9 may_setattr -EXPORT_SYMBOL vmlinux 0x5c8cd775 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x5ca52072 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x5cb4090a raw3270_request_set_cmd EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done -EXPORT_SYMBOL vmlinux 0x5cf1b5bc __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x5cf1cfd7 noop_qdisc +EXPORT_SYMBOL vmlinux 0x5cd848bb inet_sk_set_state EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cf58bb6 seq_open -EXPORT_SYMBOL vmlinux 0x5cf59bc6 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x5d15a42d dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x5d102037 netdev_alert +EXPORT_SYMBOL vmlinux 0x5d10367b neigh_changeaddr EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x5d2013d5 __skb_pad -EXPORT_SYMBOL vmlinux 0x5d420cb0 security_sb_remount EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d6c7a66 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x5d67319f netif_device_detach EXPORT_SYMBOL vmlinux 0x5d743736 blk_mq_start_request EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad EXPORT_SYMBOL vmlinux 0x5d9f8b57 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x5da23a9f fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x5da84b31 unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x5da8c6f4 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x5db87e3d __module_get -EXPORT_SYMBOL vmlinux 0x5dd8355f napi_gro_frags -EXPORT_SYMBOL vmlinux 0x5dd8d2b2 ethtool_notify EXPORT_SYMBOL vmlinux 0x5de02f12 debug_sprintf_view EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq EXPORT_SYMBOL vmlinux 0x5df86ab0 sg_miter_start @@ -4245,58 +4207,61 @@ EXPORT_SYMBOL vmlinux 0x5e023431 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send -EXPORT_SYMBOL vmlinux 0x5e2571bf sock_no_getname EXPORT_SYMBOL vmlinux 0x5e26b040 fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe EXPORT_SYMBOL vmlinux 0x5e418d14 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5e43d24c ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x5e616bd1 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x5e756302 param_ops_bool EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry -EXPORT_SYMBOL vmlinux 0x5eb6a99e xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x5ebf4292 km_report +EXPORT_SYMBOL vmlinux 0x5ec2a075 skb_expand_head +EXPORT_SYMBOL vmlinux 0x5ec3b4a5 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec59774 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0a7a4 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x5ed28dd5 fs_lookup_param EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edcefe9 phy_start EXPORT_SYMBOL vmlinux 0x5ee4a36d dquot_drop EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5f06f56a _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x5f074abe nf_register_net_hook EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters EXPORT_SYMBOL vmlinux 0x5f11c748 nmi_panic EXPORT_SYMBOL vmlinux 0x5f14393b fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x5f1489f6 build_skb_around +EXPORT_SYMBOL vmlinux 0x5f14dff6 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x5f15b032 dquot_acquire EXPORT_SYMBOL vmlinux 0x5f1ad8a0 inode_init_always EXPORT_SYMBOL vmlinux 0x5f1be2c9 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f30688a phy_stop +EXPORT_SYMBOL vmlinux 0x5f31451a tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x5f38af90 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x5f508cb1 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x5f423f5a seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x5f52c5fb sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f662d94 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x5f6c133d jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x5f83daab peernet2id +EXPORT_SYMBOL vmlinux 0x5f7b0675 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x5f966931 vfs_llseek EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring EXPORT_SYMBOL vmlinux 0x5fa124d2 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x5fb7363b skb_append EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr EXPORT_SYMBOL vmlinux 0x5fd403c6 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5fdab913 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x5ff4d0f5 put_cmsg +EXPORT_SYMBOL vmlinux 0x6004d870 arp_tbl EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f09a6 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602596b6 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0x602637cf jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x602a7904 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x602dc33b tcp_prot EXPORT_SYMBOL vmlinux 0x6032ca1c free_inode_nonrcu EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60387080 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x604c9a65 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x605659a3 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x605e05a1 console_stop EXPORT_SYMBOL vmlinux 0x6069a167 nonseekable_open @@ -4308,12 +4273,12 @@ EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a4104a unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x60ab4c38 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x60bea0ab napi_schedule_prep EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x60df127a sock_from_file -EXPORT_SYMBOL vmlinux 0x60e4046a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x60e5ed66 init_net EXPORT_SYMBOL vmlinux 0x60f0eaee param_get_string -EXPORT_SYMBOL vmlinux 0x610372cc napi_get_frags +EXPORT_SYMBOL vmlinux 0x610727b5 sock_kmalloc EXPORT_SYMBOL vmlinux 0x6108288f complete_all EXPORT_SYMBOL vmlinux 0x6117c72e dqput EXPORT_SYMBOL vmlinux 0x611b5584 jbd2_journal_set_triggers @@ -4322,17 +4287,18 @@ EXPORT_SYMBOL vmlinux 0x61290f2d flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get EXPORT_SYMBOL vmlinux 0x61352f95 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x6139fae0 skb_dequeue EXPORT_SYMBOL vmlinux 0x613fdbfc remove_proc_entry -EXPORT_SYMBOL vmlinux 0x61438d70 __neigh_event_send EXPORT_SYMBOL vmlinux 0x6152760c fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x616cd71f dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x616dc7a7 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0x617090e1 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x617c2f66 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x6188e819 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x61aced75 ip6_xmit EXPORT_SYMBOL vmlinux 0x61b610d3 make_kgid EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c6368f netdev_update_features -EXPORT_SYMBOL vmlinux 0x61d59668 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x61d6002d scsi_remove_device EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61e71304 load_nls_default @@ -4341,55 +4307,54 @@ EXPORT_SYMBOL vmlinux 0x6206b93b iov_iter_alignment EXPORT_SYMBOL vmlinux 0x620773c4 xattr_full_name EXPORT_SYMBOL vmlinux 0x6219175e seq_putc -EXPORT_SYMBOL vmlinux 0x621fb54d bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x6219ef97 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x6222ae2a netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x623e9949 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x624e3314 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6256bf8a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x62688d6b kernel_accept EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627a5c21 tcp_splice_read EXPORT_SYMBOL vmlinux 0x627bc1c4 smp_ctl_set_clear_bit EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628d8f4e xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x629e5c77 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x62e060e9 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x62e4b100 ip_frag_init EXPORT_SYMBOL vmlinux 0x62f53a40 ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0x62fd9dfe dev_set_alias EXPORT_SYMBOL vmlinux 0x6302d945 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x6308cdcf __debug_sprintf_event EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x631c7df2 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x631c0a80 ping_prot EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x632df719 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x63356f6b phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x6335be2a mr_table_dump EXPORT_SYMBOL vmlinux 0x633eb4b1 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x636a9429 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x635044d9 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x636da711 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb -EXPORT_SYMBOL vmlinux 0x637c2f94 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a64df9 __SCK__tp_func_s390_cio_msch EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region EXPORT_SYMBOL vmlinux 0x63a93ae3 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x63aa50b2 tso_build_data EXPORT_SYMBOL vmlinux 0x63b2e3aa scsi_host_put EXPORT_SYMBOL vmlinux 0x63be6b19 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x63c971a0 starget_for_each_device EXPORT_SYMBOL vmlinux 0x63d0adb7 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x63dec3de unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x640e41c9 pci_iomap_wc EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6420a5e3 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x64249b4e build_skb +EXPORT_SYMBOL vmlinux 0x643554e9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x6447ef4d sk_mc_loop EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free EXPORT_SYMBOL vmlinux 0x6458f1e7 zstd_init_cstream -EXPORT_SYMBOL vmlinux 0x64782272 skb_checksum EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a13f60 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64b21807 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x64b55719 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x64bd9e90 tcp_filter +EXPORT_SYMBOL vmlinux 0x64cabedb tcp_ioctl +EXPORT_SYMBOL vmlinux 0x64d5294b rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0x64d76bfb stop_tty EXPORT_SYMBOL vmlinux 0x64df4c3f pcie_get_mps EXPORT_SYMBOL vmlinux 0x6504b28e tty_chars_in_buffer @@ -4398,119 +4363,125 @@ EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652199d0 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x652c6978 kernel_accept EXPORT_SYMBOL vmlinux 0x652c9cd8 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65427714 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x655cd4a5 blk_get_queue EXPORT_SYMBOL vmlinux 0x655fea22 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x656cbd4f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x657bbd54 phy_start_aneg EXPORT_SYMBOL vmlinux 0x657f5d1e disk_stack_limits EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a25626 netdev_printk +EXPORT_SYMBOL vmlinux 0x65a7e340 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x65bc2df0 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65ffe43d xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x66027704 mtree_store EXPORT_SYMBOL vmlinux 0x660a94a3 param_set_ullong +EXPORT_SYMBOL vmlinux 0x66225446 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x6623f2e3 vmalloc_array +EXPORT_SYMBOL vmlinux 0x665b87ec phy_request_interrupt EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x66714857 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x66718184 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x6675caa2 unregister_nls -EXPORT_SYMBOL vmlinux 0x667c2c1d netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x6681d3b3 audit_log EXPORT_SYMBOL vmlinux 0x66900af1 dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args +EXPORT_SYMBOL vmlinux 0x66a8d4f6 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x66bcfcfa thaw_super +EXPORT_SYMBOL vmlinux 0x66d791bc neigh_xmit +EXPORT_SYMBOL vmlinux 0x66dbeae3 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x66dd22f0 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66eb17ef mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x66f6603d __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x66fe865b zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x673530a4 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x6736881f filemap_get_folios +EXPORT_SYMBOL vmlinux 0x67499b8c skb_pull EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67569ff3 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0x67694ec4 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x677206be xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x676e2048 proto_unregister EXPORT_SYMBOL vmlinux 0x677d983c tty_unregister_driver EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x678ec34d inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x679723b4 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x679ed18f pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0x67aa4e39 input_setup_polling EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c8db47 skb_tx_error +EXPORT_SYMBOL vmlinux 0x67c74e8a tcf_exts_validate EXPORT_SYMBOL vmlinux 0x67ce597c unregister_sysctl_table EXPORT_SYMBOL vmlinux 0x67d36f2c dcache_readdir EXPORT_SYMBOL vmlinux 0x67db76d1 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x67dee23c tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x67efd207 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x67facf80 __seq_open_private -EXPORT_SYMBOL vmlinux 0x680bd54c rt_dst_clone EXPORT_SYMBOL vmlinux 0x681768dc locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x681f8514 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x683e5b1f blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x6846fbdb dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0x6870244d inet_put_port -EXPORT_SYMBOL vmlinux 0x687d6df9 kernel_bind +EXPORT_SYMBOL vmlinux 0x685a86e3 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x6889e2bd call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x68aacdf6 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x68c4a3d8 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x68c54ff4 km_new_mapping EXPORT_SYMBOL vmlinux 0x68c93b01 ccw_device_set_options_mask EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x68d31bf5 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x68d6ee52 register_filesystem -EXPORT_SYMBOL vmlinux 0x68d7e8af blk_sync_queue EXPORT_SYMBOL vmlinux 0x68e59fb6 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x6903d6b6 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x69097457 crc32_be EXPORT_SYMBOL vmlinux 0x690bf55f pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x690e33dd unload_nls EXPORT_SYMBOL vmlinux 0x690f9dfa hdmi_infoframe_unpack EXPORT_SYMBOL vmlinux 0x69194f66 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x69216765 __skb_ext_del EXPORT_SYMBOL vmlinux 0x692e18e3 node_data -EXPORT_SYMBOL vmlinux 0x69387d1b dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x6942f7cf tcp_read_done +EXPORT_SYMBOL vmlinux 0x693852e3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x69401fec __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x69604657 d_alloc_name EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971cd3f component_match_add_typed EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x69850830 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x697f8b8d xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x69954242 done_path_create +EXPORT_SYMBOL vmlinux 0x69cc4129 free_netdev EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0x69de46ec ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x69e17ec1 dump_skip_to EXPORT_SYMBOL vmlinux 0x69f80e50 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree EXPORT_SYMBOL vmlinux 0x6a080436 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x6a26f932 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x6a33def4 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6de2ed skb_ext_add EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a79b2f8 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x6a8d2c72 import_iovec EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa51e88 xp_free EXPORT_SYMBOL vmlinux 0x6aa69c54 ccw_device_clear EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs EXPORT_SYMBOL vmlinux 0x6ac60385 bmap +EXPORT_SYMBOL vmlinux 0x6ae1d77e fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x6ae24d58 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x6aeecdaa phy_stop EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af75d4a kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x6af89f11 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x6afc2fe8 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x6b08071e __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x6b1059bf setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x6b1a7dd1 pci_add_new_bus EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4d6756 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x6b39be7c sock_no_ioctl EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b6efae7 vlan_vid_add EXPORT_SYMBOL vmlinux 0x6b6fa046 block_page_mkwrite EXPORT_SYMBOL vmlinux 0x6b7b5561 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x6b825957 inet_put_port 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 @@ -4523,28 +4494,29 @@ EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c433cee proc_create_mount_point EXPORT_SYMBOL vmlinux 0x6c4f5ed0 kbd_ascebc -EXPORT_SYMBOL vmlinux 0x6c57187f inet_register_protosw EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c6e1173 param_get_ushort +EXPORT_SYMBOL vmlinux 0x6c6e7a62 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x6ca774a8 tty_unthrottle EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbf2c8b sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x6ccc34dd sort -EXPORT_SYMBOL vmlinux 0x6cd35a87 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x6cdff3f3 vm_map_ram EXPORT_SYMBOL vmlinux 0x6ce1aac5 fwnode_iomap EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc EXPORT_SYMBOL vmlinux 0x6cf397cc phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x6cf3d114 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x6d0c81f2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6d004b21 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x6d120e98 sock_alloc EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d29981a tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x6d385aea netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x6d652056 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8cb4bf dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x6d9ad473 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x6daef55e netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x6dafc927 seq_read EXPORT_SYMBOL vmlinux 0x6dba2552 cdrom_open EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end @@ -4554,29 +4526,29 @@ EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6ddc64e2 __scsi_add_device EXPORT_SYMBOL vmlinux 0x6de0a5d0 padata_free_shell -EXPORT_SYMBOL vmlinux 0x6de183c4 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x6de55cb4 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x6de964b8 block_commit_write EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6df89914 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e202208 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x6e230ec4 remap_pfn_range EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait -EXPORT_SYMBOL vmlinux 0x6e3d4d25 netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x6e5ea5c8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x6e4c1e2a netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x6e7161d6 generic_file_open EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock EXPORT_SYMBOL vmlinux 0x6e8b055f copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6e8fc7c0 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ecce2af sk_stream_error +EXPORT_SYMBOL vmlinux 0x6ece86ef bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x6ecf85c3 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x6ed018e2 pmdp_xchg_lazy -EXPORT_SYMBOL vmlinux 0x6ed82b6b skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x6ed79078 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x6ef6e6ac pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node -EXPORT_SYMBOL vmlinux 0x6ef9db89 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x6efedca5 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6f04f88d nf_reinject EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock EXPORT_SYMBOL vmlinux 0x6f1e6e65 scsi_host_busy EXPORT_SYMBOL vmlinux 0x6f1fca37 alloc_anon_inode @@ -4586,55 +4558,57 @@ EXPORT_SYMBOL vmlinux 0x6f4c85cd always_delete_dentry EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv -EXPORT_SYMBOL vmlinux 0x6f640549 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x6f69fe4c xfrm_state_insert EXPORT_SYMBOL vmlinux 0x6f708002 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x6f70c568 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free -EXPORT_SYMBOL vmlinux 0x6f9cb129 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6f81a056 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x6f908f17 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x6faf5574 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb9bca1 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x6fc0c58d dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 EXPORT_SYMBOL vmlinux 0x6fef7667 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x6ff6d93e xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x6ff79e77 input_event EXPORT_SYMBOL vmlinux 0x6ff86ceb phy_suspend +EXPORT_SYMBOL vmlinux 0x6ffb546b netdev_name_in_use EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x70007ead tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x701557d0 has_capability_noaudit EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark -EXPORT_SYMBOL vmlinux 0x703c8d8d xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x70496206 debug_register EXPORT_SYMBOL vmlinux 0x7049bcba config_item_put EXPORT_SYMBOL vmlinux 0x70697bec try_lookup_one_len EXPORT_SYMBOL vmlinux 0x707ad237 dev_driver_string EXPORT_SYMBOL vmlinux 0x708dd6bb pci_irq_vector +EXPORT_SYMBOL vmlinux 0x708f0430 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0x70a38fa1 set_cached_acl +EXPORT_SYMBOL vmlinux 0x70b62e01 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x70bcf7fb __generic_file_fsync EXPORT_SYMBOL vmlinux 0x70c13735 seq_vprintf -EXPORT_SYMBOL vmlinux 0x70e900cb __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x70f32600 dev_trans_start EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size -EXPORT_SYMBOL vmlinux 0x70f9b7ce sock_wfree EXPORT_SYMBOL vmlinux 0x70fceb68 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x710a838b dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x711dd9e5 ccw_device_start_timeout EXPORT_SYMBOL vmlinux 0x711e1491 ap_perms +EXPORT_SYMBOL vmlinux 0x711efed5 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x7153af08 inet6_release EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7166e8bf eth_header_cache_update EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717eed85 sock_register EXPORT_SYMBOL vmlinux 0x71932e64 ccw_device_tm_start EXPORT_SYMBOL vmlinux 0x7198d2c1 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x719a8641 d_lookup +EXPORT_SYMBOL vmlinux 0x719ba8af netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x719cf6fa sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy EXPORT_SYMBOL vmlinux 0x71bdd5cc init_special_inode -EXPORT_SYMBOL vmlinux 0x71bfe3dc inet_listen -EXPORT_SYMBOL vmlinux 0x71c21101 sock_set_mark -EXPORT_SYMBOL vmlinux 0x71c34b4e xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x71ebcff8 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x71bff22b skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x71cbf46c __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x71dc4e65 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x71fdd410 __free_pages EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev EXPORT_SYMBOL vmlinux 0x7223ca4f param_set_copystring @@ -4642,65 +4616,69 @@ EXPORT_SYMBOL vmlinux 0x723620a7 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x723af4d0 locks_delete_block EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x72444780 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x72460659 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7279a5cc neigh_resolve_output EXPORT_SYMBOL vmlinux 0x727f40e7 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x72aee47e ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x72af8ee2 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn EXPORT_SYMBOL vmlinux 0x72bff4ee debug_exception_common EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ec580b inet_stream_connect +EXPORT_SYMBOL vmlinux 0x72f39686 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x72fad567 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x730146b2 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv EXPORT_SYMBOL vmlinux 0x73286f15 security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0x732dd326 groups_free EXPORT_SYMBOL vmlinux 0x7355e0e0 irq_set_chip -EXPORT_SYMBOL vmlinux 0x735a21ee netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x735d9264 register_qdisc EXPORT_SYMBOL vmlinux 0x73668190 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7382ea0a sock_i_ino EXPORT_SYMBOL vmlinux 0x7389706a __memset16 -EXPORT_SYMBOL vmlinux 0x73932477 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x73968218 pci_get_device EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73b6f2f1 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x73b82ad7 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73cd60b7 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x73d0ef6f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x73f81ba8 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x7403d72b phy_disconnect EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7413bf76 netlink_set_err -EXPORT_SYMBOL vmlinux 0x741af036 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x7452bec7 blk_integrity_register EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init +EXPORT_SYMBOL vmlinux 0x747c8434 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x747c936b __SetPageMovable EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74b4e420 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x74bb6f48 xfrm_state_update EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74d66f26 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x74d7e09e put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x74ccf3d9 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x74d543a5 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x74dee1bd ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x74dd4cc3 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x74e4e172 phy_register_fixup EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74f28025 pci_disable_link_state EXPORT_SYMBOL vmlinux 0x74f6e599 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x74f9ad0b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x74fc53f1 phy_aneg_done EXPORT_SYMBOL vmlinux 0x7502b522 module_put EXPORT_SYMBOL vmlinux 0x750d83f2 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x7520ad5f module_refcount EXPORT_SYMBOL vmlinux 0x752fe74c phy_find_first +EXPORT_SYMBOL vmlinux 0x754f35a1 __scm_send EXPORT_SYMBOL vmlinux 0x7557e1e3 mpage_writepages -EXPORT_SYMBOL vmlinux 0x755efa9b xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x757d52a6 security_unix_may_send EXPORT_SYMBOL vmlinux 0x758034ee inode_insert5 EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 EXPORT_SYMBOL vmlinux 0x759caf07 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x759dd32b qdisc_put +EXPORT_SYMBOL vmlinux 0x759e1c86 __scm_destroy EXPORT_SYMBOL vmlinux 0x75a62797 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x75b8e725 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 @@ -4708,110 +4686,127 @@ EXPORT_SYMBOL vmlinux 0x75d61ac5 folio_add_lru EXPORT_SYMBOL vmlinux 0x75da027b single_open EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760a3050 neigh_event_ns EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x761d6a4d con_is_bound +EXPORT_SYMBOL vmlinux 0x761e1acc tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7662898f scm_detach_fds EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x7696a7f7 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x769e6add km_policy_expired EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a1cc2e sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x76aca479 dqget -EXPORT_SYMBOL vmlinux 0x76cd7735 udp_disconnect +EXPORT_SYMBOL vmlinux 0x76d13553 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x76d28045 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76f8821c tcp_splice_read +EXPORT_SYMBOL vmlinux 0x76e9b3f3 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x770ad58f seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773cf44c xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x774b1c71 tty_port_hangup EXPORT_SYMBOL vmlinux 0x7765e0e9 bio_uninit +EXPORT_SYMBOL vmlinux 0x77702052 inet_frags_init EXPORT_SYMBOL vmlinux 0x7777f69f irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x777b8660 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x77817886 dquot_resume EXPORT_SYMBOL vmlinux 0x778f9c3d current_time EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cf1844 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x77d12289 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x77d5229f vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f07ce8 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x77fbe237 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x77ff9e06 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0x78051ee9 pcim_iomap_table EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x781ee9fe sock_no_accept -EXPORT_SYMBOL vmlinux 0x78215ab5 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x7838ed37 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x783a729b filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range EXPORT_SYMBOL vmlinux 0x78609a4e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x786f3d92 skb_tx_error +EXPORT_SYMBOL vmlinux 0x78988db2 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x789e2898 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78dc677f vlan_vid_add EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices EXPORT_SYMBOL vmlinux 0x78effe53 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x791b05c2 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x793fee70 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x78f2064c task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x78ffbffc tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x79196a80 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x792b9406 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x795448f2 input_set_timestamp EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked EXPORT_SYMBOL vmlinux 0x797f1e3c registered_fb EXPORT_SYMBOL vmlinux 0x79809ec6 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0x79816357 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x79b3ebfd netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x79910c58 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable EXPORT_SYMBOL vmlinux 0x7a1a70d9 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a1d8056 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x7a2bbe1e debug_unregister_view -EXPORT_SYMBOL vmlinux 0x7a2d6348 dev_activate EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj EXPORT_SYMBOL vmlinux 0x7a386438 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x7a3e0a61 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x7a3f376b tcp_sync_mss EXPORT_SYMBOL vmlinux 0x7a42bcd9 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x7a452997 dev_set_alias EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a6de8bd __icmp_send +EXPORT_SYMBOL vmlinux 0x7a6e6645 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7a753cf0 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a989205 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree EXPORT_SYMBOL vmlinux 0x7aaa5b4d __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7aba289e qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x7abea743 kill_fasync +EXPORT_SYMBOL vmlinux 0x7ac8393e __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad34825 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x7ad504ad pci_claim_resource EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7b03b139 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7add148e tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7af1304c __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x7b133891 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x7b18dafd __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0x7b1ac3dc deactivate_super EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b3e3ed7 inode_dio_wait EXPORT_SYMBOL vmlinux 0x7b43dd1a iov_iter_init -EXPORT_SYMBOL vmlinux 0x7b4b4a34 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7b52e4a5 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x7b5502ba pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7ba02f34 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x7ba41ff3 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7b77a3c9 dcb_getapp EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain +EXPORT_SYMBOL vmlinux 0x7be5991b kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x7bfab60e tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement EXPORT_SYMBOL vmlinux 0x7c23fc29 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x7c27f73b dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x7c3b1952 d_tmpfile EXPORT_SYMBOL vmlinux 0x7c3b799d fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x7c3f2a51 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x7c43aee2 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7c444cb1 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c648329 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7c87c5d0 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x7c8c1f05 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7caa0d59 mntput -EXPORT_SYMBOL vmlinux 0x7cb3e951 nf_log_unregister EXPORT_SYMBOL vmlinux 0x7cb523c6 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7cc2ead5 udp_prot EXPORT_SYMBOL vmlinux 0x7cca7fa1 adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7cea8c44 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x7cf8ca93 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation EXPORT_SYMBOL vmlinux 0x7d00f1aa __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t @@ -4819,66 +4814,62 @@ EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg EXPORT_SYMBOL vmlinux 0x7d328fdc pcie_print_link_status EXPORT_SYMBOL vmlinux 0x7d3c1585 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x7d3ccb0b security_path_unlink -EXPORT_SYMBOL vmlinux 0x7d3eb2ca __scm_send EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node EXPORT_SYMBOL vmlinux 0x7d84bff8 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x7d956674 cdev_add -EXPORT_SYMBOL vmlinux 0x7d9d9fe5 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x7da56b4c inet_frag_kill EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7daf08c1 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x7db28b69 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dc95793 proc_set_user EXPORT_SYMBOL vmlinux 0x7dd9aa98 d_alloc -EXPORT_SYMBOL vmlinux 0x7deae571 udp_poll +EXPORT_SYMBOL vmlinux 0x7de7f248 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init EXPORT_SYMBOL vmlinux 0x7df2c4ca filemap_check_errors -EXPORT_SYMBOL vmlinux 0x7df5312c tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x7e02caa9 kernel_getsockname EXPORT_SYMBOL vmlinux 0x7e0dd50f fs_param_is_enum EXPORT_SYMBOL vmlinux 0x7e105269 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x7e16e6ec __register_nls -EXPORT_SYMBOL vmlinux 0x7e17689c xp_raw_get_data EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e352c6a netdev_alert -EXPORT_SYMBOL vmlinux 0x7e39e317 sk_stop_timer EXPORT_SYMBOL vmlinux 0x7e497546 set_pgste_bits +EXPORT_SYMBOL vmlinux 0x7e4f3292 netdev_err EXPORT_SYMBOL vmlinux 0x7e61c6c3 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x7e63c4ba neigh_resolve_output EXPORT_SYMBOL vmlinux 0x7e6f6753 devm_ioremap EXPORT_SYMBOL vmlinux 0x7e71ec2b dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x7e80260c nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt -EXPORT_SYMBOL vmlinux 0x7eb23fbc ip6_frag_next -EXPORT_SYMBOL vmlinux 0x7ebc821e xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x7ed701b8 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7e9324ce xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x7ed35c04 iterate_fd +EXPORT_SYMBOL vmlinux 0x7edca89c ip_frag_next EXPORT_SYMBOL vmlinux 0x7ef76098 buffer_migrate_folio EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f05e95e __mdiobus_read -EXPORT_SYMBOL vmlinux 0x7f1da75f call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7f2047c0 kernel_getpeername EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2c376e skb_append EXPORT_SYMBOL vmlinux 0x7f372871 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue EXPORT_SYMBOL vmlinux 0x7f506e7b generic_file_llseek EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f7349e3 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x7f5dbd9a napi_consume_skb +EXPORT_SYMBOL vmlinux 0x7f772a22 inet_bind EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable EXPORT_SYMBOL vmlinux 0x7f801c54 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7f90b9d7 eth_get_headlen EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0x7fa1bfd4 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x7fac4642 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x7fc121bb md_update_sb -EXPORT_SYMBOL vmlinux 0x7fcfa338 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x7fcbde13 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x7fd96f37 __d_drop +EXPORT_SYMBOL vmlinux 0x7fdd5c94 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x800eee9b ndisc_mc_map EXPORT_SYMBOL vmlinux 0x801b6948 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x801e0739 __udp_disconnect EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8040d0ec skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x80454b45 bio_kmalloc EXPORT_SYMBOL vmlinux 0x8047e1bd simple_release_fs EXPORT_SYMBOL vmlinux 0x804b78ab jbd2_journal_begin_ordered_truncate @@ -4889,38 +4880,37 @@ EXPORT_SYMBOL vmlinux 0x80548a30 param_ops_invbool EXPORT_SYMBOL vmlinux 0x805a770b pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb -EXPORT_SYMBOL vmlinux 0x80753e45 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq EXPORT_SYMBOL vmlinux 0x80937614 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x809baf1e free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x80b17cec tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x80b211ed __skb_gso_segment EXPORT_SYMBOL vmlinux 0x80b2cc84 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x80b6b1bd __alloc_skb EXPORT_SYMBOL vmlinux 0x80b9fde5 iov_iter_revert EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d24b9b misc_deregister EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer EXPORT_SYMBOL vmlinux 0x80e29ea7 genphy_update_link +EXPORT_SYMBOL vmlinux 0x80e448c3 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80e71c1e inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x80fdfe0a sock_efree EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81164daa __SCK__tp_func_s390_cio_rsch EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update -EXPORT_SYMBOL vmlinux 0x8137930d __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x814ebbfb vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x815035f6 tcp_req_err EXPORT_SYMBOL vmlinux 0x81573947 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8175618a zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x8175c5ed insert_inode_locked -EXPORT_SYMBOL vmlinux 0x8182429f __dev_get_by_name EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user +EXPORT_SYMBOL vmlinux 0x81852a6a netif_schedule_queue EXPORT_SYMBOL vmlinux 0x818ba04f fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node -EXPORT_SYMBOL vmlinux 0x81af3f27 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x81b42940 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x81b433f2 down EXPORT_SYMBOL vmlinux 0x81baab1a t10_pi_type1_crc @@ -4928,67 +4918,81 @@ EXPORT_SYMBOL vmlinux 0x81cd66ee blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e0037c __bh_read_batch +EXPORT_SYMBOL vmlinux 0x81f720e9 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x820d462f ndisc_ns_create EXPORT_SYMBOL vmlinux 0x821c8e2b pci_disable_device EXPORT_SYMBOL vmlinux 0x821e642c md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x8233a1c9 tcp_connect EXPORT_SYMBOL vmlinux 0x823a3a4d unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x82489f2e mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x824b3d03 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x82509e05 invalidate_bdev EXPORT_SYMBOL vmlinux 0x825e9b9e seq_lseek -EXPORT_SYMBOL vmlinux 0x826c235f tcp_parse_options EXPORT_SYMBOL vmlinux 0x8277d78b __devm_release_region +EXPORT_SYMBOL vmlinux 0x8278fff7 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x82929215 __destroy_inode +EXPORT_SYMBOL vmlinux 0x82974777 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x82997d55 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x82b54d49 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x82be3291 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0x82c78419 dev_trans_start EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cf9aaf nf_hook_slow EXPORT_SYMBOL vmlinux 0x82e46b12 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x82e53249 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync EXPORT_SYMBOL vmlinux 0x83044102 dump_page -EXPORT_SYMBOL vmlinux 0x831b79ed arp_xmit -EXPORT_SYMBOL vmlinux 0x8327b111 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x83249193 nf_log_set +EXPORT_SYMBOL vmlinux 0x8334f36e km_policy_notify EXPORT_SYMBOL vmlinux 0x833eabba input_free_device EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x835541b9 xsk_tx_release EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle EXPORT_SYMBOL vmlinux 0x836de67e request_firmware EXPORT_SYMBOL vmlinux 0x836ff179 __scsi_execute -EXPORT_SYMBOL vmlinux 0x83836856 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x83736c02 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x838bcb46 dev_set_threaded EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x83c06f56 netdev_info EXPORT_SYMBOL vmlinux 0x83ccdc07 param_get_int EXPORT_SYMBOL vmlinux 0x83e19bdd pgste_perform_essa EXPORT_SYMBOL vmlinux 0x83f802c0 phy_attached_info EXPORT_SYMBOL vmlinux 0x83f995d9 key_validate -EXPORT_SYMBOL vmlinux 0x8401d4e6 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free EXPORT_SYMBOL vmlinux 0x841cc2f6 dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x843d9b6f dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x845048fe kmem_cache_create EXPORT_SYMBOL vmlinux 0x8467bbef touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x847161d1 skb_copy EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x849b92d4 reuseport_alloc EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node EXPORT_SYMBOL vmlinux 0x84b90b82 fb_show_logo -EXPORT_SYMBOL vmlinux 0x84c68fb4 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x84d32796 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 +EXPORT_SYMBOL vmlinux 0x84d8ced1 sock_set_priority EXPORT_SYMBOL vmlinux 0x84dd159c dm_io +EXPORT_SYMBOL vmlinux 0x84e27ab5 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x84f36901 block_write_begin EXPORT_SYMBOL vmlinux 0x84f56b46 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x8534c152 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x85040709 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x854d4e83 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked EXPORT_SYMBOL vmlinux 0x856d6dc4 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8570ab4a inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x8585eb69 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x85a39890 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85adb4e3 skb_eth_pop EXPORT_SYMBOL vmlinux 0x85b4c625 dput +EXPORT_SYMBOL vmlinux 0x85bae55c inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d04107 xp_free EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x85d2560d vfs_link +EXPORT_SYMBOL vmlinux 0x85d45cf6 brioctl_set EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85e75254 generic_write_end EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f51434 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x85f804f2 md_integrity_register +EXPORT_SYMBOL vmlinux 0x860455b3 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock EXPORT_SYMBOL vmlinux 0x861461cc keyring_alloc EXPORT_SYMBOL vmlinux 0x861d9125 vm_insert_page @@ -4997,21 +5001,25 @@ EXPORT_SYMBOL vmlinux 0x863055ee scsi_scan_target EXPORT_SYMBOL vmlinux 0x86372848 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863c9c5c dev_lstats_read +EXPORT_SYMBOL vmlinux 0x863b44dc phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x863ffb19 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x8647a6e3 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x8658eff3 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x865b5542 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x866210bb tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes -EXPORT_SYMBOL vmlinux 0x867f6de3 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x867edc5c nf_reinject EXPORT_SYMBOL vmlinux 0x868acba5 get_options EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock EXPORT_SYMBOL vmlinux 0x869b7c2f phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x869e27ae napi_gro_frags EXPORT_SYMBOL vmlinux 0x86a34793 _copy_to_user_key EXPORT_SYMBOL vmlinux 0x86a4790b input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x86a7bcb0 pci_write_vpd EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock EXPORT_SYMBOL vmlinux 0x86adcf6d __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x86adf87a xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x86b93418 pci_dev_driver EXPORT_SYMBOL vmlinux 0x86bc3909 pci_save_state EXPORT_SYMBOL vmlinux 0x86bdbe46 __tracepoint_s390_cio_chsc @@ -5019,46 +5027,50 @@ EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dc25d8 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x86dd1029 pskb_expand_head EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable EXPORT_SYMBOL vmlinux 0x86f40d24 file_modified EXPORT_SYMBOL vmlinux 0x86fa6b03 iget_locked EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user EXPORT_SYMBOL vmlinux 0x871799a1 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x8736c6ca mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x872ee2d3 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x87480643 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x874ed7fb ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq EXPORT_SYMBOL vmlinux 0x8792470c ap_send_online_uevent -EXPORT_SYMBOL vmlinux 0x8797a32a skb_recv_datagram EXPORT_SYMBOL vmlinux 0x87985e25 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x879bdb67 component_match_add_release EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b33ed2 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x87b7cf12 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87d6bb5b udp_gro_receive EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin -EXPORT_SYMBOL vmlinux 0x880a1eb5 ip_options_compile EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8825c1b0 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x8827f90c pci_bus_type +EXPORT_SYMBOL vmlinux 0x882e7df3 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0x88527786 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x885a440f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x88679658 peernet2id EXPORT_SYMBOL vmlinux 0x88721b7e device_add_disk EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8882a23e inode_nohighmem EXPORT_SYMBOL vmlinux 0x88834296 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x888fa2e9 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x88999894 utf8_validate -EXPORT_SYMBOL vmlinux 0x88c8cfbb skb_vlan_untag EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each -EXPORT_SYMBOL vmlinux 0x88f0175d inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x88fe0959 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x890c1305 skb_condense EXPORT_SYMBOL vmlinux 0x8917975f jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x891c86ca dec_node_page_state +EXPORT_SYMBOL vmlinux 0x89399915 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x8950d838 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x895b5e8b fault_in_subpage_writeable EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x896f5a88 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x8984fc43 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x898b19cc utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x8999883d devm_register_netdev @@ -5067,11 +5079,13 @@ EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch EXPORT_SYMBOL vmlinux 0x89a920df phy_write_paged EXPORT_SYMBOL vmlinux 0x89ca2d73 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0x89d9e5d7 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x89ff1fbf xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x8a043365 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x8a1834b9 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x8a18e59a fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x8a1ffd4c unregister_qdisc EXPORT_SYMBOL vmlinux 0x8a2ba35e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8a2f6150 close_fd_get_file EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve EXPORT_SYMBOL vmlinux 0x8a4ce068 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x8a53dfff load_nls @@ -5079,129 +5093,113 @@ EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a868a41 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9b5820 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x8ac08cbd __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ad4f3bf stream_open EXPORT_SYMBOL vmlinux 0x8ad96211 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x8ae623c3 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x8affc595 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8ae6c2ea tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b0f61f7 register_netdevice EXPORT_SYMBOL vmlinux 0x8b3fa76f devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x8b56659e crypto_sha256_update EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b644f40 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x8b649625 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x8b6a1eef inet_sk_set_state EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b808e19 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x8b8e9044 pps_unregister_source EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b996d77 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x8bab396c fb_class -EXPORT_SYMBOL vmlinux 0x8bbcd0f2 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x8bcf1b6e sock_no_bind +EXPORT_SYMBOL vmlinux 0x8bd475d0 vlan_vid_del EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8bf1a143 sock_init_data -EXPORT_SYMBOL vmlinux 0x8c3727ed tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x8c3e9263 skb_trim -EXPORT_SYMBOL vmlinux 0x8c556217 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x8c5fa9f1 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x8c61dc14 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x8c126ec6 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x8c4010f4 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x8c7b14e4 file_ns_capable EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init EXPORT_SYMBOL vmlinux 0x8c8fcbc7 ap_driver_register -EXPORT_SYMBOL vmlinux 0x8c92f58d __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x8ca12504 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x8cc70f4d ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister -EXPORT_SYMBOL vmlinux 0x8ce60690 netdev_change_features +EXPORT_SYMBOL vmlinux 0x8ce2c530 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x8cef78c1 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x8cfcb0e4 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x8d052ed3 ccw_device_start_timeout_key EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace +EXPORT_SYMBOL vmlinux 0x8d178b7e udp_lib_rehash EXPORT_SYMBOL vmlinux 0x8d30b64d tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x8d33619b inet6_bind -EXPORT_SYMBOL vmlinux 0x8d3394a0 __skb_get_hash EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d402df8 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x8d45ad1e security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8d384ee9 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x8d3913ca security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d57ffd5 inet_del_protocol EXPORT_SYMBOL vmlinux 0x8d5de2d1 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x8d6f65bd tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8d638e9d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8d657df2 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d73d8e5 send_sig_mceerr EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8dc295c6 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8d81151d inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x8ddca5ab in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de01e9b sk_net_capable EXPORT_SYMBOL vmlinux 0x8ded8843 genphy_resume -EXPORT_SYMBOL vmlinux 0x8df11bf5 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0x8df4bae6 cont_write_begin EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfdadeb km_report EXPORT_SYMBOL vmlinux 0x8dffd6f8 blk_rq_init -EXPORT_SYMBOL vmlinux 0x8e06348d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8e140280 neigh_table_init EXPORT_SYMBOL vmlinux 0x8e1c5709 I_BDEV EXPORT_SYMBOL vmlinux 0x8e1dbd55 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x8e294bb0 netif_tx_unlock EXPORT_SYMBOL vmlinux 0x8e2b8f58 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8e359542 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x8e30f3b5 napi_gro_flush EXPORT_SYMBOL vmlinux 0x8e4424c3 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x8e55b41d blk_get_queue -EXPORT_SYMBOL vmlinux 0x8e55e525 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x8e6ac78e udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x8e88bf1e inet_sendmsg EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid EXPORT_SYMBOL vmlinux 0x8e9ed9f4 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x8ec5790f sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x8ec00793 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed8742b skb_queue_head -EXPORT_SYMBOL vmlinux 0x8ef22757 pid_task -EXPORT_SYMBOL vmlinux 0x8f0a0e13 napi_build_skb -EXPORT_SYMBOL vmlinux 0x8f17c574 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x8f2e8039 zstd_find_frame_compressed_size EXPORT_SYMBOL vmlinux 0x8f402e11 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x8f4356ab udpv6_sendmsg EXPORT_SYMBOL vmlinux 0x8f445509 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x8f569133 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x8f5c975d wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x8f627244 ether_setup EXPORT_SYMBOL vmlinux 0x8f74b1f5 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x8f7537b5 pcim_iounmap EXPORT_SYMBOL vmlinux 0x8f763db5 del_gendisk EXPORT_SYMBOL vmlinux 0x8f77fe3c set_user_nice EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f99f8fa register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x8faa5b1b blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x8fc8ff7a d_find_any_alias -EXPORT_SYMBOL vmlinux 0x8fca0e7f xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x8fceff91 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x8fd0849b utf8_normalize -EXPORT_SYMBOL vmlinux 0x8fe81569 register_netdev +EXPORT_SYMBOL vmlinux 0x8fd9cc82 submit_bio EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x8ffffe1f device_match_acpi_handle EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900d5970 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x902089c6 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x902cd854 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x905254d9 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x905d7aa5 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x906deb2f skb_find_text +EXPORT_SYMBOL vmlinux 0x902ce042 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x907faabf zstd_compress_stream EXPORT_SYMBOL vmlinux 0x9082deb8 sget_fc +EXPORT_SYMBOL vmlinux 0x90974e36 sock_no_mmap EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0x90ae3b1b prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90c03d31 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x90d4e6ed netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x90f398c2 dev_set_threaded EXPORT_SYMBOL vmlinux 0x91023969 set_create_files_as EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs EXPORT_SYMBOL vmlinux 0x912c7f8c get_pgste EXPORT_SYMBOL vmlinux 0x913c60ec devm_memunmap +EXPORT_SYMBOL vmlinux 0x9158a8f0 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x917098bb rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x91834212 sock_i_ino EXPORT_SYMBOL vmlinux 0x91905535 key_unlink EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x919e2af2 inode_add_bytes @@ -5211,9 +5209,12 @@ EXPORT_SYMBOL vmlinux 0x91c6d1fe blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x91db2458 pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x91e72b19 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x91f3547c sock_no_sendpage EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91f87bbb qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x91faa9f7 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x9202552d mdio_bus_type +EXPORT_SYMBOL vmlinux 0x92039b05 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x920af677 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x9244d6b8 configfs_remove_default_groups @@ -5224,152 +5225,129 @@ EXPORT_SYMBOL vmlinux 0x9280bb03 mount_single EXPORT_SYMBOL vmlinux 0x92997ed8 _printk EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get -EXPORT_SYMBOL vmlinux 0x92d55d02 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x92bcc694 ethtool_notify EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0x92d906d9 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x92ea6378 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x92eaa345 generic_perform_write EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92ece24e textsearch_destroy +EXPORT_SYMBOL vmlinux 0x92f771b0 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x930261dc scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x9311f89d netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x934907ac tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x9355c73d jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x93572ab7 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x93655b77 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid EXPORT_SYMBOL vmlinux 0x9378575a dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x939161be ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x93799d33 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x9396da06 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x93ce64ec scsi_dma_map -EXPORT_SYMBOL vmlinux 0x93f47a07 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x93fb703f xsk_tx_release -EXPORT_SYMBOL vmlinux 0x940f16e8 neigh_app_ns EXPORT_SYMBOL vmlinux 0x94121962 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x9412c582 bd_abort_claiming EXPORT_SYMBOL vmlinux 0x94138beb finish_no_open -EXPORT_SYMBOL vmlinux 0x94184f18 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x9425ceb0 tcp_connect EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject -EXPORT_SYMBOL vmlinux 0x94349d73 lock_sock_nested EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x945775a5 segment_save -EXPORT_SYMBOL vmlinux 0x946c4a4a __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x9473a1b6 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x947b82f4 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x947383f2 netpoll_print_options EXPORT_SYMBOL vmlinux 0x9488fe15 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x948a964a flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94afa211 netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x94b17acf genphy_read_status EXPORT_SYMBOL vmlinux 0x94be7520 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94c69c35 seq_printf -EXPORT_SYMBOL vmlinux 0x94c780b7 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x94d63326 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x94f4d5b2 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x94f57fd5 pipe_lock EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95082d6d udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x9512aa50 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept EXPORT_SYMBOL vmlinux 0x952ed32c __bforget EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x95360f89 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload EXPORT_SYMBOL vmlinux 0x956f4f4e pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x9598ae77 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x959def69 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x957248a0 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x957bdff4 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x9580dabd xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x95a96f47 ccw_device_set_online EXPORT_SYMBOL vmlinux 0x95aff8b4 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0x95b00c36 pcie_get_readrq EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x95bfd5f3 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x95ceb864 key_update EXPORT_SYMBOL vmlinux 0x95d81642 setattr_copy EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host -EXPORT_SYMBOL vmlinux 0x95f372c3 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x95f53e75 build_skb EXPORT_SYMBOL vmlinux 0x95fe801b page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x962701af xfrm_register_km -EXPORT_SYMBOL vmlinux 0x9627ca9b skb_put +EXPORT_SYMBOL vmlinux 0x95fe8fea sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x962d0e09 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x96361f5f ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x963dd837 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x963fac16 sk_ns_capable EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data -EXPORT_SYMBOL vmlinux 0x96491310 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x9660e41e udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x9666b212 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x96517c61 udp_set_csum EXPORT_SYMBOL vmlinux 0x967181f6 single_release EXPORT_SYMBOL vmlinux 0x9695e032 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x969b5d34 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1e26a rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x96d92cf7 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x96f59a80 dev_get_stats +EXPORT_SYMBOL vmlinux 0x96e1a541 skb_push +EXPORT_SYMBOL vmlinux 0x96eb2139 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96ff7f02 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x9705199a pid_task EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str EXPORT_SYMBOL vmlinux 0x972e65ca zero_fill_bio -EXPORT_SYMBOL vmlinux 0x972eb97c xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin +EXPORT_SYMBOL vmlinux 0x97582a55 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x9758c8c9 simple_unlink -EXPORT_SYMBOL vmlinux 0x9763e6b3 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x976907c6 udp_seq_start +EXPORT_SYMBOL vmlinux 0x976909cd inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x976c8673 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x9776c76d neigh_for_each EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat EXPORT_SYMBOL vmlinux 0x978f1787 generic_delete_inode EXPORT_SYMBOL vmlinux 0x979a85a0 md_finish_reshape EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97afba48 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x97b27255 skb_checksum_help EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list EXPORT_SYMBOL vmlinux 0x97c0e128 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x97ca6db5 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x97d36c53 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x97dd3612 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x97ee4cb9 bpf_map_get -EXPORT_SYMBOL vmlinux 0x98098205 inet_release +EXPORT_SYMBOL vmlinux 0x97f943de pskb_expand_head +EXPORT_SYMBOL vmlinux 0x97fd61f1 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x982b511c seq_escape_mem +EXPORT_SYMBOL vmlinux 0x983216a2 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x983d28e8 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x983e1604 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x98415967 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x98514cce eth_gro_complete EXPORT_SYMBOL vmlinux 0x9853a7ed nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x98543d9b pipe_unlock EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x985edd3a udp_seq_stop EXPORT_SYMBOL vmlinux 0x987bafb3 pci_clear_mwi EXPORT_SYMBOL vmlinux 0x98802ddd blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x9883c527 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x98996d89 put_watch_queue EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy -EXPORT_SYMBOL vmlinux 0x98ada5fd bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x98b1a5e2 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x98b863b3 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x98c0f942 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x98c4a586 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cdd492 __sk_dst_check EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf +EXPORT_SYMBOL vmlinux 0x98dfa515 vif_device_init EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e748bd security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x98ee0204 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x98efaa5c folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0x98f66ac2 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x9900761a zstd_dstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9911cfde wake_up_process -EXPORT_SYMBOL vmlinux 0x99409b6d netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x991fd5e7 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize EXPORT_SYMBOL vmlinux 0x994a29d5 cred_fscmp EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995e2ecb xp_dma_unmap EXPORT_SYMBOL vmlinux 0x996583dc scsi_partsize -EXPORT_SYMBOL vmlinux 0x99767a04 dev_get_mac_address EXPORT_SYMBOL vmlinux 0x998d88f5 path_is_under -EXPORT_SYMBOL vmlinux 0x9990264c netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b746a9 xp_can_alloc EXPORT_SYMBOL vmlinux 0x99bdb903 vfs_fsync_range EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation @@ -5382,41 +5360,46 @@ EXPORT_SYMBOL vmlinux 0x9a2e13d2 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x9a373e3a fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x9a3dbd5a _dev_crit -EXPORT_SYMBOL vmlinux 0x9a439481 consume_skb -EXPORT_SYMBOL vmlinux 0x9a4e6289 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr EXPORT_SYMBOL vmlinux 0x9a716ebe generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x9a76ba26 ___pskb_trim EXPORT_SYMBOL vmlinux 0x9a906daf memscan -EXPORT_SYMBOL vmlinux 0x9a919d05 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x9a9aa2c3 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x9aaae674 trace_event_printf EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac5ddde mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x9accf7af scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x9adb3189 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x9acd3d3d ip_setsockopt EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf +EXPORT_SYMBOL vmlinux 0x9ade5490 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x9adf5f46 mntget EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit EXPORT_SYMBOL vmlinux 0x9afce2fa config_item_get -EXPORT_SYMBOL vmlinux 0x9b051f6f reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x9afcecfd inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x9b010dcd sock_wake_async EXPORT_SYMBOL vmlinux 0x9b0959e2 key_task_permission +EXPORT_SYMBOL vmlinux 0x9b1f5539 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b42ef0f dfltcc_reset -EXPORT_SYMBOL vmlinux 0x9b4662a2 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x9b493a67 key_reject_and_link EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b59a6f7 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x9b61980b truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x9b882c73 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9b99db46 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x9b9e69ba unregister_cdrom -EXPORT_SYMBOL vmlinux 0x9ba6d255 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x9ba22304 release_sock EXPORT_SYMBOL vmlinux 0x9bc94568 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x9bda8c3b netdev_warn +EXPORT_SYMBOL vmlinux 0x9be2743a tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0x9be58d28 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x9c082410 sock_alloc EXPORT_SYMBOL vmlinux 0x9c1a781c proc_set_size +EXPORT_SYMBOL vmlinux 0x9c2645d7 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x9c2b7f41 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x9c3e663e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9c69dc04 security_sb_remount EXPORT_SYMBOL vmlinux 0x9c6c801f __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x9c7e15f2 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags @@ -5427,31 +5410,36 @@ EXPORT_SYMBOL vmlinux 0x9ce239ed cdev_device_add EXPORT_SYMBOL vmlinux 0x9ceb867b set_posix_acl EXPORT_SYMBOL vmlinux 0x9cf9840c rw_verify_area +EXPORT_SYMBOL vmlinux 0x9d08ed73 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d105966 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x9d17de1f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9d1b4904 reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view EXPORT_SYMBOL vmlinux 0x9d29e5cf bdi_put EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d3883da tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0x9d4bff44 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x9d4e5974 build_skb_around EXPORT_SYMBOL vmlinux 0x9d4fdc9b generic_key_instantiate EXPORT_SYMBOL vmlinux 0x9d4ff6ec from_kprojid_munged EXPORT_SYMBOL vmlinux 0x9d504963 set_anon_super_fc EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev EXPORT_SYMBOL vmlinux 0x9d6afab2 itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x9d7a1bb8 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9d6c55c3 tcf_exts_change EXPORT_SYMBOL vmlinux 0x9d7e4edd iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x9d90f87b nf_getsockopt EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0x9df35cb1 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e23c1d4 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x9e3ff368 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e6f8f8a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x9e7c40e5 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay EXPORT_SYMBOL vmlinux 0x9e7e3459 vm_map_pages EXPORT_SYMBOL vmlinux 0x9e9783e1 __tracepoint_s390_cio_ssch @@ -5459,25 +5447,21 @@ EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eaeb203 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x9eb14daf set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x9ebe2fd2 netlink_broadcast EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ee74fd2 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x9f0ac887 inet_frags_init +EXPORT_SYMBOL vmlinux 0x9ed8f96d sock_bind_add EXPORT_SYMBOL vmlinux 0x9f1e221f kmalloc_large -EXPORT_SYMBOL vmlinux 0x9f37fb43 ndisc_send_skb EXPORT_SYMBOL vmlinux 0x9f3c8a49 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x9f3e344b alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x9f401512 devm_memremap EXPORT_SYMBOL vmlinux 0x9f40c80e tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4d2791 d_genocide EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f5468ff nf_log_packet EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy EXPORT_SYMBOL vmlinux 0x9f7b6596 input_set_keycode EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9faafff7 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x9fad85b1 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x9fb17fa1 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta EXPORT_SYMBOL vmlinux 0x9fc79fe2 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many @@ -5485,21 +5469,16 @@ EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ff6c6de inode_update_time EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffde01d xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x9fff3e20 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xa00c856e xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa02878df __dec_node_page_state EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0372448 ip_local_deliver -EXPORT_SYMBOL vmlinux 0xa03d51cb netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes 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 0xa06e587a release_firmware -EXPORT_SYMBOL vmlinux 0xa0759065 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa0808293 add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or @@ -5508,99 +5487,101 @@ EXPORT_SYMBOL vmlinux 0xa0a26d2f jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b62f84 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0xa0c21476 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa0c6670d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa0c68cd7 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xa0c94c43 inet_sendpage EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize -EXPORT_SYMBOL vmlinux 0xa0d4681b tcp_disconnect EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dd89e9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xa0e3b879 security_sk_classify_flow 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 0xa0ff0e94 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa114ebff ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xa141f899 sk_dst_check +EXPORT_SYMBOL vmlinux 0xa134e776 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xa14ee4ac __ip_select_ident EXPORT_SYMBOL vmlinux 0xa16303cc t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xa164e9fe netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xa18fe671 tcf_em_unregister EXPORT_SYMBOL vmlinux 0xa19a9634 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xa1a28762 send_sig_info EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xa1b5b9e8 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xa1b87900 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xa1d1c8b3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xa1bfc664 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1dbbac4 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xa1e2ece8 iucv_bus EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa1f59c62 netlink_broadcast EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb -EXPORT_SYMBOL vmlinux 0xa20532de poll_initwait EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa22cbac6 security_path_mknod +EXPORT_SYMBOL vmlinux 0xa2324b2c dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa242ee54 sock_create_lite EXPORT_SYMBOL vmlinux 0xa243f6cc pci_get_subsys EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25212d9 mount_nodev EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa2859bab sock_create_lite -EXPORT_SYMBOL vmlinux 0xa287e064 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xa27677f1 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xa28902bc mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0xa2925fbd input_match_device_id EXPORT_SYMBOL vmlinux 0xa29af339 d_obtain_alias EXPORT_SYMBOL vmlinux 0xa2a01b8c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xa2a2e148 napi_build_skb +EXPORT_SYMBOL vmlinux 0xa2a52ff4 __neigh_event_send EXPORT_SYMBOL vmlinux 0xa2a9d479 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa2c3a481 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xa2cf46f0 blk_integrity_compare EXPORT_SYMBOL vmlinux 0xa2d337c5 tcf_em_register EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xa2d85d90 vm_iomap_memory EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase +EXPORT_SYMBOL vmlinux 0xa327b65e xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xa32a6d64 kmem_cache_size EXPORT_SYMBOL vmlinux 0xa33f6426 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock -EXPORT_SYMBOL vmlinux 0xa370d003 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xa371fb27 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0xa37eaec0 simple_nosetlease EXPORT_SYMBOL vmlinux 0xa3914016 path_get +EXPORT_SYMBOL vmlinux 0xa3982ec0 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xa3b071a1 get_inode_acl EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3ca9cc2 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa3caa904 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xa3de5f12 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0xa3f8447b xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa401e150 generic_write_checks EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0xa41afd23 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xa41c1f11 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xa42943ef netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xa4390224 fput EXPORT_SYMBOL vmlinux 0xa4438c33 vfs_setpos EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0xa460a8bb udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xa46f5769 param_ops_int -EXPORT_SYMBOL vmlinux 0xa4724b5f dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xa47d400d truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xa48dc5d6 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xa49558ef inet_csk_accept -EXPORT_SYMBOL vmlinux 0xa4b8630a dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xa4c0cdf6 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xa4cadd3a sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy EXPORT_SYMBOL vmlinux 0xa4f9f68b seq_release_private EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0xa519ce81 generic_listxattr EXPORT_SYMBOL vmlinux 0xa51a2967 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xa53956cb sock_recvmsg -EXPORT_SYMBOL vmlinux 0xa54f31b4 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xa52ded43 rt6_lookup +EXPORT_SYMBOL vmlinux 0xa5310be1 nf_setsockopt EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa562bd4d do_SAK EXPORT_SYMBOL vmlinux 0xa57a6752 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xa57cf717 security_path_rename EXPORT_SYMBOL vmlinux 0xa57d10f8 pci_choose_state EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit EXPORT_SYMBOL vmlinux 0xa590ffe0 __mmap_lock_do_trace_released @@ -5609,35 +5590,35 @@ EXPORT_SYMBOL vmlinux 0xa5a03207 phy_device_remove EXPORT_SYMBOL vmlinux 0xa5ae9d90 ccw_device_halt EXPORT_SYMBOL vmlinux 0xa5bd3f89 phy_attached_print +EXPORT_SYMBOL vmlinux 0xa5c472df tso_start EXPORT_SYMBOL vmlinux 0xa5d1422e __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view EXPORT_SYMBOL vmlinux 0xa5feec69 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa60b28db tcf_idr_search EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa6563243 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xa658f3e0 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xa66055f4 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xa66dfb59 vlan_for_each EXPORT_SYMBOL vmlinux 0xa67068cf tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free +EXPORT_SYMBOL vmlinux 0xa67dbb8e pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68522a1 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0xa68cb0ac alloc_pages EXPORT_SYMBOL vmlinux 0xa6982713 genphy_soft_reset EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa6a2ad30 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xa6abe394 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xa6a3a703 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xa6ddf922 qdisc_reset EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic EXPORT_SYMBOL vmlinux 0xa6ea1272 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xa7120e3f devm_release_resource -EXPORT_SYMBOL vmlinux 0xa7440a59 xfrm_state_free EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa772d299 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xa77359b6 kernel_connect EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0xa796ed0d scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xa799a92c security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xa7a41f7d reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xa799f9c9 proto_register EXPORT_SYMBOL vmlinux 0xa7a4cb8d __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way EXPORT_SYMBOL vmlinux 0xa7ab1a4e phy_modify_paged_changed @@ -5647,27 +5628,30 @@ EXPORT_SYMBOL vmlinux 0xa7e69abc unlock_page EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper EXPORT_SYMBOL vmlinux 0xa7ef83a8 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xa809b89b __netif_napi_del +EXPORT_SYMBOL vmlinux 0xa7fed769 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0xa810102d flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xa81dbf38 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xa823bb81 kobject_get +EXPORT_SYMBOL vmlinux 0xa82b0d45 poll_initwait EXPORT_SYMBOL vmlinux 0xa831c782 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xa8390ed4 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xa83c244e sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84eb3ce security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0xa85ac64e dcache_dir_close EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work EXPORT_SYMBOL vmlinux 0xa872599b dm_table_event -EXPORT_SYMBOL vmlinux 0xa890c056 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xa893c087 __dev_set_mtu EXPORT_SYMBOL vmlinux 0xa8973e3f flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0xa8a1a9d9 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xa8a98f0f param_set_int -EXPORT_SYMBOL vmlinux 0xa8aebb57 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xa8b20bf7 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xa8dff896 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa8b9360d param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xa8ca05d7 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xa8e2413e genphy_loopback EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8ff84a2 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xa9063566 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa9107fa1 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0xa9191c40 d_instantiate @@ -5675,75 +5659,73 @@ EXPORT_SYMBOL vmlinux 0xa92231f0 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa9537232 tcp_mmap EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa97e855b generic_write_checks_count -EXPORT_SYMBOL vmlinux 0xa9ce9b36 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xa9db132d sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xa9b77253 bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0xa9e141a2 pci_iomap EXPORT_SYMBOL vmlinux 0xa9e6485d padata_free +EXPORT_SYMBOL vmlinux 0xa9eb5df2 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xaa0090ca rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xaa16f7a2 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa1c6624 raw3270_request_reset EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update -EXPORT_SYMBOL vmlinux 0xaa233c5e skb_eth_push -EXPORT_SYMBOL vmlinux 0xaa2628ed sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xaa26c0c5 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xaa2895ba fb_set_suspend +EXPORT_SYMBOL vmlinux 0xaa36786d udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xaa532956 debug_hex_ascii_view EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xaa59227d neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xaa5a656a unix_attach_fds +EXPORT_SYMBOL vmlinux 0xaa5ae233 dev_add_pack EXPORT_SYMBOL vmlinux 0xaa5c9395 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xaa6c28f6 tcp_read_done EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa95f4b5 datagram_poll EXPORT_SYMBOL vmlinux 0xaa9a44e6 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xaa9ef922 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete -EXPORT_SYMBOL vmlinux 0xaaac771b sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0xaaad8c21 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xaaa76c49 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xaaa78436 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xaab12d5f read_cache_page EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae299c6 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xaade6a87 skb_queue_purge EXPORT_SYMBOL vmlinux 0xaae4c295 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xaae76dad netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xaaf09ab1 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xaaf3d021 __skb_checksum EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp EXPORT_SYMBOL vmlinux 0xab169506 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0xab271b22 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xab2ead6e sock_create_kern EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch EXPORT_SYMBOL vmlinux 0xab4a0100 param_get_ullong +EXPORT_SYMBOL vmlinux 0xab501e96 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options EXPORT_SYMBOL vmlinux 0xab83b322 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xab86df3a xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xab9337ff xfrm_state_flush EXPORT_SYMBOL vmlinux 0xabb1b543 configfs_register_group EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0xabc94429 skb_put EXPORT_SYMBOL vmlinux 0xabd087fa d_path -EXPORT_SYMBOL vmlinux 0xabd149d2 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0xabd1cc34 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf5f8ab inet_getname EXPORT_SYMBOL vmlinux 0xac053a96 param_get_invbool EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac33b6f1 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xac40516c debug_unregister +EXPORT_SYMBOL vmlinux 0xac4fd570 skb_free_datagram EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton EXPORT_SYMBOL vmlinux 0xac74c9a8 inc_nlink -EXPORT_SYMBOL vmlinux 0xac81fd80 nf_log_register EXPORT_SYMBOL vmlinux 0xaca0aef0 complete EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu EXPORT_SYMBOL vmlinux 0xacab761e pci_reenable_device EXPORT_SYMBOL vmlinux 0xacc6a9f4 bdev_check_media_change EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace2a818 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xacea318c zstd_get_error_code EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info @@ -5752,14 +5734,12 @@ EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xad162ff1 mtree_erase -EXPORT_SYMBOL vmlinux 0xad18ac99 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xad210825 netdev_info EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc -EXPORT_SYMBOL vmlinux 0xad2bf2e7 tcp_sendmsg EXPORT_SYMBOL vmlinux 0xad3990c2 ap_queue_init_reply EXPORT_SYMBOL vmlinux 0xad3b4476 scsi_ioctl EXPORT_SYMBOL vmlinux 0xad435aff f_setown EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy -EXPORT_SYMBOL vmlinux 0xad528ae8 tcp_read_skb EXPORT_SYMBOL vmlinux 0xad64b897 devm_free_irq EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function @@ -5767,37 +5747,40 @@ EXPORT_SYMBOL vmlinux 0xada7c8a0 __filemap_get_folio EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadda8c6a xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xaddb7373 _dev_alert -EXPORT_SYMBOL vmlinux 0xade3ec36 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xadea2e18 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xadeb3e57 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xadfd9cca inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xadf4e355 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xae0360e7 tcp_seq_start EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xae071159 sk_stop_timer EXPORT_SYMBOL vmlinux 0xae09e238 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae1ef278 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae8659d7 tcp_close +EXPORT_SYMBOL vmlinux 0xae375093 ip6_frag_next EXPORT_SYMBOL vmlinux 0xae9259cc lookup_one EXPORT_SYMBOL vmlinux 0xae977bd0 drop_nlink EXPORT_SYMBOL vmlinux 0xae9f0318 tty_kref_put EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaebb6b87 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xaeacce07 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xaeb442e5 sock_sendmsg EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaeccddcd phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xaecd1551 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xaf0fe540 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xaf3c305e skb_clone_sk +EXPORT_SYMBOL vmlinux 0xaece8ceb ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xaee08901 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xaf372ece secpath_set +EXPORT_SYMBOL vmlinux 0xaf398e90 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf567f0f tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xaf4b47cb xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xaf510581 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xaf5fb9da tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xaf6c3f2b bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xaf8d02cb sock_no_accept EXPORT_SYMBOL vmlinux 0xaf8f3c20 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xaf967491 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0xafa8f2d8 vfs_get_link EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafcb25fb param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xafdad1f5 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xafdf4548 pci_request_irq EXPORT_SYMBOL vmlinux 0xafe1ef9e fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn @@ -5808,17 +5791,12 @@ EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl EXPORT_SYMBOL vmlinux 0xb0746390 inode_init_owner -EXPORT_SYMBOL vmlinux 0xb086d2ad fqdir_init -EXPORT_SYMBOL vmlinux 0xb0a2e984 skb_copy_header EXPORT_SYMBOL vmlinux 0xb0b1836a d_set_d_op -EXPORT_SYMBOL vmlinux 0xb0d75c4e xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xb0de5835 inet_bind +EXPORT_SYMBOL vmlinux 0xb0b965e5 skb_eth_push +EXPORT_SYMBOL vmlinux 0xb0e086d7 ipv4_specific EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e6d1de device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever -EXPORT_SYMBOL vmlinux 0xb0f59277 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xb0fb3673 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xb10cf0e5 __alloc_skb EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client @@ -5831,123 +5809,118 @@ EXPORT_SYMBOL vmlinux 0xb1707b48 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xb171ab59 debug_set_level EXPORT_SYMBOL vmlinux 0xb18fc052 ccw_driver_register +EXPORT_SYMBOL vmlinux 0xb19a6891 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0xb19be9f0 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xb1abef80 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0xb1ac6405 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ce712f tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xb1d87030 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout -EXPORT_SYMBOL vmlinux 0xb1f05c1a sock_i_uid EXPORT_SYMBOL vmlinux 0xb1f73d51 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0xb2137863 thread_group_exited -EXPORT_SYMBOL vmlinux 0xb2155f51 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xb22249b0 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xb229a6b8 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb225b5da skb_pull_data EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23108cb udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xb24a0802 key_put -EXPORT_SYMBOL vmlinux 0xb261a635 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0xb27143e7 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xb28d8adb tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xb282d932 rt_dst_clone EXPORT_SYMBOL vmlinux 0xb2974d99 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2c93858 eth_header_cache EXPORT_SYMBOL vmlinux 0xb2c9fa84 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb2e47fca seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xb2e7ce02 netdev_warn -EXPORT_SYMBOL vmlinux 0xb2f9fc48 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xb2e35098 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb2f07b3f security_path_mkdir EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fdae07 path_is_mountpoint EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb318ffcb blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb31a92d4 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb3278411 posix_lock_file +EXPORT_SYMBOL vmlinux 0xb32a8d11 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xb32b0d68 scsi_register_interface EXPORT_SYMBOL vmlinux 0xb33ae8ce clocksource_change_rating EXPORT_SYMBOL vmlinux 0xb346a39c flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xb375a7cb mr_table_dump EXPORT_SYMBOL vmlinux 0xb37bb41c pagecache_get_page EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy +EXPORT_SYMBOL vmlinux 0xb38b3c52 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xb38b56a9 pci_release_resource EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xb3a4f087 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xb3a7ff68 kthread_complete_and_exit EXPORT_SYMBOL vmlinux 0xb3af6606 sync_blockdev -EXPORT_SYMBOL vmlinux 0xb3b3d9cc netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xb3ca78ec security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xb3b0179e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xb3c8ae51 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0xb3cabb68 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string EXPORT_SYMBOL vmlinux 0xb3d618b3 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xb3ee2d5e skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xb3e7f778 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f95da8 input_alloc_absinfo EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact EXPORT_SYMBOL vmlinux 0xb40e9768 filemap_release_folio -EXPORT_SYMBOL vmlinux 0xb410db80 tcp_mmap EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb424c2e7 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xb426d429 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xb4281ebd ap_driver_unregister -EXPORT_SYMBOL vmlinux 0xb442d8e2 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xb44f5678 dev_open +EXPORT_SYMBOL vmlinux 0xb4394644 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xb44eb9b6 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xb4531e98 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xb456ca84 bio_chain EXPORT_SYMBOL vmlinux 0xb47984ab is_subdir +EXPORT_SYMBOL vmlinux 0xb4862302 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb4939b4d napi_gro_receive EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xb4b9f3cd xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xb4c31574 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0xb4f13d2a abort EXPORT_SYMBOL vmlinux 0xb4fa400f blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb4ff5ddd fd_install EXPORT_SYMBOL vmlinux 0xb5004526 md_write_start -EXPORT_SYMBOL vmlinux 0xb5026ac5 passthru_features_check EXPORT_SYMBOL vmlinux 0xb50b2253 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xb50bc7b5 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xb5134e79 vfs_fsync EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc EXPORT_SYMBOL vmlinux 0xb5399a0e phy_device_register EXPORT_SYMBOL vmlinux 0xb53f2256 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xb545c43f tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0xb54b76aa jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xb56e4ed1 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xb599ebf0 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5aee1da dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xb5b37a8b netdev_notice EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags EXPORT_SYMBOL vmlinux 0xb5ba3829 __pagevec_release -EXPORT_SYMBOL vmlinux 0xb5bd68e5 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xb5c14b5f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb5c5d2c0 dev_get_stats EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xb5d36cbe handle_edge_irq -EXPORT_SYMBOL vmlinux 0xb5e13ad9 dcb_getapp EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work EXPORT_SYMBOL vmlinux 0xb5f4d654 dev_uc_flush EXPORT_SYMBOL vmlinux 0xb5f9c00e param_ops_short EXPORT_SYMBOL vmlinux 0xb625a9b9 proc_create_single_data EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs +EXPORT_SYMBOL vmlinux 0xb633012f udp_poll EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb63486cb configfs_undepend_item EXPORT_SYMBOL vmlinux 0xb64f9a36 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xb651d272 audit_log_start EXPORT_SYMBOL vmlinux 0xb66374bf no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb6774c31 setattr_prepare EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6807ce5 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xb68573a3 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xb692ef94 from_kuid_munged EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6945e77 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xb6a9c227 lease_modify EXPORT_SYMBOL vmlinux 0xb6ac307b tty_port_open EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b4f3e8 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xb6c65efd ccw_device_set_options EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit EXPORT_SYMBOL vmlinux 0xb6d14006 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6ee5a89 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd @@ -5956,6 +5929,7 @@ EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb72aca2b migrate_folio +EXPORT_SYMBOL vmlinux 0xb739ce03 ip_route_input_noref EXPORT_SYMBOL vmlinux 0xb73de729 kill_pid EXPORT_SYMBOL vmlinux 0xb75d20b1 vfs_unlink EXPORT_SYMBOL vmlinux 0xb76e1d1a bfifo_qdisc_ops @@ -5963,143 +5937,141 @@ EXPORT_SYMBOL vmlinux 0xb7735ffa call_fib_notifiers EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xb787772a pci_request_regions +EXPORT_SYMBOL vmlinux 0xb78ca375 sock_no_listen EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb7a26d2f mtree_load -EXPORT_SYMBOL vmlinux 0xb7a5bdfa dev_set_mtu EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cd6223 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xb7d46b95 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xb7d99b35 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c +EXPORT_SYMBOL vmlinux 0xb7f3f258 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xb817c90f splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xb8344a42 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xb85ff519 phy_config_aneg EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86fa872 tty_write_room -EXPORT_SYMBOL vmlinux 0xb8707ef4 __inet_hash -EXPORT_SYMBOL vmlinux 0xb888f0b6 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a681d2 neigh_connected_output EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b27e06 __sie64a EXPORT_SYMBOL vmlinux 0xb8cad3ae pps_register_source EXPORT_SYMBOL vmlinux 0xb8cdc90d dev_addr_del -EXPORT_SYMBOL vmlinux 0xb8d40c34 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb8d4079f tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xb8da2651 inode_init_once EXPORT_SYMBOL vmlinux 0xb8dcc270 dev_addr_mod EXPORT_SYMBOL vmlinux 0xb8e315da tty_devnum EXPORT_SYMBOL vmlinux 0xb8e62cdc fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec +EXPORT_SYMBOL vmlinux 0xb8f36b3f netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xb8f6d6c5 param_set_ulong EXPORT_SYMBOL vmlinux 0xb8fcfe27 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xb910c7c8 xfrm_init_state EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init EXPORT_SYMBOL vmlinux 0xb91c9f93 param_set_bool EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xb92c30ee km_state_expired +EXPORT_SYMBOL vmlinux 0xb92d040b inet_dgram_connect EXPORT_SYMBOL vmlinux 0xb92fa519 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xb931c6a3 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xb93b1010 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xb93c20fa ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xb93fc2fb sync_inodes_sb EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb943c17e sk_error_report EXPORT_SYMBOL vmlinux 0xb947a6db jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xb9491bef set_nlink EXPORT_SYMBOL vmlinux 0xb94aad93 finish_open EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0xb9678790 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb9abbb2e arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xb9bcb554 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb9e7474f vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9f61feb __inode_add_bytes EXPORT_SYMBOL vmlinux 0xb9fbd39f phy_connect EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba085ee6 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xba144b58 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0xba1b4506 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xba1b4838 nlmsg_notify EXPORT_SYMBOL vmlinux 0xba272c0e dm_table_get_md EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba64c36d __netif_schedule EXPORT_SYMBOL vmlinux 0xba6581d9 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xba82d2f6 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xba8f727a config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xba908467 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xba9fe113 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xbaaa8045 vfs_mknod -EXPORT_SYMBOL vmlinux 0xbabd64e3 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xbac8c27a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xbad14c43 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xbadcadf0 pin_user_pages -EXPORT_SYMBOL vmlinux 0xbae1ad43 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0xbaf416eb vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start -EXPORT_SYMBOL vmlinux 0xbafbbcf0 neigh_direct_output EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0bbc8b xp_set_rxq_info EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command EXPORT_SYMBOL vmlinux 0xbb3a315d blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbb4f3213 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xbb552d96 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit -EXPORT_SYMBOL vmlinux 0xbb5a3366 sk_net_capable EXPORT_SYMBOL vmlinux 0xbb5c87c4 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xbb673f8a rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xbb78f7a5 xfrm_input +EXPORT_SYMBOL vmlinux 0xbb70570c phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xbb8ded68 neigh_lookup EXPORT_SYMBOL vmlinux 0xbb942889 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xbb9a125f rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex EXPORT_SYMBOL vmlinux 0xbbc05b5d generic_writepages -EXPORT_SYMBOL vmlinux 0xbbddbd44 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0xbbe2eb31 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0xbbe97336 get_watch_queue EXPORT_SYMBOL vmlinux 0xbbebfe4c mdiobus_unregister EXPORT_SYMBOL vmlinux 0xbbf5cdad pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xbc0a702d skb_store_bits EXPORT_SYMBOL vmlinux 0xbc0ac6a5 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xbc136d5c dst_init +EXPORT_SYMBOL vmlinux 0xbc1953bd __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xbc22ec6e tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0xbc4afdf2 ccw_device_get_mdc EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch EXPORT_SYMBOL vmlinux 0xbc8f9c24 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xbc965f5e unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xbc9a23d5 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0xbc9e257b fb_validate_mode EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb25359 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcb3ea0c netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xbcbae5e8 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xbcf6b482 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xbd0a9461 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xbd0d8d76 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xbd15fd9e __netif_schedule -EXPORT_SYMBOL vmlinux 0xbd3e6608 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xbd1f9d4f __neigh_create +EXPORT_SYMBOL vmlinux 0xbd29fb59 inet_addr_type EXPORT_SYMBOL vmlinux 0xbd4640b7 tty_unregister_device EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd65f480 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xbd68ff42 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0xbd7a6658 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xbd7b1223 netif_skb_features EXPORT_SYMBOL vmlinux 0xbd885a59 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xbd923d3e tso_build_hdr -EXPORT_SYMBOL vmlinux 0xbdaa1041 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0xbdc17309 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xbdeffe7b sk_ns_capable EXPORT_SYMBOL vmlinux 0xbdfee682 md_done_sync EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1c5d17 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0xbe1db703 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xbe20a5f8 tcf_idr_release EXPORT_SYMBOL vmlinux 0xbe3f502b param_get_ulong EXPORT_SYMBOL vmlinux 0xbe4e355d folio_mark_accessed EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe55d752 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe627161 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xbe785177 sock_no_bind EXPORT_SYMBOL vmlinux 0xbe7a16b2 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xbe88af63 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xbe8f638e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xbe82e448 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xbea20696 start_tty +EXPORT_SYMBOL vmlinux 0xbea371d6 pneigh_lookup EXPORT_SYMBOL vmlinux 0xbede3476 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xbeeccfaa audit_log EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf -EXPORT_SYMBOL vmlinux 0xbefaf75b tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0xbf07691b dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xbf19c12a filemap_flush -EXPORT_SYMBOL vmlinux 0xbf2b4ef9 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbf25b622 arp_send EXPORT_SYMBOL vmlinux 0xbf4097e6 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0xbf41b6fd simple_pin_fs EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf607e37 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xbf7ee84d tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xbf8664de xfrm_state_add EXPORT_SYMBOL vmlinux 0xbf8dcc37 __bh_read +EXPORT_SYMBOL vmlinux 0xbf8e9109 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set EXPORT_SYMBOL vmlinux 0xbfb06930 __dquot_alloc_space @@ -6108,86 +6080,87 @@ EXPORT_SYMBOL vmlinux 0xbff9b466 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xc0081cff __block_write_full_page EXPORT_SYMBOL vmlinux 0xc00dc276 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0xc02178c1 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xc0233799 vc_cons EXPORT_SYMBOL vmlinux 0xc0259796 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xc02fe84a fs_param_is_string -EXPORT_SYMBOL vmlinux 0xc03ba62a netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xc04a9ff8 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xc05c20f8 pci_release_region EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xc0763571 consume_skb EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc081ca14 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xc099384e pci_read_config_word EXPORT_SYMBOL vmlinux 0xc09f9736 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xc0a03c9a default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc0a10996 nf_log_trace EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END -EXPORT_SYMBOL vmlinux 0xc0c5279e xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xc0e0bfa1 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw 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 0xc1025c01 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xc10eb400 input_flush_device -EXPORT_SYMBOL vmlinux 0xc11340e0 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc11a5853 dev_alloc_name EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic EXPORT_SYMBOL vmlinux 0xc14039ea ww_mutex_lock EXPORT_SYMBOL vmlinux 0xc1455104 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xc14aa706 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc15a718c tty_port_init -EXPORT_SYMBOL vmlinux 0xc15b92eb tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xc16197d8 mount_bdev EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem EXPORT_SYMBOL vmlinux 0xc16c04cd __folio_alloc -EXPORT_SYMBOL vmlinux 0xc174aa75 __scm_destroy EXPORT_SYMBOL vmlinux 0xc1886701 block_write_end -EXPORT_SYMBOL vmlinux 0xc18a6aa5 inet6_release +EXPORT_SYMBOL vmlinux 0xc18b628d ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xc1afe18a mdio_device_free EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view EXPORT_SYMBOL vmlinux 0xc1ca8779 dquot_quota_on EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xc1d75d0a lock_rename EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1eb97b7 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xc21d12da jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xc23537de kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc2300c47 bpf_map_get +EXPORT_SYMBOL vmlinux 0xc2481eb0 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xc24828e4 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0xc24e7e43 unix_attach_fds EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user EXPORT_SYMBOL vmlinux 0xc25a45e3 jbd2_journal_load EXPORT_SYMBOL vmlinux 0xc25bfc74 inode_sub_bytes EXPORT_SYMBOL vmlinux 0xc2770f07 add_to_pipe EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xc283bc75 skb_pull EXPORT_SYMBOL vmlinux 0xc28c52c4 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xc2a7cf74 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc29b40fa phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xc2a5c156 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xc2b86625 page_mapping -EXPORT_SYMBOL vmlinux 0xc2c6fb31 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xc2cc80e0 tcp_child_process EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc316ced7 genphy_read_lpa EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc3206e48 md_write_inc EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc366b9dc __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xc3675010 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xc370661e phy_init_eee EXPORT_SYMBOL vmlinux 0xc37a01cf capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xc37da201 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3931ed0 kernel_bind EXPORT_SYMBOL vmlinux 0xc39fc22f pci_disable_ptm -EXPORT_SYMBOL vmlinux 0xc3a9a447 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xc3affc0e noop_qdisc EXPORT_SYMBOL vmlinux 0xc3bd4c1e __folio_lock EXPORT_SYMBOL vmlinux 0xc3c02a36 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xc3c8b08a generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc3c94ae2 inet_stream_ops EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xc3d6749e bdi_register +EXPORT_SYMBOL vmlinux 0xc3d72025 inet_del_protocol EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable -EXPORT_SYMBOL vmlinux 0xc3e54156 __skb_ext_del EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42eb449 inet6_add_offload EXPORT_SYMBOL vmlinux 0xc433a088 __read_overflow2_field +EXPORT_SYMBOL vmlinux 0xc458a7c6 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xc464162a __put_user_ns EXPORT_SYMBOL vmlinux 0xc4644a96 d_alloc_parallel EXPORT_SYMBOL vmlinux 0xc469ae73 page_symlink_inode_operations @@ -6195,72 +6168,78 @@ EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 EXPORT_SYMBOL vmlinux 0xc48477a3 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xc48ecddc pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xc49b88da sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xc4a83cc3 zstd_cctx_workspace_bound EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xc4d5d508 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xc4e9479d rtnl_offload_xstats_notify -EXPORT_SYMBOL vmlinux 0xc51b9d62 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xc4d7b400 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xc50fd190 udp_pre_connect EXPORT_SYMBOL vmlinux 0xc51d90ec flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xc5346f73 may_umount EXPORT_SYMBOL vmlinux 0xc53c4e62 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xc54f44be qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xc567c451 tty_port_tty_set EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc572009c sk_wait_data EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 EXPORT_SYMBOL vmlinux 0xc5997cf5 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a81cd7 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xc5acfbdb ipmr_rule_default EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return EXPORT_SYMBOL vmlinux 0xc5b3772c kthread_stop EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user EXPORT_SYMBOL vmlinux 0xc5cb559e tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc5db1462 tcp_seq_stop EXPORT_SYMBOL vmlinux 0xc5dcb4d6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc5df47a2 neigh_seq_start EXPORT_SYMBOL vmlinux 0xc5e64d04 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc5f98d64 filemap_map_pages EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61e8358 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0xc622ea97 stsi EXPORT_SYMBOL vmlinux 0xc62ab2bc mempool_destroy EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc650e777 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66006d1 mr_table_alloc EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc67291c7 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xc675886e tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xc693d770 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xc69b4152 ccw_device_get_path_mask EXPORT_SYMBOL vmlinux 0xc6b5af0e jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ef6ed2 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f4891f arp_create EXPORT_SYMBOL vmlinux 0xc6f8989b airq_iv_release +EXPORT_SYMBOL vmlinux 0xc705d368 sock_efree +EXPORT_SYMBOL vmlinux 0xc70fa2fe lock_sock_nested EXPORT_SYMBOL vmlinux 0xc7206ef9 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xc729f894 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xc7238115 sock_bindtoindex EXPORT_SYMBOL vmlinux 0xc72d8b7e put_fs_context EXPORT_SYMBOL vmlinux 0xc72f7279 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xc7309e9e __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xc74c121c ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xc766dc12 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xc76c66b5 brioctl_set -EXPORT_SYMBOL vmlinux 0xc7789ecc xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xc781bb56 proto_register +EXPORT_SYMBOL vmlinux 0xc76c98aa arp_xmit EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a2c8a4 xfrm_input_resume EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7c7b252 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xc7d627cc param_get_charp -EXPORT_SYMBOL vmlinux 0xc7f12eb3 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc8139c09 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xc818e363 is_free_buddy_page EXPORT_SYMBOL vmlinux 0xc81c2091 locks_remove_posix EXPORT_SYMBOL vmlinux 0xc81e3195 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc82bc329 netlink_ack EXPORT_SYMBOL vmlinux 0xc83423d6 set_binfmt EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu @@ -6268,24 +6247,26 @@ EXPORT_SYMBOL vmlinux 0xc84fddf6 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0xc851a3e6 do_splice_direct EXPORT_SYMBOL vmlinux 0xc85671f4 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xc867ec47 napi_complete_done EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc874b783 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xc87ea0ef netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8920355 pci_free_irq +EXPORT_SYMBOL vmlinux 0xc89b8bfd tcp_sendpage +EXPORT_SYMBOL vmlinux 0xc89c0371 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc8a2b9f6 cdrom_ioctl EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8c5a3b3 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xc8ab7437 km_state_notify +EXPORT_SYMBOL vmlinux 0xc8de1550 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xc8e173ed _find_next_bit_le -EXPORT_SYMBOL vmlinux 0xc8e649e5 genl_register_family EXPORT_SYMBOL vmlinux 0xc90f038a vfs_get_fsid EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc91ae9c8 dma_map_resource -EXPORT_SYMBOL vmlinux 0xc9238db9 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xc9252581 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xc92a1b55 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xc93387cc phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc94d42b7 tcp_v4_connect EXPORT_SYMBOL vmlinux 0xc94fbb53 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters @@ -6299,174 +6280,168 @@ EXPORT_SYMBOL vmlinux 0xc9954f38 tty_unlock EXPORT_SYMBOL vmlinux 0xc9cf900e add_watch_to_object EXPORT_SYMBOL vmlinux 0xc9d27147 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xc9d91b2a xp_dma_map EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9eb727f vfs_statfs EXPORT_SYMBOL vmlinux 0xc9f29f4f fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xc9ffeeef __blk_alloc_disk EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca19d7ff netdev_crit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free EXPORT_SYMBOL vmlinux 0xca2a42c4 timestamp_truncate EXPORT_SYMBOL vmlinux 0xca2ce822 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xca385053 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xca40c6f1 icmp_ndo_send EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function EXPORT_SYMBOL vmlinux 0xca52229f iucv_root -EXPORT_SYMBOL vmlinux 0xca6d6dbc tso_start -EXPORT_SYMBOL vmlinux 0xca7397bb dcb_setapp +EXPORT_SYMBOL vmlinux 0xca599c15 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xca5a833b inet_del_offload EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xcad99162 kernel_write EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xcae3bbcf inetdev_by_index EXPORT_SYMBOL vmlinux 0xcae694fe blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xcaf3bb46 eth_header EXPORT_SYMBOL vmlinux 0xcb196b9d __vcalloc EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb42bf7d fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xcb5647c3 cdev_init +EXPORT_SYMBOL vmlinux 0xcb5c67bb inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xcb659e42 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xcb94a5ab param_ops_string EXPORT_SYMBOL vmlinux 0xcb9d70e0 __break_lease EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xcbb60ab4 free_task EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context EXPORT_SYMBOL vmlinux 0xcbc2fc86 vfs_rename EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbf75886 dquot_disable EXPORT_SYMBOL vmlinux 0xcbfb492a crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xcc183c29 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xcc24c976 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xcc26458e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xcc2e4c8b __kfree_skb +EXPORT_SYMBOL vmlinux 0xcc2ec358 __lock_sock_fast EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xcc398122 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xcc439abc arp_send +EXPORT_SYMBOL vmlinux 0xcc39c04d tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5d7be2 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xcc6b1077 dentry_path_raw EXPORT_SYMBOL vmlinux 0xcc720a11 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xcc75a533 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xcc82d267 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xcc971fb5 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xccad95c9 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch -EXPORT_SYMBOL vmlinux 0xccc34279 kernel_listen EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0xcce4be8b regset_get_alloc -EXPORT_SYMBOL vmlinux 0xcce973e9 ipv4_specific EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xcd19c9bc sk_alloc EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd31becd netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xcd3ee8cd reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xcd5494e9 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xcd61f64d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xcd6a4c08 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xcd714a16 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xcd9ca194 tty_name -EXPORT_SYMBOL vmlinux 0xcdb51c74 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xcdb90ea6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xcdaccac1 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xcdb75ede skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xcdc26e80 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc3c0ff release_sock EXPORT_SYMBOL vmlinux 0xcdd5718d fb_set_var EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev EXPORT_SYMBOL vmlinux 0xcdf6ae70 devm_request_resource -EXPORT_SYMBOL vmlinux 0xcdf707d0 sock_kfree_s EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate EXPORT_SYMBOL vmlinux 0xce10dd31 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2be700 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xce33f4f3 ip_getsockopt EXPORT_SYMBOL vmlinux 0xce388922 vma_alloc_folio EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xce44be77 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize EXPORT_SYMBOL vmlinux 0xce83e72b fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0xce84c1f4 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section EXPORT_SYMBOL vmlinux 0xce9a9fd4 make_kprojid -EXPORT_SYMBOL vmlinux 0xcea0d151 inet_select_addr EXPORT_SYMBOL vmlinux 0xcea96b50 param_ops_ushort EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceaff427 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xcebafe76 ip_check_defrag EXPORT_SYMBOL vmlinux 0xcebe3bd9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xcec8e9d7 iptun_encaps EXPORT_SYMBOL vmlinux 0xcecbcd75 locks_init_lock EXPORT_SYMBOL vmlinux 0xcedc0188 __invalidate_device -EXPORT_SYMBOL vmlinux 0xcede1f92 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xcedf5345 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xcf1c869a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xcee7962b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xcf14ebbe inet_register_protosw EXPORT_SYMBOL vmlinux 0xcf2ed08c inode_set_bytes EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xcf5658e2 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xcf5aa8d1 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free EXPORT_SYMBOL vmlinux 0xcf93b390 dup_iter EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa59084 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xcfa7469c inet_release EXPORT_SYMBOL vmlinux 0xcfa7ae49 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xcfbe5c23 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xcfca4bd5 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xcfc05568 dst_release +EXPORT_SYMBOL vmlinux 0xcfcca561 sock_no_connect EXPORT_SYMBOL vmlinux 0xcfd0cd5e dev_mc_del EXPORT_SYMBOL vmlinux 0xcfdd4543 param_get_byte EXPORT_SYMBOL vmlinux 0xcfe403ca mtree_insert +EXPORT_SYMBOL vmlinux 0xcff99d80 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0xd021b65d vfs_getattr +EXPORT_SYMBOL vmlinux 0xd044c2da __ip_options_compile EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05dc14c netdev_notice EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd068177c __sk_dst_check EXPORT_SYMBOL vmlinux 0xd0691285 pcim_pin_device EXPORT_SYMBOL vmlinux 0xd06ce18f phy_write_mmd EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive EXPORT_SYMBOL vmlinux 0xd087e6cd jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xd0b6a55a nf_log_set +EXPORT_SYMBOL vmlinux 0xd0ad9d75 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xd0bc2c91 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0xd0e54a8a configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xd0ecfe6b __netdev_notify_peers EXPORT_SYMBOL vmlinux 0xd0f139f0 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xd0f42e81 dma_fence_array_next -EXPORT_SYMBOL vmlinux 0xd0f63e80 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd107013c dev_open EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user -EXPORT_SYMBOL vmlinux 0xd13f1dd3 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xd14957e4 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xd1524019 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0xd156424a pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xd16b3cce tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd162e106 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd171e5d1 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xd178511b phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0xd19b8227 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xd1abfdc3 pci_pme_active -EXPORT_SYMBOL vmlinux 0xd1ad568d __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg EXPORT_SYMBOL vmlinux 0xd1b8f635 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0xd1c6518e pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xd2160242 inet_frag_find EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xd22a41a0 netif_device_detach -EXPORT_SYMBOL vmlinux 0xd247a500 datagram_poll +EXPORT_SYMBOL vmlinux 0xd232ac15 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait EXPORT_SYMBOL vmlinux 0xd2510a63 up_write EXPORT_SYMBOL vmlinux 0xd256c2ca flow_rule_match_meta EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd258411d phy_config_aneg EXPORT_SYMBOL vmlinux 0xd259b552 mod_node_page_state EXPORT_SYMBOL vmlinux 0xd259c780 mt_find_after EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd263643f inet_stream_ops EXPORT_SYMBOL vmlinux 0xd27242cb key_type_keyring EXPORT_SYMBOL vmlinux 0xd2798077 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd2831f6a bio_endio -EXPORT_SYMBOL vmlinux 0xd28bc2ab fqdir_exit EXPORT_SYMBOL vmlinux 0xd2938b54 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xd2c768ed sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xd2caabb1 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xd2cec60f tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xd2d700df inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xd2c054e0 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd2cb3615 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2dc3046 get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0xd2e3c8d7 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xd2f75fb3 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xd2fc5740 dev_get_by_index EXPORT_SYMBOL vmlinux 0xd30c195c pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd3358052 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd340ff64 ip_output EXPORT_SYMBOL vmlinux 0xd347ae49 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xd34bedab netdev_state_change EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 @@ -6474,56 +6449,58 @@ EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xd3a985a4 kernel_param_unlock EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3c63086 phy_start_cable_test EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write EXPORT_SYMBOL vmlinux 0xd3e4f89f ram_aops EXPORT_SYMBOL vmlinux 0xd3f71a6d alloc_buffer_head EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd414dbd8 scmd_printk -EXPORT_SYMBOL vmlinux 0xd417f4c7 alloc_fcdev EXPORT_SYMBOL vmlinux 0xd430c0c6 iucv_if EXPORT_SYMBOL vmlinux 0xd4390c85 seq_file_path +EXPORT_SYMBOL vmlinux 0xd43da53e netdev_reset_tc EXPORT_SYMBOL vmlinux 0xd44ba387 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xd44d887f tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xd45cdb06 netlink_capable -EXPORT_SYMBOL vmlinux 0xd467defe sock_sendmsg -EXPORT_SYMBOL vmlinux 0xd4823987 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xd46cdf6a tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4bbe566 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xd4e94cee scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd50a7a8b xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xd5160045 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xd5240497 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd53e898c ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xd53f043a gro_cells_receive EXPORT_SYMBOL vmlinux 0xd543c467 ptep_xchg_lazy EXPORT_SYMBOL vmlinux 0xd5499658 simple_write_begin EXPORT_SYMBOL vmlinux 0xd55920d0 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xd56533b3 inet_recvmsg EXPORT_SYMBOL vmlinux 0xd566933c up EXPORT_SYMBOL vmlinux 0xd56b1287 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd57117c5 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0xd572242a mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xd5a856cf eth_header EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c70388 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xd5dca112 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xd5e65c98 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd609b4ea sock_recvmsg EXPORT_SYMBOL vmlinux 0xd62022d3 folio_end_private_2 EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch EXPORT_SYMBOL vmlinux 0xd6562524 d_delete EXPORT_SYMBOL vmlinux 0xd65d8719 mpage_readahead -EXPORT_SYMBOL vmlinux 0xd6741b15 dev_get_flags EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd67449de bpf_link_put +EXPORT_SYMBOL vmlinux 0xd68289e6 register_qdisc +EXPORT_SYMBOL vmlinux 0xd68a904c sock_common_recvmsg EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6a15306 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xd6a886be inet_dgram_connect EXPORT_SYMBOL vmlinux 0xd6ae2939 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xd6bf3f5d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0xd6e810e0 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xd6e906e7 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xd6e9863e mdio_device_reset EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ecb964 udp_seq_ops EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe @@ -6533,8 +6510,10 @@ 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 0xd744a9b6 tcp_release_cb EXPORT_SYMBOL vmlinux 0xd74c76a4 sync_filesystem EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0xd774becf skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xd7776e36 d_set_fallthru EXPORT_SYMBOL vmlinux 0xd78385a0 ccw_device_resume EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load @@ -6553,134 +6532,147 @@ EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed EXPORT_SYMBOL vmlinux 0xd842f1c5 sync_file_create EXPORT_SYMBOL vmlinux 0xd85b2700 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xd85dc883 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xd86ae388 generic_shutdown_super EXPORT_SYMBOL vmlinux 0xd86d4266 textsearch_register EXPORT_SYMBOL vmlinux 0xd8826b91 d_drop EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0xd88e0faa input_unregister_handle EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a0f345 xfrm_register_type EXPORT_SYMBOL vmlinux 0xd8a2d382 seq_path 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 0xd8b8e706 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xd8e41cc6 utf8_strncmp -EXPORT_SYMBOL vmlinux 0xd8eb88ff genlmsg_put -EXPORT_SYMBOL vmlinux 0xd8f4c98b netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xd9279f27 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xd92c2afb zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd93ff107 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset +EXPORT_SYMBOL vmlinux 0xd9503858 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xd95a68ec scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xd9621e77 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string -EXPORT_SYMBOL vmlinux 0xd97ce5ca ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xd9859195 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd97586f7 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98fe161 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xd9992a49 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xd9ab653f mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xd9acce84 dquot_quota_sync EXPORT_SYMBOL vmlinux 0xd9ad8184 folio_write_one EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c12b82 vlan_for_each EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9de22c8 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xd9ebab2d skb_unlink +EXPORT_SYMBOL vmlinux 0xd9f47ab1 phy_error +EXPORT_SYMBOL vmlinux 0xd9fc9551 neigh_app_ns EXPORT_SYMBOL vmlinux 0xda0347fe pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xda0500cb nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xda201afa netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xda38c0ac tcp_filter EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda452b8b blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xda5bebfd __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xda789854 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xda876912 misc_register EXPORT_SYMBOL vmlinux 0xda8c19ef input_close_device +EXPORT_SYMBOL vmlinux 0xdaa21219 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xdaa69078 sock_wfree EXPORT_SYMBOL vmlinux 0xdab83f92 release_pages -EXPORT_SYMBOL vmlinux 0xdab9e472 reuseport_select_sock EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape EXPORT_SYMBOL vmlinux 0xdafa9f03 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xdb07595c sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xdb0f7d56 genl_notify +EXPORT_SYMBOL vmlinux 0xdb3be8aa netdev_state_change EXPORT_SYMBOL vmlinux 0xdb4da7e4 get_fs_type EXPORT_SYMBOL vmlinux 0xdb4e6653 submit_bio_wait EXPORT_SYMBOL vmlinux 0xdb4ea925 pci_read_vpd EXPORT_SYMBOL vmlinux 0xdb4f7cc6 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xdb65c512 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xdb52d349 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xdb67ac71 sock_from_file EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb87643c unix_detach_fds -EXPORT_SYMBOL vmlinux 0xdba14ea8 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xdba1cded netlink_capable EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xdba350ac t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xdba8e0c0 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xdbb89d82 eth_validate_addr EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xdbc48294 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xdbd566b3 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource EXPORT_SYMBOL vmlinux 0xdbe6e780 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0xdbe9bc5f write_inode_now EXPORT_SYMBOL vmlinux 0xdc01e7c1 pci_set_mwi EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc1425d4 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc21d269 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0xdc34e840 mtree_destroy -EXPORT_SYMBOL vmlinux 0xdc3f9771 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc406e8b inet_getname EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc49688b register_key_type EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc557557 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xdc602c99 vfs_create_mount EXPORT_SYMBOL vmlinux 0xdc64a2f0 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xdc6f4067 register_netdevice +EXPORT_SYMBOL vmlinux 0xdc8051db skb_copy_expand EXPORT_SYMBOL vmlinux 0xdc884618 console_start EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xdc9d5978 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xdcca8231 __alloc_pages EXPORT_SYMBOL vmlinux 0xdcda8fda unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xdcdf1274 path_has_submounts EXPORT_SYMBOL vmlinux 0xdce4bb87 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xdcf2e1f7 __nlmsg_put EXPORT_SYMBOL vmlinux 0xdcf84646 sort_r +EXPORT_SYMBOL vmlinux 0xdd0540ba skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xdd093398 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xdd266dad create_empty_buffers +EXPORT_SYMBOL vmlinux 0xdd2bef79 tcp_close EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create EXPORT_SYMBOL vmlinux 0xdd319684 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xdd4f0828 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xdd579219 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xdd3f4ae5 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xdd53a438 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0xdd5ad81a from_kgid_munged EXPORT_SYMBOL vmlinux 0xdd667ca5 scsi_register_driver EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd906a19 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xddab1df6 xfrm_state_walk EXPORT_SYMBOL vmlinux 0xddb015bc scsi_is_target_device EXPORT_SYMBOL vmlinux 0xddc778fd md_handle_request -EXPORT_SYMBOL vmlinux 0xddd4a50f netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xdde7eff8 ip_local_deliver EXPORT_SYMBOL vmlinux 0xddedf28b vfs_iter_write EXPORT_SYMBOL vmlinux 0xddf727ab generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed EXPORT_SYMBOL vmlinux 0xde048ae3 phy_loopback -EXPORT_SYMBOL vmlinux 0xde097063 skb_eth_pop EXPORT_SYMBOL vmlinux 0xde0bdcff memset EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xde16bcf6 dev_change_flags EXPORT_SYMBOL vmlinux 0xde1effac pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xde293963 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xde31a8fe phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xde2ef06e neigh_seq_next EXPORT_SYMBOL vmlinux 0xde3215ff set_capacity EXPORT_SYMBOL vmlinux 0xde3eb972 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xde49f710 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde650cce sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xde633800 netpoll_setup EXPORT_SYMBOL vmlinux 0xde664065 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xde69772e tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xde6dd320 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0xde739a8f unregister_quota_format EXPORT_SYMBOL vmlinux 0xde810960 pci_dev_get +EXPORT_SYMBOL vmlinux 0xde829177 km_state_expired +EXPORT_SYMBOL vmlinux 0xde9d7ce4 dev_load +EXPORT_SYMBOL vmlinux 0xde9fb84d ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xdeac3f2f sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xdeb8a120 simple_get_link EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdebdd74c dst_dev_put +EXPORT_SYMBOL vmlinux 0xdecf3920 xfrm_input EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data EXPORT_SYMBOL vmlinux 0xdedcb500 block_write_full_page +EXPORT_SYMBOL vmlinux 0xdeecd3bd udp_seq_ops EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup EXPORT_SYMBOL vmlinux 0xdf089e7f inode_to_bdi +EXPORT_SYMBOL vmlinux 0xdf08d7b6 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xdf160f00 sock_pfree EXPORT_SYMBOL vmlinux 0xdf1ea981 request_firmware_nowait EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit @@ -6697,76 +6689,75 @@ EXPORT_SYMBOL vmlinux 0xdfb58842 request_key_with_auxdata EXPORT_SYMBOL vmlinux 0xdfbbbb9c sb_min_blocksize EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcf952b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xdfd776ad tcp_check_req EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0xdfda453b key_revoke EXPORT_SYMBOL vmlinux 0xdfdb8538 vfs_tmpfile_open EXPORT_SYMBOL vmlinux 0xdfe29d11 __find_get_block -EXPORT_SYMBOL vmlinux 0xdff4e907 skb_copy_expand EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes EXPORT_SYMBOL vmlinux 0xe0001c64 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xe01f198b ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe0239eaa netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xe02ace40 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xe030d26c vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xe034a2e6 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe045a42b skb_dump -EXPORT_SYMBOL vmlinux 0xe057b2e1 skb_checksum_help EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xe075cac5 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xe06fa6ac tcf_exts_dump EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0822b5d security_path_mknod EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe0be3c0c tcp_seq_next EXPORT_SYMBOL vmlinux 0xe0c276a4 mtree_insert_range +EXPORT_SYMBOL vmlinux 0xe0e36eb9 dev_activate +EXPORT_SYMBOL vmlinux 0xe0fbc9d1 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xe10595c9 __tracepoint_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0xe11650a8 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe124a899 tccb_add_dcw EXPORT_SYMBOL vmlinux 0xe124d575 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe135113c xp_alloc_batch EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0xe15694c6 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout EXPORT_SYMBOL vmlinux 0xe15905b8 bioset_exit EXPORT_SYMBOL vmlinux 0xe15cdcae register_console -EXPORT_SYMBOL vmlinux 0xe165a97e security_d_instantiate -EXPORT_SYMBOL vmlinux 0xe187244d reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xe1b5212d block_dirty_folio -EXPORT_SYMBOL vmlinux 0xe1cc33a6 vif_device_init +EXPORT_SYMBOL vmlinux 0xe1d5f91d device_get_mac_address EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format EXPORT_SYMBOL vmlinux 0xe1e52653 tty_port_put EXPORT_SYMBOL vmlinux 0xe1e55556 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xe1f3fa9e sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xe20888ae netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xe20a81c4 secpath_set -EXPORT_SYMBOL vmlinux 0xe21005ee genl_notify -EXPORT_SYMBOL vmlinux 0xe2231ee2 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xe224be68 __ip_select_ident EXPORT_SYMBOL vmlinux 0xe2490f4b fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe24ddbb8 eth_header_parse EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2791f5a ip6_xmit EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0xe283f009 page_readlink EXPORT_SYMBOL vmlinux 0xe28faeba pci_unmap_rom EXPORT_SYMBOL vmlinux 0xe29d06e9 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc EXPORT_SYMBOL vmlinux 0xe2b7601e pci_scan_slot +EXPORT_SYMBOL vmlinux 0xe2c5b3f2 skb_seq_read EXPORT_SYMBOL vmlinux 0xe2ccf85a pci_set_power_state EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d5a2dd security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xe2e44711 seg6_push_hmac EXPORT_SYMBOL vmlinux 0xe2f299e5 input_inject_event EXPORT_SYMBOL vmlinux 0xe2f39e55 param_ops_ulong EXPORT_SYMBOL vmlinux 0xe2fb1c44 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe35a1c07 sk_dst_check EXPORT_SYMBOL vmlinux 0xe35b0989 unlock_new_inode EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup -EXPORT_SYMBOL vmlinux 0xe366fe93 blk_finish_plug EXPORT_SYMBOL vmlinux 0xe36999d1 submit_bh EXPORT_SYMBOL vmlinux 0xe377590e input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3b8cbc5 follow_up -EXPORT_SYMBOL vmlinux 0xe3bb9706 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xe3c65d15 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xe3cfd3bd flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xe3e9da6b xfrm_state_lookup EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 @@ -6776,120 +6767,113 @@ EXPORT_SYMBOL vmlinux 0xe41a9527 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xe4301102 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe437b8e1 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe4393f40 tcp_shutdown EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name EXPORT_SYMBOL vmlinux 0xe452da7f pudp_xchg_direct -EXPORT_SYMBOL vmlinux 0xe46cd801 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xe47a7d0e kill_litter_super +EXPORT_SYMBOL vmlinux 0xe4858e8f skb_checksum EXPORT_SYMBOL vmlinux 0xe48b6f2c filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xe48bbff0 __insert_inode_hash EXPORT_SYMBOL vmlinux 0xe494ae60 locks_copy_lock EXPORT_SYMBOL vmlinux 0xe4ad44f6 dquot_operations -EXPORT_SYMBOL vmlinux 0xe4b5be7a phy_aneg_done -EXPORT_SYMBOL vmlinux 0xe4c3bff0 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xe4d56b9c sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe4ba9855 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xe4bfc9d2 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xe4c171a5 dst_init EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0xe4e6f20c config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xe4e976f7 dcb_setapp EXPORT_SYMBOL vmlinux 0xe4f63793 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xe5045198 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste -EXPORT_SYMBOL vmlinux 0xe5109e50 inet_frag_find EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp +EXPORT_SYMBOL vmlinux 0xe52b54e1 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xe540d620 folio_mark_dirty EXPORT_SYMBOL vmlinux 0xe5413e23 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xe55202f9 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0xe55a2232 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xe55e7e94 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xe55f450a freeze_super EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch +EXPORT_SYMBOL vmlinux 0xe5736454 skb_copy +EXPORT_SYMBOL vmlinux 0xe57e3886 udp_lib_unhash EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next EXPORT_SYMBOL vmlinux 0xe5abe9f3 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0xe5ade02f ip_defrag EXPORT_SYMBOL vmlinux 0xe5b9457b _dev_printk EXPORT_SYMBOL vmlinux 0xe5b95c15 md_write_end -EXPORT_SYMBOL vmlinux 0xe5bf967b tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0xe5c5fdb0 generic_fillattr EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen EXPORT_SYMBOL vmlinux 0xe5e6753b pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xe61035dc inet_sock_destruct EXPORT_SYMBOL vmlinux 0xe615b2ff dget_parent EXPORT_SYMBOL vmlinux 0xe6238afe kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0xe62e7f5b vfs_mkobj EXPORT_SYMBOL vmlinux 0xe63a1b95 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xe63be580 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xe63d6124 clear_inode EXPORT_SYMBOL vmlinux 0xe63eabd6 simple_dir_operations EXPORT_SYMBOL vmlinux 0xe64316aa fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xe643e342 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xe6499ec2 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xe650a429 user_path_create -EXPORT_SYMBOL vmlinux 0xe65446a7 km_query -EXPORT_SYMBOL vmlinux 0xe6577d8b __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xe673a55d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xe67d33f0 tcp_req_err +EXPORT_SYMBOL vmlinux 0xe68b7005 tcp_peek_len +EXPORT_SYMBOL vmlinux 0xe6bd2e74 skb_clone EXPORT_SYMBOL vmlinux 0xe6c03845 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0xe6c5dfe5 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xe6c8d426 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6ef7d4d security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xe6d31ac0 inet_select_addr EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6f242ff phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xe6f7cf01 input_register_device -EXPORT_SYMBOL vmlinux 0xe6f976a7 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xe70586dc scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0xe70e184a xa_store EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe71be32c skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xe7200ff0 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xe759a588 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe7669ef3 sk_capable EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure EXPORT_SYMBOL vmlinux 0xe77bbf95 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xe7940816 neigh_table_init EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack EXPORT_SYMBOL vmlinux 0xe798236d jiffies EXPORT_SYMBOL vmlinux 0xe7a6acaa ap_send_config_uevent EXPORT_SYMBOL vmlinux 0xe7c359e2 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xe7c498d7 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xe7d04db7 folio_wait_bit +EXPORT_SYMBOL vmlinux 0xe7d3e4da xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7eead18 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe7fcfe72 nf_log_register EXPORT_SYMBOL vmlinux 0xe800a1c2 cad_pid EXPORT_SYMBOL vmlinux 0xe80d4eec vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xe80f6e80 file_open_root +EXPORT_SYMBOL vmlinux 0xe812f299 skb_clone_sk EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0xe81b59f9 dma_resv_iter_first_unlocked EXPORT_SYMBOL vmlinux 0xe827fb9a generic_file_splice_read EXPORT_SYMBOL vmlinux 0xe82a436f dcache_dir_open +EXPORT_SYMBOL vmlinux 0xe82b5524 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xe8332b4b __tracepoint_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xe845a804 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xe846323a rtnl_notify -EXPORT_SYMBOL vmlinux 0xe8508beb udp6_csum_init -EXPORT_SYMBOL vmlinux 0xe854cdf1 iterate_fd -EXPORT_SYMBOL vmlinux 0xe85935c0 inet_recvmsg EXPORT_SYMBOL vmlinux 0xe869d6d1 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xe870a874 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xe8886aca security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe8767509 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xe88a9e6f mark_buffer_async_write EXPORT_SYMBOL vmlinux 0xe8901e29 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0xe8907484 truncate_setsize -EXPORT_SYMBOL vmlinux 0xe89229b5 neigh_update EXPORT_SYMBOL vmlinux 0xe8a8b2ab folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8f2cd5c xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xe914e41e strcpy EXPORT_SYMBOL vmlinux 0xe92d3c1e bio_reset EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe95a5289 get_guest_storage_key -EXPORT_SYMBOL vmlinux 0xe96a2d40 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xe9787d28 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe9644027 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xe97a3110 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xe9832105 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xe98bc9f1 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe9916209 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xe994130a __xa_store EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum EXPORT_SYMBOL vmlinux 0xe99c2001 get_cached_acl EXPORT_SYMBOL vmlinux 0xe9aeaeaf flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xe9ba8632 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize EXPORT_SYMBOL vmlinux 0xe9c905c8 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0xe9d48eba filemap_alloc_folio @@ -6897,10 +6881,10 @@ EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc EXPORT_SYMBOL vmlinux 0xe9ff75c1 md_cluster_ops EXPORT_SYMBOL vmlinux 0xea17d0b7 debug_event_common -EXPORT_SYMBOL vmlinux 0xea276b5e inet6_ioctl +EXPORT_SYMBOL vmlinux 0xea2d360c scm_fp_dup EXPORT_SYMBOL vmlinux 0xea33c96d __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea5fe344 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xea683dc8 sock_cmsg_send EXPORT_SYMBOL vmlinux 0xea6c9d2d pci_iomap_wc_range EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea72246d lock_two_nondirectories @@ -6911,16 +6895,15 @@ EXPORT_SYMBOL vmlinux 0xeab69c99 param_ops_byte EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeafcec71 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xeb0272e4 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xeb08dbfd tcf_unregister_action EXPORT_SYMBOL vmlinux 0xeb2a0a7f kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xeb311d86 touch_buffer -EXPORT_SYMBOL vmlinux 0xeb33bdf9 sock_kzfree_s EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb6123d9 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xeb6a81fc xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xeb4d1638 ether_setup +EXPORT_SYMBOL vmlinux 0xeb53e3a4 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xeb5ec90f tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xeb632dc0 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0xeb7cf1b6 dev_uc_init -EXPORT_SYMBOL vmlinux 0xeb999914 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint @@ -6928,20 +6911,20 @@ EXPORT_SYMBOL vmlinux 0xebb46601 discard_new_inode EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xebd05b4f nf_getsockopt +EXPORT_SYMBOL vmlinux 0xebd9c3e1 inet_sendmsg EXPORT_SYMBOL vmlinux 0xebec8d53 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xebf03819 try_to_free_buffers EXPORT_SYMBOL vmlinux 0xebf16639 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xebf8981b blk_start_plug -EXPORT_SYMBOL vmlinux 0xec231fc8 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xec278e1a skb_clone +EXPORT_SYMBOL vmlinux 0xebf2c686 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xebf943a4 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xec29e4c7 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xec2aee79 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xec344d7a sk_alloc +EXPORT_SYMBOL vmlinux 0xec304d70 sock_kfree_s EXPORT_SYMBOL vmlinux 0xec407428 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xec41bf8b xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xec444c4c skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xec597589 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xec5da95d setup_new_exec -EXPORT_SYMBOL vmlinux 0xec695069 neigh_xmit +EXPORT_SYMBOL vmlinux 0xec71a637 unregister_netdev EXPORT_SYMBOL vmlinux 0xec76707f pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xec7906a5 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose @@ -6949,32 +6932,32 @@ EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and EXPORT_SYMBOL vmlinux 0xecaaa7e6 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8ba76 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xed106f7f pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0xed2eff19 config_item_set_name EXPORT_SYMBOL vmlinux 0xed4d82c5 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xed564276 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed7f571f jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xed8b849a __netif_napi_del EXPORT_SYMBOL vmlinux 0xeda55005 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xeda77dfc mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc8b458 dst_discard_out EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout EXPORT_SYMBOL vmlinux 0xede49b0e regset_get +EXPORT_SYMBOL vmlinux 0xedec43bc udp_read_skb EXPORT_SYMBOL vmlinux 0xeded4458 input_release_device EXPORT_SYMBOL vmlinux 0xedfc619d pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge EXPORT_SYMBOL vmlinux 0xee1dd7b0 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xee233b21 netif_carrier_on EXPORT_SYMBOL vmlinux 0xee2496d0 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xee28a9af sock_pfree EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3e7a75 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xee471c78 udp_seq_stop EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update EXPORT_SYMBOL vmlinux 0xee5b2f90 phy_driver_register -EXPORT_SYMBOL vmlinux 0xee7530d2 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xee7ce02d neigh_destroy EXPORT_SYMBOL vmlinux 0xee7e9f81 block_read_full_folio EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8c37fd invalidate_inode_buffers @@ -6984,95 +6967,94 @@ EXPORT_SYMBOL vmlinux 0xeea365fd mdio_device_create EXPORT_SYMBOL vmlinux 0xeea8c8db redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec8c590 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xeecfa533 eth_header_cache -EXPORT_SYMBOL vmlinux 0xeed26c93 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xeed0de68 security_path_unlink EXPORT_SYMBOL vmlinux 0xeee3efac vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xeef52689 d_make_root -EXPORT_SYMBOL vmlinux 0xeefbbf9d __netlink_dump_start EXPORT_SYMBOL vmlinux 0xef0bfdc0 fb_pan_display -EXPORT_SYMBOL vmlinux 0xef0f5039 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xef38fcdf put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xef3e33c7 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xef10ffdd xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xef29526f kfree_skb_reason EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init EXPORT_SYMBOL vmlinux 0xef56296b dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xef5a7398 bpf_link_put EXPORT_SYMBOL vmlinux 0xef5b70c0 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xef6028b2 ip_check_defrag EXPORT_SYMBOL vmlinux 0xef98ac15 pci_find_bus EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xefcbc616 tcp_recv_skb -EXPORT_SYMBOL vmlinux 0xefd6df65 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xefd0e401 blackhole_netdev EXPORT_SYMBOL vmlinux 0xefded308 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff2100f udp_seq_start EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0027739 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xf00dfbfd fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xf00e7f30 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0xf0127f75 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xf01a624d __kfree_skb -EXPORT_SYMBOL vmlinux 0xf053aa42 submit_bio EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xf0668e29 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xf06d91d9 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xf07788cb __fs_parse EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page EXPORT_SYMBOL vmlinux 0xf0b06063 bdi_unregister -EXPORT_SYMBOL vmlinux 0xf0b21dfa tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xf0b5297c kthread_create_on_node EXPORT_SYMBOL vmlinux 0xf0dec33e pci_iomap_range EXPORT_SYMBOL vmlinux 0xf0e0e428 dmam_free_coherent EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init -EXPORT_SYMBOL vmlinux 0xf0ec8f63 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf0ef013e param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data EXPORT_SYMBOL vmlinux 0xf104cd1b phy_driver_unregister EXPORT_SYMBOL vmlinux 0xf1156e1c cdev_device_del EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf11ff57a tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xf12aaea6 dm_table_get_size EXPORT_SYMBOL vmlinux 0xf1611fcf unregister_service_level EXPORT_SYMBOL vmlinux 0xf1680d11 fc_mount EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0xf17736a3 inet_offloads EXPORT_SYMBOL vmlinux 0xf179c239 hmm_range_fault -EXPORT_SYMBOL vmlinux 0xf182f443 qdisc_reset EXPORT_SYMBOL vmlinux 0xf1843671 mount_subtree -EXPORT_SYMBOL vmlinux 0xf1885629 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf19373a0 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf19380ad eth_mac_addr EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a4029c inet_sendpage EXPORT_SYMBOL vmlinux 0xf1a92059 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xf1adc6d2 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xf1d40773 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf1af584e unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xf1d992eb radix_tree_delete EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0xf21ce639 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf255d115 tso_build_data EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0xf25ed853 gen_replace_estimator EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf2924ef8 inet_protos EXPORT_SYMBOL vmlinux 0xf29520ab configfs_depend_item EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0xf2b64e87 blk_sync_queue EXPORT_SYMBOL vmlinux 0xf2bcf57c buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xf2c38162 pci_scan_single_device EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d4f612 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0xf2d64ba0 dquot_destroy EXPORT_SYMBOL vmlinux 0xf2db43d9 fs_param_is_path EXPORT_SYMBOL vmlinux 0xf2e03138 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0xf2e4f82b __sock_create EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf303dfb6 inet_confirm_addr EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf3142fbe netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap +EXPORT_SYMBOL vmlinux 0xf3235770 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xf32a0522 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0xf3413887 skb_dump EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3479fc7 udp6_set_csum EXPORT_SYMBOL vmlinux 0xf34a77c1 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xf34b7d2b netif_device_attach +EXPORT_SYMBOL vmlinux 0xf34fed5b skb_try_coalesce EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf361fa1c phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xf36b370f __netlink_kernel_create EXPORT_SYMBOL vmlinux 0xf38b29cf vfs_symlink EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default @@ -7085,17 +7067,21 @@ EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put EXPORT_SYMBOL vmlinux 0xf3f040f2 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0xf3f12e6c get_tree_single +EXPORT_SYMBOL vmlinux 0xf3f31721 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0xf3f3b41b complete_request_key EXPORT_SYMBOL vmlinux 0xf4005e05 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xf403f30d dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xf404bf23 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xf407c776 scsi_host_get EXPORT_SYMBOL vmlinux 0xf41f8ea1 pci_select_bars -EXPORT_SYMBOL vmlinux 0xf4257294 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter EXPORT_SYMBOL vmlinux 0xf43af0e1 may_umount_tree +EXPORT_SYMBOL vmlinux 0xf4488160 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44e673a tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0xf4604c3e pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xf4634a7d reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0xf46e7602 genlmsg_put EXPORT_SYMBOL vmlinux 0xf4703d6e ap_flush_queue EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const @@ -7106,129 +7092,133 @@ EXPORT_SYMBOL vmlinux 0xf49c51f2 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0xf4c5faad get_tree_nodev -EXPORT_SYMBOL vmlinux 0xf4d1fdeb sk_reset_timer -EXPORT_SYMBOL vmlinux 0xf4d9ac09 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4e8a906 d_invalidate EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0xf5128926 tty_hangup -EXPORT_SYMBOL vmlinux 0xf532e21a seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xf524b5cb inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xf5393313 debug_register_view EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf54de13b dma_resv_init EXPORT_SYMBOL vmlinux 0xf55e44b5 dentry_open EXPORT_SYMBOL vmlinux 0xf55e78fc blk_execute_rq -EXPORT_SYMBOL vmlinux 0xf567b5ca vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xf56d33b4 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xf5703e33 slab_build_skb EXPORT_SYMBOL vmlinux 0xf573e78d __vmalloc_array -EXPORT_SYMBOL vmlinux 0xf58fef11 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xf5b25fa8 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xf5b49fda tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf583e0e6 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xf584f31d ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf598c3e9 kernel_connect EXPORT_SYMBOL vmlinux 0xf5d1bd7b tty_port_close_start EXPORT_SYMBOL vmlinux 0xf5e0d1b3 scsi_report_opcode EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f7bf05 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xf5ffdbd7 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf6010813 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0xf617991f validate_slab_cache +EXPORT_SYMBOL vmlinux 0xf625c836 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xf627cb4e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf6291076 dev_lstats_read EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf6460472 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xf652abd8 rtnl_unicast EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf67bd2ef ns_capable EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6891467 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xf691eb89 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0xf6a38f27 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf6b48c6d dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xf6ba255a pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io EXPORT_SYMBOL vmlinux 0xf6cc580f md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf702c10e xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf706e128 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xf70860d2 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xf710bfef dquot_commit -EXPORT_SYMBOL vmlinux 0xf7115653 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xf71737c2 sock_no_linger EXPORT_SYMBOL vmlinux 0xf72e623c tty_do_resize EXPORT_SYMBOL vmlinux 0xf730e7fe get_vm_area EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73ba095 neigh_lookup_nodev EXPORT_SYMBOL vmlinux 0xf73c46fd from_kuid EXPORT_SYMBOL vmlinux 0xf73e3084 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted -EXPORT_SYMBOL vmlinux 0xf75f6c49 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xf7690769 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xf788332b dma_resv_fini +EXPORT_SYMBOL vmlinux 0xf78f719e inet_add_offload EXPORT_SYMBOL vmlinux 0xf79faab3 ip_send_check -EXPORT_SYMBOL vmlinux 0xf7a574bf skb_seq_read +EXPORT_SYMBOL vmlinux 0xf7a590d0 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xf7a621a3 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0xf7aadc14 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xf7aedcef put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xf7af9ba5 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0xf7d5f508 folio_redirty_for_writepage EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r EXPORT_SYMBOL vmlinux 0xf7dbdcc2 zstd_end_stream -EXPORT_SYMBOL vmlinux 0xf7fb100b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xf8033f90 neigh_direct_output EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf81f25ef napi_disable EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax EXPORT_SYMBOL vmlinux 0xf8280a0a jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84e176a netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xf852fec0 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xf855ad2f dentry_create -EXPORT_SYMBOL vmlinux 0xf85b0551 sock_no_listen +EXPORT_SYMBOL vmlinux 0xf861307f __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xf8769ba2 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xf87f3e38 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88c5c5b inet6_bind +EXPORT_SYMBOL vmlinux 0xf88eaccd nf_register_net_hooks EXPORT_SYMBOL vmlinux 0xf8aee09f key_alloc -EXPORT_SYMBOL vmlinux 0xf8b73bdc tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xf8bb10ef __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf8c5230f inet6_del_protocol EXPORT_SYMBOL vmlinux 0xf8c7ceb0 param_ops_bint EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8f2cb64 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var EXPORT_SYMBOL vmlinux 0xf9145dc0 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf92caa3d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xf92f24bf xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf950e025 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xf9542fb8 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xf96305af sk_capable EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read EXPORT_SYMBOL vmlinux 0xf9741404 param_get_hexint EXPORT_SYMBOL vmlinux 0xf983ecbf new_inode EXPORT_SYMBOL vmlinux 0xf9901961 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xf99355e7 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9d3d576 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf9a5fa41 skb_trim +EXPORT_SYMBOL vmlinux 0xf9ddaa53 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xf9e0302a __ClearPageMovable EXPORT_SYMBOL vmlinux 0xf9e16fd5 file_remove_privs -EXPORT_SYMBOL vmlinux 0xf9e44dc1 sock_gettstamp EXPORT_SYMBOL vmlinux 0xf9fcfeb9 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa084a29 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end EXPORT_SYMBOL vmlinux 0xfa1c059a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfa2fc882 skb_condense -EXPORT_SYMBOL vmlinux 0xfa355799 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xfa2822d7 sock_init_data_uid EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa4e75b1 tso_build_hdr EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5b9e3e tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xfa6cca76 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xfa7f9a63 ip6_output +EXPORT_SYMBOL vmlinux 0xfa88b7f2 dev_get_mac_address EXPORT_SYMBOL vmlinux 0xfa953d24 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xfa9dec07 udp_set_csum +EXPORT_SYMBOL vmlinux 0xfa9de883 dev_get_iflink EXPORT_SYMBOL vmlinux 0xfaa1b145 cdev_alloc +EXPORT_SYMBOL vmlinux 0xfaa780e4 __skb_get_hash EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaad9f9b mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xfabd424c skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xfabf9fb0 dev_mc_add EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user -EXPORT_SYMBOL vmlinux 0xfac7255d skb_store_bits EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfac8a584 udp_sendmsg EXPORT_SYMBOL vmlinux 0xfadae51d phy_read_paged +EXPORT_SYMBOL vmlinux 0xfae3c81e netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xfae5c303 blk_put_queue EXPORT_SYMBOL vmlinux 0xfaf8082d pmdp_xchg_direct EXPORT_SYMBOL vmlinux 0xfb106787 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xfb10fc81 unpin_user_page -EXPORT_SYMBOL vmlinux 0xfb1d7196 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0xfb276fea blk_mq_end_request EXPORT_SYMBOL vmlinux 0xfb307a14 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xfb37b36e skb_dequeue EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf EXPORT_SYMBOL vmlinux 0xfb39bab4 iterate_supers_type EXPORT_SYMBOL vmlinux 0xfb408103 __brelse @@ -7237,41 +7227,47 @@ EXPORT_SYMBOL vmlinux 0xfb602306 input_set_abs_params EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending EXPORT_SYMBOL vmlinux 0xfb92fb6b ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xfb9d6419 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xfb9d78a5 dev_mc_del_global 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 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcbc96e blk_put_queue -EXPORT_SYMBOL vmlinux 0xfbd3b7fd tcf_exts_change EXPORT_SYMBOL vmlinux 0xfbd660c8 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xfbd80fc1 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xfbda34cc dquot_quota_off EXPORT_SYMBOL vmlinux 0xfc18d3d9 sockopt_ns_capable EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc5e0cab ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfc522336 dst_alloc +EXPORT_SYMBOL vmlinux 0xfc5eb0cf netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xfc78e2a9 tty_port_close_end EXPORT_SYMBOL vmlinux 0xfc8c86e2 blkdev_put +EXPORT_SYMBOL vmlinux 0xfca02ad6 netif_carrier_off EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce39731 inet_dgram_ops EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq EXPORT_SYMBOL vmlinux 0xfd001a95 dm_get_device EXPORT_SYMBOL vmlinux 0xfd218550 pci_scan_bus EXPORT_SYMBOL vmlinux 0xfd284749 noop_fsync EXPORT_SYMBOL vmlinux 0xfd28fb8a ccw_device_start -EXPORT_SYMBOL vmlinux 0xfd54f4c7 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xfd4be2f9 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xfd4f85a8 sock_i_uid +EXPORT_SYMBOL vmlinux 0xfd73b73b neigh_ifdown EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xfd810b93 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0xfd81cb79 hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0xfd81f77f __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list +EXPORT_SYMBOL vmlinux 0xfd9ba0b4 rtnl_notify EXPORT_SYMBOL vmlinux 0xfdb7f6a9 finish_wait +EXPORT_SYMBOL vmlinux 0xfdbf5c30 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xfdc0638f __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xfdc8c84d vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xfdc98628 mdiobus_read EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdf00c62 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe09b5c5 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0xfe166312 folio_alloc +EXPORT_SYMBOL vmlinux 0xfe25f423 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0xfe452d22 fwnode_irq_get EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5b9267 bioset_init @@ -7280,53 +7276,57 @@ EXPORT_SYMBOL vmlinux 0xfe771463 __tracepoint_s390_cio_csch EXPORT_SYMBOL vmlinux 0xfe7c6837 __folio_put EXPORT_SYMBOL vmlinux 0xfe94629f blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xfebbfb9a skb_expand_head -EXPORT_SYMBOL vmlinux 0xfeda14c2 softnet_data +EXPORT_SYMBOL vmlinux 0xfebf9a49 km_query EXPORT_SYMBOL vmlinux 0xfedb85d3 request_key_rcu EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee71f29 sock_release +EXPORT_SYMBOL vmlinux 0xfeec2e33 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xfeef9974 pps_event EXPORT_SYMBOL vmlinux 0xfef3fe21 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xfef6baa5 kill_anon_super +EXPORT_SYMBOL vmlinux 0xff0085a2 unix_get_socket EXPORT_SYMBOL vmlinux 0xff078056 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xff1d4721 inet_offloads EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer +EXPORT_SYMBOL vmlinux 0xff3db5b4 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xff415954 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xff5610e7 inet6_protos EXPORT_SYMBOL vmlinux 0xff5a7486 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0xff64fe3c noop_llseek EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7aa3d0 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc EXPORT_SYMBOL vmlinux 0xff7ec0ff dma_fence_get_stub EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xffa699fa ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xffa94483 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xffbebf58 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd2e837 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xffd59c26 pci_request_region EXPORT_SYMBOL vmlinux 0xffd8abbe dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xffdabc8a netlink_unicast EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff93872 pci_clear_master EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x5d03e239 s390_sha_update EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xbb24e2e2 s390_sha_final EXPORT_SYMBOL_GPL arch/s390/net/pnet 0x315ed16f pnet_id_by_dev_port -EXPORT_SYMBOL_GPL crypto/af_alg 0x01382e6a af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x0ff030ff af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x1031e096 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x1b351ad7 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x1cb95872 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x283a38b4 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x28c8611d af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x429f401f af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x4797734a af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x562aa75c af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x58c05abd af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x63ddf461 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xce750b8d af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xdc48770a af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xe5f199bb af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xea8050ed af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xfb6fc32c af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xff2af026 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x0238769d af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x113db33b af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1db0f489 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x2037205d af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x206eafc3 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x758cc01d af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x78689e1b af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7ae8014b af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xbf8c690f af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xc2c9616b af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4dae0b8 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd46bcf1e af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xd56352a9 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xd6c6f8de af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4398d23 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xe585d4ac af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xea3ce1f6 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xf3285f30 af_alg_accept EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xec01fe8c async_memcpy EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x51594f87 async_syndrome_val EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x638073e4 async_gen_syndrome @@ -7493,18 +7493,18 @@ EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb0b53b74 i2c_mux_add_adapter EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf06364e1 i2c_mux_alloc EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x293969ff rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3df79be1 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4231da51 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x64834530 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x651af610 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67a7e72e rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7ba48261 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x929e7441 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xab7fdac5 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc69dd7b9 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd7fde26a rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfc9da18a rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1d8e7ff6 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x32e95862 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x49c1ff93 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x589c8e0d rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5be5bb84 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x735e9f80 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb30ba5d4 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbbf55e3e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcfbf09c0 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd6189ad7 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdd3c8656 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0296412 rtrs_post_recv_empty EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __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 0x0826e917 __tracepoint_bcache_read @@ -7766,60 +7766,60 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0063c627 mlx4_srq_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01544962 mlx4_map_sw_to_hw_steering_id EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x058b7c6f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df456f8 mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fb8d466 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1222a303 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14d1279f mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x160409c7 mlx4_qp_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cd27b0 mlx4_update_qp EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4becd8 mlx4_unicast_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bc212ca mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c1c48a5 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e69e3d6 mlx4_free_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2212668b mlx4_srq_arm EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22174ace mlx4_uar_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x230502db mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23bba35d mlx4_phys_to_slaves_pport_actv EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25e9079a mlx4_qp_to_ready EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x287132e3 mlx4_mr_hw_write_mpt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2880cfe7 mlx4_unregister_interface EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29661dd8 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eb6d8bd mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fcb5086 mlx4_find_cached_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313c6d23 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321269c7 mlx4_get_active_ports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x346df857 mlx4_uar_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d5a9c93 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dbdc4f1 mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e39fbc8 mlx4_register_interface EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x427d740a mlx4_multicast_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4311a024 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4432d91e mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4496a7a3 mlx4_vf_smi_enabled EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4508de7d mlx4_multicast_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45eeb518 mlx4_config_roce_v2_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc7bacb mlx4_unicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4de5a1a9 mlx4_counter_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4def6b9d mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f7a7dac mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1d5787 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5305b8ae mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57f387d1 mlx4_set_vf_spoofchk EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b663bbf mlx4_unregister_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x604959f0 mlx4_xrcd_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64136b04 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6418fd2b mlx4_slave_convert_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ccf0e6 mlx4_srq_lookup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65f36da6 mlx4_mw_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aaeadaa mlx4_unbond EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b7203bd mlx4_multicast_detach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6babe9ca mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d29aa6f mlx4_slave_convert_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e62659a mlx4_cq_resize EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f94e459 mlx4_srq_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7198b40f mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72317aea mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7751f0d7 mlx4_vf_get_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79edfc8e mlx4_mr_hw_get_mpt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d2460c9 mlx4_qp_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ea82724 mlx4_bf_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fb52289 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82517cf6 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83009445 mlx4_get_slave_default_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86cd11d5 mlx4_cq_modify EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87529fd3 mlx4_mr_rereg_mem_cleanup EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87721cb6 mlx4_hw_rule_sz EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e5a2a5c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f29d855 mlx4_vf_smi_enabled EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f7fa22b mlx4_get_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90fff3f7 mlx4_cq_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x924a9e99 mlx4_mtt_cleanup @@ -7829,6 +7829,7 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94dd83cd mlx4_srq_query EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d87b7f mlx4_flow_attach EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x981d1b5c mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ac0ba40 mlx4_get_vf_config EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bad616b __mlx4_register_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c2cc8f2 mlx4_pd_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c54f815 mlx4_unregister_vlan @@ -7836,19 +7837,21 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cd43e7f mlx4_ACCESS_PTYS_REG EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d34bbe0 mlx4_write_mtt EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dce76e5 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e98d6d7 mlx4_get_vf_config EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f8940ca mlx4_counter_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f976038 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa629d130 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c858cd mlx4_set_vf_vlan EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa84d75bb mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab4f3684 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa90d37b mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab2d7c5c mlx4_vf_get_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac93c62b mlx4_flow_steer_promisc_add EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae179f2f mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae1bad86 mlx4_set_vf_link_state EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb079ea79 mlx4_mtt_addr EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1b53db8 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1d72b53 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3d1cd40 mlx4_alloc_cmd_mailbox EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3ee58c7 mlx4_register_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb54af862 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7660aae mlx4_phys_to_slaves_pport EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c6e78a mlx4_qp_reserve_range EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8e6f8c9 mlx4_mw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb905b08b mlx4_unicast_promisc_remove @@ -7857,22 +7860,19 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf19cb67 mlx4_get_default_counter_index EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfba1385 mlx4_get_devlink_port EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06ee233 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc22cca7f mlx4_get_vf_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc455206f mlx4_mr_hw_change_pd EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5060780 mlx4_bf_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb2493bf mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0388dc mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd51e79e8 mlx4_phys_to_slaves_pport_actv EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd64b4bc2 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7a7b96a mlx4_set_vf_rate EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb3f6d91 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd657c75 mlx4_get_counter_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde3a85bd mlx4_mr_rereg_mem_write EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe31bbc2d __mlx4_replace_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4888449 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4aa588d mlx4_vf_set_enable_smi_admin EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe578181d mlx4_qp_query EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6624597 mlx4_mtt_init EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6a0bfde mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8248fb1 mlx4_set_vf_mac EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84c1dc5 mlx4_replace_zero_macs EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8e5fb1e mlx4_config_dev_retrieval EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xede38d9a mlx4_db_free @@ -7884,86 +7884,86 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb26fee2 mlx4_buf_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfde59f44 mlx4_get_base_gid_ix EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff2861e8 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0342a96f mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071e814e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00ad15e1 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0101ea4f mlx5_frag_buf_free 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 0x083fac18 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e912b76 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17052265 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267920b4 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2863830c mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29a786c0 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a75e3c8 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8cf788 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c257817 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303b1830 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30844d4d mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x326f98a3 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d675e9 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3847d5bd mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435bc1c8 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad0a5c1 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bfb82ac mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c127ffc mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e7d128d mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fe91eed mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5586ac0b mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58751c83 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66f19d6d mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69427e87 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d6a6433 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70b5df4e mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71ab75ad mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a50a53 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x079d51e2 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bbd8437 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f246805 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11400ba1 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15313fec mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x237e6f6e mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25f95fb7 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c12a1d5 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x390fca8d mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ec8705a mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x453f9d5d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499dc38b mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51560e80 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x524fc0ec mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53a8ca79 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c57d5ca mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e3f7c6f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x649d6ae0 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x658fe4b4 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660dca10 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fcdfee6 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75aa49b6 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7908eaa8 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ea4a1d2 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f9b8807 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fb5b14f mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e1debb mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x817b9245 mlx5_query_nic_vport_system_image_guid 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 0x8400e2f9 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841b4e61 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84585f76 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x850a9b67 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x889930de mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b5ef9a mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b596c5a mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cce9014 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92d31bc7 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93fc2c1f mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9458eded mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94fa4182 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0136d80 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0a72ddb mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e002e5 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa42f8268 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac243b6d mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaea6134c mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94d1049 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3ec3623 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca2ef39c mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8b45f5 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd22a8998 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f0b254 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd50b5366 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd72908c4 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd943079d mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb2ea61e mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde88d135 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe075d6bb mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe28b7701 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf24c8b10 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9107199 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9cf0117 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfab28dba mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcdfbd8b mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff6b9688 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/geneve 0x0b229340 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3b55c96a ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x49e34f0d ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8826a7af ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa7e8db07 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe43d9da6 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macsec 0xc468d869 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x931bfd31 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xba50e2b6 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd2d4ffca macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xef43acbf macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83462861 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8477fa51 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ae7646 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b637c4 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce696f3 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95b72ef1 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9655aeb6 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983fb7d8 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d91334b mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa02c50da mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa19d5608 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1ca8de5 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2fc5f67 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa508f476 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7794cab mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6ba422 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad959a60 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3f4f5f1 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb58175a3 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc244b868 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce0b098b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd09a1ee5 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3bbbb4b mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd72939f2 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd1365ba mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeb36a50 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf71abb0 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2d0a69 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeecd6925 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff90992 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf006438e mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf05f9676 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3305aba mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51b974d mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bba679 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb247401 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc6ca890 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/geneve 0x3b4e9622 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x127bb2f6 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2ba748d9 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x94798122 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc4985614 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe6e70193 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xbade06db macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2f602d09 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4ed2e525 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x81c18f4e macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xda3358ee macvlan_common_newlink EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x71c5e7c6 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/net_failover 0x28848f42 net_failover_destroy EXPORT_SYMBOL_GPL drivers/net/net_failover 0x2d1328ed net_failover_create @@ -8042,19 +8042,19 @@ 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/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/tap 0x056185cc tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x362d6556 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x44e3f40f tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x775cd379 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x7f85dbbb tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x85627e61 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xde7871b5 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xe8c7622f tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xf36d30a6 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x34eb21a9 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4083b5f6 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4db05d83 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb8452666 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/tap 0x288b8fa6 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x5e4d48db tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x61c0c30c tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x6642e10c tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x844d866a tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xd319b884 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xd8c78af0 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xdf95ecf8 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf1585c4a tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x0868e521 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x738f194d vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd9f6755c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xfe054b94 vxlan_fdb_replay EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x055078fe nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x3898cd06 nvme_auth_augmented_challenge EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4acb4907 nvme_auth_gen_privkey @@ -8216,39 +8216,39 @@ EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xb643fae4 qdio_inspect_input_queue EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xbbcc7a6c qdio_inspect_output_queue EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xbbe16290 qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x05806bf4 qeth_stop -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1147c4e3 qeth_set_real_num_tx_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1325aeca qeth_get_stats64 -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x290fef51 qeth_fix_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2b082aa2 qeth_resize_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x320e30b6 qeth_send_simple_setassparms_prot -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x33d63535 qeth_enable_hw_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3be3e1fe qeth_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x46757148 qeth_features_check -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x46c1e705 qeth_do_ioctl -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4dc1f258 qeth_get_setassparms_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5ee01084 qeth_set_offline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x61fcc48d qeth_vm_request_mac -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x659b62ef qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x709fd505 qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7c7045a2 qeth_xmit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80f7ea64 qeth_ipa_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x87d5fb91 qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8cebaf4f qeth_open -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x90973b81 qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa53aadc9 qeth_osa_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb4d05d78 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbb9ac12d qeth_set_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbd48e84c qeth_setassparms_cb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbfd81cf8 qeth_get_diag_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd2e2a435 qeth_siocdevprivate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe3e34a02 qeth_iqd_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xec1528e5 qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf06d4ce1 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf226458a qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfb196ac7 qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x35d54686 qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x2f207b17 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x06451ddb qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0dde0fe0 qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x19061a6d qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1e6d0817 qeth_osa_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x20117010 qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2946f507 qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3c9b2263 qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x428b5380 qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x49a211ff qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5056f51d qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x51835e4d qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5553f81c qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x562a30b9 qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x59c616c3 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x59e4b40e qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x59f0ad44 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5a508b30 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5f53f461 qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x71d76adc qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x79cec872 qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x96511275 qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9eb931ed qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa73736e0 qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa7d76b6c qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb03c5b3d qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb9ee867e qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xca6afdf8 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcd5f5139 qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd9181710 qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe454016e qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe6e5a300 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x58d469ed qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x0eab701b qeth_l3_discipline EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0329f4a0 fcoe_get_wwn EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1d8f9dee fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x280c8df8 fcoe_ctlr_device_add @@ -8276,169 +8276,169 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb9cf2213 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbf541475 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x032cd2ff iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0647ec0d iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e3ee7d1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x010fee6d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0700da61 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x075500ac iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e2568d8 iscsi_host_remove EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1435b0dc iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16294080 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b8d45fc iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x247153d6 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x253db0c1 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x298b7bd5 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29eef3ad iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32d37bce iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34d61ab7 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3923b76f __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39621dad iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1faab653 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3514df6d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x394f05e2 iscsi_eh_device_reset EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6805e844 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69c3ca54 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69fda599 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e6ae197 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71852e25 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74b2ae58 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7eadf5f3 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x827c9ecf iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84875f60 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84ed5ad7 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x872b3601 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8949597b iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b16a78c iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bd917b7 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3edeae74 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42c4fdcd iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45a4eae4 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a975fd8 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f9251ec iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65d62c9c iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67355866 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68b65711 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68fe619c iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ceed0a5 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70342a20 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x790da1de iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fa8f176 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81fde757 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x856d89dc iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x869a7a98 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87d58bfd iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8920805c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a0c81e5 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b9ea085 iscsi_conn_failure EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ddd1b47 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ed21e86 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa132c3a1 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa28de3b8 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb480d866 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6848adb iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0b413e4 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2b49048 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3156ed1 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd94b5bf8 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc19504c iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc1b4e15 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdce7d8a8 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe223270d iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe25a954b iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4270126 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e2ee780 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9958d02 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6e1a88d iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb74925b8 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8e77350 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbefb191 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd219875 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0058352 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3592633 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6bd65e6 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5afa4cb iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7d7386e iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc45d2ff iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe186c2b4 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3838d73 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe73230b8 iscsi_host_get_max_scsi_cmds EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0a3694f iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5f8cd6e __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc14dada iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff7b3a02 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07d53b28 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10523b72 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33b8e3f5 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3577ce1a iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b37776f iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x712ff062 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a242ef5 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91fa027b iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c8ab750 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa14d54e0 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab5c566c iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb50735d2 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe273c09 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4d29ee5 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2a5eb3e iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2cedab8 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb26b350 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ba7fd67 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f46c61c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee235bf9 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1e7e3ed iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf29b9149 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3196609 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdf04f8d iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x071c7055 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e883641 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e3414ea iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ec6c8e9 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42aab47b iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43da785a iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x724fd230 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8082f132 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90d3ce75 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb517c137 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc697a290 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7708155 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc79c3834 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca5652dd iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcf985f78 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb6219ea iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff7ec1bd iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x035247d4 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06d2362f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1040783b sas_execute_internal_abort_single EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2999e5f0 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a218945 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f3cb2c5 sas_lu_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3552e785 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37b705c1 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a48117c sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48be611d sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d498075 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38c46f5f sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45bd7ab3 sas_notify_phy_event EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54b3a931 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x691b23a5 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57436708 sas_abort_task_set EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b5b5192 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6cc4ea72 sas_notify_port_event EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e58cc78 sas_phy_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71479b77 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x738831b2 sas_notify_phy_event EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x762bf15e sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89f8e2e6 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7eac3247 sas_query_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b5f2cce sas_ioctl EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d7204c0 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9441ed87 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f834a62 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d9a4494 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa412763a sas_abort_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa558d25 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab9aec46 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba109fa5 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd386830e sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd55b500c sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd49850ec sas_unregister_ha EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd55fd468 sas_eh_target_reset_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe425a73d sas_slave_configure EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe54ba6bf sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf203967e sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7ebb08a sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe875d572 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf5e6bf5c sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7ed355c sas_get_local_phy EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf897420a sas_eh_abort_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa69014d sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfdac00f5 sas_register_ha EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xe123ab4e fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x000d9be1 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x061caaeb iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x076d4cd5 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08356b92 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14b760d5 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a68c3eb iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x263fdec0 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28068e97 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a0641d4 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31a077ad iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x371bc0ff iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07983eaf iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c8e260d iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16c00753 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c7f011a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ccc5ec0 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2117797d iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29932902 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e49180a iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3775d9e7 iscsi_post_host_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39c4f368 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c522d20 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fe03693 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49068706 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x580391e5 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ac730e3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e6b0968 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42746221 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b2925b4 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5021285b iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50620e47 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x577f4e6e iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bbb4feb __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d7f24ec iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dea4862 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x617c7767 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c98f8c6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e0cc838 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6911a9d1 __traceiter_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6af8ced7 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c65b596 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e7c86a3 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f204f4b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f2c2def iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7045bbc9 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69a17257 iscsi_create_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b1c74c6 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b5dce5e iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c036fcd iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c31eb64 iscsi_is_session_online EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x875ea345 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x882d9adc iscsi_lookup_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89f1e71d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d700acd iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ea060a1 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91c37de4 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96b3bdef iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96dcb0df iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa200eac9 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa628b861 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8968c4f7 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89e3bbf6 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ab91359 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c103031 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ca6a4b5 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96d8f61d iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9810c76f iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a9165ee iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c27a014 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4ddac22 iscsi_get_port_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa9a44a1 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 0xafa65259 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3bd42c6 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf6cae20 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb615052e iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba3c5ee4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb7c8166 iscsi_add_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1e8ff64 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc22d6d8 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf3e313c iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc46177d8 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0ef3f16 iscsi_conn_login_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5afc53b iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb5563b6 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd6ce4f7 iscsi_create_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6e6fad7 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefff388c iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf435cf1a iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5b6eb85 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee3869c5 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefe49886 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf02cba92 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf59a19b9 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf91b0032 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb882151 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfda767ad iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3224f09f sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x333a1b29 sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x59041626 sas_is_tlr_enabled @@ -8486,10 +8486,14 @@ EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xefee8fef slim_stream_free EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa1e250b slim_write EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc8b8a7c slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1d75dd25 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x253ace2d target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa3afb189 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcefcc052 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x08c5cbb8 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x23b1d1e1 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x36caf9f9 target_init_cmd +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 0xc3cc258f target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd4f410d0 target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe7b37d88 target_alloc_cmd_counter EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x19a78780 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x3a8af97c uart_handle_cts_change EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x65cc3c1d uart_get_rs485_mode @@ -8601,292 +8605,292 @@ 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 0xf121f324 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22bf402b nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x474d2012 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x67df70d8 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7e102316 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0577f937 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1748cf77 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3785c5d3 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5e764562 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x72b54b97 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7533b375 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x90a54911 nlmclnt_proc EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbc69f39a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcca6586c lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfc325959 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x003c4ce0 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01fdc072 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0024a5f0 nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x033bb221 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03dc175d nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0649f4f8 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06de6fa1 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x096b9837 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b1e1164 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b60146f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd3249e nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10220c56 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0497dc4f nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06945b88 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f903751 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10535461 nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1109fde8 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11da32fc nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12bb2b37 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e6780e nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1464284e nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14a12bd2 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1645abc0 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1688e221 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16cfb1aa nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1742a865 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x183ca218 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc65c20 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d0e06a8 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d0ef7a1 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21db2a3c nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21e87562 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12f1ce3f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x143e4428 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b3338f4 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b39617b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cbfe0d6 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb1b4cb nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2185f107 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22c080bc nfs_async_iocounter_wait EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23cb0a5b nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24701a75 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x235faf4a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x237e8da3 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23a4ef1f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2561649f nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25a8b6c8 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e46498 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b951c18 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2beb9446 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2daef2ed nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275a9d50 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb819fd nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x329623c6 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ba10f9 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3603bfa1 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365ab832 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39197fc6 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x393fcb11 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3144c5ad nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3215c5ca nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3272892e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x346a5d2a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34d68964 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f5c7c3 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x366614ec nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x387e94cc nfs_pageio_reset_read_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aee4364 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c847a42 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d628419 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ef16ae5 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aefd551 nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40374351 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fade253 nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44bb3074 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45da1bb9 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48455ca9 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b7d19c7 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c413e52 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x458a65da unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x478ff67d nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a65b28 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f2733f nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b8518a9 get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e09c5f4 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e385f9b nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52a9633c nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54fd082e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53a53f34 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53e4234c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5438d885 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55330da5 nfs_pgheader_init 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 0x5b360f02 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b46e39a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c40326d nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c70cca6 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb6cbfe nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d31b8f4 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x604de530 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60b672fc nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6391288e nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63db5296 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64482119 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f3abdd nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69586ac7 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69938f53 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69a6677b nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a113264 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bd9aa2c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c5d6965 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c641219 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ceee68e nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e7b522f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb94046 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605f778e nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x608c2df3 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62747c0e nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6408def9 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x650d44df nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67ec5c57 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x680b4a1d nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x688ffc76 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x689cd41d nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6aa77388 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab4bf35 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d38683f nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6eb5d547 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ed28069 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f93f92f __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a22ecb nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b7b372 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x730e3b5d nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x733b40e9 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76f48e75 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80317461 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82f868f4 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74501d91 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76330986 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b22dc1 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7e3de1 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7db0379d nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eaedb92 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f7c7622 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82f421bf nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83cb7058 nfs_sops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85746c39 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x864da679 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867f8620 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883022f3 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8922ac34 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8925e469 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893241f5 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896aad37 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e96ca8d __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87bbe80f __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ca6bbbc nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ced4d69 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f545745 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91b1c4cc nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x923e57e0 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x924a16fa nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x942ba6ca nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x972805d9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9601083a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98949104 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9895f90a nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a344bd8 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d78d69 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2ac553b __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa34491fe nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3589835 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4966ca0 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6db5594 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b923fa0 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bc80a03 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d8935ff nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e2e6f9c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa16d5cac nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4b4d4be nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5fcc503 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6d15976 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7e512dc nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9e4b217 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa6e5627 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaae5438f nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab15d3d3 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacc56cfa __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef36662 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3cffbb7 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6a2207e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8aee7c4 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc11cb82 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc7ab031 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd550a1 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae58d47f nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf1d577a nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafec9ca4 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb04e1acb nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0560fd0 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c826f7 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4df493b nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb58ebb03 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb62af133 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6b786eb __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7a228bf nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb897a8fd nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8b45aa6 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba971d33 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc488eab put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd27f8e9 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd41a88a nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd77be59 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda2882e nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc009b43b nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc25feda1 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2f8c699 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e0c458 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a40898 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a34a3e nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc9fb0e6 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcede225a nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03f5880 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a19634 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd33f5314 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3869e78 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd47cee54 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd60b6201 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0de8f2 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7eb463e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd8c45f2 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf939868 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd08a8d42 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0d7ec95 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6b54f21 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae65759 nfs_wait_on_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded36802 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe100d120 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe516465b nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5a9c876 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb463128 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddbcdd9c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded2348a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1aebdda nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2388af3 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3415df7 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3fbd3f4 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe89ff4ca nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xede712e4 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefc84558 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf25ef3e9 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38c64cd nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3f5038c nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf643db28 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d8e511 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf709c920 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf725131e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7216b41 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9763a2a nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb755e45 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebba439d nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebdeeec8 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf40f1888 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf65ad536 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf687e26d nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ef9849 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfac7ffcb nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaeb5996 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe454392 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea6dd04 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff609eab alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa64010 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffbd3187 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8c37aba9 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7c8045b6 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00270254 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x009bdb1a __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0158622a pnfs_ld_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07f39c07 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08f767e4 pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bfb2433 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e4a132d pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10a9fe39 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12eb19f6 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x132424c6 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15253c98 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x152558ea nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e247b7 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2664b251 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10c25af7 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10f916d1 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11cae7f5 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x123b08fb __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157206b3 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1834a431 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19206efb pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ca8a593 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f7715d6 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22fa4b3f nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25f9fee2 pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a5ea3c9 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x306b9a99 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31e24d8e pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39e4f3c9 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a966178 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43c80a95 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46604bb5 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x336893cb pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a69605c __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44b9b686 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46e03323 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a1d88ac pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a5bb85b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ae5cce5 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c4cca74 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cb8cea8 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ed87ef3 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fada49d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50201e04 nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x536c7302 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x537ebcda pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f3c226 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55da6c33 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56c13914 nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x596c20e7 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x586bf025 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6352eae1 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d13a586 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x608bbc68 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x610ca2ee pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x697af11a pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c371373 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c567882 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f54f1fc pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7437d779 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6db25b42 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74fcec0f __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x765ae685 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76b23137 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f0d3a1 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77cbcd67 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77d1eeb8 pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x790f4e85 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79fbe0d6 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a2da8ab pnfs_generic_layout_insert_lseg 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 0x7f3263f7 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f81f25e pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8078df87 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d5ac7f3 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7daa525b nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ea196da nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81581138 pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8452fcbb pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x898757c1 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b050e71 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9111a271 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930b2de4 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9711b7b1 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x858043bf __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a932de1 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fa8dee0 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9163c3d6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94f0688f pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95c8085c pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x978e6e23 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1855d1b pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1e8e275 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2ce35c0 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa47d9f95 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa74965dc pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8f9de0d nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9f97ca5 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaac2faae pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab2788bc pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae4e439b pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb57dc566 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb60dccb2 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb744b949 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa30e293b nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5f63276 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6cc0a10 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa87e69fe pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0f802e4 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb35b9bae pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6d1cc74 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb83e138b nfs4_schedule_stateid_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbab4410f nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf965b9 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc518a48 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe6f6597 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfb9bcd9 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba736087 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb028d98 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbea7ca02 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfa7c139 pnfs_write_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6328d76 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33d911a nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9468f75 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd972ea7 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb24c844 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb485478 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc9b0056 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdd2d79c nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcecdebbe pnfs_generic_write_commit_done 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 0xd1b884af __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd76e19cf pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7bde278 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda1db682 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda4fae85 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3c183fa nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbf87c6f pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xded6ec76 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe120b0fd pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe33e87cb pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5474f93 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe70a1254 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea0ca8a5 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb8cb645 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebaa355e nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb11310 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec78a53d nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedc1450c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed559c03 pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeec3ab50 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede8c87c nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeee98516 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefd19137 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf17f52ec pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf60ea7c3 __traceiter_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 0xf9eb6f3c nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa950fd7 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb4decf3 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfefce2d9 __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x450ae1ef locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x719ac42d opens_in_grace @@ -8895,38 +8899,38 @@ EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5496a698 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa1e53651 nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc6b584da nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa03a180f nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x03b7aa2f o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x157a0f77 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x334bde9a o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x468475e2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x8f8c1f53 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x32dcd683 o2hb_register_callback 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 0x63ecae7a o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x78dd3f53 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 0xa5a69aff o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8bacc18e o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa21898b8 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa61ae06e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa859b7c3 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 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 0xd3f64fec o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeb51f074 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/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 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2a2eca6a dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x524be8ad dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x59552d95 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x67a25f7a dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xadfa8740 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcbce4055 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd0ab9785 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88b6b690 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6b43543 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc8f1c857 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 0xf875c560 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeceaedf0 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 @@ -8983,940 +8987,940 @@ EXPORT_SYMBOL_GPL net/802/stp 0xe542636e stp_proto_register EXPORT_SYMBOL_GPL net/9p/9pnet 0x8e25887a p9_client_xattrwalk EXPORT_SYMBOL_GPL net/9p/9pnet 0xfcb4b34c p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/bridge/bridge 0x02a124e5 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x06a8f46e br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0dc8f23a br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1949be1c br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e35c37b br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a62a921 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x45ca5924 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a7d9c89 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x56f92c89 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b672c44 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5bb6b234 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69320c89 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6992610c br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x72fe1210 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ad309fe br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7da4dd55 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e8fa4ee br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x96ec0f37 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9fa27cb3 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa182d5e7 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5306916 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf9fafc9 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd432da4f br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb7276ce br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf015b814 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x005efbe1 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0339e173 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03d96233 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0aa28930 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2387d851 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2de1e2e0 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45137cf4 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52a4ad29 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52e0cec4 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d473c1b br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x663642e4 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b3c2b9c br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x941e376f br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b19f463 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b3f5b6b br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9fd86b51 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2946696 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa3bb090c br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb028c319 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc5a6396f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd69f6eaa br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe63d2a58 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe83bcae6 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeeefdfcf br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf945cf5d br_multicast_list_adjacent EXPORT_SYMBOL_GPL net/core/failover 0x14b15289 failover_unregister EXPORT_SYMBOL_GPL net/core/failover 0x9b8c8a40 failover_slave_unregister EXPORT_SYMBOL_GPL net/core/failover 0xdce3c730 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0825f326 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d873154 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11cdd793 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14f12b7a dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x224b6470 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24f47d92 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2987a2d3 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b35bd29 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2984e337 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b0fdb6b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x411448d8 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x57ec2465 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x539a4058 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5817a5cf dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a5d94a4 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c34f9b9 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ea59243 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f953bbe dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x795f92ce dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ace72d9 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7af47f0d dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d6636e2 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5afd4f5d dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6855f963 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69af6199 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69de91b9 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x76defe44 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x793414de dccp_check_req EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8169b5f3 dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93d43433 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x952c5321 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ac6afd8 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8de402e6 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa24c47cc dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa1a108f dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaaad451a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xab6f92f2 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xabe0edb9 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef355b2 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf79c260 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0432891 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ca6d14e dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0a7f6ff dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab258a81 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae73e270 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7ace9ec dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe0ca6fe dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0c86f0a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc69d6012 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4e0cf7a dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd80e628f dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9fe9ad6 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd68a182 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe30060c1 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8168b13 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xea571635 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xec93d16a dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee483a2d dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee527d97 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3fc654b dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x359f5a04 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5630108d dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x694d4af1 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa056ecf1 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc7c92f1a dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc981ea38 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4a80187 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe714a17d dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf6616600 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd811b9a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdb0b2ae dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfecc6f43 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x452f6f64 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9b937f74 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdfcd501b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf415b2cb dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfbd2668f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd04a4af dccp_v4_do_rcv EXPORT_SYMBOL_GPL net/ife/ife 0x4378ade2 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 0x9213f6bd ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x42a93736 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x56d60829 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe01fe81f esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x819c93b1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xa979a7f8 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x16ea9c68 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3c6ccdea inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c3bea9f inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7d2c9edf inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x868954ca inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc1e9a44f inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcf21264c inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe48dde21 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf14a7bdd inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6a1315d3 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20442cdd ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28c7f01c ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2cf9acfa ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x592c0f33 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5bcebdda ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5dd08705 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67d37c2b ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f720e68 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e6ba58c ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8b37daa ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb3dd9db0 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd07617f ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd15d1d82 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1cb4a1e ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf76b511b __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf8392f94 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfec89f0f ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xbc50cb51 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5e0d7a57 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x23313ec2 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9878081c nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xf3372e4d nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e814587 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8cf98db3 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x95c98fde nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa4552925 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa6a0feee nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc757b3b6 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdede855e nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x68fdf279 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x19caa1b1 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4890c3e1 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x51deedbc nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x659448d2 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x94a19bcd nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08d1fbbc tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x30e271b7 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x627825d0 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb0011c99 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc93bee60 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1bd04ea9 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x49f4cd6b udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6361654d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x82522d23 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa3deb2ea udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb7dc9ecf udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc0b845fb udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfef9a35f udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0bd1a0f1 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x251962e6 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2e6c02da esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2c29fed7 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2ee23fe8 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x60435beb ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x07f51f71 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4d1b206d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe15c15f7 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0164c378 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x453b516e nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbe2845ed nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x547811a4 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1012ae0e nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22fa068a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f35c0bc nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x97a21e6a nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa455a8bd nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc495d6b7 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf8ac6e77 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xef9a5310 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2d69836f nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf8303dd6 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf9af8cb8 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x6c8c657c nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8a85118c nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0029f609 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ad7820d l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b8d3658 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28750eb9 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d6e4ef8 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x515170de l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5668d549 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a15e9a6 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x79feed9e l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7bf0c4a9 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84160f57 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8835ae18 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9032f248 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4d8fb83 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa81fdf26 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7fc4bd2 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba093871 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca61510e l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe8ede4d1 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeacc9478 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe9e1d56 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xbb357fef l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1340284c esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1ccd4497 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf2576ddd esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x00fc6902 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xdd3adf71 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x217816ec inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x425eed2e inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x460e68ed inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6307f584 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6bedeefc inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9fb55129 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc82a68d4 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xedd04431 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfe0b29ce inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9df98935 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x041f5d21 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x188d0e04 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2066fcb3 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22c05520 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36357910 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c49aaaa ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x48dcaf79 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56114c0c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x69216c44 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x912974c4 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa17a1b15 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7cd3572 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0744959 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf15dc28 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd04debb7 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe560a55e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf000b4ae ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x017d64f8 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x48ff94c4 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x40fb15ad nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd79f834a nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x24b08572 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x01849c14 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x023b6561 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2bf8c094 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5793cbdd nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6f20b7e1 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8a98840b nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x96825e51 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x2d6f0c4c nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x62ca4948 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x69b28808 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6a51ba8c nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xafe84fde nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb1bb9a72 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x11ab7ece tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x38a32cfe tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6e800a92 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8cbe8b67 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb7d11448 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0574c7cb udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x28fa6ca4 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3643b6a6 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x44d59537 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x54f43cd1 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8a364d94 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcbd4913c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfa79c0a9 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x892de450 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb3d63092 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf6b182d4 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1b97c52a ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x448b79de ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x66965f07 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x088a3fb3 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x541ce991 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1fa72018 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0d227607 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7978230c nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc8de9b26 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7299fe08 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x59ec317b nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x64f0e8bc nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7a9367db nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8a0fa9df nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x95de447b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa8b58222 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc95c51ec nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xaa08ad25 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc7c3b693 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfa70cd75 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfcba0d77 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x43efb753 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf6d554f0 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ed8b48c l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b8c6af4 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38e5422e l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x39f98f70 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e15eab4 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3eaa4f9f l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fa249a0 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x583e05c2 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5aa651b0 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x610b2a0b l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6bca243b l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e198ede l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8dd76829 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7457216 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc7c0de91 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd047f52a l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6f6e239 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe0fb08b8 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe36eb7a8 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe95d8d72 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea46fc2a l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xa2118ab3 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x97826c4e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0450c1f2 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2fc309f2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3a784428 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x40593758 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7d2ce899 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x7d93ecff l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0a90ffb6 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1ed6a8d3 mpls_stats_inc_outucastpkts EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa7ebcb42 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb28dd18b mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc7476a02 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05401af7 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a86d3f9 ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x147a13e2 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1541c3c6 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a2cf79b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x197b8f7f 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 0x2b60bc89 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x305ccb95 ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4093e681 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c48bb36 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x735b6bfd ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b949e84 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52dc095b ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5da63278 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7068cbf6 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 0x7af9f058 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 0x8254de6e ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ae8e968 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b99d3ad ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90047785 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93e3d90b ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c00c30e ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f6713a5 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8ed032b ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaef80083 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd5d0eb4e ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe89b90cd ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf18bfc8f ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf88d35db ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0df33c50 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1dcd3e1d ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x203227ab unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x54eb2fe1 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0ecc029a nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x10828233 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa43d6036 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb0ac56f8 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc57a3bdc ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6e6da61 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb965e7c ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1880279 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xedc1cb2c ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfcf28df1 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffc450fe ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2497b708 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x505f32f8 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc46b1859 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfdd107ba register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2b853dea nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x419ab422 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9f055d9c nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xba20eec7 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf710f951 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x79734467 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcbc387f3 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe15c272d nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf808bf82 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0012058c nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0021e806 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00d7cc3f nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x052b8428 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0642e17d nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09d1bdea nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf80a3fe7 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x040d46f1 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05e8b4da nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08504197 nf_conntrack_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6f50c3 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fe022d7 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x123506ab nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18e3f89f __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1afaffd4 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f400329 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2529b132 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2586932c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eea4d8c nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x100b402e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10f3bb5e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12dee341 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18aa4faf nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18d79d4b nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x193c395f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x243c7026 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x253357b4 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x267f6a42 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26e102bc nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26e3dfe2 nf_ct_helper_expectfn_find_by_name EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29e4719a nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c94c4f9 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cfa02d3 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dfea31b nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30f26d45 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bb61459 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e33d03b nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41d161d4 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x444616a7 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45af3db8 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aa321ba __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x508b7e89 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5278c4cc nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52a87851 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5839585d nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5855a211 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9ccbc3 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2998d801 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ac654f8 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bb860ec nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c43c584 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d0bdb9e nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32964f40 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b0661ac nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x432667ef nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46f9743f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48223d1d nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b29dc48 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d903189 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f28859c nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f98b754 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fa74ca1 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52814381 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5965e534 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b640c39 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ecb4e76 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fc357d0 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6284f85e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x628e1b43 nf_ct_expect_iterate_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b5488c6 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70f0e2ea nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77b81063 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c735156 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c81a89a nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83bdb236 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84219dbc nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86ef031e nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8796ea9e nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x886062ca nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x892212a1 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a83dcc9 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ac1f186 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a280221 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a8eedca nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6adc0145 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d993824 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e9d9175 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74dfaf80 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77a9a8db nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a090e37 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e7aec64 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82b28d3f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85766af0 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86e5bd62 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87d0056b nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8988c6ab nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95b59a68 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97d34f7a nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a172e2a nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9abf0715 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3c36370 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9b7b4db __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad047232 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae91ecd8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x923aea8b nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9774b673 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ad9edab nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d17c7b nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf2f1c77 nf_ct_add_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6449259 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc5ebbcf nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd4453c9 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc01c6baf nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc05bf807 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc174e840 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc17a4789 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb58b9e0e nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb91d3597 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb97b87cb nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9c80f04 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb7b6b08 __nf_ct_try_assign_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc34ad086 nf_ct_tmpl_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6fce54e nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc851f554 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc995f203 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9ecfeba nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb380684 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb7ea7b9 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc65e4742 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc74d4aab nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb2314e2 __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcedf7e43 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf0093a4 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2f92549 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf6f15ca nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd23340f2 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd429c456 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 0xd5b3fc61 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5c76d69 nf_ct_tmpl_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda7f349c nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe30853b9 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6cebbe0 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe812248d nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebe0838d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec519913 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda90ecdb nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbfeab14 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf7198a5 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf870b91 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4c41146 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe52b4388 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6be8b10 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea16fd9c nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee8438ea nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee96045e nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0a88032 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedb9eff3 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0673931 nf_ct_l4proto_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2558465 nf_conntrack_hash_check_insert EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf64e8a44 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf655ebc6 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9fdec95 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb0e33ba nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf97e4b9c nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9bc7b1c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb854ded nf_ct_port_tuple_to_nlattr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff0dd005 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xac5a9cc6 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x118df2dc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x07e9ecc8 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbf27cac2 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeecc8f30 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8ce20786 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x994b6163 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x255712f4 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x25d81cae ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x53259f75 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6ceaf42b ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8d9faf6d ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x961df926 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe851a18d ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x728490ab nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x65c189a6 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4dfa3e94 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x528b6731 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x90db50e5 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1492d32d nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1899913a flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x22d2d8f1 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x293eb3d0 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31556b33 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x393448e3 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6af2b228 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7f179a87 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x90c6d137 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x92eb41e9 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbe15625f flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc866069f nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd799b108 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf0ea474a nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1829a55 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf5b56588 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf9ed71f5 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0a39ecf6 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20bc5f90 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2169d894 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x22314658 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x3fec2462 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc18411fc nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x8c17e0d5 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x883c2ff6 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad8d66bb nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x00a95e56 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x63aec825 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0707218e ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0eb44528 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x373991fa ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x812ea29f ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xac78d997 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb681d597 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe97ca85e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xd722e7cc nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7f5ac2fc nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb1509298 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb50e98b5 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc5c6c8c3 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x03cee1bf nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x165da019 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1c592c41 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2eacd072 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4003f3ee nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4bc5e5c5 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7885a946 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9231229d flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9892acf7 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbb328327 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc59be11d flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcd4cb083 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2708e9a flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeee8ad0b flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xefd9d45c nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf5758a98 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfc6e10de nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x05d09b7c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0b5ce9d7 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d929d11 nf_nat_masquerade_ipv4 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x801e3ab8 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b72b3a4 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8d0fd9c0 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96e19472 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd85e31d nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc1e66d39 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc23d6560 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5aacb8c nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc909dc59 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xca082cea nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf7dbef9 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1877618 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x431d70c3 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5dc9adf8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f3c36a0 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x73f71516 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x79a2a1b5 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7a4b6599 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x80c491e3 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82412ebf nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8f47578a nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa5469fe6 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb8cf86d8 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc25ccab5 nf_nat_ipv6_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xede621ef nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc75012c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7d9c8d1 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xea4f7176 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeea07bb1 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x12574629 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x13a21bc5 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1e0ccde4 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 0x3616936e ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3bb5514f synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x42cf4086 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6018d48d ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x762e6cda nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x93a22cdb nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa7430087 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbee0b5a6 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x547cae30 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6810594a ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7d99fb6f synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb2962b3f ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc36d2967 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc38827cc nf_synproxy_ipv6_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xce5a344c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe34937db synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf5d1dd4a synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0338a36a nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0fa20d46 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1280b9ec nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d6e8319 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22fed5c5 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a56ad11 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e892284 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xce26f1ed nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf48f50fb synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04ad27d1 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0541286d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b1a6a23 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d7a7571 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x210c5d79 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24b397ca nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24c30309 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2acb6b5e nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30940bf0 nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32af9664 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39ad2c22 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40cf9d7b nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4115afa7 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38caf05c nft_meta_set_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45f0693b nft_register_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x491d4eaa nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c412f6c nft_set_catchall_gc EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cfea055 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x502b4f7f nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x546a8c9e nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5612ba9e nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56b84e24 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9007a1 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60e5020c nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6117aa25 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6145c7a6 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62186355 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63b8159c nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72c8e31f nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7320b5ed nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77d03eba nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x816f2b2a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x840739a2 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d02c299 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x661cf0f7 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6abffc7e nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c7a2a0f nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f1b2f52 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x728f165b nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75353494 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b603ebe __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ff0abea nft_register_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8411dc76 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x946e8aa7 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa04bca38 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5fd4390 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb47b9223 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8b84ead nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc273ac21 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc41958f nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc74052a nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6247339 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85a31c37 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86f51490 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92e6e6eb __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x94a2b72c nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c10313e nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e8488de nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa32c2a7 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1b5842f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2dbe08a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb894fc3d nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5e7c798 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbeae124 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc2e305c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce6ebcc8 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcef7a672 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4c9b236 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6547421 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9d9d01c nft_request_module 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 0xe678afe4 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9d6e88b nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xebfe473e nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed7ee723 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeda36c1d nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0d0be41 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfdccacc2 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x394aec80 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x53820f71 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ccbb6f5 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec7c8779 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3ae95a5 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffe2a7fa nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2fb17fae nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3cdffd2e nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x48b6618f nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7327c5bf nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7aa0d1aa nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ae0b3b5 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc0258653 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6b0bd52f nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa7713491 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xad4c1fda nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb1514e8c nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x712d7248 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x87d32f31 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x39545ab9 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x55e110d2 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8aebddfb nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd42df0e3 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0702f321 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2a4288e6 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x370f2206 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x17d717e2 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x69001b98 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x85b0e60f nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb2a8da46 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf5eb1af4 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x8443436a nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0f3ad94c nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3a93b02d nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4bf2c18a nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa3f1d8e2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa66fdf42 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x15a5d386 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x25d74b24 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x75174999 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x97df31f8 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x380ff3b7 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc58ffa12 nft_reject_dump 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 0x0aeb28d8 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x217769ad xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29233843 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x380225ec xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x49392f76 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a010ae1 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5928581b xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6341c823 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x635c52ee xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x671b710a xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69e01418 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a59900c xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x785423fb xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0638e006 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0ad2a82f xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fd22208 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0ffcfd84 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1160222a xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f0bc7e5 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2dcdffdb xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x381b5eb5 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3fdbd16f xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x544ad393 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54f76aa0 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5b080b69 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6072cf04 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64f9bfce xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73126685 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74ebae2f xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x783ab88e xt_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 0x8ffa258b xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x923ecdeb xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92cc165b xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x983c7898 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8199351 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad4c1ec3 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3f5905a xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad3344bb xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb210bb53 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb4504141 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb7eaacce xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe64a82a xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc37e29a0 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 0xdbea9914 xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf237362f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf4ee9ba0 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4c3139a8 xt_rateest_lookup EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7a39887f xt_rateest_put EXPORT_SYMBOL_GPL net/nsh/nsh 0xd9630c10 nsh_push EXPORT_SYMBOL_GPL net/nsh/nsh 0xf693771c nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x30f6b65c ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x50d3c97f __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6b6099d4 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x86884dba ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x93d7fe9e ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdc6b109b ovs_vport_alloc -EXPORT_SYMBOL_GPL net/psample/psample 0x22d25ba3 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x9273a166 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xa978aaeb psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xa9ca6db5 psample_group_put +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x424e9176 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x65ab85bd __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7b370a37 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9c0aa5b3 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaa603f36 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfbf67f9c ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x2fdf1e5e psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x31cb8835 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x770bb7ef psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x99c4a8e1 psample_group_get EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x181f9996 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x19b9d3a2 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x04207d5b rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x06892cae rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x0831abf2 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x0c54869d rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x116808d2 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1471587a rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x289711cd rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x30882fb3 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x35ba98bc rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3ac5461d rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4273867a rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x458998de rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x3cebe79a rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x3fea76ba rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x41d903e3 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4b94e038 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x4cc0dffa rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4de86637 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x50051ce2 rds_conn_path_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 0x59d0e50f rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x621f8d6a rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x6b701adc rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x6eb5b100 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x6eca41f5 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x78487f84 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5fb6f517 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x72820028 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7ab7cc57 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x80e4337a rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x8d05389c rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x8debe465 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x9bc97162 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x9fb38148 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa1f1dd36 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xabc899fc rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xac582779 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb38e8fe0 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xb4d33c78 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xb9a0075d rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7e15380c rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8812be91 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa4d28db8 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xac895b81 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xae211a91 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xaf42cef3 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb11f603e rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xe1fcea9d rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf0025744 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd65df15c rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xd6706854 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd949fdff rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe19c2e90 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xe33d09fe rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf6a38c8d rds_send_ping -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3debda0f pie_process_dequeue +EXPORT_SYMBOL_GPL net/rds/rds 0xfa8ba8ec rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfbe23a93 rds_send_ping +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x48d43079 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf66ee8c2 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xfabf3a8c pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x03789bbe taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x1470c8e1 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x04468018 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0de29a78 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x25fbd12f sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6d060f00 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x05148248 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x15e48f94 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x1a42035e smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x2fdce0bb smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x6821d82f smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x786441df smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7c011a3a smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xaca7838b smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xd208d0d9 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xfeebe171 smc_proto -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1d074737 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x33c7052e sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x613bbea1 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x96390394 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe7b2945c sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x436945d2 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x52ec9b79 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x58e449ea smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x77bb3e6a smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x77e2819d smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x91b95493 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd6e2faf2 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf565cc10 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xfb042494 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xffb460e9 smcd_handle_event 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 0x57a25cb2 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x78f5b2f4 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa0d87ada svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5eebd5f3 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7d29b733 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc5bd243c svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0046b44f rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d9c009 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f7dec9 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0453371e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8cd0826 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000105d9 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002bdd50 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03d03ecf xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04957565 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04ee9e1c sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x051a87a9 rpc_queue_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05ec793d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05ec91b2 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f64027 rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x062aa0b9 rpc_ntop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a78acea svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0780a5e1 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a2eaee xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad211c1 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aeaf7ab rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c104b65 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fbcc1ab svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe3f636 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103889f9 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10cda9e2 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x113638a1 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146fea06 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d64f4c xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1686e7e2 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a04edc rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176deee2 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c71890 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c493cc6 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ccc41d2 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd3cea7 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1301e9c4 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1438af05 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15cd2b1b rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16059ef0 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f7eb47 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1731cc1a rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a2ef70 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19ddd8a9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a8a1c75 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8dc8c1 sunrpc_destroy_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2146cf3d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d015c3 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222e9977 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26432a86 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26adf121 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bedb82 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x283f10cd xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e907d54 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f3349d0 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x215e420f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21f5fe84 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23bf7756 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2571fce6 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26254ca4 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2756ace1 rpc_cancel_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29431a3f xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e38e51 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29fff0fc xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad36258 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aee83d2 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ce82ffd write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed80d06 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2efb2f7e rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f63595b xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c25a1e xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297f47c7 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2afd4d48 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc51678 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e021ded rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f22e7d6 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff208eb svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30a4fc31 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b11d47 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x324f9269 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c611cc rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a832e3 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f8e74c rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36129b96 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36535118 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a507e9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32513167 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x325cb5f7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x337a31ca xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3540261c xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37478c41 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37df0039 rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c9a8fc2 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d175bec svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dedf9b1 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f0ffe67 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39107fa6 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39421a20 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395bae89 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c5f2915 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb22f93 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f998f26 write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40a008cc rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x413ebdb2 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41db868d svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e83ae4 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427276eb xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a9c6cf rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465c0faa svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d5bacf sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x474caf6c rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d3606b unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ab80be svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a15b241 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aaa7bfe xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407a17b5 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x419de0bb rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4234c1be csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4269dca7 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42ef7b6a svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e95fc4 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4730b089 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488e4446 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f1053f svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f2cf61 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498e419c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b4c857 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4adf98f4 svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c075ab5 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4580b6 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cab66c2 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8e1719 xprt_unregister_transport 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 0x502a56f7 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50785c06 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f3c4abc cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x515ae69b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ad7414 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f3f36d xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52337bfd rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x532715dd svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54aed34e rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56062499 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56686716 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568ccfe2 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e44c37 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53729d1b sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x541c43ae xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5516a614 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551956d1 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5560fbcf rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55ae958d svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56fdb204 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b0d8da xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e486e5 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x586a6aa5 rpc_d_lookup_sb EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4fd598 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aead445 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bdaee24 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d682e1c rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd748a2 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6027b8d5 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af08c15 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e487aa8 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f22e4d1 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f9eace1 rpc_init_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60fd252a xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x612638ea rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c1d918 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c8610c rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62653c80 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x629164fc svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e60a98 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ac0e99 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6488a4d8 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6643ce4d xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67959ed4 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a56708 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69b16de4 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c94f71 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0e0cbc rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b48a075 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ba008e8 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c09afdc rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d24df7c sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbb5318 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x622b2517 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6481f378 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c6ac67 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x659f1301 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f4d3c3 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e4a7ea auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x692a515e svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a43230b rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3dfd15 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3102f0 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d164df1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e441c5d unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e7cc6a4 svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef4971d svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f15e6d6 xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b58378 sunrpc_cache_pipe_upcall_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f98eec rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732b4fbb rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7484e478 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782c0b18 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784d9004 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78da3366 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f737c0 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a84c09d xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4f2c39 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7ec16b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x751a14ba rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a9f733 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78574ff4 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793fb87c sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b75870f rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7badc526 svc_xprt_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dec8b8c rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816fd33d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x819d32a8 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822125ee svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8228c662 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82f6e0e5 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8346414e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84710099 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859db211 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e30741c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f92ac18 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fef8b5f rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8075ba64 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a7d91c rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83c09b75 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c8ddc4 rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873a30d5 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87dfe325 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x887cded4 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8892b10d rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88be57f9 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5ad44e cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b217397 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d545aa4 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91a8753f rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9372aca3 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ab0583 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947b9123 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94aad3fb rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x956c57a4 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958200a2 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96dcf6f7 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98523e29 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f6834c gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x991a6411 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9adbf119 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2a8658 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8ed226 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10f0589 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1714dc2 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27c1b91 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b9cdc9 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3a35f8b xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3df6b25 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5eb40bd svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6cbe627 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82a04ad svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d3fd54 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9c5feaf xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4743a8 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f343c4 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x865d16bc xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876c8ff2 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8848e5f6 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885a3247 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8968c9ba rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b31fdc3 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c063dc5 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d2ff1be sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92198281 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924df9ab svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92f5fc82 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942fe058 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x945e2333 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95851809 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95cd0e1d rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9766e5a7 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97811201 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988e5d58 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99246891 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa08e4d45 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0dc174b xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d2a55d xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b690f8 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa33eb04d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4e216ab bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa73d5d72 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa829b004 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8b1fb09 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8e03dc7 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac44d980 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac782e12 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaedc7501 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf140240 svc_xprt_destroy_all EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf794d0a svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafd49f28 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1030999 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1cce04c csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb235d498 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2c9d4d5 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb487a33c xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb510dd3e xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf617590 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb04dff45 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3af0c4c rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb525d31a xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5bbd0c2 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb70e1154 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c264c4 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9311d6c rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6d49da xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce042b7 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7b1d70 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb658cb6c svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65ad1e8 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb66ec2b1 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6739071 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a1c93c svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6faab17 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb738142f svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7dce999 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb89d93b7 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb93cc804 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0d6346 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfd5b6a cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd624fd2 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde2cff6 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe351644 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee35882 svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff20394 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc050dd83 rpcauth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d20203 rpc_pipe_generic_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12f69c6 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37319b3 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e24af4 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc58d5c49 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b76757 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc72683f6 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a78cbd rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8812b58 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d837f4 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83ce781 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8ce387b xdr_set_pagelen EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9099a1b rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca725f59 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa06d93 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbc6ed0a rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5e22b9 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc793811 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdab2373 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2ba437 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcabd21cc rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5a9be6 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb61b6bb rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbeb25b3 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca3193b xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd4da7c4 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce87e8fc rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec5a717 cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfaccab5 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ce4211 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e7dcd8 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1531cff svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd21b9912 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd583be1b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a47f50 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e906c5 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71bb997 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8b0755d xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ce3382 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda69176f rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc87a0fd svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd16395dc svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1aa6adb xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3edf365 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd43d429a rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d6b0be rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd603f355 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd63bcecf rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6903467 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74574e2 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd748fd89 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8242d43 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd86899cc xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8b60c38 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9683991 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda3df0db _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc55c966 xdr_stream_decode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0027429 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0029fd3 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01b0651 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01db78f svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5112c90 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe55383ff rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd90f83d rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xded9d8ee xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf28d838 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0171568 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe029307f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06bacd8 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09a5d14 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30c8d63 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe318cc3b rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40f3fba xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a3e6b9 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe514b5c3 svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe718aefa xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe81616b4 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe83d1af9 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe79ef5b0 xprt_destroy_backchannel EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c7dfe9 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0a6b0a svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb90b025 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec32c3ee xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec8e645a rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed40245c cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed725f06 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec9a448f svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeab2144 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede55cac rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee58ad6b rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeebd9b31 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef395af5 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef719c3b svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7cb8b1 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf03e5456 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf116ab05 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1613f01 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf19191a9 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2fed1db xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6236e30 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf77b4fdf rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeebcd586 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef9bb1ae sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf04d6c23 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0614d01 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf17e5f3f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2bc7cd6 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2f59bd1 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf457b9c1 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf463cb54 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf53d2546 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59afaec rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf677d269 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ce0342 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d8fc60 rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf82635ac svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9fe8ab3 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3251e2 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbb83692 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfccd808f rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfceb2357 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe2e0bd7 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe78bf3b rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeed04ce xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfefc8152 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff84db8c rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd75d06 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/tls/tls 0x96d353aa tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xa1104c6e tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xaa1bb596 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xbe9efeab tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c5a636 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc208f70 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc270144 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc390f7c rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce64dae cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe68480a rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfebcc8fa svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8793eb auth_domain_lookup +EXPORT_SYMBOL_GPL net/tls/tls 0x4d4a79cb tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x5797e596 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x720b81a4 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xc73c363c 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 0x157772de virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1969fed3 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ae36081 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28e9c250 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x441aaab9 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4800ea8e virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x485fdb55 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f2b6ad1 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59394f1f virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b8f64b4 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c4226ba virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7325cb88 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73c756bc virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74c49034 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e330369 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8665782a virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87c7c9e2 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b0e7c89 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a5528e5 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2464eed virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa321d3bb virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa585e196 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6c08287 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x047eb735 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a9f2d75 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x126a5432 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13d996a6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x166a1ee8 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ab1607f virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26606da2 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bea829d virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3996b826 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a7c876c virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45f24ead virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46878b71 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b5b3696 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f544f1c virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50ba8e11 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5260b136 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x56bb0a1c virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5895f444 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5cdb46f9 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ff91927 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x642d9685 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x652a58a3 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80a4c13f virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x821273a2 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83f440e5 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b34ac5e virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b5b0523 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91aace82 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94daae3b virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7217770 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 0xbb212d11 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc143878a virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1e7d805 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4f503e1 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc921ccb6 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd95f1d9 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefb09676 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3a13a78 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf494e9ca virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf76fd02e virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8e35d8b virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e6c4cc8 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe3bac53 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9c295d1 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf5385f1 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2eb4aa9 virtio_transport_notify_send_init EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x110d8a3b vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21b2d61d vsock_addr_cast EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x319b2d23 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x386a4729 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x347790b6 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3566caca vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38b540b4 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d0efb6f vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x488eb503 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x48199b4d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b7b7679 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52d588e0 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x824501c1 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87f808ec vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8832dcd3 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a6bc880 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e2bf335 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x72f09eeb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87121f0c vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x93abcca4 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa16530ec vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4bcb377 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xab1bdd23 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb14e8d8a vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb48d255f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb072b016 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb1cd22cc vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbaf1df99 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc9750a1 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd00a591 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc8636e5e vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda0df2d8 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd538322 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd8bad2f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe8ec982 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3477b4e vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcb0fa58a vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdde86f56 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6d96232 vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf31ed5e4 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfde7a04e vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed1faa69 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf91fe898 vsock_create_connected 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 @@ -9929,123 +9933,126 @@ 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 0x7831ef2a ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x796a3a7e ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc81a062f ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xedefea4f ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x72cd9ebf ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7bdc1a46 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7bf11de4 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab3b0dff ipcomp_input 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 0x0006382c io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x000a31b8 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x001bad29 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x001da9db perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x002de4f1 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0x004189ae dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00558a0b ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x0061cfac tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x007d1686 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x00831894 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x009c787c pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0x009ca6e2 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x00c15ba1 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x00a8a155 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00ad0d41 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x00e31d78 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00e90ea8 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x01014e7b msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x0110eb3a blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x011b4cfe blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x0128a846 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x01354261 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x013aae52 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe EXPORT_SYMBOL_GPL vmlinux 0x016ca213 cio_halt EXPORT_SYMBOL_GPL vmlinux 0x0188b58c blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x019ca9ce inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x01a2d1d2 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x01949f64 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x01c560a4 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0x01f6e9b3 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x01fb3052 virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x01fb98b9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0230386a xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x0237ea5e pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0251aca0 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x0289950b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x02946ebc fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x02973049 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x0297f243 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x02ba7aed mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0x02bec234 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x02eb9c92 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x02f3a072 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x02ba8629 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x02deafe4 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x02e6734d devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x02ff5c25 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0x031012d7 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0318387d xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034a8a4a pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x0351d1b0 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a0c253 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x03baedea bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03cd6b1d dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d08dc6 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x03d44e0e bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0x03eadd44 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x03fb9e33 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x04021110 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040b3c68 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x040bb0f6 switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0x0411f735 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x0421d919 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x042dd20a dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x043180ed sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0x044c2928 atomic_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0464f8b5 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x04716729 zpci_disable_device EXPORT_SYMBOL_GPL vmlinux 0x047f5ecd vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x0490aafb of_css +EXPORT_SYMBOL_GPL vmlinux 0x04906284 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04bf023b dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c62f61 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose EXPORT_SYMBOL_GPL vmlinux 0x04c906e9 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x04e1304f unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x04ef51ef dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x04f6722b crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x05180ebc __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0519f32c strp_init EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch EXPORT_SYMBOL_GPL vmlinux 0x052418d7 shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05347949 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x052c9c91 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0561fb19 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x058df9f6 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x05974968 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x05b94b69 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x05edda08 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x05f11a76 dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x05f66079 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0604fa6c tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x062d1955 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x06365cf3 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x06c1fb21 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06cfbdcd eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x06d6d2d3 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x06ef7633 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x06fac412 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x07140157 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x0725294f devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x07345308 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x073d9f87 mmput +EXPORT_SYMBOL_GPL vmlinux 0x0738fcf0 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x0743afd0 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint @@ -10056,50 +10063,45 @@ EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0x07fb07f5 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x0807de45 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x080bb261 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x083fe068 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc EXPORT_SYMBOL_GPL vmlinux 0x087e886d pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0x0890d3b2 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x08a01b02 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x08af2093 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x08b02901 xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x08b6b0b4 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x08c03796 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x08c5ae84 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08c94bf5 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x08db126a iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x08e2eb62 iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0x08e98726 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x08f5d3e3 scm_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x0908a517 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0914a03f tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09236351 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x09266dc0 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x093041bc gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x093d4679 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x0964ec15 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x098e382a crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x09a2004f blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09b98adc iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x09dfa85d lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x09eaaeb3 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x09ec7dd9 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0a0526ae sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x09e645ec ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x0a116347 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x0a234fab cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x0a4f75e0 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0a60642b sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x0a6185ec devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x0a621c80 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x0a80684c fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x0a949f45 blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x0ad16e41 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x0aea4125 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x0b06d017 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b0a3884 vp_modern_get_num_queues @@ -10107,31 +10109,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x0b1deb58 vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource EXPORT_SYMBOL_GPL vmlinux 0x0b333d93 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x0b43d037 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x0b44cf1d blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x0b57a5d5 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x0b7eae46 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x0b89658c pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled EXPORT_SYMBOL_GPL vmlinux 0x0ba139bd virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x0bb27ff5 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bd453ea __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x0bd60e1a __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x0be5d5c0 ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x0be625b0 __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bf7380b chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0x0c04b057 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x0c0a9c40 fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c356490 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c494e1c fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0c83762a netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca6b0f0 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x0cb6416b skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cd408b6 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cd698ad perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ccd95a8 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x0cdb5f32 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x0cea846a iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x0d11d103 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0x0d20dbdf pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x0d2caa2f vp_modern_set_features @@ -10140,72 +10143,63 @@ EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d52aaf9 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x0d64db4a nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d6c801d netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d7b75de dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x0d9a5df6 gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x0d9ced1e ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x0d9ee27b xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x0da7027e dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x0dc3ed98 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x0dc7d0d9 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dd86732 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0de2e7d6 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x0dedae48 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x0df39514 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x0df60880 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x0df7e4d4 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x0dfac6e2 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x0e00472b balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e3d66c4 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x0e491b17 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0eb26af9 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e9ee7aa skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x0eb763b9 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0eff4ad5 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f357e39 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x0f4d7a10 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x0f523a53 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x0f72ae1b netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x0f7432fa xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x0f8dde75 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x0f9fd4b8 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x0fc17203 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x0fd23d57 to_software_node EXPORT_SYMBOL_GPL vmlinux 0x0fd299f4 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fda10a7 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x0fe3259b mas_expected_entries EXPORT_SYMBOL_GPL vmlinux 0x0ff57933 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x10039c44 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x100a8112 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on EXPORT_SYMBOL_GPL vmlinux 0x101398e2 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x10215fa2 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x1034d8fa bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x104bcbe9 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x10709c50 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash EXPORT_SYMBOL_GPL vmlinux 0x10c33482 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x10c70329 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x10c6ae33 of_css EXPORT_SYMBOL_GPL vmlinux 0x10d05ee0 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10fe5dd9 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x11173b4c pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x112902f4 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x114c9514 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x116a691c tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x11a8aee9 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x11a9a638 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0x11b6c59c iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x11da35e2 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x11cc36d6 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e255bb trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x11e636bd ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x11ed3995 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x11f2c706 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x11fdb47e tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x11fdf4ce hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x11ffaca7 fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0x1213db81 crypto_hash_walk_done @@ -10214,8 +10208,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x123e503d pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x1269f611 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x12677e9f ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x126efe24 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1277e1f6 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x127af9ef fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x1281a61a __class_create EXPORT_SYMBOL_GPL vmlinux 0x129769e4 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x1297d055 vfs_get_acl @@ -10231,7 +10227,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk EXPORT_SYMBOL_GPL vmlinux 0x1344446a gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x134f90e4 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x13520458 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x1358b813 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0x1386555b md_find_rdev_rcu @@ -10243,25 +10238,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc EXPORT_SYMBOL_GPL vmlinux 0x13fa408f iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0x1404adbf blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x1415907d net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x1409483f find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x140953c1 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x140ae549 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x144c6725 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x145c31fc xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x1441de71 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x14642491 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1479da72 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x14995afd crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x149b7981 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x149ebd4d crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x14a8939c kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x14b0414a fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x14b2aa2c device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x14b56a44 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x14e31d72 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x14fac336 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x150d172e tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15539353 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x15693c41 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey EXPORT_SYMBOL_GPL vmlinux 0x15840981 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1586c992 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x15abef2c gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks @@ -10270,10 +10270,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x15c760d7 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x15cba8d0 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x15ce72e6 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x15d911d0 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x15e18dfd gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x15eb46b9 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x1635f28c mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x163e62b8 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x164561b9 device_get_child_node_count @@ -10284,6 +10282,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x16772a52 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x16b45478 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store EXPORT_SYMBOL_GPL vmlinux 0x16b81b26 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0x16b8f823 fwnode_get_phy_mode @@ -10291,80 +10290,84 @@ EXPORT_SYMBOL_GPL vmlinux 0x16ddea04 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness EXPORT_SYMBOL_GPL vmlinux 0x16f1f797 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x170bd91f peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x17368689 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x1743fd59 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x17601ebf xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x1774e119 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x1776f956 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x177795f4 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x177d22bb __put_net EXPORT_SYMBOL_GPL vmlinux 0x17903f07 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x179b4d6b fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x179c5886 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x17a1c916 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x17a72c90 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x17b76cd8 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x17b091d7 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x17cad69a firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x17dafbd9 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0x17de87d9 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize EXPORT_SYMBOL_GPL vmlinux 0x1804a49b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x1804a8f5 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x182432f3 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1824e233 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x1830326c register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x1864813c ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x18689799 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x18788a0d wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x1895175c kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x1895a760 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x189991d1 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x18b9006e devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x18cc9ca9 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x18d0ad97 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e78dff tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x18f55bf6 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x1900754e unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x190ca67f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x1920d125 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x19293324 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x19412921 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x1949b364 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x194ea493 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x19738d3d fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x19808dda unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x19848b0f virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x199b6f3b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x199c4de0 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x19b1f935 blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0x19b3d421 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x19b5a0bb skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener EXPORT_SYMBOL_GPL vmlinux 0x19f7cbf3 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x19fafbb2 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x19fdd853 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x1a061506 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a64bd05 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a76e6a2 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x1a89bffb pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x1aa0bf5d query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x1aa3cbca inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x1aac6df6 blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x1ab2784d iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x1ab489bd pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0x1ac47e43 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x1acca66d nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1adb4af4 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x1adda77c devres_add EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1af4dcdd phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x1af7cff3 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x1afaa99e l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x1b0f70f3 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0x1b16fc0e sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x1b3b1d9e fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x1b4a5795 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x1b5646ff crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1b67a0b5 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1bb6dc4d iomap_writepages @@ -10373,8 +10376,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x1bc87846 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x1bcb5e2c iommu_map EXPORT_SYMBOL_GPL vmlinux 0x1bda3f58 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x1be38437 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x1be64056 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x1c105b8a bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c2a816f fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x1c5378e0 device_get_phy_mode @@ -10384,40 +10390,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c971a7d component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x1ca0813c lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x1cadb2eb devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd31ffa xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x1ce69a6c kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2b4c92 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x1d403c5c shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x1d489415 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x1d922142 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d675d21 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x1d97a964 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x1d9da54b balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x1dba87a3 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0x1dbd3a5d virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1dbd63d2 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1dc34d42 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev EXPORT_SYMBOL_GPL vmlinux 0x1de237ba serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x1df2a563 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1dffebe4 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x1e08b725 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e11927a ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x1e159315 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x1e1d8cdb pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x1e323e54 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e87bcc3 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebab3c9 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x1ebb33bf __srcu_read_lock EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec3e82a sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee07fd0 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x1eee5baa device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked @@ -10432,54 +10434,53 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0x1f4e0727 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x1f54438e __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x1f559ddd dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ffe3f sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x1f68ab87 kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x1f720949 srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1fa06ccc __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1faedc20 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x1fb403c8 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x1fc9333d alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x1fbb1980 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x1fc22ee9 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x20047331 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2020fa7c virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x2046d924 dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x205ea6ac inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x205623b0 raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x209a24a3 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x20a8b96a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x20c7f526 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x20d87aba genphy_c45_fast_retrain 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 0x211e3caf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x21230a77 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x2137eb0d ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x213943fe crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x214331fc inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x21483c81 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x216284cb perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x217f1868 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x218271fe tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x21a51369 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x21a97c11 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b74b76 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x21b89432 s390_unlist_old_asce EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d83a42 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x21e5c880 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x21e7d4f7 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x21ea0ddf tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x21ef5009 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x21f8d95b ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x220d091b sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x2211c935 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x221576a6 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x221c6f39 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0x223e966a ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x22337000 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x22372968 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x223aaec1 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x22439ba2 sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0x22448f56 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x224f3efc debugfs_create_file @@ -10493,90 +10494,96 @@ EXPORT_SYMBOL_GPL vmlinux 0x22a50f5e zpci_mod_fc EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock EXPORT_SYMBOL_GPL vmlinux 0x22b8146b __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x22d217d5 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22da7646 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22f38446 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x2309bc63 ccw_device_siosl EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x230fe175 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x231383c7 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x231e2a39 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0x2348f82b skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235324aa bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x237397c2 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0x2378e622 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c153 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x2392732e devm_register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0x2398a895 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x23ade86a nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x23b53b7e gmap_shadow_page EXPORT_SYMBOL_GPL vmlinux 0x23d32898 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x23d895eb inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x242cea50 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x242f5b2a init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x243271e8 driver_register EXPORT_SYMBOL_GPL vmlinux 0x24535b41 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x24550316 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x2455994c strp_done EXPORT_SYMBOL_GPL vmlinux 0x245c53dd exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x24673e4e blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x24803a08 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x2484e3c4 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x248a35ba dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x24961855 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x24d62481 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e50c59 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x24e8bf0c cio_enable_subchannel EXPORT_SYMBOL_GPL vmlinux 0x25267ed3 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x25284add list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x2546a962 fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0x254dc38a tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x256097bd __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x256b716b strp_done -EXPORT_SYMBOL_GPL vmlinux 0x2592b886 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x2592ba11 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259766f5 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x25abbfbc subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c1f39d devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x25c379aa scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x25c3c13d skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x25ca3bd8 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2622c3c4 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x263500d1 __s390_uv_destroy_range EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x2653ca04 ZSTD_getErrorName EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26a63da5 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x2682e947 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x26a7b377 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x26b0b011 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x26c80e8d subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26ce982e gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x26d2c3d0 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x26d8c650 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x26d9f1da watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2700035e xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x27191ef1 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x271d2c26 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x271d6343 tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x273d19eb iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x2745ca8a sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x27477705 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0x275aaad4 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x275b9705 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x277863a8 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x27808a9d sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x278ba30e crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x27a9cc79 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x27aa78ec auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27b9034e netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x27c3c9d5 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x27d84227 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x281360b8 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x281c7f92 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x28568a8f receive_fd EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain EXPORT_SYMBOL_GPL vmlinux 0x2897d290 crypto_grab_aead @@ -10589,25 +10596,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x28cd23ed dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0x28e52fb2 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x28ec9ce4 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x28f50cf5 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x28f78a7c sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0x293f7691 dax_inode EXPORT_SYMBOL_GPL vmlinux 0x2963b020 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x29817870 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x299a8149 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x29b1d751 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x29cb90b2 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x29d1e99d iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x29df7ded ccw_device_get_chid -EXPORT_SYMBOL_GPL vmlinux 0x29e2c247 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ee7ed9 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x2a054602 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2a061223 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a15a8a6 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x2a492d4a crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x2a4cd435 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu @@ -10621,26 +10630,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x2abccb50 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x2ac0bc0e skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x2ae9b35e is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x2b02be69 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x2b256905 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x2b3c2c72 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x2b3dc60d ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x2b3fbac3 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b68d7fa device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x2b7aa44a vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x2b9f409a cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x2ba4e796 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bb02ba6 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2bd593b7 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2bdb3356 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x2be6b326 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x2c03150b kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c32358b ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c5eda29 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field @@ -10650,16 +10657,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc EXPORT_SYMBOL_GPL vmlinux 0x2c8bad56 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd57e xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x2ca303ce bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x2ca50dd1 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x2cb22529 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x2cb9f814 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0x2cd1a721 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x2cd92953 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x2ce854bb tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x2d090379 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x2d149c25 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts @@ -10673,7 +10677,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x2d871da7 gmap_remove EXPORT_SYMBOL_GPL vmlinux 0x2d8f038f tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x2d91ee8e misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x2dba1c01 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2da2c9e4 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x2db10542 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x2dd46047 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x2def96dd watchdog_set_last_hw_keepalive @@ -10686,28 +10691,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x2e6fb622 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebc2ce2 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec2e449 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot EXPORT_SYMBOL_GPL vmlinux 0x2ee7d14c hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x2efbd831 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x2f1c4e9d fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2f4c3a xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x2f3a7606 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2f3cf1da perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x2f3e23ed dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2f407a97 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f4c8fcf fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x2f4d16e4 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x2fbfce76 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x2f919506 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x2f9e990f bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd28c8b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2fdc43d7 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x2fe81f23 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x2ff241c5 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x3026b39a switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x302feb49 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x303023c1 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x304dd61a bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x3062bf9d dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy @@ -10715,40 +10723,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x30a0a428 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0x30a3136d crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x30c49215 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x30dbb341 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x30dd1682 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x30ffda44 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31079902 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x31170a72 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x311b819d tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x311b865b fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3144a46b raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x31571770 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x3158d1da anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x315b4adf xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x31673e36 filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x318d7edb bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31c15525 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x31d0b2e9 s390_reset_cmma EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x31db3c9e crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x31e55794 folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0x320429cc skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x3218ab37 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x323acb36 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x323d8ea5 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x32512e0e strp_init EXPORT_SYMBOL_GPL vmlinux 0x3253b48e devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x3257de97 restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x32a9f029 inet_csk_addr2sockaddr 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 0x32ed48c7 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x32ee5157 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x332a7495 register_ftrace_direct_multi @@ -10758,10 +10763,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x338e7b36 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x33956349 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x33c0fe0c encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x33ebf16c init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x33f8b1cb mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x33f90753 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x3409ec54 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0x3419f20d pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x342575d5 gpiochip_generic_free @@ -10769,30 +10774,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x3451038e kvm_arch_crypto_clear_masks EXPORT_SYMBOL_GPL vmlinux 0x345968eb kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x345a4913 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x3460c492 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x345f16bc __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x34880d88 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x3488e5a0 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x348b6eb6 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler EXPORT_SYMBOL_GPL vmlinux 0x34a3e09e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x34a724e4 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking EXPORT_SYMBOL_GPL vmlinux 0x34ebe638 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x34f6cee2 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x35059dbd ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x350d57f8 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x3510623a crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy EXPORT_SYMBOL_GPL vmlinux 0x353550e1 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x3540d58d pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x354395b9 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x3549d4fa fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x3555788b debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0x3555e6ec gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table EXPORT_SYMBOL_GPL vmlinux 0x356afa1a __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x357168fb cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x35727a53 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x3575a142 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x35910e09 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x35a09d1b vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x35a90bd1 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x35b104df mas_empty_area @@ -10810,12 +10817,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x369cafeb fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36a557a3 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x36a6b445 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x36a80452 gmap_mprotect_notify EXPORT_SYMBOL_GPL vmlinux 0x36bd03d1 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x36c25697 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x36dce172 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x36ebd60b perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x36f6a9a1 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0x36fd42f4 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0x371705b2 buffer_migrate_folio_norefs @@ -10826,16 +10832,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find EXPORT_SYMBOL_GPL vmlinux 0x37693504 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x37a132fd crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x37b19cc5 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x37b808f9 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x37bcffe7 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0x38164bc6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x381ee1f1 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x382519e3 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0x384c9f93 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x3851cae7 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x385b610d nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain EXPORT_SYMBOL_GPL vmlinux 0x387880e8 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init @@ -10844,8 +10851,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x38b4ff91 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x38c52ae5 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38f3e3a8 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x38f54bb4 io_uring_cmd_complete_in_task EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios EXPORT_SYMBOL_GPL vmlinux 0x390103f1 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x3913ce2b ping_bind EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0x3943a3b0 split_page EXPORT_SYMBOL_GPL vmlinux 0x3943eb38 gmap_enable @@ -10853,19 +10863,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x394678e7 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x394e517d kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x3965fbd0 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x396a3a8e devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x397407cf debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x398bcd13 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39e47926 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x39e914de dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x39ebf02e __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink EXPORT_SYMBOL_GPL vmlinux 0x3a037e36 dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0x3a0848da housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x3a0d292c tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a283b27 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x3a31831e pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0x3a337aaa crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x3a51c747 handle_fasteoi_irq @@ -10876,12 +10889,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x3a82ad32 kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3aa6a96c blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3ac50488 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x3adac4ba bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x3add9341 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x3ae03d40 xas_pause EXPORT_SYMBOL_GPL vmlinux 0x3af3ea65 sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0x3b16dda7 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x3b239b0d devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x3b5ed1ff kvm_arch_crypto_set_masks EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x3b64c50d gpiod_set_debounce @@ -10890,50 +10903,48 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b849ada irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0x3b86f143 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x3b893098 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x3b8bf3dd ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x3b8cfbd4 zpci_aipb EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba06ae9 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3bb007b3 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3bd43950 devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x3bdb368e skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bde406b ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x3be03a51 cio_update_schib -EXPORT_SYMBOL_GPL vmlinux 0x3be1d882 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c20d96f unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3c4c565c vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x3c5286f7 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x3c6395a2 pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c96e8dc sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x3cc5d8ad udp_abort EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3ccc187f fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ceed705 nl_table EXPORT_SYMBOL_GPL vmlinux 0x3d250d2c crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x3d339dfa pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x3d4da286 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d61e09e pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x3d6efcce dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x3d743174 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d93202c badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x3d979771 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dc52804 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3def47f0 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x3defe4b7 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x3e060c9a bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x3e1102d4 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x3e17de6e xas_find EXPORT_SYMBOL_GPL vmlinux 0x3e1ea2b8 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x3e1ec3f7 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x3e202b11 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x3e34bc7a get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x3e331c6e nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x3e425609 cio_tm_start_key EXPORT_SYMBOL_GPL vmlinux 0x3e67eb83 gpiochip_irq_unmap @@ -10943,11 +10954,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ea22dbf cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x3eb2aefb register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x3ec5e6b2 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x3ec933ee xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3ef0fc13 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x3eff80ce sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x3f58656c __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x3f2752a7 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x3f7869cf platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x3f7ee35e raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x3f802e8a __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f902e30 kvm_get_running_vcpu @@ -10958,7 +10970,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3fe26fc3 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fe9c527 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3feb2019 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x3fedf9c6 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x3ff3ad6c gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x4031fd97 cio_start_key @@ -10968,13 +10980,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x40467286 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x404f097b tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x40577059 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x40666953 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x40874404 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x40923130 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x40934ddb ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x40b7380a __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x40c4a43b cmf_readall EXPORT_SYMBOL_GPL vmlinux 0x40cdfb30 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x40ec33f5 platform_msi_domain_alloc_irqs @@ -10986,30 +10999,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x41132ea9 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413abf37 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4181008a inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x419b487a unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41b78afc dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41c7747d gmap_destroy_page EXPORT_SYMBOL_GPL vmlinux 0x41c7d89b crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x41cfa1ca tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x421c4762 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x42342f90 tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0x423b97a6 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x42468543 __sbitmap_queue_get EXPORT_SYMBOL_GPL vmlinux 0x4251c92a devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x42578a1b vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x4259bfac kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42bee41c find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x42bf58b5 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x42d69dfb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x42d8e0bf ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x42f36431 dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0x4301f8de unregister_ftrace_direct_multi EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event @@ -11020,7 +11033,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x432d3f26 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x4330f0f3 dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0x433ebc0a init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x43548c19 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x43785941 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x437ad635 pci_epc_linkup @@ -11028,6 +11040,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node EXPORT_SYMBOL_GPL vmlinux 0x43a59c0e sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b3aaa5 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x43b976e0 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister EXPORT_SYMBOL_GPL vmlinux 0x43ca954e yield_to EXPORT_SYMBOL_GPL vmlinux 0x43cb718c iommu_device_sysfs_add @@ -11037,12 +11051,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0x44112559 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x4424a5f3 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4436a3f1 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x447285a8 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x449b09b1 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x449ed763 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x44a42076 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x44a43585 class_interface_unregister @@ -11050,12 +11065,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44bc125d generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x44cbcbb4 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x44ce6cc3 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e05b44 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x44e0ccaa zpci_set_irq_ctrl EXPORT_SYMBOL_GPL vmlinux 0x44f91a72 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x45012bda cio_cancel EXPORT_SYMBOL_GPL vmlinux 0x4502414b serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45411e76 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x454a1dc1 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x454a4d14 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x456f2b49 devres_remove_group @@ -11070,28 +11088,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x45ffa6c0 ccw_device_get_cssid EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x4601e56f gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x460ffcf8 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4627bd1a sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x4643487c kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x46c36c5a wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x46c89c5d vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x46cffdc1 device_move -EXPORT_SYMBOL_GPL vmlinux 0x46e7174e ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0x4702ae29 pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request EXPORT_SYMBOL_GPL vmlinux 0x472bd31b fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x4735c96b init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x472cbee2 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x4740fa01 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x4742282f scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0x4746f604 cmf_read -EXPORT_SYMBOL_GPL vmlinux 0x4750201f ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x4751c561 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x4756765a ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier 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 0x47a32138 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x47a39529 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0x47b40366 fscrypt_parse_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x47c43c15 mas_find @@ -11101,12 +11119,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x481458d6 pci_ims_alloc_irq EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x483f1c48 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x484e5abd dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL vmlinux 0x486d1aa1 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x488f459d perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x4895a875 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x48abb50f __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x48ae8141 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x48b8625b pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp @@ -11128,8 +11147,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x4973ac98 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x498779d2 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4991aee5 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x49965656 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x49987ac3 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x4998849c balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x49b3ba5c bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue @@ -11145,38 +11164,39 @@ EXPORT_SYMBOL_GPL vmlinux 0x4a833f80 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x4aa013e0 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x4ae46477 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x4af7ad1a iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x4af90334 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4b06bb8c ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x4b0e479c shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x4b18500f perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x4b262b83 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x4b316c70 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x4b57f3c0 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x4b675fc7 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x4b7ac70c device_link_add EXPORT_SYMBOL_GPL vmlinux 0x4b7b74b7 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x4b845f87 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x4b8acf85 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x4b8ff372 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib -EXPORT_SYMBOL_GPL vmlinux 0x4bd194e0 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x4bab46e5 fib6_get_table 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 0x4bf19686 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x4c0003cf pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4c8b9692 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x4cac9d33 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb28c2b ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x4cb48cd8 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x4cc3d513 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x4cdba2bd nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4cf6ffd4 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d062750 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d2b410b rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x4d30c5a1 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x4d30e714 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x4d30efee bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0x4d402c9f fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get @@ -11185,18 +11205,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x4d773a9e devres_get EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid EXPORT_SYMBOL_GPL vmlinux 0x4d7dc77e crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4d8028ee sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x4d80cba4 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4d9f5f6d fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x4dc5e0ef phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x4dcad304 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x4dde2697 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x4dfb3f5f perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x4e0941b0 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x4e0ce2de __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean EXPORT_SYMBOL_GPL vmlinux 0x4e41e607 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x4e55f542 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x4e5ae942 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x4e5b77df xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7bed59 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x4e7fad92 fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x4e92a7e9 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x4e9761e1 scsi_eh_ready_devs @@ -11204,8 +11229,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x4eb261b2 ccw_device_get_chpid EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x4ec2c6f8 cio_disable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0x4ecc6f14 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x4ed759a4 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x4ec357b7 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize @@ -11213,36 +11237,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x4f1d5065 gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0x4f4a32a7 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x4f524e17 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4f5f14db bio_poll EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f6d5b62 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x4f7e5062 replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0x4f8121ff blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x4fa320b1 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x4f93d3dd phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x4f9f6a29 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x4fa32b49 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb8f427 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x4fccdf6e strp_process EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff8e50d inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x500b5b2f crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x50137023 vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x50191c43 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x5024c4c0 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x5024df1d relay_reset EXPORT_SYMBOL_GPL vmlinux 0x50333b3d synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x5036810d fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x5036b59b gmap_pmdp_csp EXPORT_SYMBOL_GPL vmlinux 0x504032a4 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x504279a2 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x505f9291 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50692075 xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0x50891fb0 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x508c7432 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509ae3d0 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x50c67c68 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x50d84e1e skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f4a77a __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x50f895ce pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x5107413a free_vm_area @@ -11252,24 +11277,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x515ad8fe devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x515ed417 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x51600cf1 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x5165296f uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51686aa0 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0x516fe50c sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x51733aa2 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0x51797eef dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x518ff079 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x519e367d input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x51c2a2d9 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x51c83555 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x51d3e8eb inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x51e51370 kvm_read_guest EXPORT_SYMBOL_GPL vmlinux 0x51f4c55f fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0x522b4ace devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock EXPORT_SYMBOL_GPL vmlinux 0x523b3d13 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x52474666 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x5247834d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x5251806c sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x528d610e crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x529baa2e appldata_unregister_ops @@ -11282,34 +11306,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x52d0c5e2 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put EXPORT_SYMBOL_GPL vmlinux 0x52da91df screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x531a1a4c sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x53180567 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x534cb398 gmap_shadow_r3t EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x53594937 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x5361f1d1 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x53707c7a pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x537ce7e7 devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x538d4fd6 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x539f92cf pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d8307e __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x53f4e5cd pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541e1b8b __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x5441703e proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x54679847 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x548a61b1 ZSTD_customFree EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54b79dc4 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x54bf5304 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x54d28192 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x54d62468 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x54da800d blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x54e62051 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0x55065982 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x5506e35f irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x5515d4e3 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL vmlinux 0x5519baa9 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x55236814 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x55279557 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5568449a blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x556a9ead xas_split EXPORT_SYMBOL_GPL vmlinux 0x55a4d9c3 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x55d4d04b driver_set_override @@ -11319,32 +11345,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x55fd73cf inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x561c6041 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x561f00b9 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5634cee9 inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x5663fbd9 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x568761bc ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x569e33e1 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x56a24498 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x56a6e174 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x56dc76fa disk_alloc_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x56dca3b7 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x56fadb13 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x571c03a6 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x57416551 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x574f76af inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x575f3184 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x57622695 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x578fec54 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x5791dd06 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x579d0641 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57a1c46c css_sched_sch_todo EXPORT_SYMBOL_GPL vmlinux 0x57c06a55 inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57c3a33a ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x57e9925d watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x57f0eb24 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f9e571 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x5802dfce __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x58034505 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x581d8d98 __dma_fence_unwrap_merge @@ -11361,25 +11388,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x586e2367 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x5882ff0e vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x588703ce switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x58843565 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x588eb254 gmap_create EXPORT_SYMBOL_GPL vmlinux 0x589c9f31 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x58a13346 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x58a68c77 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x58be7f82 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e47607 crypto_grab_kpp EXPORT_SYMBOL_GPL vmlinux 0x58f31f10 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x58f60ce0 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x593fa2c2 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x592bfb3b strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index EXPORT_SYMBOL_GPL vmlinux 0x5970e6be badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x598603cb __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x59a9590d tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x59aad781 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x59c17180 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59cc4266 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59e19b2e tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59efb76e pci_vpd_alloc @@ -11389,14 +11417,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x5a08b51e bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x5a0b4167 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a180c47 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a237706 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0x5a27f3ff pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del EXPORT_SYMBOL_GPL vmlinux 0x5a671672 percpu_is_read_locked EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7ad375 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a92a0f0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x5ab91dd0 disk_set_independent_access_ranges @@ -11404,15 +11430,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ae968cb dax_region_put EXPORT_SYMBOL_GPL vmlinux 0x5af09d6a ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x5af102ef blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0x5af37750 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5af123de perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x5b164321 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b2bc741 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x5b2d1b19 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x5b34840a iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x5b37daf7 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x5b4b70a0 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b77818f blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x5b89c749 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x5b93f1e7 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x5ba197d6 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free @@ -11421,76 +11448,74 @@ EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc21c0b gmap_get EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd1d9dd raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x5bd674f4 xas_load EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bebabfd skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x5c0bed51 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x5c266b04 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x5c7217ae filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c893345 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x5cae1e4a is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start EXPORT_SYMBOL_GPL vmlinux 0x5cbe9a85 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cededcd kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cf0939f xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5d051559 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x5d5428b9 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5d158b82 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x5d6b2f1a tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x5d6e043a devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d96111b bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da82008 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5da84357 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x5db5934d fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x5dc610bd fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x5dc9e529 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x5de8fd39 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x5df6796d devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x5dfc3be9 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x5e0b15eb get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x5e13d03c dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e36d89a inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 EXPORT_SYMBOL_GPL vmlinux 0x5e558fb4 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x5e71a785 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e858e97 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x5ea060d9 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x5ea2c228 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x5eb12026 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x5eb289ea strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x5eb5a39f devl_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ece6552 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x5ed5acc0 folio_wait_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x5eda7251 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x5f161a14 dma_resv_describe EXPORT_SYMBOL_GPL vmlinux 0x5f1f03ae pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0x5f1f970e iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2f1866 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x5f3c9695 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5f429278 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x5f43a679 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x5f55a575 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x5f63b26c blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7e778a __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x5f8fbd99 dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x5f92fcda irq_domain_create_sim 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 0x5fbb77de perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x5fca29c0 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x5fd4259e pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x5fdb9983 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x5feb3e5a mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x60213fa0 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604b899d nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x60899067 inet_hashinfo2_init_mod @@ -11500,8 +11525,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x60a26dda cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL_GPL vmlinux 0x60b9e5f3 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x60cba6f6 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x60df257e switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x60e2930f firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60ebda70 iommu_register_device_fault_handler @@ -11521,12 +11544,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x6195c125 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x61a7a1a1 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x61ad8659 sbitmap_get 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 0x61e875bc sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x61cbc363 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x621106cc ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x6227efb0 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule @@ -11536,40 +11559,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x6249ca9b pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x62535dc6 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x628007a1 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x62ac8eda __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift EXPORT_SYMBOL_GPL vmlinux 0x62bc4ca8 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x62bc65a6 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x62c1a21d platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x62eb97d0 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x62e56fe6 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x63064097 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x6308cc66 crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x6316bd21 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x63290dc8 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x632cd412 sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x632ef3ff sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x634f0ccf pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x63510fe9 dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x63611312 fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x6379dd0b sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x638d6bba inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x6380b008 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x63912479 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x63a123f3 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x63a3eea0 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x63b08cd8 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x63c920b4 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x63f63785 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6435f3c3 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x643e4d3e validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x64473fbd fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x64640d6f crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x64699807 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x64816c6b relay_close EXPORT_SYMBOL_GPL vmlinux 0x64953be4 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x64a190ca fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x64ac83b2 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x64b5a886 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x64bc1743 mmu_notifier_register @@ -11578,6 +11594,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x64fa4d89 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x650cc143 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x65342f5d do_unregister_con_driver @@ -11585,18 +11602,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x6572a5c4 bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6579c00f crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x65afd5ea netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x65be4153 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x65c84b48 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x65c9640f ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cf2824 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x65dc1ef7 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x65de3021 stack_depot_snprint -EXPORT_SYMBOL_GPL vmlinux 0x65f7a83d skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x65fde71d kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x66097752 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661dbee6 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x663c825d devm_gpio_request @@ -11605,13 +11620,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up EXPORT_SYMBOL_GPL vmlinux 0x66ba053b kick_process EXPORT_SYMBOL_GPL vmlinux 0x66c19df3 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x66d66460 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66df0d36 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x66df930b device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x66e73b9c debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0x66f1d8ee iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x66f9db7e dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x67145bb0 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x67244820 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x67278c44 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x672a2f1c pci_stop_and_remove_bus_device_locked @@ -11621,14 +11636,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x67808e5c set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x679811e6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x67b9a367 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x67d6052b inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x6802f4de irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x6810b291 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68449466 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x6848db3a mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x685904b5 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x684aa76d perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x685e2600 kvm_s390_gisc_unregister EXPORT_SYMBOL_GPL vmlinux 0x685e73c3 cpu_subsys @@ -11641,16 +11657,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x68a0c9c1 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68c971ff sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x690b08de __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x68cc7c27 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x6918f50c sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x69305104 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x6930554e raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x693b37a1 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x6940efee sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x694249a1 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x69466c41 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name @@ -11659,30 +11673,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x69ba2f53 kvm_s390_gisc_register EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69f1df3e __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x6a333b8f iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x6a3ca020 __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4a4d81 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5c2bd8 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start EXPORT_SYMBOL_GPL vmlinux 0x6aa6ed55 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x6afd3dcc sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x6b02ffe9 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x6b070e51 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x6b0e68e1 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x6b2a5875 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b7e9620 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x6b7faa28 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6baa1f9f ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x6bc2e2a5 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd99d8a pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x6bddd153 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x6be05c72 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x6be88c5a cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x6c1566ca kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0x6c236b74 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x6c315b3c blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x6c33381a rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x6c35ff52 evict_inodes @@ -11690,10 +11701,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x6c4967e8 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6c49c97c transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5cb00f do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x6c64d854 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x6c65cc17 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x6c74779b gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0x6c81b8cb inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x6c878b5c kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain @@ -11702,23 +11713,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ceac29f gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x6cfb96f4 sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d1678c1 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x6d18c430 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x6d2334b6 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x6d242168 tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d412dcd irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x6d4314fc gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x6d4f10c9 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x6d52f025 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x6d54e278 zpci_register_ioat +EXPORT_SYMBOL_GPL vmlinux 0x6d6016f7 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d72b61d md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6da38d6e platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6df6d347 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x6df9d469 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x6dfd7bbb trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map @@ -11734,12 +11745,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x6eabccd5 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ee73ad4 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x6eee2d97 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x6ef02b47 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f0956d8 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x6f0b5a96 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f36408e nf_queue EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x6f7df2d0 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action @@ -11748,10 +11762,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fb216b9 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x6fb320fb __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x6fb99d47 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ffaf605 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6ffb185b tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x700c8470 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x700f2394 set_selection_kernel @@ -11761,16 +11775,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x70832bef synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x70841b28 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x708f6a15 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x70964c59 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x70986901 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x70a2db82 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x70aafa2a nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x70bd6fd2 srcu_notifier_chain_unregister 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 0x70da604f cio_start -EXPORT_SYMBOL_GPL vmlinux 0x70deb4cd nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0x7105788d driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier @@ -11779,34 +11790,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x7174f903 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x7192e02f l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x719f8aa8 gmap_unmap_segment EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71d92513 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x71db8a02 kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x71e5c82e crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x71f2a943 iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister EXPORT_SYMBOL_GPL vmlinux 0x72298f8c __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x724df274 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x72431cb7 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x7259a120 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x7262aa4e of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729d19ff sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7283fc62 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode EXPORT_SYMBOL_GPL vmlinux 0x72b77bb5 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x72bfd0c4 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x72ea8259 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72f77bbd xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x730fbb2c component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0x731843b2 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x732a184a tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x7334483c s390_uv_destroy_pfns +EXPORT_SYMBOL_GPL vmlinux 0x733b3122 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x7353c3f7 gmap_shadow EXPORT_SYMBOL_GPL vmlinux 0x73540244 dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0x7380f520 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x73a499a4 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x73abee90 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0x73ca0e53 genphy_c45_baset1_read_status @@ -11814,70 +11827,65 @@ EXPORT_SYMBOL_GPL vmlinux 0x73d80d52 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x7411064d page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x7420ab74 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x742e2755 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x745dda35 gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x745e96a1 s390_replace_asce +EXPORT_SYMBOL_GPL vmlinux 0x74aea1ab bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74c6925d dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74e8cd73 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x75261b36 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x754ee089 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x7561d8a7 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x75617ea8 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x756cb52f tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x756f1354 kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x7583502b __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x75851f50 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x75920e04 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7593dd52 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x75a4a950 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x75c23f40 task_active_pid_ns 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 0x75edf7b3 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x761cd232 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x7631e1b2 blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0x763e1623 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x7641c19e crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x7641db1c dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x764b6835 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x766cfc79 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x767715b0 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x767e980a xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x76986244 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76b93f84 add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0x76c51430 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x76d3810f anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76ef5588 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x772af59e find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x772cbe0a folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0x7735cdd4 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x7736a3b1 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x773ef1fb srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x7765b165 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x776be7ac rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x778608a0 kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x779900a1 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x77a690cc ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x77bb60d1 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x77dee81b tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f2406a ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x77ff0529 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table EXPORT_SYMBOL_GPL vmlinux 0x78142cc7 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x782a4ac1 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x7835c7ba phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x7838a1dc fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x7846c4b9 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x785232fd device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available EXPORT_SYMBOL_GPL vmlinux 0x785f4e83 pci_assign_unassigned_bridge_resources @@ -11885,34 +11893,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty EXPORT_SYMBOL_GPL vmlinux 0x789ac67e __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78addaf3 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x78a03134 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x78c400ab raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x78f71e33 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x78fe9e75 alloc_memory_type EXPORT_SYMBOL_GPL vmlinux 0x7900625b get_ccwdev_by_dev_id -EXPORT_SYMBOL_GPL vmlinux 0x79033d4c sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x79084acb skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x790dadcd devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0x7912b0d7 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x7920ece1 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x7930662b gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x793b553f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x793fa357 inet_twsk_put 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 0x797fa691 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x79864b8f msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x79b9198c device_register EXPORT_SYMBOL_GPL vmlinux 0x79bfc908 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79ece3d4 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a3f440d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a5dfc48 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x7a63c2e1 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x7a7dba08 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a8f8e30 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x7a94e264 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x7a990400 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x7a9b6003 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x7aa97e66 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x7abb7471 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7acc9068 pci_disable_ats @@ -11922,26 +11929,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x7af0844e dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow EXPORT_SYMBOL_GPL vmlinux 0x7b06e535 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x7b18d0c9 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x7b3b77e6 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x7b3c0639 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x7b524c91 locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b623328 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7b81d733 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7b848175 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us EXPORT_SYMBOL_GPL vmlinux 0x7ba4f7da gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7ba7a756 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x7baa9681 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb94856 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x7bc85908 dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0x7bcda317 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x7c0d06a9 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x7c25ea64 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7c304367 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x7c35182d pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine EXPORT_SYMBOL_GPL vmlinux 0x7c514ca9 __traceiter_sched_cpu_capacity_tp @@ -11951,38 +11957,39 @@ EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7cab2385 appldata_register_ops EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb29781 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x7cc8c8cf crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ced7ba1 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x7cf154e4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x7d2fd2ee tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x7d52136e genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x7d6059c7 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7d60eae8 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x7d89da22 mas_store EXPORT_SYMBOL_GPL vmlinux 0x7dae466f posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x7db679ca mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7db2376c perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x7dd04b21 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7de1b3e2 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de4296c fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7dec5ff7 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7df3449f register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x7df69a99 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x7dfd5eca irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7e2b678e sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x7e31385f fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk EXPORT_SYMBOL_GPL vmlinux 0x7e4dab3b __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x7e6562f1 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x7e661c3c __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7e79c61a tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e7eb6ef pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7e81f136 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x7e8d341a rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7eae3dc1 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ed0f712 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x7ed9d79c bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x7f0d7163 skcipher_walk_aead_encrypt @@ -11996,6 +12003,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x7fc9a025 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x7fdb1528 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x7fe8bdf6 zpci_kvm_hook +EXPORT_SYMBOL_GPL vmlinux 0x800d3603 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x80191322 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x802ee1c1 ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x803639d8 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x804778d8 kobject_rename @@ -12009,86 +12018,83 @@ EXPORT_SYMBOL_GPL vmlinux 0x80ab8048 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5533e bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e2863f ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x80f153f5 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x80fe3908 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x810cb004 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x811582c6 dm_audit_log_bio EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask EXPORT_SYMBOL_GPL vmlinux 0x814c49bc scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8156622b pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x81661bd2 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x81798e52 ping_close EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8196fce3 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x81973f96 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x819c4315 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b0048f devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x81d84dc7 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x81de34fb tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x81df17b1 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e90ee6 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f78dc3 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x822b330e irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x82334294 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x823cfa9d pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x82617fd2 device_add EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create EXPORT_SYMBOL_GPL vmlinux 0x82833df0 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x829aad49 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x82ae808c subsys_find_device_by_id EXPORT_SYMBOL_GPL vmlinux 0x82b59c0d fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82d4a068 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure EXPORT_SYMBOL_GPL vmlinux 0x82dee399 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x8309605f iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0x831ce44b fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x831d248a lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833a230b sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x83479647 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x8347e287 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x835a406c netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x836021cc gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x836af842 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x837c29e7 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x83857b16 hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x839c82c7 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x83a58951 synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x83b20f07 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x83b8d309 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x83e21d98 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x83ed2083 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x8404bdd0 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv EXPORT_SYMBOL_GPL vmlinux 0x8414de85 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842a0198 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x842c87bf fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x842e65e2 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x84603c48 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x846f73a5 mas_store_gfp +EXPORT_SYMBOL_GPL vmlinux 0x847d96ae udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x849e2bc5 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x84b0ff38 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x84c1f077 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x84f57a47 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x850270a3 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x851bfb39 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8559cd8c skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x85676ef3 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x85772851 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x857f6910 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x859568e0 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x85a2d4c2 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x85b286c0 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0x85b93d17 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x85b9b2f4 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x85c0574c unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x85e0b4d9 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x85fa87f3 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x85d75bf7 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x85ff40c9 dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0x86066912 pci_debug_msg_id EXPORT_SYMBOL_GPL vmlinux 0x86098ffb __scsi_init_queue @@ -12102,9 +12108,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86a6da65 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x86d4f188 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x86dd8b88 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x86f3ecbf register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited @@ -12114,34 +12120,32 @@ EXPORT_SYMBOL_GPL vmlinux 0x8735cbd6 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x8739d352 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x8745bb47 cio_tm_intrg +EXPORT_SYMBOL_GPL vmlinux 0x875816da inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x87592f9f pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x875f6043 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0x8771412b crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x8774cbc9 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x87800ba9 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x8792c2a5 component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0x87b7030f __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x87b78c01 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x87e0ff87 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x87e1c0bb sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x87e32be5 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x87fef0ba devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x880058db gmap_convert_to_secure -EXPORT_SYMBOL_GPL vmlinux 0x88023b27 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x8805e475 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x88234bd6 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x8834dc64 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x8840ee39 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0x88419822 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock EXPORT_SYMBOL_GPL vmlinux 0x884a59b0 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit EXPORT_SYMBOL_GPL vmlinux 0x8863a470 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x886f0f96 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x88b0fa33 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b84606 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x88bfd864 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x88c01e8c relay_flush EXPORT_SYMBOL_GPL vmlinux 0x88c704d5 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x88cc53e7 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x88da1513 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state @@ -12154,37 +12158,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x897d873f vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x89851375 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x89865400 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x899223b1 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x8996c1f2 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x89b83798 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x89bd3469 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89c77b63 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x89da4932 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x89e71304 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify EXPORT_SYMBOL_GPL vmlinux 0x89fb400f kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0x8a125a17 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x8a615a20 __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0x8a67b0c1 clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x8a6890b8 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts EXPORT_SYMBOL_GPL vmlinux 0x8a86580f dm_put EXPORT_SYMBOL_GPL vmlinux 0x8a8c8d5e fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x8a91637f bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x8a95bf33 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x8aad51ee invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8ab88628 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x8af7b2fa iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x8b007350 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x8b0a7c2d tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x8b0c30b5 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x8b17ae4d crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x8b3b2bfa fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x8b3bd064 check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x8b691b13 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x8b692dc6 fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x8b6dd148 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x8b730aaa netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8b9fa9a0 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine @@ -12193,63 +12197,59 @@ EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c1564b5 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x8c17836f __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x8c1822d1 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x8c1a139d ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c51c64b perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x8c4e21b9 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x8c55b41a crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x8c5cc0be crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x8c75a97a sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x8c77f974 page_endio 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 0x8ca98c2c ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x8cafc4d4 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x8cbcdb22 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x8cc02163 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x8d0629c8 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d1b15b2 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x8d46182c irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0x8d46f5a6 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x8d470dd9 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d4f2b18 mas_pause EXPORT_SYMBOL_GPL vmlinux 0x8da896f3 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x8dccdb8b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8da91969 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x8db3c38d xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x8dced12b input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x8dd683a8 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x8def61cc bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x8df92675 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x8dff18ad device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x8e05c1b7 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x8e139936 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e1597d3 dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x8e2cc759 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x8e49a83f __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e588cac user_update EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6c45fd perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e77570f sbitmap_queue_recalculate_wake_batch EXPORT_SYMBOL_GPL vmlinux 0x8eaa846b misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x8ec11d01 kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x8ec42090 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x8ed0d264 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x8ed541c1 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f107e1b udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x8f302141 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x8f3c2ac0 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x8f48794b gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x8f517d85 cio_clear EXPORT_SYMBOL_GPL vmlinux 0x8f58a8c2 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8f5dc658 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x8f679e85 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f702ff7 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f844a59 css_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x8f8ac82b inverse_translate @@ -12261,24 +12261,33 @@ 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 0x90088907 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x9012b5ee fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x90183979 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x903296a2 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9043e4bb __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x9049b427 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x9050bfa3 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x905fc1a1 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x9094cbd4 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x90b7719c ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x90b882d8 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x90dc57ca devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x90dcfd53 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x90e29d36 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x90e336cf ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x90eecbde kill_device EXPORT_SYMBOL_GPL vmlinux 0x90f46ba3 driver_attach EXPORT_SYMBOL_GPL vmlinux 0x91198f46 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x913a02ed task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0x91571be5 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x917bd48e nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x91922768 devlink_net EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x91a0e667 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval @@ -12287,48 +12296,51 @@ EXPORT_SYMBOL_GPL vmlinux 0x91dd330e fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91f63227 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x920dc463 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x922162ce fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x926f1c81 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x927cfb58 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x9285b157 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x928cd30a __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x9296c382 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x929a3bc8 msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0x929d0cb0 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter EXPORT_SYMBOL_GPL vmlinux 0x92c4d24a generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x92cdfd59 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d599e3 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0x92f50ada component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x930f25ac relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x9319d234 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x93247f45 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932d6144 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x93316535 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x9335222e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9339799b dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x933eeff8 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9350ed69 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x93679d99 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x936c7caf perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x93706d21 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0x9381d641 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x939060c4 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x9390d0fe blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x9391a607 kvm_read_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x9395b66e subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x93aeb4ed relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x93b6f021 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x93c7bf90 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x93cd3f54 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x93ec8776 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f2c18b irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x93fb6913 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x9400831e ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943c37e3 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x9440b985 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x9452d6b9 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x94673a24 tcp_abort 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 @@ -12336,30 +12348,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949da900 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x949dc76b fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x94bb5ece nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x94cc0392 blk_mq_quiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x94d08c05 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0x94d2cc67 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x94db22d9 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x94d6b716 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f5b878 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95095ed9 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955230fa devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x95891b49 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959c3c51 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse EXPORT_SYMBOL_GPL vmlinux 0x95a62ebc pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x95bdb154 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x95d9c60d device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x9604b092 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x960850e6 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x9609413a pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x96130f15 request_firmware_direct @@ -12368,9 +12378,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x961cc880 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x9620aed7 msi_domain_get_virq EXPORT_SYMBOL_GPL vmlinux 0x96290b75 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x962afd99 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x9635b055 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x963bd8c5 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965e051a dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x9676d4ed blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x9677f139 call_srcu EXPORT_SYMBOL_GPL vmlinux 0x968c7d98 ccw_device_get_chp_desc @@ -12379,18 +12389,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x96c2dffa sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0x96f0f35b crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x9702815d iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x970dbfc7 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97310025 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x9735c826 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x971dfaff inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x973d9070 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x973f35da platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x9753a169 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same EXPORT_SYMBOL_GPL vmlinux 0x9761629f devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x9775f2c3 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x97a0e803 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x97a7d5bc skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x97ab3818 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x97afeff8 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x97b84db9 phy_select_page EXPORT_SYMBOL_GPL vmlinux 0x97c1bb23 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x97c699fa set_online_page_callback @@ -12398,6 +12407,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x98040245 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x98157626 vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0x98166155 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x98379544 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x984c4f06 gmap_shadow_sgt @@ -12406,29 +12416,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x9857e9d5 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x987a7a02 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x9880c462 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x988ca9ad __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x988e0c6d apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x988f1d51 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x98905672 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x98918204 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x98a3326e nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x98b23036 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x98acc237 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x98c91d12 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x98d35c79 simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0x98ddd8dd tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x98e8618a gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x9902c095 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x991ca3c2 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x995a69f4 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996bed9a nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x996fadd2 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x99729a0c __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x9995ecc0 devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0x999c02e8 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99b31bee net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x99bc09b0 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x99bd95b3 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x99d738a1 gmap_put EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at @@ -12436,54 +12445,57 @@ EXPORT_SYMBOL_GPL vmlinux 0x99fa168d crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x99fb098d pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a12d0da sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x9a19c031 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x9a46caf2 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x9a53a2fc exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9a56d4dd mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x9a7a1d6f __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x9a7f2502 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x9a8736df ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9aa87bb5 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x9aaccc52 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x9ab44137 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x9ac180d1 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x9ad07ec8 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x9ae29bfd fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af99f8f fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x9b0fbe9d gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x9b1b651d open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b2c36d2 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x9b79c1c4 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x9b88c932 register_kprobes EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b94f8bf __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x9bbcadc2 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9be8d4ba tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf602f2 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x9c19e74e virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x9c3576f6 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x9c390b48 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x9c3aa3fc irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x9c40eda0 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x9c451265 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x9c477abe tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x9c596bdb fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x9c5dd711 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x9c6db9e2 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9c6eee5e sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c7b2dfb device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x9c867f29 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x9ca50b32 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x9cb59529 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x9cbd52c4 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x9cd177c8 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals EXPORT_SYMBOL_GPL vmlinux 0x9cede371 virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d15cd68 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d322ccf klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9d383d6a mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x9d53321d dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x9d559b10 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x9d5a9f5b pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x9d6961a1 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache EXPORT_SYMBOL_GPL vmlinux 0x9db1d9d7 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x9dccd607 mas_prev @@ -12495,26 +12507,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x9e083c5c fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x9e0e6fac dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud -EXPORT_SYMBOL_GPL vmlinux 0x9e41866f rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x9e1e0b7a ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e52da2b screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x9e6cff0e switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x9e75899c bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x9e8b0ecd __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9ef8dbfc kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x9f3676ba __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0x9f43cc5f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x9f2f2000 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9f3453ae nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x9f4a7170 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5dc3c7 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x9f5e4ff7 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x9f87075a virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x9f925ffd sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fb77554 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x9fc1c9ba fat_remove_entries @@ -12522,10 +12530,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fd9fa84 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa01b41aa inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xa03ca2b6 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05256ce sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xa07ed3d5 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa06b7eba ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa099cd59 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xa0a62591 shash_ahash_digest @@ -12535,62 +12543,60 @@ EXPORT_SYMBOL_GPL vmlinux 0xa0e9c359 d_same_name EXPORT_SYMBOL_GPL vmlinux 0xa0f36b69 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0xa0f77f07 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xa10866c6 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xa1031644 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0xa112d1d7 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xa1160844 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xa11ba30d cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xa11efbe5 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xa12c5e7e gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features EXPORT_SYMBOL_GPL vmlinux 0xa15113b1 __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa1aead2e add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0xa1d24683 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xa1df3b65 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0xa1e0711a crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xa1ee09d3 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0xa202a407 blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2100d4f xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0xa22d72dd trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa2472795 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xa2484f3d xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2588d25 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xa25a06e8 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa284d3aa tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xa2a91471 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f716a9 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xa2fb4218 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xa2fc8bfe mas_erase -EXPORT_SYMBOL_GPL vmlinux 0xa31bbb17 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0xa32f1ccb devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xa3373519 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa34082b9 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xa361a8d8 md_start EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0xa37385d4 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa39d5d42 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xa3aea925 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xa3b0d5d6 __xas_next EXPORT_SYMBOL_GPL vmlinux 0xa3b5be10 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3c4228e dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xa3cf7007 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa414414f devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xa41aa8b7 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44bb596 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xa44b49cb devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xa44f5009 kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0xa450b025 rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0xa452b457 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa466a7f3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xa467e1d4 strp_stop EXPORT_SYMBOL_GPL vmlinux 0xa470b39c tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xa4772fec gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0xa4a33465 driver_find @@ -12599,20 +12605,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4cd7fd8 devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xa4d9abe8 gmap_make_secure -EXPORT_SYMBOL_GPL vmlinux 0xa4f4288b clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xa50a47ee skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xa514f447 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xa529313a skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xa5299c6b crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xa544bd45 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear EXPORT_SYMBOL_GPL vmlinux 0xa5671283 scm_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa569f9d1 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xa56ebfc4 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable EXPORT_SYMBOL_GPL vmlinux 0xa5af97a2 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xa5b6649e ccw_device_get_iid +EXPORT_SYMBOL_GPL vmlinux 0xa5e1f6e7 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full EXPORT_SYMBOL_GPL vmlinux 0xa5ff9185 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa60717b0 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xa631bd05 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xa6549589 irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0xa65b3190 pci_find_ext_capability @@ -12627,34 +12632,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6ea5cfa iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa71be929 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xa71d03d1 mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xa721240b fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa76aa20e tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xa780b4a7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa769d905 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xa789d16d pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0xa78c365c crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xa7b9fbc1 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xa7d88b7f pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xa7e760c5 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8215908 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xa825aef5 class_destroy EXPORT_SYMBOL_GPL vmlinux 0xa8334bda dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0xa83e9591 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa85b795b exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa875127c sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xa863a0d2 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xa875c362 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0xa87cc6e4 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xa8856c95 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xa8893eee put_io_context -EXPORT_SYMBOL_GPL vmlinux 0xa88d5f64 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0xa89e37a5 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0xa8a47c7a md_stop EXPORT_SYMBOL_GPL vmlinux 0xa8af38b9 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xa8d837d9 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xa8df30b2 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0xa90f9c53 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds EXPORT_SYMBOL_GPL vmlinux 0xa9630f24 fb_deferred_io_release @@ -12664,13 +12664,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9b3af86 component_del -EXPORT_SYMBOL_GPL vmlinux 0xa9bfb8c6 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xa9d4cee0 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xa9e7bad9 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie EXPORT_SYMBOL_GPL vmlinux 0xaa18e757 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xaa3bbacc skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xaa29f9e1 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush EXPORT_SYMBOL_GPL vmlinux 0xaa88b32d devm_gpiod_get_index_optional @@ -12678,6 +12676,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xaac39600 irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0xaacaad7d device_store_int EXPORT_SYMBOL_GPL vmlinux 0xaad3f2a5 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xaaf278c2 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0xab174e6e platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xab2df6c3 scsi_target_unblock @@ -12685,20 +12684,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xab8d31f5 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xabb99ece skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc77342 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xabd1f84b pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xac0e3bc5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xac1e4c28 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xabfda3fb inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xac2a9a5b __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xac2dd7f4 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0xac475933 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xac4b2136 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xac4f0f65 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0xac5dddc1 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xac603ba1 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xaccd9a85 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xacce5ff2 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xacd12117 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0xacd7472e init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xace3c119 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xacec8234 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum @@ -12726,14 +12725,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae716231 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xae7a3dfe ip6_input EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp EXPORT_SYMBOL_GPL vmlinux 0xae97d5f5 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xaeb48100 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xaed80ba5 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xaeecc7ec __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xaeed541c sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xaefa5180 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0xaeff247e crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0xaf1daac2 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0xaf2cdff5 scsi_template_proc_dir @@ -12741,33 +12738,38 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xaf5d4237 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xaf89c1be mas_next -EXPORT_SYMBOL_GPL vmlinux 0xaf9b7a81 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xafa23f9d ptep_notify EXPORT_SYMBOL_GPL vmlinux 0xafa97b38 __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xaffcb781 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xb01846db nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0xb0367dfe raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb013cfdc skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xb026751e netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xb048a3c5 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb049a2c6 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0xb06ad0fa scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xb06b5c4d devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb074fb1a tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xb0891932 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xb09aacb1 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xb0a89a3d tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xb0aa03c0 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0b87a1f pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xb0c1b46e do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0cc9397 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xb0d45ec8 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xb0e5b894 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb100f503 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xb10cb9c4 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb12d101c vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0xb1366738 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0xb13842f6 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xb13aa84a __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xb1402007 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xb14192e4 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put @@ -12780,75 +12782,72 @@ EXPORT_SYMBOL_GPL vmlinux 0xb1a069df tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail -EXPORT_SYMBOL_GPL vmlinux 0xb1c33ea2 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xb1bbb859 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e7501b __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb2099fd7 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xb211eda6 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xb21a4c9e skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xb224c070 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb22e587f phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xb239b95f xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0xb23e62a6 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2716ecf pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xb28fa999 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xb2ad3232 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xb2afe4e1 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xb2b3fd58 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xb2b8121c __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2cccdbe irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xb2e8f705 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xb2eb58f4 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put EXPORT_SYMBOL_GPL vmlinux 0xb315ac38 debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0xb31aa2bf vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xb33ceb6c xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xb357181e fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0xb35b1926 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xb3693577 mmput_async -EXPORT_SYMBOL_GPL vmlinux 0xb396dac6 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xb39788d5 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xb39870d5 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xb3a71388 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xb3c6b097 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xb3d4b93c tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xb40e7f63 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb4147f81 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44a5ec3 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled EXPORT_SYMBOL_GPL vmlinux 0xb45b412f modify_ftrace_direct_multi_nolock EXPORT_SYMBOL_GPL vmlinux 0xb46950b5 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc EXPORT_SYMBOL_GPL vmlinux 0xb471529c debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0xb4a714df handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4a80dac dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4d0c4a6 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xb4fb715a gmap_pmdp_idte_global EXPORT_SYMBOL_GPL vmlinux 0xb504cdf6 gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0xb5055779 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list EXPORT_SYMBOL_GPL vmlinux 0xb50a3f4e zpci_enable_device EXPORT_SYMBOL_GPL vmlinux 0xb51d17d9 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xb52eb9cd raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb53e880f devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul EXPORT_SYMBOL_GPL vmlinux 0xb56e3558 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xb576c611 gmap_read_table EXPORT_SYMBOL_GPL vmlinux 0xb57ea635 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5838f95 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot EXPORT_SYMBOL_GPL vmlinux 0xb593fde0 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0xb59ea385 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb5c4cb06 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xb5ca5ad7 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xb5ccdcbc __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xb5d3e11d clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xb5d47bd2 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xb6088146 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xb6175cb1 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0xb61bd930 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xb624ad0b ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb61f42f1 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb6607c12 cio_cancel_halt_clear @@ -12857,15 +12856,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xb67e0c56 kthread_data EXPORT_SYMBOL_GPL vmlinux 0xb6842fae mas_find_rev -EXPORT_SYMBOL_GPL vmlinux 0xb685ecc9 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xb68d7179 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb69df578 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xb6c7b81d rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xb6d979d1 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xb6f82c14 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0xb6fd6da5 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xb716dbc2 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb72afbd4 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xb737e364 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb789ca10 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xb78fd5fc gmap_shadow_r2t @@ -12878,13 +12877,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xb7e1dc2f fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xb7f7102f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xb801b346 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xb8178b6e trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xb849025c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xb833b23c __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb85f74aa ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xb8679cd1 folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xb86c15da handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xb872bd53 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8931ed2 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout EXPORT_SYMBOL_GPL vmlinux 0xb89e8538 tpm_get_random @@ -12892,16 +12893,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xb8a36c82 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xb8b8a619 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0xb8beccbb gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb8ca6101 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cf2fe2 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xb8e42b89 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xb8f8f3dc scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xb900c629 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb935104a tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block -EXPORT_SYMBOL_GPL vmlinux 0xb94384fb tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xb94ec933 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb969da3a mmu_interval_notifier_remove @@ -12909,39 +12906,41 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb987045e subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xb98e0516 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb9937191 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xb99df866 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0xb9c1991b fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xb9c206e6 pskb_put EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first EXPORT_SYMBOL_GPL vmlinux 0xb9f49f71 gfn_to_memslot EXPORT_SYMBOL_GPL vmlinux 0xb9fc275c devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xba017008 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xba0467d1 device_rename EXPORT_SYMBOL_GPL vmlinux 0xba11792f virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xba21904f scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xba2608fd __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0xba2d2a07 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0xba34b4f6 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xba4aae73 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xba5e4f14 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xba68a79b dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0xba6b73f9 zpci_aif_sbv +EXPORT_SYMBOL_GPL vmlinux 0xba72dcf6 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xba7b7124 create_signature EXPORT_SYMBOL_GPL vmlinux 0xba8976dc crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xba8af56e skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0xbaa04c1b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xbaa8436a ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xbaad3bb8 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xbab57b3b fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xbade07a0 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xbaf1b59c strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xbae31b89 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb0ab25c fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb14d763 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xbb1ccabf fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0xbb1f14af devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xbb28f6d0 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xbb318895 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition @@ -12954,7 +12953,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb9f906e simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xbbbcaf02 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbeb8ba7 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xbbfc5612 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0xbc00ad69 auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xbc04f0da srcu_batches_completed @@ -12968,17 +12966,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xbc78397c fsnotify EXPORT_SYMBOL_GPL vmlinux 0xbca4c9f5 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc10a92 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc80bba unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xbcda9956 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xbcdcb456 dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbced9ddf blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd3231cc tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd43e8b9 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xbd52bf51 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd57efff dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xbd5de4c0 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xbd7560be thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory @@ -12988,21 +12986,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xbdbbfdc9 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbdc2b073 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge EXPORT_SYMBOL_GPL vmlinux 0xbde22dd1 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xbde67e1b pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xbde8ef38 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe0d10c6 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xbe0f1d9a ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xbe212729 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xbe322775 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xbe5c6d8c inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe859b79 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbed113ad put_device -EXPORT_SYMBOL_GPL vmlinux 0xbed19d51 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xbeea0b02 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xbeef4460 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xbefb8c14 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf12bc10 debugfs_create_x8 @@ -13010,14 +13008,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate EXPORT_SYMBOL_GPL vmlinux 0xbf4697e3 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0xbf5185f4 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbf90f569 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xbf9149cd fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xbf91ca88 HUF_readStats EXPORT_SYMBOL_GPL vmlinux 0xbfc693d9 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xbfd7b80d __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xbfe1e848 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbffa1c8f set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xc00383b7 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0xc01ac64d bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xc027330d l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc02aae9e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xc02ce69e bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xc0426e16 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0xc04cbac9 platform_device_put @@ -13025,6 +13027,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc08c4c79 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0xc08fc44f gmap_unregister_pte_notifier EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a2b935 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b092fd platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 @@ -13042,12 +13045,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key EXPORT_SYMBOL_GPL vmlinux 0xc146ea72 modify_ftrace_direct_multi EXPORT_SYMBOL_GPL vmlinux 0xc15eb076 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc1849514 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xc1883f15 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xc1b4afa9 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xc1b990aa sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0xc1bd4cfc iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0xc1ddebba ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xc1e128ee tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xc1e21420 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0xc1ea16bc irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xc1fb8147 pci_iov_vf_id @@ -13062,8 +13065,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc26b669c crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0xc28261de kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0xc285421f class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xc287c231 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc2a55e16 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xc2be46b0 devm_gpiod_unhinge @@ -13076,34 +13077,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc3857bf8 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xc3ac0975 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3c75968 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0xc3d66828 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc3d698cf bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e22375 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4056212 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xc40ba8dc crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xc4167e74 kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0xc4172595 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd -EXPORT_SYMBOL_GPL vmlinux 0xc4260aec rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4520d32 put_pid EXPORT_SYMBOL_GPL vmlinux 0xc46ac704 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag EXPORT_SYMBOL_GPL vmlinux 0xc4810203 nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0xc48346fa addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xc4942666 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4abe190 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xc4c11f1d pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xc4ccf265 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xc4d8d61f devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xc4e6adf3 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc4fc46a6 virtio_max_dma_size @@ -13116,12 +13115,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xc57411b1 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc592bab7 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xc5cbd7ae devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0xc5cf6d3b inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xc5c8c838 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0xc5f19d41 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xc5f2a52d tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xc5f48430 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xc6001d76 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc606e047 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata @@ -13138,72 +13136,79 @@ EXPORT_SYMBOL_GPL vmlinux 0xc6f6d4c9 list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xc6f7a6e2 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xc6fa53e4 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xc6fcbe1e mmput EXPORT_SYMBOL_GPL vmlinux 0xc70903c1 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0xc70c36f3 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xc7209f90 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc72358fb netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0xc723a0ac dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xc72cc59c kthread_park EXPORT_SYMBOL_GPL vmlinux 0xc732c7a9 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0xc743a22a public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xc757df93 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xc75858fd xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xc75af3b9 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0xc75d36f9 fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0xc76ad84f device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc76d58c4 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xc79892ee pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7b31beb bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0xc7d65bd3 unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7ef4883 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fc8fd7 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xc8200c8b devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xc8246a67 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove EXPORT_SYMBOL_GPL vmlinux 0xc83aed1d fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0xc845df1f blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0xc849bc9c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc873a6b3 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xc87fe0c5 ccw_device_get_util_str -EXPORT_SYMBOL_GPL vmlinux 0xc8ac5521 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc893a79f ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0xc8dc36fc bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8e3db70 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc8ee621e tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xc8f910ac unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc924217f __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xc92982e6 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xc92c697e sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xc937caa6 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc9666a62 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc9838312 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xc9b6ce7e bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xc997971a xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xc9c5a7a2 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xc9c70ded scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xc9c77806 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xc9c7b835 ping_bind EXPORT_SYMBOL_GPL vmlinux 0xc9c8fb41 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9f3cd85 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xca18988e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xca3aaf94 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xca68bde9 irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8c1a0f __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xca942088 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0xca99849e device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcac03493 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xcac38b82 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xca9d9f1c skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar EXPORT_SYMBOL_GPL vmlinux 0xcad6e999 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0xcaea43dd gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xcb0ccf1b mnt_idmap_owner EXPORT_SYMBOL_GPL vmlinux 0xcb19e470 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0xcb24f041 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xcb280da8 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xcb28e840 bus_register EXPORT_SYMBOL_GPL vmlinux 0xcb37df98 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xcb51f18f page_cache_ra_unbounded @@ -13211,30 +13216,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xcb567be1 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0xcb734294 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0xcb9b9c8f ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xcbb96754 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xcbd76e91 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xcbde4be4 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages EXPORT_SYMBOL_GPL vmlinux 0xcbe9a78f gmap_pmdp_idte_local EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc38a299 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0xcc3f54e5 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcc4565aa l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xcc60879a iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0xcc6bf91f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xcc762cdb netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc9df0b7 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0xcca89c26 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0xccb4cf85 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xccd26eba devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xccd82f9c ping_err +EXPORT_SYMBOL_GPL vmlinux 0xcce92a21 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xcd05bf4e bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xcd0c82f0 user_destroy EXPORT_SYMBOL_GPL vmlinux 0xcd210fa2 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xcd23671e tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd420412 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xcd4cab4c genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0xcd4f5e54 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0xcd63e1f2 gpiochip_line_is_irq @@ -13243,16 +13247,18 @@ 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 0xcdb474d9 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdbb0b6b fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0xcdbf34dd devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xce008fe5 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xce34942e phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xce3df6c6 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce9222b8 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xce93de7f security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xce946655 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xce953a96 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xcea322e8 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0xceb98300 invalidate_inode_pages2_range @@ -13261,21 +13267,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xcee5b4e3 FSE_readNCount EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xcf0f6020 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xcf130553 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xcf1505a6 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf430dd1 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0xcf4b1427 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xcf735a91 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xcf86256d trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xcf963497 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xcfa5a68a udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xcf9e23f6 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xcfbad1d6 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfc835b7 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xcff0d4ae crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd00f3f42 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event @@ -13283,31 +13288,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd06a82b6 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xd06cf6d0 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xd0b86c7b crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0ca86a8 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e1d116 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xd0eae5ed kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xd1074a02 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xd11826cd finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear EXPORT_SYMBOL_GPL vmlinux 0xd14f35a4 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xd1650f3d kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd185ac47 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xd1986945 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0xd19cb791 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xd1a689d0 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1ae243d ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xd1bfb111 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0xd1c84f6c synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d3f8e8 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xd1d7d0eb gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get EXPORT_SYMBOL_GPL vmlinux 0xd1ff0302 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xd1ff4533 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xd2036c46 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xd203dfd0 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xd20d7b60 blk_crypto_intersect_capabilities EXPORT_SYMBOL_GPL vmlinux 0xd213485a blk_crypto_register @@ -13321,11 +13329,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xd28e0c25 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xd2b07ee6 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xd2ca6f3d devlink_net EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2f713c7 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xd3034428 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xd309fe46 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xd324ff58 __blkg_prfill_rwstat @@ -13335,9 +13342,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xd394a0d4 static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd3a5103c genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xd3bef0bd udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd3b8f3bb lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xd3bef9ec fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xd3c9210d rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd3c97757 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd3ca91ff netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xd3e3573e posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xd3e56ef5 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear @@ -13345,13 +13354,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xd3f067d7 ftrace_free_filter EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd412439e fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd4118a2f raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xd42bd45f pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd43a88eb cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0xd43cb95f vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xd44f1c38 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xd45ee9f9 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xd461807a bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xd4832a88 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0xd48bc13c crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create @@ -13360,20 +13369,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xd4bf483c inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4cc43a3 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd4e162b1 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xd4fed0a0 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd50e0b57 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xd50e3bdc ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xd511b9d6 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xd5163318 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xd53162e3 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0xd52b03df ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xd54e573d sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56eae36 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59bbde2 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xd5b41bf3 unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xd5b448eb transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xd5b5aa85 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xd5bcf8ec get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xd60e9619 __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xd61246fe class_unregister EXPORT_SYMBOL_GPL vmlinux 0xd619d56e compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0xd61e710f dm_get_queue_limits @@ -13386,91 +13396,89 @@ EXPORT_SYMBOL_GPL vmlinux 0xd67380d9 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xd678a39e gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd6a1fa0d blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xd6a881b4 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xd6b5ec22 pci_debug_err_id EXPORT_SYMBOL_GPL vmlinux 0xd6b9f0cc sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd6d47a37 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xd6e4c02e lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xd6c12a55 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xd6fe1b6f key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72c967c kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xd77044f0 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xd77c7796 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xd7988743 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xd7a14cc1 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7b6d7ce skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xd7bd13e6 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xd7bd514e anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0xd7bf3090 irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0xd7dc7515 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd83af055 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xd7e856f8 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xd809ff3a fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0xd841da58 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock EXPORT_SYMBOL_GPL vmlinux 0xd85984d0 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xd85f7bb2 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xd86955dc devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd8717854 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xd87fb8fd input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xd888e555 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd8862aa0 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0xd88cc666 disable_cmf EXPORT_SYMBOL_GPL vmlinux 0xd8b42a30 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xd8b53b9d mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xd8d6dbb1 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xd8e1742c vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fc0c49 ping_close EXPORT_SYMBOL_GPL vmlinux 0xd9068c67 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xd918f163 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xd90aaed5 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd930cf92 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd93412d1 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xd939df80 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0xd9430329 tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xd947b1c6 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xd9530de2 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xd9613566 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd965a9a6 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97bd964 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0xd99d998d serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0xd99ea9a5 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xd9b5fea1 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xd9c779d6 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xd9cdde39 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xd9d46eb4 dm_hold EXPORT_SYMBOL_GPL vmlinux 0xd9d9ff73 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9ebea67 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xd9f70c8a netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xda06e065 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda20f037 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda4ca4f1 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xda61ea73 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0xda6d402c crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xda6f0f76 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xda6d414f ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xda795a61 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0xda8cc4df elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xda8de34c pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xdaacf206 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdabf3e7a mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xdad7733e kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0xdad90c89 ftrace_set_filter_ips EXPORT_SYMBOL_GPL vmlinux 0xdadbf33f platform_bus EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf887a6 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xdafe9aa1 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xdb095869 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xdb1fba85 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xdb31d5fe irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0xdb33eeba vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0xdb4372a3 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xdb553d03 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xdb56fab5 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xdb6b70b2 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xdb752925 kvm_destroy_vcpus EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock EXPORT_SYMBOL_GPL vmlinux 0xdbafa5ce dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xdbba8eb2 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdbbc3a9d mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xdbc78f3e fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq EXPORT_SYMBOL_GPL vmlinux 0xdbe1f5ca vp_legacy_set_features @@ -13481,25 +13489,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock EXPORT_SYMBOL_GPL vmlinux 0xdc0624ef dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xdc0ba369 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xdc12fd7a rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xdc13287e register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xdc2afaf2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdc39b270 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xdc404063 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc445057 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xdc469718 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xdc4e2193 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xdc5ebf75 kvm_vcpu_halt EXPORT_SYMBOL_GPL vmlinux 0xdc6331fc device_del EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0xdc76a668 mptcp_diag_fill_info -EXPORT_SYMBOL_GPL vmlinux 0xdc7b26f6 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xdc825b3e pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc901fdf devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xdc925058 devres_find EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcb8a286 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xdca6c38f css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xdcc95047 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xdcd41bb3 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0xdce33005 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xdce40c74 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xdcee8069 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdcf42501 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd1057f9 __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0xdd2fa821 pcie_update_link_speed @@ -13509,79 +13518,74 @@ EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd92b39f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xdd9d5115 tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0xdd9f78e6 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xddb5e3ec report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0xddb91a12 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddc5f9ab pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0xddc97b82 HUF_readStats_wksp +EXPORT_SYMBOL_GPL vmlinux 0xddec9296 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xddf44384 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xddf5ed46 virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0xddfcfe6b component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde282e46 iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xde30cb2d ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xde0f4fa8 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde3342e1 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xde38b0da iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xde3da4f0 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xde4e7f42 device_match_name EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 EXPORT_SYMBOL_GPL vmlinux 0xde769e74 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xde86fba8 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xde87d196 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xde8c7b5f platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0xde91cd9d pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xde939ac0 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0xdeae5a09 gmap_shadow_pgt_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdeb24a92 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xdebbeb34 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xdec8a326 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xded5dbff iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xded5e212 cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xdef1a42d crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0xdefa3be7 irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0xdefb91cd inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xdf037f06 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xdf08ffe8 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf13560c blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf27dab0 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xdf2b7c22 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0xdf3ec107 gmap_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xdf5922ab ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xdf64b8d3 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xdf807f40 __unwind_start EXPORT_SYMBOL_GPL vmlinux 0xdf9bc82b sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xdfaf27f7 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xdfbae7c8 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xdfc05273 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xdfe4eaf4 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xdff2555a iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0xdffaa7ad bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xe0082ea8 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xe00a2ba4 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0xe0113a19 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0xe0548266 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe056d362 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu EXPORT_SYMBOL_GPL vmlinux 0xe0795c23 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xe081a2df kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xe0a08321 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe0af318e io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0xe0bc6518 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xe0ede650 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xe09cd05a inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xe0fcf8f4 gmap_pmdp_invalidate EXPORT_SYMBOL_GPL vmlinux 0xe107c390 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0xe10d864b __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xe1268c0c inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xe1269757 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0xe14e89a8 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xe1568151 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0xe160d7bd fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xe167ec83 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xe179301c skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xe17c4234 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xe180cb7c relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xe18de6b3 srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xe1a0a2f5 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xe1b80e64 devl_port_register EXPORT_SYMBOL_GPL vmlinux 0xe1bd62c7 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off EXPORT_SYMBOL_GPL vmlinux 0xe1eb8820 fscrypt_ioctl_get_key_status @@ -13591,27 +13595,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xe21682a5 gmap_register_pte_notifier EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe2376b24 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xe258f2bd l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0xe2729522 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0xe29453cb tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xe294ef77 get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0xe295c46e sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe2991250 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0xe2a39f2a gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c7b70b inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0xe2db2435 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xe2dc1c6f xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xe2f4ed74 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf EXPORT_SYMBOL_GPL vmlinux 0xe316446a iomap_is_partially_uptodate 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 0xe33065a4 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xe357f42e dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xe37a1868 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe387d7b1 put_pid EXPORT_SYMBOL_GPL vmlinux 0xe392c8db iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe39655d6 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3b9faaf trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0xe3bb920b tty_buffer_unlock_exclusive @@ -13620,9 +13621,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xe3e66c24 pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe423f123 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xe432527c tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xe434a2d9 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe44f9194 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xe451d2f3 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xe45451c3 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0xe4767eaa __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe487d419 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe48d0604 lwtunnel_state_alloc 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 @@ -13630,30 +13636,25 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4da6a64 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f16792 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xe4fb6d71 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xe507f95a ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xe50e2fad device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xe51a1c28 fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0xe53d07c8 fwnode_connection_find_matches EXPORT_SYMBOL_GPL vmlinux 0xe54afe98 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xe5508373 iov_iter_get_pages_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe5544ecf rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0xe5674669 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xe5770579 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xe58575dd get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a62659 bio_poll EXPORT_SYMBOL_GPL vmlinux 0xe5ae242b kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0xe5b3f733 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xe5df8112 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xe5e03922 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe63e10fc devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xe64dc1f4 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xe68a47e2 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xe6a2ff37 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0xe6a452d8 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e53b5d device_get_dma_attr @@ -13663,7 +13664,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xe7294e13 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xe740b60e fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xe7443812 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xe74aa713 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75d8277 disk_uevent @@ -13676,8 +13676,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get EXPORT_SYMBOL_GPL vmlinux 0xe79e38a6 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xe79f3bad crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xe7a6a7dc __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7ba2615 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds EXPORT_SYMBOL_GPL vmlinux 0xe7ee6d11 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xe8050e07 crypto_aead_decrypt @@ -13691,16 +13691,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xe8bf9ec6 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static EXPORT_SYMBOL_GPL vmlinux 0xe8cbaea0 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xe8f79063 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xe8e00240 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8fdd714 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xe90ebb97 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe91a3536 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xe931e431 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94defe5 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xe9650584 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0xe967d990 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xe97491d9 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0xe97a911b add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xe98a1a01 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe9b1eded xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xe9b3e001 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xe9db1498 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check @@ -13710,10 +13713,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea39ae2b dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea42b122 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xea46b1af rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0xea6643c6 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xea75accb metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xea8b7f71 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0xea9de6a2 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xea9df797 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0xeaa2be23 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xeabd7f04 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0xeac0322d start_poll_synchronize_srcu @@ -13724,76 +13730,65 @@ EXPORT_SYMBOL_GPL vmlinux 0xeaf20034 __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0xeaf55923 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0xeaf7d79c fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xeb123e57 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xeb221583 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xeb2a1207 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xeb0e2731 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xeb5315aa call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xeb5df2ef __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xeb5fcde5 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xeb6b9995 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0xeb7a6897 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0xeb7d7f29 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xeb7f3121 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0xeb881708 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xeb8d8ec7 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0xeb91a8c6 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xebaecb3f ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xebc10b0b nf_conn_btf_access_lock EXPORT_SYMBOL_GPL vmlinux 0xebc7d04f platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xebd067c8 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xebd7255c nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xebe9b77a inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0xebfa2bf7 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xec0029a9 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xec130f25 __bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo EXPORT_SYMBOL_GPL vmlinux 0xec225687 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0xec23d6db __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xec3c07b0 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xec30546b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xec58a6ac bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xec6dc9aa attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0xec72ab78 __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xec7c2cc3 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xec809d4d ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0xec8202f5 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xec86535d xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xecb9aeef serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xece0fb52 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0xed08cabd __xas_prev EXPORT_SYMBOL_GPL vmlinux 0xed0d4e8f register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xed0f0ebd crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xed2d9bee xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xed42ca33 find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block EXPORT_SYMBOL_GPL vmlinux 0xed4cac9a proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0xed5ae04f pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0xed5df0dc device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xed6a34ca xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xed70e442 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0xed72ef4f sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xeda853d8 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xedd5835f kthread_func EXPORT_SYMBOL_GPL vmlinux 0xede06158 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xedeb1941 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3b8bf0 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xee4b1f21 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xee507fe5 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xee594c67 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xee59dea9 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xee6f3f0d crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xee816a44 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xee84b20e crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xee9167bb __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xee942c74 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xeeb3b050 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xeebc4c68 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0xeebfbc12 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xeecbca8b __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xeed091a0 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfea08 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xeef64d65 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xef052984 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative @@ -13805,7 +13800,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xef9c8eef ipl_info EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefa60ff7 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xefb2e594 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xefd31fac get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0xf00e63c1 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0xf0184d13 crypto_register_acomps @@ -13813,11 +13808,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xf028c967 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xf03d9c2c __gmap_translate EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05d1125 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf079bc4c __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xf080db15 xas_create_range EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf098436c ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0xf0a7173e mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xf0c72370 component_master_del EXPORT_SYMBOL_GPL vmlinux 0xf0cd6449 __fscrypt_prepare_lookup @@ -13826,37 +13820,35 @@ EXPORT_SYMBOL_GPL vmlinux 0xf0f153d8 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0xf0fdad0b genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xf11d021c lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xf1244ba7 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf15d1e40 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf193b631 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0xf194c9c3 mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xf1b035f4 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0xf1b325ca l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xf1de5b51 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xf1e11f2d fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xf1ef106d inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf206bf3d sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22eaa46 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xf241c9d0 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xf227c7cf blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xf28025cf debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL_GPL vmlinux 0xf2891460 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0xf28c7925 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf28ff9cb __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf29dc0d2 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xf2b2e360 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2ca09c5 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xf2d3916a gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf2ea0e1b tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xf2f7f70b driver_create_file EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf3149ba0 pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32c5338 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xf335b563 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xf33b874d gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xf33cb9bb elv_unregister @@ -13868,15 +13860,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xf39568cb gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp EXPORT_SYMBOL_GPL vmlinux 0xf3b325d5 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xf3d1819b fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xf3ded01f dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xf3f39dfc fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0xf40fcaf9 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0xf435d629 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xf43ac709 ping_err EXPORT_SYMBOL_GPL vmlinux 0xf43d619e rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf4434596 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xf44ee038 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xf463fc33 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause EXPORT_SYMBOL_GPL vmlinux 0xf472eb71 key_type_user EXPORT_SYMBOL_GPL vmlinux 0xf4741f5d vc_scrolldelta_helper @@ -13885,13 +13876,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xf47fec55 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0xf4945719 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4ac2495 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4ce8459 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xf4ed648b unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xf5053c1a l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0xf51c8143 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0xf52e068a gmap_shadow_valid -EXPORT_SYMBOL_GPL vmlinux 0xf53ddf0b switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf55a70e6 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0xf564bbf0 devm_request_pci_bus_resources @@ -13900,45 +13889,45 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5a09c24 disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0xf5a34bbe mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ae1152 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xf5cbd69c nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xf5d27b2f css_sch_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5d3f98e inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xf5de6909 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xf5db92fd skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf5ee4c6d fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f80fc1 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xf600f4ca fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf601ee95 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf61278af l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf5f883e0 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xf62b88ca iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0xf62e0002 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xf6438d37 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xf652b5e6 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy EXPORT_SYMBOL_GPL vmlinux 0xf662ba90 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xf69e8b3f __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c296b2 crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e00075 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xf6fd4f6d mnt_user_ns EXPORT_SYMBOL_GPL vmlinux 0xf702f0ae kvm_init EXPORT_SYMBOL_GPL vmlinux 0xf70fcae2 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf7358dc6 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xf7425921 skb_segment 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 0xf75c6a6e xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xf76bbfde gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xf79767ea gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0xf798d735 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xf7b2e813 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c7e1ef ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf7d4180a nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xf7daf9e8 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xf80c6ad5 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xf8117c12 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf81df9ef __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf8204879 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xf8207807 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xf8277b73 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu EXPORT_SYMBOL_GPL vmlinux 0xf835b550 devl_trap_groups_unregister @@ -13946,8 +13935,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xf84bf5bd device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store +EXPORT_SYMBOL_GPL vmlinux 0xf860bd75 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xf87c6714 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf887cc8e raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xf8894397 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xf88a1ed6 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xf89eb36f irq_get_irq_data @@ -13956,54 +13947,63 @@ EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0xf90488e9 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf92ea22a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xf94384b8 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf95b6acf sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf97b1a71 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xf982310a pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0xf98e3157 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xf98eb4cf security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bd4217 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xf9bed7ef virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xf9e0fdce virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0xf9ef1125 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xfa08a946 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa484182 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xfa29b543 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xfa55d138 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xfa5c30f4 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa7d6a66 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfa9cb6a8 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0xfaac51c3 klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab6ed2f __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xfabe41c4 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadd3b71 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xfadfde0f fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0xfb1479de folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0xfb1f4508 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0xfb268e37 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xfb29bb2d blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xfb2a04da fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb641966 __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xfb9132c9 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xfb9fae34 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xfba8ddbd dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfb64dd4f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfb723599 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xfbb8473f validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbd0eec3 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfbe05345 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xfbed6c19 hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0xfbf2412d iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc024dba get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram EXPORT_SYMBOL_GPL vmlinux 0xfc076769 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc2ed976 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xfc635977 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xfc781ae6 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xfc84bad3 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xfcb6fc5f strp_stop EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfcce77d2 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xfcd8a83e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xfcdffcee ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xfce09330 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xfcf9d2b4 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled @@ -14016,23 +14016,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xfd5d2d60 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xfd8a7b64 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xfda29197 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xfda82ee8 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0xfdba355a vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type EXPORT_SYMBOL_GPL vmlinux 0xfdef2808 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xfdf0831d ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xfdfefb5e __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0xfe0a7be7 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xfe0ad5be kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe296c82 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5fd213 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xfe6c734c sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xfe6e9307 __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xfe8b9a49 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfec33106 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt @@ -14040,21 +14041,21 @@ EXPORT_SYMBOL_GPL vmlinux 0xff374076 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xff6408fc class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xff65ed1e __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xff684bf6 sfp_parse_support EXPORT_SYMBOL_GPL vmlinux 0xff79ddf9 tty_prepare_flip_string 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 0xff8cbf4b rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xff8d23d1 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xff939a18 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffac6cc9 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffaf64e8 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffc36b3b netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xffc45d0a vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xffe3ef36 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xffeb7c25 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xffda4182 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xfff61559 umd_load_blob FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux diff -u linux-6.2.0/debian.master/abi/version linux-6.2.0/debian.master/abi/version --- linux-6.2.0/debian.master/abi/version +++ linux-6.2.0/debian.master/abi/version @@ -1 +1 @@ -6.2.0-25.25 +6.2.0-27.28 diff -u linux-6.2.0/debian.master/changelog linux-6.2.0/debian.master/changelog --- linux-6.2.0/debian.master/changelog +++ linux-6.2.0/debian.master/changelog @@ -1,3 +1,900 @@ +linux (6.2.0-30.30) lunar; urgency=medium + + * lunar/linux: 6.2.0-30.30 -proposed tracker (LP: #2030381) + + * CVE-2022-40982 + - init: Provide arch_cpu_finalize_init() + - x86/cpu: Switch to arch_cpu_finalize_init() + - ARM: cpu: Switch to arch_cpu_finalize_init() + - ia64/cpu: Switch to arch_cpu_finalize_init() + - m68k/cpu: Switch to arch_cpu_finalize_init() + - mips/cpu: Switch to arch_cpu_finalize_init() + - sh/cpu: Switch to arch_cpu_finalize_init() + - sparc/cpu: Switch to arch_cpu_finalize_init() + - um/cpu: Switch to arch_cpu_finalize_init() + - init: Remove check_bugs() leftovers + - init: Invoke arch_cpu_finalize_init() earlier + - init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() + - x86/init: Initialize signal frame size late + - x86/fpu: Remove cpuinfo argument from init functions + - x86/fpu: Mark init functions __init + - x86/fpu: Move FPU initialization into arch_cpu_finalize_init() + - x86/mem_encrypt: Unbreak the AMD_MEM_ENCRYPT=n build + - x86/xen: Fix secondary processors' FPU initialization + - x86/speculation: Add Gather Data Sampling mitigation + - x86/speculation: Add force option to GDS mitigation + - x86/speculation: Add Kconfig option for GDS + - KVM: Add GDS_NO support to KVM + - Documentation/x86: Fix backwards on/off logic about YMM support + - [Config]: Enable CONFIG_ARCH_HAS_CPU_FINALIZE_INIT and + CONFIG_GDS_FORCE_MITIGATION + + * CVE-2023-4015 + - netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound + set/chain + - netfilter: nf_tables: unbind non-anonymous set if rule construction fails + - netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR + + * CVE-2023-3995 + - netfilter: nf_tables: disallow rule addition to bound chain via + NFTA_RULE_CHAIN_ID + + * CVE-2023-3777 + - netfilter: nf_tables: skip bound chain on rule flush + + * CVE-2023-3609 + - net/sched: cls_u32: Fix reference counter leak leading to overflow + + * NULL pointer dereference on CS35L41 HDA AMP (LP: #2029199) + - ASoC: cs35l41: Refactor error release code + - ALSA: cs35l41: Add shared boost feature + - ASoC: dt-bindings: cirrus, cs35l41: Document CS35l41 shared boost + - ALSA: hda: cs35l41: Ensure firmware/tuning pairs are always loaded + - ALSA: hda: cs35l41: Enable Amp High Pass Filter + - ALSA: cs35l41: Use mbox command to enable speaker output for external boost + - ALSA: cs35l41: Poll for Power Up/Down rather than waiting a fixed delay + - ALSA: hda: cs35l41: Check mailbox status of pause command after firmware + load + - ALSA: hda: cs35l41: Ensure we correctly re-sync regmap before system + suspending. + - ALSA: hda: cs35l41: Ensure we pass up any errors during system suspend. + - ALSA: hda: cs35l41: Move Play and Pause into separate functions + - ALSA: hda: hda_component: Add pre and post playback hooks to hda_component + - ALSA: hda: cs35l41: Use pre and post playback hooks + - ALSA: hda: cs35l41: Rework System Suspend to ensure correct call separation + - ALSA: hda: cs35l41: Add device_link between HDA and cs35l41_hda + - ALSA: hda: cs35l41: Ensure amp is only unmuted during playback + + * Reboot command powers off the system (LP: #2029332) + - x86/smp: Make stop_other_cpus() more robust + - x86/smp: Dont access non-existing CPUID leaf + + * losetup with mknod fails on jammy with kernel 5.15.0-69-generic + (LP: #2015400) + - loop: deprecate autoloading callback loop_probe() + - loop: do not enforce max_loop hard limit by (new) default + + * Fix UBSAN in Intel EDAC driver (LP: #2028746) + - EDAC/skx_common: Enable EDAC support for the "near" memory + - EDAC/skx_common: Delete duplicated and unreachable code + - EDAC/i10nm: Add Intel Emerald Rapids server support + - EDAC/i10nm: Make more configurations CPU model specific + - EDAC/i10nm: Add Intel Granite Rapids server support + - EDAC/i10nm: Skip the absent memory controllers + + * Make TTY switching possible for NVIDIA when it's boot VGA (LP: #2028749) + - drm/gma500: Use drm_aperture_remove_conflicting_pci_framebuffers + - video/aperture: use generic code to figure out the vga default device + - drm/aperture: Remove primary argument + - video/aperture: Only kick vgacon when the pdev is decoding vga + - video/aperture: Move vga handling to pci function + - video/aperture: Drop primary argument + - video/aperture: Only remove sysfb on the default vga pci device + - fbdev: Simplify fb_is_primary_device for x86 + - video/aperture: Provide a VGA helper for gma500 and internal use + + * Fix AMD gpu hang when screen off/on (LP: #2028740) + - drm/amd/display: Keep PHY active for dp config + + * Various backlight issues with the 6.0/6.1 kernel (LP: #2023638) + - ACPI: video: Stop trying to use vendor backlight control on laptops from + after ~2012 + + * FM350(mtk_t7xx) failed to suspend, or early wake while suspending + (LP: #2020743) + - net: wwan: t7xx: Ensure init is completed before system sleep + + * Include the MAC address pass through function on RTL8153DD-CG (LP: #2020295) + - r8152: add USB device driver for config selection + + * CVE-2023-20593 + - x86/cpu/amd: Move the errata checking functionality up + - x86/cpu/amd: Add a Zenbleed fix + + * CVE-2023-4004 + - netfilter: nft_set_pipapo: fix improper element removal + + * CVE-2023-3611 + - net/sched: sch_qfq: refactor parsing of netlink parameters + - net/sched: sch_qfq: account for stab overhead in qfq_enqueue + + * CVE-2023-3610 + - netfilter: nf_tables: fix chain binding transaction logic + + * CVE-2023-2898 + - f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io() + + * Fix speaker volume too low on HP G10 laptops (LP: #2023197) + - ALSA: hda/realtek: Enable 4 amplifiers instead of 2 on a HP platform + + * stacked overlay file system mounts that have chroot() called against them + appear to be getting locked (by the kernel most likely?) (LP: #2016398) + - SAUCE: overlayfs: fix reference count mismatch + + * arm64+ast2600: No Output from BMC's VGA port (LP: #2026776) + - drm/ast: Fix ARM compatibility + + * Fix eDP only displays 3/4 area after switching to mirror mode with external + HDMI 4K monitor (LP: #2024273) + - drm/i915: Allow arbitrary refresh rates with VRR eDP panels + + * Fix AMDGPU: the screen freeze with W7500 (LP: #2027957) + - drm/amd/pm: share the code around SMU13 pcie parameters update + - drm/amd/pm: conditionally disable pcie lane/speed switching for SMU13 + - drm/amd: Move helper for dynamic speed switch check out of smu13 + - drm/amd: Align SMU11 SMU_MSG_OverridePcieParameters implementation with + SMU13 + + * UBSAN: shift-out-of-bounds in amd_sfh (LP: #2027773) + - HID: amd_sfh: Rename the float32 variable + - HID: amd_sfh: Fix for shift-out-of-bounds + + * cifs: fix mid leak during reconnection after timeout threshold + (LP: #2029138) + - cifs: fix mid leak during reconnection after timeout threshold + + * Lunar update: upstream stable patchset 2023-07-28 (LP: #2028979) + - usb: dwc3: fix gadget mode suspend interrupt handler issue + - tpm, tpm_tis: Avoid cache incoherency in test for interrupts + - tpm, tpm_tis: Only handle supported interrupts + - tpm_tis: Use tpm_chip_{start,stop} decoration inside tpm_tis_resume + - tpm, tpm_tis: startup chip before testing for interrupts + - tpm: Re-enable TPM chip boostrapping non-tpm_tis TPM drivers + - tpm: Prevent hwrng from activating during resume + - watchdog: sp5100_tco: Immediately trigger upon starting. + - drm/amd/display: hpd rx irq not working with eDP interface + - ocfs2: Switch to security_inode_init_security() + - platform/x86/intel/ifs: Annotate work queue on stack so object debug does + not complain + - ALSA: hda/ca0132: add quirk for EVGA X299 DARK + - ALSA: hda: Fix unhandled register update during auto-suspend period + - ALSA: hda/realtek: Enable headset onLenovo M70/M90 + - SUNRPC: Don't change task->tk_status after the call to rpc_exit_task + - mmc: sdhci-esdhc-imx: make "no-mmc-hs400" works + - mmc: block: ensure error propagation for non-blk + - power: supply: axp288_fuel_gauge: Fix external_power_changed race + - power: supply: bq25890: Fix external_power_changed race + - ASoC: rt5682: Disable jack detection interrupt during suspend + - net: cdc_ncm: Deal with too low values of dwNtbOutMaxSize + - m68k: Move signal frame following exception on 68020/030 + - xtensa: fix signal delivery to FDPIC process + - xtensa: add __bswap{si,di}2 helpers + - parisc: Use num_present_cpus() in alternative patching code + - parisc: Handle kgdb breakpoints only in kernel context + - parisc: Fix flush_dcache_page() for usage from irq context + - parisc: Allow to reboot machine after system halt + - parisc: Enable LOCKDEP support + - parisc: Handle kprobes breakpoints only in kernel context + - gpio: mockup: Fix mode of debugfs files + - btrfs: use nofs when cleaning up aborted transactions + - dt-binding: cdns,usb3: Fix cdns,on-chip-buff-size type + - drm/mgag200: Fix gamma lut not initialized. + - drm/radeon: reintroduce radeon_dp_work_func content + - drm/amd/pm: add missing NotifyPowerSource message mapping for SMU13.0.7 + - drm/amd/pm: Fix output of pp_od_clk_voltage + - Revert "binder_alloc: add missing mmap_lock calls when using the VMA" + - Revert "android: binder: stop saving a pointer to the VMA" + - binder: add lockless binder_alloc_(set|get)_vma() + - binder: fix UAF caused by faulty buffer cleanup + - binder: fix UAF of alloc->vma in race with munmap() + - selftests/memfd: Fix unknown type name build failure + - drm/amd/amdgpu: limit one queue per gang + - perf/x86/uncore: Correct the number of CHAs on SPR + - x86/topology: Fix erroneous smp_num_siblings on Intel Hybrid platforms + - irqchip/mips-gic: Don't touch vl_map if a local interrupt is not routable + - irqchip/mips-gic: Use raw spinlock for gic_lock + - debugobjects: Don't wake up kswapd from fill_pool() + - fbdev: udlfb: Fix endpoint check + - net: fix stack overflow when LRO is disabled for virtual interfaces + - udplite: Fix NULL pointer dereference in __sk_mem_raise_allocated(). + - USB: core: Add routines for endpoint checks in old drivers + - USB: sisusbvga: Add endpoint checks + - media: radio-shark: Add endpoint checks + - ASoC: lpass: Fix for KASAN use_after_free out of bounds + - net: fix skb leak in __skb_tstamp_tx() + - drm: fix drmm_mutex_init() + - selftests: fib_tests: mute cleanup error message + - octeontx2-pf: Fix TSOv6 offload + - bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields + - bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps + - lan966x: Fix unloading/loading of the driver + - ipv6: Fix out-of-bounds access in ipv6_find_tlv() + - cifs: mapchars mount option ignored + - power: supply: leds: Fix blink to LED on transition + - power: supply: mt6360: add a check of devm_work_autocancel in + mt6360_charger_probe + - power: supply: bq27xxx: Fix bq27xxx_battery_update() race condition + - power: supply: bq27xxx: Fix I2C IRQ race on remove + - power: supply: bq27xxx: Fix poll_interval handling and races on remove + - power: supply: bq27xxx: Add cache parameter to + bq27xxx_battery_current_and_status() + - power: supply: bq27xxx: Move bq27xxx_battery_update() down + - power: supply: bq27xxx: Ensure power_supply_changed() is called on current + sign changes + - power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to + stabilize + - power: supply: bq25890: Call power_supply_changed() after updating input + current or voltage + - power: supply: bq24190: Call power_supply_changed() after updating input + current + - power: supply: sbs-charger: Fix INHIBITED bit for Status reg + - optee: fix uninited async notif value + - firmware: arm_ffa: Check if ffa_driver remove is present before executing + - firmware: arm_ffa: Fix FFA device names for logical partitions + - fs: fix undefined behavior in bit shift for SB_NOUSER + - regulator: pca9450: Fix BUCK2 enable_mask + - platform/x86: ISST: Remove 8 socket limit + - coresight: Fix signedness bug in tmc_etr_buf_insert_barrier_packet() + - ARM: dts: imx6qdl-mba6: Add missing pvcie-supply regulator + - xen/pvcalls-back: fix double frees with pvcalls_new_active_socket() + - x86/show_trace_log_lvl: Ensure stack pointer is aligned, again + - ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg + - ASoC: Intel: avs: Fix declaration of enum avs_channel_config + - ASoC: Intel: avs: Access path components under lock + - cxl: Wait Memory_Info_Valid before access memory related info + - sctp: fix an issue that plpmtu can never go to complete state + - forcedeth: Fix an error handling path in nv_probe() + - platform/mellanox: mlxbf-pmc: fix sscanf() error checking + - net/mlx5e: Fix SQ wake logic in ptp napi_poll context + - net/mlx5e: Fix deadlock in tc route query code + - net/mlx5e: Use correct encap attribute during invalidation + - net/mlx5e: do as little as possible in napi poll when budget is 0 + - net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs + - net/mlx5: Handle pairing of E-switch via uplink un/load APIs + - net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE + - net/mlx5: Fix error message when failing to allocate device memory + - net/mlx5: Collect command failures data only for known commands + - net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device + - net/mlx5: Devcom, serialize devcom registration + - arm64: dts: imx8mn-var-som: fix PHY detection bug by adding deassert delay + - firmware: arm_ffa: Set reserved/MBZ fields to zero in the memory descriptors + - regulator: mt6359: add read check for PMIC MT6359 + - net/smc: Reset connection when trying to use SMCRv2 fails. + - 3c589_cs: Fix an error handling path in tc589_probe() + - net: phy: mscc: add VSC8502 to MODULE_DEVICE_TABLE + - wifi: rtw89: 8852b: adjust quota to avoid SER L1 caused by access null page + - zsmalloc: move LRU update from zs_map_object() to zs_malloc() + - mm/vmemmap/devdax: fix kernel crash when probing devdax devices + - cifs: fix smb1 mount regression + - cxl: Move cxl_await_media_ready() to before capacity info retrieval + - net: ethernet: mtk_eth_soc: fix QoS on DSA MAC on non MTK_NETSYS_V2 SoCs + - Upstream stable to v6.1.31, v6.3.5 + - inet: Add IP_LOCAL_PORT_RANGE socket option + - ipv{4,6}/raw: fix output xfrm lookup wrt protocol + - firmware: arm_ffa: Fix usage of partition info get count flag + - selftests/bpf: Fix pkg-config call building sign-file + - platform/x86/amd/pmf: Fix CnQF and auto-mode after resume + - tls: rx: device: fix checking decryption status + - tls: rx: strp: set the skb->len of detached / CoW'ed skbs + - tls: rx: strp: fix determining record length in copy mode + - tls: rx: strp: force mixed decrypted records into copy mode + - tls: rx: strp: factor out copying skb data + - tls: rx: strp: preserve decryption status of skbs when needed + - net/mlx5: E-switch, Devcom, sync devcom events and devcom comp register + - gpio-f7188x: fix chip name and pin count on Nuvoton chip + - bpf, sockmap: Pass skb ownership through read_skb + - bpf, sockmap: Convert schedule_work into delayed_work + - bpf, sockmap: Reschedule is now done through backlog + - bpf, sockmap: Improved check for empty queue + - bpf, sockmap: Handle fin correctly + - bpf, sockmap: TCP data stall on recv before accept + - bpf, sockmap: Wake up polling after data copy + - bpf, sockmap: Incorrectly handling copied_seq + - blk-mq: fix race condition in active queue accounting + - vfio/type1: check pfn valid before converting to struct page + - net: page_pool: use in_softirq() instead + - page_pool: fix inconsistency for page_pool_ring_[un]lock() + - net: phy: mscc: enable VSC8501/2 RGMII RX clock + - wifi: iwlwifi: mvm: support wowlan info notification version 2 + - drm/amd: Don't allow s0ix on APUs older than Raven + - bluetooth: Add cmd validity checks at the start of hci_sock_ioctl() + - Revert "thermal/drivers/mellanox: Use generic thermal_zone_get_trip() + function" + - block: fix bio-cache for passthru IO + - cpufreq: amd-pstate: Update policy->cur in amd_pstate_adjust_perf() + - cpufreq: amd-pstate: Add ->fast_switch() callback + - netfilter: ctnetlink: Support offloaded conntrack entry deletion + - tools headers UAPI: Sync the linux/in.h with the kernel sources + - gpiolib: fix allocation of mixed dynamic/static GPIOs + - net: fec: add dma_wmb to ensure correct descriptor values + - cxl/port: Fix NULL pointer access in devm_cxl_add_port() + - blk-wbt: fix that wbt can't be disabled by default + - Upstream stable to v6.1.32, v6.3.6 + + * sysfs msi_irqs directory empty with kernel-5.19 when being a xen guest + (LP: #2022354) // Lunar update: upstream stable patchset 2023-07-28 + (LP: #2028979) + - x86/pci/xen: populate MSI sysfs entries + + * Lunar update: upstream stable patchset 2023-07-26 (LP: #2028808) + - drm/fbdev-generic: prohibit potential out-of-bounds access + - drm/mipi-dsi: Set the fwnode for mipi_dsi_device + - ARM: 9296/1: HP Jornada 7XX: fix kernel-doc warnings + - net: skb_partial_csum_set() fix against transport header magic value + - net: mdio: mvusb: Fix an error handling path in mvusb_mdio_probe() + - scsi: ufs: core: Fix I/O hang that occurs when BKOPS fails in W-LUN suspend + - tick/broadcast: Make broadcast device replacement work correctly + - linux/dim: Do nothing if no time delta between samples + - net: stmmac: Initialize MAC_ONEUS_TIC_COUNTER register + - net: Fix load-tearing on sk->sk_stamp in sock_recv_cmsgs(). + - net: phy: bcm7xx: Correct read from expansion register + - netfilter: nf_tables: always release netdev hooks from notifier + - netfilter: conntrack: fix possible bug_on with enable_hooks=1 + - bonding: fix send_peer_notif overflow + - netlink: annotate accesses to nlk->cb_running + - net: annotate sk->sk_err write from do_recvmmsg() + - net: deal with most data-races in sk_wait_event() + - net: add vlan_get_protocol_and_depth() helper + - tcp: add annotations around sk->sk_shutdown accesses + - gve: Remove the code of clearing PBA bit + - net: mscc: ocelot: fix stat counter register values + - net: datagram: fix data-races in datagram_poll() + - af_unix: Fix a data race of sk->sk_receive_queue->qlen. + - af_unix: Fix data races around sk->sk_shutdown. + - drm/i915/guc: Don't capture Gen8 regs on Xe devices + - drm/i915: Fix NULL ptr deref by checking new_crtc_state + - drm/i915/dp: prevent potential div-by-zero + - drm/i915: Expand force_probe to block probe of devices as well. + - drm/i915: taint kernel when force probing unsupported devices + - fbdev: arcfb: Fix error handling in arcfb_probe() + - ext4: reflect error codes from ext4_multi_mount_protect() to its callers + - ext4: allow to find by goal if EXT4_MB_HINT_GOAL_ONLY is set + - ext4: allow ext4_get_group_info() to fail + - refscale: Move shutdown from wait_event() to wait_event_idle() + - selftests: cgroup: Add 'malloc' failures checks in test_memcontrol + - rcu: Protect rcu_print_task_exp_stall() ->exp_tasks access + - open: return EINVAL for O_DIRECTORY | O_CREAT + - fs: hfsplus: remove WARN_ON() from hfsplus_cat_{read,write}_inode() + - drm/displayid: add displayid_get_header() and check bounds better + - drm/amd/display: populate subvp cmd info only for the top pipe + - drm/amd/display: Correct DML calculation to align HW formula + - platform/x86: x86-android-tablets: Add Acer Iconia One 7 B1-750 data + - drm/amd/display: Enable HostVM based on rIOMMU active + - drm/amd/display: Use DC_LOG_DC in the trasform pixel function + - regmap: cache: Return error in cache sync operations for REGCACHE_NONE + - remoteproc: imx_dsp_rproc: Add custom memory copy implementation for i.MX + DSP Cores + - arm64: dts: qcom: msm8996: Add missing DWC3 quirks + - media: cx23885: Fix a null-ptr-deref bug in buffer_prepare() and + buffer_finish() + - media: pci: tw68: Fix null-ptr-deref bug in buf prepare and finish + - media: pvrusb2: VIDEO_PVRUSB2 depends on DVB_CORE to use dvb_* symbols + - ACPI: processor: Check for null return of devm_kzalloc() in fch_misc_setup() + - drm/rockchip: dw_hdmi: cleanup drm encoder during unbind + - arm64: dts: imx8mq-librem5: Remove dis_u3_susphy_quirk from usb_dwc3_0 + - firmware: arm_sdei: Fix sleep from invalid context BUG + - ACPI: EC: Fix oops when removing custom query handlers + - drm/amd/display: fixed dcn30+ underflow issue + - remoteproc: stm32_rproc: Add mutex protection for workqueue + - drm/tegra: Avoid potential 32-bit integer overflow + - drm/msm/dp: Clean up handling of DP AUX interrupts + - ACPICA: Avoid undefined behavior: applying zero offset to null pointer + - ACPICA: ACPICA: check null return of ACPI_ALLOCATE_ZEROED in + acpi_db_display_objects + - arm64: dts: qcom: sdm845-polaris: Drop inexistent properties + - irqchip/gicv3: Workaround for NVIDIA erratum T241-FABRIC-4 + - ACPI: video: Remove desktops without backlight DMI quirks + - drm/amd/display: Correct DML calculation to follow HW SPEC + - drm/amd: Fix an out of bounds error in BIOS parser + - drm/amdgpu: Fix sdma v4 sw fini error + - media: Prefer designated initializers over memset for subdev pad ops + - media: mediatek: vcodec: Fix potential array out-of-bounds in decoder + queue_setup + - wifi: ath: Silence memcpy run-time false positive warning + - bpf: Annotate data races in bpf_local_storage + - wifi: brcmfmac: pcie: Provide a buffer of random bytes to the device + - wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex + - ext2: Check block size validity during mount + - scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow + - scsi: lpfc: Correct used_rpi count when devloss tmo fires with no recovery + - bnxt: avoid overflow in bnxt_get_nvram_directory() + - net: pasemi: Fix return type of pasemi_mac_start_tx() + - net: Catch invalid index in XPS mapping + - netdev: Enforce index cap in netdev_get_tx_queue + - scsi: target: iscsit: Free cmds before session free + - lib: cpu_rmap: Avoid use after free on rmap->obj array entries + - scsi: message: mptlan: Fix use after free bug in mptlan_remove() due to race + condition + - gfs2: Fix inode height consistency check + - scsi: ufs: ufs-pci: Add support for Intel Lunar Lake + - ext4: set goal start correctly in ext4_mb_normalize_request + - ext4: Fix best extent lstart adjustment logic in ext4_mb_new_inode_pa() + - crypto: jitter - permanent and intermittent health errors + - f2fs: Fix system crash due to lack of free space in LFS + - f2fs: fix to drop all dirty pages during umount() if cp_error is set + - f2fs: fix to check readonly condition correctly + - samples/bpf: Fix fout leak in hbm's run_bpf_prog + - bpf: Add preempt_count_{sub,add} into btf id deny list + - md: fix soft lockup in status_resync + - wifi: iwlwifi: pcie: fix possible NULL pointer dereference + - wifi: iwlwifi: add a new PCI device ID for BZ device + - wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf + - wifi: iwlwifi: mvm: fix ptk_pn memory leak + - block, bfq: Fix division by zero error on zero wsum + - wifi: ath11k: Ignore frags from uninitialized peer in dp. + - wifi: iwlwifi: fix iwl_mvm_max_amsdu_size() for MLO + - null_blk: Always check queue mode setting from configfs + - wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace + - wifi: ath11k: Fix SKB corruption in REO destination ring + - nbd: fix incomplete validation of ioctl arg + - ipvs: Update width of source for ip_vs_sync_conn_options + - Bluetooth: btusb: Add new PID/VID 04ca:3801 for MT7663 + - Bluetooth: Add new quirk for broken local ext features page 2 + - Bluetooth: btrtl: add support for the RTL8723CS + - Bluetooth: Improve support for Actions Semi ATS2851 based devices + - Bluetooth: btrtl: check for NULL in btrtl_set_quirks() + - Bluetooth: btintel: Add LE States quirk support + - Bluetooth: hci_bcm: Fall back to getting bdaddr from EFI if not set + - Bluetooth: Add new quirk for broken set random RPA timeout for ATS2851 + - Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp + - Bluetooth: btrtl: Add the support for RTL8851B + - HID: apple: Set the tilde quirk flag on the Geyser 4 and later + - staging: axis-fifo: initialize timeouts in init only + - ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A42) + - HID: logitech-hidpp: Don't use the USB serial for USB devices + - HID: logitech-hidpp: Reconcile USB and Unifying serials + - spi: spi-imx: fix MX51_ECSPI_* macros when cs > 3 + - usb: typec: ucsi: acpi: add quirk for ASUS Zenbook UM325 + - ALSA: hda: LNL: add HD Audio PCI ID + - ASoC: amd: Add Dell G15 5525 to quirks list + - ASoC: amd: yc: Add ThinkBook 14 G5+ ARP to quirks list for acp6x + - HID: apple: Set the tilde quirk flag on the Geyser 3 + - HID: Ignore battery for ELAN touchscreen on ROG Flow X13 GV301RA + - HID: wacom: generic: Set battery quirk only when we see battery data + - usb: typec: tcpm: fix multiple times discover svids error + - serial: 8250: Reinit port->pm on port specific driver unbind + - mcb-pci: Reallocate memory region to avoid memory overlapping + - sched: Fix KCSAN noinstr violation + - lkdtm/stackleak: Fix noinstr violation + - recordmcount: Fix memory leaks in the uwrite function + - soundwire: dmi-quirks: add remapping for Intel 'Rooks County' NUC M15 + - phy: st: miphy28lp: use _poll_timeout functions for waits + - soundwire: qcom: gracefully handle too many ports in DT + - soundwire: bus: Fix unbalanced pm_runtime_put() causing usage count + underflow + - mfd: intel_soc_pmic_chtwc: Add Lenovo Yoga Book X90F to intel_cht_wc_models + - mfd: dln2: Fix memory leak in dln2_probe() + - mfd: intel-lpss: Add Intel Meteor Lake PCH-S LPSS PCI IDs + - parisc: Replace regular spinlock with spin_trylock on panic path + - drm/amdgpu: drop gfx_v11_0_cp_ecc_error_irq_funcs + - xfrm: don't check the default policy if the policy allows the packet + - Revert "Fix XFRM-I support for nested ESP tunnels" + - drm/msm/dp: unregister audio driver during unbind + - drm/msm/dpu: Assign missing writeback log_mask + - drm/msm/dpu: Move non-MDP_TOP INTF_INTR offsets out of hwio header + - drm/msm/dpu: Remove duplicate register defines from INTF + - dt-bindings: display/msm: dsi-controller-main: Document qcom, master-dsi and + qcom, sync-dual-dsi + - ASoC: fsl_micfil: Fix error handler with pm_runtime_enable + - cpupower: Make TSC read per CPU for Mperf monitor + - xfrm: Reject optional tunnel/BEET mode templates in outbound policies + - af_key: Reject optional tunnel/BEET mode templates in outbound policies + - drm/msm: Fix submit error-path leaks + - selftests: seg6: disable DAD on IPv6 router cfg for srv6_end_dt4_l3vpn_test + - selftets: seg6: disable rp_filter by default in srv6_end_dt4_l3vpn_test + - net: fec: Better handle pm_runtime_get() failing in .remove() + - net: phy: dp83867: add w/a for packet errors seen with short cables + - ALSA: firewire-digi00x: prevent potential use after free + - wifi: mt76: connac: fix stats->tx_bytes calculation + - ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15 + - sfc: disable RXFCS and RXALL features by default + - vsock: avoid to close connected socket after the timeout + - tcp: fix possible sk_priority leak in tcp_v4_send_reset() + - serial: arc_uart: fix of_iomap leak in `arc_serial_probe` + - serial: 8250_bcm7271: balance clk_enable calls + - serial: 8250_bcm7271: fix leak in `brcmuart_probe` + - erspan: get the proto with the md version for collect_md + - net: dsa: rzn1-a5psw: enable management frames for CPU port + - net: dsa: rzn1-a5psw: fix STP states handling + - net: dsa: rzn1-a5psw: disable learning for standalone ports + - net: hns3: fix output information incomplete for dumping tx queue info with + debugfs + - net: hns3: fix sending pfc frames after reset issue + - net: hns3: fix reset delay time to avoid configuration timeout + - net: hns3: fix reset timeout when enable full VF + - media: netup_unidvb: fix use-after-free at del_timer() + - SUNRPC: double free xprt_ctxt while still in use + - SUNRPC: always free ctxt when freeing deferred request + - SUNRPC: Fix trace_svc_register() call site + - ASoC: mediatek: mt8186: Fix use-after-free in driver remove path + - ASoC: SOF: topology: Fix logic for copying tuples + - drm/exynos: fix g2d_open/close helper function definitions + - net: nsh: Use correct mac_offset to unwind gso skb in nsh_gso_segment() + - virtio-net: Maintain reverse cleanup order + - virtio_net: Fix error unwinding of XDP initialization + - tipc: add tipc_bearer_min_mtu to calculate min mtu + - tipc: do not update mtu if msg_max is too small in mtu negotiation + - tipc: check the bearer min mtu properly when setting it by netlink + - s390/cio: include subchannels without devices also for evaluation + - can: dev: fix missing CAN XL support in can_put_echo_skb() + - net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop() + - net: bcmgenet: Restore phy_stop() depending upon suspend/close + - ice: introduce clear_reset_state operation + - ice: Fix ice VF reset during iavf initialization + - wifi: cfg80211: Drop entries with invalid BSSIDs in RNR + - wifi: mac80211: fortify the spinlock against deadlock by interrupt + - wifi: mac80211: fix min center freq offset tracing + - wifi: mac80211: Abort running color change when stopping the AP + - wifi: iwlwifi: mvm: fix cancel_delayed_work_sync() deadlock + - wifi: iwlwifi: fw: fix DBGI dump + - wifi: iwlwifi: fix OEM's name in the ppag approved list + - wifi: iwlwifi: mvm: fix OEM's name in the tas approved list + - wifi: iwlwifi: mvm: don't trust firmware n_channels + - scsi: storvsc: Don't pass unused PFNs to Hyper-V host + - tun: Fix memory leak for detached NAPI queue. + - cassini: Fix a memory leak in the error handling path of cas_init_one() + - net: dsa: mv88e6xxx: Fix mv88e6393x EPC write command offset + - igb: fix bit_shift to be in [1..8] range + - vlan: fix a potential uninit-value in vlan_dev_hard_start_xmit() + - net: wwan: iosm: fix NULL pointer dereference when removing device + - net: pcs: xpcs: fix C73 AN not getting enabled + - net: selftests: Fix optstring + - netfilter: nf_tables: fix nft_trans type confusion + - netfilter: nft_set_rbtree: fix null deref on element insertion + - bridge: always declare tunnel functions + - ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go + - USB: usbtmc: Fix direction for 0-length ioctl control messages + - usb-storage: fix deadlock when a scsi command timeouts more than once + - USB: UHCI: adjust zhaoxin UHCI controllers OverCurrent bit value + - usb: dwc3: gadget: Improve dwc3_gadget_suspend() and dwc3_gadget_resume() + - usb: dwc3: debugfs: Resume dwc3 before accessing registers + - usb: gadget: u_ether: Fix host MAC address case + - usb: typec: altmodes/displayport: fix pin_assignment_show + - Revert "usb: gadget: udc: core: Prevent redundant calls to pullup" + - Revert "usb: gadget: udc: core: Invoke usb_gadget_connect only when started" + - xhci-pci: Only run d3cold avoidance quirk for s2idle + - xhci: Fix incorrect tracking of free space on transfer rings + - ALSA: hda: Fix Oops by 9.1 surround channel names + - ALSA: hda/realtek: Add quirk for Clevo L140AU + - ALSA: hda/realtek: Add a quirk for HP EliteDesk 805 + - ALSA: hda/realtek: Add quirk for 2nd ASUS GU603 + - ALSA: hda/realtek: Add quirk for HP EliteBook G10 laptops + - can: j1939: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: isotp: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop() + - can: kvaser_pciefd: Call request_irq() before enabling interrupts + - can: kvaser_pciefd: Empty SRB buffer in probe + - can: kvaser_pciefd: Clear listen-only bit if not explicitly requested + - can: kvaser_pciefd: Do not send EFLUSH command on TFD interrupt + - can: kvaser_pciefd: Disable interrupts in probe error path + - wifi: rtw88: use work to update rate to avoid RCU warning + - SMB3: Close all deferred handles of inode in case of handle lease break + - SMB3: drop reference to cfile before sending oplock break + - ksmbd: smb2: Allow messages padded to 8byte boundary + - ksmbd: allocate one more byte for implied bcc[0] + - ksmbd: fix wrong UserName check in session_user + - ksmbd: fix global-out-of-bounds in smb2_find_context_vals + - KVM: Fix vcpu_array[0] races + - statfs: enforce statfs[64] structure initialization + - maple_tree: make maple state reusable after mas_empty_area() + - mm: fix zswap writeback race condition + - serial: Add support for Advantech PCI-1611U card + - serial: 8250_exar: Add support for USR298x PCI Modems + - serial: qcom-geni: fix enabling deactivated interrupt + - thunderbolt: Clear registers properly when auto clear isn't in use + - vc_screen: reload load of struct vc_data pointer in vcs_write() to avoid UAF + - ceph: force updating the msg pointer in non-split case + - drm/amd/pm: fix possible power mode mismatch between driver and PMFW + - drm/amdgpu/gmc11: implement get_vbios_fb_size() + - drm/amdgpu/gfx10: Disable gfxoff before disabling powergating. + - drm/amdgpu/gfx11: Adjust gfxoff before powergating on gfx11 as well + - dt-bindings: ata: ahci-ceva: Cover all 4 iommus entries + - powerpc/iommu: DMA address offset is incorrectly calculated with 2MB TCEs + - powerpc/iommu: Incorrect DDW Table is referenced for SR-IOV device + - tpm/tpm_tis: Disable interrupts for more Lenovo devices + - powerpc/64s/radix: Fix soft dirty tracking + - nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode() + - s390/dasd: fix command reject error on ESE devices + - s390/crypto: use vector instructions only if available for ChaCha20 + - s390/qdio: fix do_sqbs() inline assembly constraint + - arm64: mte: Do not set PG_mte_tagged if tags were not initialized + - rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler + - rethook, fprobe: do not trace rethook related functions + - remoteproc: imx_dsp_rproc: Fix kernel test robot sparse warning + - drm/amd/amdgpu: introduce gc_*_mes_2.bin v2 + - drm/amdgpu: reserve the old gc_11_0_*_mes.bin + - drm/nouveau/disp: More DP_RECEIVER_CAP_SIZE array fixes + - xfrm: release all offloaded policy memory + - xfrm: Fix leak of dev tracker + - media: pvrusb2: fix DVB_CORE dependency + - net: fec: remove the xdp_return_frame when lack of tx BDs + - iavf: send VLAN offloading caps once after VFR + - wifi: brcmfmac: Check for probe() id argument being NULL + - wifi: rtw88: correct qsel_to_ep[] type as int + - KVM: arm64: Infer the PA offset from IPA in stage-2 map walker + - perf script: Skip aggregation for stat events + - iommu/arm-smmu-qcom: Fix missing adreno_smmu's + - arm64: Also reset KASAN tag if page is not PG_mte_tagged + - Upstream stable to v6.1.30, v6.3.4 + + * Lunar update: v6.2.16 upstream stable release (LP: #2028580) + - USB: dwc3: gadget: drop dead hibernation code + - usb: dwc3: gadget: Execute gadget stop after halting the controller + - crypto: ccp - Clear PSP interrupt status register before calling handler + - ASoC: codecs: constify static sdw_slave_ops struct + - ASoC: codecs: wcd938x: fix accessing regmap on unattached devices + - mtd: spi-nor: Add a RWW flag + - mtd: spi-nor: spansion: Enable JFFS2 write buffer for Infineon s28hx SEMPER + flash + - qcom: llcc/edac: Support polling mode for ECC handling + - soc: qcom: llcc: Do not create EDAC platform device on SDM845 + - mailbox: zynq: Switch to flexible array to simplify code + - mailbox: zynqmp: Fix counts of child nodes + - mtd: spi-nor: spansion: Enable JFFS2 write buffer for Infineon s25hx SEMPER + flash + - fs/ntfs3: Fix null-ptr-deref on inode->i_op in ntfs_lookup() + - drm/amd/display: Ext displays with dock can't recognized after resume + - KVM: x86/mmu: Avoid indirect call for get_cr3 + - KVM: x86: Do not unload MMU roots when only toggling CR0.WP with TDP enabled + - KVM: x86: Make use of kvm_read_cr*_bits() when testing bits + - KVM: VMX: Make CR0.WP a guest owned bit + - KVM: x86/mmu: Refresh CR0.WP prior to checking for emulated permission + faults + - RDMA/rxe: Remove rxe_alloc() + - RDMA/rxe: Change rxe_dbg to rxe_dbg_dev + - RDMA/rxe: Extend dbg log messages to err and info + - ASoC: Intel: soc-acpi-byt: Fix "WM510205" match no longer working + - scsi: qedi: Fix use after free bug in qedi_remove() + - drm/amd/display: Add missing WA and MCLK validation + - drm/amd/display: Return error code on DSC atomic check failure + - drm/amd/display: Fixes for dcn32_clk_mgr implementation + - drm/amd/display: Reset OUTBOX0 r/w pointer on DMUB reset + - drm/amd/display: Do not clear GPINT register when releasing DMUB from reset + - drm/amd/display: Update bounding box values for DCN321 + - rxrpc: Fix potential data race in rxrpc_wait_to_be_connected() + - ixgbe: Fix panic during XDP_TX with > 64 CPUs + - octeonxt2-af: mcs: Fix per port bypass config + - octeontx2-af: mcs: Write TCAM_DATA and TCAM_MASK registers at once + - octeontx2-af: mcs: Config parser to skip 8B header + - octeontx2-af: mcs: Fix MCS block interrupt + - octeontx2-pf: mcs: Fix NULL pointer dereferences + - octeontx2-pf: mcs: Match macsec ethertype along with DMAC + - octeontx2-pf: mcs: Clear stats before freeing resource + - octeontx2-pf: mcs: Fix shared counters logic + - octeontx2-pf: mcs: Do not reset PN while updating secy + - net/ncsi: clear Tx enable mode when handling a Config required AEN + - tcp: fix skb_copy_ubufs() vs BIG TCP + - net/sched: cls_api: remove block_cb from driver_list before freeing + - sit: update dev->needed_headroom in ipip6_tunnel_bind_dev() + - selftests: srv6: make srv6_end_dt46_l3vpn_test more robust + - net: ipv6: fix skb hash for some RST packets + - net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu + - writeback: fix call of incorrect macro + - block: Skip destroyed blkg when restart in blkg_destroy_all() + - watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe() + - RISC-V: mm: Enable huge page support to kernel_page_present() function + - i2c: tegra: Fix PEC support for SMBUS block read + - net/sched: act_mirred: Add carrier check + - r8152: fix flow control issue of RTL8156A + - r8152: fix the poor throughput for 2.5G devices + - r8152: move setting r8153b_rx_agg_chg_indicate() + - sfc: Fix module EEPROM reporting for QSFP modules + - rxrpc: Fix hard call timeout units + - rxrpc: Make it so that a waiting process can be aborted + - rxrpc: Fix timeout of a call that hasn't yet been granted a channel + - riscv: compat_syscall_table: Fixup compile warning + - net: ethernet: mtk_eth_soc: drop generic vlan rx offload, only use DSA + untagging + - drm/i915/mtl: Add the missing CPU transcoder mask in intel_device_info + - selftests: netfilter: fix libmnl pkg-config usage + - octeontx2-af: Secure APR table update with the lock + - octeontx2-af: Fix start and end bit for scan config + - octeontx2-af: Fix depth of cam and mem table. + - octeontx2-pf: Increase the size of dmac filter flows + - octeontx2-af: Add validation for lmac type + - octeontx2-af: Update correct mask to filter IPv4 fragments + - octeontx2-af: Update/Fix NPC field hash extract feature + - octeontx2-af: Fix issues with NPC field hash extract + - octeontx2-af: Skip PFs if not enabled + - octeontx2-pf: Disable packet I/O for graceful exit + - octeontx2-vf: Detach LF resources on probe cleanup + - ionic: remove noise from ethtool rxnfc error msg + - ethtool: Fix uninitialized number of lanes + - ionic: catch failure from devlink_alloc + - af_packet: Don't send zero-byte data in packet_sendmsg_spkt(). + - drm/amdgpu: add a missing lock for AMDGPU_SCHED + - ALSA: caiaq: input: Add error handling for unsupported input methods in + `snd_usb_caiaq_input_init` + - KVM: s390: pv: fix asynchronous teardown for small VMs + - KVM: s390: fix race in gmap_make_secure() + - net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621 + - net: dsa: mt7530: split-off common parts from mt7531_setup + - net: dsa: mt7530: fix network connectivity with multiple CPU ports + - ice: block LAN in case of VF to VF offload + - virtio_net: suppress cpu stall when free_unused_bufs + - net: enetc: check the index of the SFI rather than the handle + - net: fec: correct the counting of XDP sent frames + - perf record: Fix "read LOST count failed" msg with sample read + - perf build: Support python/perf.so testing + - perf scripts intel-pt-events.py: Fix IPC output for Python 2 + - perf script: Fix Python support when no libtraceevent + - perf hist: Improve srcfile sort key performance (really) + - perf vendor events s390: Remove UTF-8 characters from JSON file + - perf tests record_offcpu.sh: Fix redirection of stderr to stdin + - perf ftrace: Make system wide the default target for latency subcommand + - perf vendor events power9: Remove UTF-8 characters from JSON files + - perf pmu: zfree() expects a pointer to a pointer to zero it after freeing + its contents + - perf map: Delete two variable initialisations before null pointer checks in + sort__sym_from_cmp() + - perf cs-etm: Fix timeless decode mode detection + - crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs() + - crypto: api - Add scaffolding to change completion function signature + - crypto: engine - Use crypto_request_complete + - crypto: engine - fix crypto_queue backlog handling + - perf symbols: Fix return incorrect build_id size in elf_read_build_id() + - perf tracepoint: Fix memory leak in is_valid_tracepoint() + - perf stat: Separate bperf from bpf_profiler + - KVM: x86/mmu: Change tdp_mmu to a read-only parameter + - KVM: x86/mmu: Move TDP MMU VM init/uninit behind tdp_mmu_enabled + - KVM: x86/mmu: Replace open coded usage of tdp_mmu_page with + is_tdp_mmu_page() + - KVM: x86: Preserve TDP MMU roots until they are explicitly invalidated + - ksmbd: Implements sess->ksmbd_chann_list as xarray + - ksmbd: fix racy issue from session setup and logoff + - ksmbd: block asynchronous requests when making a delay on session setup + - ksmbd: destroy expired sessions + - ksmbd: fix racy issue from smb2 close and logoff with multichannel + - wifi: iwlwifi: mvm: fix potential memory leak + - cifs: check only tcon status on tcon related functions + - cifs: avoid potential races when handling multiple dfs tcons + - netfilter: nf_tables: extended netlink error reporting for netdevice + - netfilter: nf_tables: rename function to destroy hook list + - netfilter: nf_tables: hit ENOENT on unexisting chain/flowtable update with + missing attributes + - x86/retbleed: Fix return thunk alignment + - btrfs: fix btrfs_prev_leaf() to not return the same key twice + - btrfs: zoned: fix wrong use of bitops API in btrfs_ensure_empty_zones + - btrfs: properly reject clear_cache and v1 cache for block-group-tree + - btrfs: fix assertion of exclop condition when starting balance + - btrfs: fix encoded write i_size corruption with no-holes + - btrfs: don't free qgroup space unless specified + - btrfs: zero the buffer before marking it dirty in btrfs_redirty_list_add + - btrfs: make clear_cache mount option to rebuild FST without disabling it + - btrfs: print-tree: parent bytenr must be aligned to sector size + - btrfs: fix space cache inconsistency after error loading it from disk + - btrfs: zoned: zone finish data relocation BG with last IO + - btrfs: zoned: fix full zone super block reading on ZNS + - btrfs: fix backref walking not returning all inode refs + - cifs: fix pcchunk length type in smb2_copychunk_range + - cifs: release leases for deferred close handles when freezing + - platform/x86/intel-uncore-freq: Return error on write frequency + - platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the + Juno Tablet + - platform/x86: thinkpad_acpi: Fix platform profiles on T490 + - platform/x86: hp-wmi: add micmute to hp_wmi_keymap struct + - platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i + - platform/x86: thinkpad_acpi: Add profile force ability + - inotify: Avoid reporting event with invalid wd + - smb3: fix problem remounting a share after shutdown + - SMB3: force unmount was failing to close deferred close files + - sh: math-emu: fix macro redefined warning + - sh: mcount.S: fix build error when PRINTK is not enabled + - sh: init: use OF_EARLY_FLATTREE for early init + - sh: nmi_debug: fix return value of __setup handler + - proc_sysctl: update docs for __register_sysctl_table() + - proc_sysctl: enhance documentation + - remoteproc: stm32: Call of_node_put() on iteration error + - remoteproc: st: Call of_node_put() on iteration error + - remoteproc: imx_dsp_rproc: Call of_node_put() on iteration error + - remoteproc: imx_rproc: Call of_node_put() on iteration error + - remoteproc: rcar_rproc: Call of_node_put() on iteration error + - sysctl: clarify register_sysctl_init() base directory order + - ARM: dts: aspeed: asrock: Correct firmware flash SPI clocks + - ARM: dts: exynos: fix WM8960 clock name in Itop Elite + - ARM: dts: s5pv210: correct MIPI CSIS clock name + - ARM: dts: aspeed: romed8hm3: Fix GPIO polarity of system-fault LED + - drm/msm/adreno: fix runtime PM imbalance at gpu load + - drm/bridge: lt8912b: Fix DSI Video Mode + - drm/i915/color: Fix typo for Plane CSC indexes + - drm/msm: fix NULL-deref on snapshot tear down + - drm/msm: fix NULL-deref on irq uninstall + - drm/msm: fix drm device leak on bind errors + - drm/msm: fix vram leak on bind errors + - drm/msm: fix missing wq allocation error handling + - drm/msm: fix workqueue leak on bind errors + - drm/i915/dsi: Use unconditional msleep() instead of intel_dsi_msleep() + - f2fs: factor out victim_entry usage from general rb_tree use + - f2fs: fix null pointer panic in tracepoint in __replace_atomic_write_block + - f2fs: fix potential corruption when moving a directory + - irqchip/loongson-pch-pic: Fix pch_pic_acpi_init calling + - irqchip/loongson-pch-pic: Fix registration of syscore_ops + - irqchip/loongson-eiointc: Fix returned value on parsing MADT + - irqchip/loongson-eiointc: Fix incorrect use of acpi_get_vec_parent + - irqchip/loongson-eiointc: Fix registration of syscore_ops + - drm/panel: otm8009a: Set backlight parent to panel device + - drm/amd/display: Add NULL plane_state check for cursor disable logic + - drm/amd/display: Fix 4to1 MPC black screen with DPP RCO + - drm/amd/display: filter out invalid bits in pipe_fuses + - drm/amd/display: fix flickering caused by S/G mode + - drm/amdgpu: drop redundant sched job cleanup when cs is aborted + - drm/amdgpu: fix amdgpu_irq_put call trace in gmc_v10_0_hw_fini + - drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() + - drm/amdgpu: fix amdgpu_irq_put call trace in gmc_v11_0_hw_fini + - drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx + ras + - drm/amdgpu/jpeg: Remove harvest checking for JPEG3 + - drm/amdgpu: change gfx 11.0.4 external_id range + - drm/amdgpu: Fix vram recover doesn't work after whole GPU reset (v2) + - drm/amd/display: Enforce 60us prefetch for 200Mhz DCFCLK modes + - drm/amd/pm: parse pp_handle under appropriate conditions + - drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend + - drm/amd/pm: avoid potential UBSAN issue on legacy asics + - drm/amd: Load MES microcode during early_init + - drm/amd: Add a new helper for loading/validating microcode + - drm/amd: Use `amdgpu_ucode_*` helpers for MES + - HID: wacom: Set a default resolution for older tablets + - HID: wacom: insert timestamp to packed Bluetooth (BT) events + - fs/ntfs3: Refactoring of various minor issues + - drm/msm/adreno: adreno_gpu: Use suspend() instead of idle() on load error + - drm/i915/mtl: Add workarounds Wa_14017066071 and Wa_14017654203 + - drm/i915/mtl: Add Wa_14017856879 + - drm/i915: disable sampler indirect state in bindless heap + - drm/i915/mtl: update scaler source and destination limits for MTL + - drm/i915: Check pipe source size when using skl+ scalers + - drm/amd/display: Fix Z8 support configurations + - drm/amd/display: Add minimum Z8 residency debug option + - drm/amd/display: Update minimum stutter residency for DCN314 Z8 + - drm/amd/display: Lowering min Z8 residency time + - drm/amd/display: Update Z8 SR exit/enter latencies + - drm/amd/display: Change default Z8 watermark values + - drm: Add missing DP DSC extended capability definitions. + - drm/dsc: fix drm_edp_dsc_sink_output_bpp() DPCD high byte usage + - locking/rwsem: Add __always_inline annotation to __down_read_common() and + inlined callers + - ext4: fix WARNING in mb_find_extent + - ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum + - ext4: fix data races when using cached status extents + - ext4: avoid deadlock in fs reclaim with page writeback + - ext4: check iomap type only if ext4_iomap_begin() does not fail + - ext4: improve error recovery code paths in __ext4_remount() + - ext4: improve error handling from ext4_dirhash() + - ext4: fix deadlock when converting an inline directory in nojournal mode + - ext4: add bounds checking in get_max_inline_xattr_value_size() + - ext4: bail out of ext4_xattr_ibody_get() fails for any reason + - ext4: fix lockdep warning when enabling MMP + - ext4: remove a BUG_ON in ext4_mb_release_group_pa() + - ext4: fix invalid free tracking in ext4_xattr_move_to_block() + - drm/dsc: fix DP_DSC_MAX_BPP_DELTA_* macro values + - x86/amd_nb: Add PCI ID for family 19h model 78h + - x86: fix clear_user_rep_good() exception handling annotation + - spi: fsl-spi: Re-organise transfer bits_per_word adaptation + - spi: fsl-cpm: Use 16 bit mode for large transfers with even size + - drm/amd/display: Fix hang when skipping modeset + - Linux 6.2.16 + + * CVE-2023-31084 // CVE-2023-31084 was assigned to this bug. + - media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*() + + * CVE-2023-3776 + - net/sched: cls_fw: Fix improper refcount update leads to use-after-free + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] resync getabis + + -- Stefan Bader Wed, 09 Aug 2023 12:02:56 +0200 + linux (6.2.0-27.28) lunar; urgency=medium * lunar/linux: 6.2.0-27.28 -proposed tracker (LP: #2026488) diff -u linux-6.2.0/debian.master/config/annotations linux-6.2.0/debian.master/config/annotations --- linux-6.2.0/debian.master/config/annotations +++ linux-6.2.0/debian.master/config/annotations @@ -1195,6 +1195,7 @@ CONFIG_ARCH_HAS_CC_PLATFORM policy<{'amd64': 'y', 'ppc64el': 'y'}> CONFIG_ARCH_HAS_COPY_MC policy<{'amd64': 'y', 'ppc64el': 'y'}> CONFIG_ARCH_HAS_CPU_CACHE_INVALIDATE_MEMREGION policy<{'amd64': 'y'}> +CONFIG_ARCH_HAS_CPU_FINALIZE_INIT policy<{'amd64': 'y', 'armhf': 'y'}> CONFIG_ARCH_HAS_CPU_RELAX policy<{'amd64': 'y'}> CONFIG_ARCH_HAS_CURRENT_STACK_POINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_ARCH_HAS_DEBUG_VIRTUAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> @@ -2445,7 +2446,7 @@ CONFIG_CC_NO_ARRAY_BOUNDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_CC_OPTIMIZE_FOR_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> -CONFIG_CC_VERSION_TEXT policy<{'amd64': '"x86_64-linux-gnu-gcc-12 (Ubuntu 12.2.0-17ubuntu1) 12.2.0"', 'arm64': '"aarch64-linux-gnu-gcc-12 (Ubuntu 12.2.0-14ubuntu2) 12.2.0"', 'armhf': '"arm-linux-gnueabihf-gcc-12 (Ubuntu 12.2.0-14ubuntu2) 12.2.0"', 'ppc64el': '"powerpc64le-linux-gnu-gcc-12 (Ubuntu 12.2.0-14ubuntu2) 12.2.0"', 'riscv64': '"riscv64-linux-gnu-gcc-12 (Ubuntu 12.2.0-14ubuntu2) 12.2.0"', 's390x': '"s390x-linux-gnu-gcc-12 (Ubuntu 12.2.0-14ubuntu2) 12.2.0"'}> +CONFIG_CC_VERSION_TEXT policy<{'amd64': '"x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0"', 'arm64': '"aarch64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0"', 'armhf': '"arm-linux-gnueabihf-gcc-12 (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0"', 'ppc64el': '"powerpc64le-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0"', 'riscv64': '"riscv64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0"', 's390x': '"s390x-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~23.04) 12.3.0"'}> CONFIG_CDNS_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_CDROM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_CDROM_PKTCDVD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> @@ -4988,9 +4989,10 @@ CONFIG_GART_IOMMU policy<{'amd64': 'y'}> CONFIG_GCC11_NO_ARRAY_BOUNDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_GCC_SUPPORTS_DYNAMIC_FTRACE_WITH_ARGS policy<{'arm64': 'y'}> -CONFIG_GCC_VERSION policy<{'amd64': '120200', 'arm64': '120200', 'armhf': '120200', 'ppc64el': '120200', 'riscv64': '120200', 's390x': '120200'}> +CONFIG_GCC_VERSION policy<{'amd64': '120300', 'arm64': '120300', 'armhf': '120300', 'ppc64el': '120300', 'riscv64': '120300', 's390x': '120300'}> CONFIG_GCOV_KERNEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> CONFIG_GDB_SCRIPTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_GDS_FORCE_MITIGATION policy<{'amd64': 'y'}> CONFIG_GEMINI_ETHERNET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_GENERIC_ADC_BATTERY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_GENERIC_ADC_THERMAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> @@ -8999,7 +9001,7 @@ CONFIG_PAGE_TABLE_ISOLATION policy<{'amd64': 'y'}> CONFIG_PAHOLE_HAS_LANG_EXCLUDE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_PAHOLE_HAS_SPLIT_BTF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> -CONFIG_PAHOLE_VERSION policy<{'amd64': '124', 'arm64': '124', 'armhf': '124', 'ppc64el': '124', 'riscv64': '124', 's390x': '124'}> +CONFIG_PAHOLE_VERSION policy<{'amd64': '125', 'arm64': '125', 'armhf': '125', 'ppc64el': '125', 'riscv64': '125', 's390x': '125'}> CONFIG_PALMAS_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_PANASONIC_LAPTOP policy<{'amd64': 'm'}> CONFIG_PANEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> diff -u linux-6.2.0/debian.master/reconstruct linux-6.2.0/debian.master/reconstruct --- linux-6.2.0/debian.master/reconstruct +++ linux-6.2.0/debian.master/reconstruct @@ -1,5 +1,15 @@ # Recreate any symlinks created since the orig. # Remove any files deleted from the orig. +rm -f 'arch/alpha/include/asm/bugs.h' +rm -f 'arch/ia64/include/asm/bugs.h' +rm -f 'arch/m68k/include/asm/bugs.h' +rm -f 'arch/parisc/include/asm/bugs.h' +rm -f 'arch/powerpc/include/asm/bugs.h' +rm -f 'arch/sh/include/asm/bugs.h' +rm -f 'arch/sparc/include/asm/bugs.h' +rm -f 'arch/um/include/asm/bugs.h' +rm -f 'arch/xtensa/include/asm/bugs.h' +rm -f 'include/asm-generic/bugs.h' rm -f 'net/sched/cls_tcindex.c' rm -f 'scripts/is_rust_module.sh' rm -f 'tools/testing/selftests/net/bpf/Makefile' diff -u linux-6.2.0/debian.master/tracking-bug linux-6.2.0/debian.master/tracking-bug --- linux-6.2.0/debian.master/tracking-bug +++ linux-6.2.0/debian.master/tracking-bug @@ -1 +1 @@ -2026488 2023.07.10-1 +2030381 2023.08.07-1 reverted: --- linux-6.2.0/debian.master/upstream.stable +++ linux-6.2.0.orig/debian.master/upstream.stable @@ -1,3 +0,0 @@ -# The following upstream stable releases have been ported: -[upstream-stable] - linux-6.2.y = v6.2.15 diff -u linux-6.2.0/debian/changelog linux-6.2.0/debian/changelog --- linux-6.2.0/debian/changelog +++ linux-6.2.0/debian/changelog @@ -1,3 +1,900 @@ +linux (6.2.0-30.30) lunar; urgency=medium + + * lunar/linux: 6.2.0-30.30 -proposed tracker (LP: #2030381) + + * CVE-2022-40982 + - init: Provide arch_cpu_finalize_init() + - x86/cpu: Switch to arch_cpu_finalize_init() + - ARM: cpu: Switch to arch_cpu_finalize_init() + - ia64/cpu: Switch to arch_cpu_finalize_init() + - m68k/cpu: Switch to arch_cpu_finalize_init() + - mips/cpu: Switch to arch_cpu_finalize_init() + - sh/cpu: Switch to arch_cpu_finalize_init() + - sparc/cpu: Switch to arch_cpu_finalize_init() + - um/cpu: Switch to arch_cpu_finalize_init() + - init: Remove check_bugs() leftovers + - init: Invoke arch_cpu_finalize_init() earlier + - init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() + - x86/init: Initialize signal frame size late + - x86/fpu: Remove cpuinfo argument from init functions + - x86/fpu: Mark init functions __init + - x86/fpu: Move FPU initialization into arch_cpu_finalize_init() + - x86/mem_encrypt: Unbreak the AMD_MEM_ENCRYPT=n build + - x86/xen: Fix secondary processors' FPU initialization + - x86/speculation: Add Gather Data Sampling mitigation + - x86/speculation: Add force option to GDS mitigation + - x86/speculation: Add Kconfig option for GDS + - KVM: Add GDS_NO support to KVM + - Documentation/x86: Fix backwards on/off logic about YMM support + - [Config]: Enable CONFIG_ARCH_HAS_CPU_FINALIZE_INIT and + CONFIG_GDS_FORCE_MITIGATION + + * CVE-2023-4015 + - netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound + set/chain + - netfilter: nf_tables: unbind non-anonymous set if rule construction fails + - netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR + + * CVE-2023-3995 + - netfilter: nf_tables: disallow rule addition to bound chain via + NFTA_RULE_CHAIN_ID + + * CVE-2023-3777 + - netfilter: nf_tables: skip bound chain on rule flush + + * CVE-2023-3609 + - net/sched: cls_u32: Fix reference counter leak leading to overflow + + * NULL pointer dereference on CS35L41 HDA AMP (LP: #2029199) + - ASoC: cs35l41: Refactor error release code + - ALSA: cs35l41: Add shared boost feature + - ASoC: dt-bindings: cirrus, cs35l41: Document CS35l41 shared boost + - ALSA: hda: cs35l41: Ensure firmware/tuning pairs are always loaded + - ALSA: hda: cs35l41: Enable Amp High Pass Filter + - ALSA: cs35l41: Use mbox command to enable speaker output for external boost + - ALSA: cs35l41: Poll for Power Up/Down rather than waiting a fixed delay + - ALSA: hda: cs35l41: Check mailbox status of pause command after firmware + load + - ALSA: hda: cs35l41: Ensure we correctly re-sync regmap before system + suspending. + - ALSA: hda: cs35l41: Ensure we pass up any errors during system suspend. + - ALSA: hda: cs35l41: Move Play and Pause into separate functions + - ALSA: hda: hda_component: Add pre and post playback hooks to hda_component + - ALSA: hda: cs35l41: Use pre and post playback hooks + - ALSA: hda: cs35l41: Rework System Suspend to ensure correct call separation + - ALSA: hda: cs35l41: Add device_link between HDA and cs35l41_hda + - ALSA: hda: cs35l41: Ensure amp is only unmuted during playback + + * Reboot command powers off the system (LP: #2029332) + - x86/smp: Make stop_other_cpus() more robust + - x86/smp: Dont access non-existing CPUID leaf + + * losetup with mknod fails on jammy with kernel 5.15.0-69-generic + (LP: #2015400) + - loop: deprecate autoloading callback loop_probe() + - loop: do not enforce max_loop hard limit by (new) default + + * Fix UBSAN in Intel EDAC driver (LP: #2028746) + - EDAC/skx_common: Enable EDAC support for the "near" memory + - EDAC/skx_common: Delete duplicated and unreachable code + - EDAC/i10nm: Add Intel Emerald Rapids server support + - EDAC/i10nm: Make more configurations CPU model specific + - EDAC/i10nm: Add Intel Granite Rapids server support + - EDAC/i10nm: Skip the absent memory controllers + + * Make TTY switching possible for NVIDIA when it's boot VGA (LP: #2028749) + - drm/gma500: Use drm_aperture_remove_conflicting_pci_framebuffers + - video/aperture: use generic code to figure out the vga default device + - drm/aperture: Remove primary argument + - video/aperture: Only kick vgacon when the pdev is decoding vga + - video/aperture: Move vga handling to pci function + - video/aperture: Drop primary argument + - video/aperture: Only remove sysfb on the default vga pci device + - fbdev: Simplify fb_is_primary_device for x86 + - video/aperture: Provide a VGA helper for gma500 and internal use + + * Fix AMD gpu hang when screen off/on (LP: #2028740) + - drm/amd/display: Keep PHY active for dp config + + * Various backlight issues with the 6.0/6.1 kernel (LP: #2023638) + - ACPI: video: Stop trying to use vendor backlight control on laptops from + after ~2012 + + * FM350(mtk_t7xx) failed to suspend, or early wake while suspending + (LP: #2020743) + - net: wwan: t7xx: Ensure init is completed before system sleep + + * Include the MAC address pass through function on RTL8153DD-CG (LP: #2020295) + - r8152: add USB device driver for config selection + + * CVE-2023-20593 + - x86/cpu/amd: Move the errata checking functionality up + - x86/cpu/amd: Add a Zenbleed fix + + * CVE-2023-4004 + - netfilter: nft_set_pipapo: fix improper element removal + + * CVE-2023-3611 + - net/sched: sch_qfq: refactor parsing of netlink parameters + - net/sched: sch_qfq: account for stab overhead in qfq_enqueue + + * CVE-2023-3610 + - netfilter: nf_tables: fix chain binding transaction logic + + * CVE-2023-2898 + - f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io() + + * Fix speaker volume too low on HP G10 laptops (LP: #2023197) + - ALSA: hda/realtek: Enable 4 amplifiers instead of 2 on a HP platform + + * stacked overlay file system mounts that have chroot() called against them + appear to be getting locked (by the kernel most likely?) (LP: #2016398) + - SAUCE: overlayfs: fix reference count mismatch + + * arm64+ast2600: No Output from BMC's VGA port (LP: #2026776) + - drm/ast: Fix ARM compatibility + + * Fix eDP only displays 3/4 area after switching to mirror mode with external + HDMI 4K monitor (LP: #2024273) + - drm/i915: Allow arbitrary refresh rates with VRR eDP panels + + * Fix AMDGPU: the screen freeze with W7500 (LP: #2027957) + - drm/amd/pm: share the code around SMU13 pcie parameters update + - drm/amd/pm: conditionally disable pcie lane/speed switching for SMU13 + - drm/amd: Move helper for dynamic speed switch check out of smu13 + - drm/amd: Align SMU11 SMU_MSG_OverridePcieParameters implementation with + SMU13 + + * UBSAN: shift-out-of-bounds in amd_sfh (LP: #2027773) + - HID: amd_sfh: Rename the float32 variable + - HID: amd_sfh: Fix for shift-out-of-bounds + + * cifs: fix mid leak during reconnection after timeout threshold + (LP: #2029138) + - cifs: fix mid leak during reconnection after timeout threshold + + * Lunar update: upstream stable patchset 2023-07-28 (LP: #2028979) + - usb: dwc3: fix gadget mode suspend interrupt handler issue + - tpm, tpm_tis: Avoid cache incoherency in test for interrupts + - tpm, tpm_tis: Only handle supported interrupts + - tpm_tis: Use tpm_chip_{start,stop} decoration inside tpm_tis_resume + - tpm, tpm_tis: startup chip before testing for interrupts + - tpm: Re-enable TPM chip boostrapping non-tpm_tis TPM drivers + - tpm: Prevent hwrng from activating during resume + - watchdog: sp5100_tco: Immediately trigger upon starting. + - drm/amd/display: hpd rx irq not working with eDP interface + - ocfs2: Switch to security_inode_init_security() + - platform/x86/intel/ifs: Annotate work queue on stack so object debug does + not complain + - ALSA: hda/ca0132: add quirk for EVGA X299 DARK + - ALSA: hda: Fix unhandled register update during auto-suspend period + - ALSA: hda/realtek: Enable headset onLenovo M70/M90 + - SUNRPC: Don't change task->tk_status after the call to rpc_exit_task + - mmc: sdhci-esdhc-imx: make "no-mmc-hs400" works + - mmc: block: ensure error propagation for non-blk + - power: supply: axp288_fuel_gauge: Fix external_power_changed race + - power: supply: bq25890: Fix external_power_changed race + - ASoC: rt5682: Disable jack detection interrupt during suspend + - net: cdc_ncm: Deal with too low values of dwNtbOutMaxSize + - m68k: Move signal frame following exception on 68020/030 + - xtensa: fix signal delivery to FDPIC process + - xtensa: add __bswap{si,di}2 helpers + - parisc: Use num_present_cpus() in alternative patching code + - parisc: Handle kgdb breakpoints only in kernel context + - parisc: Fix flush_dcache_page() for usage from irq context + - parisc: Allow to reboot machine after system halt + - parisc: Enable LOCKDEP support + - parisc: Handle kprobes breakpoints only in kernel context + - gpio: mockup: Fix mode of debugfs files + - btrfs: use nofs when cleaning up aborted transactions + - dt-binding: cdns,usb3: Fix cdns,on-chip-buff-size type + - drm/mgag200: Fix gamma lut not initialized. + - drm/radeon: reintroduce radeon_dp_work_func content + - drm/amd/pm: add missing NotifyPowerSource message mapping for SMU13.0.7 + - drm/amd/pm: Fix output of pp_od_clk_voltage + - Revert "binder_alloc: add missing mmap_lock calls when using the VMA" + - Revert "android: binder: stop saving a pointer to the VMA" + - binder: add lockless binder_alloc_(set|get)_vma() + - binder: fix UAF caused by faulty buffer cleanup + - binder: fix UAF of alloc->vma in race with munmap() + - selftests/memfd: Fix unknown type name build failure + - drm/amd/amdgpu: limit one queue per gang + - perf/x86/uncore: Correct the number of CHAs on SPR + - x86/topology: Fix erroneous smp_num_siblings on Intel Hybrid platforms + - irqchip/mips-gic: Don't touch vl_map if a local interrupt is not routable + - irqchip/mips-gic: Use raw spinlock for gic_lock + - debugobjects: Don't wake up kswapd from fill_pool() + - fbdev: udlfb: Fix endpoint check + - net: fix stack overflow when LRO is disabled for virtual interfaces + - udplite: Fix NULL pointer dereference in __sk_mem_raise_allocated(). + - USB: core: Add routines for endpoint checks in old drivers + - USB: sisusbvga: Add endpoint checks + - media: radio-shark: Add endpoint checks + - ASoC: lpass: Fix for KASAN use_after_free out of bounds + - net: fix skb leak in __skb_tstamp_tx() + - drm: fix drmm_mutex_init() + - selftests: fib_tests: mute cleanup error message + - octeontx2-pf: Fix TSOv6 offload + - bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields + - bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps + - lan966x: Fix unloading/loading of the driver + - ipv6: Fix out-of-bounds access in ipv6_find_tlv() + - cifs: mapchars mount option ignored + - power: supply: leds: Fix blink to LED on transition + - power: supply: mt6360: add a check of devm_work_autocancel in + mt6360_charger_probe + - power: supply: bq27xxx: Fix bq27xxx_battery_update() race condition + - power: supply: bq27xxx: Fix I2C IRQ race on remove + - power: supply: bq27xxx: Fix poll_interval handling and races on remove + - power: supply: bq27xxx: Add cache parameter to + bq27xxx_battery_current_and_status() + - power: supply: bq27xxx: Move bq27xxx_battery_update() down + - power: supply: bq27xxx: Ensure power_supply_changed() is called on current + sign changes + - power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to + stabilize + - power: supply: bq25890: Call power_supply_changed() after updating input + current or voltage + - power: supply: bq24190: Call power_supply_changed() after updating input + current + - power: supply: sbs-charger: Fix INHIBITED bit for Status reg + - optee: fix uninited async notif value + - firmware: arm_ffa: Check if ffa_driver remove is present before executing + - firmware: arm_ffa: Fix FFA device names for logical partitions + - fs: fix undefined behavior in bit shift for SB_NOUSER + - regulator: pca9450: Fix BUCK2 enable_mask + - platform/x86: ISST: Remove 8 socket limit + - coresight: Fix signedness bug in tmc_etr_buf_insert_barrier_packet() + - ARM: dts: imx6qdl-mba6: Add missing pvcie-supply regulator + - xen/pvcalls-back: fix double frees with pvcalls_new_active_socket() + - x86/show_trace_log_lvl: Ensure stack pointer is aligned, again + - ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg + - ASoC: Intel: avs: Fix declaration of enum avs_channel_config + - ASoC: Intel: avs: Access path components under lock + - cxl: Wait Memory_Info_Valid before access memory related info + - sctp: fix an issue that plpmtu can never go to complete state + - forcedeth: Fix an error handling path in nv_probe() + - platform/mellanox: mlxbf-pmc: fix sscanf() error checking + - net/mlx5e: Fix SQ wake logic in ptp napi_poll context + - net/mlx5e: Fix deadlock in tc route query code + - net/mlx5e: Use correct encap attribute during invalidation + - net/mlx5e: do as little as possible in napi poll when budget is 0 + - net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs + - net/mlx5: Handle pairing of E-switch via uplink un/load APIs + - net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE + - net/mlx5: Fix error message when failing to allocate device memory + - net/mlx5: Collect command failures data only for known commands + - net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device + - net/mlx5: Devcom, serialize devcom registration + - arm64: dts: imx8mn-var-som: fix PHY detection bug by adding deassert delay + - firmware: arm_ffa: Set reserved/MBZ fields to zero in the memory descriptors + - regulator: mt6359: add read check for PMIC MT6359 + - net/smc: Reset connection when trying to use SMCRv2 fails. + - 3c589_cs: Fix an error handling path in tc589_probe() + - net: phy: mscc: add VSC8502 to MODULE_DEVICE_TABLE + - wifi: rtw89: 8852b: adjust quota to avoid SER L1 caused by access null page + - zsmalloc: move LRU update from zs_map_object() to zs_malloc() + - mm/vmemmap/devdax: fix kernel crash when probing devdax devices + - cifs: fix smb1 mount regression + - cxl: Move cxl_await_media_ready() to before capacity info retrieval + - net: ethernet: mtk_eth_soc: fix QoS on DSA MAC on non MTK_NETSYS_V2 SoCs + - Upstream stable to v6.1.31, v6.3.5 + - inet: Add IP_LOCAL_PORT_RANGE socket option + - ipv{4,6}/raw: fix output xfrm lookup wrt protocol + - firmware: arm_ffa: Fix usage of partition info get count flag + - selftests/bpf: Fix pkg-config call building sign-file + - platform/x86/amd/pmf: Fix CnQF and auto-mode after resume + - tls: rx: device: fix checking decryption status + - tls: rx: strp: set the skb->len of detached / CoW'ed skbs + - tls: rx: strp: fix determining record length in copy mode + - tls: rx: strp: force mixed decrypted records into copy mode + - tls: rx: strp: factor out copying skb data + - tls: rx: strp: preserve decryption status of skbs when needed + - net/mlx5: E-switch, Devcom, sync devcom events and devcom comp register + - gpio-f7188x: fix chip name and pin count on Nuvoton chip + - bpf, sockmap: Pass skb ownership through read_skb + - bpf, sockmap: Convert schedule_work into delayed_work + - bpf, sockmap: Reschedule is now done through backlog + - bpf, sockmap: Improved check for empty queue + - bpf, sockmap: Handle fin correctly + - bpf, sockmap: TCP data stall on recv before accept + - bpf, sockmap: Wake up polling after data copy + - bpf, sockmap: Incorrectly handling copied_seq + - blk-mq: fix race condition in active queue accounting + - vfio/type1: check pfn valid before converting to struct page + - net: page_pool: use in_softirq() instead + - page_pool: fix inconsistency for page_pool_ring_[un]lock() + - net: phy: mscc: enable VSC8501/2 RGMII RX clock + - wifi: iwlwifi: mvm: support wowlan info notification version 2 + - drm/amd: Don't allow s0ix on APUs older than Raven + - bluetooth: Add cmd validity checks at the start of hci_sock_ioctl() + - Revert "thermal/drivers/mellanox: Use generic thermal_zone_get_trip() + function" + - block: fix bio-cache for passthru IO + - cpufreq: amd-pstate: Update policy->cur in amd_pstate_adjust_perf() + - cpufreq: amd-pstate: Add ->fast_switch() callback + - netfilter: ctnetlink: Support offloaded conntrack entry deletion + - tools headers UAPI: Sync the linux/in.h with the kernel sources + - gpiolib: fix allocation of mixed dynamic/static GPIOs + - net: fec: add dma_wmb to ensure correct descriptor values + - cxl/port: Fix NULL pointer access in devm_cxl_add_port() + - blk-wbt: fix that wbt can't be disabled by default + - Upstream stable to v6.1.32, v6.3.6 + + * sysfs msi_irqs directory empty with kernel-5.19 when being a xen guest + (LP: #2022354) // Lunar update: upstream stable patchset 2023-07-28 + (LP: #2028979) + - x86/pci/xen: populate MSI sysfs entries + + * Lunar update: upstream stable patchset 2023-07-26 (LP: #2028808) + - drm/fbdev-generic: prohibit potential out-of-bounds access + - drm/mipi-dsi: Set the fwnode for mipi_dsi_device + - ARM: 9296/1: HP Jornada 7XX: fix kernel-doc warnings + - net: skb_partial_csum_set() fix against transport header magic value + - net: mdio: mvusb: Fix an error handling path in mvusb_mdio_probe() + - scsi: ufs: core: Fix I/O hang that occurs when BKOPS fails in W-LUN suspend + - tick/broadcast: Make broadcast device replacement work correctly + - linux/dim: Do nothing if no time delta between samples + - net: stmmac: Initialize MAC_ONEUS_TIC_COUNTER register + - net: Fix load-tearing on sk->sk_stamp in sock_recv_cmsgs(). + - net: phy: bcm7xx: Correct read from expansion register + - netfilter: nf_tables: always release netdev hooks from notifier + - netfilter: conntrack: fix possible bug_on with enable_hooks=1 + - bonding: fix send_peer_notif overflow + - netlink: annotate accesses to nlk->cb_running + - net: annotate sk->sk_err write from do_recvmmsg() + - net: deal with most data-races in sk_wait_event() + - net: add vlan_get_protocol_and_depth() helper + - tcp: add annotations around sk->sk_shutdown accesses + - gve: Remove the code of clearing PBA bit + - net: mscc: ocelot: fix stat counter register values + - net: datagram: fix data-races in datagram_poll() + - af_unix: Fix a data race of sk->sk_receive_queue->qlen. + - af_unix: Fix data races around sk->sk_shutdown. + - drm/i915/guc: Don't capture Gen8 regs on Xe devices + - drm/i915: Fix NULL ptr deref by checking new_crtc_state + - drm/i915/dp: prevent potential div-by-zero + - drm/i915: Expand force_probe to block probe of devices as well. + - drm/i915: taint kernel when force probing unsupported devices + - fbdev: arcfb: Fix error handling in arcfb_probe() + - ext4: reflect error codes from ext4_multi_mount_protect() to its callers + - ext4: allow to find by goal if EXT4_MB_HINT_GOAL_ONLY is set + - ext4: allow ext4_get_group_info() to fail + - refscale: Move shutdown from wait_event() to wait_event_idle() + - selftests: cgroup: Add 'malloc' failures checks in test_memcontrol + - rcu: Protect rcu_print_task_exp_stall() ->exp_tasks access + - open: return EINVAL for O_DIRECTORY | O_CREAT + - fs: hfsplus: remove WARN_ON() from hfsplus_cat_{read,write}_inode() + - drm/displayid: add displayid_get_header() and check bounds better + - drm/amd/display: populate subvp cmd info only for the top pipe + - drm/amd/display: Correct DML calculation to align HW formula + - platform/x86: x86-android-tablets: Add Acer Iconia One 7 B1-750 data + - drm/amd/display: Enable HostVM based on rIOMMU active + - drm/amd/display: Use DC_LOG_DC in the trasform pixel function + - regmap: cache: Return error in cache sync operations for REGCACHE_NONE + - remoteproc: imx_dsp_rproc: Add custom memory copy implementation for i.MX + DSP Cores + - arm64: dts: qcom: msm8996: Add missing DWC3 quirks + - media: cx23885: Fix a null-ptr-deref bug in buffer_prepare() and + buffer_finish() + - media: pci: tw68: Fix null-ptr-deref bug in buf prepare and finish + - media: pvrusb2: VIDEO_PVRUSB2 depends on DVB_CORE to use dvb_* symbols + - ACPI: processor: Check for null return of devm_kzalloc() in fch_misc_setup() + - drm/rockchip: dw_hdmi: cleanup drm encoder during unbind + - arm64: dts: imx8mq-librem5: Remove dis_u3_susphy_quirk from usb_dwc3_0 + - firmware: arm_sdei: Fix sleep from invalid context BUG + - ACPI: EC: Fix oops when removing custom query handlers + - drm/amd/display: fixed dcn30+ underflow issue + - remoteproc: stm32_rproc: Add mutex protection for workqueue + - drm/tegra: Avoid potential 32-bit integer overflow + - drm/msm/dp: Clean up handling of DP AUX interrupts + - ACPICA: Avoid undefined behavior: applying zero offset to null pointer + - ACPICA: ACPICA: check null return of ACPI_ALLOCATE_ZEROED in + acpi_db_display_objects + - arm64: dts: qcom: sdm845-polaris: Drop inexistent properties + - irqchip/gicv3: Workaround for NVIDIA erratum T241-FABRIC-4 + - ACPI: video: Remove desktops without backlight DMI quirks + - drm/amd/display: Correct DML calculation to follow HW SPEC + - drm/amd: Fix an out of bounds error in BIOS parser + - drm/amdgpu: Fix sdma v4 sw fini error + - media: Prefer designated initializers over memset for subdev pad ops + - media: mediatek: vcodec: Fix potential array out-of-bounds in decoder + queue_setup + - wifi: ath: Silence memcpy run-time false positive warning + - bpf: Annotate data races in bpf_local_storage + - wifi: brcmfmac: pcie: Provide a buffer of random bytes to the device + - wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex + - ext2: Check block size validity during mount + - scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow + - scsi: lpfc: Correct used_rpi count when devloss tmo fires with no recovery + - bnxt: avoid overflow in bnxt_get_nvram_directory() + - net: pasemi: Fix return type of pasemi_mac_start_tx() + - net: Catch invalid index in XPS mapping + - netdev: Enforce index cap in netdev_get_tx_queue + - scsi: target: iscsit: Free cmds before session free + - lib: cpu_rmap: Avoid use after free on rmap->obj array entries + - scsi: message: mptlan: Fix use after free bug in mptlan_remove() due to race + condition + - gfs2: Fix inode height consistency check + - scsi: ufs: ufs-pci: Add support for Intel Lunar Lake + - ext4: set goal start correctly in ext4_mb_normalize_request + - ext4: Fix best extent lstart adjustment logic in ext4_mb_new_inode_pa() + - crypto: jitter - permanent and intermittent health errors + - f2fs: Fix system crash due to lack of free space in LFS + - f2fs: fix to drop all dirty pages during umount() if cp_error is set + - f2fs: fix to check readonly condition correctly + - samples/bpf: Fix fout leak in hbm's run_bpf_prog + - bpf: Add preempt_count_{sub,add} into btf id deny list + - md: fix soft lockup in status_resync + - wifi: iwlwifi: pcie: fix possible NULL pointer dereference + - wifi: iwlwifi: add a new PCI device ID for BZ device + - wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf + - wifi: iwlwifi: mvm: fix ptk_pn memory leak + - block, bfq: Fix division by zero error on zero wsum + - wifi: ath11k: Ignore frags from uninitialized peer in dp. + - wifi: iwlwifi: fix iwl_mvm_max_amsdu_size() for MLO + - null_blk: Always check queue mode setting from configfs + - wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace + - wifi: ath11k: Fix SKB corruption in REO destination ring + - nbd: fix incomplete validation of ioctl arg + - ipvs: Update width of source for ip_vs_sync_conn_options + - Bluetooth: btusb: Add new PID/VID 04ca:3801 for MT7663 + - Bluetooth: Add new quirk for broken local ext features page 2 + - Bluetooth: btrtl: add support for the RTL8723CS + - Bluetooth: Improve support for Actions Semi ATS2851 based devices + - Bluetooth: btrtl: check for NULL in btrtl_set_quirks() + - Bluetooth: btintel: Add LE States quirk support + - Bluetooth: hci_bcm: Fall back to getting bdaddr from EFI if not set + - Bluetooth: Add new quirk for broken set random RPA timeout for ATS2851 + - Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp + - Bluetooth: btrtl: Add the support for RTL8851B + - HID: apple: Set the tilde quirk flag on the Geyser 4 and later + - staging: axis-fifo: initialize timeouts in init only + - ASoC: amd: yc: Add DMI entries to support HP OMEN 16-n0xxx (8A42) + - HID: logitech-hidpp: Don't use the USB serial for USB devices + - HID: logitech-hidpp: Reconcile USB and Unifying serials + - spi: spi-imx: fix MX51_ECSPI_* macros when cs > 3 + - usb: typec: ucsi: acpi: add quirk for ASUS Zenbook UM325 + - ALSA: hda: LNL: add HD Audio PCI ID + - ASoC: amd: Add Dell G15 5525 to quirks list + - ASoC: amd: yc: Add ThinkBook 14 G5+ ARP to quirks list for acp6x + - HID: apple: Set the tilde quirk flag on the Geyser 3 + - HID: Ignore battery for ELAN touchscreen on ROG Flow X13 GV301RA + - HID: wacom: generic: Set battery quirk only when we see battery data + - usb: typec: tcpm: fix multiple times discover svids error + - serial: 8250: Reinit port->pm on port specific driver unbind + - mcb-pci: Reallocate memory region to avoid memory overlapping + - sched: Fix KCSAN noinstr violation + - lkdtm/stackleak: Fix noinstr violation + - recordmcount: Fix memory leaks in the uwrite function + - soundwire: dmi-quirks: add remapping for Intel 'Rooks County' NUC M15 + - phy: st: miphy28lp: use _poll_timeout functions for waits + - soundwire: qcom: gracefully handle too many ports in DT + - soundwire: bus: Fix unbalanced pm_runtime_put() causing usage count + underflow + - mfd: intel_soc_pmic_chtwc: Add Lenovo Yoga Book X90F to intel_cht_wc_models + - mfd: dln2: Fix memory leak in dln2_probe() + - mfd: intel-lpss: Add Intel Meteor Lake PCH-S LPSS PCI IDs + - parisc: Replace regular spinlock with spin_trylock on panic path + - drm/amdgpu: drop gfx_v11_0_cp_ecc_error_irq_funcs + - xfrm: don't check the default policy if the policy allows the packet + - Revert "Fix XFRM-I support for nested ESP tunnels" + - drm/msm/dp: unregister audio driver during unbind + - drm/msm/dpu: Assign missing writeback log_mask + - drm/msm/dpu: Move non-MDP_TOP INTF_INTR offsets out of hwio header + - drm/msm/dpu: Remove duplicate register defines from INTF + - dt-bindings: display/msm: dsi-controller-main: Document qcom, master-dsi and + qcom, sync-dual-dsi + - ASoC: fsl_micfil: Fix error handler with pm_runtime_enable + - cpupower: Make TSC read per CPU for Mperf monitor + - xfrm: Reject optional tunnel/BEET mode templates in outbound policies + - af_key: Reject optional tunnel/BEET mode templates in outbound policies + - drm/msm: Fix submit error-path leaks + - selftests: seg6: disable DAD on IPv6 router cfg for srv6_end_dt4_l3vpn_test + - selftets: seg6: disable rp_filter by default in srv6_end_dt4_l3vpn_test + - net: fec: Better handle pm_runtime_get() failing in .remove() + - net: phy: dp83867: add w/a for packet errors seen with short cables + - ALSA: firewire-digi00x: prevent potential use after free + - wifi: mt76: connac: fix stats->tx_bytes calculation + - ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15 + - sfc: disable RXFCS and RXALL features by default + - vsock: avoid to close connected socket after the timeout + - tcp: fix possible sk_priority leak in tcp_v4_send_reset() + - serial: arc_uart: fix of_iomap leak in `arc_serial_probe` + - serial: 8250_bcm7271: balance clk_enable calls + - serial: 8250_bcm7271: fix leak in `brcmuart_probe` + - erspan: get the proto with the md version for collect_md + - net: dsa: rzn1-a5psw: enable management frames for CPU port + - net: dsa: rzn1-a5psw: fix STP states handling + - net: dsa: rzn1-a5psw: disable learning for standalone ports + - net: hns3: fix output information incomplete for dumping tx queue info with + debugfs + - net: hns3: fix sending pfc frames after reset issue + - net: hns3: fix reset delay time to avoid configuration timeout + - net: hns3: fix reset timeout when enable full VF + - media: netup_unidvb: fix use-after-free at del_timer() + - SUNRPC: double free xprt_ctxt while still in use + - SUNRPC: always free ctxt when freeing deferred request + - SUNRPC: Fix trace_svc_register() call site + - ASoC: mediatek: mt8186: Fix use-after-free in driver remove path + - ASoC: SOF: topology: Fix logic for copying tuples + - drm/exynos: fix g2d_open/close helper function definitions + - net: nsh: Use correct mac_offset to unwind gso skb in nsh_gso_segment() + - virtio-net: Maintain reverse cleanup order + - virtio_net: Fix error unwinding of XDP initialization + - tipc: add tipc_bearer_min_mtu to calculate min mtu + - tipc: do not update mtu if msg_max is too small in mtu negotiation + - tipc: check the bearer min mtu properly when setting it by netlink + - s390/cio: include subchannels without devices also for evaluation + - can: dev: fix missing CAN XL support in can_put_echo_skb() + - net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop() + - net: bcmgenet: Restore phy_stop() depending upon suspend/close + - ice: introduce clear_reset_state operation + - ice: Fix ice VF reset during iavf initialization + - wifi: cfg80211: Drop entries with invalid BSSIDs in RNR + - wifi: mac80211: fortify the spinlock against deadlock by interrupt + - wifi: mac80211: fix min center freq offset tracing + - wifi: mac80211: Abort running color change when stopping the AP + - wifi: iwlwifi: mvm: fix cancel_delayed_work_sync() deadlock + - wifi: iwlwifi: fw: fix DBGI dump + - wifi: iwlwifi: fix OEM's name in the ppag approved list + - wifi: iwlwifi: mvm: fix OEM's name in the tas approved list + - wifi: iwlwifi: mvm: don't trust firmware n_channels + - scsi: storvsc: Don't pass unused PFNs to Hyper-V host + - tun: Fix memory leak for detached NAPI queue. + - cassini: Fix a memory leak in the error handling path of cas_init_one() + - net: dsa: mv88e6xxx: Fix mv88e6393x EPC write command offset + - igb: fix bit_shift to be in [1..8] range + - vlan: fix a potential uninit-value in vlan_dev_hard_start_xmit() + - net: wwan: iosm: fix NULL pointer dereference when removing device + - net: pcs: xpcs: fix C73 AN not getting enabled + - net: selftests: Fix optstring + - netfilter: nf_tables: fix nft_trans type confusion + - netfilter: nft_set_rbtree: fix null deref on element insertion + - bridge: always declare tunnel functions + - ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go + - USB: usbtmc: Fix direction for 0-length ioctl control messages + - usb-storage: fix deadlock when a scsi command timeouts more than once + - USB: UHCI: adjust zhaoxin UHCI controllers OverCurrent bit value + - usb: dwc3: gadget: Improve dwc3_gadget_suspend() and dwc3_gadget_resume() + - usb: dwc3: debugfs: Resume dwc3 before accessing registers + - usb: gadget: u_ether: Fix host MAC address case + - usb: typec: altmodes/displayport: fix pin_assignment_show + - Revert "usb: gadget: udc: core: Prevent redundant calls to pullup" + - Revert "usb: gadget: udc: core: Invoke usb_gadget_connect only when started" + - xhci-pci: Only run d3cold avoidance quirk for s2idle + - xhci: Fix incorrect tracking of free space on transfer rings + - ALSA: hda: Fix Oops by 9.1 surround channel names + - ALSA: hda/realtek: Add quirk for Clevo L140AU + - ALSA: hda/realtek: Add a quirk for HP EliteDesk 805 + - ALSA: hda/realtek: Add quirk for 2nd ASUS GU603 + - ALSA: hda/realtek: Add quirk for HP EliteBook G10 laptops + - can: j1939: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: isotp: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop() + - can: kvaser_pciefd: Call request_irq() before enabling interrupts + - can: kvaser_pciefd: Empty SRB buffer in probe + - can: kvaser_pciefd: Clear listen-only bit if not explicitly requested + - can: kvaser_pciefd: Do not send EFLUSH command on TFD interrupt + - can: kvaser_pciefd: Disable interrupts in probe error path + - wifi: rtw88: use work to update rate to avoid RCU warning + - SMB3: Close all deferred handles of inode in case of handle lease break + - SMB3: drop reference to cfile before sending oplock break + - ksmbd: smb2: Allow messages padded to 8byte boundary + - ksmbd: allocate one more byte for implied bcc[0] + - ksmbd: fix wrong UserName check in session_user + - ksmbd: fix global-out-of-bounds in smb2_find_context_vals + - KVM: Fix vcpu_array[0] races + - statfs: enforce statfs[64] structure initialization + - maple_tree: make maple state reusable after mas_empty_area() + - mm: fix zswap writeback race condition + - serial: Add support for Advantech PCI-1611U card + - serial: 8250_exar: Add support for USR298x PCI Modems + - serial: qcom-geni: fix enabling deactivated interrupt + - thunderbolt: Clear registers properly when auto clear isn't in use + - vc_screen: reload load of struct vc_data pointer in vcs_write() to avoid UAF + - ceph: force updating the msg pointer in non-split case + - drm/amd/pm: fix possible power mode mismatch between driver and PMFW + - drm/amdgpu/gmc11: implement get_vbios_fb_size() + - drm/amdgpu/gfx10: Disable gfxoff before disabling powergating. + - drm/amdgpu/gfx11: Adjust gfxoff before powergating on gfx11 as well + - dt-bindings: ata: ahci-ceva: Cover all 4 iommus entries + - powerpc/iommu: DMA address offset is incorrectly calculated with 2MB TCEs + - powerpc/iommu: Incorrect DDW Table is referenced for SR-IOV device + - tpm/tpm_tis: Disable interrupts for more Lenovo devices + - powerpc/64s/radix: Fix soft dirty tracking + - nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode() + - s390/dasd: fix command reject error on ESE devices + - s390/crypto: use vector instructions only if available for ChaCha20 + - s390/qdio: fix do_sqbs() inline assembly constraint + - arm64: mte: Do not set PG_mte_tagged if tags were not initialized + - rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler + - rethook, fprobe: do not trace rethook related functions + - remoteproc: imx_dsp_rproc: Fix kernel test robot sparse warning + - drm/amd/amdgpu: introduce gc_*_mes_2.bin v2 + - drm/amdgpu: reserve the old gc_11_0_*_mes.bin + - drm/nouveau/disp: More DP_RECEIVER_CAP_SIZE array fixes + - xfrm: release all offloaded policy memory + - xfrm: Fix leak of dev tracker + - media: pvrusb2: fix DVB_CORE dependency + - net: fec: remove the xdp_return_frame when lack of tx BDs + - iavf: send VLAN offloading caps once after VFR + - wifi: brcmfmac: Check for probe() id argument being NULL + - wifi: rtw88: correct qsel_to_ep[] type as int + - KVM: arm64: Infer the PA offset from IPA in stage-2 map walker + - perf script: Skip aggregation for stat events + - iommu/arm-smmu-qcom: Fix missing adreno_smmu's + - arm64: Also reset KASAN tag if page is not PG_mte_tagged + - Upstream stable to v6.1.30, v6.3.4 + + * Lunar update: v6.2.16 upstream stable release (LP: #2028580) + - USB: dwc3: gadget: drop dead hibernation code + - usb: dwc3: gadget: Execute gadget stop after halting the controller + - crypto: ccp - Clear PSP interrupt status register before calling handler + - ASoC: codecs: constify static sdw_slave_ops struct + - ASoC: codecs: wcd938x: fix accessing regmap on unattached devices + - mtd: spi-nor: Add a RWW flag + - mtd: spi-nor: spansion: Enable JFFS2 write buffer for Infineon s28hx SEMPER + flash + - qcom: llcc/edac: Support polling mode for ECC handling + - soc: qcom: llcc: Do not create EDAC platform device on SDM845 + - mailbox: zynq: Switch to flexible array to simplify code + - mailbox: zynqmp: Fix counts of child nodes + - mtd: spi-nor: spansion: Enable JFFS2 write buffer for Infineon s25hx SEMPER + flash + - fs/ntfs3: Fix null-ptr-deref on inode->i_op in ntfs_lookup() + - drm/amd/display: Ext displays with dock can't recognized after resume + - KVM: x86/mmu: Avoid indirect call for get_cr3 + - KVM: x86: Do not unload MMU roots when only toggling CR0.WP with TDP enabled + - KVM: x86: Make use of kvm_read_cr*_bits() when testing bits + - KVM: VMX: Make CR0.WP a guest owned bit + - KVM: x86/mmu: Refresh CR0.WP prior to checking for emulated permission + faults + - RDMA/rxe: Remove rxe_alloc() + - RDMA/rxe: Change rxe_dbg to rxe_dbg_dev + - RDMA/rxe: Extend dbg log messages to err and info + - ASoC: Intel: soc-acpi-byt: Fix "WM510205" match no longer working + - scsi: qedi: Fix use after free bug in qedi_remove() + - drm/amd/display: Add missing WA and MCLK validation + - drm/amd/display: Return error code on DSC atomic check failure + - drm/amd/display: Fixes for dcn32_clk_mgr implementation + - drm/amd/display: Reset OUTBOX0 r/w pointer on DMUB reset + - drm/amd/display: Do not clear GPINT register when releasing DMUB from reset + - drm/amd/display: Update bounding box values for DCN321 + - rxrpc: Fix potential data race in rxrpc_wait_to_be_connected() + - ixgbe: Fix panic during XDP_TX with > 64 CPUs + - octeonxt2-af: mcs: Fix per port bypass config + - octeontx2-af: mcs: Write TCAM_DATA and TCAM_MASK registers at once + - octeontx2-af: mcs: Config parser to skip 8B header + - octeontx2-af: mcs: Fix MCS block interrupt + - octeontx2-pf: mcs: Fix NULL pointer dereferences + - octeontx2-pf: mcs: Match macsec ethertype along with DMAC + - octeontx2-pf: mcs: Clear stats before freeing resource + - octeontx2-pf: mcs: Fix shared counters logic + - octeontx2-pf: mcs: Do not reset PN while updating secy + - net/ncsi: clear Tx enable mode when handling a Config required AEN + - tcp: fix skb_copy_ubufs() vs BIG TCP + - net/sched: cls_api: remove block_cb from driver_list before freeing + - sit: update dev->needed_headroom in ipip6_tunnel_bind_dev() + - selftests: srv6: make srv6_end_dt46_l3vpn_test more robust + - net: ipv6: fix skb hash for some RST packets + - net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu + - writeback: fix call of incorrect macro + - block: Skip destroyed blkg when restart in blkg_destroy_all() + - watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe() + - RISC-V: mm: Enable huge page support to kernel_page_present() function + - i2c: tegra: Fix PEC support for SMBUS block read + - net/sched: act_mirred: Add carrier check + - r8152: fix flow control issue of RTL8156A + - r8152: fix the poor throughput for 2.5G devices + - r8152: move setting r8153b_rx_agg_chg_indicate() + - sfc: Fix module EEPROM reporting for QSFP modules + - rxrpc: Fix hard call timeout units + - rxrpc: Make it so that a waiting process can be aborted + - rxrpc: Fix timeout of a call that hasn't yet been granted a channel + - riscv: compat_syscall_table: Fixup compile warning + - net: ethernet: mtk_eth_soc: drop generic vlan rx offload, only use DSA + untagging + - drm/i915/mtl: Add the missing CPU transcoder mask in intel_device_info + - selftests: netfilter: fix libmnl pkg-config usage + - octeontx2-af: Secure APR table update with the lock + - octeontx2-af: Fix start and end bit for scan config + - octeontx2-af: Fix depth of cam and mem table. + - octeontx2-pf: Increase the size of dmac filter flows + - octeontx2-af: Add validation for lmac type + - octeontx2-af: Update correct mask to filter IPv4 fragments + - octeontx2-af: Update/Fix NPC field hash extract feature + - octeontx2-af: Fix issues with NPC field hash extract + - octeontx2-af: Skip PFs if not enabled + - octeontx2-pf: Disable packet I/O for graceful exit + - octeontx2-vf: Detach LF resources on probe cleanup + - ionic: remove noise from ethtool rxnfc error msg + - ethtool: Fix uninitialized number of lanes + - ionic: catch failure from devlink_alloc + - af_packet: Don't send zero-byte data in packet_sendmsg_spkt(). + - drm/amdgpu: add a missing lock for AMDGPU_SCHED + - ALSA: caiaq: input: Add error handling for unsupported input methods in + `snd_usb_caiaq_input_init` + - KVM: s390: pv: fix asynchronous teardown for small VMs + - KVM: s390: fix race in gmap_make_secure() + - net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621 + - net: dsa: mt7530: split-off common parts from mt7531_setup + - net: dsa: mt7530: fix network connectivity with multiple CPU ports + - ice: block LAN in case of VF to VF offload + - virtio_net: suppress cpu stall when free_unused_bufs + - net: enetc: check the index of the SFI rather than the handle + - net: fec: correct the counting of XDP sent frames + - perf record: Fix "read LOST count failed" msg with sample read + - perf build: Support python/perf.so testing + - perf scripts intel-pt-events.py: Fix IPC output for Python 2 + - perf script: Fix Python support when no libtraceevent + - perf hist: Improve srcfile sort key performance (really) + - perf vendor events s390: Remove UTF-8 characters from JSON file + - perf tests record_offcpu.sh: Fix redirection of stderr to stdin + - perf ftrace: Make system wide the default target for latency subcommand + - perf vendor events power9: Remove UTF-8 characters from JSON files + - perf pmu: zfree() expects a pointer to a pointer to zero it after freeing + its contents + - perf map: Delete two variable initialisations before null pointer checks in + sort__sym_from_cmp() + - perf cs-etm: Fix timeless decode mode detection + - crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs() + - crypto: api - Add scaffolding to change completion function signature + - crypto: engine - Use crypto_request_complete + - crypto: engine - fix crypto_queue backlog handling + - perf symbols: Fix return incorrect build_id size in elf_read_build_id() + - perf tracepoint: Fix memory leak in is_valid_tracepoint() + - perf stat: Separate bperf from bpf_profiler + - KVM: x86/mmu: Change tdp_mmu to a read-only parameter + - KVM: x86/mmu: Move TDP MMU VM init/uninit behind tdp_mmu_enabled + - KVM: x86/mmu: Replace open coded usage of tdp_mmu_page with + is_tdp_mmu_page() + - KVM: x86: Preserve TDP MMU roots until they are explicitly invalidated + - ksmbd: Implements sess->ksmbd_chann_list as xarray + - ksmbd: fix racy issue from session setup and logoff + - ksmbd: block asynchronous requests when making a delay on session setup + - ksmbd: destroy expired sessions + - ksmbd: fix racy issue from smb2 close and logoff with multichannel + - wifi: iwlwifi: mvm: fix potential memory leak + - cifs: check only tcon status on tcon related functions + - cifs: avoid potential races when handling multiple dfs tcons + - netfilter: nf_tables: extended netlink error reporting for netdevice + - netfilter: nf_tables: rename function to destroy hook list + - netfilter: nf_tables: hit ENOENT on unexisting chain/flowtable update with + missing attributes + - x86/retbleed: Fix return thunk alignment + - btrfs: fix btrfs_prev_leaf() to not return the same key twice + - btrfs: zoned: fix wrong use of bitops API in btrfs_ensure_empty_zones + - btrfs: properly reject clear_cache and v1 cache for block-group-tree + - btrfs: fix assertion of exclop condition when starting balance + - btrfs: fix encoded write i_size corruption with no-holes + - btrfs: don't free qgroup space unless specified + - btrfs: zero the buffer before marking it dirty in btrfs_redirty_list_add + - btrfs: make clear_cache mount option to rebuild FST without disabling it + - btrfs: print-tree: parent bytenr must be aligned to sector size + - btrfs: fix space cache inconsistency after error loading it from disk + - btrfs: zoned: zone finish data relocation BG with last IO + - btrfs: zoned: fix full zone super block reading on ZNS + - btrfs: fix backref walking not returning all inode refs + - cifs: fix pcchunk length type in smb2_copychunk_range + - cifs: release leases for deferred close handles when freezing + - platform/x86/intel-uncore-freq: Return error on write frequency + - platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the + Juno Tablet + - platform/x86: thinkpad_acpi: Fix platform profiles on T490 + - platform/x86: hp-wmi: add micmute to hp_wmi_keymap struct + - platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i + - platform/x86: thinkpad_acpi: Add profile force ability + - inotify: Avoid reporting event with invalid wd + - smb3: fix problem remounting a share after shutdown + - SMB3: force unmount was failing to close deferred close files + - sh: math-emu: fix macro redefined warning + - sh: mcount.S: fix build error when PRINTK is not enabled + - sh: init: use OF_EARLY_FLATTREE for early init + - sh: nmi_debug: fix return value of __setup handler + - proc_sysctl: update docs for __register_sysctl_table() + - proc_sysctl: enhance documentation + - remoteproc: stm32: Call of_node_put() on iteration error + - remoteproc: st: Call of_node_put() on iteration error + - remoteproc: imx_dsp_rproc: Call of_node_put() on iteration error + - remoteproc: imx_rproc: Call of_node_put() on iteration error + - remoteproc: rcar_rproc: Call of_node_put() on iteration error + - sysctl: clarify register_sysctl_init() base directory order + - ARM: dts: aspeed: asrock: Correct firmware flash SPI clocks + - ARM: dts: exynos: fix WM8960 clock name in Itop Elite + - ARM: dts: s5pv210: correct MIPI CSIS clock name + - ARM: dts: aspeed: romed8hm3: Fix GPIO polarity of system-fault LED + - drm/msm/adreno: fix runtime PM imbalance at gpu load + - drm/bridge: lt8912b: Fix DSI Video Mode + - drm/i915/color: Fix typo for Plane CSC indexes + - drm/msm: fix NULL-deref on snapshot tear down + - drm/msm: fix NULL-deref on irq uninstall + - drm/msm: fix drm device leak on bind errors + - drm/msm: fix vram leak on bind errors + - drm/msm: fix missing wq allocation error handling + - drm/msm: fix workqueue leak on bind errors + - drm/i915/dsi: Use unconditional msleep() instead of intel_dsi_msleep() + - f2fs: factor out victim_entry usage from general rb_tree use + - f2fs: fix null pointer panic in tracepoint in __replace_atomic_write_block + - f2fs: fix potential corruption when moving a directory + - irqchip/loongson-pch-pic: Fix pch_pic_acpi_init calling + - irqchip/loongson-pch-pic: Fix registration of syscore_ops + - irqchip/loongson-eiointc: Fix returned value on parsing MADT + - irqchip/loongson-eiointc: Fix incorrect use of acpi_get_vec_parent + - irqchip/loongson-eiointc: Fix registration of syscore_ops + - drm/panel: otm8009a: Set backlight parent to panel device + - drm/amd/display: Add NULL plane_state check for cursor disable logic + - drm/amd/display: Fix 4to1 MPC black screen with DPP RCO + - drm/amd/display: filter out invalid bits in pipe_fuses + - drm/amd/display: fix flickering caused by S/G mode + - drm/amdgpu: drop redundant sched job cleanup when cs is aborted + - drm/amdgpu: fix amdgpu_irq_put call trace in gmc_v10_0_hw_fini + - drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() + - drm/amdgpu: fix amdgpu_irq_put call trace in gmc_v11_0_hw_fini + - drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx + ras + - drm/amdgpu/jpeg: Remove harvest checking for JPEG3 + - drm/amdgpu: change gfx 11.0.4 external_id range + - drm/amdgpu: Fix vram recover doesn't work after whole GPU reset (v2) + - drm/amd/display: Enforce 60us prefetch for 200Mhz DCFCLK modes + - drm/amd/pm: parse pp_handle under appropriate conditions + - drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend + - drm/amd/pm: avoid potential UBSAN issue on legacy asics + - drm/amd: Load MES microcode during early_init + - drm/amd: Add a new helper for loading/validating microcode + - drm/amd: Use `amdgpu_ucode_*` helpers for MES + - HID: wacom: Set a default resolution for older tablets + - HID: wacom: insert timestamp to packed Bluetooth (BT) events + - fs/ntfs3: Refactoring of various minor issues + - drm/msm/adreno: adreno_gpu: Use suspend() instead of idle() on load error + - drm/i915/mtl: Add workarounds Wa_14017066071 and Wa_14017654203 + - drm/i915/mtl: Add Wa_14017856879 + - drm/i915: disable sampler indirect state in bindless heap + - drm/i915/mtl: update scaler source and destination limits for MTL + - drm/i915: Check pipe source size when using skl+ scalers + - drm/amd/display: Fix Z8 support configurations + - drm/amd/display: Add minimum Z8 residency debug option + - drm/amd/display: Update minimum stutter residency for DCN314 Z8 + - drm/amd/display: Lowering min Z8 residency time + - drm/amd/display: Update Z8 SR exit/enter latencies + - drm/amd/display: Change default Z8 watermark values + - drm: Add missing DP DSC extended capability definitions. + - drm/dsc: fix drm_edp_dsc_sink_output_bpp() DPCD high byte usage + - locking/rwsem: Add __always_inline annotation to __down_read_common() and + inlined callers + - ext4: fix WARNING in mb_find_extent + - ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum + - ext4: fix data races when using cached status extents + - ext4: avoid deadlock in fs reclaim with page writeback + - ext4: check iomap type only if ext4_iomap_begin() does not fail + - ext4: improve error recovery code paths in __ext4_remount() + - ext4: improve error handling from ext4_dirhash() + - ext4: fix deadlock when converting an inline directory in nojournal mode + - ext4: add bounds checking in get_max_inline_xattr_value_size() + - ext4: bail out of ext4_xattr_ibody_get() fails for any reason + - ext4: fix lockdep warning when enabling MMP + - ext4: remove a BUG_ON in ext4_mb_release_group_pa() + - ext4: fix invalid free tracking in ext4_xattr_move_to_block() + - drm/dsc: fix DP_DSC_MAX_BPP_DELTA_* macro values + - x86/amd_nb: Add PCI ID for family 19h model 78h + - x86: fix clear_user_rep_good() exception handling annotation + - spi: fsl-spi: Re-organise transfer bits_per_word adaptation + - spi: fsl-cpm: Use 16 bit mode for large transfers with even size + - drm/amd/display: Fix hang when skipping modeset + - Linux 6.2.16 + + * CVE-2023-31084 // CVE-2023-31084 was assigned to this bug. + - media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*() + + * CVE-2023-3776 + - net/sched: cls_fw: Fix improper refcount update leads to use-after-free + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] resync getabis + + -- Stefan Bader Wed, 09 Aug 2023 12:02:56 +0200 + linux (6.2.0-27.28) lunar; urgency=medium * lunar/linux: 6.2.0-27.28 -proposed tracker (LP: #2026488) diff -u linux-6.2.0/debian/control linux-6.2.0/debian/control --- linux-6.2.0/debian/control +++ linux-6.2.0/debian/control @@ -93,7 +93,7 @@ you do not want this package. Install the appropriate linux-headers package instead. -Package: linux-headers-6.2.0-27 +Package: linux-headers-6.2.0-30 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -103,7 +103,7 @@ Description: Header files related to Linux kernel version 6.2.0 This package provides kernel header files for version 6.2.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-6.2.0-27/debian.README.gz for details + /usr/share/doc/linux-headers-6.2.0-30/debian.README.gz for details Package: linux-tools-common Build-Profiles: @@ -118,18 +118,18 @@ version locked tools (such as perf and x86_energy_perf_policy) for version 6.2.0. -Package: linux-tools-6.2.0-27 +Package: linux-tools-6.2.0-30 Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 6.2.0-27 +Description: Linux kernel version specific tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.2.0-27 on + version 6.2.0-30 on 64 bit x86. - You probably want to install linux-tools-6.2.0-27-. + You probably want to install linux-tools-6.2.0-30-. Package: linux-cloud-tools-common Build-Profiles: @@ -142,17 +142,17 @@ This package provides the architecture independent parts for kernel version locked tools for cloud tools for version 6.2.0. -Package: linux-cloud-tools-6.2.0-27 +Package: linux-cloud-tools-6.2.0-30 Build-Profiles: Architecture: amd64 armhf Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common -Description: Linux kernel version specific cloud tools for version 6.2.0-27 +Description: Linux kernel version specific cloud tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 6.2.0-27 on + version locked tools for cloud tools for version 6.2.0-30 on 64 bit x86. - You probably want to install linux-cloud-tools-6.2.0-27-. + You probably want to install linux-cloud-tools-6.2.0-30-. Package: linux-tools-host Build-Profiles: @@ -192,17 +192,17 @@ contained in each file. -Package: linux-image-unsigned-6.2.0-27-generic +Package: linux-image-unsigned-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64], ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-27-generic +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-30-generic Recommends: grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-6.2.0-27-generic -Suggests: fdutils, linux-doc | linux-source-6.2.0, linux-tools, linux-headers-6.2.0-27-generic, linux-modules-extra-6.2.0-27-generic +Conflicts: linux-image-6.2.0-30-generic +Suggests: fdutils, linux-doc | linux-source-6.2.0, linux-tools, linux-headers-6.2.0-30-generic, linux-modules-extra-6.2.0-30-generic Description: Linux kernel image for version 6.2.0 on 64 bit x86 SMP This package contains the unsigned Linux kernel image for version 6.2.0 on 64 bit x86 SMP. @@ -215,7 +215,7 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-6.2.0-27-generic +Package: linux-modules-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel @@ -235,12 +235,12 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-6.2.0-27-generic +Package: linux-modules-extra-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-6.2.0-27-generic, wireless-regdb +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-6.2.0-30-generic, wireless-regdb Description: Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP. @@ -257,21 +257,21 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-6.2.0-27-generic +Package: linux-headers-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-6.2.0-27, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-6.2.0-30, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 6.2.0 on 64 bit x86 SMP This package provides kernel header files for version 6.2.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-6.2.0-27/debian.README.gz for details. + /usr/share/doc/linux-headers-6.2.0-30/debian.README.gz for details. -Package: linux-lib-rust-6.2.0-27-generic +Package: linux-lib-rust-6.2.0-30-generic Build-Profiles: Architecture: amd64 Multi-Arch: foreign @@ -282,7 +282,7 @@ This package provides kernel library files for version 6.2.0, that allow to compile out-of-tree kernel modules written in Rust. -Package: linux-image-unsigned-6.2.0-27-generic-dbgsym +Package: linux-image-unsigned-6.2.0-30-generic-dbgsym Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: devel @@ -299,31 +299,31 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-6.2.0-27-generic +Package: linux-tools-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-6.2.0-27 -Description: Linux kernel version specific tools for version 6.2.0-27 +Depends: ${misc:Depends}, linux-tools-6.2.0-30 +Description: Linux kernel version specific tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.2.0-27 on + version 6.2.0-30 on 64 bit x86. -Package: linux-cloud-tools-6.2.0-27-generic +Package: linux-cloud-tools-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-6.2.0-27 -Description: Linux kernel version specific cloud tools for version 6.2.0-27 +Depends: ${misc:Depends}, linux-cloud-tools-6.2.0-30 +Description: Linux kernel version specific cloud tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 6.2.0-27 on + version locked tools for cloud for version 6.2.0-30 on 64 bit x86. -Package: linux-buildinfo-6.2.0-27-generic +Package: linux-buildinfo-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel @@ -337,18 +337,18 @@ You likely do not want to install this package. -Package: linux-modules-ipu6-6.2.0-27-generic +Package: linux-modules-ipu6-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic | linux-image-unsigned-6.2.0-27-generic, + linux-image-6.2.0-30-generic | linux-image-unsigned-6.2.0-30-generic, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel ipu6 modules for version 6.2.0-27 +Description: Linux kernel ipu6 modules for version 6.2.0-30 This package provides the Linux kernel ipu6 modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-ipu6-generic* meta-packages, @@ -356,18 +356,18 @@ also installed. -Package: linux-modules-ivsc-6.2.0-27-generic +Package: linux-modules-ivsc-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic | linux-image-unsigned-6.2.0-27-generic, + linux-image-6.2.0-30-generic | linux-image-unsigned-6.2.0-30-generic, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel ivsc modules for version 6.2.0-27 +Description: Linux kernel ivsc modules for version 6.2.0-30 This package provides the Linux kernel ivsc modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-ivsc-generic* meta-packages, @@ -375,18 +375,18 @@ also installed. -Package: linux-modules-iwlwifi-6.2.0-27-generic +Package: linux-modules-iwlwifi-6.2.0-30-generic Build-Profiles: Architecture: amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic | linux-image-unsigned-6.2.0-27-generic, + linux-image-6.2.0-30-generic | linux-image-unsigned-6.2.0-30-generic, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel iwlwifi modules for version 6.2.0-27 +Description: Linux kernel iwlwifi modules for version 6.2.0-30 This package provides the Linux kernel iwlwifi modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-iwlwifi-generic* meta-packages, @@ -394,17 +394,17 @@ also installed. -Package: linux-image-unsigned-6.2.0-27-generic-64k +Package: linux-image-unsigned-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-27-generic-64k +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-30-generic-64k Recommends: grub-efi-arm64 [arm64] | flash-kernel [arm64], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-6.2.0-27-generic-64k -Suggests: fdutils, linux-doc | linux-source-6.2.0, linux-tools, linux-headers-6.2.0-27-generic-64k, linux-modules-extra-6.2.0-27-generic-64k +Conflicts: linux-image-6.2.0-30-generic-64k +Suggests: fdutils, linux-doc | linux-source-6.2.0, linux-tools, linux-headers-6.2.0-30-generic-64k, linux-modules-extra-6.2.0-30-generic-64k Description: Linux kernel image for version 6.2.0 on 64 bit x86 SMP This package contains the unsigned Linux kernel image for version 6.2.0 on 64 bit x86 SMP. @@ -417,7 +417,7 @@ the linux-generic-64k meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-6.2.0-27-generic-64k +Package: linux-modules-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel @@ -437,12 +437,12 @@ the linux-generic-64k meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-6.2.0-27-generic-64k +Package: linux-modules-extra-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-6.2.0-27-generic-64k, wireless-regdb +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-6.2.0-30-generic-64k, wireless-regdb Description: Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP. @@ -459,21 +459,21 @@ the linux-generic-64k meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-6.2.0-27-generic-64k +Package: linux-headers-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-6.2.0-27, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-6.2.0-30, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 6.2.0 on 64 bit x86 SMP This package provides kernel header files for version 6.2.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-6.2.0-27/debian.README.gz for details. + /usr/share/doc/linux-headers-6.2.0-30/debian.README.gz for details. -Package: linux-lib-rust-6.2.0-27-generic-64k +Package: linux-lib-rust-6.2.0-30-generic-64k Build-Profiles: Architecture: amd64 Multi-Arch: foreign @@ -484,7 +484,7 @@ This package provides kernel library files for version 6.2.0, that allow to compile out-of-tree kernel modules written in Rust. -Package: linux-image-unsigned-6.2.0-27-generic-64k-dbgsym +Package: linux-image-unsigned-6.2.0-30-generic-64k-dbgsym Build-Profiles: Architecture: arm64 Section: devel @@ -501,31 +501,31 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-6.2.0-27-generic-64k +Package: linux-tools-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-6.2.0-27 -Description: Linux kernel version specific tools for version 6.2.0-27 +Depends: ${misc:Depends}, linux-tools-6.2.0-30 +Description: Linux kernel version specific tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.2.0-27 on + version 6.2.0-30 on 64 bit x86. -Package: linux-cloud-tools-6.2.0-27-generic-64k +Package: linux-cloud-tools-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-6.2.0-27 -Description: Linux kernel version specific cloud tools for version 6.2.0-27 +Depends: ${misc:Depends}, linux-cloud-tools-6.2.0-30 +Description: Linux kernel version specific cloud tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 6.2.0-27 on + version locked tools for cloud for version 6.2.0-30 on 64 bit x86. -Package: linux-buildinfo-6.2.0-27-generic-64k +Package: linux-buildinfo-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel @@ -539,18 +539,18 @@ You likely do not want to install this package. -Package: linux-modules-ipu6-6.2.0-27-generic-64k +Package: linux-modules-ipu6-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic-64k | linux-image-unsigned-6.2.0-27-generic-64k, + linux-image-6.2.0-30-generic-64k | linux-image-unsigned-6.2.0-30-generic-64k, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel ipu6 modules for version 6.2.0-27 +Description: Linux kernel ipu6 modules for version 6.2.0-30 This package provides the Linux kernel ipu6 modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-ipu6-generic-64k* meta-packages, @@ -558,18 +558,18 @@ also installed. -Package: linux-modules-ivsc-6.2.0-27-generic-64k +Package: linux-modules-ivsc-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic-64k | linux-image-unsigned-6.2.0-27-generic-64k, + linux-image-6.2.0-30-generic-64k | linux-image-unsigned-6.2.0-30-generic-64k, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel ivsc modules for version 6.2.0-27 +Description: Linux kernel ivsc modules for version 6.2.0-30 This package provides the Linux kernel ivsc modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-ivsc-generic-64k* meta-packages, @@ -577,18 +577,18 @@ also installed. -Package: linux-modules-iwlwifi-6.2.0-27-generic-64k +Package: linux-modules-iwlwifi-6.2.0-30-generic-64k Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic-64k | linux-image-unsigned-6.2.0-27-generic-64k, + linux-image-6.2.0-30-generic-64k | linux-image-unsigned-6.2.0-30-generic-64k, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel iwlwifi modules for version 6.2.0-27 +Description: Linux kernel iwlwifi modules for version 6.2.0-30 This package provides the Linux kernel iwlwifi modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-iwlwifi-generic-64k* meta-packages, @@ -596,17 +596,17 @@ also installed. -Package: linux-image-unsigned-6.2.0-27-generic-lpae +Package: linux-image-unsigned-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-27-generic-lpae +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.2.0-30-generic-lpae Recommends: flash-kernel [armhf] | grub-efi-arm [armhf], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-6.2.0-27-generic-lpae -Suggests: fdutils, linux-doc | linux-source-6.2.0, linux-tools, linux-headers-6.2.0-27-generic-lpae, linux-modules-extra-6.2.0-27-generic-lpae +Conflicts: linux-image-6.2.0-30-generic-lpae +Suggests: fdutils, linux-doc | linux-source-6.2.0, linux-tools, linux-headers-6.2.0-30-generic-lpae, linux-modules-extra-6.2.0-30-generic-lpae Description: Linux kernel image for version 6.2.0 on 64 bit x86 SMP This package contains the unsigned Linux kernel image for version 6.2.0 on 64 bit x86 SMP. @@ -619,7 +619,7 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-6.2.0-27-generic-lpae +Package: linux-modules-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel @@ -639,12 +639,12 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-6.2.0-27-generic-lpae +Package: linux-modules-extra-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-6.2.0-27-generic-lpae, wireless-regdb +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-6.2.0-30-generic-lpae, wireless-regdb Description: Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 6.2.0 on 64 bit x86 SMP. @@ -661,21 +661,21 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-6.2.0-27-generic-lpae +Package: linux-headers-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-6.2.0-27, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-6.2.0-30, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 6.2.0 on 64 bit x86 SMP This package provides kernel header files for version 6.2.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-6.2.0-27/debian.README.gz for details. + /usr/share/doc/linux-headers-6.2.0-30/debian.README.gz for details. -Package: linux-lib-rust-6.2.0-27-generic-lpae +Package: linux-lib-rust-6.2.0-30-generic-lpae Build-Profiles: Architecture: amd64 Multi-Arch: foreign @@ -686,7 +686,7 @@ This package provides kernel library files for version 6.2.0, that allow to compile out-of-tree kernel modules written in Rust. -Package: linux-image-unsigned-6.2.0-27-generic-lpae-dbgsym +Package: linux-image-unsigned-6.2.0-30-generic-lpae-dbgsym Build-Profiles: Architecture: armhf Section: devel @@ -703,31 +703,31 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-6.2.0-27-generic-lpae +Package: linux-tools-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-6.2.0-27 -Description: Linux kernel version specific tools for version 6.2.0-27 +Depends: ${misc:Depends}, linux-tools-6.2.0-30 +Description: Linux kernel version specific tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.2.0-27 on + version 6.2.0-30 on 64 bit x86. -Package: linux-cloud-tools-6.2.0-27-generic-lpae +Package: linux-cloud-tools-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-6.2.0-27 -Description: Linux kernel version specific cloud tools for version 6.2.0-27 +Depends: ${misc:Depends}, linux-cloud-tools-6.2.0-30 +Description: Linux kernel version specific cloud tools for version 6.2.0-30 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 6.2.0-27 on + version locked tools for cloud for version 6.2.0-30 on 64 bit x86. -Package: linux-buildinfo-6.2.0-27-generic-lpae +Package: linux-buildinfo-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel @@ -741,18 +741,18 @@ You likely do not want to install this package. -Package: linux-modules-ipu6-6.2.0-27-generic-lpae +Package: linux-modules-ipu6-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic-lpae | linux-image-unsigned-6.2.0-27-generic-lpae, + linux-image-6.2.0-30-generic-lpae | linux-image-unsigned-6.2.0-30-generic-lpae, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel ipu6 modules for version 6.2.0-27 +Description: Linux kernel ipu6 modules for version 6.2.0-30 This package provides the Linux kernel ipu6 modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-ipu6-generic-lpae* meta-packages, @@ -760,18 +760,18 @@ also installed. -Package: linux-modules-ivsc-6.2.0-27-generic-lpae +Package: linux-modules-ivsc-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic-lpae | linux-image-unsigned-6.2.0-27-generic-lpae, + linux-image-6.2.0-30-generic-lpae | linux-image-unsigned-6.2.0-30-generic-lpae, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel ivsc modules for version 6.2.0-27 +Description: Linux kernel ivsc modules for version 6.2.0-30 This package provides the Linux kernel ivsc modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-ivsc-generic-lpae* meta-packages, @@ -779,18 +779,18 @@ also installed. -Package: linux-modules-iwlwifi-6.2.0-27-generic-lpae +Package: linux-modules-iwlwifi-6.2.0-30-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-6.2.0-27-generic-lpae | linux-image-unsigned-6.2.0-27-generic-lpae, + linux-image-6.2.0-30-generic-lpae | linux-image-unsigned-6.2.0-30-generic-lpae, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel iwlwifi modules for version 6.2.0-27 +Description: Linux kernel iwlwifi modules for version 6.2.0-30 This package provides the Linux kernel iwlwifi modules for version - 6.2.0-27. + 6.2.0-30. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-iwlwifi-generic-lpae* meta-packages, diff -u linux-6.2.0/debian/scripts/misc/getabis linux-6.2.0/debian/scripts/misc/getabis --- linux-6.2.0/debian/scripts/misc/getabis +++ linux-6.2.0/debian/scripts/misc/getabis @@ -161,6 +161,9 @@ do mv "$base/$comp" "$abidir/$arch/$sub.$comp" done + if [ -e "${base}"/modules.builtin ] ; then + mv "${base}"/modules.builtin "${abidir}/${arch}/${sub}".modules.builtin + fi cat "$base/fwinfo" >>"$fwinfo" if [ -e "${base}"/fwinfo.builtin ] ; then cat "${base}"/fwinfo.builtin >> "${fwinfo}".builtin diff -u linux-6.2.0/drivers/acpi/video_detect.c linux-6.2.0/drivers/acpi/video_detect.c --- linux-6.2.0/drivers/acpi/video_detect.c +++ linux-6.2.0/drivers/acpi/video_detect.c @@ -130,12 +130,6 @@ return 0; } -static int video_detect_force_none(const struct dmi_system_id *d) -{ - acpi_backlight_dmi = acpi_backlight_none; - return 0; -} - static const struct dmi_system_id video_detect_dmi_table[] = { /* * Models which should use the vendor backlight interface, @@ -756,31 +750,2 @@ }, - - /* - * Desktops which falsely report a backlight and which our heuristics - * for this do not catch. - */ - { - .callback = video_detect_force_none, - /* Dell OptiPlex 9020M */ - .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), - DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 9020M"), - }, - }, - { - .callback = video_detect_force_none, - /* GIGABYTE GB-BXBT-2807 */ - .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"), - DMI_MATCH(DMI_PRODUCT_NAME, "GB-BXBT-2807"), - }, - }, - { - .callback = video_detect_force_none, - /* MSI MS-7721 */ - .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "MSI"), - DMI_MATCH(DMI_PRODUCT_NAME, "MS-7721"), - }, - }, { }, @@ -863,6 +828,27 @@ if (native_available) return acpi_backlight_native; + /* + * The vendor specific BIOS interfaces are only necessary for + * laptops from before ~2008. + * + * For laptops from ~2008 till ~2023 this point is never reached + * because on those (video_caps & ACPI_VIDEO_BACKLIGHT) above is true. + * + * Laptops from after ~2023 no longer support ACPI_VIDEO_BACKLIGHT, + * if this point is reached on those, this likely means that + * the GPU kms driver which sets native_available has not loaded yet. + * + * Returning acpi_backlight_vendor in this case is known to sometimes + * cause a non working vendor specific /sys/class/backlight device to + * get registered. + * + * Return acpi_backlight_none on laptops with ACPI tables written + * for Windows 8 (laptops from after ~2012) to avoid this problem. + */ + if (acpi_osi_is_win8()) + return acpi_backlight_none; + /* No ACPI video/native (old hw), use vendor specific fw methods. */ return acpi_backlight_vendor; } diff -u linux-6.2.0/drivers/android/binder.c linux-6.2.0/drivers/android/binder.c --- linux-6.2.0/drivers/android/binder.c +++ linux-6.2.0/drivers/android/binder.c @@ -1934,24 +1934,23 @@ static void binder_transaction_buffer_release(struct binder_proc *proc, struct binder_thread *thread, struct binder_buffer *buffer, - binder_size_t failed_at, + binder_size_t off_end_offset, bool is_failure) { int debug_id = buffer->debug_id; - binder_size_t off_start_offset, buffer_offset, off_end_offset; + binder_size_t off_start_offset, buffer_offset; binder_debug(BINDER_DEBUG_TRANSACTION, "%d buffer release %d, size %zd-%zd, failed at %llx\n", proc->pid, buffer->debug_id, buffer->data_size, buffer->offsets_size, - (unsigned long long)failed_at); + (unsigned long long)off_end_offset); if (buffer->target_node) binder_dec_node(buffer->target_node, 1, 0); off_start_offset = ALIGN(buffer->data_size, sizeof(void *)); - off_end_offset = is_failure && failed_at ? failed_at : - off_start_offset + buffer->offsets_size; + for (buffer_offset = off_start_offset; buffer_offset < off_end_offset; buffer_offset += sizeof(binder_size_t)) { struct binder_object_header *hdr; @@ -2111,6 +2110,21 @@ } } +/* Clean up all the objects in the buffer */ +static inline void binder_release_entire_buffer(struct binder_proc *proc, + struct binder_thread *thread, + struct binder_buffer *buffer, + bool is_failure) +{ + binder_size_t off_end_offset; + + off_end_offset = ALIGN(buffer->data_size, sizeof(void *)); + off_end_offset += buffer->offsets_size; + + binder_transaction_buffer_release(proc, thread, buffer, + off_end_offset, is_failure); +} + static int binder_translate_binder(struct flat_binder_object *fp, struct binder_transaction *t, struct binder_thread *thread) @@ -2801,7 +2815,7 @@ t_outdated->buffer = NULL; buffer->transaction = NULL; trace_binder_transaction_update_buffer_release(buffer); - binder_transaction_buffer_release(proc, NULL, buffer, 0, 0); + binder_release_entire_buffer(proc, NULL, buffer, false); binder_alloc_free_buf(&proc->alloc, buffer); kfree(t_outdated); binder_stats_deleted(BINDER_STAT_TRANSACTION); @@ -3758,7 +3772,7 @@ binder_node_inner_unlock(buf_node); } trace_binder_transaction_buffer_release(buffer); - binder_transaction_buffer_release(proc, thread, buffer, 0, is_failure); + binder_release_entire_buffer(proc, thread, buffer, is_failure); binder_alloc_free_buf(&proc->alloc, buffer); } diff -u linux-6.2.0/drivers/android/binder_alloc.c linux-6.2.0/drivers/android/binder_alloc.c --- linux-6.2.0/drivers/android/binder_alloc.c +++ linux-6.2.0/drivers/android/binder_alloc.c @@ -211,8 +211,8 @@ mm = alloc->mm; if (mm) { - mmap_read_lock(mm); - vma = vma_lookup(mm, alloc->vma_addr); + mmap_write_lock(mm); + vma = alloc->vma; } if (!vma && need_mm) { @@ -269,7 +269,7 @@ trace_binder_alloc_page_end(alloc, index); } if (mm) { - mmap_read_unlock(mm); + mmap_write_unlock(mm); mmput(mm); } return 0; @@ -302,21 +302,24 @@ } err_no_vma: if (mm) { - mmap_read_unlock(mm); + mmap_write_unlock(mm); mmput(mm); } return vma ? -ENOMEM : -ESRCH; } +static inline void binder_alloc_set_vma(struct binder_alloc *alloc, + struct vm_area_struct *vma) +{ + /* pairs with smp_load_acquire in binder_alloc_get_vma() */ + smp_store_release(&alloc->vma, vma); +} + static inline struct vm_area_struct *binder_alloc_get_vma( struct binder_alloc *alloc) { - struct vm_area_struct *vma = NULL; - - if (alloc->vma_addr) - vma = vma_lookup(alloc->mm, alloc->vma_addr); - - return vma; + /* pairs with smp_store_release in binder_alloc_set_vma() */ + return smp_load_acquire(&alloc->vma); } static bool debug_low_async_space_locked(struct binder_alloc *alloc, int pid) @@ -379,15 +382,13 @@ size_t size, data_offsets_size; int ret; - mmap_read_lock(alloc->mm); + /* Check binder_alloc is fully initialized */ if (!binder_alloc_get_vma(alloc)) { - mmap_read_unlock(alloc->mm); binder_alloc_debug(BINDER_DEBUG_USER_ERROR, "%d: binder_alloc_buf, no vma\n", alloc->pid); return ERR_PTR(-ESRCH); } - mmap_read_unlock(alloc->mm); data_offsets_size = ALIGN(data_size, sizeof(void *)) + ALIGN(offsets_size, sizeof(void *)); @@ -777,7 +778,9 @@ buffer->free = 1; binder_insert_free_buffer(alloc, buffer); alloc->free_async_space = alloc->buffer_size / 2; - alloc->vma_addr = vma->vm_start; + + /* Signal binder_alloc is fully initialized */ + binder_alloc_set_vma(alloc, vma); return 0; @@ -807,8 +810,7 @@ buffers = 0; mutex_lock(&alloc->mutex); - BUG_ON(alloc->vma_addr && - vma_lookup(alloc->mm, alloc->vma_addr)); + BUG_ON(alloc->vma); while ((n = rb_first(&alloc->allocated_buffers))) { buffer = rb_entry(n, struct binder_buffer, rb_node); @@ -915,25 +917,17 @@ * Make sure the binder_alloc is fully initialized, otherwise we might * read inconsistent state. */ - - mmap_read_lock(alloc->mm); - if (binder_alloc_get_vma(alloc) == NULL) { - mmap_read_unlock(alloc->mm); - goto uninitialized; + if (binder_alloc_get_vma(alloc) != NULL) { + for (i = 0; i < alloc->buffer_size / PAGE_SIZE; i++) { + page = &alloc->pages[i]; + if (!page->page_ptr) + free++; + else if (list_empty(&page->lru)) + active++; + else + lru++; + } } - - mmap_read_unlock(alloc->mm); - for (i = 0; i < alloc->buffer_size / PAGE_SIZE; i++) { - page = &alloc->pages[i]; - if (!page->page_ptr) - free++; - else if (list_empty(&page->lru)) - active++; - else - lru++; - } - -uninitialized: mutex_unlock(&alloc->mutex); seq_printf(m, " pages: %d:%d:%d\n", active, lru, free); seq_printf(m, " pages high watermark: %zu\n", alloc->pages_high); @@ -968,7 +962,7 @@ */ void binder_alloc_vma_close(struct binder_alloc *alloc) { - alloc->vma_addr = 0; + binder_alloc_set_vma(alloc, NULL); } /** diff -u linux-6.2.0/drivers/android/binder_alloc.h linux-6.2.0/drivers/android/binder_alloc.h --- linux-6.2.0/drivers/android/binder_alloc.h +++ linux-6.2.0/drivers/android/binder_alloc.h @@ -76,7 +76,7 @@ /** * struct binder_alloc - per-binder proc state for binder allocator * @mutex: protects binder_alloc fields - * @vma_addr: vm_area_struct->vm_start passed to mmap_handler + * @vma: vm_area_struct passed to mmap_handler * (invariant after mmap) * @mm: copy of task->mm (invariant after open) * @buffer: base of per-proc address space mapped via mmap @@ -100,7 +100,7 @@ */ struct binder_alloc { struct mutex mutex; - unsigned long vma_addr; + struct vm_area_struct *vma; struct mm_struct *mm; void __user *buffer; struct list_head buffers; diff -u linux-6.2.0/drivers/base/cpu.c linux-6.2.0/drivers/base/cpu.c --- linux-6.2.0/drivers/base/cpu.c +++ linux-6.2.0/drivers/base/cpu.c @@ -577,6 +577,12 @@ return sysfs_emit(buf, "Not affected\n"); } +ssize_t __weak cpu_show_gds(struct device *dev, + struct device_attribute *attr, char *buf) +{ + return sysfs_emit(buf, "Not affected\n"); +} + static DEVICE_ATTR(meltdown, 0444, cpu_show_meltdown, NULL); static DEVICE_ATTR(spectre_v1, 0444, cpu_show_spectre_v1, NULL); static DEVICE_ATTR(spectre_v2, 0444, cpu_show_spectre_v2, NULL); @@ -588,6 +594,7 @@ static DEVICE_ATTR(srbds, 0444, cpu_show_srbds, NULL); static DEVICE_ATTR(mmio_stale_data, 0444, cpu_show_mmio_stale_data, NULL); static DEVICE_ATTR(retbleed, 0444, cpu_show_retbleed, NULL); +static DEVICE_ATTR(gather_data_sampling, 0444, cpu_show_gds, NULL); static struct attribute *cpu_root_vulnerabilities_attrs[] = { &dev_attr_meltdown.attr, @@ -601,6 +608,7 @@ &dev_attr_srbds.attr, &dev_attr_mmio_stale_data.attr, &dev_attr_retbleed.attr, + &dev_attr_gather_data_sampling.attr, NULL }; diff -u linux-6.2.0/drivers/block/loop.c linux-6.2.0/drivers/block/loop.c --- linux-6.2.0/drivers/block/loop.c +++ linux-6.2.0/drivers/block/loop.c @@ -1777,14 +1777,43 @@ /* * If max_loop is specified, create that many devices upfront. * This also becomes a hard limit. If max_loop is not specified, + * the default isn't a hard limit (as before commit 85c50197716c + * changed the default value from 0 for max_loop=0 reasons), just * create CONFIG_BLK_DEV_LOOP_MIN_COUNT loop devices at module * init time. Loop devices can be requested on-demand with the * /dev/loop-control interface, or be instantiated by accessing * a 'dead' device node. */ static int max_loop = CONFIG_BLK_DEV_LOOP_MIN_COUNT; -module_param(max_loop, int, 0444); + +#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD +static bool max_loop_specified; + +static int max_loop_param_set_int(const char *val, + const struct kernel_param *kp) +{ + int ret; + + ret = param_set_int(val, kp); + if (ret < 0) + return ret; + + max_loop_specified = true; + return 0; +} + +static const struct kernel_param_ops max_loop_param_ops = { + .set = max_loop_param_set_int, + .get = param_get_int, +}; + +module_param_cb(max_loop, &max_loop_param_ops, &max_loop, 0444); MODULE_PARM_DESC(max_loop, "Maximum number of loop devices"); +#else +module_param(max_loop, int, 0444); +MODULE_PARM_DESC(max_loop, "Initial number of loop devices"); +#endif + module_param(max_part, int, 0444); MODULE_PARM_DESC(max_part, "Maximum number of partitions per loop device"); @@ -2089,14 +2118,18 @@ put_disk(lo->lo_disk); } +#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD static void loop_probe(dev_t dev) { int idx = MINOR(dev) >> part_shift; - if (max_loop && idx >= max_loop) + if (max_loop_specified && max_loop && idx >= max_loop) return; loop_add(idx); } +#else +#define loop_probe NULL +#endif /* !CONFIG_BLOCK_LEGACY_AUTOLOAD */ static int loop_control_remove(int idx) { @@ -2277,6 +2310,9 @@ static int __init max_loop_setup(char *str) { max_loop = simple_strtol(str, NULL, 0); +#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD + max_loop_specified = true; +#endif return 1; } diff -u linux-6.2.0/drivers/block/nbd.c linux-6.2.0/drivers/block/nbd.c --- linux-6.2.0/drivers/block/nbd.c +++ linux-6.2.0/drivers/block/nbd.c @@ -325,6 +325,9 @@ if (blk_validate_block_size(blksize)) return -EINVAL; + if (bytesize < 0) + return -EINVAL; + nbd->config->bytesize = bytesize; nbd->config->blksize_bits = __ffs(blksize); @@ -1111,6 +1114,9 @@ struct nbd_sock *nsock; int err; + /* Arg will be cast to int, check it to avoid overflow */ + if (arg > INT_MAX) + return -EINVAL; sock = nbd_get_socket(nbd, arg, &err); if (!sock) return err; diff -u linux-6.2.0/drivers/block/null_blk/main.c linux-6.2.0/drivers/block/null_blk/main.c --- linux-6.2.0/drivers/block/null_blk/main.c +++ linux-6.2.0/drivers/block/null_blk/main.c @@ -1965,6 +1965,11 @@ static int null_validate_conf(struct nullb_device *dev) { + if (dev->queue_mode == NULL_Q_RQ) { + pr_err("legacy IO path is no longer available\n"); + return -EINVAL; + } + dev->blocksize = round_down(dev->blocksize, 512); dev->blocksize = clamp_t(unsigned int, dev->blocksize, 512, 4096); diff -u linux-6.2.0/drivers/bluetooth/btbcm.c linux-6.2.0/drivers/bluetooth/btbcm.c --- linux-6.2.0/drivers/bluetooth/btbcm.c +++ linux-6.2.0/drivers/bluetooth/btbcm.c @@ -6,6 +6,7 @@ * Copyright (C) 2015 Intel Corporation */ +#include #include #include #include @@ -34,6 +35,43 @@ /* For kmalloc-ing the fw-name array instead of putting it on the stack */ typedef char bcm_fw_name[BCM_FW_NAME_LEN]; +#ifdef CONFIG_EFI +static int btbcm_set_bdaddr_from_efi(struct hci_dev *hdev) +{ + efi_guid_t guid = EFI_GUID(0x74b00bd9, 0x805a, 0x4d61, 0xb5, 0x1f, + 0x43, 0x26, 0x81, 0x23, 0xd1, 0x13); + bdaddr_t efi_bdaddr, bdaddr; + efi_status_t status; + unsigned long len; + int ret; + + if (!efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE)) + return -EOPNOTSUPP; + + len = sizeof(efi_bdaddr); + status = efi.get_variable(L"BDADDR", &guid, NULL, &len, &efi_bdaddr); + if (status != EFI_SUCCESS) + return -ENXIO; + + if (len != sizeof(efi_bdaddr)) + return -EIO; + + baswap(&bdaddr, &efi_bdaddr); + + ret = btbcm_set_bdaddr(hdev, &bdaddr); + if (ret) + return ret; + + bt_dev_info(hdev, "BCM: Using EFI device address (%pMR)", &bdaddr); + return 0; +} +#else +static int btbcm_set_bdaddr_from_efi(struct hci_dev *hdev) +{ + return -EOPNOTSUPP; +} +#endif + int btbcm_check_bdaddr(struct hci_dev *hdev) { struct hci_rp_read_bd_addr *bda; @@ -87,9 +125,12 @@ !bacmp(&bda->bdaddr, BDADDR_BCM4345C5) || !bacmp(&bda->bdaddr, BDADDR_BCM43430A0) || !bacmp(&bda->bdaddr, BDADDR_BCM43341B)) { - bt_dev_info(hdev, "BCM: Using default device address (%pMR)", - &bda->bdaddr); - set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks); + /* Try falling back to BDADDR EFI variable */ + if (btbcm_set_bdaddr_from_efi(hdev) != 0) { + bt_dev_info(hdev, "BCM: Using default device address (%pMR)", + &bda->bdaddr); + set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks); + } } kfree_skb(skb); diff -u linux-6.2.0/drivers/bluetooth/btusb.c linux-6.2.0/drivers/bluetooth/btusb.c --- linux-6.2.0/drivers/bluetooth/btusb.c +++ linux-6.2.0/drivers/bluetooth/btusb.c @@ -559,6 +559,9 @@ { USB_DEVICE(0x043e, 0x310c), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x04ca, 0x3801), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, /* Additional MediaTek MT7668 Bluetooth devices */ { USB_DEVICE(0x043e, 0x3109), .driver_info = BTUSB_MEDIATEK | @@ -4153,6 +4156,9 @@ if (id->driver_info & BTUSB_ACTIONS_SEMI) { /* Support is advertised, but not implemented */ set_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks); + set_bit(HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, &hdev->quirks); + set_bit(HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT, &hdev->quirks); + set_bit(HCI_QUIRK_BROKEN_EXT_SCAN, &hdev->quirks); } if (!reset) diff -u linux-6.2.0/drivers/char/tpm/tpm-chip.c linux-6.2.0/drivers/char/tpm/tpm-chip.c --- linux-6.2.0/drivers/char/tpm/tpm-chip.c +++ linux-6.2.0/drivers/char/tpm/tpm-chip.c @@ -573,6 +573,10 @@ { struct tpm_chip *chip = container_of(rng, struct tpm_chip, hwrng); + /* Give back zero bytes, as TPM chip has not yet fully resumed: */ + if (chip->flags & TPM_CHIP_FLAG_SUSPENDED) + return 0; + return tpm_get_random(chip, data, max); } @@ -607,6 +611,42 @@ } /* + * tpm_chip_bootstrap() - Boostrap TPM chip after power on + * @chip: TPM chip to use. + * + * Initialize TPM chip after power on. This a one-shot function: subsequent + * calls will have no effect. + */ +int tpm_chip_bootstrap(struct tpm_chip *chip) +{ + int rc; + + if (chip->flags & TPM_CHIP_FLAG_BOOTSTRAPPED) + return 0; + + rc = tpm_chip_start(chip); + if (rc) + return rc; + + rc = tpm_auto_startup(chip); + if (rc) + goto stop; + + rc = tpm_get_pcr_allocation(chip); +stop: + tpm_chip_stop(chip); + + /* + * Unconditionally set, as driver initialization should cease, when the + * boostrapping process fails. + */ + chip->flags |= TPM_CHIP_FLAG_BOOTSTRAPPED; + + return rc; +} +EXPORT_SYMBOL_GPL(tpm_chip_bootstrap); + +/* * tpm_chip_register() - create a character device for the TPM chip * @chip: TPM chip to use. * @@ -621,17 +661,7 @@ { int rc; - rc = tpm_chip_start(chip); - if (rc) - return rc; - rc = tpm_auto_startup(chip); - if (rc) { - tpm_chip_stop(chip); - return rc; - } - - rc = tpm_get_pcr_allocation(chip); - tpm_chip_stop(chip); + rc = tpm_chip_bootstrap(chip); if (rc) return rc; diff -u linux-6.2.0/drivers/char/tpm/tpm.h linux-6.2.0/drivers/char/tpm/tpm.h --- linux-6.2.0/drivers/char/tpm/tpm.h +++ linux-6.2.0/drivers/char/tpm/tpm.h @@ -263,6 +263,7 @@ delay_msec * 1000); }; +int tpm_chip_bootstrap(struct tpm_chip *chip); int tpm_chip_start(struct tpm_chip *chip); void tpm_chip_stop(struct tpm_chip *chip); struct tpm_chip *tpm_find_get_ops(struct tpm_chip *chip); diff -u linux-6.2.0/drivers/char/tpm/tpm_tis_core.c linux-6.2.0/drivers/char/tpm/tpm_tis_core.c --- linux-6.2.0/drivers/char/tpm/tpm_tis_core.c +++ linux-6.2.0/drivers/char/tpm/tpm_tis_core.c @@ -53,41 +53,63 @@ long rc; u8 status; bool canceled = false; + u8 sts_mask = 0; + int ret = 0; /* check current status */ status = chip->ops->status(chip); if ((status & mask) == mask) return 0; - stop = jiffies + timeout; + /* check what status changes can be handled by irqs */ + if (priv->int_mask & TPM_INTF_STS_VALID_INT) + sts_mask |= TPM_STS_VALID; + + if (priv->int_mask & TPM_INTF_DATA_AVAIL_INT) + sts_mask |= TPM_STS_DATA_AVAIL; - if (chip->flags & TPM_CHIP_FLAG_IRQ) { + if (priv->int_mask & TPM_INTF_CMD_READY_INT) + sts_mask |= TPM_STS_COMMAND_READY; + + sts_mask &= mask; + + stop = jiffies + timeout; + /* process status changes with irq support */ + if (sts_mask) { + ret = -ETIME; again: timeout = stop - jiffies; if ((long)timeout <= 0) return -ETIME; rc = wait_event_interruptible_timeout(*queue, - wait_for_tpm_stat_cond(chip, mask, check_cancel, + wait_for_tpm_stat_cond(chip, sts_mask, check_cancel, &canceled), timeout); if (rc > 0) { if (canceled) return -ECANCELED; - return 0; + ret = 0; } if (rc == -ERESTARTSYS && freezing(current)) { clear_thread_flag(TIF_SIGPENDING); goto again; } - } else { - do { - usleep_range(priv->timeout_min, - priv->timeout_max); - status = chip->ops->status(chip); - if ((status & mask) == mask) - return 0; - } while (time_before(jiffies, stop)); } + + if (ret) + return ret; + + mask &= ~sts_mask; + if (!mask) /* all done */ + return 0; + /* process status changes without irq support */ + do { + status = chip->ops->status(chip); + if ((status & mask) == mask) + return 0; + usleep_range(priv->timeout_min, + priv->timeout_max); + } while (time_before(jiffies, stop)); return -ETIME; } @@ -376,7 +398,7 @@ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev); int rc, status, burstcnt; size_t count = 0; - bool itpm = priv->flags & TPM_TIS_ITPM_WORKAROUND; + bool itpm = test_bit(TPM_TIS_ITPM_WORKAROUND, &priv->flags); status = tpm_tis_status(chip); if ((status & TPM_STS_COMMAND_READY) == 0) { @@ -509,7 +531,8 @@ int rc, irq; struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev); - if (!(chip->flags & TPM_CHIP_FLAG_IRQ) || priv->irq_tested) + if (!(chip->flags & TPM_CHIP_FLAG_IRQ) || + test_bit(TPM_TIS_IRQ_TESTED, &priv->flags)) return tpm_tis_send_main(chip, buf, len); /* Verify receipt of the expected IRQ */ @@ -519,11 +542,11 @@ rc = tpm_tis_send_main(chip, buf, len); priv->irq = irq; chip->flags |= TPM_CHIP_FLAG_IRQ; - if (!priv->irq_tested) + if (!test_bit(TPM_TIS_IRQ_TESTED, &priv->flags)) tpm_msleep(1); - if (!priv->irq_tested) + if (!test_bit(TPM_TIS_IRQ_TESTED, &priv->flags)) disable_interrupts(chip); - priv->irq_tested = true; + set_bit(TPM_TIS_IRQ_TESTED, &priv->flags); return rc; } @@ -666,7 +689,7 @@ size_t len = sizeof(cmd_getticks); u16 vendor; - if (priv->flags & TPM_TIS_ITPM_WORKAROUND) + if (test_bit(TPM_TIS_ITPM_WORKAROUND, &priv->flags)) return 0; rc = tpm_tis_read16(priv, TPM_DID_VID(0), &vendor); @@ -686,13 +709,13 @@ tpm_tis_ready(chip); - priv->flags |= TPM_TIS_ITPM_WORKAROUND; + set_bit(TPM_TIS_ITPM_WORKAROUND, &priv->flags); rc = tpm_tis_send_data(chip, cmd_getticks, len); if (rc == 0) dev_info(&chip->dev, "Detected an iTPM.\n"); else { - priv->flags &= ~TPM_TIS_ITPM_WORKAROUND; + clear_bit(TPM_TIS_ITPM_WORKAROUND, &priv->flags); rc = -EFAULT; } @@ -736,7 +759,7 @@ if (interrupt == 0) return IRQ_NONE; - priv->irq_tested = true; + set_bit(TPM_TIS_IRQ_TESTED, &priv->flags); if (interrupt & TPM_INTF_DATA_AVAIL_INT) wake_up_interruptible(&priv->read_queue); if (interrupt & TPM_INTF_LOCALITY_CHANGE_INT) @@ -819,7 +842,7 @@ if (rc < 0) goto restore_irqs; - priv->irq_tested = false; + clear_bit(TPM_TIS_IRQ_TESTED, &priv->flags); /* Generate an interrupt by having the core call through to * tpm_tis_send @@ -1031,8 +1054,40 @@ if (rc < 0) goto out_err; - intmask |= TPM_INTF_CMD_READY_INT | TPM_INTF_LOCALITY_CHANGE_INT | - TPM_INTF_DATA_AVAIL_INT | TPM_INTF_STS_VALID_INT; + /* Figure out the capabilities */ + rc = tpm_tis_read32(priv, TPM_INTF_CAPS(priv->locality), &intfcaps); + if (rc < 0) + goto out_err; + + dev_dbg(dev, "TPM interface capabilities (0x%x):\n", + intfcaps); + if (intfcaps & TPM_INTF_BURST_COUNT_STATIC) + dev_dbg(dev, "\tBurst Count Static\n"); + if (intfcaps & TPM_INTF_CMD_READY_INT) { + intmask |= TPM_INTF_CMD_READY_INT; + dev_dbg(dev, "\tCommand Ready Int Support\n"); + } + if (intfcaps & TPM_INTF_INT_EDGE_FALLING) + dev_dbg(dev, "\tInterrupt Edge Falling\n"); + if (intfcaps & TPM_INTF_INT_EDGE_RISING) + dev_dbg(dev, "\tInterrupt Edge Rising\n"); + if (intfcaps & TPM_INTF_INT_LEVEL_LOW) + dev_dbg(dev, "\tInterrupt Level Low\n"); + if (intfcaps & TPM_INTF_INT_LEVEL_HIGH) + dev_dbg(dev, "\tInterrupt Level High\n"); + if (intfcaps & TPM_INTF_LOCALITY_CHANGE_INT) { + intmask |= TPM_INTF_LOCALITY_CHANGE_INT; + dev_dbg(dev, "\tLocality Change Int Support\n"); + } + if (intfcaps & TPM_INTF_STS_VALID_INT) { + intmask |= TPM_INTF_STS_VALID_INT; + dev_dbg(dev, "\tSts Valid Int Support\n"); + } + if (intfcaps & TPM_INTF_DATA_AVAIL_INT) { + intmask |= TPM_INTF_DATA_AVAIL_INT; + dev_dbg(dev, "\tData Avail Int Support\n"); + } + intmask &= ~TPM_GLOBAL_INT_ENABLE; rc = tpm_tis_request_locality(chip, 0); @@ -1066,35 +1121,14 @@ goto out_err; } - /* Figure out the capabilities */ - rc = tpm_tis_read32(priv, TPM_INTF_CAPS(priv->locality), &intfcaps); - if (rc < 0) - goto out_err; - - dev_dbg(dev, "TPM interface capabilities (0x%x):\n", - intfcaps); - if (intfcaps & TPM_INTF_BURST_COUNT_STATIC) - dev_dbg(dev, "\tBurst Count Static\n"); - if (intfcaps & TPM_INTF_CMD_READY_INT) - dev_dbg(dev, "\tCommand Ready Int Support\n"); - if (intfcaps & TPM_INTF_INT_EDGE_FALLING) - dev_dbg(dev, "\tInterrupt Edge Falling\n"); - if (intfcaps & TPM_INTF_INT_EDGE_RISING) - dev_dbg(dev, "\tInterrupt Edge Rising\n"); - if (intfcaps & TPM_INTF_INT_LEVEL_LOW) - dev_dbg(dev, "\tInterrupt Level Low\n"); - if (intfcaps & TPM_INTF_INT_LEVEL_HIGH) - dev_dbg(dev, "\tInterrupt Level High\n"); - if (intfcaps & TPM_INTF_LOCALITY_CHANGE_INT) - dev_dbg(dev, "\tLocality Change Int Support\n"); - if (intfcaps & TPM_INTF_STS_VALID_INT) - dev_dbg(dev, "\tSts Valid Int Support\n"); - if (intfcaps & TPM_INTF_DATA_AVAIL_INT) - dev_dbg(dev, "\tData Avail Int Support\n"); - /* INTERRUPT Setup */ init_waitqueue_head(&priv->read_queue); init_waitqueue_head(&priv->int_queue); + + rc = tpm_chip_bootstrap(chip); + if (rc) + goto out_err; + if (irq != -1) { /* * Before doing irq testing issue a command to the TPM in polling mode @@ -1122,7 +1156,9 @@ else tpm_tis_probe_irq(chip, intmask); - if (!(chip->flags & TPM_CHIP_FLAG_IRQ)) { + if (chip->flags & TPM_CHIP_FLAG_IRQ) { + priv->int_mask = intmask; + } else { dev_err(&chip->dev, FW_BUG "TPM interrupt not working, polling instead\n"); @@ -1159,31 +1195,20 @@ u32 intmask; int rc; - if (chip->ops->clk_enable != NULL) - chip->ops->clk_enable(chip, true); - - /* reenable interrupts that device may have lost or - * BIOS/firmware may have disabled + /* + * Re-enable interrupts that device may have lost or BIOS/firmware may + * have disabled. */ rc = tpm_tis_write8(priv, TPM_INT_VECTOR(priv->locality), priv->irq); - if (rc < 0) - goto out; + if (rc < 0) { + dev_err(&chip->dev, "Setting IRQ failed.\n"); + return; + } - rc = tpm_tis_read32(priv, TPM_INT_ENABLE(priv->locality), &intmask); + intmask = priv->int_mask | TPM_GLOBAL_INT_ENABLE; + rc = tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality), intmask); if (rc < 0) - goto out; - - intmask |= TPM_INTF_CMD_READY_INT - | TPM_INTF_LOCALITY_CHANGE_INT | TPM_INTF_DATA_AVAIL_INT - | TPM_INTF_STS_VALID_INT | TPM_GLOBAL_INT_ENABLE; - - tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality), intmask); - -out: - if (chip->ops->clk_enable != NULL) - chip->ops->clk_enable(chip, false); - - return; + dev_err(&chip->dev, "Enabling interrupts failed.\n"); } int tpm_tis_resume(struct device *dev) @@ -1191,27 +1216,27 @@ struct tpm_chip *chip = dev_get_drvdata(dev); int ret; - ret = tpm_tis_request_locality(chip, 0); - if (ret < 0) + ret = tpm_chip_start(chip); + if (ret) return ret; if (chip->flags & TPM_CHIP_FLAG_IRQ) tpm_tis_reenable_interrupts(chip); - ret = tpm_pm_resume(dev); - if (ret) - goto out; - /* * TPM 1.2 requires self-test on resume. This function actually returns * an error code but for unknown reason it isn't handled. */ if (!(chip->flags & TPM_CHIP_FLAG_TPM2)) tpm1_do_selftest(chip); -out: - tpm_tis_relinquish_locality(chip, 0); - return ret; + tpm_chip_stop(chip); + + ret = tpm_pm_resume(dev); + if (ret) + return ret; + + return 0; } EXPORT_SYMBOL_GPL(tpm_tis_resume); #endif diff -u linux-6.2.0/drivers/char/tpm/tpm_tis_core.h linux-6.2.0/drivers/char/tpm/tpm_tis_core.h --- linux-6.2.0/drivers/char/tpm/tpm_tis_core.h +++ linux-6.2.0/drivers/char/tpm/tpm_tis_core.h @@ -87,6 +87,7 @@ TPM_TIS_ITPM_WORKAROUND = BIT(0), TPM_TIS_INVALID_STATUS = BIT(1), TPM_TIS_DEFAULT_CANCELLATION = BIT(2), + TPM_TIS_IRQ_TESTED = BIT(3), }; struct tpm_tis_data { @@ -95,7 +96,7 @@ unsigned int locality_count; int locality; int irq; - bool irq_tested; + unsigned int int_mask; unsigned long flags; void __iomem *ilb_base_addr; u16 clkrun_enabled; diff -u linux-6.2.0/drivers/cxl/core/pci.c linux-6.2.0/drivers/cxl/core/pci.c --- linux-6.2.0/drivers/cxl/core/pci.c +++ linux-6.2.0/drivers/cxl/core/pci.c @@ -100,23 +100,57 @@ } EXPORT_SYMBOL_NS_GPL(devm_cxl_port_enumerate_dports, CXL); -/* - * Wait up to @media_ready_timeout for the device to report memory - * active. - */ -int cxl_await_media_ready(struct cxl_dev_state *cxlds) +static int cxl_dvsec_mem_range_valid(struct cxl_dev_state *cxlds, int id) +{ + struct pci_dev *pdev = to_pci_dev(cxlds->dev); + int d = cxlds->cxl_dvsec; + bool valid = false; + int rc, i; + u32 temp; + + if (id > CXL_DVSEC_RANGE_MAX) + return -EINVAL; + + /* Check MEM INFO VALID bit first, give up after 1s */ + i = 1; + do { + rc = pci_read_config_dword(pdev, + d + CXL_DVSEC_RANGE_SIZE_LOW(id), + &temp); + if (rc) + return rc; + + valid = FIELD_GET(CXL_DVSEC_MEM_INFO_VALID, temp); + if (valid) + break; + msleep(1000); + } while (i--); + + if (!valid) { + dev_err(&pdev->dev, + "Timeout awaiting memory range %d valid after 1s.\n", + id); + return -ETIMEDOUT; + } + + return 0; +} + +static int cxl_dvsec_mem_range_active(struct cxl_dev_state *cxlds, int id) { struct pci_dev *pdev = to_pci_dev(cxlds->dev); int d = cxlds->cxl_dvsec; bool active = false; - u64 md_status; int rc, i; + u32 temp; - for (i = media_ready_timeout; i; i--) { - u32 temp; + if (id > CXL_DVSEC_RANGE_MAX) + return -EINVAL; + /* Check MEM ACTIVE bit, up to 60s timeout by default */ + for (i = media_ready_timeout; i; i--) { rc = pci_read_config_dword( - pdev, d + CXL_DVSEC_RANGE_SIZE_LOW(0), &temp); + pdev, d + CXL_DVSEC_RANGE_SIZE_LOW(id), &temp); if (rc) return rc; @@ -133,6 +167,39 @@ return -ETIMEDOUT; } + return 0; +} + +/* + * Wait up to @media_ready_timeout for the device to report memory + * active. + */ +int cxl_await_media_ready(struct cxl_dev_state *cxlds) +{ + struct pci_dev *pdev = to_pci_dev(cxlds->dev); + int d = cxlds->cxl_dvsec; + int rc, i, hdm_count; + u64 md_status; + u16 cap; + + rc = pci_read_config_word(pdev, + d + CXL_DVSEC_CAP_OFFSET, &cap); + if (rc) + return rc; + + hdm_count = FIELD_GET(CXL_DVSEC_HDM_COUNT_MASK, cap); + for (i = 0; i < hdm_count; i++) { + rc = cxl_dvsec_mem_range_valid(cxlds, i); + if (rc) + return rc; + } + + for (i = 0; i < hdm_count; i++) { + rc = cxl_dvsec_mem_range_active(cxlds, i); + if (rc) + return rc; + } + md_status = readq(cxlds->regs.memdev + CXLMDEV_STATUS_OFFSET); if (!CXLMDEV_READY(md_status)) return -EIO; diff -u linux-6.2.0/drivers/cxl/cxlpci.h linux-6.2.0/drivers/cxl/cxlpci.h --- linux-6.2.0/drivers/cxl/cxlpci.h +++ linux-6.2.0/drivers/cxl/cxlpci.h @@ -31,6 +31,8 @@ #define CXL_DVSEC_RANGE_BASE_LOW(i) (0x24 + (i * 0x10)) #define CXL_DVSEC_MEM_BASE_LOW_MASK GENMASK(31, 28) +#define CXL_DVSEC_RANGE_MAX 2 + /* CXL 2.0 8.1.4: Non-CXL Function Map DVSEC */ #define CXL_DVSEC_FUNCTION_MAP 2 diff -u linux-6.2.0/drivers/gpio/Kconfig linux-6.2.0/drivers/gpio/Kconfig --- linux-6.2.0/drivers/gpio/Kconfig +++ linux-6.2.0/drivers/gpio/Kconfig @@ -884,7 +884,7 @@ help This option enables support for GPIOs found on Fintek Super-I/O chips F71869, F71869A, F71882FG, F71889F and F81866. - As well as Nuvoton Super-I/O chip NCT6116D. + As well as Nuvoton Super-I/O chip NCT6126D. To compile this driver as a module, choose M here: the module will be called f7188x-gpio. diff -u linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -1267,6 +1267,7 @@ 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_device_pcie_dynamic_switching_supported(void); bool amdgpu_device_should_use_aspm(struct amdgpu_device *adev); bool amdgpu_device_aspm_support_quirk(void); diff -u linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c --- linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c @@ -1083,6 +1083,9 @@ (pm_suspend_target_state != PM_SUSPEND_TO_IDLE)) return false; + if (adev->asic_type < CHIP_RAVEN) + return false; + /* * If ACPI_FADT_LOW_POWER_S0 is not set in the FADT, it is generally * risky to do any special firmware-related preparations for entering diff -u linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1334,6 +1334,25 @@ 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. + * + * https://edc.intel.com/content/www/us/en/design/products/platforms/details/raptor-lake-s/13th-generation-core-processors-datasheet-volume-1-of-2/005/pci-express-support/ + * https://gitlab.freedesktop.org/drm/amd/-/issues/2663 + */ +bool amdgpu_device_pcie_dynamic_switching_supported(void) +{ +#if IS_ENABLED(CONFIG_X86) + struct cpuinfo_x86 *c = &cpu_data(0); + + if (c->x86_vendor == X86_VENDOR_INTEL) + return false; +#endif + return true; +} + /** * amdgpu_device_should_use_aspm - check if the device should program ASPM * @@ -4503,7 +4522,11 @@ dev_info(adev->dev, "recover vram bo from shadow start\n"); mutex_lock(&adev->shadow_list_lock); list_for_each_entry(vmbo, &adev->shadow_list, shadow_list) { - shadow = &vmbo->bo; + /* If vm is compute context or adev is APU, shadow will be NULL */ + if (!vmbo->shadow) + continue; + shadow = vmbo->shadow; + /* No need to recover an evicted BO */ if (shadow->tbo.resource->mem_type != TTM_PL_TT || shadow->tbo.resource->start == AMDGPU_BO_INVALID_OFFSET || diff -u linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c --- linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -2412,8 +2412,10 @@ if (amdgpu_acpi_is_s0ix_active(adev)) adev->in_s0ix = true; - else + else if (amdgpu_acpi_is_s3_active(adev)) adev->in_s3 = true; + if (!adev->in_s0ix && !adev->in_s3) + return 0; return amdgpu_device_suspend(drm_dev, true); } @@ -2434,6 +2436,9 @@ struct amdgpu_device *adev = drm_to_adev(drm_dev); int r; + if (!adev->in_s0ix && !adev->in_s3) + return 0; + /* Avoids registers access if device is physically gone */ if (!pci_device_is_present(adev->pdev)) adev->no_hw_access = true; diff -u linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c --- linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c @@ -5129,8 +5129,14 @@ break; case IP_VERSION(11, 0, 1): case IP_VERSION(11, 0, 4): + if (!enable) + amdgpu_gfx_off_ctrl(adev, false); + gfx_v11_cntl_pg(adev, enable); - amdgpu_gfx_off_ctrl(adev, enable); + + if (enable) + amdgpu_gfx_off_ctrl(adev, true); + break; default: break; diff -u linux-6.2.0/drivers/gpu/drm/amd/amdgpu/soc21.c linux-6.2.0/drivers/gpu/drm/amd/amdgpu/soc21.c --- linux-6.2.0/drivers/gpu/drm/amd/amdgpu/soc21.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/soc21.c @@ -777,7 +777,7 @@ AMD_PG_SUPPORT_VCN_DPG | AMD_PG_SUPPORT_GFX_PG | AMD_PG_SUPPORT_JPEG; - adev->external_rev_id = adev->rev_id + 0x1; + adev->external_rev_id = adev->rev_id + 0x80; break; default: diff -u linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c --- linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -39,6 +39,7 @@ #include "dc/dc_edid_parser.h" #include "dc/dc_stat.h" #include "amdgpu_dm_trace.h" +#include "dc/inc/dc_link_ddc.h" #include "vid.h" #include "amdgpu.h" @@ -2262,6 +2263,14 @@ if (suspend) { drm_dp_mst_topology_mgr_suspend(mgr); } else { + /* if extended timeout is supported in hardware, + * default to LTTPR timeout (3.2ms) first as a W/A for DP link layer + * CTS 4.2.1.1 regression introduced by CTS specs requirement update. + */ + dc_link_aux_try_to_configure_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_LTTPR_TIMEOUT_PERIOD); + if (!dp_is_lttpr_present(aconnector->dc_link)) + dc_link_aux_try_to_configure_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, @@ -7694,6 +7703,13 @@ handle_cursor_update(plane, old_plane_state); } +static inline uint32_t get_mem_type(struct drm_framebuffer *fb) +{ + struct amdgpu_bo *abo = gem_to_amdgpu_bo(fb->obj[0]); + + return abo->tbo.resource ? abo->tbo.resource->mem_type : 0; +} + static void amdgpu_dm_commit_planes(struct drm_atomic_state *state, struct dc_state *dc_state, struct drm_device *dev, @@ -7767,6 +7783,8 @@ continue; dc_plane = dm_new_plane_state->dc_state; + if (!dc_plane) + continue; bundle->surface_updates[planes_count].surface = dc_plane; if (new_pcrtc_state->color_mgmt_changed) { @@ -7811,11 +7829,13 @@ /* * Only allow immediate flips for fast updates that don't - * change FB pitch, DCC state, rotation or mirroing. + * change memory domain, FB pitch, DCC state, rotation or + * mirroring. */ bundle->flip_addrs[planes_count].flip_immediate = crtc->state->async_flip && - acrtc_state->update_type == UPDATE_TYPE_FAST; + acrtc_state->update_type == UPDATE_TYPE_FAST && + get_mem_type(old_plane_state->fb) == get_mem_type(fb); timestamp_ns = ktime_get_ns(); bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000); @@ -9312,8 +9332,9 @@ return -EINVAL; } + if (dm_old_plane_state->dc_state) + dc_plane_state_release(dm_old_plane_state->dc_state); - dc_plane_state_release(dm_old_plane_state->dc_state); dm_new_plane_state->dc_state = NULL; *lock_and_validation_needed = true; @@ -9850,6 +9871,7 @@ ret = compute_mst_dsc_configs_for_state(state, dm_state->context, vars); if (ret) { DRM_DEBUG_DRIVER("compute_mst_dsc_configs_for_state() failed\n"); + ret = -EINVAL; goto fail; } diff -u linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c --- linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c @@ -1375,6 +1375,7 @@ ret = pre_compute_mst_dsc_configs_for_state(state, local_dc_state, vars); if (ret != 0) { DRM_INFO_ONCE("pre_compute_mst_dsc_configs_for_state() failed\n"); + ret = -EINVAL; goto clean_exit; } diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/core/dc_link.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/core/dc_link.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/core/dc_link.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/core/dc_link.c @@ -1634,14 +1634,18 @@ link->irq_source_hpd = DC_IRQ_SOURCE_INVALID; switch (link->dc->config.allow_edp_hotplug_detection) { - case 1: // only the 1st eDP handles hotplug + case HPD_EN_FOR_ALL_EDP: + link->irq_source_hpd_rx = + dal_irq_get_rx_source(link->hpd_gpio); + break; + case HPD_EN_FOR_PRIMARY_EDP_ONLY: if (link->link_index == 0) link->irq_source_hpd_rx = dal_irq_get_rx_source(link->hpd_gpio); else link->irq_source_hpd = DC_IRQ_SOURCE_INVALID; break; - case 2: // only the 2nd eDP handles hotplug + case HPD_EN_FOR_SECONDARY_EDP_ONLY: if (link->link_index == 1) link->irq_source_hpd_rx = dal_irq_get_rx_source(link->hpd_gpio); @@ -1649,6 +1653,7 @@ link->irq_source_hpd = DC_IRQ_SOURCE_INVALID; break; default: + link->irq_source_hpd = DC_IRQ_SOURCE_INVALID; break; } } diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dc.h linux-6.2.0/drivers/gpu/drm/amd/display/dc/dc.h --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dc.h +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dc.h @@ -796,6 +796,7 @@ unsigned int force_odm_combine; //bit vector based on otg inst unsigned int seamless_boot_odm_combine; unsigned int force_odm_combine_4to1; //bit vector based on otg inst + int minimum_z8_residency_time; bool disable_z9_mpc; unsigned int force_fclk_khz; bool enable_tri_buf; diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c @@ -629,7 +629,8 @@ if (dc->clk_mgr->funcs->notify_wm_ranges) dc->clk_mgr->funcs->notify_wm_ranges(dc->clk_mgr); - if (dc->clk_mgr->funcs->set_hard_max_memclk) + //if softmax is enabled then hardmax will be set by a different call + if (dc->clk_mgr->funcs->set_hard_max_memclk && !dc->clk_mgr->dc_mode_softmax_enabled) dc->clk_mgr->funcs->set_hard_max_memclk(dc->clk_mgr); if (dc->res_pool->hubbub->funcs->force_pstate_change_control) diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.c @@ -392,6 +392,16 @@ pix_per_cycle); } +void dcn314_dpp_root_clock_control(struct dce_hwseq *hws, unsigned int dpp_inst, bool clock_on) +{ + if (!hws->ctx->dc->debug.root_clock_optimization.bits.dpp) + return; + + if (hws->ctx->dc->res_pool->dccg->funcs->dpp_root_clock_control) + hws->ctx->dc->res_pool->dccg->funcs->dpp_root_clock_control( + hws->ctx->dc->res_pool->dccg, dpp_inst, clock_on); +} + void dcn314_hubp_pg_control(struct dce_hwseq *hws, unsigned int hubp_inst, bool power_on) { struct dc_context *ctx = hws->ctx; diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.h linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.h --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.h +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_hwseq.h @@ -45,2 +45,4 @@ +void dcn314_dpp_root_clock_control(struct dce_hwseq *hws, unsigned int dpp_inst, bool clock_on); + #endif /* __DC_HWSS_DCN314_H__ */ diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_init.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_init.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_init.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_init.c @@ -137,6 +137,7 @@ .plane_atomic_disable = dcn20_plane_atomic_disable, .plane_atomic_power_down = dcn10_plane_atomic_power_down, .enable_power_gating_plane = dcn314_enable_power_gating_plane, + .dpp_root_clock_control = dcn314_dpp_root_clock_control, .hubp_pg_control = dcn314_hubp_pg_control, .program_all_writeback_pipes_in_tree = dcn30_program_all_writeback_pipes_in_tree, .update_odm = dcn314_update_odm, diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_resource.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_resource.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_resource.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_resource.c @@ -887,6 +887,7 @@ static const struct dc_debug_options debug_defaults_drv = { .disable_z10 = false, .enable_z9_disable_interface = true, + .minimum_z8_residency_time = 2000, .psr_skip_crtc_disable = true, .disable_dmcu = true, .force_abm_enable = false, diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_hwseq.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_hwseq.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_hwseq.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_hwseq.c @@ -975,7 +975,7 @@ if (dc->clk_mgr->funcs->notify_wm_ranges) dc->clk_mgr->funcs->notify_wm_ranges(dc->clk_mgr); - if (dc->clk_mgr->funcs->set_hard_max_memclk) + if (dc->clk_mgr->funcs->set_hard_max_memclk && !dc->clk_mgr->dc_mode_softmax_enabled) dc->clk_mgr->funcs->set_hard_max_memclk(dc->clk_mgr); if (dc->res_pool->hubbub->funcs->force_pstate_change_control) @@ -992,6 +992,7 @@ if (dc->ctx->dmub_srv) { dc_dmub_srv_query_caps_cmd(dc->ctx->dmub_srv->dmub); dc->caps.dmub_caps.psr = dc->ctx->dmub_srv->dmub->feature_caps.psr; + dc->caps.dmub_caps.mclk_sw = dc->ctx->dmub_srv->dmub->feature_caps.fw_assisted_mclk_switch; } } diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_resource.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_resource.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_resource.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_resource.c @@ -2021,7 +2021,7 @@ // In general cases we want to keep the dram clock change requirement // (prefer configs that support MCLK switch). Only override to false // for SubVP - if (subvp_in_use) + if (context->bw_ctx.bw.dcn.clk.fw_based_mclk_switching || subvp_in_use) context->bw_ctx.dml.soc.dram_clock_change_requirement_final = false; else context->bw_ctx.dml.soc.dram_clock_change_requirement_final = true; @@ -2077,6 +2077,14 @@ .restore_mall_state = dcn32_restore_mall_state, }; +static uint32_t read_pipe_fuses(struct dc_context *ctx) +{ + uint32_t value = REG_READ(CC_DC_PIPE_DIS); + /* DCN32 support max 4 pipes */ + value = value & 0xf; + return value; +} + static bool dcn32_resource_construct( uint8_t num_virtual_links, @@ -2119,7 +2127,7 @@ pool->base.res_cap = &res_cap_dcn32; /* max number of pipes for ASIC before checking for pipe fuses */ num_pipes = pool->base.res_cap->num_timing_generator; - pipe_fuses = REG_READ(CC_DC_PIPE_DIS); + pipe_fuses = read_pipe_fuses(ctx); for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) if (pipe_fuses & 1 << i) diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn321/dcn321_resource.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn321/dcn321_resource.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn321/dcn321_resource.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn321/dcn321_resource.c @@ -1626,6 +1626,14 @@ .restore_mall_state = dcn32_restore_mall_state, }; +static uint32_t read_pipe_fuses(struct dc_context *ctx) +{ + uint32_t value = REG_READ(CC_DC_PIPE_DIS); + /* DCN321 support max 4 pipes */ + value = value & 0xf; + return value; +} + static bool dcn321_resource_construct( uint8_t num_virtual_links, @@ -1668,7 +1676,7 @@ pool->base.res_cap = &res_cap_dcn321; /* max number of pipes for ASIC before checking for pipe fuses */ num_pipes = pool->base.res_cap->num_timing_generator; - pipe_fuses = REG_READ(CC_DC_PIPE_DIS); + pipe_fuses = read_pipe_fuses(ctx); for (i = 0; i < pool->base.res_cap->num_timing_generator; i++) if (pipe_fuses & 1 << i) diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/dcn30_fpu.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/dcn30_fpu.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/dcn30_fpu.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/dcn30_fpu.c @@ -368,7 +368,9 @@ dc_assert_fp_enabled(); if (dc->clk_mgr->bw_params->wm_table.nv_entries[WM_A].valid) { - context->bw_ctx.dml.soc.dram_clock_change_latency_us = dc->clk_mgr->bw_params->wm_table.nv_entries[WM_A].dml_input.pstate_latency_us; + if (!context->bw_ctx.bw.dcn.clk.fw_based_mclk_switching || + context->bw_ctx.dml.soc.dram_clock_change_latency_us == 0) + context->bw_ctx.dml.soc.dram_clock_change_latency_us = dc->clk_mgr->bw_params->wm_table.nv_entries[WM_A].dml_input.pstate_latency_us; context->bw_ctx.dml.soc.sr_enter_plus_exit_time_us = dc->clk_mgr->bw_params->wm_table.nv_entries[WM_A].dml_input.sr_enter_plus_exit_time_us; context->bw_ctx.dml.soc.sr_exit_time_us = dc->clk_mgr->bw_params->wm_table.nv_entries[WM_A].dml_input.sr_exit_time_us; } @@ -520,6 +522,20 @@ pipe_idx++; } + // WA: restrict FPO to use first non-strobe mode (NV24 BW issue) + if (context->bw_ctx.bw.dcn.clk.fw_based_mclk_switching && + dc->dml.soc.num_chans <= 4 && + context->bw_ctx.dml.vba.DRAMSpeed <= 1700 && + context->bw_ctx.dml.vba.DRAMSpeed >= 1500) { + + for (i = 0; i < dc->dml.soc.num_states; i++) { + if (dc->dml.soc.clock_limits[i].dram_speed_mts > 1700) { + context->bw_ctx.dml.vba.DRAMSpeed = dc->dml.soc.clock_limits[i].dram_speed_mts; + break; + } + } + } + dcn20_calculate_dlg_params(dc, context, pipes, pipe_cnt, vlevel); if (!pstate_en) diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c @@ -4866,7 +4866,7 @@ v->DETBufferSizeCThisState[k], &v->UrgentBurstFactorCursorPre[k], &v->UrgentBurstFactorLumaPre[k], - &v->UrgentBurstFactorChroma[k], + &v->UrgentBurstFactorChromaPre[k], &v->NoUrgentLatencyHidingPre[k]); } diff -u linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn321/dcn321_fpu.c linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn321/dcn321_fpu.c --- linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn321/dcn321_fpu.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn321/dcn321_fpu.c @@ -106,16 +106,16 @@ .clock_limits = { { .state = 0, - .dcfclk_mhz = 1564.0, - .fabricclk_mhz = 400.0, - .dispclk_mhz = 2150.0, - .dppclk_mhz = 2150.0, + .dcfclk_mhz = 1434.0, + .fabricclk_mhz = 2250.0, + .dispclk_mhz = 1720.0, + .dppclk_mhz = 1720.0, .phyclk_mhz = 810.0, .phyclk_d18_mhz = 667.0, - .phyclk_d32_mhz = 625.0, + .phyclk_d32_mhz = 313.0, .socclk_mhz = 1200.0, - .dscclk_mhz = 716.667, - .dram_speed_mts = 1600.0, + .dscclk_mhz = 573.333, + .dram_speed_mts = 16000.0, .dtbclk_mhz = 1564.0, }, }, @@ -125,14 +125,14 @@ .sr_exit_z8_time_us = 285.0, .sr_enter_plus_exit_z8_time_us = 320, .writeback_latency_us = 12.0, - .round_trip_ping_latency_dcfclk_cycles = 263, + .round_trip_ping_latency_dcfclk_cycles = 207, .urgent_latency_pixel_data_only_us = 4, .urgent_latency_pixel_mixed_with_vm_data_us = 4, .urgent_latency_vm_data_only_us = 4, - .fclk_change_latency_us = 20, - .usr_retraining_latency_us = 2, - .smn_latency_us = 2, - .mall_allocated_for_dcn_mbytes = 64, + .fclk_change_latency_us = 7, + .usr_retraining_latency_us = 0, + .smn_latency_us = 0, + .mall_allocated_for_dcn_mbytes = 32, .urgent_out_of_order_return_per_channel_pixel_only_bytes = 4096, .urgent_out_of_order_return_per_channel_pixel_and_vm_bytes = 4096, .urgent_out_of_order_return_per_channel_vm_only_bytes = 4096, diff -u linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c --- linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c @@ -723,6 +723,24 @@ return ret; } + /* + * Explicitly notify PMFW the power mode the system in. Since + * the PMFW may boot the ASIC with a different mode. + * For those supporting ACDC switch via gpio, PMFW will + * handle the switch automatically. Driver involvement + * is unnecessary. + */ + if (!smu->dc_controlled_by_gpio) { + ret = smu_set_power_source(smu, + adev->pm.ac_power ? SMU_POWER_SOURCE_AC : + SMU_POWER_SOURCE_DC); + if (ret) { + dev_err(adev->dev, "Failed to switch to %s mode!\n", + adev->pm.ac_power ? "AC" : "DC"); + return ret; + } + } + if ((adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 1)) || (adev->ip_versions[MP1_HWIP][0] == IP_VERSION(13, 0, 3))) return 0; diff -u linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/inc/smu_v13_0.h linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/inc/smu_v13_0.h --- linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/inc/smu_v13_0.h +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/inc/smu_v13_0.h @@ -304,4 +304,8 @@ uint32_t pptable_id); +int smu_v13_0_update_pcie_parameters(struct smu_context *smu, + uint32_t pcie_gen_cap, + uint32_t pcie_width_cap); + #endif #endif diff -u linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c --- linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c @@ -2072,28 +2072,36 @@ uint32_t pcie_width_cap) { struct smu_11_0_dpm_context *dpm_context = smu->smu_dpm.dpm_context; - - uint32_t smu_pcie_arg; - uint8_t *table_member1, *table_member2; + struct smu_11_0_pcie_table *pcie_table = &dpm_context->dpm_tables.pcie_table; + u32 smu_pcie_arg; int ret, i; - GET_PPTABLE_MEMBER(PcieGenSpeed, &table_member1); - GET_PPTABLE_MEMBER(PcieLaneCount, &table_member2); - - /* lclk dpm table setup */ - for (i = 0; i < MAX_PCIE_CONF; i++) { - dpm_context->dpm_tables.pcie_table.pcie_gen[i] = table_member1[i]; - dpm_context->dpm_tables.pcie_table.pcie_lane[i] = table_member2[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]; + + if (pcie_table->pcie_lane[NUM_LINK_LEVELS - 1] < pcie_width_cap) + pcie_width_cap = pcie_table->pcie_lane[NUM_LINK_LEVELS - 1]; + + /* 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; + } + } 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; + } } for (i = 0; i < NUM_LINK_LEVELS; i++) { - smu_pcie_arg = (i << 16) | - ((table_member1[i] <= pcie_gen_cap) ? - (table_member1[i] << 8) : - (pcie_gen_cap << 8)) | - ((table_member2[i] <= pcie_width_cap) ? - table_member2[i] : - pcie_width_cap); + smu_pcie_arg = (i << 16 | + pcie_table->pcie_gen[i] << 8 | + pcie_table->pcie_lane[i]); ret = smu_cmn_send_smc_msg_with_param(smu, SMU_MSG_OverridePcieParameters, @@ -2101,11 +2109,6 @@ NULL); if (ret) return ret; - - if (table_member1[i] > pcie_gen_cap) - dpm_context->dpm_tables.pcie_table.pcie_gen[i] = pcie_gen_cap; - if (table_member2[i] > pcie_width_cap) - dpm_context->dpm_tables.pcie_table.pcie_lane[i] = pcie_width_cap; } return 0; diff -u linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c --- linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c @@ -1216,37 +1216,6 @@ return ret; } -static int smu_v13_0_0_update_pcie_parameters(struct smu_context *smu, - uint32_t pcie_gen_cap, - uint32_t pcie_width_cap) -{ - struct smu_13_0_dpm_context *dpm_context = smu->smu_dpm.dpm_context; - struct smu_13_0_pcie_table *pcie_table = - &dpm_context->dpm_tables.pcie_table; - uint32_t smu_pcie_arg; - int ret, i; - - for (i = 0; i < pcie_table->num_of_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; - - smu_pcie_arg = i << 16; - smu_pcie_arg |= pcie_table->pcie_gen[i] << 8; - smu_pcie_arg |= pcie_table->pcie_lane[i]; - - ret = smu_cmn_send_smc_msg_with_param(smu, - SMU_MSG_OverridePcieParameters, - smu_pcie_arg, - NULL); - if (ret) - return ret; - } - - return 0; -} - static const struct smu_temperature_range smu13_thermal_policy[] = { {-273150, 99000, 99000, -273150, 99000, 99000, -273150, 99000, 99000}, { 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000}, @@ -2003,7 +1972,7 @@ .feature_is_enabled = smu_cmn_feature_is_enabled, .print_clk_levels = smu_v13_0_0_print_clk_levels, .force_clk_levels = smu_v13_0_0_force_clk_levels, - .update_pcie_parameters = smu_v13_0_0_update_pcie_parameters, + .update_pcie_parameters = smu_v13_0_update_pcie_parameters, .get_thermal_temperature_range = smu_v13_0_0_get_thermal_temperature_range, .register_irq_handler = smu_v13_0_register_irq_handler, .enable_thermal_alert = smu_v13_0_enable_thermal_alert, diff -u linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c --- linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c @@ -125,6 +125,7 @@ MSG_MAP(ArmD3, PPSMC_MSG_ArmD3, 0), MSG_MAP(AllowGpo, PPSMC_MSG_SetGpoAllow, 0), MSG_MAP(GetPptLimit, PPSMC_MSG_GetPptLimit, 0), + MSG_MAP(NotifyPowerSource, PPSMC_MSG_NotifyPowerSource, 0), }; static struct cmn2asic_mapping smu_v13_0_7_clk_map[SMU_CLK_COUNT] = { @@ -1224,37 +1225,6 @@ return ret; } -static int smu_v13_0_7_update_pcie_parameters(struct smu_context *smu, - uint32_t pcie_gen_cap, - uint32_t pcie_width_cap) -{ - struct smu_13_0_dpm_context *dpm_context = smu->smu_dpm.dpm_context; - struct smu_13_0_pcie_table *pcie_table = - &dpm_context->dpm_tables.pcie_table; - uint32_t smu_pcie_arg; - int ret, i; - - for (i = 0; i < pcie_table->num_of_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; - - smu_pcie_arg = i << 16; - smu_pcie_arg |= pcie_table->pcie_gen[i] << 8; - smu_pcie_arg |= pcie_table->pcie_lane[i]; - - ret = smu_cmn_send_smc_msg_with_param(smu, - SMU_MSG_OverridePcieParameters, - smu_pcie_arg, - NULL); - if (ret) - return ret; - } - - return 0; -} - static const struct smu_temperature_range smu13_thermal_policy[] = { {-273150, 99000, 99000, -273150, 99000, 99000, -273150, 99000, 99000}, @@ -1749,7 +1719,7 @@ .feature_is_enabled = smu_cmn_feature_is_enabled, .print_clk_levels = smu_v13_0_7_print_clk_levels, .force_clk_levels = smu_v13_0_7_force_clk_levels, - .update_pcie_parameters = smu_v13_0_7_update_pcie_parameters, + .update_pcie_parameters = smu_v13_0_update_pcie_parameters, .get_thermal_temperature_range = smu_v13_0_7_get_thermal_temperature_range, .register_irq_handler = smu_v13_0_register_irq_handler, .enable_thermal_alert = smu_v13_0_enable_thermal_alert, @@ -1768,6 +1738,7 @@ .enable_mgpu_fan_boost = smu_v13_0_7_enable_mgpu_fan_boost, .get_power_limit = smu_v13_0_7_get_power_limit, .set_power_limit = smu_v13_0_set_power_limit, + .set_power_source = smu_v13_0_set_power_source, .get_power_profile_mode = smu_v13_0_7_get_power_profile_mode, .set_power_profile_mode = smu_v13_0_7_set_power_profile_mode, .set_tool_table_location = smu_v13_0_set_tool_table_location, diff -u linux-6.2.0/drivers/gpu/drm/armada/armada_drv.c linux-6.2.0/drivers/gpu/drm/armada/armada_drv.c --- linux-6.2.0/drivers/gpu/drm/armada/armada_drv.c +++ linux-6.2.0/drivers/gpu/drm/armada/armada_drv.c @@ -95,7 +95,7 @@ } /* Remove early framebuffers */ - ret = drm_aperture_remove_framebuffers(false, &armada_drm_driver); + ret = drm_aperture_remove_framebuffers(&armada_drm_driver); if (ret) { dev_err(dev, "[" DRM_NAME ":%s] can't kick out simple-fb: %d\n", __func__, ret); diff -u linux-6.2.0/drivers/gpu/drm/bridge/lontium-lt8912b.c linux-6.2.0/drivers/gpu/drm/bridge/lontium-lt8912b.c --- linux-6.2.0/drivers/gpu/drm/bridge/lontium-lt8912b.c +++ linux-6.2.0/drivers/gpu/drm/bridge/lontium-lt8912b.c @@ -504,7 +504,6 @@ dsi->format = MIPI_DSI_FMT_RGB888; dsi->mode_flags = MIPI_DSI_MODE_VIDEO | - MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_NO_EOT_PACKET; diff -u linux-6.2.0/drivers/gpu/drm/drm_fb_helper.c linux-6.2.0/drivers/gpu/drm/drm_fb_helper.c --- linux-6.2.0/drivers/gpu/drm/drm_fb_helper.c +++ linux-6.2.0/drivers/gpu/drm/drm_fb_helper.c @@ -614,19 +614,27 @@ static void drm_fb_helper_memory_range_to_clip(struct fb_info *info, off_t off, size_t len, struct drm_rect *clip) { + u32 line_length = info->fix.line_length; + u32 fb_height = info->var.yres; off_t end = off + len; u32 x1 = 0; - u32 y1 = off / info->fix.line_length; + u32 y1 = off / line_length; u32 x2 = info->var.xres; - u32 y2 = DIV_ROUND_UP(end, info->fix.line_length); + u32 y2 = DIV_ROUND_UP(end, line_length); + + /* Don't allow any of them beyond the bottom bound of display area */ + if (y1 > fb_height) + y1 = fb_height; + if (y2 > fb_height) + y2 = fb_height; if ((y2 - y1) == 1) { /* * We've only written to a single scanline. Try to reduce * the number of horizontal pixels that need an update. */ - off_t bit_off = (off % info->fix.line_length) * 8; - off_t bit_end = (end % info->fix.line_length) * 8; + off_t bit_off = (off % line_length) * 8; + off_t bit_end = (end % line_length) * 8; x1 = bit_off / info->var.bits_per_pixel; x2 = DIV_ROUND_UP(bit_end, info->var.bits_per_pixel); diff -u linux-6.2.0/drivers/gpu/drm/drm_mipi_dsi.c linux-6.2.0/drivers/gpu/drm/drm_mipi_dsi.c --- linux-6.2.0/drivers/gpu/drm/drm_mipi_dsi.c +++ linux-6.2.0/drivers/gpu/drm/drm_mipi_dsi.c @@ -221,7 +221,7 @@ return dsi; } - dsi->dev.of_node = info->node; + device_set_node(&dsi->dev, of_fwnode_handle(info->node)); dsi->channel = info->channel; strlcpy(dsi->name, info->type, sizeof(dsi->name)); diff -u linux-6.2.0/drivers/gpu/drm/i915/Kconfig linux-6.2.0/drivers/gpu/drm/i915/Kconfig --- linux-6.2.0/drivers/gpu/drm/i915/Kconfig +++ linux-6.2.0/drivers/gpu/drm/i915/Kconfig @@ -54,23 +54,34 @@ If "M" is selected, the module will be called i915. config DRM_I915_FORCE_PROBE - string "Force probe driver for selected new Intel hardware" + string "Force probe i915 for selected Intel hardware IDs" depends on DRM_I915 help This is the default value for the i915.force_probe module parameter. Using the module parameter overrides this option. - Force probe the driver for new Intel graphics devices that are - recognized but not properly supported by this kernel version. It is - recommended to upgrade to a kernel version with proper support as soon - as it is available. + Force probe the i915 driver for Intel graphics devices that are + recognized but not properly supported by this kernel version. Force + probing an unsupported device taints the kernel. It is recommended to + upgrade to a kernel version with proper support as soon as it is + available. + + It can also be used to block the probe of recognized and fully + supported devices. Use "" to disable force probe. If in doubt, use this. - Use "[,,...]" to force probe the driver for listed + Use "[,,...]" to force probe the i915 for listed devices. For example, "4500" or "4500,4571". - Use "*" to force probe the driver for all known devices. + Use "*" to force probe the driver for all known devices. Not + recommended. + + Use "!" right before the ID to block the probe of the device. For + example, "4500,!4571" forces the probe of 4500 and blocks the probe of + 4571. + + Use "!*" to block the probe of the driver for all known devices. config DRM_I915_CAPTURE_ERROR bool "Enable capturing GPU state following a hang" diff -u linux-6.2.0/drivers/gpu/drm/i915/display/icl_dsi.c linux-6.2.0/drivers/gpu/drm/i915/display/icl_dsi.c --- linux-6.2.0/drivers/gpu/drm/i915/display/icl_dsi.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/icl_dsi.c @@ -1211,7 +1211,7 @@ /* panel power on related mipi dsi vbt sequences */ intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON); - intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay); + msleep(intel_dsi->panel_on_delay); intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_INIT_OTP); intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON); diff -u linux-6.2.0/drivers/gpu/drm/i915/display/intel_dp.c linux-6.2.0/drivers/gpu/drm/i915/display/intel_dp.c --- linux-6.2.0/drivers/gpu/drm/i915/display/intel_dp.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/intel_dp.c @@ -1510,6 +1510,11 @@ pipe_config->dsc.slice_count = drm_dp_dsc_sink_max_slice_count(intel_dp->dsc_dpcd, true); + if (!pipe_config->dsc.slice_count) { + drm_dbg_kms(&dev_priv->drm, "Unsupported Slice Count %d\n", + pipe_config->dsc.slice_count); + return -EINVAL; + } } else { u16 dsc_max_output_bpp; u8 dsc_dp_slice_count; diff -u linux-6.2.0/drivers/gpu/drm/i915/display/intel_panel.c linux-6.2.0/drivers/gpu/drm/i915/display/intel_panel.c --- linux-6.2.0/drivers/gpu/drm/i915/display/intel_panel.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/intel_panel.c @@ -39,6 +39,7 @@ #include "intel_drrs.h" #include "intel_panel.h" #include "intel_quirks.h" +#include "intel_vrr.h" bool intel_panel_use_ssc(struct drm_i915_private *i915) { @@ -55,6 +56,38 @@ struct drm_display_mode, head); } +static bool is_in_vrr_range(struct intel_connector *connector, int vrefresh) +{ + const struct drm_display_info *info = &connector->base.display_info; + + return intel_vrr_is_capable(connector) && + vrefresh >= info->monitor_range.min_vfreq && + vrefresh <= info->monitor_range.max_vfreq; +} + +static bool is_best_fixed_mode(struct intel_connector *connector, + int vrefresh, int fixed_mode_vrefresh, + const struct drm_display_mode *best_mode) +{ + /* we want to always return something */ + if (!best_mode) + return true; + + /* + * With VRR always pick a mode with equal/higher than requested + * vrefresh, which we can then reduce to match the requested + * vrefresh by extending the vblank length. + */ + if (is_in_vrr_range(connector, vrefresh) && + is_in_vrr_range(connector, fixed_mode_vrefresh) && + fixed_mode_vrefresh < vrefresh) + return false; + + /* pick the fixed_mode that is closest in terms of vrefresh */ + return abs(fixed_mode_vrefresh - vrefresh) < + abs(drm_mode_vrefresh(best_mode) - vrefresh); +} + const struct drm_display_mode * intel_panel_fixed_mode(struct intel_connector *connector, const struct drm_display_mode *mode) @@ -62,11 +95,11 @@ const struct drm_display_mode *fixed_mode, *best_mode = NULL; int vrefresh = drm_mode_vrefresh(mode); - /* pick the fixed_mode that is closest in terms of vrefresh */ list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) { - if (!best_mode || - abs(drm_mode_vrefresh(fixed_mode) - vrefresh) < - abs(drm_mode_vrefresh(best_mode) - vrefresh)) + int fixed_mode_vrefresh = drm_mode_vrefresh(fixed_mode); + + if (is_best_fixed_mode(connector, vrefresh, + fixed_mode_vrefresh, best_mode)) best_mode = fixed_mode; } @@ -175,27 +208,46 @@ { const struct drm_display_mode *fixed_mode = intel_panel_fixed_mode(connector, adjusted_mode); + int vrefresh, fixed_mode_vrefresh; + bool is_vrr; if (!fixed_mode) return 0; + vrefresh = drm_mode_vrefresh(adjusted_mode); + fixed_mode_vrefresh = drm_mode_vrefresh(fixed_mode); + /* - * We don't want to lie too much to the user about the refresh - * rate they're going to get. But we have to allow a bit of latitude - * for Xorg since it likes to automagically cook up modes with slightly - * off refresh rates. + * Assume that we shouldn't muck about with the + * timings if they don't land in the VRR range. */ - if (abs(drm_mode_vrefresh(adjusted_mode) - drm_mode_vrefresh(fixed_mode)) > 1) { - drm_dbg_kms(connector->base.dev, - "[CONNECTOR:%d:%s] Requested mode vrefresh (%d Hz) does not match fixed mode vrefresh (%d Hz)\n", - connector->base.base.id, connector->base.name, - drm_mode_vrefresh(adjusted_mode), drm_mode_vrefresh(fixed_mode)); + is_vrr = is_in_vrr_range(connector, vrefresh) && + is_in_vrr_range(connector, fixed_mode_vrefresh); - return -EINVAL; + if (!is_vrr) { + /* + * We don't want to lie too much to the user about the refresh + * rate they're going to get. But we have to allow a bit of latitude + * for Xorg since it likes to automagically cook up modes with slightly + * off refresh rates. + */ + if (abs(vrefresh - fixed_mode_vrefresh) > 1) { + drm_dbg_kms(connector->base.dev, + "[CONNECTOR:%d:%s] Requested mode vrefresh (%d Hz) does not match fixed mode vrefresh (%d Hz)\n", + connector->base.base.id, connector->base.name, + vrefresh, fixed_mode_vrefresh); + + return -EINVAL; + } } drm_mode_copy(adjusted_mode, fixed_mode); + if (is_vrr && fixed_mode_vrefresh != vrefresh) + adjusted_mode->vtotal = + DIV_ROUND_CLOSEST(adjusted_mode->clock * 1000, + adjusted_mode->htotal * vrefresh); + drm_mode_set_crtcinfo(adjusted_mode, 0); return 0; diff -u linux-6.2.0/drivers/gpu/drm/i915/display/vlv_dsi.c linux-6.2.0/drivers/gpu/drm/i915/display/vlv_dsi.c --- linux-6.2.0/drivers/gpu/drm/i915/display/vlv_dsi.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/vlv_dsi.c @@ -783,7 +783,6 @@ { struct intel_dsi *intel_dsi = enc_to_intel_dsi(encoder); struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc); - struct intel_connector *connector = to_intel_connector(conn_state->connector); struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); enum pipe pipe = crtc->pipe; enum port port; @@ -831,21 +830,10 @@ if (!IS_GEMINILAKE(dev_priv)) intel_dsi_prepare(encoder, pipe_config); + /* Give the panel time to power-on and then deassert its reset */ intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_ON); - - /* - * Give the panel time to power-on and then deassert its reset. - * Depending on the VBT MIPI sequences version the deassert-seq - * may contain the necessary delay, intel_dsi_msleep() will skip - * the delay in that case. If there is no deassert-seq, then an - * unconditional msleep is used to give the panel time to power-on. - */ - if (connector->panel.vbt.dsi.sequence[MIPI_SEQ_DEASSERT_RESET]) { - intel_dsi_msleep(intel_dsi, intel_dsi->panel_on_delay); - intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); - } else { - msleep(intel_dsi->panel_on_delay); - } + msleep(intel_dsi->panel_on_delay); + intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DEASSERT_RESET); if (IS_GEMINILAKE(dev_priv)) { glk_cold_boot = glk_dsi_enable_io(encoder); @@ -879,7 +867,7 @@ msleep(20); /* XXX */ for_each_dsi_port(port, intel_dsi->ports) dpi_send_cmd(intel_dsi, TURN_ON, false, port); - intel_dsi_msleep(intel_dsi, 100); + msleep(100); intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_DISPLAY_ON); @@ -1007,7 +995,7 @@ /* Assert reset */ intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_ASSERT_RESET); - intel_dsi_msleep(intel_dsi, intel_dsi->panel_off_delay); + msleep(intel_dsi->panel_off_delay); intel_dsi_vbt_exec_sequence(intel_dsi, MIPI_SEQ_POWER_OFF); intel_dsi->panel_power_off_time = ktime_get_boottime(); diff -u linux-6.2.0/drivers/gpu/drm/i915/gt/intel_gt_regs.h linux-6.2.0/drivers/gpu/drm/i915/gt/intel_gt_regs.h --- linux-6.2.0/drivers/gpu/drm/i915/gt/intel_gt_regs.h +++ linux-6.2.0/drivers/gpu/drm/i915/gt/intel_gt_regs.h @@ -1135,6 +1135,8 @@ #define ENABLE_SMALLPL REG_BIT(15) #define SC_DISABLE_POWER_OPTIMIZATION_EBB REG_BIT(9) #define GEN11_SAMPLER_ENABLE_HEADLESS_MSG REG_BIT(5) +#define MTL_DISABLE_SAMPLER_SC_OOO REG_BIT(3) +#define GEN11_INDIRECT_STATE_BASE_ADDR_OVERRIDE REG_BIT(0) #define GEN9_HALF_SLICE_CHICKEN7 MCR_REG(0xe194) #define DG2_DISABLE_ROUND_ENABLE_ALLOW_FOR_SSLA REG_BIT(15) @@ -1161,7 +1163,9 @@ #define THREAD_EX_ARB_MODE_RR_AFTER_DEP REG_FIELD_PREP(THREAD_EX_ARB_MODE, 0x2) #define HSW_ROW_CHICKEN3 _MMIO(0xe49c) +#define GEN9_ROW_CHICKEN3 MCR_REG(0xe49c) #define HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE (1 << 6) +#define MTL_DISABLE_FIX_FOR_EOT_FLUSH REG_BIT(9) #define GEN8_ROW_CHICKEN MCR_REG(0xe4f0) #define FLOW_CONTROL_ENABLE REG_BIT(15) diff -u linux-6.2.0/drivers/gpu/drm/i915/gt/intel_workarounds.c linux-6.2.0/drivers/gpu/drm/i915/gt/intel_workarounds.c --- linux-6.2.0/drivers/gpu/drm/i915/gt/intel_workarounds.c +++ linux-6.2.0/drivers/gpu/drm/i915/gt/intel_workarounds.c @@ -3035,6 +3035,39 @@ add_render_compute_tuning_settings(i915, wal); + if (GRAPHICS_VER(i915) >= 11) { + /* This is not a Wa (although referred to as + * WaSetInidrectStateOverride in places), this allows + * applications that reference sampler states through + * the BindlessSamplerStateBaseAddress to have their + * border color relative to DynamicStateBaseAddress + * rather than BindlessSamplerStateBaseAddress. + * + * Otherwise SAMPLER_STATE border colors have to be + * copied in multiple heaps (DynamicStateBaseAddress & + * BindlessSamplerStateBaseAddress) + * + * BSpec: 46052 + */ + wa_mcr_masked_en(wal, + GEN10_SAMPLER_MODE, + GEN11_INDIRECT_STATE_BASE_ADDR_OVERRIDE); + } + + if (IS_MTL_GRAPHICS_STEP(i915, M, STEP_B0, STEP_FOREVER) || + IS_MTL_GRAPHICS_STEP(i915, P, STEP_B0, STEP_FOREVER)) + /* Wa_14017856879 */ + wa_mcr_masked_en(wal, GEN9_ROW_CHICKEN3, MTL_DISABLE_FIX_FOR_EOT_FLUSH); + + if (IS_MTL_GRAPHICS_STEP(i915, M, STEP_A0, STEP_B0) || + IS_MTL_GRAPHICS_STEP(i915, P, STEP_A0, STEP_B0)) + /* + * Wa_14017066071 + * Wa_14017654203 + */ + wa_mcr_masked_en(wal, GEN10_SAMPLER_MODE, + MTL_DISABLE_SAMPLER_SC_OOO); + if (IS_MTL_GRAPHICS_STEP(i915, M, STEP_A0, STEP_B0) || IS_MTL_GRAPHICS_STEP(i915, P, STEP_A0, STEP_B0) || IS_PONTEVECCHIO(i915) || diff -u linux-6.2.0/drivers/gpu/drm/i915/gt/uc/intel_guc_capture.c linux-6.2.0/drivers/gpu/drm/i915/gt/uc/intel_guc_capture.c --- linux-6.2.0/drivers/gpu/drm/i915/gt/uc/intel_guc_capture.c +++ linux-6.2.0/drivers/gpu/drm/i915/gt/uc/intel_guc_capture.c @@ -30,12 +30,14 @@ { FORCEWAKE_MT, 0, 0, "FORCEWAKE" } #define COMMON_GEN9BASE_GLOBAL \ - { GEN8_FAULT_TLB_DATA0, 0, 0, "GEN8_FAULT_TLB_DATA0" }, \ - { GEN8_FAULT_TLB_DATA1, 0, 0, "GEN8_FAULT_TLB_DATA1" }, \ { ERROR_GEN6, 0, 0, "ERROR_GEN6" }, \ { DONE_REG, 0, 0, "DONE_REG" }, \ { HSW_GTT_CACHE_EN, 0, 0, "HSW_GTT_CACHE_EN" } +#define GEN9_GLOBAL \ + { GEN8_FAULT_TLB_DATA0, 0, 0, "GEN8_FAULT_TLB_DATA0" }, \ + { GEN8_FAULT_TLB_DATA1, 0, 0, "GEN8_FAULT_TLB_DATA1" } + #define COMMON_GEN12BASE_GLOBAL \ { GEN12_FAULT_TLB_DATA0, 0, 0, "GEN12_FAULT_TLB_DATA0" }, \ { GEN12_FAULT_TLB_DATA1, 0, 0, "GEN12_FAULT_TLB_DATA1" }, \ @@ -141,6 +143,7 @@ static const struct __guc_mmio_reg_descr default_global_regs[] = { COMMON_BASE_GLOBAL, COMMON_GEN9BASE_GLOBAL, + GEN9_GLOBAL, }; static const struct __guc_mmio_reg_descr default_rc_class_regs[] = { diff -u linux-6.2.0/drivers/gpu/drm/i915/i915_reg.h linux-6.2.0/drivers/gpu/drm/i915/i915_reg.h --- linux-6.2.0/drivers/gpu/drm/i915/i915_reg.h +++ linux-6.2.0/drivers/gpu/drm/i915/i915_reg.h @@ -7613,8 +7613,8 @@ #define _PLANE_CSC_RY_GY_1(pipe) _PIPE(pipe, _PLANE_CSC_RY_GY_1_A, \ _PLANE_CSC_RY_GY_1_B) -#define _PLANE_CSC_RY_GY_2(pipe) _PIPE(pipe, _PLANE_INPUT_CSC_RY_GY_2_A, \ - _PLANE_INPUT_CSC_RY_GY_2_B) +#define _PLANE_CSC_RY_GY_2(pipe) _PIPE(pipe, _PLANE_CSC_RY_GY_2_A, \ + _PLANE_CSC_RY_GY_2_B) #define PLANE_CSC_COEFF(pipe, plane, index) _MMIO_PLANE(plane, \ _PLANE_CSC_RY_GY_1(pipe) + (index) * 4, \ _PLANE_CSC_RY_GY_2(pipe) + (index) * 4) diff -u linux-6.2.0/drivers/gpu/drm/meson/meson_drv.c linux-6.2.0/drivers/gpu/drm/meson/meson_drv.c --- linux-6.2.0/drivers/gpu/drm/meson/meson_drv.c +++ linux-6.2.0/drivers/gpu/drm/meson/meson_drv.c @@ -285,7 +285,7 @@ * Remove early framebuffers (ie. simplefb). The framebuffer can be * located anywhere in RAM */ - ret = drm_aperture_remove_framebuffers(false, &meson_driver); + ret = drm_aperture_remove_framebuffers(&meson_driver); if (ret) goto free_drm; diff -u linux-6.2.0/drivers/gpu/drm/msm/adreno/adreno_device.c linux-6.2.0/drivers/gpu/drm/msm/adreno/adreno_device.c --- linux-6.2.0/drivers/gpu/drm/msm/adreno/adreno_device.c +++ linux-6.2.0/drivers/gpu/drm/msm/adreno/adreno_device.c @@ -440,20 +440,21 @@ ret = pm_runtime_get_sync(&pdev->dev); if (ret < 0) { - pm_runtime_put_sync(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); DRM_DEV_ERROR(dev->dev, "Couldn't power up the GPU: %d\n", ret); - return NULL; + goto err_disable_rpm; } mutex_lock(&gpu->lock); ret = msm_gpu_hw_init(gpu); mutex_unlock(&gpu->lock); - pm_runtime_put_autosuspend(&pdev->dev); if (ret) { DRM_DEV_ERROR(dev->dev, "gpu hw init failed: %d\n", ret); - return NULL; + goto err_put_rpm; } + pm_runtime_put_autosuspend(&pdev->dev); + #ifdef CONFIG_DEBUG_FS if (gpu->funcs->debugfs_init) { gpu->funcs->debugfs_init(gpu, dev->primary); @@ -462,6 +463,13 @@ #endif return gpu; + +err_put_rpm: + pm_runtime_put_sync_suspend(&pdev->dev); +err_disable_rpm: + pm_runtime_disable(&pdev->dev); + + return NULL; } static int find_chipid(struct device *dev, struct adreno_rev *rev) diff -u linux-6.2.0/drivers/gpu/drm/msm/msm_drv.c linux-6.2.0/drivers/gpu/drm/msm/msm_drv.c --- linux-6.2.0/drivers/gpu/drm/msm/msm_drv.c +++ linux-6.2.0/drivers/gpu/drm/msm/msm_drv.c @@ -50,6 +50,8 @@ #define MSM_VERSION_MINOR 9 #define MSM_VERSION_PATCHLEVEL 0 +static void msm_deinit_vram(struct drm_device *ddev); + static const struct drm_mode_config_funcs mode_config_funcs = { .fb_create = msm_framebuffer_create, .output_poll_changed = drm_fb_helper_output_poll_changed, @@ -241,7 +243,8 @@ msm_fbdev_free(ddev); #endif - msm_disp_snapshot_destroy(ddev); + if (kms) + msm_disp_snapshot_destroy(ddev); drm_mode_config_cleanup(ddev); @@ -249,19 +252,16 @@ drm_bridge_remove(priv->bridges[i]); priv->num_bridges = 0; - pm_runtime_get_sync(dev); - msm_irq_uninstall(ddev); - pm_runtime_put_sync(dev); + if (kms) { + pm_runtime_get_sync(dev); + msm_irq_uninstall(ddev); + pm_runtime_put_sync(dev); + } if (kms && kms->funcs) kms->funcs->destroy(kms); - if (priv->vram.paddr) { - unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING; - drm_mm_takedown(&priv->vram.mm); - dma_free_attrs(dev, priv->vram.size, NULL, - priv->vram.paddr, attrs); - } + msm_deinit_vram(ddev); component_unbind_all(dev, ddev); @@ -399,6 +399,19 @@ return ret; } +static void msm_deinit_vram(struct drm_device *ddev) +{ + struct msm_drm_private *priv = ddev->dev_private; + unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING; + + if (!priv->vram.paddr) + return; + + drm_mm_takedown(&priv->vram.mm); + dma_free_attrs(ddev->dev, priv->vram.size, NULL, priv->vram.paddr, + attrs); +} + static int msm_drm_init(struct device *dev, const struct drm_driver *drv) { struct msm_drm_private *priv = dev_get_drvdata(dev); @@ -418,6 +431,10 @@ priv->dev = ddev; priv->wq = alloc_ordered_workqueue("msm", 0); + if (!priv->wq) { + ret = -ENOMEM; + goto err_put_dev; + } INIT_LIST_HEAD(&priv->objects); mutex_init(&priv->obj_lock); @@ -440,12 +457,12 @@ ret = msm_init_vram(ddev); if (ret) - return ret; + goto err_cleanup_mode_config; /* Bind all our sub-components: */ ret = component_bind_all(dev, ddev); if (ret) - return ret; + goto err_deinit_vram; dma_set_max_seg_size(dev, UINT_MAX); @@ -540,6 +557,17 @@ err_msm_uninit: msm_drm_uninit(dev); + + return ret; + +err_deinit_vram: + msm_deinit_vram(ddev); +err_cleanup_mode_config: + drm_mode_config_cleanup(ddev); + destroy_workqueue(priv->wq); +err_put_dev: + drm_dev_put(ddev); + return ret; } diff -u linux-6.2.0/drivers/gpu/drm/msm/msm_gem_submit.c linux-6.2.0/drivers/gpu/drm/msm/msm_gem_submit.c --- linux-6.2.0/drivers/gpu/drm/msm/msm_gem_submit.c +++ linux-6.2.0/drivers/gpu/drm/msm/msm_gem_submit.c @@ -708,7 +708,7 @@ struct msm_drm_private *priv = dev->dev_private; struct drm_msm_gem_submit *args = data; struct msm_file_private *ctx = file->driver_priv; - struct msm_gem_submit *submit; + struct msm_gem_submit *submit = NULL; struct msm_gpu *gpu = priv->gpu; struct msm_gpu_submitqueue *queue; struct msm_ringbuffer *ring; @@ -755,13 +755,15 @@ out_fence_fd = get_unused_fd_flags(O_CLOEXEC); if (out_fence_fd < 0) { ret = out_fence_fd; - return ret; + goto out_post_unlock; } } submit = submit_create(dev, gpu, queue, args->nr_bos, args->nr_cmds); - if (IS_ERR(submit)) - return PTR_ERR(submit); + if (IS_ERR(submit)) { + ret = PTR_ERR(submit); + goto out_post_unlock; + } trace_msm_gpu_submit(pid_nr(submit->pid), ring->id, submit->ident, args->nr_bos, args->nr_cmds); @@ -944,11 +946,20 @@ if (has_ww_ticket) ww_acquire_fini(&submit->ticket); out_unlock: - if (ret && (out_fence_fd >= 0)) - put_unused_fd(out_fence_fd); mutex_unlock(&queue->lock); out_post_unlock: - msm_gem_submit_put(submit); + if (ret && (out_fence_fd >= 0)) + put_unused_fd(out_fence_fd); + + if (!IS_ERR_OR_NULL(submit)) { + msm_gem_submit_put(submit); + } else { + /* + * If the submit hasn't yet taken ownership of the queue + * then we need to drop the reference ourself: + */ + msm_submitqueue_put(queue); + } if (!IS_ERR_OR_NULL(post_deps)) { for (i = 0; i < args->nr_out_syncobjs; ++i) { kfree(post_deps[i].chain); diff -u linux-6.2.0/drivers/gpu/drm/sun4i/sun4i_drv.c linux-6.2.0/drivers/gpu/drm/sun4i/sun4i_drv.c --- linux-6.2.0/drivers/gpu/drm/sun4i/sun4i_drv.c +++ linux-6.2.0/drivers/gpu/drm/sun4i/sun4i_drv.c @@ -98,7 +98,7 @@ goto unbind_all; /* Remove early framebuffers (ie. simplefb) */ - ret = drm_aperture_remove_framebuffers(false, &sun4i_drv_driver); + ret = drm_aperture_remove_framebuffers(&sun4i_drv_driver); if (ret) goto unbind_all; diff -u linux-6.2.0/drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_desc.c linux-6.2.0/drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_desc.c --- linux-6.2.0/drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_desc.c +++ linux-6.2.0/drivers/hid/amd-sfh-hid/sfh1_1/amd_sfh_desc.c @@ -132,29 +132,45 @@ common->event_type = HID_USAGE_SENSOR_EVENT_DATA_UPDATED_ENUM; } -static int float_to_int(u32 float32) +static int float_to_int(u32 flt32_val) { int fraction, shift, mantissa, sign, exp, zeropre; - mantissa = float32 & GENMASK(22, 0); - sign = (float32 & BIT(31)) ? -1 : 1; - exp = (float32 & ~BIT(31)) >> 23; + mantissa = flt32_val & GENMASK(22, 0); + sign = (flt32_val & BIT(31)) ? -1 : 1; + exp = (flt32_val & ~BIT(31)) >> 23; if (!exp && !mantissa) return 0; + /* + * Calculate the exponent and fraction part of floating + * point representation. + */ exp -= 127; if (exp < 0) { exp = -exp; + if (exp >= BITS_PER_TYPE(u32)) + return 0; zeropre = (((BIT(23) + mantissa) * 100) >> 23) >> exp; return zeropre >= 50 ? sign : 0; } shift = 23 - exp; - float32 = BIT(exp) + (mantissa >> shift); - fraction = mantissa & GENMASK(shift - 1, 0); + if (abs(shift) >= BITS_PER_TYPE(u32)) + return 0; + + if (shift < 0) { + shift = -shift; + flt32_val = BIT(exp) + (mantissa << shift); + shift = 0; + } else { + flt32_val = BIT(exp) + (mantissa >> shift); + } + + fraction = (shift == 0) ? 0 : mantissa & GENMASK(shift - 1, 0); - return (((fraction * 100) >> shift) >= 50) ? sign * (float32 + 1) : sign * float32; + return (((fraction * 100) >> shift) >= 50) ? sign * (flt32_val + 1) : sign * flt32_val; } static u8 get_input_rep(u8 current_index, int sensor_idx, int report_id, diff -u linux-6.2.0/drivers/hid/hid-ids.h linux-6.2.0/drivers/hid/hid-ids.h --- linux-6.2.0/drivers/hid/hid-ids.h +++ linux-6.2.0/drivers/hid/hid-ids.h @@ -415,6 +415,7 @@ #define I2C_DEVICE_ID_HP_SPECTRE_X360_15 0x2817 #define I2C_DEVICE_ID_HP_SPECTRE_X360_13_AW0020NG 0x29DF #define I2C_DEVICE_ID_ASUS_TP420IA_TOUCHSCREEN 0x2BC8 +#define I2C_DEVICE_ID_ASUS_GV301RA_TOUCHSCREEN 0x2C82 #define USB_DEVICE_ID_ASUS_UX550VE_TOUCHSCREEN 0x2544 #define USB_DEVICE_ID_ASUS_UX550_TOUCHSCREEN 0x2706 #define I2C_DEVICE_ID_SURFACE_GO_TOUCHSCREEN 0x261A diff -u linux-6.2.0/drivers/hid/hid-input.c linux-6.2.0/drivers/hid/hid-input.c --- linux-6.2.0/drivers/hid/hid-input.c +++ linux-6.2.0/drivers/hid/hid-input.c @@ -372,6 +372,8 @@ HID_BATTERY_QUIRK_IGNORE }, { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, I2C_DEVICE_ID_ASUS_TP420IA_TOUCHSCREEN), HID_BATTERY_QUIRK_IGNORE }, + { HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, I2C_DEVICE_ID_ASUS_GV301RA_TOUCHSCREEN), + HID_BATTERY_QUIRK_IGNORE }, { HID_USB_DEVICE(USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ASUS_UX550_TOUCHSCREEN), HID_BATTERY_QUIRK_IGNORE }, { HID_USB_DEVICE(USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ASUS_UX550VE_TOUCHSCREEN), diff -u linux-6.2.0/drivers/hid/hid-logitech-hidpp.c linux-6.2.0/drivers/hid/hid-logitech-hidpp.c --- linux-6.2.0/drivers/hid/hid-logitech-hidpp.c +++ linux-6.2.0/drivers/hid/hid-logitech-hidpp.c @@ -838,8 +838,7 @@ if (ret) return ret; - snprintf(hdev->uniq, sizeof(hdev->uniq), "%04x-%4phD", - hdev->product, &serial); + snprintf(hdev->uniq, sizeof(hdev->uniq), "%4phD", &serial); dbg_hid("HID++ Unifying: Got serial: %s\n", hdev->uniq); name = hidpp_unifying_get_name(hidpp); @@ -933,6 +932,54 @@ } /* -------------------------------------------------------------------------- */ +/* 0x0003: Device Information */ +/* -------------------------------------------------------------------------- */ + +#define HIDPP_PAGE_DEVICE_INFORMATION 0x0003 + +#define CMD_GET_DEVICE_INFO 0x00 + +static int hidpp_get_serial(struct hidpp_device *hidpp, u32 *serial) +{ + struct hidpp_report response; + u8 feature_type; + u8 feature_index; + int ret; + + ret = hidpp_root_get_feature(hidpp, HIDPP_PAGE_DEVICE_INFORMATION, + &feature_index, + &feature_type); + if (ret) + return ret; + + ret = hidpp_send_fap_command_sync(hidpp, feature_index, + CMD_GET_DEVICE_INFO, + NULL, 0, &response); + if (ret) + return ret; + + /* See hidpp_unifying_get_serial() */ + *serial = *((u32 *)&response.rap.params[1]); + return 0; +} + +static int hidpp_serial_init(struct hidpp_device *hidpp) +{ + struct hid_device *hdev = hidpp->hid_dev; + u32 serial; + int ret; + + ret = hidpp_get_serial(hidpp, &serial); + if (ret) + return ret; + + snprintf(hdev->uniq, sizeof(hdev->uniq), "%4phD", &serial); + dbg_hid("HID++ DeviceInformation: Got serial: %s\n", hdev->uniq); + + return 0; +} + +/* -------------------------------------------------------------------------- */ /* 0x0005: GetDeviceNameType */ /* -------------------------------------------------------------------------- */ @@ -4194,6 +4241,8 @@ if (hidpp->quirks & HIDPP_QUIRK_UNIFYING) hidpp_unifying_init(hidpp); + else if (hid_is_usb(hidpp->hid_dev)) + hidpp_serial_init(hidpp); connected = hidpp_root_get_protocol_version(hidpp) == 0; atomic_set(&hidpp->connected, connected); diff -u linux-6.2.0/drivers/infiniband/sw/rxe/rxe.c linux-6.2.0/drivers/infiniband/sw/rxe/rxe.c --- linux-6.2.0/drivers/infiniband/sw/rxe/rxe.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe.c @@ -160,6 +160,8 @@ port->attr.active_mtu = mtu; port->mtu_cap = ib_mtu_enum_to_int(mtu); + + rxe_info_dev(rxe, "Set mtu to %d", port->mtu_cap); } /* called by ifc layer to create new rxe device. @@ -179,7 +181,7 @@ int err = 0; if (is_vlan_dev(ndev)) { - pr_err("rxe creation allowed on top of a real device only\n"); + rxe_err("rxe creation allowed on top of a real device only"); err = -EPERM; goto err; } @@ -187,14 +189,14 @@ rxe = rxe_get_dev_from_net(ndev); if (rxe) { ib_device_put(&rxe->ib_dev); - rxe_dbg(rxe, "already configured on %s\n", ndev->name); + rxe_err_dev(rxe, "already configured on %s", ndev->name); err = -EEXIST; goto err; } err = rxe_net_add(ibdev_name, ndev); if (err) { - pr_debug("failed to add %s\n", ndev->name); + rxe_err("failed to add %s\n", ndev->name); goto err; } err: diff -u linux-6.2.0/drivers/infiniband/sw/rxe/rxe.h linux-6.2.0/drivers/infiniband/sw/rxe/rxe.h --- linux-6.2.0/drivers/infiniband/sw/rxe/rxe.h +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe.h @@ -38,7 +38,8 @@ #define RXE_ROCE_V2_SPORT (0xc000) -#define rxe_dbg(rxe, fmt, ...) ibdev_dbg(&(rxe)->ib_dev, \ +#define rxe_dbg(fmt, ...) pr_debug("%s: " fmt "\n", __func__, ##__VA_ARGS__) +#define rxe_dbg_dev(rxe, fmt, ...) ibdev_dbg(&(rxe)->ib_dev, \ "%s: " fmt, __func__, ##__VA_ARGS__) #define rxe_dbg_uc(uc, fmt, ...) ibdev_dbg((uc)->ibuc.device, \ "uc#%d %s: " fmt, (uc)->elem.index, __func__, ##__VA_ARGS__) @@ -57,6 +58,48 @@ #define rxe_dbg_mw(mw, fmt, ...) ibdev_dbg((mw)->ibmw.device, \ "mw#%d %s: " fmt, (mw)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err(fmt, ...) pr_err_ratelimited("%s: " fmt "\n", __func__, \ + ##__VA_ARGS__) +#define rxe_err_dev(rxe, fmt, ...) ibdev_err_ratelimited(&(rxe)->ib_dev, \ + "%s: " fmt, __func__, ##__VA_ARGS__) +#define rxe_err_uc(uc, fmt, ...) ibdev_err_ratelimited((uc)->ibuc.device, \ + "uc#%d %s: " fmt, (uc)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_pd(pd, fmt, ...) ibdev_err_ratelimited((pd)->ibpd.device, \ + "pd#%d %s: " fmt, (pd)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_ah(ah, fmt, ...) ibdev_err_ratelimited((ah)->ibah.device, \ + "ah#%d %s: " fmt, (ah)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_srq(srq, fmt, ...) ibdev_err_ratelimited((srq)->ibsrq.device, \ + "srq#%d %s: " fmt, (srq)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_qp(qp, fmt, ...) ibdev_err_ratelimited((qp)->ibqp.device, \ + "qp#%d %s: " fmt, (qp)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_cq(cq, fmt, ...) ibdev_err_ratelimited((cq)->ibcq.device, \ + "cq#%d %s: " fmt, (cq)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_mr(mr, fmt, ...) ibdev_err_ratelimited((mr)->ibmr.device, \ + "mr#%d %s: " fmt, (mr)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_err_mw(mw, fmt, ...) ibdev_err_ratelimited((mw)->ibmw.device, \ + "mw#%d %s: " fmt, (mw)->elem.index, __func__, ##__VA_ARGS__) + +#define rxe_info(fmt, ...) pr_info_ratelimited("%s: " fmt "\n", __func__, \ + ##__VA_ARGS__) +#define rxe_info_dev(rxe, fmt, ...) ibdev_info_ratelimited(&(rxe)->ib_dev, \ + "%s: " fmt, __func__, ##__VA_ARGS__) +#define rxe_info_uc(uc, fmt, ...) ibdev_info_ratelimited((uc)->ibuc.device, \ + "uc#%d %s: " fmt, (uc)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_pd(pd, fmt, ...) ibdev_info_ratelimited((pd)->ibpd.device, \ + "pd#%d %s: " fmt, (pd)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_ah(ah, fmt, ...) ibdev_info_ratelimited((ah)->ibah.device, \ + "ah#%d %s: " fmt, (ah)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_srq(srq, fmt, ...) ibdev_info_ratelimited((srq)->ibsrq.device, \ + "srq#%d %s: " fmt, (srq)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_qp(qp, fmt, ...) ibdev_info_ratelimited((qp)->ibqp.device, \ + "qp#%d %s: " fmt, (qp)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_cq(cq, fmt, ...) ibdev_info_ratelimited((cq)->ibcq.device, \ + "cq#%d %s: " fmt, (cq)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_mr(mr, fmt, ...) ibdev_info_ratelimited((mr)->ibmr.device, \ + "mr#%d %s: " fmt, (mr)->elem.index, __func__, ##__VA_ARGS__) +#define rxe_info_mw(mw, fmt, ...) ibdev_info_ratelimited((mw)->ibmw.device, \ + "mw#%d %s: " fmt, (mw)->elem.index, __func__, ##__VA_ARGS__) + /* responder states */ enum resp_states { RESPST_NONE, diff -u linux-6.2.0/drivers/infiniband/sw/rxe/rxe_cq.c linux-6.2.0/drivers/infiniband/sw/rxe/rxe_cq.c --- linux-6.2.0/drivers/infiniband/sw/rxe/rxe_cq.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_cq.c @@ -14,12 +14,12 @@ int count; if (cqe <= 0) { - rxe_dbg(rxe, "cqe(%d) <= 0\n", cqe); + rxe_dbg_dev(rxe, "cqe(%d) <= 0\n", cqe); goto err1; } if (cqe > rxe->attr.max_cqe) { - rxe_dbg(rxe, "cqe(%d) > max_cqe(%d)\n", + rxe_dbg_dev(rxe, "cqe(%d) > max_cqe(%d)\n", cqe, rxe->attr.max_cqe); goto err1; } @@ -50,7 +50,7 @@ cq->queue = rxe_queue_init(rxe, &cqe, sizeof(struct rxe_cqe), type); if (!cq->queue) { - rxe_dbg(rxe, "unable to create cq\n"); + rxe_dbg_dev(rxe, "unable to create cq\n"); return -ENOMEM; } diff -u linux-6.2.0/drivers/infiniband/sw/rxe/rxe_mr.c linux-6.2.0/drivers/infiniband/sw/rxe/rxe_mr.c --- linux-6.2.0/drivers/infiniband/sw/rxe/rxe_mr.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_mr.c @@ -731,7 +731,7 @@ return -EINVAL; rxe_cleanup(mr); - + kfree_rcu(mr); return 0; } diff -u linux-6.2.0/drivers/infiniband/sw/rxe/rxe_qp.c linux-6.2.0/drivers/infiniband/sw/rxe/rxe_qp.c --- linux-6.2.0/drivers/infiniband/sw/rxe/rxe_qp.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_qp.c @@ -19,33 +19,33 @@ int has_srq) { if (cap->max_send_wr > rxe->attr.max_qp_wr) { - rxe_dbg(rxe, "invalid send wr = %u > %d\n", + rxe_dbg_dev(rxe, "invalid send wr = %u > %d\n", cap->max_send_wr, rxe->attr.max_qp_wr); goto err1; } if (cap->max_send_sge > rxe->attr.max_send_sge) { - rxe_dbg(rxe, "invalid send sge = %u > %d\n", + rxe_dbg_dev(rxe, "invalid send sge = %u > %d\n", cap->max_send_sge, rxe->attr.max_send_sge); goto err1; } if (!has_srq) { if (cap->max_recv_wr > rxe->attr.max_qp_wr) { - rxe_dbg(rxe, "invalid recv wr = %u > %d\n", + rxe_dbg_dev(rxe, "invalid recv wr = %u > %d\n", cap->max_recv_wr, rxe->attr.max_qp_wr); goto err1; } if (cap->max_recv_sge > rxe->attr.max_recv_sge) { - rxe_dbg(rxe, "invalid recv sge = %u > %d\n", + rxe_dbg_dev(rxe, "invalid recv sge = %u > %d\n", cap->max_recv_sge, rxe->attr.max_recv_sge); goto err1; } } if (cap->max_inline_data > rxe->max_inline_data) { - rxe_dbg(rxe, "invalid max inline data = %u > %d\n", + rxe_dbg_dev(rxe, "invalid max inline data = %u > %d\n", cap->max_inline_data, rxe->max_inline_data); goto err1; } @@ -73,7 +73,7 @@ } if (!init->recv_cq || !init->send_cq) { - rxe_dbg(rxe, "missing cq\n"); + rxe_dbg_dev(rxe, "missing cq\n"); goto err1; } @@ -82,14 +82,14 @@ if (init->qp_type == IB_QPT_GSI) { if (!rdma_is_port_valid(&rxe->ib_dev, port_num)) { - rxe_dbg(rxe, "invalid port = %d\n", port_num); + rxe_dbg_dev(rxe, "invalid port = %d\n", port_num); goto err1; } port = &rxe->port; if (init->qp_type == IB_QPT_GSI && port->qp_gsi_index) { - rxe_dbg(rxe, "GSI QP exists for port %d\n", port_num); + rxe_dbg_dev(rxe, "GSI QP exists for port %d\n", port_num); goto err1; } } diff -u linux-6.2.0/drivers/infiniband/sw/rxe/rxe_verbs.c linux-6.2.0/drivers/infiniband/sw/rxe/rxe_verbs.c --- linux-6.2.0/drivers/infiniband/sw/rxe/rxe_verbs.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_verbs.c @@ -867,10 +867,17 @@ struct rxe_dev *rxe = to_rdev(ibpd->device); struct rxe_pd *pd = to_rpd(ibpd); struct rxe_mr *mr; + int err; - mr = rxe_alloc(&rxe->mr_pool); - if (!mr) - return ERR_PTR(-ENOMEM); + mr = kzalloc(sizeof(*mr), GFP_KERNEL); + if (!mr) { + err = -ENOMEM; + goto err_out; + } + + err = rxe_add_to_pool(&rxe->mr_pool, mr); + if (err) + goto err_free; rxe_get(pd); mr->ibmr.pd = ibpd; @@ -878,8 +885,12 @@ rxe_mr_init_dma(access, mr); rxe_finalize(mr); - return &mr->ibmr; + +err_free: + kfree(mr); +err_out: + return ERR_PTR(err); } static struct ib_mr *rxe_reg_user_mr(struct ib_pd *ibpd, @@ -893,9 +904,15 @@ struct rxe_pd *pd = to_rpd(ibpd); struct rxe_mr *mr; - mr = rxe_alloc(&rxe->mr_pool); - if (!mr) - return ERR_PTR(-ENOMEM); + mr = kzalloc(sizeof(*mr), GFP_KERNEL); + if (!mr) { + err = -ENOMEM; + goto err_out; + } + + err = rxe_add_to_pool(&rxe->mr_pool, mr); + if (err) + goto err_free; rxe_get(pd); mr->ibmr.pd = ibpd; @@ -903,14 +920,16 @@ err = rxe_mr_init_user(rxe, start, length, iova, access, mr); if (err) - goto err1; + goto err_cleanup; rxe_finalize(mr); - return &mr->ibmr; -err1: +err_cleanup: rxe_cleanup(mr); +err_free: + kfree(mr); +err_out: return ERR_PTR(err); } @@ -925,9 +944,15 @@ if (mr_type != IB_MR_TYPE_MEM_REG) return ERR_PTR(-EINVAL); - mr = rxe_alloc(&rxe->mr_pool); - if (!mr) - return ERR_PTR(-ENOMEM); + mr = kzalloc(sizeof(*mr), GFP_KERNEL); + if (!mr) { + err = -ENOMEM; + goto err_out; + } + + err = rxe_add_to_pool(&rxe->mr_pool, mr); + if (err) + goto err_free; rxe_get(pd); mr->ibmr.pd = ibpd; @@ -935,14 +960,16 @@ err = rxe_mr_init_fast(max_num_sg, mr); if (err) - goto err1; + goto err_cleanup; rxe_finalize(mr); - return &mr->ibmr; -err1: +err_cleanup: rxe_cleanup(mr); +err_free: + kfree(mr); +err_out: return ERR_PTR(err); } @@ -1066,7 +1093,7 @@ err = ib_register_device(dev, ibdev_name, NULL); if (err) - rxe_dbg(rxe, "failed with error %d\n", err); + rxe_dbg_dev(rxe, "failed with error %d\n", err); /* * Note that rxe may be invalid at this point if another thread diff -u linux-6.2.0/drivers/mailbox/zynqmp-ipi-mailbox.c linux-6.2.0/drivers/mailbox/zynqmp-ipi-mailbox.c --- linux-6.2.0/drivers/mailbox/zynqmp-ipi-mailbox.c +++ linux-6.2.0/drivers/mailbox/zynqmp-ipi-mailbox.c @@ -110,7 +110,7 @@ unsigned int method; u32 local_id; int num_mboxes; - struct zynqmp_ipi_mbox *ipi_mboxes; + struct zynqmp_ipi_mbox ipi_mboxes[]; }; static struct device_driver zynqmp_ipi_mbox_driver = { @@ -634,8 +634,13 @@ struct zynqmp_ipi_mbox *mbox; int num_mboxes, ret = -EINVAL; - num_mboxes = of_get_child_count(np); - pdata = devm_kzalloc(dev, sizeof(*pdata) + (num_mboxes * sizeof(*mbox)), + num_mboxes = of_get_available_child_count(np); + if (num_mboxes == 0) { + dev_err(dev, "mailbox nodes not available\n"); + return -EINVAL; + } + + pdata = devm_kzalloc(dev, struct_size(pdata, ipi_mboxes, num_mboxes), GFP_KERNEL); if (!pdata) return -ENOMEM; @@ -649,8 +654,6 @@ } pdata->num_mboxes = num_mboxes; - pdata->ipi_mboxes = (struct zynqmp_ipi_mbox *) - ((char *)pdata + sizeof(*pdata)); mbox = pdata->ipi_mboxes; for_each_available_child_of_node(np, nc) { diff -u linux-6.2.0/drivers/md/md.c linux-6.2.0/drivers/md/md.c --- linux-6.2.0/drivers/md/md.c +++ linux-6.2.0/drivers/md/md.c @@ -8019,16 +8019,16 @@ } else if (resync > max_sectors) { resync = max_sectors; } else { - resync -= atomic_read(&mddev->recovery_active); - if (resync < MD_RESYNC_ACTIVE) { - /* - * Resync has started, but the subtraction has - * yielded one of the special values. Force it - * to active to ensure the status reports an - * active resync. - */ + res = atomic_read(&mddev->recovery_active); + /* + * Resync has started, but the subtraction has overflowed or + * yielded one of the special values. Force it to active to + * ensure the status reports an active resync. + */ + if (resync < res || resync - res < MD_RESYNC_ACTIVE) resync = MD_RESYNC_ACTIVE; - } + else + resync -= res; } if (resync == MD_RESYNC_NONE) { diff -u linux-6.2.0/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c linux-6.2.0/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c --- linux-6.2.0/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c +++ linux-6.2.0/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c @@ -735,6 +735,13 @@ } if (*nplanes) { + if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) { + if (*nplanes != q_data->fmt->num_planes) + return -EINVAL; + } else { + if (*nplanes != 1) + return -EINVAL; + } for (i = 0; i < *nplanes; i++) { if (sizes[i] < q_data->sizeimage[i]) return -EINVAL; diff -u linux-6.2.0/drivers/mtd/spi-nor/core.c linux-6.2.0/drivers/mtd/spi-nor/core.c --- linux-6.2.0/drivers/mtd/spi-nor/core.c +++ linux-6.2.0/drivers/mtd/spi-nor/core.c @@ -2471,6 +2471,9 @@ if (flags & NO_CHIP_ERASE) nor->flags |= SNOR_F_NO_OP_CHIP_ERASE; + + if (flags & SPI_NOR_RWW) + nor->flags |= SNOR_F_RWW; } /** @@ -2980,6 +2983,9 @@ mtd->name = dev_name(dev); mtd->type = MTD_NORFLASH; mtd->flags = MTD_CAP_NORFLASH; + /* Unset BIT_WRITEABLE to enable JFFS2 write buffer for ECC'd NOR */ + if (nor->flags & SNOR_F_ECC) + mtd->flags &= ~MTD_BIT_WRITEABLE; if (nor->info->flags & SPI_NOR_NO_ERASE) mtd->flags |= MTD_NO_ERASE; else diff -u linux-6.2.0/drivers/mtd/spi-nor/core.h linux-6.2.0/drivers/mtd/spi-nor/core.h --- linux-6.2.0/drivers/mtd/spi-nor/core.h +++ linux-6.2.0/drivers/mtd/spi-nor/core.h @@ -130,6 +130,8 @@ SNOR_F_IO_MODE_EN_VOLATILE = BIT(11), SNOR_F_SOFT_RESET = BIT(12), SNOR_F_SWP_IS_VOLATILE = BIT(13), + SNOR_F_RWW = BIT(14), + SNOR_F_ECC = BIT(15), }; struct spi_nor_read_command { @@ -459,6 +461,7 @@ * NO_CHIP_ERASE: chip does not support chip erase. * SPI_NOR_NO_FR: can't do fastread. * SPI_NOR_QUAD_PP: flash supports Quad Input Page Program. + * SPI_NOR_RWW: flash supports reads while write. * * @no_sfdp_flags: flags that indicate support that can be discovered via SFDP. * Used when SFDP tables are not defined in the flash. These @@ -509,6 +512,7 @@ #define NO_CHIP_ERASE BIT(7) #define SPI_NOR_NO_FR BIT(8) #define SPI_NOR_QUAD_PP BIT(9) +#define SPI_NOR_RWW BIT(10) u8 no_sfdp_flags; #define SPI_NOR_SKIP_SFDP BIT(0) diff -u linux-6.2.0/drivers/mtd/spi-nor/debugfs.c linux-6.2.0/drivers/mtd/spi-nor/debugfs.c --- linux-6.2.0/drivers/mtd/spi-nor/debugfs.c +++ linux-6.2.0/drivers/mtd/spi-nor/debugfs.c @@ -25,6 +25,8 @@ SNOR_F_NAME(IO_MODE_EN_VOLATILE), SNOR_F_NAME(SOFT_RESET), SNOR_F_NAME(SWP_IS_VOLATILE), + SNOR_F_NAME(RWW), + SNOR_F_NAME(ECC), }; #undef SNOR_F_NAME diff -u linux-6.2.0/drivers/mtd/spi-nor/spansion.c linux-6.2.0/drivers/mtd/spi-nor/spansion.c --- linux-6.2.0/drivers/mtd/spi-nor/spansion.c +++ linux-6.2.0/drivers/mtd/spi-nor/spansion.c @@ -218,6 +218,17 @@ return 0; } +static void cypress_nor_ecc_init(struct spi_nor *nor) +{ + /* + * Programming is supported only in 16-byte ECC data unit granularity. + * Byte-programming, bit-walking, or multiple program operations to the + * same ECC data unit without an erase are not allowed. + */ + nor->params->writesize = 16; + nor->flags |= SNOR_F_ECC; +} + static int s25hx_t_post_bfpt_fixup(struct spi_nor *nor, const struct sfdp_parameter_header *bfpt_header, @@ -255,13 +266,10 @@ static void s25hx_t_late_init(struct spi_nor *nor) { - struct spi_nor_flash_parameter *params = nor->params; - /* Fast Read 4B requires mode cycles */ - params->reads[SNOR_CMD_READ_FAST].num_mode_clocks = 8; + nor->params->reads[SNOR_CMD_READ_FAST].num_mode_clocks = 8; - /* The writesize should be ECC data unit size */ - params->writesize = 16; + cypress_nor_ecc_init(nor); } static struct spi_nor_fixups s25hx_t_fixups = { @@ -324,7 +332,7 @@ static void s28hx_t_late_init(struct spi_nor *nor) { nor->params->octal_dtr_enable = cypress_nor_octal_dtr_enable; - nor->params->writesize = 16; + cypress_nor_ecc_init(nor); } static const struct spi_nor_fixups s28hx_t_fixups = { diff -u linux-6.2.0/drivers/net/bonding/bond_main.c linux-6.2.0/drivers/net/bonding/bond_main.c --- linux-6.2.0/drivers/net/bonding/bond_main.c +++ linux-6.2.0/drivers/net/bonding/bond_main.c @@ -3922,7 +3922,11 @@ unblock_netpoll_tx(); break; case NETDEV_FEAT_CHANGE: - bond_compute_features(bond); + if (!bond->notifier_ctx) { + bond->notifier_ctx = true; + bond_compute_features(bond); + bond->notifier_ctx = false; + } break; case NETDEV_RESEND_IGMP: /* Propagate to master device */ @@ -6281,6 +6285,8 @@ if (!bond->wq) return -ENOMEM; + bond->notifier_ctx = false; + spin_lock_init(&bond->stats_lock); netdev_lockdep_set_classes(bond_dev); diff -u linux-6.2.0/drivers/net/dsa/mt7530.c linux-6.2.0/drivers/net/dsa/mt7530.c --- linux-6.2.0/drivers/net/dsa/mt7530.c +++ linux-6.2.0/drivers/net/dsa/mt7530.c @@ -446,9 +446,9 @@ else ssc_delta = 0x87; if (priv->id == ID_MT7621) { - /* PLL frequency: 150MHz: 1.2GBit */ + /* PLL frequency: 125MHz: 1.0GBit */ if (xtal == HWTRAP_XTAL_40MHZ) - ncpo1 = 0x0780; + ncpo1 = 0x0640; if (xtal == HWTRAP_XTAL_25MHZ) ncpo1 = 0x0a00; } else { /* PLL frequency: 250MHz: 2.0Gbit */ @@ -1015,9 +1015,9 @@ mt7530_write(priv, MT7530_PVC_P(port), PORT_SPEC_TAG); - /* Disable flooding by default */ - mt7530_rmw(priv, MT7530_MFC, BC_FFP_MASK | UNM_FFP_MASK | UNU_FFP_MASK, - BC_FFP(BIT(port)) | UNM_FFP(BIT(port)) | UNU_FFP(BIT(port))); + /* Enable flooding on the CPU port */ + mt7530_set(priv, MT7530_MFC, BC_FFP(BIT(port)) | UNM_FFP(BIT(port)) | + UNU_FFP(BIT(port))); /* Set CPU port number */ if (priv->id == ID_MT7621) @@ -2313,11 +2313,68 @@ } static int +mt7531_setup_common(struct dsa_switch *ds) +{ + struct mt7530_priv *priv = ds->priv; + struct dsa_port *cpu_dp; + int ret, i; + + /* BPDU to CPU port */ + dsa_switch_for_each_cpu_port(cpu_dp, ds) { + mt7530_rmw(priv, MT7531_CFC, MT7531_CPU_PMAP_MASK, + BIT(cpu_dp->index)); + break; + } + mt7530_rmw(priv, MT753X_BPC, MT753X_BPDU_PORT_FW_MASK, + MT753X_BPDU_CPU_ONLY); + + /* Enable and reset MIB counters */ + mt7530_mib_reset(ds); + + /* Disable flooding on all ports */ + mt7530_clear(priv, MT7530_MFC, BC_FFP_MASK | UNM_FFP_MASK | + UNU_FFP_MASK); + + for (i = 0; i < MT7530_NUM_PORTS; i++) { + /* Disable forwarding by default on all ports */ + mt7530_rmw(priv, MT7530_PCR_P(i), PCR_MATRIX_MASK, + PCR_MATRIX_CLR); + + /* Disable learning by default on all ports */ + mt7530_set(priv, MT7530_PSC_P(i), SA_DIS); + + mt7530_set(priv, MT7531_DBG_CNT(i), MT7531_DIS_CLR); + + if (dsa_is_cpu_port(ds, i)) { + ret = mt753x_cpu_port_enable(ds, i); + if (ret) + return ret; + } else { + mt7530_port_disable(ds, i); + + /* Set default PVID to 0 on all user ports */ + mt7530_rmw(priv, MT7530_PPBV1_P(i), G0_PORT_VID_MASK, + G0_PORT_VID_DEF); + } + + /* Enable consistent egress tag */ + mt7530_rmw(priv, MT7530_PVC_P(i), PVC_EG_TAG_MASK, + PVC_EG_TAG(MT7530_VLAN_EG_CONSISTENT)); + } + + /* Flush the FDB table */ + ret = mt7530_fdb_cmd(priv, MT7530_FDB_FLUSH, NULL); + if (ret < 0) + return ret; + + return 0; +} + +static int mt7531_setup(struct dsa_switch *ds) { struct mt7530_priv *priv = ds->priv; struct mt7530_dummy_poll p; - struct dsa_port *cpu_dp; u32 val, id; int ret, i; @@ -2395,44 +2452,7 @@ mt7531_ind_c45_phy_write(priv, MT753X_CTRL_PHY_ADDR, MDIO_MMD_VEND2, CORE_PLL_GROUP4, val); - /* BPDU to CPU port */ - dsa_switch_for_each_cpu_port(cpu_dp, ds) { - mt7530_rmw(priv, MT7531_CFC, MT7531_CPU_PMAP_MASK, - BIT(cpu_dp->index)); - break; - } - mt7530_rmw(priv, MT753X_BPC, MT753X_BPDU_PORT_FW_MASK, - MT753X_BPDU_CPU_ONLY); - - /* Enable and reset MIB counters */ - mt7530_mib_reset(ds); - - for (i = 0; i < MT7530_NUM_PORTS; i++) { - /* Disable forwarding by default on all ports */ - mt7530_rmw(priv, MT7530_PCR_P(i), PCR_MATRIX_MASK, - PCR_MATRIX_CLR); - - /* Disable learning by default on all ports */ - mt7530_set(priv, MT7530_PSC_P(i), SA_DIS); - - mt7530_set(priv, MT7531_DBG_CNT(i), MT7531_DIS_CLR); - - if (dsa_is_cpu_port(ds, i)) { - ret = mt753x_cpu_port_enable(ds, i); - if (ret) - return ret; - } else { - mt7530_port_disable(ds, i); - - /* Set default PVID to 0 on all user ports */ - mt7530_rmw(priv, MT7530_PPBV1_P(i), G0_PORT_VID_MASK, - G0_PORT_VID_DEF); - } - - /* Enable consistent egress tag */ - mt7530_rmw(priv, MT7530_PVC_P(i), PVC_EG_TAG_MASK, - PVC_EG_TAG(MT7530_VLAN_EG_CONSISTENT)); - } + mt7531_setup_common(ds); /* Setup VLAN ID 0 for VLAN-unaware bridges */ ret = mt7530_setup_vlan0(priv); @@ -2442,11 +2462,6 @@ ds->assisted_learning_on_cpu_port = true; ds->mtu_enforcement_ingress = true; - /* Flush the FDB table */ - ret = mt7530_fdb_cmd(priv, MT7530_FDB_FLUSH, NULL); - if (ret < 0) - return ret; - return 0; } diff -u linux-6.2.0/drivers/net/dsa/mv88e6xxx/chip.c linux-6.2.0/drivers/net/dsa/mv88e6xxx/chip.c --- linux-6.2.0/drivers/net/dsa/mv88e6xxx/chip.c +++ linux-6.2.0/drivers/net/dsa/mv88e6xxx/chip.c @@ -5113,6 +5113,7 @@ .set_cpu_port = mv88e6095_g1_set_cpu_port, .set_egress_port = mv88e6095_g1_set_egress_port, .watchdog_ops = &mv88e6390_watchdog_ops, + .mgmt_rsvd2cpu = mv88e6352_g2_mgmt_rsvd2cpu, .reset = mv88e6352_g1_reset, .vtu_getnext = mv88e6185_g1_vtu_getnext, .vtu_loadpurge = mv88e6185_g1_vtu_loadpurge, diff -u linux-6.2.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c linux-6.2.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c --- linux-6.2.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c +++ linux-6.2.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c @@ -2864,7 +2864,7 @@ if (rc) return rc; - buflen = dir_entries * entry_length; + buflen = mul_u32_u32(dir_entries, entry_length); buf = hwrm_req_dma_slice(bp, req, buflen, &dma_handle); if (!buf) { hwrm_req_drop(bp, req); diff -u linux-6.2.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c linux-6.2.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c --- linux-6.2.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c +++ linux-6.2.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c @@ -3450,7 +3450,7 @@ return ret; } -static void bcmgenet_netif_stop(struct net_device *dev) +static void bcmgenet_netif_stop(struct net_device *dev, bool stop_phy) { struct bcmgenet_priv *priv = netdev_priv(dev); @@ -3465,7 +3465,8 @@ /* Disable MAC transmit. TX DMA disabled must be done before this */ umac_enable_set(priv, CMD_TX_EN, false); - phy_stop(dev->phydev); + if (stop_phy) + phy_stop(dev->phydev); bcmgenet_disable_rx_napi(priv); bcmgenet_intr_disable(priv); @@ -3486,7 +3487,7 @@ netif_dbg(priv, ifdown, dev, "bcmgenet_close\n"); - bcmgenet_netif_stop(dev); + bcmgenet_netif_stop(dev, false); /* Really kill the PHY state machine and disconnect from it */ phy_disconnect(dev->phydev); @@ -4304,7 +4305,7 @@ netif_device_detach(dev); - bcmgenet_netif_stop(dev); + bcmgenet_netif_stop(dev, true); if (!device_may_wakeup(d)) phy_suspend(dev->phydev); diff -u linux-6.2.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c linux-6.2.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c --- linux-6.2.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c +++ linux-6.2.0/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c @@ -2238,11 +2238,6 @@ iavf_process_config(adapter); adapter->flags |= IAVF_FLAG_SETUP_NETDEV_FEATURES; - /* Request VLAN offload settings */ - if (VLAN_V2_ALLOWED(adapter)) - iavf_set_vlan_offload_features(adapter, 0, - netdev->features); - iavf_set_queue_vlan_tag_loc(adapter); was_mac_changed = !ether_addr_equal(netdev->dev_addr, diff -u linux-6.2.0/drivers/net/ethernet/intel/ice/ice_main.c linux-6.2.0/drivers/net/ethernet/intel/ice/ice_main.c --- linux-6.2.0/drivers/net/ethernet/intel/ice/ice_main.c +++ linux-6.2.0/drivers/net/ethernet/intel/ice/ice_main.c @@ -564,7 +564,7 @@ /* Disable VFs until reset is completed */ mutex_lock(&pf->vfs.table_lock); ice_for_each_vf(pf, bkt, vf) - ice_set_vf_state_qs_dis(vf); + ice_set_vf_state_dis(vf); mutex_unlock(&pf->vfs.table_lock); if (ice_is_eswitch_mode_switchdev(pf)) { diff -u linux-6.2.0/drivers/net/ethernet/intel/ice/ice_sriov.c linux-6.2.0/drivers/net/ethernet/intel/ice/ice_sriov.c --- linux-6.2.0/drivers/net/ethernet/intel/ice/ice_sriov.c +++ linux-6.2.0/drivers/net/ethernet/intel/ice/ice_sriov.c @@ -697,6 +697,21 @@ } /** + * ice_sriov_clear_reset_state - clears VF Reset status register + * @vf: the vf to configure + */ +static void ice_sriov_clear_reset_state(struct ice_vf *vf) +{ + struct ice_hw *hw = &vf->pf->hw; + + /* Clear the reset status register so that VF immediately sees that + * the device is resetting, even if hardware hasn't yet gotten around + * to clearing VFGEN_RSTAT for us. + */ + wr32(hw, VFGEN_RSTAT(vf->vf_id), VIRTCHNL_VFR_INPROGRESS); +} + +/** * ice_sriov_clear_mbx_register - clears SRIOV VF's mailbox registers * @vf: the vf to configure */ @@ -835,6 +850,7 @@ static const struct ice_vf_ops ice_sriov_vf_ops = { .reset_type = ICE_VF_RESET, .free = ice_sriov_free_vf, + .clear_reset_state = ice_sriov_clear_reset_state, .clear_mbx_register = ice_sriov_clear_mbx_register, .trigger_reset_register = ice_sriov_trigger_reset_register, .poll_reset_status = ice_sriov_poll_reset_status, @@ -1224,7 +1240,7 @@ if (!vf) return -EINVAL; - ret = ice_check_vf_ready_for_cfg(vf); + ret = ice_check_vf_ready_for_reset(vf); if (ret) goto out_put_vf; @@ -1339,7 +1355,7 @@ goto out_put_vf; } - ret = ice_check_vf_ready_for_cfg(vf); + ret = ice_check_vf_ready_for_reset(vf); if (ret) goto out_put_vf; @@ -1393,7 +1409,7 @@ return -EOPNOTSUPP; } - ret = ice_check_vf_ready_for_cfg(vf); + ret = ice_check_vf_ready_for_reset(vf); if (ret) goto out_put_vf; @@ -1706,7 +1722,7 @@ if (!vf) return -EINVAL; - ret = ice_check_vf_ready_for_cfg(vf); + ret = ice_check_vf_ready_for_reset(vf); if (ret) goto out_put_vf; diff -u linux-6.2.0/drivers/net/ethernet/intel/ice/ice_tc_lib.c linux-6.2.0/drivers/net/ethernet/intel/ice/ice_tc_lib.c --- linux-6.2.0/drivers/net/ethernet/intel/ice/ice_tc_lib.c +++ linux-6.2.0/drivers/net/ethernet/intel/ice/ice_tc_lib.c @@ -693,17 +693,18 @@ * results into order of switch rule evaluation. */ rule_info.priority = 7; + rule_info.flags_info.act_valid = true; if (fltr->direction == ICE_ESWITCH_FLTR_INGRESS) { rule_info.sw_act.flag |= ICE_FLTR_RX; rule_info.sw_act.src = hw->pf_id; rule_info.rx = true; + rule_info.flags_info.act = ICE_SINGLE_ACT_LB_ENABLE; } else { rule_info.sw_act.flag |= ICE_FLTR_TX; rule_info.sw_act.src = vsi->idx; rule_info.rx = false; rule_info.flags_info.act = ICE_SINGLE_ACT_LAN_ENABLE; - rule_info.flags_info.act_valid = true; } /* specify the cookie as filter_rule_id */ diff -u linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h --- linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h @@ -899,6 +899,7 @@ /* CN10K MCS */ int rvu_mcs_init(struct rvu *rvu); int rvu_mcs_flr_handler(struct rvu *rvu, u16 pcifunc); +void rvu_mcs_ptp_cfg(struct rvu *rvu, u8 rpm_id, u8 lmac_id, bool ena); void rvu_mcs_exit(struct rvu *rvu); #endif /* RVU_H */ diff -u linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c --- linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c @@ -497,8 +497,9 @@ stats.octet_validated_cnt); seq_printf(filp, "secy%d: Pkts on disable port: %lld\n", secy_id, stats.pkt_port_disabled_cnt); - seq_printf(filp, "secy%d: Octets validated: %lld\n", secy_id, stats.pkt_badtag_cnt); - seq_printf(filp, "secy%d: Octets validated: %lld\n", secy_id, stats.pkt_nosa_cnt); + seq_printf(filp, "secy%d: Pkts with badtag: %lld\n", secy_id, stats.pkt_badtag_cnt); + seq_printf(filp, "secy%d: Pkts with no SA(sectag.tci.c=0): %lld\n", secy_id, + stats.pkt_nosa_cnt); seq_printf(filp, "secy%d: Pkts with nosaerror: %lld\n", secy_id, stats.pkt_nosaerror_cnt); seq_printf(filp, "secy%d: Tagged ctrl pkts: %lld\n", secy_id, diff -u linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c --- linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c @@ -652,9 +652,7 @@ htons(ext->lso_sb - skb_network_offset(skb)); } else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) { ext->lso_format = pfvf->hw.lso_tsov6_idx; - - ipv6_hdr(skb)->payload_len = - htons(ext->lso_sb - skb_network_offset(skb)); + ipv6_hdr(skb)->payload_len = htons(tcp_hdrlen(skb)); } else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) { __be16 l3_proto = vlan_get_protocol(skb); struct udphdr *udph = udp_hdr(skb); diff -u linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c --- linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c @@ -621,7 +621,7 @@ err = otx2vf_realloc_msix_vectors(vf); if (err) - goto err_mbox_destroy; + goto err_detach_rsrc; err = otx2_set_real_num_queues(netdev, qcount, qcount); if (err) diff -u linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c --- linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -1870,9 +1870,7 @@ while (done < budget) { unsigned int pktlen, *rxdcsum; - bool has_hwaccel_tag = false; struct net_device *netdev; - u16 vlan_proto, vlan_tci; dma_addr_t dma_addr; u32 hash, reason; int mac = 0; @@ -2007,31 +2005,16 @@ skb_checksum_none_assert(skb); skb->protocol = eth_type_trans(skb, netdev); - if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX) { - if (MTK_HAS_CAPS(eth->soc->caps, MTK_NETSYS_V2)) { - if (trxd.rxd3 & RX_DMA_VTAG_V2) { - vlan_proto = RX_DMA_VPID(trxd.rxd4); - vlan_tci = RX_DMA_VID(trxd.rxd4); - has_hwaccel_tag = true; - } - } else if (trxd.rxd2 & RX_DMA_VTAG) { - vlan_proto = RX_DMA_VPID(trxd.rxd3); - vlan_tci = RX_DMA_VID(trxd.rxd3); - has_hwaccel_tag = true; - } - } - /* When using VLAN untagging in combination with DSA, the * hardware treats the MTK special tag as a VLAN and untags it. */ - if (has_hwaccel_tag && netdev_uses_dsa(netdev)) { - unsigned int port = vlan_proto & GENMASK(2, 0); + if (!MTK_HAS_CAPS(eth->soc->caps, MTK_NETSYS_V2) && + (trxd.rxd2 & RX_DMA_VTAG) && netdev_uses_dsa(netdev)) { + unsigned int port = RX_DMA_VPID(trxd.rxd3) & GENMASK(2, 0); if (port < ARRAY_SIZE(eth->dsa_meta) && eth->dsa_meta[port]) skb_dst_set_noref(skb, ð->dsa_meta[port]->dst); - } else if (has_hwaccel_tag) { - __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vlan_tci); } if (reason == MTK_PPE_CPU_REASON_HIT_UNBIND_RATE_REACHED) @@ -2859,29 +2842,11 @@ static int mtk_set_features(struct net_device *dev, netdev_features_t features) { - struct mtk_mac *mac = netdev_priv(dev); - struct mtk_eth *eth = mac->hw; netdev_features_t diff = dev->features ^ features; - int i; if ((diff & NETIF_F_LRO) && !(features & NETIF_F_LRO)) mtk_hwlro_netdev_disable(dev); - /* Set RX VLAN offloading */ - if (!(diff & NETIF_F_HW_VLAN_CTAG_RX)) - return 0; - - mtk_w32(eth, !!(features & NETIF_F_HW_VLAN_CTAG_RX), - MTK_CDMP_EG_CTRL); - - /* sync features with other MAC */ - for (i = 0; i < MTK_MAC_COUNT; i++) { - if (!eth->netdev[i] || eth->netdev[i] == dev) - continue; - eth->netdev[i]->features &= ~NETIF_F_HW_VLAN_CTAG_RX; - eth->netdev[i]->features |= features & NETIF_F_HW_VLAN_CTAG_RX; - } - return 0; } @@ -3184,30 +3149,6 @@ struct mtk_eth *eth = mac->hw; int i, err; - if (mtk_uses_dsa(dev) && !eth->prog) { - for (i = 0; i < ARRAY_SIZE(eth->dsa_meta); i++) { - struct metadata_dst *md_dst = eth->dsa_meta[i]; - - if (md_dst) - continue; - - md_dst = metadata_dst_alloc(0, METADATA_HW_PORT_MUX, - GFP_KERNEL); - if (!md_dst) - return -ENOMEM; - - md_dst->u.port_info.port_id = i; - eth->dsa_meta[i] = md_dst; - } - } else { - /* Hardware special tag parsing needs to be disabled if at least - * one MAC does not use DSA. - */ - u32 val = mtk_r32(eth, MTK_CDMP_IG_CTRL); - val &= ~MTK_CDMP_STAG_EN; - mtk_w32(eth, val, MTK_CDMP_IG_CTRL); - } - err = phylink_of_phy_connect(mac->phylink, mac->of_node, 0); if (err) { netdev_err(dev, "%s: could not attach PHY: %d\n", __func__, @@ -3246,6 +3187,36 @@ phylink_start(mac->phylink); netif_tx_start_all_queues(dev); + if (MTK_HAS_CAPS(eth->soc->caps, MTK_NETSYS_V2)) + return 0; + + if (mtk_uses_dsa(dev) && !eth->prog) { + for (i = 0; i < ARRAY_SIZE(eth->dsa_meta); i++) { + struct metadata_dst *md_dst = eth->dsa_meta[i]; + + if (md_dst) + continue; + + md_dst = metadata_dst_alloc(0, METADATA_HW_PORT_MUX, + GFP_KERNEL); + if (!md_dst) + return -ENOMEM; + + md_dst->u.port_info.port_id = i; + eth->dsa_meta[i] = md_dst; + } + } else { + /* Hardware DSA untagging and VLAN RX offloading need to be + * disabled if at least one MAC does not use DSA. + */ + u32 val = mtk_r32(eth, MTK_CDMP_IG_CTRL); + + val &= ~MTK_CDMP_STAG_EN; + mtk_w32(eth, val, MTK_CDMP_IG_CTRL); + + mtk_w32(eth, 0, MTK_CDMP_EG_CTRL); + } + return 0; } @@ -3572,10 +3543,9 @@ if (!MTK_HAS_CAPS(eth->soc->caps, MTK_NETSYS_V2)) { val = mtk_r32(eth, MTK_CDMP_IG_CTRL); mtk_w32(eth, val | MTK_CDMP_STAG_EN, MTK_CDMP_IG_CTRL); - } - /* Enable RX VLan Offloading */ - mtk_w32(eth, 1, MTK_CDMP_EG_CTRL); + mtk_w32(eth, 1, MTK_CDMP_EG_CTRL); + } /* set interrupt delays based on current Net DIM sample */ mtk_dim_rx(ð->rx_dim.work); @@ -4176,7 +4146,7 @@ eth->netdev[id]->hw_features |= NETIF_F_LRO; eth->netdev[id]->vlan_features = eth->soc->hw_features & - ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX); + ~NETIF_F_HW_VLAN_CTAG_TX; eth->netdev[id]->features |= eth->soc->hw_features; eth->netdev[id]->ethtool_ops = &mtk_ethtool_ops; diff -u linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.h linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.h --- linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.h +++ linux-6.2.0/drivers/net/ethernet/mediatek/mtk_eth_soc.h @@ -48,7 +48,6 @@ #define MTK_HW_FEATURES (NETIF_F_IP_CSUM | \ NETIF_F_RXCSUM | \ NETIF_F_HW_VLAN_CTAG_TX | \ - NETIF_F_HW_VLAN_CTAG_RX | \ NETIF_F_SG | NETIF_F_TSO | \ NETIF_F_TSO6 | \ NETIF_F_IPV6_CSUM |\ diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c --- linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/ptp.c @@ -175,6 +175,8 @@ /* ensure cq space is freed before enabling more cqes */ wmb(); + mlx5e_txqsq_wake(&ptpsq->txqsq); + return work_done == budget; } diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h --- linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h @@ -177,6 +177,8 @@ return pi; } +void mlx5e_txqsq_wake(struct mlx5e_txqsq *sq); + static inline u16 mlx5e_shampo_get_cqe_header_index(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe) { return be16_to_cpu(cqe->shampo.header_entry_index) & (rq->mpwqe.shampo->hd_per_wq - 1); diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c --- linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c @@ -1596,11 +1596,9 @@ int mlx5e_tc_query_route_vport(struct net_device *out_dev, struct net_device *route_dev, u16 *vport) { struct mlx5e_priv *out_priv, *route_priv; - struct mlx5_devcom *devcom = NULL; struct mlx5_core_dev *route_mdev; struct mlx5_eswitch *esw; u16 vhca_id; - int err; out_priv = netdev_priv(out_dev); esw = out_priv->mdev->priv.eswitch; @@ -1609,6 +1607,9 @@ vhca_id = MLX5_CAP_GEN(route_mdev, vhca_id); if (mlx5_lag_is_active(out_priv->mdev)) { + struct mlx5_devcom *devcom; + int err; + /* In lag case we may get devices from different eswitch instances. * If we failed to get vport num, it means, mostly, that we on the wrong * eswitch. @@ -1617,16 +1618,16 @@ if (err != -ENOENT) return err; + rcu_read_lock(); devcom = out_priv->mdev->priv.devcom; - esw = mlx5_devcom_get_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS); - if (!esw) - return -ENODEV; + esw = mlx5_devcom_get_peer_data_rcu(devcom, MLX5_DEVCOM_ESW_OFFLOADS); + err = esw ? mlx5_eswitch_vhca_id_to_vport(esw, vhca_id, vport) : -ENODEV; + rcu_read_unlock(); + + return err; } - err = mlx5_eswitch_vhca_id_to_vport(esw, vhca_id, vport); - if (devcom) - mlx5_devcom_release_peer_data(devcom, MLX5_DEVCOM_ESW_OFFLOADS); - return err; + return mlx5_eswitch_vhca_id_to_vport(esw, vhca_id, vport); } int mlx5e_tc_add_flow_mod_hdr(struct mlx5e_priv *priv, @@ -5356,6 +5357,8 @@ goto err_register_fib_notifier; } + mlx5_esw_offloads_devcom_init(esw); + return 0; err_register_fib_notifier: @@ -5382,7 +5385,7 @@ priv = netdev_priv(rpriv->netdev); esw = priv->mdev->priv.eswitch; - mlx5e_tc_clean_fdb_peer_flows(esw); + mlx5_esw_offloads_devcom_cleanup(esw); mlx5e_tc_tun_cleanup(uplink_priv->encap); diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h --- linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h @@ -342,6 +342,7 @@ } params; struct blocking_notifier_head n_head; struct dentry *dbgfs; + bool paired[MLX5_MAX_PORTS]; }; void esw_offloads_disable(struct mlx5_eswitch *esw); @@ -370,6 +371,8 @@ void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw, bool clear_vf); void mlx5_eswitch_disable_locked(struct mlx5_eswitch *esw); void mlx5_eswitch_disable(struct mlx5_eswitch *esw); +void mlx5_esw_offloads_devcom_init(struct mlx5_eswitch *esw); +void mlx5_esw_offloads_devcom_cleanup(struct mlx5_eswitch *esw); int mlx5_eswitch_set_vport_mac(struct mlx5_eswitch *esw, u16 vport, const u8 *mac); int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw, @@ -771,6 +774,8 @@ static inline int mlx5_eswitch_enable(struct mlx5_eswitch *esw, int num_vfs) { return 0; } static inline void mlx5_eswitch_disable_sriov(struct mlx5_eswitch *esw, bool clear_vf) {} static inline void mlx5_eswitch_disable(struct mlx5_eswitch *esw) {} +static inline void mlx5_esw_offloads_devcom_init(struct mlx5_eswitch *esw) {} +static inline void mlx5_esw_offloads_devcom_cleanup(struct mlx5_eswitch *esw) {} static inline bool mlx5_eswitch_is_funcs_handler(struct mlx5_core_dev *dev) { return false; } static inline int mlx5_eswitch_set_vport_state(struct mlx5_eswitch *esw, u16 vport, int link_state) { return 0; } diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c --- linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c @@ -2857,6 +2857,9 @@ mlx5_eswitch_vport_match_metadata_enabled(peer_esw)) break; + if (esw->paired[mlx5_get_dev_index(peer_esw->dev)]) + break; + err = mlx5_esw_offloads_set_ns_peer(esw, peer_esw, true); if (err) goto err_out; @@ -2868,14 +2871,18 @@ if (err) goto err_pair; + esw->paired[mlx5_get_dev_index(peer_esw->dev)] = true; + peer_esw->paired[mlx5_get_dev_index(esw->dev)] = true; mlx5_devcom_set_paired(devcom, MLX5_DEVCOM_ESW_OFFLOADS, true); break; case ESW_OFFLOADS_DEVCOM_UNPAIR: - if (!mlx5_devcom_is_paired(devcom, MLX5_DEVCOM_ESW_OFFLOADS)) + if (!esw->paired[mlx5_get_dev_index(peer_esw->dev)]) break; mlx5_devcom_set_paired(devcom, MLX5_DEVCOM_ESW_OFFLOADS, false); + esw->paired[mlx5_get_dev_index(peer_esw->dev)] = false; + peer_esw->paired[mlx5_get_dev_index(esw->dev)] = false; mlx5_esw_offloads_unpair(peer_esw); mlx5_esw_offloads_unpair(esw); mlx5_esw_offloads_set_ns_peer(esw, peer_esw, false); @@ -2894,7 +2901,7 @@ return err; } -static void esw_offloads_devcom_init(struct mlx5_eswitch *esw) +void mlx5_esw_offloads_devcom_init(struct mlx5_eswitch *esw) { struct mlx5_devcom *devcom = esw->dev->priv.devcom; @@ -2917,7 +2924,7 @@ ESW_OFFLOADS_DEVCOM_PAIR, esw); } -static void esw_offloads_devcom_cleanup(struct mlx5_eswitch *esw) +void mlx5_esw_offloads_devcom_cleanup(struct mlx5_eswitch *esw) { struct mlx5_devcom *devcom = esw->dev->priv.devcom; @@ -3387,8 +3394,6 @@ if (err) goto err_vports; - esw_offloads_devcom_init(esw); - return 0; err_vports: @@ -3429,7 +3434,6 @@ void esw_offloads_disable(struct mlx5_eswitch *esw) { - esw_offloads_devcom_cleanup(esw); mlx5_eswitch_disable_pf_vf_vports(esw); esw_offloads_unload_rep(esw, MLX5_VPORT_UPLINK); esw_set_passing_vport_metadata(esw, false); diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/main.c linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/main.c --- linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -1023,7 +1023,7 @@ dev->dm = mlx5_dm_create(dev); if (IS_ERR(dev->dm)) - mlx5_core_warn(dev, "Failed to init device memory%d\n", err); + mlx5_core_warn(dev, "Failed to init device memory %ld\n", PTR_ERR(dev->dm)); dev->tracer = mlx5_fw_tracer_create(dev); dev->hv_vhca = mlx5_hv_vhca_create(dev); diff -u linux-6.2.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c linux-6.2.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c --- linux-6.2.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlxsw/core_thermal.c @@ -36,39 +36,33 @@ MLXSW_THERMAL_TEMP_TRIP_HOT, }; -struct mlxsw_cooling_states { +struct mlxsw_thermal_trip { + int type; + int temp; + int hyst; int min_state; int max_state; }; -static const struct thermal_trip default_thermal_trips[] = { +static const struct mlxsw_thermal_trip default_thermal_trips[] = { { /* In range - 0-40% PWM */ .type = THERMAL_TRIP_ACTIVE, - .temperature = MLXSW_THERMAL_ASIC_TEMP_NORM, - .hysteresis = MLXSW_THERMAL_HYSTERESIS_TEMP, - }, - { - /* In range - 40-100% PWM */ - .type = THERMAL_TRIP_ACTIVE, - .temperature = MLXSW_THERMAL_ASIC_TEMP_HIGH, - .hysteresis = MLXSW_THERMAL_HYSTERESIS_TEMP, - }, - { /* Warning */ - .type = THERMAL_TRIP_HOT, - .temperature = MLXSW_THERMAL_ASIC_TEMP_HOT, - }, -}; - -static const struct mlxsw_cooling_states default_cooling_states[] = { - { + .temp = MLXSW_THERMAL_ASIC_TEMP_NORM, + .hyst = MLXSW_THERMAL_HYSTERESIS_TEMP, .min_state = 0, .max_state = (4 * MLXSW_THERMAL_MAX_STATE) / 10, }, { + /* In range - 40-100% PWM */ + .type = THERMAL_TRIP_ACTIVE, + .temp = MLXSW_THERMAL_ASIC_TEMP_HIGH, + .hyst = MLXSW_THERMAL_HYSTERESIS_TEMP, .min_state = (4 * MLXSW_THERMAL_MAX_STATE) / 10, .max_state = MLXSW_THERMAL_MAX_STATE, }, - { + { /* Warning */ + .type = THERMAL_TRIP_HOT, + .temp = MLXSW_THERMAL_ASIC_TEMP_HOT, .min_state = MLXSW_THERMAL_MAX_STATE, .max_state = MLXSW_THERMAL_MAX_STATE, }, @@ -84,8 +78,7 @@ struct mlxsw_thermal_module { struct mlxsw_thermal *parent; struct thermal_zone_device *tzdev; - struct thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS]; - struct mlxsw_cooling_states cooling_states[MLXSW_THERMAL_NUM_TRIPS]; + struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS]; int module; /* Module or gearbox number */ u8 slot_index; }; @@ -105,8 +98,7 @@ struct thermal_zone_device *tzdev; int polling_delay; struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX]; - struct thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS]; - struct mlxsw_cooling_states cooling_states[MLXSW_THERMAL_NUM_TRIPS]; + struct mlxsw_thermal_trip trips[MLXSW_THERMAL_NUM_TRIPS]; struct mlxsw_thermal_area line_cards[]; }; @@ -143,9 +135,9 @@ static void mlxsw_thermal_module_trips_reset(struct mlxsw_thermal_module *tz) { - tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temperature = 0; - tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temperature = 0; - tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temperature = 0; + tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = 0; + tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temp = 0; + tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temp = 0; } static int @@ -187,12 +179,12 @@ * by subtracting double hysteresis value. */ if (crit_temp >= MLXSW_THERMAL_MODULE_TEMP_SHIFT) - tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temperature = crit_temp - + tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = crit_temp - MLXSW_THERMAL_MODULE_TEMP_SHIFT; else - tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temperature = crit_temp; - tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temperature = crit_temp; - tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temperature = emerg_temp; + tz->trips[MLXSW_THERMAL_TEMP_TRIP_NORM].temp = crit_temp; + tz->trips[MLXSW_THERMAL_TEMP_TRIP_HIGH].temp = crit_temp; + tz->trips[MLXSW_THERMAL_TEMP_TRIP_HOT].temp = emerg_temp; return 0; } @@ -209,11 +201,11 @@ return 0; for (i = 0; i < MLXSW_THERMAL_NUM_TRIPS; i++) { - const struct mlxsw_cooling_states *state = &thermal->cooling_states[i]; + const struct mlxsw_thermal_trip *trip = &thermal->trips[i]; err = thermal_zone_bind_cooling_device(tzdev, i, cdev, - state->max_state, - state->min_state, + trip->max_state, + trip->min_state, THERMAL_WEIGHT_DEFAULT); if (err < 0) { dev_err(dev, "Failed to bind cooling device to trip %d\n", i); @@ -267,6 +259,61 @@ return 0; } +static int mlxsw_thermal_get_trip_type(struct thermal_zone_device *tzdev, + int trip, + enum thermal_trip_type *p_type) +{ + struct mlxsw_thermal *thermal = tzdev->devdata; + + if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS) + return -EINVAL; + + *p_type = thermal->trips[trip].type; + return 0; +} + +static int mlxsw_thermal_get_trip_temp(struct thermal_zone_device *tzdev, + int trip, int *p_temp) +{ + struct mlxsw_thermal *thermal = tzdev->devdata; + + if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS) + return -EINVAL; + + *p_temp = thermal->trips[trip].temp; + return 0; +} + +static int mlxsw_thermal_set_trip_temp(struct thermal_zone_device *tzdev, + int trip, int temp) +{ + struct mlxsw_thermal *thermal = tzdev->devdata; + + if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS) + return -EINVAL; + + thermal->trips[trip].temp = temp; + return 0; +} + +static int mlxsw_thermal_get_trip_hyst(struct thermal_zone_device *tzdev, + int trip, int *p_hyst) +{ + struct mlxsw_thermal *thermal = tzdev->devdata; + + *p_hyst = thermal->trips[trip].hyst; + return 0; +} + +static int mlxsw_thermal_set_trip_hyst(struct thermal_zone_device *tzdev, + int trip, int hyst) +{ + struct mlxsw_thermal *thermal = tzdev->devdata; + + thermal->trips[trip].hyst = hyst; + return 0; +} + static struct thermal_zone_params mlxsw_thermal_params = { .no_hwmon = true, }; @@ -275,6 +322,11 @@ .bind = mlxsw_thermal_bind, .unbind = mlxsw_thermal_unbind, .get_temp = mlxsw_thermal_get_temp, + .get_trip_type = mlxsw_thermal_get_trip_type, + .get_trip_temp = mlxsw_thermal_get_trip_temp, + .set_trip_temp = mlxsw_thermal_set_trip_temp, + .get_trip_hyst = mlxsw_thermal_get_trip_hyst, + .set_trip_hyst = mlxsw_thermal_set_trip_hyst, }; static int mlxsw_thermal_module_bind(struct thermal_zone_device *tzdev, @@ -289,11 +341,11 @@ return 0; for (i = 0; i < MLXSW_THERMAL_NUM_TRIPS; i++) { - const struct mlxsw_cooling_states *state = &tz->cooling_states[i]; + const struct mlxsw_thermal_trip *trip = &tz->trips[i]; err = thermal_zone_bind_cooling_device(tzdev, i, cdev, - state->max_state, - state->min_state, + trip->max_state, + trip->min_state, THERMAL_WEIGHT_DEFAULT); if (err < 0) goto err_thermal_zone_bind_cooling_device; @@ -381,10 +433,74 @@ return 0; } +static int +mlxsw_thermal_module_trip_type_get(struct thermal_zone_device *tzdev, int trip, + enum thermal_trip_type *p_type) +{ + struct mlxsw_thermal_module *tz = tzdev->devdata; + + if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS) + return -EINVAL; + + *p_type = tz->trips[trip].type; + return 0; +} + +static int +mlxsw_thermal_module_trip_temp_get(struct thermal_zone_device *tzdev, + int trip, int *p_temp) +{ + struct mlxsw_thermal_module *tz = tzdev->devdata; + + if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS) + return -EINVAL; + + *p_temp = tz->trips[trip].temp; + return 0; +} + +static int +mlxsw_thermal_module_trip_temp_set(struct thermal_zone_device *tzdev, + int trip, int temp) +{ + struct mlxsw_thermal_module *tz = tzdev->devdata; + + if (trip < 0 || trip >= MLXSW_THERMAL_NUM_TRIPS) + return -EINVAL; + + tz->trips[trip].temp = temp; + return 0; +} + +static int +mlxsw_thermal_module_trip_hyst_get(struct thermal_zone_device *tzdev, int trip, + int *p_hyst) +{ + struct mlxsw_thermal_module *tz = tzdev->devdata; + + *p_hyst = tz->trips[trip].hyst; + return 0; +} + +static int +mlxsw_thermal_module_trip_hyst_set(struct thermal_zone_device *tzdev, int trip, + int hyst) +{ + struct mlxsw_thermal_module *tz = tzdev->devdata; + + tz->trips[trip].hyst = hyst; + return 0; +} + static struct thermal_zone_device_ops mlxsw_thermal_module_ops = { .bind = mlxsw_thermal_module_bind, .unbind = mlxsw_thermal_module_unbind, .get_temp = mlxsw_thermal_module_temp_get, + .get_trip_type = mlxsw_thermal_module_trip_type_get, + .get_trip_temp = mlxsw_thermal_module_trip_temp_get, + .set_trip_temp = mlxsw_thermal_module_trip_temp_set, + .get_trip_hyst = mlxsw_thermal_module_trip_hyst_get, + .set_trip_hyst = mlxsw_thermal_module_trip_hyst_set, }; static int mlxsw_thermal_gearbox_temp_get(struct thermal_zone_device *tzdev, @@ -414,6 +530,11 @@ .bind = mlxsw_thermal_module_bind, .unbind = mlxsw_thermal_module_unbind, .get_temp = mlxsw_thermal_gearbox_temp_get, + .get_trip_type = mlxsw_thermal_module_trip_type_get, + .get_trip_temp = mlxsw_thermal_module_trip_temp_get, + .set_trip_temp = mlxsw_thermal_module_trip_temp_set, + .get_trip_hyst = mlxsw_thermal_module_trip_hyst_get, + .set_trip_hyst = mlxsw_thermal_module_trip_hyst_set, }; static int mlxsw_thermal_get_max_state(struct thermal_cooling_device *cdev, @@ -495,8 +616,7 @@ else snprintf(tz_name, sizeof(tz_name), "mlxsw-module%d", module_tz->module + 1); - module_tz->tzdev = thermal_zone_device_register_with_trips(tz_name, - module_tz->trips, + module_tz->tzdev = thermal_zone_device_register(tz_name, MLXSW_THERMAL_NUM_TRIPS, MLXSW_THERMAL_TRIP_MASK, module_tz, @@ -540,8 +660,6 @@ module_tz->parent = thermal; memcpy(module_tz->trips, default_thermal_trips, sizeof(thermal->trips)); - memcpy(module_tz->cooling_states, default_cooling_states, - sizeof(thermal->cooling_states)); /* Initialize all trip point. */ mlxsw_thermal_module_trips_reset(module_tz); /* Read module temperature and thresholds. */ @@ -637,8 +755,7 @@ else snprintf(tz_name, sizeof(tz_name), "mlxsw-gearbox%d", gearbox_tz->module + 1); - gearbox_tz->tzdev = thermal_zone_device_register_with_trips(tz_name, - gearbox_tz->trips, + gearbox_tz->tzdev = thermal_zone_device_register(tz_name, MLXSW_THERMAL_NUM_TRIPS, MLXSW_THERMAL_TRIP_MASK, gearbox_tz, @@ -695,8 +812,6 @@ gearbox_tz = &area->tz_gearbox_arr[i]; memcpy(gearbox_tz->trips, default_thermal_trips, sizeof(thermal->trips)); - memcpy(gearbox_tz->cooling_states, default_cooling_states, - sizeof(thermal->cooling_states)); gearbox_tz->module = i; gearbox_tz->parent = thermal; gearbox_tz->slot_index = area->slot_index; @@ -812,7 +927,6 @@ thermal->core = core; thermal->bus_info = bus_info; memcpy(thermal->trips, default_thermal_trips, sizeof(thermal->trips)); - memcpy(thermal->cooling_states, default_cooling_states, sizeof(thermal->cooling_states)); thermal->line_cards[0].slot_index = 0; err = mlxsw_reg_query(thermal->core, MLXSW_REG(mfcr), mfcr_pl); @@ -862,8 +976,7 @@ MLXSW_THERMAL_SLOW_POLL_INT : MLXSW_THERMAL_POLL_INT; - thermal->tzdev = thermal_zone_device_register_with_trips("mlxsw", - thermal->trips, + thermal->tzdev = thermal_zone_device_register("mlxsw", MLXSW_THERMAL_NUM_TRIPS, MLXSW_THERMAL_TRIP_MASK, thermal, diff -u linux-6.2.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c linux-6.2.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c --- linux-6.2.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c +++ linux-6.2.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c @@ -25,6 +25,7 @@ struct stmmac_priv *priv = netdev_priv(dev); void __iomem *ioaddr = hw->pcsr; u32 value = readl(ioaddr + GMAC_CONFIG); + u32 clk_rate; value |= GMAC_CORE_INIT; @@ -47,6 +48,10 @@ writel(value, ioaddr + GMAC_CONFIG); + /* Configure LPI 1us counter to number of CSR clock ticks in 1us - 1 */ + clk_rate = clk_get_rate(priv->plat->stmmac_clk); + writel((clk_rate / 1000000) - 1, ioaddr + GMAC4_MAC_ONEUS_TIC_COUNTER); + /* Enable GMAC interrupts */ value = GMAC_INT_DEFAULT_ENABLE; diff -u linux-6.2.0/drivers/net/pcs/pcs-xpcs.c linux-6.2.0/drivers/net/pcs/pcs-xpcs.c --- linux-6.2.0/drivers/net/pcs/pcs-xpcs.c +++ linux-6.2.0/drivers/net/pcs/pcs-xpcs.c @@ -875,7 +875,7 @@ switch (compat->an_mode) { case DW_AN_C73: - if (phylink_autoneg_inband(mode)) { + if (test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, advertising)) { ret = xpcs_config_aneg_c73(xpcs, compat); if (ret) return ret; diff -u linux-6.2.0/drivers/net/tap.c linux-6.2.0/drivers/net/tap.c --- linux-6.2.0/drivers/net/tap.c +++ linux-6.2.0/drivers/net/tap.c @@ -739,7 +739,7 @@ /* Move network header to the right position for VLAN tagged packets */ if (eth_type_vlan(skb->protocol) && - __vlan_get_protocol(skb, skb->protocol, &depth) != 0) + vlan_get_protocol_and_depth(skb, skb->protocol, &depth) != 0) skb_set_network_header(skb, depth); /* copy skb_ubuf_info for callback when skb has no error */ @@ -1186,7 +1186,7 @@ /* Move network header to the right position for VLAN tagged packets */ if (eth_type_vlan(skb->protocol) && - __vlan_get_protocol(skb, skb->protocol, &depth) != 0) + vlan_get_protocol_and_depth(skb, skb->protocol, &depth) != 0) skb_set_network_header(skb, depth); rcu_read_lock(); diff -u linux-6.2.0/drivers/net/tun.c linux-6.2.0/drivers/net/tun.c --- linux-6.2.0/drivers/net/tun.c +++ linux-6.2.0/drivers/net/tun.c @@ -1971,6 +1971,14 @@ int queue_len; spin_lock_bh(&queue->lock); + + if (unlikely(tfile->detached)) { + spin_unlock_bh(&queue->lock); + rcu_read_unlock(); + err = -EBUSY; + goto free_skb; + } + __skb_queue_tail(queue, skb); queue_len = skb_queue_len(queue); spin_unlock(&queue->lock); @@ -2506,6 +2514,13 @@ if (tfile->napi_enabled) { queue = &tfile->sk.sk_write_queue; spin_lock(&queue->lock); + + if (unlikely(tfile->detached)) { + spin_unlock(&queue->lock); + kfree_skb(skb); + return -EBUSY; + } + __skb_queue_tail(queue, skb); spin_unlock(&queue->lock); ret = 1; diff -u linux-6.2.0/drivers/net/virtio_net.c linux-6.2.0/drivers/net/virtio_net.c --- linux-6.2.0/drivers/net/virtio_net.c +++ linux-6.2.0/drivers/net/virtio_net.c @@ -1701,6 +1701,38 @@ return received; } +static void virtnet_disable_queue_pair(struct virtnet_info *vi, int qp_index) +{ + virtnet_napi_tx_disable(&vi->sq[qp_index].napi); + napi_disable(&vi->rq[qp_index].napi); + xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq); +} + +static int virtnet_enable_queue_pair(struct virtnet_info *vi, int qp_index) +{ + struct net_device *dev = vi->dev; + int err; + + err = xdp_rxq_info_reg(&vi->rq[qp_index].xdp_rxq, dev, qp_index, + vi->rq[qp_index].napi.napi_id); + if (err < 0) + return err; + + err = xdp_rxq_info_reg_mem_model(&vi->rq[qp_index].xdp_rxq, + MEM_TYPE_PAGE_SHARED, NULL); + if (err < 0) + goto err_xdp_reg_mem_model; + + virtnet_napi_enable(vi->rq[qp_index].vq, &vi->rq[qp_index].napi); + virtnet_napi_tx_enable(vi, vi->sq[qp_index].vq, &vi->sq[qp_index].napi); + + return 0; + +err_xdp_reg_mem_model: + xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq); + return err; +} + static int virtnet_open(struct net_device *dev) { struct virtnet_info *vi = netdev_priv(dev); @@ -1714,22 +1746,20 @@ if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL)) schedule_delayed_work(&vi->refill, 0); - err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i, vi->rq[i].napi.napi_id); + err = virtnet_enable_queue_pair(vi, i); if (err < 0) - return err; - - err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq, - MEM_TYPE_PAGE_SHARED, NULL); - if (err < 0) { - xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq); - return err; - } - - virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi); - virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi); + goto err_enable_qp; } return 0; + +err_enable_qp: + disable_delayed_refill(vi); + cancel_delayed_work_sync(&vi->refill); + + for (i--; i >= 0; i--) + virtnet_disable_queue_pair(vi, i); + return err; } static int virtnet_poll_tx(struct napi_struct *napi, int budget) @@ -2161,11 +2191,8 @@ /* Make sure refill_work doesn't re-enable napi! */ cancel_delayed_work_sync(&vi->refill); - for (i = 0; i < vi->max_queue_pairs; i++) { - napi_disable(&vi->rq[i].napi); - xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq); - virtnet_napi_tx_disable(&vi->sq[i].napi); - } + for (i = 0; i < vi->max_queue_pairs; i++) + virtnet_disable_queue_pair(vi, i); return 0; } @@ -3411,12 +3438,14 @@ struct virtqueue *vq = vi->sq[i].vq; while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) virtnet_sq_free_unused_buf(vq, buf); + cond_resched(); } for (i = 0; i < vi->max_queue_pairs; i++) { struct virtqueue *vq = vi->rq[i].vq; while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) virtnet_rq_free_unused_buf(vq, buf); + cond_resched(); } } diff -u linux-6.2.0/drivers/net/wireless/ath/ath11k/dp_rx.c linux-6.2.0/drivers/net/wireless/ath/ath11k/dp_rx.c --- linux-6.2.0/drivers/net/wireless/ath/ath11k/dp_rx.c +++ linux-6.2.0/drivers/net/wireless/ath/ath11k/dp_rx.c @@ -389,10 +389,10 @@ goto fail_free_skb; spin_lock_bh(&rx_ring->idr_lock); - buf_id = idr_alloc(&rx_ring->bufs_idr, skb, 0, - rx_ring->bufs_max * 3, GFP_ATOMIC); + buf_id = idr_alloc(&rx_ring->bufs_idr, skb, 1, + (rx_ring->bufs_max * 3) + 1, GFP_ATOMIC); spin_unlock_bh(&rx_ring->idr_lock); - if (buf_id < 0) + if (buf_id <= 0) goto fail_dma_unmap; desc = ath11k_hal_srng_src_get_next_entry(ab, srng); @@ -2665,6 +2665,9 @@ cookie); mac_id = FIELD_GET(DP_RXDMA_BUF_COOKIE_PDEV_ID, cookie); + if (unlikely(buf_id == 0)) + continue; + ar = ab->pdevs[mac_id].ar; rx_ring = &ar->dp.rx_refill_buf_ring; spin_lock_bh(&rx_ring->idr_lock); @@ -3138,6 +3141,7 @@ } peer->tfm_mmic = tfm; + peer->dp_setup_done = true; spin_unlock_bh(&ab->base_lock); return 0; @@ -3583,6 +3587,13 @@ ret = -ENOENT; goto out_unlock; } + if (!peer->dp_setup_done) { + ath11k_warn(ab, "The peer %pM [%d] has uninitialized datapath\n", + peer->addr, peer_id); + ret = -ENOENT; + goto out_unlock; + } + rx_tid = &peer->rx_tid[tid]; if ((!skb_queue_empty(&rx_tid->rx_frags) && seqno != rx_tid->cur_sn) || diff -u linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c --- linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c +++ linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c @@ -1040,4 +1040,9 @@ struct brcmf_bus *bus_if; + if (!id) { + dev_err(&func->dev, "Error no sdio_device_id passed for %x:%x\n", func->vendor, func->device); + return -ENODEV; + } + brcmf_dbg(SDIO, "Enter\n"); brcmf_dbg(SDIO, "Class=%x\n", func->class); diff -u linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c --- linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c +++ linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c @@ -1617,13 +1617,14 @@ { struct brcmf_pub *drvr = ifp->drvr; struct brcmf_wsec_pmk_le pmk; - int i, err; + int err; - /* convert to firmware key format */ - pmk.key_len = cpu_to_le16(pmk_len << 1); - pmk.flags = cpu_to_le16(BRCMF_WSEC_PASSPHRASE); - for (i = 0; i < pmk_len; i++) - snprintf(&pmk.key[2 * i], 3, "%02x", pmk_data[i]); + memset(&pmk, 0, sizeof(pmk)); + + /* pass pmk directly */ + pmk.key_len = cpu_to_le16(pmk_len); + pmk.flags = cpu_to_le16(0); + memcpy(pmk.key, pmk_data, pmk_len); /* store psk in firmware */ err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_WSEC_PMK, diff -u linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c --- linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c +++ linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -1653,6 +1654,13 @@ return 0; } +struct brcmf_random_seed_footer { + __le32 length; + __le32 magic; +}; + +#define BRCMF_RANDOM_SEED_MAGIC 0xfeedc0de +#define BRCMF_RANDOM_SEED_LENGTH 0x100 static int brcmf_pcie_download_fw_nvram(struct brcmf_pciedev_info *devinfo, const struct firmware *fw, void *nvram, @@ -1689,6 +1697,30 @@ nvram_len; memcpy_toio(devinfo->tcm + address, nvram, nvram_len); brcmf_fw_nvram_free(nvram); + + if (devinfo->otp.valid) { + size_t rand_len = BRCMF_RANDOM_SEED_LENGTH; + struct brcmf_random_seed_footer footer = { + .length = cpu_to_le32(rand_len), + .magic = cpu_to_le32(BRCMF_RANDOM_SEED_MAGIC), + }; + void *randbuf; + + /* Some Apple chips/firmwares expect a buffer of random + * data to be present before NVRAM + */ + brcmf_dbg(PCIE, "Download random seed\n"); + + address -= sizeof(footer); + memcpy_toio(devinfo->tcm + address, &footer, + sizeof(footer)); + + address -= rand_len; + randbuf = kzalloc(rand_len, GFP_KERNEL); + get_random_bytes(randbuf, rand_len); + memcpy_toio(devinfo->tcm + address, randbuf, rand_len); + kfree(randbuf); + } } else { brcmf_dbg(PCIE, "No matching NVRAM file found %s\n", devinfo->nvram_name); @@ -2339,6 +2371,9 @@ } #endif +/* Forward declaration for pci_match_id() call */ +static const struct pci_device_id brcmf_pcie_devid_table[]; + static int brcmf_pcie_probe(struct pci_dev *pdev, const struct pci_device_id *id) { @@ -2349,6 +2384,14 @@ struct brcmf_core *core; struct brcmf_bus *bus; + if (!id) { + id = pci_match_id(brcmf_pcie_devid_table, pdev); + if (!id) { + pci_err(pdev, "Error could not find pci_device_id for %x:%x\n", pdev->vendor, pdev->device); + return -ENODEV; + } + } + brcmf_dbg(PCIE, "Enter %x:%x\n", pdev->vendor, pdev->device); ret = -ENOMEM; diff -u linux-6.2.0/drivers/net/wireless/intel/iwlwifi/fw/dbg.c linux-6.2.0/drivers/net/wireless/intel/iwlwifi/fw/dbg.c --- linux-6.2.0/drivers/net/wireless/intel/iwlwifi/fw/dbg.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/fw/dbg.c @@ -1664,14 +1664,10 @@ } static void * -iwl_dump_ini_mon_fill_header(struct iwl_fw_runtime *fwrt, - struct iwl_dump_ini_region_data *reg_data, +iwl_dump_ini_mon_fill_header(struct iwl_fw_runtime *fwrt, u32 alloc_id, struct iwl_fw_ini_monitor_dump *data, const struct iwl_fw_mon_regs *addrs) { - struct iwl_fw_ini_region_tlv *reg = (void *)reg_data->reg_tlv->data; - u32 alloc_id = le32_to_cpu(reg->dram_alloc_id); - if (!iwl_trans_grab_nic_access(fwrt->trans)) { IWL_ERR(fwrt, "Failed to get monitor header\n"); return NULL; @@ -1702,8 +1698,10 @@ void *data, u32 data_len) { struct iwl_fw_ini_monitor_dump *mon_dump = (void *)data; + struct iwl_fw_ini_region_tlv *reg = (void *)reg_data->reg_tlv->data; + u32 alloc_id = le32_to_cpu(reg->dram_alloc_id); - return iwl_dump_ini_mon_fill_header(fwrt, reg_data, mon_dump, + return iwl_dump_ini_mon_fill_header(fwrt, alloc_id, mon_dump, &fwrt->trans->cfg->mon_dram_regs); } @@ -1713,8 +1711,10 @@ void *data, u32 data_len) { struct iwl_fw_ini_monitor_dump *mon_dump = (void *)data; + struct iwl_fw_ini_region_tlv *reg = (void *)reg_data->reg_tlv->data; + u32 alloc_id = le32_to_cpu(reg->internal_buffer.alloc_id); - return iwl_dump_ini_mon_fill_header(fwrt, reg_data, mon_dump, + return iwl_dump_ini_mon_fill_header(fwrt, alloc_id, mon_dump, &fwrt->trans->cfg->mon_smem_regs); } @@ -1725,7 +1725,10 @@ { struct iwl_fw_ini_monitor_dump *mon_dump = (void *)data; - return iwl_dump_ini_mon_fill_header(fwrt, reg_data, mon_dump, + return iwl_dump_ini_mon_fill_header(fwrt, + /* no offset calculation later */ + IWL_FW_INI_ALLOCATION_ID_DBGC1, + mon_dump, &fwrt->trans->cfg->mon_dbgi_regs); } diff -u linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/d3.c linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/d3.c --- linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/d3.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/d3.c @@ -2016,6 +2016,12 @@ { u32 i; + if (!data) { + IWL_ERR(mvm, "iwl_wowlan_info_notif data is NULL\n"); + status = NULL; + return; + } + if (len < sizeof(*data)) { IWL_ERR(mvm, "Invalid WoWLAN info notification!\n"); status = NULL; @@ -2703,10 +2709,33 @@ struct iwl_d3_data *d3_data = data; u32 len; int ret; + int wowlan_info_ver = iwl_fw_lookup_notif_ver(mvm->fw, + PROT_OFFLOAD_GROUP, + WOWLAN_INFO_NOTIFICATION, + IWL_FW_CMD_VER_UNKNOWN); + switch (WIDE_ID(pkt->hdr.group_id, pkt->hdr.cmd)) { case WIDE_ID(PROT_OFFLOAD_GROUP, WOWLAN_INFO_NOTIFICATION): { - struct iwl_wowlan_info_notif *notif = (void *)pkt->data; + struct iwl_wowlan_info_notif *notif; + + if (wowlan_info_ver < 2) { + struct iwl_wowlan_info_notif_v1 *notif_v1 = (void *)pkt->data; + + notif = kmemdup(notif_v1, + offsetofend(struct iwl_wowlan_info_notif, + received_beacons), + GFP_ATOMIC); + + if (!notif) + return false; + + notif->tid_tear_down = notif_v1->tid_tear_down; + notif->station_id = notif_v1->station_id; + + } else { + notif = (void *)pkt->data; + } if (d3_data->notif_received & IWL_D3_NOTIF_WOWLAN_INFO) { /* We might get two notifications due to dual bss */ @@ -2715,10 +2744,15 @@ break; } + d3_data->notif_received |= IWL_D3_NOTIF_WOWLAN_INFO; len = iwl_rx_packet_payload_len(pkt); iwl_mvm_parse_wowlan_info_notif(mvm, notif, d3_data->status, len); + + if (wowlan_info_ver < 2) + kfree(notif); + if (d3_data->status && d3_data->status->wakeup_reasons & IWL_WOWLAN_WAKEUP_REASON_HAS_WAKEUP_PKT) /* We are supposed to get also wake packet notif */ diff -u linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c --- linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -3587,7 +3587,7 @@ struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); struct iwl_mvm_sta *mvmsta = NULL; - struct iwl_mvm_key_pn *ptk_pn; + struct iwl_mvm_key_pn *ptk_pn = NULL; int keyidx = key->keyidx; u32 sec_key_id = WIDE_ID(DATA_PATH_GROUP, SEC_KEY_CMD); u8 sec_key_ver = iwl_fw_lookup_cmd_ver(mvm->fw, sec_key_id, 0); @@ -3739,6 +3739,10 @@ if (ret) { IWL_WARN(mvm, "set key failed\n"); key->hw_key_idx = STA_KEY_IDX_INVALID; + if (ptk_pn) { + RCU_INIT_POINTER(mvmsta->ptk_pn[keyidx], NULL); + kfree(ptk_pn); + } /* * can't add key for RX, but we don't need it * in the device for TX so still return 0, diff -u linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c --- linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c @@ -1977,7 +1977,7 @@ RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL); /* Unblock BCAST / MCAST station */ iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, false); - cancel_delayed_work_sync(&mvm->cs_tx_unblock_dwork); + cancel_delayed_work(&mvm->cs_tx_unblock_dwork); } } diff -u linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c --- linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c @@ -505,6 +505,7 @@ /* Bz devices */ {IWL_PCI_DEVICE(0x2727, PCI_ANY_ID, iwl_bz_trans_cfg)}, + {IWL_PCI_DEVICE(0x272b, PCI_ANY_ID, iwl_bz_trans_cfg)}, {IWL_PCI_DEVICE(0xA840, PCI_ANY_ID, iwl_bz_trans_cfg)}, {IWL_PCI_DEVICE(0x7740, PCI_ANY_ID, iwl_bz_trans_cfg)}, #endif /* CONFIG_IWLMVM */ @@ -1699,6 +1700,9 @@ { struct iwl_trans *trans = pci_get_drvdata(pdev); + if (!trans) + return; + iwl_drv_stop(trans->drv); iwl_trans_pcie_free(trans); diff -u linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c --- linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c @@ -2861,7 +2861,7 @@ void *buf, ssize_t *size, ssize_t *bytes_copied) { - int buf_size_left = count - *bytes_copied; + ssize_t buf_size_left = count - *bytes_copied; buf_size_left = buf_size_left - (buf_size_left % sizeof(u32)); if (*size > buf_size_left) diff -u linux-6.2.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mac.c linux-6.2.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mac.c --- linux-6.2.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mac.c +++ linux-6.2.0/drivers/net/wireless/mediatek/mt76/mt76_connac_mac.c @@ -576,7 +576,8 @@ /* PPDU based reporting */ if (FIELD_GET(MT_TXS0_TXS_FORMAT, txs) > 1) { stats->tx_bytes += - le32_get_bits(txs_data[5], MT_TXS5_MPDU_TX_BYTE); + le32_get_bits(txs_data[5], MT_TXS5_MPDU_TX_BYTE) - + le32_get_bits(txs_data[7], MT_TXS7_MPDU_RETRY_BYTE); stats->tx_packets += le32_get_bits(txs_data[5], MT_TXS5_MPDU_TX_CNT); stats->tx_failed += diff -u linux-6.2.0/drivers/net/wireless/realtek/rtw88/mac80211.c linux-6.2.0/drivers/net/wireless/realtek/rtw88/mac80211.c --- linux-6.2.0/drivers/net/wireless/realtek/rtw88/mac80211.c +++ linux-6.2.0/drivers/net/wireless/realtek/rtw88/mac80211.c @@ -893,7 +893,7 @@ struct rtw_sta_info *si = (struct rtw_sta_info *)sta->drv_priv; if (changed & IEEE80211_RC_BW_CHANGED) - rtw_update_sta_info(rtwdev, si, true); + ieee80211_queue_work(rtwdev->hw, &si->rc_work); } const struct ieee80211_ops rtw_ops = { diff -u linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.c linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.c --- linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.c +++ linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.c @@ -298,6 +298,17 @@ return mac_id; } +static void rtw_sta_rc_work(struct work_struct *work) +{ + struct rtw_sta_info *si = container_of(work, struct rtw_sta_info, + rc_work); + struct rtw_dev *rtwdev = si->rtwdev; + + mutex_lock(&rtwdev->mutex); + rtw_update_sta_info(rtwdev, si, true); + mutex_unlock(&rtwdev->mutex); +} + int rtw_sta_add(struct rtw_dev *rtwdev, struct ieee80211_sta *sta, struct ieee80211_vif *vif) { @@ -308,12 +319,14 @@ if (si->mac_id >= RTW_MAX_MAC_ID_NUM) return -ENOSPC; + si->rtwdev = rtwdev; si->sta = sta; si->vif = vif; si->init_ra_lv = 1; ewma_rssi_init(&si->avg_rssi); for (i = 0; i < ARRAY_SIZE(sta->txq); i++) rtw_txq_init(rtwdev, sta->txq[i]); + INIT_WORK(&si->rc_work, rtw_sta_rc_work); rtw_update_sta_info(rtwdev, si, true); rtw_fw_media_status_report(rtwdev, si->mac_id, true); @@ -332,6 +345,8 @@ struct rtw_sta_info *si = (struct rtw_sta_info *)sta->drv_priv; int i; + cancel_work_sync(&si->rc_work); + rtw_release_macid(rtwdev, si->mac_id); if (fw_exist) rtw_fw_media_status_report(rtwdev, si->mac_id, false); diff -u linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.h linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.h --- linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.h +++ linux-6.2.0/drivers/net/wireless/realtek/rtw88/main.h @@ -734,6 +734,7 @@ DECLARE_EWMA(rssi, 10, 16); struct rtw_sta_info { + struct rtw_dev *rtwdev; struct ieee80211_sta *sta; struct ieee80211_vif *vif; @@ -758,6 +759,8 @@ bool use_cfg_mask; struct cfg80211_bitrate_mask *mask; + + struct work_struct rc_work; }; enum rtw_bfee_role { diff -u linux-6.2.0/drivers/net/wireless/realtek/rtw89/mac.c linux-6.2.0/drivers/net/wireless/realtek/rtw89/mac.c --- linux-6.2.0/drivers/net/wireless/realtek/rtw89/mac.c +++ linux-6.2.0/drivers/net/wireless/realtek/rtw89/mac.c @@ -1422,6 +1422,8 @@ .wde_size4 = {RTW89_WDE_PG_64, 0, 4096,}, /* PCIE 64 */ .wde_size6 = {RTW89_WDE_PG_64, 512, 0,}, + /* 8852B PCIE SCC */ + .wde_size7 = {RTW89_WDE_PG_64, 510, 2,}, /* DLFW */ .wde_size9 = {RTW89_WDE_PG_64, 0, 1024,}, /* 8852C DLFW */ @@ -1446,6 +1448,8 @@ .wde_qt4 = {0, 0, 0, 0,}, /* PCIE 64 */ .wde_qt6 = {448, 48, 0, 16,}, + /* 8852B PCIE SCC */ + .wde_qt7 = {446, 48, 0, 16,}, /* 8852C DLFW */ .wde_qt17 = {0, 0, 0, 0,}, /* 8852C PCIE SCC */ diff -u linux-6.2.0/drivers/net/wireless/realtek/rtw89/rtw8852b.c linux-6.2.0/drivers/net/wireless/realtek/rtw89/rtw8852b.c --- linux-6.2.0/drivers/net/wireless/realtek/rtw89/rtw8852b.c +++ linux-6.2.0/drivers/net/wireless/realtek/rtw89/rtw8852b.c @@ -13,25 +13,25 @@ #include "txrx.h" static const struct rtw89_hfc_ch_cfg rtw8852b_hfc_chcfg_pcie[] = { - {5, 343, grp_0}, /* ACH 0 */ - {5, 343, grp_0}, /* ACH 1 */ - {5, 343, grp_0}, /* ACH 2 */ - {5, 343, grp_0}, /* ACH 3 */ + {5, 341, grp_0}, /* ACH 0 */ + {5, 341, grp_0}, /* ACH 1 */ + {4, 342, grp_0}, /* ACH 2 */ + {4, 342, grp_0}, /* ACH 3 */ {0, 0, grp_0}, /* ACH 4 */ {0, 0, grp_0}, /* ACH 5 */ {0, 0, grp_0}, /* ACH 6 */ {0, 0, grp_0}, /* ACH 7 */ - {4, 344, grp_0}, /* B0MGQ */ - {4, 344, grp_0}, /* B0HIQ */ + {4, 342, grp_0}, /* B0MGQ */ + {4, 342, grp_0}, /* B0HIQ */ {0, 0, grp_0}, /* B1MGQ */ {0, 0, grp_0}, /* B1HIQ */ {40, 0, 0} /* FWCMDQ */ }; static const struct rtw89_hfc_pub_cfg rtw8852b_hfc_pubcfg_pcie = { - 448, /* Group 0 */ + 446, /* Group 0 */ 0, /* Group 1 */ - 448, /* Public Max */ + 446, /* Public Max */ 0 /* WP threshold */ }; @@ -44,9 +44,9 @@ }; static const struct rtw89_dle_mem rtw8852b_dle_mem_pcie[] = { - [RTW89_QTA_SCC] = {RTW89_QTA_SCC, &rtw89_mac_size.wde_size6, - &rtw89_mac_size.ple_size6, &rtw89_mac_size.wde_qt6, - &rtw89_mac_size.wde_qt6, &rtw89_mac_size.ple_qt18, + [RTW89_QTA_SCC] = {RTW89_QTA_SCC, &rtw89_mac_size.wde_size7, + &rtw89_mac_size.ple_size6, &rtw89_mac_size.wde_qt7, + &rtw89_mac_size.wde_qt7, &rtw89_mac_size.ple_qt18, &rtw89_mac_size.ple_qt58}, [RTW89_QTA_DLFW] = {RTW89_QTA_DLFW, &rtw89_mac_size.wde_size9, &rtw89_mac_size.ple_size8, &rtw89_mac_size.wde_qt4, diff -u linux-6.2.0/drivers/net/wwan/iosm/iosm_ipc_imem.c linux-6.2.0/drivers/net/wwan/iosm/iosm_ipc_imem.c --- linux-6.2.0/drivers/net/wwan/iosm/iosm_ipc_imem.c +++ linux-6.2.0/drivers/net/wwan/iosm/iosm_ipc_imem.c @@ -565,24 +565,32 @@ struct ipc_mux_config mux_cfg; struct iosm_imem *ipc_imem; u8 ctrl_chl_idx = 0; + int ret; ipc_imem = container_of(instance, struct iosm_imem, run_state_worker); if (ipc_imem->phase != IPC_P_RUN) { dev_err(ipc_imem->dev, "Modem link down. Exit run state worker."); - return; + goto err_out; } if (test_and_clear_bit(IOSM_DEVLINK_INIT, &ipc_imem->flag)) ipc_devlink_deinit(ipc_imem->ipc_devlink); - if (!ipc_imem_setup_cp_mux_cap_init(ipc_imem, &mux_cfg)) - ipc_imem->mux = ipc_mux_init(&mux_cfg, ipc_imem); + ret = ipc_imem_setup_cp_mux_cap_init(ipc_imem, &mux_cfg); + if (ret < 0) + goto err_out; + + ipc_imem->mux = ipc_mux_init(&mux_cfg, ipc_imem); + if (!ipc_imem->mux) + goto err_out; + + ret = ipc_imem_wwan_channel_init(ipc_imem, mux_cfg.protocol); + if (ret < 0) + goto err_ipc_mux_deinit; - ipc_imem_wwan_channel_init(ipc_imem, mux_cfg.protocol); - if (ipc_imem->mux) - ipc_imem->mux->wwan = ipc_imem->wwan; + ipc_imem->mux->wwan = ipc_imem->wwan; while (ctrl_chl_idx < IPC_MEM_MAX_CHANNELS) { if (!ipc_chnl_cfg_get(&chnl_cfg_port, ctrl_chl_idx)) { @@ -622,6 +630,13 @@ /* Complete all memory stores after setting bit */ smp_mb__after_atomic(); + + return; + +err_ipc_mux_deinit: + ipc_mux_deinit(ipc_imem->mux); +err_out: + ipc_uevent_send(ipc_imem->dev, UEVENT_CD_READY_LINK_DOWN); } static void ipc_imem_handle_irq(struct iosm_imem *ipc_imem, int irq) diff -u linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.c linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.c --- linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.c +++ linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.c @@ -47,6 +47,7 @@ #define T7XX_PCI_IREG_BASE 0 #define T7XX_PCI_EREG_BASE 2 +#define T7XX_INIT_TIMEOUT 20 #define PM_SLEEP_DIS_TIMEOUT_MS 20 #define PM_ACK_TIMEOUT_MS 1500 #define PM_AUTOSUSPEND_MS 20000 @@ -98,6 +99,7 @@ spin_lock_init(&t7xx_dev->md_pm_lock); init_completion(&t7xx_dev->sleep_lock_acquire); init_completion(&t7xx_dev->pm_sr_ack); + init_completion(&t7xx_dev->init_done); atomic_set(&t7xx_dev->md_pm_state, MTK_PM_INIT); device_init_wakeup(&pdev->dev, true); @@ -126,6 +128,7 @@ pm_runtime_mark_last_busy(&t7xx_dev->pdev->dev); pm_runtime_allow(&t7xx_dev->pdev->dev); pm_runtime_put_noidle(&t7xx_dev->pdev->dev); + complete_all(&t7xx_dev->init_done); } static int t7xx_pci_pm_reinit(struct t7xx_pci_dev *t7xx_dev) @@ -531,6 +534,20 @@ __t7xx_pci_pm_suspend(pdev); } +static int t7xx_pci_pm_prepare(struct device *dev) +{ + struct pci_dev *pdev = to_pci_dev(dev); + struct t7xx_pci_dev *t7xx_dev; + + t7xx_dev = pci_get_drvdata(pdev); + if (!wait_for_completion_timeout(&t7xx_dev->init_done, T7XX_INIT_TIMEOUT * HZ)) { + dev_warn(dev, "Not ready for system sleep.\n"); + return -ETIMEDOUT; + } + + return 0; +} + static int t7xx_pci_pm_suspend(struct device *dev) { return __t7xx_pci_pm_suspend(to_pci_dev(dev)); @@ -557,6 +574,7 @@ } static const struct dev_pm_ops t7xx_pci_pm_ops = { + .prepare = t7xx_pci_pm_prepare, .suspend = t7xx_pci_pm_suspend, .resume = t7xx_pci_pm_resume, .resume_noirq = t7xx_pci_pm_resume_noirq, diff -u linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.h linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.h --- linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.h +++ linux-6.2.0/drivers/net/wwan/t7xx/t7xx_pci.h @@ -70,6 +70,7 @@ struct t7xx_modem *md; struct t7xx_ccmni_ctrl *ccmni_ctlb; bool rgu_pci_irq_en; + struct completion init_done; /* Low Power Items */ struct list_head md_pm_entities; diff -u linux-6.2.0/drivers/platform/x86/amd/pmf/core.c linux-6.2.0/drivers/platform/x86/amd/pmf/core.c --- linux-6.2.0/drivers/platform/x86/amd/pmf/core.c +++ linux-6.2.0/drivers/platform/x86/amd/pmf/core.c @@ -245,24 +245,29 @@ { } }; -int amd_pmf_init_metrics_table(struct amd_pmf_dev *dev) +static void amd_pmf_set_dram_addr(struct amd_pmf_dev *dev) { u64 phys_addr; u32 hi, low; - INIT_DELAYED_WORK(&dev->work_buffer, amd_pmf_get_metrics); + phys_addr = virt_to_phys(dev->buf); + hi = phys_addr >> 32; + low = phys_addr & GENMASK(31, 0); + + amd_pmf_send_cmd(dev, SET_DRAM_ADDR_HIGH, 0, hi, NULL); + amd_pmf_send_cmd(dev, SET_DRAM_ADDR_LOW, 0, low, NULL); +} +int amd_pmf_init_metrics_table(struct amd_pmf_dev *dev) +{ /* Get Metrics Table Address */ dev->buf = kzalloc(sizeof(dev->m_table), GFP_KERNEL); if (!dev->buf) return -ENOMEM; - phys_addr = virt_to_phys(dev->buf); - hi = phys_addr >> 32; - low = phys_addr & GENMASK(31, 0); + INIT_DELAYED_WORK(&dev->work_buffer, amd_pmf_get_metrics); - amd_pmf_send_cmd(dev, SET_DRAM_ADDR_HIGH, 0, hi, NULL); - amd_pmf_send_cmd(dev, SET_DRAM_ADDR_LOW, 0, low, NULL); + amd_pmf_set_dram_addr(dev); /* * Start collecting the metrics data after a small delay @@ -273,6 +278,18 @@ return 0; } +static int amd_pmf_resume_handler(struct device *dev) +{ + struct amd_pmf_dev *pdev = dev_get_drvdata(dev); + + if (pdev->buf) + amd_pmf_set_dram_addr(pdev); + + return 0; +} + +static DEFINE_SIMPLE_DEV_PM_OPS(amd_pmf_pm, NULL, amd_pmf_resume_handler); + static void amd_pmf_init_features(struct amd_pmf_dev *dev) { int ret; @@ -414,6 +431,7 @@ .name = "amd-pmf", .acpi_match_table = amd_pmf_acpi_ids, .dev_groups = amd_pmf_driver_groups, + .pm = pm_sleep_ptr(&amd_pmf_pm), }, .probe = amd_pmf_probe, .remove = amd_pmf_remove, diff -u linux-6.2.0/drivers/platform/x86/thinkpad_acpi.c linux-6.2.0/drivers/platform/x86/thinkpad_acpi.c --- linux-6.2.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-6.2.0/drivers/platform/x86/thinkpad_acpi.c @@ -10318,6 +10318,7 @@ static DEFINE_MUTEX(dytc_mutex); static int dytc_capabilities; static bool dytc_mmc_get_available; +static int profile_force; static int convert_dytc_to_profile(int funcmode, int dytcmode, enum platform_profile_option *profile) @@ -10580,6 +10581,21 @@ if (err) return err; + /* Check if user wants to override the profile selection */ + if (profile_force) { + switch (profile_force) { + case -1: + dytc_capabilities = 0; + break; + case 1: + dytc_capabilities = BIT(DYTC_FC_MMC); + break; + case 2: + dytc_capabilities = BIT(DYTC_FC_PSC); + break; + } + pr_debug("Profile selection forced: 0x%x\n", dytc_capabilities); + } if (dytc_capabilities & BIT(DYTC_FC_MMC)) { /* MMC MODE */ pr_debug("MMC is supported\n"); /* @@ -10593,11 +10609,6 @@ dytc_mmc_get_available = true; } } else if (dytc_capabilities & BIT(DYTC_FC_PSC)) { /* PSC MODE */ - /* Support for this only works on AMD platforms */ - if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) { - dbg_printk(TPACPI_DBG_INIT, "PSC not support on Intel platforms\n"); - return -ENODEV; - } pr_debug("PSC is supported\n"); } else { dbg_printk(TPACPI_DBG_INIT, "No DYTC support available\n"); @@ -11646,6 +11657,9 @@ "Initial state of the emulated UWB switch"); #endif +module_param(profile_force, int, 0444); +MODULE_PARM_DESC(profile_force, "Force profile mode. -1=off, 1=MMC, 2=PSC"); + static void thinkpad_acpi_module_exit(void) { struct ibm_struct *ibm, *itmp; diff -u linux-6.2.0/drivers/power/supply/axp288_fuel_gauge.c linux-6.2.0/drivers/power/supply/axp288_fuel_gauge.c --- linux-6.2.0/drivers/power/supply/axp288_fuel_gauge.c +++ linux-6.2.0/drivers/power/supply/axp288_fuel_gauge.c @@ -507,7 +507,7 @@ mutex_lock(&info->lock); info->valid = 0; /* Force updating of the cached registers */ mutex_unlock(&info->lock); - power_supply_changed(info->bat); + power_supply_changed(psy); } static struct power_supply_desc fuel_gauge_desc = { diff -u linux-6.2.0/drivers/power/supply/bq24190_charger.c linux-6.2.0/drivers/power/supply/bq24190_charger.c --- linux-6.2.0/drivers/power/supply/bq24190_charger.c +++ linux-6.2.0/drivers/power/supply/bq24190_charger.c @@ -1262,6 +1262,7 @@ bq24190_charger_set_property(bdi->charger, POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT, &val); + power_supply_changed(bdi->charger); } /* Sync the input-current-limit with our parent supply (if we have one) */ diff -u linux-6.2.0/drivers/s390/block/dasd_eckd.c linux-6.2.0/drivers/s390/block/dasd_eckd.c --- linux-6.2.0/drivers/s390/block/dasd_eckd.c +++ linux-6.2.0/drivers/s390/block/dasd_eckd.c @@ -127,6 +127,8 @@ struct dasd_device *, struct dasd_device *, unsigned int, int, unsigned int, unsigned int, unsigned int, unsigned int); +static int dasd_eckd_query_pprc_status(struct dasd_device *, + struct dasd_pprc_data_sc4 *); /* initial attempt at a probe function. this can be simplified once * the other detection code is gone */ @@ -3732,6 +3734,26 @@ return count; } +static int dasd_in_copy_relation(struct dasd_device *device) +{ + struct dasd_pprc_data_sc4 *temp; + int rc; + + if (!dasd_eckd_pprc_enabled(device)) + return 0; + + temp = kzalloc(sizeof(*temp), GFP_KERNEL); + if (!temp) + return -ENOMEM; + + rc = dasd_eckd_query_pprc_status(device, temp); + if (!rc) + rc = temp->dev_info[0].state; + + kfree(temp); + return rc; +} + /* * Release allocated space for a given range or an entire volume. */ @@ -3748,6 +3770,7 @@ int cur_to_trk, cur_from_trk; struct dasd_ccw_req *cqr; u32 beg_cyl, end_cyl; + int copy_relation; struct ccw1 *ccw; int trks_per_ext; size_t ras_size; @@ -3759,6 +3782,10 @@ if (dasd_eckd_ras_sanity_checks(device, first_trk, last_trk)) return ERR_PTR(-EINVAL); + copy_relation = dasd_in_copy_relation(device); + if (copy_relation < 0) + return ERR_PTR(copy_relation); + rq = req ? blk_mq_rq_to_pdu(req) : NULL; features = &private->features; @@ -3787,9 +3814,11 @@ /* * This bit guarantees initialisation of tracks within an extent that is * not fully specified, but is only supported with a certain feature - * subset. + * subset and for devices not in a copy relation. */ - ras_data->op_flags.guarantee_init = !!(features->feature[56] & 0x01); + if (features->feature[56] & 0x01 && !copy_relation) + ras_data->op_flags.guarantee_init = 1; + ras_data->lss = private->conf.ned->ID; ras_data->dev_addr = private->conf.ned->unit_addr; ras_data->nr_exts = nr_exts; diff -u linux-6.2.0/drivers/scsi/storvsc_drv.c linux-6.2.0/drivers/scsi/storvsc_drv.c --- linux-6.2.0/drivers/scsi/storvsc_drv.c +++ linux-6.2.0/drivers/scsi/storvsc_drv.c @@ -1780,7 +1780,7 @@ length = scsi_bufflen(scmnd); payload = (struct vmbus_packet_mpb_array *)&cmd_request->mpb; - payload_sz = sizeof(cmd_request->mpb); + payload_sz = 0; if (scsi_sg_count(scmnd)) { unsigned long offset_in_hvpg = offset_in_hvpage(sgl->offset); @@ -1789,10 +1789,10 @@ unsigned long hvpfn, hvpfns_to_add; int j, i = 0, sg_count; - if (hvpg_count > MAX_PAGE_BUFFER_COUNT) { + payload_sz = (hvpg_count * sizeof(u64) + + sizeof(struct vmbus_packet_mpb_array)); - payload_sz = (hvpg_count * sizeof(u64) + - sizeof(struct vmbus_packet_mpb_array)); + if (hvpg_count > MAX_PAGE_BUFFER_COUNT) { payload = kzalloc(payload_sz, GFP_ATOMIC); if (!payload) return SCSI_MLQUEUE_DEVICE_BUSY; diff -u linux-6.2.0/drivers/soc/qcom/llcc-qcom.c linux-6.2.0/drivers/soc/qcom/llcc-qcom.c --- linux-6.2.0/drivers/soc/qcom/llcc-qcom.c +++ linux-6.2.0/drivers/soc/qcom/llcc-qcom.c @@ -122,10 +122,11 @@ struct qcom_llcc_config { const struct llcc_slice_config *sct_data; - int size; - bool need_llcc_cfg; const u32 *reg_offset; const struct llcc_edac_reg_offset *edac_reg_offset; + int size; + bool need_llcc_cfg; + bool no_edac; }; enum llcc_reg_offset { @@ -454,6 +455,7 @@ .need_llcc_cfg = false, .reg_offset = llcc_v1_reg_offset, .edac_reg_offset = &llcc_v1_edac_reg_offset, + .no_edac = true, }; static const struct qcom_llcc_config sm6350_cfg = { @@ -1001,7 +1003,14 @@ goto err; drv_data->ecc_irq = platform_get_irq_optional(pdev, 0); - if (drv_data->ecc_irq >= 0) { + + /* + * On some platforms, the access to EDAC registers will be locked by + * the bootloader. So probing the EDAC driver will result in a crash. + * Hence, disable the creation of EDAC platform device for the + * problematic platforms. + */ + if (!cfg->no_edac) { llcc_edac = platform_device_register_data(&pdev->dev, "qcom_llcc_edac", -1, drv_data, sizeof(*drv_data)); diff -u linux-6.2.0/drivers/soundwire/qcom.c linux-6.2.0/drivers/soundwire/qcom.c --- linux-6.2.0/drivers/soundwire/qcom.c +++ linux-6.2.0/drivers/soundwire/qcom.c @@ -1217,6 +1217,9 @@ ctrl->num_dout_ports = val; nports = ctrl->num_dout_ports + ctrl->num_din_ports; + if (nports > QCOM_SDW_MAX_PORTS) + return -EINVAL; + /* Valid port numbers are from 1-14, so mask out port 0 explicitly */ set_bit(0, &ctrl->dout_port_mask); set_bit(0, &ctrl->din_port_mask); diff -u linux-6.2.0/drivers/spi/spi-fsl-spi.c linux-6.2.0/drivers/spi/spi-fsl-spi.c --- linux-6.2.0/drivers/spi/spi-fsl-spi.c +++ linux-6.2.0/drivers/spi/spi-fsl-spi.c @@ -177,26 +177,6 @@ return bits_per_word; } -static int mspi_apply_qe_mode_quirks(struct spi_mpc8xxx_cs *cs, - struct spi_device *spi, - int bits_per_word) -{ - /* CPM/QE uses Little Endian for words > 8 - * so transform 16 and 32 bits words into 8 bits - * Unfortnatly that doesn't work for LSB so - * reject these for now */ - /* Note: 32 bits word, LSB works iff - * tfcr/rfcr is set to CPMFCR_GBL */ - if (spi->mode & SPI_LSB_FIRST && - bits_per_word > 8) - return -EINVAL; - if (bits_per_word <= 8) - return bits_per_word; - if (bits_per_word == 16 || bits_per_word == 32) - return 8; /* pretend its 8 bits */ - return -EINVAL; -} - static int fsl_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) { @@ -224,9 +204,6 @@ bits_per_word = mspi_apply_cpu_mode_quirks(cs, spi, mpc8xxx_spi, bits_per_word); - else - bits_per_word = mspi_apply_qe_mode_quirks(cs, spi, - bits_per_word); if (bits_per_word < 0) return bits_per_word; @@ -361,6 +338,22 @@ t->bits_per_word = 32; else if ((t->len & 1) == 0) t->bits_per_word = 16; + } else { + /* + * CPM/QE uses Little Endian for words > 8 + * so transform 16 and 32 bits words into 8 bits + * Unfortnatly that doesn't work for LSB so + * reject these for now + * Note: 32 bits word, LSB works iff + * tfcr/rfcr is set to CPMFCR_GBL + */ + if (m->spi->mode & SPI_LSB_FIRST && t->bits_per_word > 8) + return -EINVAL; + if (t->bits_per_word == 16 || t->bits_per_word == 32) + t->bits_per_word = 8; /* pretend its 8 bits */ + if (t->bits_per_word == 8 && t->len >= 256 && + (mpc8xxx_spi->flags & SPI_CPM1)) + t->bits_per_word = 16; } } return fsl_spi_setup_transfer(m->spi, first); @@ -594,8 +587,14 @@ if (mpc8xxx_spi->type == TYPE_GRLIB) fsl_spi_grlib_probe(dev); - master->bits_per_word_mask = - (SPI_BPW_RANGE_MASK(4, 16) | SPI_BPW_MASK(32)) & + if (mpc8xxx_spi->flags & SPI_CPM_MODE) + master->bits_per_word_mask = + (SPI_BPW_RANGE_MASK(4, 8) | SPI_BPW_MASK(16) | SPI_BPW_MASK(32)); + else + master->bits_per_word_mask = + (SPI_BPW_RANGE_MASK(4, 16) | SPI_BPW_MASK(32)); + + master->bits_per_word_mask &= SPI_BPW_RANGE_MASK(1, mpc8xxx_spi->max_bits_per_word); if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) diff -u linux-6.2.0/drivers/spi/spi-imx.c linux-6.2.0/drivers/spi/spi-imx.c --- linux-6.2.0/drivers/spi/spi-imx.c +++ linux-6.2.0/drivers/spi/spi-imx.c @@ -252,6 +252,18 @@ return true; } +/* + * Note the number of natively supported chip selects for MX51 is 4. Some + * devices may have less actual SS pins but the register map supports 4. When + * using gpio chip selects the cs values passed into the macros below can go + * outside the range 0 - 3. We therefore need to limit the cs value to avoid + * corrupting bits outside the allocated locations. + * + * The simplest way to do this is to just mask the cs bits to 2 bits. This + * still allows all 4 native chip selects to work as well as gpio chip selects + * (which can use any of the 4 chip select configurations). + */ + #define MX51_ECSPI_CTRL 0x08 #define MX51_ECSPI_CTRL_ENABLE (1 << 0) #define MX51_ECSPI_CTRL_XCH (1 << 2) @@ -260,16 +272,16 @@ #define MX51_ECSPI_CTRL_DRCTL(drctl) ((drctl) << 16) #define MX51_ECSPI_CTRL_POSTDIV_OFFSET 8 #define MX51_ECSPI_CTRL_PREDIV_OFFSET 12 -#define MX51_ECSPI_CTRL_CS(cs) ((cs) << 18) +#define MX51_ECSPI_CTRL_CS(cs) ((cs & 3) << 18) #define MX51_ECSPI_CTRL_BL_OFFSET 20 #define MX51_ECSPI_CTRL_BL_MASK (0xfff << 20) #define MX51_ECSPI_CONFIG 0x0c -#define MX51_ECSPI_CONFIG_SCLKPHA(cs) (1 << ((cs) + 0)) -#define MX51_ECSPI_CONFIG_SCLKPOL(cs) (1 << ((cs) + 4)) -#define MX51_ECSPI_CONFIG_SBBCTRL(cs) (1 << ((cs) + 8)) -#define MX51_ECSPI_CONFIG_SSBPOL(cs) (1 << ((cs) + 12)) -#define MX51_ECSPI_CONFIG_SCLKCTL(cs) (1 << ((cs) + 20)) +#define MX51_ECSPI_CONFIG_SCLKPHA(cs) (1 << ((cs & 3) + 0)) +#define MX51_ECSPI_CONFIG_SCLKPOL(cs) (1 << ((cs & 3) + 4)) +#define MX51_ECSPI_CONFIG_SBBCTRL(cs) (1 << ((cs & 3) + 8)) +#define MX51_ECSPI_CONFIG_SSBPOL(cs) (1 << ((cs & 3) + 12)) +#define MX51_ECSPI_CONFIG_SCLKCTL(cs) (1 << ((cs & 3) + 20)) #define MX51_ECSPI_INT 0x10 #define MX51_ECSPI_INT_TEEN (1 << 0) diff -u linux-6.2.0/drivers/target/iscsi/iscsi_target.c linux-6.2.0/drivers/target/iscsi/iscsi_target.c --- linux-6.2.0/drivers/target/iscsi/iscsi_target.c +++ linux-6.2.0/drivers/target/iscsi/iscsi_target.c @@ -4531,6 +4531,9 @@ iscsit_stop_time2retain_timer(sess); spin_unlock_bh(&se_tpg->session_lock); + if (sess->sess_ops->ErrorRecoveryLevel == 2) + iscsit_free_connection_recovery_entries(sess); + /* * transport_deregister_session_configfs() will clear the * struct se_node_acl->nacl_sess pointer now as a iscsi_np process context @@ -4554,9 +4557,6 @@ transport_deregister_session(sess->se_sess); - if (sess->sess_ops->ErrorRecoveryLevel == 2) - iscsit_free_connection_recovery_entries(sess); - iscsit_free_all_ooo_cmdsns(sess); spin_lock_bh(&se_tpg->session_lock); diff -u linux-6.2.0/drivers/thunderbolt/nhi.c linux-6.2.0/drivers/thunderbolt/nhi.c --- linux-6.2.0/drivers/thunderbolt/nhi.c +++ linux-6.2.0/drivers/thunderbolt/nhi.c @@ -54,6 +54,21 @@ return bit; } +static void nhi_mask_interrupt(struct tb_nhi *nhi, int mask, int ring) +{ + if (nhi->quirks & QUIRK_AUTO_CLEAR_INT) + return; + iowrite32(mask, nhi->iobase + REG_RING_INTERRUPT_MASK_CLEAR_BASE + ring); +} + +static void nhi_clear_interrupt(struct tb_nhi *nhi, int ring) +{ + if (nhi->quirks & QUIRK_AUTO_CLEAR_INT) + ioread32(nhi->iobase + REG_RING_NOTIFY_BASE + ring); + else + iowrite32(~0, nhi->iobase + REG_RING_INT_CLEAR + ring); +} + /* * ring_interrupt_active() - activate/deactivate interrupts for a single ring * @@ -61,8 +76,8 @@ */ static void ring_interrupt_active(struct tb_ring *ring, bool active) { - int reg = REG_RING_INTERRUPT_BASE + - ring_interrupt_index(ring) / 32 * 4; + int index = ring_interrupt_index(ring) / 32 * 4; + int reg = REG_RING_INTERRUPT_BASE + index; int interrupt_bit = ring_interrupt_index(ring) & 31; int mask = 1 << interrupt_bit; u32 old, new; @@ -123,7 +138,11 @@ "interrupt for %s %d is already %s\n", RING_TYPE(ring), ring->hop, active ? "enabled" : "disabled"); - iowrite32(new, ring->nhi->iobase + reg); + + if (active) + iowrite32(new, ring->nhi->iobase + reg); + else + nhi_mask_interrupt(ring->nhi, mask, index); } /* @@ -136,11 +155,11 @@ int i = 0; /* disable interrupts */ for (i = 0; i < RING_INTERRUPT_REG_COUNT(nhi); i++) - iowrite32(0, nhi->iobase + REG_RING_INTERRUPT_BASE + 4 * i); + nhi_mask_interrupt(nhi, ~0, 4 * i); /* clear interrupt status bits */ for (i = 0; i < RING_NOTIFY_REG_COUNT(nhi); i++) - ioread32(nhi->iobase + REG_RING_NOTIFY_BASE + 4 * i); + nhi_clear_interrupt(nhi, 4 * i); } /* ring helper methods */ diff -u linux-6.2.0/drivers/thunderbolt/nhi_regs.h linux-6.2.0/drivers/thunderbolt/nhi_regs.h --- linux-6.2.0/drivers/thunderbolt/nhi_regs.h +++ linux-6.2.0/drivers/thunderbolt/nhi_regs.h @@ -93,6 +93,8 @@ #define REG_RING_INTERRUPT_BASE 0x38200 #define RING_INTERRUPT_REG_COUNT(nhi) ((31 + 2 * nhi->hop_count) / 32) +#define REG_RING_INTERRUPT_MASK_CLEAR_BASE 0x38208 + #define REG_INT_THROTTLING_RATE 0x38c00 /* Interrupt Vector Allocation */ diff -u linux-6.2.0/drivers/tty/serial/8250/8250_bcm7271.c linux-6.2.0/drivers/tty/serial/8250/8250_bcm7271.c --- linux-6.2.0/drivers/tty/serial/8250/8250_bcm7271.c +++ linux-6.2.0/drivers/tty/serial/8250/8250_bcm7271.c @@ -1012,7 +1012,7 @@ of_property_read_u32(np, "clock-frequency", &clk_rate); /* See if a Baud clock has been specified */ - baud_mux_clk = of_clk_get_by_name(np, "sw_baud"); + baud_mux_clk = devm_clk_get(dev, "sw_baud"); if (IS_ERR(baud_mux_clk)) { if (PTR_ERR(baud_mux_clk) == -EPROBE_DEFER) { ret = -EPROBE_DEFER; @@ -1032,7 +1032,7 @@ if (clk_rate == 0) { dev_err(dev, "clock-frequency or clk not defined\n"); ret = -EINVAL; - goto release_dma; + goto err_clk_disable; } dev_dbg(dev, "DMA is %senabled\n", priv->dma_enabled ? "" : "not "); @@ -1119,6 +1119,8 @@ serial8250_unregister_port(priv->line); err: brcmuart_free_bufs(dev, priv); +err_clk_disable: + clk_disable_unprepare(baud_mux_clk); release_dma: if (priv->dma_enabled) brcmuart_arbitration(priv, 0); @@ -1133,6 +1135,7 @@ hrtimer_cancel(&priv->hrt); serial8250_unregister_port(priv->line); brcmuart_free_bufs(&pdev->dev, priv); + clk_disable_unprepare(priv->baud_mux_clk); if (priv->dma_enabled) brcmuart_arbitration(priv, 0); return 0; diff -u linux-6.2.0/drivers/tty/vt/vc_screen.c linux-6.2.0/drivers/tty/vt/vc_screen.c --- linux-6.2.0/drivers/tty/vt/vc_screen.c +++ linux-6.2.0/drivers/tty/vt/vc_screen.c @@ -656,10 +656,17 @@ } } - /* The vcs_size might have changed while we slept to grab - * the user buffer, so recheck. + /* The vc might have been freed or vcs_size might have changed + * while we slept to grab the user buffer, so recheck. * Return data written up to now on failure. */ + vc = vcs_vc(inode, &viewed); + if (!vc) { + if (written) + break; + ret = -ENXIO; + goto unlock_out; + } size = vcs_size(vc, attr, false); if (size < 0) { if (written) diff -u linux-6.2.0/drivers/ufs/core/ufshcd.c linux-6.2.0/drivers/ufs/core/ufshcd.c --- linux-6.2.0/drivers/ufs/core/ufshcd.c +++ linux-6.2.0/drivers/ufs/core/ufshcd.c @@ -9075,8 +9075,16 @@ * that performance might be impacted. */ ret = ufshcd_urgent_bkops(hba); - if (ret) + if (ret) { + /* + * If return err in suspend flow, IO will hang. + * Trigger error handler and break suspend for + * error recovery. + */ + ufshcd_force_error_recovery(hba); + ret = -EBUSY; goto enable_scaling; + } } else { /* make sure that auto bkops is disabled */ ufshcd_disable_auto_bkops(hba); diff -u linux-6.2.0/drivers/usb/core/usb.c linux-6.2.0/drivers/usb/core/usb.c --- linux-6.2.0/drivers/usb/core/usb.c +++ linux-6.2.0/drivers/usb/core/usb.c @@ -207,6 +207,82 @@ EXPORT_SYMBOL_GPL(usb_find_common_endpoints_reverse); /** + * usb_find_endpoint() - Given an endpoint address, search for the endpoint's + * usb_host_endpoint structure in an interface's current altsetting. + * @intf: the interface whose current altsetting should be searched + * @ep_addr: the endpoint address (number and direction) to find + * + * Search the altsetting's list of endpoints for one with the specified address. + * + * Return: Pointer to the usb_host_endpoint if found, %NULL otherwise. + */ +static const struct usb_host_endpoint *usb_find_endpoint( + const struct usb_interface *intf, unsigned int ep_addr) +{ + int n; + const struct usb_host_endpoint *ep; + + n = intf->cur_altsetting->desc.bNumEndpoints; + ep = intf->cur_altsetting->endpoint; + for (; n > 0; (--n, ++ep)) { + if (ep->desc.bEndpointAddress == ep_addr) + return ep; + } + return NULL; +} + +/** + * usb_check_bulk_endpoints - Check whether an interface's current altsetting + * contains a set of bulk endpoints with the given addresses. + * @intf: the interface whose current altsetting should be searched + * @ep_addrs: 0-terminated array of the endpoint addresses (number and + * direction) to look for + * + * Search for endpoints with the specified addresses and check their types. + * + * Return: %true if all the endpoints are found and are bulk, %false otherwise. + */ +bool usb_check_bulk_endpoints( + const struct usb_interface *intf, const u8 *ep_addrs) +{ + const struct usb_host_endpoint *ep; + + for (; *ep_addrs; ++ep_addrs) { + ep = usb_find_endpoint(intf, *ep_addrs); + if (!ep || !usb_endpoint_xfer_bulk(&ep->desc)) + return false; + } + return true; +} +EXPORT_SYMBOL_GPL(usb_check_bulk_endpoints); + +/** + * usb_check_int_endpoints - Check whether an interface's current altsetting + * contains a set of interrupt endpoints with the given addresses. + * @intf: the interface whose current altsetting should be searched + * @ep_addrs: 0-terminated array of the endpoint addresses (number and + * direction) to look for + * + * Search for endpoints with the specified addresses and check their types. + * + * Return: %true if all the endpoints are found and are interrupt, + * %false otherwise. + */ +bool usb_check_int_endpoints( + const struct usb_interface *intf, const u8 *ep_addrs) +{ + const struct usb_host_endpoint *ep; + + for (; *ep_addrs; ++ep_addrs) { + ep = usb_find_endpoint(intf, *ep_addrs); + if (!ep || !usb_endpoint_xfer_int(&ep->desc)) + return false; + } + return true; +} +EXPORT_SYMBOL_GPL(usb_check_int_endpoints); + +/** * usb_find_alt_setting() - Given a configuration, find the alternate setting * for the given interface. * @config: the configuration to search (not necessarily the current config). diff -u linux-6.2.0/drivers/usb/dwc3/core.h linux-6.2.0/drivers/usb/dwc3/core.h --- linux-6.2.0/drivers/usb/dwc3/core.h +++ linux-6.2.0/drivers/usb/dwc3/core.h @@ -1110,6 +1110,7 @@ * 3 - Reserved * @dis_metastability_quirk: set to disable metastability quirk. * @dis_split_quirk: set to disable split boundary. + * @suspended: set to track suspend event due to U3/L2. * @imod_interval: set the interrupt moderation interval in 250ns * increments or 0 to disable. * @max_cfg_eps: current max number of IN eps used across all USB configs. @@ -1327,6 +1328,7 @@ unsigned dis_split_quirk:1; unsigned async_callbacks:1; + unsigned suspended:1; u16 imod_interval; diff -u linux-6.2.0/drivers/usb/dwc3/debugfs.c linux-6.2.0/drivers/usb/dwc3/debugfs.c --- linux-6.2.0/drivers/usb/dwc3/debugfs.c +++ linux-6.2.0/drivers/usb/dwc3/debugfs.c @@ -327,6 +327,11 @@ unsigned int current_mode; unsigned long flags; u32 reg; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); reg = dwc3_readl(dwc->regs, DWC3_GSTS); @@ -345,6 +350,8 @@ } spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -390,6 +397,11 @@ struct dwc3 *dwc = s->private; unsigned long flags; u32 reg; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); reg = dwc3_readl(dwc->regs, DWC3_GCTL); @@ -409,6 +421,8 @@ seq_printf(s, "UNKNOWN %08x\n", DWC3_GCTL_PRTCAP(reg)); } + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -458,6 +472,11 @@ struct dwc3 *dwc = s->private; unsigned long flags; u32 reg; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); reg = dwc3_readl(dwc->regs, DWC3_DCTL); @@ -488,6 +507,8 @@ seq_printf(s, "UNKNOWN %d\n", reg); } + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -504,6 +525,7 @@ unsigned long flags; u32 testmode = 0; char buf[32]; + int ret; if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count))) return -EFAULT; @@ -521,10 +543,16 @@ else testmode = 0; + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; + spin_lock_irqsave(&dwc->lock, flags); dwc3_gadget_set_test_mode(dwc, testmode); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return count; } @@ -543,12 +571,18 @@ enum dwc3_link_state state; u32 reg; u8 speed; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); reg = dwc3_readl(dwc->regs, DWC3_GSTS); if (DWC3_GSTS_CURMOD(reg) != DWC3_GSTS_CURMOD_DEVICE) { seq_puts(s, "Not available\n"); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); return 0; } @@ -561,6 +595,8 @@ dwc3_gadget_hs_link_string(state)); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -579,6 +615,7 @@ char buf[32]; u32 reg; u8 speed; + int ret; if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count))) return -EFAULT; @@ -598,10 +635,15 @@ else return -EINVAL; + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; + spin_lock_irqsave(&dwc->lock, flags); reg = dwc3_readl(dwc->regs, DWC3_GSTS); if (DWC3_GSTS_CURMOD(reg) != DWC3_GSTS_CURMOD_DEVICE) { spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); return -EINVAL; } @@ -611,12 +653,15 @@ if (speed < DWC3_DSTS_SUPERSPEED && state != DWC3_LINK_STATE_RECOV) { spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); return -EINVAL; } dwc3_gadget_set_link_state(dwc, state); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return count; } @@ -640,6 +685,11 @@ unsigned long flags; u32 mdwidth; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_TXFIFO); @@ -652,6 +702,8 @@ seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -662,6 +714,11 @@ unsigned long flags; u32 mdwidth; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_RXFIFO); @@ -674,6 +731,8 @@ seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -683,12 +742,19 @@ struct dwc3 *dwc = dep->dwc; unsigned long flags; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_TXREQQ); seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -698,12 +764,19 @@ struct dwc3 *dwc = dep->dwc; unsigned long flags; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_RXREQQ); seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -713,12 +786,19 @@ struct dwc3 *dwc = dep->dwc; unsigned long flags; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_RXINFOQ); seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -728,12 +808,19 @@ struct dwc3 *dwc = dep->dwc; unsigned long flags; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_DESCFETCHQ); seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -743,12 +830,19 @@ struct dwc3 *dwc = dep->dwc; unsigned long flags; u32 val; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); val = dwc3_core_fifo_space(dep, DWC3_EVENTQ); seq_printf(s, "%u\n", val); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -793,6 +887,11 @@ struct dwc3 *dwc = dep->dwc; unsigned long flags; int i; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); if (dep->number <= 1) { @@ -822,6 +921,8 @@ out: spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -834,6 +935,11 @@ u32 lower_32_bits; u32 upper_32_bits; u32 reg; + int ret; + + ret = pm_runtime_resume_and_get(dwc->dev); + if (ret < 0) + return ret; spin_lock_irqsave(&dwc->lock, flags); reg = DWC3_GDBGLSPMUX_EPSELECT(dep->number); @@ -846,6 +952,8 @@ seq_printf(s, "0x%016llx\n", ep_info); spin_unlock_irqrestore(&dwc->lock, flags); + pm_runtime_put_sync(dwc->dev); + return 0; } @@ -905,6 +1013,7 @@ dwc->regset->regs = dwc3_regs; dwc->regset->nregs = ARRAY_SIZE(dwc3_regs); dwc->regset->base = dwc->regs - DWC3_GLOBALS_REGS_START; + dwc->regset->dev = dwc->dev; root = debugfs_create_dir(dev_name(dwc->dev), usb_debug_root); dwc->debug_root = root; diff -u linux-6.2.0/drivers/usb/dwc3/gadget.c linux-6.2.0/drivers/usb/dwc3/gadget.c --- linux-6.2.0/drivers/usb/dwc3/gadget.c +++ linux-6.2.0/drivers/usb/dwc3/gadget.c @@ -2478,7 +2478,7 @@ dwc3_writel(dwc->regs, DWC3_DCFG, reg); } -static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend) +static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on) { u32 reg; u32 timeout = 2000; @@ -2497,17 +2497,11 @@ reg &= ~DWC3_DCTL_KEEP_CONNECT; reg |= DWC3_DCTL_RUN_STOP; - if (dwc->has_hibernation) - reg |= DWC3_DCTL_KEEP_CONNECT; - __dwc3_gadget_set_speed(dwc); dwc->pullups_connected = true; } else { reg &= ~DWC3_DCTL_RUN_STOP; - if (dwc->has_hibernation && !suspend) - reg &= ~DWC3_DCTL_KEEP_CONNECT; - dwc->pullups_connected = false; } @@ -2552,7 +2546,6 @@ * bit. */ dwc3_stop_active_transfers(dwc); - __dwc3_gadget_stop(dwc); spin_unlock_irqrestore(&dwc->lock, flags); /* @@ -2589,7 +2582,34 @@ * remaining event generated by the controller while polling for * DSTS.DEVCTLHLT. */ - return dwc3_gadget_run_stop(dwc, false, false); + ret = dwc3_gadget_run_stop(dwc, false); + + /* + * Stop the gadget after controller is halted, so that if needed, the + * events to update EP0 state can still occur while the run/stop + * routine polls for the halted state. DEVTEN is cleared as part of + * gadget stop. + */ + spin_lock_irqsave(&dwc->lock, flags); + __dwc3_gadget_stop(dwc); + spin_unlock_irqrestore(&dwc->lock, flags); + + return ret; +} + +static int dwc3_gadget_soft_connect(struct dwc3 *dwc) +{ + /* + * In the Synopsys DWC_usb31 1.90a programming guide section + * 4.1.9, it specifies that for a reconnect after a + * device-initiated disconnect requires a core soft reset + * (DCTL.CSftRst) before enabling the run/stop bit. + */ + dwc3_core_soft_reset(dwc); + + dwc3_event_buffers_setup(dwc); + __dwc3_gadget_start(dwc); + return dwc3_gadget_run_stop(dwc, true); } static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) @@ -2630,21 +2650,10 @@ synchronize_irq(dwc->irq_gadget); - if (!is_on) { + if (!is_on) ret = dwc3_gadget_soft_disconnect(dwc); - } else { - /* - * In the Synopsys DWC_usb31 1.90a programming guide section - * 4.1.9, it specifies that for a reconnect after a - * device-initiated disconnect requires a core soft reset - * (DCTL.CSftRst) before enabling the run/stop bit. - */ - dwc3_core_soft_reset(dwc); - - dwc3_event_buffers_setup(dwc); - __dwc3_gadget_start(dwc); - ret = dwc3_gadget_run_stop(dwc, true, false); - } + else + ret = dwc3_gadget_soft_connect(dwc); pm_runtime_put(dwc->dev); @@ -3829,6 +3838,8 @@ { int reg; + dwc->suspended = false; + dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RX_DET); reg = dwc3_readl(dwc->regs, DWC3_DCTL); @@ -3860,6 +3871,8 @@ { u32 reg; + dwc->suspended = false; + /* * Ideally, dwc3_reset_gadget() would trigger the function * drivers to stop any active transfers through ep disable. @@ -4089,6 +4102,8 @@ static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc) { + dwc->suspended = false; + /* * TODO take core out of low power mode when that's * implemented. @@ -4204,36 +4219,14 @@ { enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; - if (dwc->link_state != next && next == DWC3_LINK_STATE_U3) + if (!dwc->suspended && next == DWC3_LINK_STATE_U3) { + dwc->suspended = true; dwc3_suspend_gadget(dwc); + } dwc->link_state = next; } -static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc, - unsigned int evtinfo) -{ - unsigned int is_ss = evtinfo & BIT(4); - - /* - * WORKAROUND: DWC3 revision 2.20a with hibernation support - * have a known issue which can cause USB CV TD.9.23 to fail - * randomly. - * - * Because of this issue, core could generate bogus hibernation - * events which SW needs to ignore. - * - * Refers to: - * - * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0 - * Device Fallback from SuperSpeed - */ - if (is_ss ^ (dwc->speed == USB_SPEED_SUPER)) - return; - - /* enter hibernation here */ -} - static void dwc3_gadget_interrupt(struct dwc3 *dwc, const struct dwc3_event_devt *event) { @@ -4251,11 +4244,7 @@ dwc3_gadget_wakeup_interrupt(dwc); break; case DWC3_DEVICE_EVENT_HIBER_REQ: - if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation, - "unexpected hibernation event\n")) - break; - - dwc3_gadget_hibernation_interrupt(dwc, event->event_info); + dev_WARN_ONCE(dwc->dev, true, "unexpected hibernation event\n"); break; case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE: dwc3_gadget_linksts_change_interrupt(dwc, event->event_info); @@ -4588,42 +4577,39 @@ int dwc3_gadget_suspend(struct dwc3 *dwc) { unsigned long flags; + int ret; if (!dwc->gadget_driver) return 0; - dwc3_gadget_run_stop(dwc, false, false); + ret = dwc3_gadget_soft_disconnect(dwc); + if (ret) + goto err; spin_lock_irqsave(&dwc->lock, flags); dwc3_disconnect_gadget(dwc); - __dwc3_gadget_stop(dwc); spin_unlock_irqrestore(&dwc->lock, flags); return 0; + +err: + /* + * Attempt to reset the controller's state. Likely no + * communication can be established until the host + * performs a port reset. + */ + if (dwc->softconnect) + dwc3_gadget_soft_connect(dwc); + + return ret; } int dwc3_gadget_resume(struct dwc3 *dwc) { - int ret; - if (!dwc->gadget_driver || !dwc->softconnect) return 0; - ret = __dwc3_gadget_start(dwc); - if (ret < 0) - goto err0; - - ret = dwc3_gadget_run_stop(dwc, true, false); - if (ret < 0) - goto err1; - - return 0; - -err1: - __dwc3_gadget_stop(dwc); - -err0: - return ret; + return dwc3_gadget_soft_connect(dwc); } void dwc3_gadget_process_pending_events(struct dwc3 *dwc) reverted: --- linux-6.2.0/drivers/usb/gadget/udc/core.c +++ linux-6.2.0.orig/drivers/usb/gadget/udc/core.c @@ -37,10 +37,6 @@ * @vbus: for udcs who care about vbus status, this value is real vbus status; * for udcs who do not care about vbus status, this value is always true * @started: the UDC's started state. True if the UDC had started. - * @connect_lock: protects udc->vbus, udc->started, gadget->connect, gadget->deactivate related - * functions. usb_gadget_connect_locked, usb_gadget_disconnect_locked, - * usb_udc_connect_control_locked, usb_gadget_udc_start_locked, usb_gadget_udc_stop_locked are - * called with this lock held. * * This represents the internal data structure which is used by the UDC-class * to hold information about udc driver and gadget together. @@ -52,7 +48,6 @@ struct list_head list; bool vbus; bool started; - struct mutex connect_lock; }; static struct class *udc_class; @@ -665,9 +660,17 @@ } EXPORT_SYMBOL_GPL(usb_gadget_vbus_disconnect); +/** + * usb_gadget_connect - software-controlled connect to USB host + * @gadget:the peripheral being connected + * + * Enables the D+ (or potentially D-) pullup. The host will start + * enumerating this gadget when the pullup is active and a VBUS session + * is active (the link is powered). + * + * Returns zero on success, else negative errno. + */ +int usb_gadget_connect(struct usb_gadget *gadget) -/* Internal version of usb_gadget_connect needs to be called with connect_lock held. */ -static int usb_gadget_connect_locked(struct usb_gadget *gadget) - __must_hold(&gadget->udc->connect_lock) { int ret = 0; @@ -676,15 +679,10 @@ goto out; } + if (gadget->deactivated) { - if (gadget->connected) - goto out; - - if (gadget->deactivated || !gadget->udc->started) { /* * If gadget is deactivated we only save new state. * Gadget will be connected automatically after activation. - * - * udc first needs to be started before gadget can be pulled up. */ gadget->connected = true; goto out; @@ -699,32 +697,22 @@ return ret; } +EXPORT_SYMBOL_GPL(usb_gadget_connect); /** + * usb_gadget_disconnect - software-controlled disconnect from USB host + * @gadget:the peripheral being disconnected + * + * Disables the D+ (or potentially D-) pullup, which the host may see + * as a disconnect (when a VBUS session is active). Not all systems + * support software pullup controls. - * usb_gadget_connect - software-controlled connect to USB host - * @gadget:the peripheral being connected * + * Following a successful disconnect, invoke the ->disconnect() callback + * for the current gadget driver so that UDC drivers don't need to. - * Enables the D+ (or potentially D-) pullup. The host will start - * enumerating this gadget when the pullup is active and a VBUS session - * is active (the link is powered). * * Returns zero on success, else negative errno. */ +int usb_gadget_disconnect(struct usb_gadget *gadget) -int usb_gadget_connect(struct usb_gadget *gadget) -{ - int ret; - - mutex_lock(&gadget->udc->connect_lock); - ret = usb_gadget_connect_locked(gadget); - mutex_unlock(&gadget->udc->connect_lock); - - return ret; -} -EXPORT_SYMBOL_GPL(usb_gadget_connect); - -/* Internal version of usb_gadget_disconnect needs to be called with connect_lock held. */ -static int usb_gadget_disconnect_locked(struct usb_gadget *gadget) - __must_hold(&gadget->udc->connect_lock) { int ret = 0; @@ -736,12 +724,10 @@ if (!gadget->connected) goto out; + if (gadget->deactivated) { - if (gadget->deactivated || !gadget->udc->started) { /* * If gadget is deactivated we only save new state. * Gadget will stay disconnected after activation. - * - * udc should have been started before gadget being pulled down. */ gadget->connected = false; goto out; @@ -761,30 +747,6 @@ return ret; } - -/** - * usb_gadget_disconnect - software-controlled disconnect from USB host - * @gadget:the peripheral being disconnected - * - * Disables the D+ (or potentially D-) pullup, which the host may see - * as a disconnect (when a VBUS session is active). Not all systems - * support software pullup controls. - * - * Following a successful disconnect, invoke the ->disconnect() callback - * for the current gadget driver so that UDC drivers don't need to. - * - * Returns zero on success, else negative errno. - */ -int usb_gadget_disconnect(struct usb_gadget *gadget) -{ - int ret; - - mutex_lock(&gadget->udc->connect_lock); - ret = usb_gadget_disconnect_locked(gadget); - mutex_unlock(&gadget->udc->connect_lock); - - return ret; -} EXPORT_SYMBOL_GPL(usb_gadget_disconnect); /** @@ -805,11 +767,10 @@ if (gadget->deactivated) goto out; - mutex_lock(&gadget->udc->connect_lock); if (gadget->connected) { + ret = usb_gadget_disconnect(gadget); - ret = usb_gadget_disconnect_locked(gadget); if (ret) + goto out; - goto unlock; /* * If gadget was being connected before deactivation, we want @@ -819,8 +780,6 @@ } gadget->deactivated = true; -unlock: - mutex_unlock(&gadget->udc->connect_lock); out: trace_usb_gadget_deactivate(gadget, ret); @@ -844,7 +803,6 @@ if (!gadget->deactivated) goto out; - mutex_lock(&gadget->udc->connect_lock); gadget->deactivated = false; /* @@ -852,8 +810,7 @@ * while it was being deactivated, we call usb_gadget_connect(). */ if (gadget->connected) + ret = usb_gadget_connect(gadget); - ret = usb_gadget_connect_locked(gadget); - mutex_unlock(&gadget->udc->connect_lock); out: trace_usb_gadget_activate(gadget, ret); @@ -1094,13 +1051,12 @@ /* ------------------------------------------------------------------------- */ +static void usb_udc_connect_control(struct usb_udc *udc) -/* Acquire connect_lock before calling this function. */ -static void usb_udc_connect_control_locked(struct usb_udc *udc) __must_hold(&udc->connect_lock) { + if (udc->vbus) + usb_gadget_connect(udc->gadget); - if (udc->vbus && udc->started) - usb_gadget_connect_locked(udc->gadget); else + usb_gadget_disconnect(udc->gadget); - usb_gadget_disconnect_locked(udc->gadget); } /** @@ -1116,12 +1072,10 @@ { struct usb_udc *udc = gadget->udc; - mutex_lock(&udc->connect_lock); if (udc) { udc->vbus = status; + usb_udc_connect_control(udc); - usb_udc_connect_control_locked(udc); } - mutex_unlock(&udc->connect_lock); } EXPORT_SYMBOL_GPL(usb_udc_vbus_handler); @@ -1143,7 +1097,7 @@ EXPORT_SYMBOL_GPL(usb_gadget_udc_reset); /** + * usb_gadget_udc_start - tells usb device controller to start up - * usb_gadget_udc_start_locked - tells usb device controller to start up * @udc: The UDC to be started * * This call is issued by the UDC Class driver when it's about @@ -1154,11 +1108,8 @@ * necessary to have it powered on. * * Returns zero on success, else negative errno. - * - * Caller should acquire connect_lock before invoking this function. */ +static inline int usb_gadget_udc_start(struct usb_udc *udc) -static inline int usb_gadget_udc_start_locked(struct usb_udc *udc) - __must_hold(&udc->connect_lock) { int ret; @@ -1175,7 +1126,7 @@ } /** + * usb_gadget_udc_stop - tells usb device controller we don't need it anymore - * usb_gadget_udc_stop_locked - tells usb device controller we don't need it anymore * @udc: The UDC to be stopped * * This call is issued by the UDC Class driver after calling @@ -1184,11 +1135,8 @@ * The details are implementation specific, but it can go as * far as powering off UDC completely and disable its data * line pullups. - * - * Caller should acquire connect lock before invoking this function. */ +static inline void usb_gadget_udc_stop(struct usb_udc *udc) -static inline void usb_gadget_udc_stop_locked(struct usb_udc *udc) - __must_hold(&udc->connect_lock) { if (!udc->started) { dev_err(&udc->dev, "UDC had already stopped\n"); @@ -1347,7 +1295,6 @@ udc->gadget = gadget; gadget->udc = udc; - mutex_init(&udc->connect_lock); udc->started = false; @@ -1549,15 +1496,11 @@ if (ret) goto err_bind; + ret = usb_gadget_udc_start(udc); + if (ret) - mutex_lock(&udc->connect_lock); - ret = usb_gadget_udc_start_locked(udc); - if (ret) { - mutex_unlock(&udc->connect_lock); goto err_start; - } usb_gadget_enable_async_callbacks(udc); + usb_udc_connect_control(udc); - usb_udc_connect_control_locked(udc); - mutex_unlock(&udc->connect_lock); kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE); return 0; @@ -1588,14 +1531,12 @@ kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE); + usb_gadget_disconnect(gadget); - mutex_lock(&udc->connect_lock); - usb_gadget_disconnect_locked(gadget); usb_gadget_disable_async_callbacks(udc); if (gadget->irq) synchronize_irq(gadget->irq); udc->driver->unbind(gadget); + usb_gadget_udc_stop(udc); - usb_gadget_udc_stop_locked(udc); - mutex_unlock(&udc->connect_lock); mutex_lock(&udc_lock); driver->is_bound = false; @@ -1681,15 +1622,11 @@ } if (sysfs_streq(buf, "connect")) { + usb_gadget_udc_start(udc); + usb_gadget_connect(udc->gadget); - mutex_lock(&udc->connect_lock); - usb_gadget_udc_start_locked(udc); - usb_gadget_connect_locked(udc->gadget); - mutex_unlock(&udc->connect_lock); } else if (sysfs_streq(buf, "disconnect")) { + usb_gadget_disconnect(udc->gadget); + usb_gadget_udc_stop(udc); - mutex_lock(&udc->connect_lock); - usb_gadget_disconnect_locked(udc->gadget); - usb_gadget_udc_stop_locked(udc); - mutex_unlock(&udc->connect_lock); } else { dev_err(dev, "unsupported command '%s'\n", buf); ret = -EINVAL; diff -u linux-6.2.0/drivers/usb/host/xhci-pci.c linux-6.2.0/drivers/usb/host/xhci-pci.c --- linux-6.2.0/drivers/usb/host/xhci-pci.c +++ linux-6.2.0/drivers/usb/host/xhci-pci.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "xhci.h" #include "xhci-trace.h" @@ -194,7 +195,7 @@ if (pdev->vendor == PCI_VENDOR_ID_AMD && pdev->device == PCI_DEVICE_ID_AMD_RENOIR_XHCI) - xhci->quirks |= XHCI_BROKEN_D3COLD; + xhci->quirks |= XHCI_BROKEN_D3COLD_S2I; if (pdev->vendor == PCI_VENDOR_ID_INTEL) { xhci->quirks |= XHCI_LPM_SUPPORT; @@ -609,9 +610,16 @@ * Systems with the TI redriver that loses port status change events * need to have the registers polled during D3, so avoid D3cold. */ - if (xhci->quirks & (XHCI_COMP_MODE_QUIRK | XHCI_BROKEN_D3COLD)) + if (xhci->quirks & XHCI_COMP_MODE_QUIRK) pci_d3cold_disable(pdev); +#ifdef CONFIG_SUSPEND + /* d3cold is broken, but only when s2idle is used */ + if (pm_suspend_target_state == PM_SUSPEND_TO_IDLE && + xhci->quirks & (XHCI_BROKEN_D3COLD_S2I)) + pci_d3cold_disable(pdev); +#endif + if (xhci->quirks & XHCI_PME_STUCK_QUIRK) xhci_pme_quirk(hcd); diff -u linux-6.2.0/drivers/usb/typec/altmodes/displayport.c linux-6.2.0/drivers/usb/typec/altmodes/displayport.c --- linux-6.2.0/drivers/usb/typec/altmodes/displayport.c +++ linux-6.2.0/drivers/usb/typec/altmodes/displayport.c @@ -513,6 +513,10 @@ mutex_unlock(&dp->lock); + /* get_current_pin_assignments can return 0 when no matching pin assignments are found */ + if (len == 0) + len++; + buf[len - 1] = '\n'; return len; } diff -u linux-6.2.0/drivers/usb/typec/tcpm/tcpm.c linux-6.2.0/drivers/usb/typec/tcpm/tcpm.c --- linux-6.2.0/drivers/usb/typec/tcpm/tcpm.c +++ linux-6.2.0/drivers/usb/typec/tcpm/tcpm.c @@ -1514,7 +1514,21 @@ pmdata->svids[pmdata->nsvids++] = svid; tcpm_log(port, "SVID %d: 0x%x", pmdata->nsvids, svid); } - return true; + + /* + * PD3.0 Spec 6.4.4.3.2: The SVIDs are returned 2 per VDO (see Table + * 6-43), and can be returned maximum 6 VDOs per response (see Figure + * 6-19). If the Respondersupports 12 or more SVID then the Discover + * SVIDs Command Shall be executed multiple times until a Discover + * SVIDs VDO is returned ending either with a SVID value of 0x0000 in + * the last part of the last VDO or with a VDO containing two SVIDs + * with values of 0x0000. + * + * However, some odd dockers support SVIDs less than 12 but without + * 0x0000 in the last VDO, so we need to break the Discover SVIDs + * request and return false here. + */ + return cnt == 7; abort: tcpm_log(port, "SVID_DISCOVERY_MAX(%d) too low!", SVID_DISCOVERY_MAX); return false; diff -u linux-6.2.0/drivers/usb/typec/ucsi/ucsi_acpi.c linux-6.2.0/drivers/usb/typec/ucsi/ucsi_acpi.c --- linux-6.2.0/drivers/usb/typec/ucsi/ucsi_acpi.c +++ linux-6.2.0/drivers/usb/typec/ucsi/ucsi_acpi.c @@ -9,6 +9,7 @@ #include #include #include +#include #include "ucsi.h" @@ -23,6 +24,7 @@ struct completion complete; unsigned long flags; guid_t guid; + u64 cmd; }; static int ucsi_acpi_dsm(struct ucsi_acpi *ua, int func) @@ -62,6 +64,7 @@ struct ucsi_acpi *ua = ucsi_get_drvdata(ucsi); memcpy(ua->base + offset, val, val_len); + ua->cmd = *(u64 *)val; return ucsi_acpi_dsm(ua, UCSI_DSM_FUNC_WRITE); } @@ -93,13 +96,46 @@ .async_write = ucsi_acpi_async_write }; +static int +ucsi_zenbook_read(struct ucsi *ucsi, unsigned int offset, void *val, size_t val_len) +{ + struct ucsi_acpi *ua = ucsi_get_drvdata(ucsi); + int ret; + + if (offset == UCSI_VERSION || UCSI_COMMAND(ua->cmd) == UCSI_PPM_RESET) { + ret = ucsi_acpi_dsm(ua, UCSI_DSM_FUNC_READ); + if (ret) + return ret; + } + + memcpy(val, ua->base + offset, val_len); + + return 0; +} + +static const struct ucsi_operations ucsi_zenbook_ops = { + .read = ucsi_zenbook_read, + .sync_write = ucsi_acpi_sync_write, + .async_write = ucsi_acpi_async_write +}; + +static const struct dmi_system_id zenbook_dmi_id[] = { + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"), + }, + }, + { } +}; + static void ucsi_acpi_notify(acpi_handle handle, u32 event, void *data) { struct ucsi_acpi *ua = data; u32 cci; int ret; - ret = ucsi_acpi_read(ua->ucsi, UCSI_CCI, &cci, sizeof(cci)); + ret = ua->ucsi->ops->read(ua->ucsi, UCSI_CCI, &cci, sizeof(cci)); if (ret) return; @@ -114,6 +150,7 @@ static int ucsi_acpi_probe(struct platform_device *pdev) { struct acpi_device *adev = ACPI_COMPANION(&pdev->dev); + const struct ucsi_operations *ops = &ucsi_acpi_ops; struct ucsi_acpi *ua; struct resource *res; acpi_status status; @@ -143,7 +180,10 @@ init_completion(&ua->complete); ua->dev = &pdev->dev; - ua->ucsi = ucsi_create(&pdev->dev, &ucsi_acpi_ops); + if (dmi_check_system(zenbook_dmi_id)) + ops = &ucsi_zenbook_ops; + + ua->ucsi = ucsi_create(&pdev->dev, ops); if (IS_ERR(ua->ucsi)) return PTR_ERR(ua->ucsi); diff -u linux-6.2.0/drivers/vfio/vfio_iommu_type1.c linux-6.2.0/drivers/vfio/vfio_iommu_type1.c --- linux-6.2.0/drivers/vfio/vfio_iommu_type1.c +++ linux-6.2.0/drivers/vfio/vfio_iommu_type1.c @@ -938,6 +938,11 @@ if (ret) goto pin_unwind; + if (!pfn_valid(phys_pfn)) { + ret = -EINVAL; + goto pin_unwind; + } + ret = vfio_add_to_pfn_list(dma, iova, phys_pfn); if (ret) { if (put_pfn(phys_pfn, dma->prot) && do_accounting) diff -u linux-6.2.0/fs/btrfs/backref.c linux-6.2.0/fs/btrfs/backref.c --- linux-6.2.0/fs/btrfs/backref.c +++ linux-6.2.0/fs/btrfs/backref.c @@ -45,7 +45,8 @@ int root_count; bool cached; - if (!btrfs_file_extent_compression(eb, fi) && + if (!ctx->ignore_extent_item_pos && + !btrfs_file_extent_compression(eb, fi) && !btrfs_file_extent_encryption(eb, fi) && !btrfs_file_extent_other_encoding(eb, fi)) { u64 data_offset; @@ -552,7 +553,7 @@ count++; else goto next; - if (!ctx->ignore_extent_item_pos) { + if (!ctx->skip_inode_ref_list) { ret = check_extent_in_eb(ctx, &key, eb, fi, &eie); if (ret == BTRFS_ITERATE_EXTENT_INODES_STOP || ret < 0) @@ -564,7 +565,7 @@ eie, (void **)&old, GFP_NOFS); if (ret < 0) break; - if (!ret && !ctx->ignore_extent_item_pos) { + if (!ret && !ctx->skip_inode_ref_list) { while (old->next) old = old->next; old->next = eie; @@ -1598,7 +1599,7 @@ goto out; } if (ref->count && ref->parent) { - if (!ctx->ignore_extent_item_pos && !ref->inode_list && + if (!ctx->skip_inode_ref_list && !ref->inode_list && ref->level == 0) { struct btrfs_tree_parent_check check = { 0 }; struct extent_buffer *eb; @@ -1639,7 +1640,7 @@ (void **)&eie, GFP_NOFS); if (ret < 0) goto out; - if (!ret && !ctx->ignore_extent_item_pos) { + if (!ret && !ctx->skip_inode_ref_list) { /* * We've recorded that parent, so we must extend * its inode list here. @@ -1735,7 +1736,7 @@ static int btrfs_find_all_roots_safe(struct btrfs_backref_walk_ctx *ctx) { const u64 orig_bytenr = ctx->bytenr; - const bool orig_ignore_extent_item_pos = ctx->ignore_extent_item_pos; + const bool orig_skip_inode_ref_list = ctx->skip_inode_ref_list; bool roots_ulist_allocated = false; struct ulist_iterator uiter; int ret = 0; @@ -1756,7 +1757,7 @@ roots_ulist_allocated = true; } - ctx->ignore_extent_item_pos = true; + ctx->skip_inode_ref_list = true; ULIST_ITER_INIT(&uiter); while (1) { @@ -1781,7 +1782,7 @@ ulist_free(ctx->refs); ctx->refs = NULL; ctx->bytenr = orig_bytenr; - ctx->ignore_extent_item_pos = orig_ignore_extent_item_pos; + ctx->skip_inode_ref_list = orig_skip_inode_ref_list; return ret; } @@ -1885,7 +1886,7 @@ walk_ctx.time_seq = elem.seq; } - walk_ctx.ignore_extent_item_pos = true; + walk_ctx.skip_inode_ref_list = true; walk_ctx.trans = trans; walk_ctx.fs_info = fs_info; walk_ctx.refs = &ctx->refs; diff -u linux-6.2.0/fs/btrfs/disk-io.c linux-6.2.0/fs/btrfs/disk-io.c --- linux-6.2.0/fs/btrfs/disk-io.c +++ linux-6.2.0/fs/btrfs/disk-io.c @@ -3306,23 +3306,34 @@ { int ret; const bool cache_opt = btrfs_test_opt(fs_info, SPACE_CACHE); - bool clear_free_space_tree = false; + bool rebuild_free_space_tree = false; if (btrfs_test_opt(fs_info, CLEAR_CACHE) && btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE)) { - clear_free_space_tree = true; + rebuild_free_space_tree = true; } else if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) && !btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID)) { btrfs_warn(fs_info, "free space tree is invalid"); - clear_free_space_tree = true; + rebuild_free_space_tree = true; } - if (clear_free_space_tree) { - btrfs_info(fs_info, "clearing free space tree"); - ret = btrfs_clear_free_space_tree(fs_info); + if (rebuild_free_space_tree) { + btrfs_info(fs_info, "rebuilding free space tree"); + ret = btrfs_rebuild_free_space_tree(fs_info); if (ret) { btrfs_warn(fs_info, - "failed to clear free space tree: %d", ret); + "failed to rebuild free space tree: %d", ret); + goto out; + } + } + + if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE) && + !btrfs_test_opt(fs_info, FREE_SPACE_TREE)) { + btrfs_info(fs_info, "disabling free space tree"); + ret = btrfs_delete_free_space_tree(fs_info); + if (ret) { + btrfs_warn(fs_info, + "failed to disable free space tree: %d", ret); goto out; } } @@ -5123,7 +5134,11 @@ */ inode = igrab(&btrfs_inode->vfs_inode); if (inode) { + unsigned int nofs_flag; + + nofs_flag = memalloc_nofs_save(); invalidate_inode_pages2(inode->i_mapping); + memalloc_nofs_restore(nofs_flag); iput(inode); } spin_lock(&root->delalloc_lock); @@ -5228,7 +5243,12 @@ inode = cache->io_ctl.inode; if (inode) { + unsigned int nofs_flag; + + nofs_flag = memalloc_nofs_save(); invalidate_inode_pages2(inode->i_mapping); + memalloc_nofs_restore(nofs_flag); + BTRFS_I(inode)->generation = 0; cache->io_ctl.inode = NULL; iput(inode); diff -u linux-6.2.0/fs/btrfs/free-space-cache.c linux-6.2.0/fs/btrfs/free-space-cache.c --- linux-6.2.0/fs/btrfs/free-space-cache.c +++ linux-6.2.0/fs/btrfs/free-space-cache.c @@ -870,15 +870,16 @@ } spin_lock(&ctl->tree_lock); ret = link_free_space(ctl, e); - ctl->total_bitmaps++; - recalculate_thresholds(ctl); - spin_unlock(&ctl->tree_lock); if (ret) { + spin_unlock(&ctl->tree_lock); btrfs_err(fs_info, "Duplicate entries in free space cache, dumping"); kmem_cache_free(btrfs_free_space_cachep, e); goto free_cache; } + ctl->total_bitmaps++; + recalculate_thresholds(ctl); + spin_unlock(&ctl->tree_lock); list_add_tail(&e->list, &bitmaps); } diff -u linux-6.2.0/fs/btrfs/ioctl.c linux-6.2.0/fs/btrfs/ioctl.c --- linux-6.2.0/fs/btrfs/ioctl.c +++ linux-6.2.0/fs/btrfs/ioctl.c @@ -454,7 +454,9 @@ case BTRFS_EXCLOP_BALANCE_PAUSED: spin_lock(&fs_info->super_lock); ASSERT(fs_info->exclusive_operation == BTRFS_EXCLOP_BALANCE || - fs_info->exclusive_operation == BTRFS_EXCLOP_DEV_ADD); + fs_info->exclusive_operation == BTRFS_EXCLOP_DEV_ADD || + fs_info->exclusive_operation == BTRFS_EXCLOP_NONE || + fs_info->exclusive_operation == BTRFS_EXCLOP_BALANCE_PAUSED); fs_info->exclusive_operation = BTRFS_EXCLOP_BALANCE_PAUSED; spin_unlock(&fs_info->super_lock); break; diff -u linux-6.2.0/fs/btrfs/super.c linux-6.2.0/fs/btrfs/super.c --- linux-6.2.0/fs/btrfs/super.c +++ linux-6.2.0/fs/btrfs/super.c @@ -825,7 +825,11 @@ !btrfs_test_opt(info, CLEAR_CACHE)) { btrfs_err(info, "cannot disable free space tree"); ret = -EINVAL; - + } + if (btrfs_fs_compat_ro(info, BLOCK_GROUP_TREE) && + !btrfs_test_opt(info, FREE_SPACE_TREE)) { + btrfs_err(info, "cannot disable free space tree with block-group-tree feature"); + ret = -EINVAL; } if (!ret) ret = btrfs_check_mountopts_zoned(info); diff -u linux-6.2.0/fs/btrfs/zoned.c linux-6.2.0/fs/btrfs/zoned.c --- linux-6.2.0/fs/btrfs/zoned.c +++ linux-6.2.0/fs/btrfs/zoned.c @@ -121,10 +121,9 @@ int i; for (i = 0; i < BTRFS_NR_SB_LOG_ZONES; i++) { - u64 bytenr; - - bytenr = ((zones[i].start + zones[i].len) - << SECTOR_SHIFT) - BTRFS_SUPER_INFO_SIZE; + u64 zone_end = (zones[i].start + zones[i].capacity) << SECTOR_SHIFT; + u64 bytenr = ALIGN_DOWN(zone_end, BTRFS_SUPER_INFO_SIZE) - + BTRFS_SUPER_INFO_SIZE; page[i] = read_cache_page_gfp(mapping, bytenr >> PAGE_SHIFT, GFP_NOFS); @@ -1164,12 +1163,12 @@ return -ERANGE; /* All the zones are conventional */ - if (find_next_bit(zinfo->seq_zones, begin, end) == end) + if (find_next_bit(zinfo->seq_zones, end, begin) == end) return 0; /* All the zones are sequential and empty */ - if (find_next_zero_bit(zinfo->seq_zones, begin, end) == end && - find_next_zero_bit(zinfo->empty_zones, begin, end) == end) + if (find_next_zero_bit(zinfo->seq_zones, end, begin) == end && + find_next_zero_bit(zinfo->empty_zones, end, begin) == end) return 0; for (pos = start; pos < start + size; pos += zinfo->zone_size) { @@ -1606,11 +1605,11 @@ !list_empty(&eb->release_list)) return; + memzero_extent_buffer(eb, 0, eb->len); + set_bit(EXTENT_BUFFER_NO_CHECK, &eb->bflags); set_extent_buffer_dirty(eb); set_extent_bits_nowait(&trans->dirty_pages, eb->start, eb->start + eb->len - 1, EXTENT_DIRTY); - memzero_extent_buffer(eb, 0, eb->len); - set_bit(EXTENT_BUFFER_NO_CHECK, &eb->bflags); spin_lock(&trans->releasing_ebs_lock); list_add_tail(&eb->release_list, &trans->releasing_ebs); diff -u linux-6.2.0/fs/cifs/cifsfs.c linux-6.2.0/fs/cifs/cifsfs.c --- linux-6.2.0/fs/cifs/cifsfs.c +++ linux-6.2.0/fs/cifs/cifsfs.c @@ -743,6 +743,7 @@ spin_unlock(&tcon->tc_lock); spin_unlock(&cifs_tcp_ses_lock); + cifs_close_all_deferred_files(tcon); /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */ /* cancel_notify_requests(tcon); */ if (tcon->ses && tcon->ses->server) { @@ -758,6 +759,20 @@ return; } +static int cifs_freeze(struct super_block *sb) +{ + struct cifs_sb_info *cifs_sb = CIFS_SB(sb); + struct cifs_tcon *tcon; + + if (cifs_sb == NULL) + return 0; + + tcon = cifs_sb_master_tcon(cifs_sb); + + cifs_close_all_deferred_files(tcon); + return 0; +} + #ifdef CONFIG_CIFS_STATS2 static int cifs_show_stats(struct seq_file *s, struct dentry *root) { @@ -796,6 +811,7 @@ as opens */ .show_options = cifs_show_options, .umount_begin = cifs_umount_begin, + .freeze_fs = cifs_freeze, #ifdef CONFIG_CIFS_STATS2 .show_stats = cifs_show_stats, #endif diff -u linux-6.2.0/fs/cifs/cifsglob.h linux-6.2.0/fs/cifs/cifsglob.h --- linux-6.2.0/fs/cifs/cifsglob.h +++ linux-6.2.0/fs/cifs/cifsglob.h @@ -429,8 +429,8 @@ /* check for STATUS_NETWORK_SESSION_EXPIRED */ bool (*is_session_expired)(char *); /* send oplock break response */ - int (*oplock_response)(struct cifs_tcon *, struct cifs_fid *, - struct cifsInodeInfo *); + int (*oplock_response)(struct cifs_tcon *tcon, __u64 persistent_fid, __u64 volatile_fid, + __u16 net_fid, struct cifsInodeInfo *cifs_inode); /* query remote filesystem */ int (*queryfs)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, struct kstatfs *); @@ -1244,8 +1244,8 @@ struct cached_fids *cfids; /* BB add field for back pointer to sb struct(s)? */ #ifdef CONFIG_CIFS_DFS_UPCALL - struct list_head ulist; /* cache update list */ struct list_head dfs_ses_list; + struct delayed_work dfs_cache_work; #endif struct delayed_work query_interfaces; /* query interfaces workqueue job */ }; diff -u linux-6.2.0/fs/cifs/connect.c linux-6.2.0/fs/cifs/connect.c --- linux-6.2.0/fs/cifs/connect.c +++ linux-6.2.0/fs/cifs/connect.c @@ -60,7 +60,7 @@ #define TLINK_IDLE_EXPIRE (600 * HZ) /* Drop the connection to not overload the server */ -#define NUM_STATUS_IO_TIMEOUT 5 +#define MAX_STATUS_IO_TIMEOUT 5 static int ip_connect(struct TCP_Server_Info *server); static int generic_ip_connect(struct TCP_Server_Info *server); @@ -1136,6 +1136,7 @@ struct mid_q_entry *mids[MAX_COMPOUND]; char *bufs[MAX_COMPOUND]; unsigned int noreclaim_flag, num_io_timeout = 0; + bool pending_reconnect = false; noreclaim_flag = memalloc_noreclaim_save(); cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current)); @@ -1175,6 +1176,8 @@ cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length); if (!is_smb_response(server, buf[0])) continue; + + pending_reconnect = false; next_pdu: server->pdu_size = pdu_length; @@ -1232,10 +1235,13 @@ if (server->ops->is_status_io_timeout && server->ops->is_status_io_timeout(buf)) { num_io_timeout++; - if (num_io_timeout > NUM_STATUS_IO_TIMEOUT) { - cifs_reconnect(server, false); + if (num_io_timeout > MAX_STATUS_IO_TIMEOUT) { + cifs_server_dbg(VFS, + "Number of request timeouts exceeded %d. Reconnecting", + MAX_STATUS_IO_TIMEOUT); + + pending_reconnect = true; num_io_timeout = 0; - continue; } } @@ -1282,6 +1288,11 @@ buf = server->smallbuf; goto next_pdu; } + + /* do this reconnect at the very end after processing all MIDs */ + if (pending_reconnect) + cifs_reconnect(server, true); + } /* end while !EXITING */ /* buffer usually freed in free_mid - need to free it here on exit */ @@ -2386,6 +2397,9 @@ /* cancel polling of interfaces */ cancel_delayed_work_sync(&tcon->query_interfaces); +#ifdef CONFIG_CIFS_DFS_UPCALL + cancel_delayed_work_sync(&tcon->dfs_cache_work); +#endif if (tcon->use_witness) { int rc; @@ -2633,7 +2647,9 @@ queue_delayed_work(cifsiod_wq, &tcon->query_interfaces, (SMB_INTERFACE_POLL_INTERVAL * HZ)); } - +#ifdef CONFIG_CIFS_DFS_UPCALL + INIT_DELAYED_WORK(&tcon->dfs_cache_work, dfs_cache_refresh); +#endif spin_lock(&cifs_tcp_ses_lock); list_add(&tcon->tcon_list, &ses->tcon_list); spin_unlock(&cifs_tcp_ses_lock); @@ -2749,6 +2765,13 @@ spin_lock(&cifs_tcp_ses_lock); cifs_sb = CIFS_SB(sb); + + /* We do not want to use a superblock that has been shutdown */ + if (CIFS_MOUNT_SHUTDOWN & cifs_sb->mnt_cifs_flags) { + spin_unlock(&cifs_tcp_ses_lock); + return 0; + } + tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); if (tlink == NULL) { /* can not match superblock if tlink were ever null */ @@ -4119,9 +4142,13 @@ /* only send once per connect */ spin_lock(&tcon->tc_lock); - if (tcon->ses->ses_status != SES_GOOD || - (tcon->status != TID_NEW && - tcon->status != TID_NEED_TCON)) { + if (tcon->status != TID_NEW && + tcon->status != TID_NEED_TCON) { + spin_unlock(&tcon->tc_lock); + return -EHOSTDOWN; + } + + if (tcon->status == TID_GOOD) { spin_unlock(&tcon->tc_lock); return 0; } diff -u linux-6.2.0/fs/cifs/dfs.c linux-6.2.0/fs/cifs/dfs.c --- linux-6.2.0/fs/cifs/dfs.c +++ linux-6.2.0/fs/cifs/dfs.c @@ -157,6 +157,8 @@ rc = cifs_is_path_remote(mnt_ctx); } + dfs_cache_noreq_update_tgthint(ref_path + 1, tit); + if (rc == -EREMOTE && is_refsrv) { rc2 = add_root_smb_session(mnt_ctx); if (rc2) @@ -259,6 +261,8 @@ if (list_empty(&tcon->dfs_ses_list)) { list_replace_init(&mnt_ctx->dfs_ses_list, &tcon->dfs_ses_list); + queue_delayed_work(dfscache_wq, &tcon->dfs_cache_work, + dfs_cache_get_ttl() * HZ); } else { dfs_put_root_smb_sessions(&mnt_ctx->dfs_ses_list); } @@ -299,7 +303,7 @@ if (!nodfs) { rc = dfs_get_referral(mnt_ctx, ctx->UNC + 1, NULL, NULL); if (rc) { - if (rc != -ENOENT && rc != -EOPNOTSUPP) + if (rc != -ENOENT && rc != -EOPNOTSUPP && rc != -EIO) goto out; nodfs = true; } @@ -571,9 +575,13 @@ /* only send once per connect */ spin_lock(&tcon->tc_lock); - if (tcon->ses->ses_status != SES_GOOD || - (tcon->status != TID_NEW && - tcon->status != TID_NEED_TCON)) { + if (tcon->status != TID_NEW && + tcon->status != TID_NEED_TCON) { + spin_unlock(&tcon->tc_lock); + return -EHOSTDOWN; + } + + if (tcon->status == TID_GOOD) { spin_unlock(&tcon->tc_lock); return 0; } diff -u linux-6.2.0/fs/cifs/dfs_cache.c linux-6.2.0/fs/cifs/dfs_cache.c --- linux-6.2.0/fs/cifs/dfs_cache.c +++ linux-6.2.0/fs/cifs/dfs_cache.c @@ -20,12 +20,14 @@ #include "cifs_unicode.h" #include "smb2glob.h" #include "dns_resolve.h" +#include "dfs.h" #include "dfs_cache.h" -#define CACHE_HTABLE_SIZE 32 -#define CACHE_MAX_ENTRIES 64 -#define CACHE_MIN_TTL 120 /* 2 minutes */ +#define CACHE_HTABLE_SIZE 32 +#define CACHE_MAX_ENTRIES 64 +#define CACHE_MIN_TTL 120 /* 2 minutes */ +#define CACHE_DEFAULT_TTL 300 /* 5 minutes */ #define IS_DFS_INTERLINK(v) (((v) & DFSREF_REFERRAL_SERVER) && !((v) & DFSREF_STORAGE_SERVER)) @@ -50,10 +52,9 @@ }; static struct kmem_cache *cache_slab __read_mostly; -static struct workqueue_struct *dfscache_wq __read_mostly; +struct workqueue_struct *dfscache_wq; -static int cache_ttl; -static DEFINE_SPINLOCK(cache_ttl_lock); +atomic_t dfs_cache_ttl; static struct nls_table *cache_cp; @@ -65,10 +66,6 @@ static struct hlist_head cache_htable[CACHE_HTABLE_SIZE]; static DECLARE_RWSEM(htable_rw_lock); -static void refresh_cache_worker(struct work_struct *work); - -static DECLARE_DELAYED_WORK(refresh_task, refresh_cache_worker); - /** * dfs_cache_canonical_path - get a canonical DFS path * @@ -290,7 +287,9 @@ int rc; int i; - dfscache_wq = alloc_workqueue("cifs-dfscache", WQ_FREEZABLE | WQ_UNBOUND, 1); + dfscache_wq = alloc_workqueue("cifs-dfscache", + WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, + 0); if (!dfscache_wq) return -ENOMEM; @@ -306,6 +305,7 @@ INIT_HLIST_HEAD(&cache_htable[i]); atomic_set(&cache_count, 0); + atomic_set(&dfs_cache_ttl, CACHE_DEFAULT_TTL); cache_cp = load_nls("utf8"); if (!cache_cp) cache_cp = load_nls_default(); @@ -480,6 +480,7 @@ int rc; struct cache_entry *ce; unsigned int hash; + int ttl; WARN_ON(!rwsem_is_locked(&htable_rw_lock)); @@ -496,15 +497,8 @@ if (IS_ERR(ce)) return ce; - spin_lock(&cache_ttl_lock); - if (!cache_ttl) { - cache_ttl = ce->ttl; - queue_delayed_work(dfscache_wq, &refresh_task, cache_ttl * HZ); - } else { - cache_ttl = min_t(int, cache_ttl, ce->ttl); - mod_delayed_work(dfscache_wq, &refresh_task, cache_ttl * HZ); - } - spin_unlock(&cache_ttl_lock); + ttl = min_t(int, atomic_read(&dfs_cache_ttl), ce->ttl); + atomic_set(&dfs_cache_ttl, ttl); hlist_add_head(&ce->hlist, &cache_htable[hash]); dump_ce(ce); @@ -616,7 +610,6 @@ */ void dfs_cache_destroy(void) { - cancel_delayed_work_sync(&refresh_task); unload_nls(cache_cp); flush_cache_ents(); kmem_cache_destroy(cache_slab); @@ -1142,6 +1135,7 @@ * target shares in @refs. */ static void mark_for_reconnect_if_needed(struct TCP_Server_Info *server, + const char *path, struct dfs_cache_tgt_list *old_tl, struct dfs_cache_tgt_list *new_tl) { @@ -1153,8 +1147,10 @@ nit = dfs_cache_get_next_tgt(new_tl, nit)) { if (target_share_equal(server, dfs_cache_get_tgt_name(oit), - dfs_cache_get_tgt_name(nit))) + dfs_cache_get_tgt_name(nit))) { + dfs_cache_noreq_update_tgthint(path, nit); return; + } } } @@ -1162,13 +1158,28 @@ cifs_signal_cifsd_for_reconnect(server, true); } +static bool is_ses_good(struct cifs_ses *ses) +{ + struct TCP_Server_Info *server = ses->server; + struct cifs_tcon *tcon = ses->tcon_ipc; + bool ret; + + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + ret = !cifs_chan_needs_reconnect(ses, server) && + ses->ses_status == SES_GOOD && + !tcon->need_reconnect; + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + return ret; +} + /* Refresh dfs referral of tcon and mark it for reconnect if needed */ -static int __refresh_tcon(const char *path, struct cifs_tcon *tcon, bool force_refresh) +static int __refresh_tcon(const char *path, struct cifs_ses *ses, bool force_refresh) { struct dfs_cache_tgt_list old_tl = DFS_CACHE_TGT_LIST_INIT(old_tl); struct dfs_cache_tgt_list new_tl = DFS_CACHE_TGT_LIST_INIT(new_tl); - struct cifs_ses *ses = CIFS_DFS_ROOT_SES(tcon->ses); - struct cifs_tcon *ipc = ses->tcon_ipc; + struct TCP_Server_Info *server = ses->server; bool needs_refresh = false; struct cache_entry *ce; unsigned int xid; @@ -1190,20 +1201,19 @@ goto out; } - spin_lock(&ipc->tc_lock); - if (ses->ses_status != SES_GOOD || ipc->status != TID_GOOD) { - spin_unlock(&ipc->tc_lock); - cifs_dbg(FYI, "%s: skip cache refresh due to disconnected ipc\n", __func__); + ses = CIFS_DFS_ROOT_SES(ses); + if (!is_ses_good(ses)) { + cifs_dbg(FYI, "%s: skip cache refresh due to disconnected ipc\n", + __func__); goto out; } - spin_unlock(&ipc->tc_lock); ce = cache_refresh_path(xid, ses, path, true); if (!IS_ERR(ce)) { rc = get_targets(ce, &new_tl); up_read(&htable_rw_lock); cifs_dbg(FYI, "%s: get_targets: %d\n", __func__, rc); - mark_for_reconnect_if_needed(tcon->ses->server, &old_tl, &new_tl); + mark_for_reconnect_if_needed(server, path, &old_tl, &new_tl); } out: @@ -1216,10 +1226,11 @@ static int refresh_tcon(struct cifs_tcon *tcon, bool force_refresh) { struct TCP_Server_Info *server = tcon->ses->server; + struct cifs_ses *ses = tcon->ses; mutex_lock(&server->refpath_lock); if (server->leaf_fullpath) - __refresh_tcon(server->leaf_fullpath + 1, tcon, force_refresh); + __refresh_tcon(server->leaf_fullpath + 1, ses, force_refresh); mutex_unlock(&server->refpath_lock); return 0; } @@ -1265,58 +1276,30 @@ -/* - * Worker that will refresh DFS cache from all active mounts based on lowest TTL value - * from a DFS referral. - */ -static void refresh_cache_worker(struct work_struct *work) +/* Refresh all DFS referrals related to DFS tcon */ +void dfs_cache_refresh(struct work_struct *work) { struct TCP_Server_Info *server; - struct cifs_tcon *tcon, *ntcon; - struct list_head tcons; + struct dfs_root_ses *rses; + struct cifs_tcon *tcon; struct cifs_ses *ses; - INIT_LIST_HEAD(&tcons); - - spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { - spin_lock(&server->srv_lock); - if (!server->leaf_fullpath) { - spin_unlock(&server->srv_lock); - continue; - } - spin_unlock(&server->srv_lock); - - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { - if (ses->tcon_ipc) { - ses->ses_count++; - list_add_tail(&ses->tcon_ipc->ulist, &tcons); - } - list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { - if (!tcon->ipc) { - tcon->tc_count++; - list_add_tail(&tcon->ulist, &tcons); - } - } - } - } - spin_unlock(&cifs_tcp_ses_lock); - - list_for_each_entry_safe(tcon, ntcon, &tcons, ulist) { - struct TCP_Server_Info *server = tcon->ses->server; + tcon = container_of(work, struct cifs_tcon, dfs_cache_work.work); + ses = tcon->ses; + server = ses->server; - list_del_init(&tcon->ulist); + mutex_lock(&server->refpath_lock); + if (server->leaf_fullpath) + __refresh_tcon(server->leaf_fullpath + 1, ses, false); + mutex_unlock(&server->refpath_lock); + list_for_each_entry(rses, &tcon->dfs_ses_list, list) { + ses = rses->ses; + server = ses->server; mutex_lock(&server->refpath_lock); if (server->leaf_fullpath) - __refresh_tcon(server->leaf_fullpath + 1, tcon, false); + __refresh_tcon(server->leaf_fullpath + 1, ses, false); mutex_unlock(&server->refpath_lock); - - if (tcon->ipc) - cifs_put_smb_ses(tcon->ses); - else - cifs_put_tcon(tcon); } - spin_lock(&cache_ttl_lock); - queue_delayed_work(dfscache_wq, &refresh_task, cache_ttl * HZ); - spin_unlock(&cache_ttl_lock); + queue_delayed_work(dfscache_wq, &tcon->dfs_cache_work, + atomic_read(&dfs_cache_ttl) * HZ); } diff -u linux-6.2.0/fs/cifs/dfs_cache.h linux-6.2.0/fs/cifs/dfs_cache.h --- linux-6.2.0/fs/cifs/dfs_cache.h +++ linux-6.2.0/fs/cifs/dfs_cache.h @@ -13,6 +13,9 @@ #include #include "cifsglob.h" +extern struct workqueue_struct *dfscache_wq; +extern atomic_t dfs_cache_ttl; + #define DFS_CACHE_TGT_LIST_INIT(var) { .tl_numtgts = 0, .tl_list = LIST_HEAD_INIT((var).tl_list), } struct dfs_cache_tgt_list { @@ -42,6 +45,7 @@ char **prefix); char *dfs_cache_canonical_path(const char *path, const struct nls_table *cp, int remap); int dfs_cache_remount_fs(struct cifs_sb_info *cifs_sb); +void dfs_cache_refresh(struct work_struct *work); static inline struct dfs_cache_tgt_iterator * dfs_cache_get_next_tgt(struct dfs_cache_tgt_list *tl, @@ -91,2 +95,7 @@ +static inline int dfs_cache_get_ttl(void) +{ + return atomic_read(&dfs_cache_ttl); +} + #endif /* _CIFS_DFS_CACHE_H */ diff -u linux-6.2.0/fs/cifs/file.c linux-6.2.0/fs/cifs/file.c --- linux-6.2.0/fs/cifs/file.c +++ linux-6.2.0/fs/cifs/file.c @@ -48,13 +48,13 @@ struct list_head *tmp1; /* only send once per connect */ - spin_lock(&tcon->ses->ses_lock); - if ((tcon->ses->ses_status != SES_GOOD) || (tcon->status != TID_NEED_RECON)) { - spin_unlock(&tcon->ses->ses_lock); + spin_lock(&tcon->tc_lock); + if (tcon->status != TID_NEED_RECON) { + spin_unlock(&tcon->tc_lock); return; } tcon->status = TID_IN_FILES_INVALIDATE; - spin_unlock(&tcon->ses->ses_lock); + spin_unlock(&tcon->tc_lock); /* list all files open on tree connection and mark them invalid */ spin_lock(&tcon->open_file_lock); @@ -5095,9 +5095,9 @@ struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; int rc = 0; - bool purge_cache = false; - struct cifs_deferred_close *dclose; - bool is_deferred = false; + bool purge_cache = false, oplock_break_cancelled; + __u64 persistent_fid, volatile_fid; + __u16 net_fid; wait_on_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS, TASK_UNINTERRUPTIBLE); @@ -5138,28 +5138,28 @@ * file handles but cached, then schedule deferred close immediately. * So, new open will not use cached handle. */ - spin_lock(&CIFS_I(inode)->deferred_lock); - is_deferred = cifs_is_deferred_close(cfile, &dclose); - spin_unlock(&CIFS_I(inode)->deferred_lock); - if (!CIFS_CACHE_HANDLE(cinode) && is_deferred && - cfile->deferred_close_scheduled && delayed_work_pending(&cfile->deferred)) { + if (!CIFS_CACHE_HANDLE(cinode) && !list_empty(&cinode->deferred_closes)) cifs_close_deferred_file(cinode); - } + persistent_fid = cfile->fid.persistent_fid; + volatile_fid = cfile->fid.volatile_fid; + net_fid = cfile->fid.netfid; + oplock_break_cancelled = cfile->oplock_break_cancelled; + + _cifsFileInfo_put(cfile, false /* do not wait for ourself */, false); /* * releasing stale oplock after recent reconnect of smb session using * a now incorrect file handle is not a data integrity issue but do * not bother sending an oplock release if session to server still is * disconnected since oplock already released by the server */ - if (!cfile->oplock_break_cancelled) { - rc = tcon->ses->server->ops->oplock_response(tcon, &cfile->fid, - cinode); + if (!oplock_break_cancelled) { + rc = tcon->ses->server->ops->oplock_response(tcon, persistent_fid, + volatile_fid, net_fid, cinode); cifs_dbg(FYI, "Oplock release rc = %d\n", rc); } - _cifsFileInfo_put(cfile, false /* do not wait for ourself */, false); cifs_done_oplock_break(cinode); } diff -u linux-6.2.0/fs/cifs/fs_context.c linux-6.2.0/fs/cifs/fs_context.c --- linux-6.2.0/fs/cifs/fs_context.c +++ linux-6.2.0/fs/cifs/fs_context.c @@ -904,6 +904,14 @@ ctx->sfu_remap = false; /* disable SFU mapping */ } break; + case Opt_mapchars: + if (result.negated) + ctx->sfu_remap = false; + else { + ctx->sfu_remap = true; + ctx->remap = false; /* disable SFM (mapposix) mapping */ + } + break; case Opt_user_xattr: if (result.negated) ctx->no_xattr = 1; diff -u linux-6.2.0/fs/cifs/smb1ops.c linux-6.2.0/fs/cifs/smb1ops.c --- linux-6.2.0/fs/cifs/smb1ops.c +++ linux-6.2.0/fs/cifs/smb1ops.c @@ -897,12 +897,11 @@ } static int -cifs_oplock_response(struct cifs_tcon *tcon, struct cifs_fid *fid, - struct cifsInodeInfo *cinode) +cifs_oplock_response(struct cifs_tcon *tcon, __u64 persistent_fid, + __u64 volatile_fid, __u16 net_fid, struct cifsInodeInfo *cinode) { - return CIFSSMBLock(0, tcon, fid->netfid, current->tgid, 0, 0, 0, 0, - LOCKING_ANDX_OPLOCK_RELEASE, false, - CIFS_CACHE_READ(cinode) ? 1 : 0); + return CIFSSMBLock(0, tcon, net_fid, current->tgid, 0, 0, 0, 0, + LOCKING_ANDX_OPLOCK_RELEASE, false, CIFS_CACHE_READ(cinode) ? 1 : 0); } static int diff -u linux-6.2.0/fs/cifs/smb2ops.c linux-6.2.0/fs/cifs/smb2ops.c --- linux-6.2.0/fs/cifs/smb2ops.c +++ linux-6.2.0/fs/cifs/smb2ops.c @@ -1682,7 +1682,7 @@ pcchunk->SourceOffset = cpu_to_le64(src_off); pcchunk->TargetOffset = cpu_to_le64(dest_off); pcchunk->Length = - cpu_to_le32(min_t(u32, len, tcon->max_bytes_chunk)); + cpu_to_le32(min_t(u64, len, tcon->max_bytes_chunk)); /* Request server copy to target from src identified by key */ kfree(retbuf); @@ -2383,15 +2383,14 @@ } static int -smb2_oplock_response(struct cifs_tcon *tcon, struct cifs_fid *fid, - struct cifsInodeInfo *cinode) +smb2_oplock_response(struct cifs_tcon *tcon, __u64 persistent_fid, + __u64 volatile_fid, __u16 net_fid, struct cifsInodeInfo *cinode) { if (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING) return SMB2_lease_break(0, tcon, cinode->lease_key, smb2_get_lease_state(cinode)); - return SMB2_oplock_break(0, tcon, fid->persistent_fid, - fid->volatile_fid, + return SMB2_oplock_break(0, tcon, persistent_fid, volatile_fid, CIFS_CACHE_READ(cinode) ? 1 : 0); } diff -u linux-6.2.0/fs/ext4/ext4.h linux-6.2.0/fs/ext4/ext4.h --- linux-6.2.0/fs/ext4/ext4.h +++ linux-6.2.0/fs/ext4/ext4.h @@ -1774,6 +1774,30 @@ return container_of(inode, struct ext4_inode_info, vfs_inode); } +static inline int ext4_writepages_down_read(struct super_block *sb) +{ + percpu_down_read(&EXT4_SB(sb)->s_writepages_rwsem); + return memalloc_nofs_save(); +} + +static inline void ext4_writepages_up_read(struct super_block *sb, int ctx) +{ + memalloc_nofs_restore(ctx); + percpu_up_read(&EXT4_SB(sb)->s_writepages_rwsem); +} + +static inline int ext4_writepages_down_write(struct super_block *sb) +{ + percpu_down_write(&EXT4_SB(sb)->s_writepages_rwsem); + return memalloc_nofs_save(); +} + +static inline void ext4_writepages_up_write(struct super_block *sb, int ctx) +{ + memalloc_nofs_restore(ctx); + percpu_up_write(&EXT4_SB(sb)->s_writepages_rwsem); +} + static inline int ext4_valid_inum(struct super_block *sb, unsigned long ino) { return ino == EXT4_ROOT_INO || @@ -2716,6 +2740,8 @@ extern struct ext4_group_desc * ext4_get_group_desc(struct super_block * sb, ext4_group_t block_group, struct buffer_head ** bh); +extern struct ext4_group_info *ext4_get_group_info(struct super_block *sb, + ext4_group_t group); extern int ext4_should_retry_alloc(struct super_block *sb, int *retries); extern struct buffer_head *ext4_read_block_bitmap_nowait(struct super_block *sb, @@ -3323,19 +3349,6 @@ raw_inode->i_size_high = cpu_to_le32(i_size >> 32); } -static inline -struct ext4_group_info *ext4_get_group_info(struct super_block *sb, - ext4_group_t group) -{ - struct ext4_group_info **grp_info; - long indexv, indexh; - BUG_ON(group >= EXT4_SB(sb)->s_groups_count); - indexv = group >> (EXT4_DESC_PER_BLOCK_BITS(sb)); - indexh = group & ((EXT4_DESC_PER_BLOCK(sb)) - 1); - grp_info = sbi_array_rcu_deref(EXT4_SB(sb), s_group_info, indexv); - return grp_info[indexh]; -} - /* * Reading s_groups_count requires using smp_rmb() afterwards. See * the locking protocol documented in the comments of ext4_group_add() diff -u linux-6.2.0/fs/ext4/inline.c linux-6.2.0/fs/ext4/inline.c --- linux-6.2.0/fs/ext4/inline.c +++ linux-6.2.0/fs/ext4/inline.c @@ -34,6 +34,7 @@ struct ext4_xattr_ibody_header *header; struct ext4_xattr_entry *entry; struct ext4_inode *raw_inode; + void *end; int free, min_offs; if (!EXT4_INODE_HAS_XATTR_SPACE(inode)) @@ -57,14 +58,23 @@ raw_inode = ext4_raw_inode(iloc); header = IHDR(inode, raw_inode); entry = IFIRST(header); + end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size; /* Compute min_offs. */ - for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) { + while (!IS_LAST_ENTRY(entry)) { + void *next = EXT4_XATTR_NEXT(entry); + + if (next >= end) { + EXT4_ERROR_INODE(inode, + "corrupt xattr in inline inode"); + return 0; + } if (!entry->e_value_inum && entry->e_value_size) { size_t offs = le16_to_cpu(entry->e_value_offs); if (offs < min_offs) min_offs = offs; } + entry = next; } free = min_offs - ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32); @@ -350,7 +360,7 @@ error = ext4_xattr_ibody_get(inode, i.name_index, i.name, value, len); - if (error == -ENODATA) + if (error < 0) goto out; BUFFER_TRACE(is.iloc.bh, "get_write_access"); @@ -1177,6 +1187,7 @@ ext4_initialize_dirent_tail(dir_block, inode->i_sb->s_blocksize); set_buffer_uptodate(dir_block); + unlock_buffer(dir_block); err = ext4_handle_dirty_dirblock(handle, inode, dir_block); if (err) return err; @@ -1251,6 +1262,7 @@ if (!S_ISDIR(inode->i_mode)) { memcpy(data_bh->b_data, buf, inline_size); set_buffer_uptodate(data_bh); + unlock_buffer(data_bh); error = ext4_handle_dirty_metadata(handle, inode, data_bh); } else { @@ -1258,7 +1270,6 @@ buf, inline_size); } - unlock_buffer(data_bh); out_restore: if (error) ext4_restore_inline_data(handle, inode, iloc, buf, inline_size); diff -u linux-6.2.0/fs/ext4/inode.c linux-6.2.0/fs/ext4/inode.c --- linux-6.2.0/fs/ext4/inode.c +++ linux-6.2.0/fs/ext4/inode.c @@ -2957,13 +2957,14 @@ .can_map = 1, }; int ret; + int alloc_ctx; if (unlikely(ext4_forced_shutdown(EXT4_SB(sb)))) return -EIO; - percpu_down_read(&EXT4_SB(sb)->s_writepages_rwsem); + alloc_ctx = ext4_writepages_down_read(sb); ret = ext4_do_writepages(&mpd); - percpu_up_read(&EXT4_SB(sb)->s_writepages_rwsem); + ext4_writepages_up_read(sb, alloc_ctx); return ret; } @@ -2991,17 +2992,18 @@ long nr_to_write = wbc->nr_to_write; struct inode *inode = mapping->host; struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); + int alloc_ctx; if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) return -EIO; - percpu_down_read(&sbi->s_writepages_rwsem); + alloc_ctx = ext4_writepages_down_read(inode->i_sb); trace_ext4_writepages(inode, wbc); ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc); trace_ext4_writepages_result(inode, wbc, ret, nr_to_write - wbc->nr_to_write); - percpu_up_read(&sbi->s_writepages_rwsem); + ext4_writepages_up_read(inode->i_sb, alloc_ctx); return ret; } @@ -3575,7 +3577,7 @@ */ flags &= ~IOMAP_WRITE; ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap); - WARN_ON_ONCE(iomap->type != IOMAP_MAPPED); + WARN_ON_ONCE(!ret && iomap->type != IOMAP_MAPPED); return ret; } @@ -6124,7 +6126,7 @@ journal_t *journal; handle_t *handle; int err; - struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); + int alloc_ctx; /* * We have to be very careful here: changing a data block's @@ -6162,7 +6164,7 @@ } } - percpu_down_write(&sbi->s_writepages_rwsem); + alloc_ctx = ext4_writepages_down_write(inode->i_sb); jbd2_journal_lock_updates(journal); /* @@ -6179,7 +6181,7 @@ err = jbd2_journal_flush(journal, 0); if (err < 0) { jbd2_journal_unlock_updates(journal); - percpu_up_write(&sbi->s_writepages_rwsem); + ext4_writepages_up_write(inode->i_sb, alloc_ctx); return err; } ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); @@ -6187,7 +6189,7 @@ ext4_set_aops(inode); jbd2_journal_unlock_updates(journal); - percpu_up_write(&sbi->s_writepages_rwsem); + ext4_writepages_up_write(inode->i_sb, alloc_ctx); if (val) filemap_invalidate_unlock(inode->i_mapping); diff -u linux-6.2.0/fs/ext4/namei.c linux-6.2.0/fs/ext4/namei.c --- linux-6.2.0/fs/ext4/namei.c +++ linux-6.2.0/fs/ext4/namei.c @@ -674,7 +674,7 @@ len = de->name_len; if (!IS_ENCRYPTED(dir)) { /* Directory is not encrypted */ - ext4fs_dirhash(dir, de->name, + (void) ext4fs_dirhash(dir, de->name, de->name_len, &h); printk("%*.s:(U)%x.%u ", len, name, h.hash, @@ -709,8 +709,9 @@ if (IS_CASEFOLDED(dir)) h.hash = EXT4_DIRENT_HASH(de); else - ext4fs_dirhash(dir, de->name, - de->name_len, &h); + (void) ext4fs_dirhash(dir, + de->name, + de->name_len, &h); printk("%*.s:(E)%x.%u ", len, name, h.hash, (unsigned) ((char *) de - base)); @@ -720,7 +721,8 @@ #else int len = de->name_len; char *name = de->name; - ext4fs_dirhash(dir, de->name, de->name_len, &h); + (void) ext4fs_dirhash(dir, de->name, + de->name_len, &h); printk("%*.s:%x.%u ", len, name, h.hash, (unsigned) ((char *) de - base)); #endif @@ -849,8 +851,14 @@ hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed; /* hash is already computed for encrypted casefolded directory */ if (fname && fname_name(fname) && - !(IS_ENCRYPTED(dir) && IS_CASEFOLDED(dir))) - ext4fs_dirhash(dir, fname_name(fname), fname_len(fname), hinfo); + !(IS_ENCRYPTED(dir) && IS_CASEFOLDED(dir))) { + int ret = ext4fs_dirhash(dir, fname_name(fname), + fname_len(fname), hinfo); + if (ret < 0) { + ret_err = ERR_PTR(ret); + goto fail; + } + } hash = hinfo->hash; if (root->info.unused_flags & 1) { @@ -1111,7 +1119,12 @@ hinfo->minor_hash = 0; } } else { - ext4fs_dirhash(dir, de->name, de->name_len, hinfo); + err = ext4fs_dirhash(dir, de->name, + de->name_len, hinfo); + if (err < 0) { + count = err; + goto errout; + } } if ((hinfo->hash < start_hash) || ((hinfo->hash == start_hash) && @@ -1313,8 +1326,12 @@ if (de->name_len && de->inode) { if (ext4_hash_in_dirent(dir)) h.hash = EXT4_DIRENT_HASH(de); - else - ext4fs_dirhash(dir, de->name, de->name_len, &h); + else { + int err = ext4fs_dirhash(dir, de->name, + de->name_len, &h); + if (err < 0) + return err; + } map_tail--; map_tail->hash = h.hash; map_tail->offs = ((char *) de - base)>>2; @@ -1452,10 +1469,9 @@ hinfo->hash_version = DX_HASH_SIPHASH; hinfo->seed = NULL; if (cf_name->name) - ext4fs_dirhash(dir, cf_name->name, cf_name->len, hinfo); + return ext4fs_dirhash(dir, cf_name->name, cf_name->len, hinfo); else - ext4fs_dirhash(dir, iname->name, iname->len, hinfo); - return 0; + return ext4fs_dirhash(dir, iname->name, iname->len, hinfo); } #endif @@ -2298,10 +2314,15 @@ fname->hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed; /* casefolded encrypted hashes are computed on fname setup */ - if (!ext4_hash_in_dirent(dir)) - ext4fs_dirhash(dir, fname_name(fname), - fname_len(fname), &fname->hinfo); - + if (!ext4_hash_in_dirent(dir)) { + int err = ext4fs_dirhash(dir, fname_name(fname), + fname_len(fname), &fname->hinfo); + if (err < 0) { + brelse(bh2); + brelse(bh); + return err; + } + } memset(frames, 0, sizeof(frames)); frame = frames; frame->entries = entries; diff -u linux-6.2.0/fs/ext4/super.c linux-6.2.0/fs/ext4/super.c --- linux-6.2.0/fs/ext4/super.c +++ linux-6.2.0/fs/ext4/super.c @@ -1048,6 +1048,8 @@ struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group, NULL); int ret; + if (!grp || !gdp) + return; if (flags & EXT4_GROUP_INFO_BBITMAP_CORRUPT) { ret = ext4_test_and_set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT, &grp->bb_state); @@ -3195,11 +3197,9 @@ crc = crc16(crc, (__u8 *)gdp, offset); offset += sizeof(gdp->bg_checksum); /* skip checksum */ /* for checksum of struct ext4_group_desc do the rest...*/ - if (ext4_has_feature_64bit(sb) && - offset < le16_to_cpu(sbi->s_es->s_desc_size)) + if (ext4_has_feature_64bit(sb) && offset < sbi->s_desc_size) crc = crc16(crc, (__u8 *)gdp + offset, - le16_to_cpu(sbi->s_es->s_desc_size) - - offset); + sbi->s_desc_size - offset); out: return cpu_to_le16(crc); @@ -5282,9 +5282,11 @@ ext4_has_feature_orphan_present(sb) || ext4_has_feature_journal_needs_recovery(sb)); - if (ext4_has_feature_mmp(sb) && !sb_rdonly(sb)) - if (ext4_multi_mount_protect(sb, le64_to_cpu(es->s_mmp_block))) + if (ext4_has_feature_mmp(sb) && !sb_rdonly(sb)) { + err = ext4_multi_mount_protect(sb, le64_to_cpu(es->s_mmp_block)); + if (err) goto failed_mount3a; + } /* * The first inode we look at is the journal inode. Don't try @@ -6526,12 +6528,12 @@ goto restore_opts; sb->s_flags &= ~SB_RDONLY; - if (ext4_has_feature_mmp(sb)) - if (ext4_multi_mount_protect(sb, - le64_to_cpu(es->s_mmp_block))) { - err = -EROFS; + if (ext4_has_feature_mmp(sb)) { + err = ext4_multi_mount_protect(sb, + le64_to_cpu(es->s_mmp_block)); + if (err) goto restore_opts; - } + } #ifdef CONFIG_QUOTA enable_quota = 1; #endif @@ -6568,9 +6570,6 @@ } #ifdef CONFIG_QUOTA - /* Release old quota file names */ - for (i = 0; i < EXT4_MAXQUOTAS; i++) - kfree(old_opts.s_qf_names[i]); if (enable_quota) { if (sb_any_quota_suspended(sb)) dquot_resume(sb, -1); @@ -6580,6 +6579,9 @@ goto restore_opts; } } + /* Release old quota file names */ + for (i = 0; i < EXT4_MAXQUOTAS; i++) + kfree(old_opts.s_qf_names[i]); #endif if (!test_opt(sb, BLOCK_VALIDITY) && sbi->s_system_blks) ext4_release_system_zone(sb); @@ -6590,6 +6592,13 @@ return 0; restore_opts: + /* + * If there was a failing r/w to ro transition, we may need to + * re-enable quota + */ + if ((sb->s_flags & SB_RDONLY) && !(old_sb_flags & SB_RDONLY) && + sb_any_quota_suspended(sb)) + dquot_resume(sb, -1); sb->s_flags = old_sb_flags; sbi->s_mount_opt = old_opts.s_mount_opt; sbi->s_mount_opt2 = old_opts.s_mount_opt2; diff -u linux-6.2.0/fs/ext4/xattr.c linux-6.2.0/fs/ext4/xattr.c --- linux-6.2.0/fs/ext4/xattr.c +++ linux-6.2.0/fs/ext4/xattr.c @@ -2581,6 +2581,7 @@ .in_inode = !!entry->e_value_inum, }; struct ext4_xattr_ibody_header *header = IHDR(inode, raw_inode); + int needs_kvfree = 0; int error; is = kzalloc(sizeof(struct ext4_xattr_ibody_find), GFP_NOFS); @@ -2603,7 +2604,7 @@ error = -ENOMEM; goto out; } - + needs_kvfree = 1; error = ext4_xattr_inode_get(inode, entry, buffer, value_size); if (error) goto out; @@ -2642,7 +2643,7 @@ out: kfree(b_entry_name); - if (entry->e_value_inum && buffer) + if (needs_kvfree && buffer) kvfree(buffer); if (is) brelse(is->iloc.bh); diff -u linux-6.2.0/fs/f2fs/data.c linux-6.2.0/fs/f2fs/data.c --- linux-6.2.0/fs/f2fs/data.c +++ linux-6.2.0/fs/f2fs/data.c @@ -2801,7 +2801,8 @@ * don't drop any dirty dentry pages for keeping lastest * directory structure. */ - if (S_ISDIR(inode->i_mode)) + if (S_ISDIR(inode->i_mode) && + !is_sbi_flag_set(sbi, SBI_IS_CLOSE)) goto redirty_out; goto out; } diff -u linux-6.2.0/fs/f2fs/f2fs.h linux-6.2.0/fs/f2fs/f2fs.h --- linux-6.2.0/fs/f2fs/f2fs.h +++ linux-6.2.0/fs/f2fs/f2fs.h @@ -629,13 +629,8 @@ struct rb_entry { struct rb_node rb_node; /* rb node located in rb-tree */ - union { - struct { - unsigned int ofs; /* start offset of the entry */ - unsigned int len; /* length of the entry */ - }; - unsigned long long key; /* 64-bits key */ - } __packed; + unsigned int ofs; /* start offset of the entry */ + unsigned int len; /* length of the entry */ }; struct extent_info { @@ -3852,7 +3847,7 @@ block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode); int f2fs_gc(struct f2fs_sb_info *sbi, struct f2fs_gc_control *gc_control); void f2fs_build_gc_manager(struct f2fs_sb_info *sbi); -int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count); +int f2fs_resize_fs(struct file *filp, __u64 block_count); int __init f2fs_create_garbage_collection_cache(void); void f2fs_destroy_garbage_collection_cache(void); @@ -4164,10 +4159,6 @@ */ struct rb_entry *f2fs_lookup_rb_tree(struct rb_root_cached *root, struct rb_entry *cached_re, unsigned int ofs); -struct rb_node **f2fs_lookup_rb_tree_ext(struct f2fs_sb_info *sbi, - struct rb_root_cached *root, - struct rb_node **parent, - unsigned long long key, bool *left_most); struct rb_node **f2fs_lookup_rb_tree_for_insert(struct f2fs_sb_info *sbi, struct rb_root_cached *root, struct rb_node **parent, @@ -4178,7 +4169,7 @@ struct rb_node ***insert_p, struct rb_node **insert_parent, bool force, bool *leftmost); bool f2fs_check_rb_tree_consistence(struct f2fs_sb_info *sbi, - struct rb_root_cached *root, bool check_key); + struct rb_root_cached *root); void f2fs_init_extent_tree(struct inode *inode); void f2fs_drop_extent_tree(struct inode *inode); void f2fs_destroy_extent_node(struct inode *inode); @@ -4485,6 +4476,11 @@ return false; } +static inline bool f2fs_dev_is_readonly(struct f2fs_sb_info *sbi) +{ + return f2fs_sb_has_readonly(sbi) || f2fs_hw_is_readonly(sbi); +} + static inline bool f2fs_lfs_mode(struct f2fs_sb_info *sbi) { return F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS; diff -u linux-6.2.0/fs/f2fs/file.c linux-6.2.0/fs/f2fs/file.c --- linux-6.2.0/fs/f2fs/file.c +++ linux-6.2.0/fs/f2fs/file.c @@ -3282,7 +3282,7 @@ sizeof(block_count))) return -EFAULT; - return f2fs_resize_fs(sbi, block_count); + return f2fs_resize_fs(filp, block_count); } static int f2fs_ioc_enable_verity(struct file *filp, unsigned long arg) diff -u linux-6.2.0/fs/f2fs/gc.c linux-6.2.0/fs/f2fs/gc.c --- linux-6.2.0/fs/f2fs/gc.c +++ linux-6.2.0/fs/f2fs/gc.c @@ -392,40 +392,95 @@ return sum; } -static struct victim_entry *attach_victim_entry(struct f2fs_sb_info *sbi, - unsigned long long mtime, unsigned int segno, - struct rb_node *parent, struct rb_node **p, - bool left_most) +static bool f2fs_check_victim_tree(struct f2fs_sb_info *sbi, + struct rb_root_cached *root) +{ +#ifdef CONFIG_F2FS_CHECK_FS + struct rb_node *cur = rb_first_cached(root), *next; + struct victim_entry *cur_ve, *next_ve; + + while (cur) { + next = rb_next(cur); + if (!next) + return true; + + cur_ve = rb_entry(cur, struct victim_entry, rb_node); + next_ve = rb_entry(next, struct victim_entry, rb_node); + + if (cur_ve->mtime > next_ve->mtime) { + f2fs_info(sbi, "broken victim_rbtree, " + "cur_mtime(%llu) next_mtime(%llu)", + cur_ve->mtime, next_ve->mtime); + return false; + } + cur = next; + } +#endif + return true; +} + +static struct victim_entry *__lookup_victim_entry(struct f2fs_sb_info *sbi, + unsigned long long mtime) +{ + struct atgc_management *am = &sbi->am; + struct rb_node *node = am->root.rb_root.rb_node; + struct victim_entry *ve = NULL; + + while (node) { + ve = rb_entry(node, struct victim_entry, rb_node); + + if (mtime < ve->mtime) + node = node->rb_left; + else + node = node->rb_right; + } + return ve; +} + +static struct victim_entry *__create_victim_entry(struct f2fs_sb_info *sbi, + unsigned long long mtime, unsigned int segno) { struct atgc_management *am = &sbi->am; struct victim_entry *ve; - ve = f2fs_kmem_cache_alloc(victim_entry_slab, - GFP_NOFS, true, NULL); + ve = f2fs_kmem_cache_alloc(victim_entry_slab, GFP_NOFS, true, NULL); ve->mtime = mtime; ve->segno = segno; - rb_link_node(&ve->rb_node, parent, p); - rb_insert_color_cached(&ve->rb_node, &am->root, left_most); - list_add_tail(&ve->list, &am->victim_list); - am->victim_count++; return ve; } -static void insert_victim_entry(struct f2fs_sb_info *sbi, +static void __insert_victim_entry(struct f2fs_sb_info *sbi, unsigned long long mtime, unsigned int segno) { struct atgc_management *am = &sbi->am; - struct rb_node **p; + struct rb_root_cached *root = &am->root; + struct rb_node **p = &root->rb_root.rb_node; struct rb_node *parent = NULL; + struct victim_entry *ve; bool left_most = true; - p = f2fs_lookup_rb_tree_ext(sbi, &am->root, &parent, mtime, &left_most); - attach_victim_entry(sbi, mtime, segno, parent, p, left_most); + /* look up rb tree to find parent node */ + while (*p) { + parent = *p; + ve = rb_entry(parent, struct victim_entry, rb_node); + + if (mtime < ve->mtime) { + p = &(*p)->rb_left; + } else { + p = &(*p)->rb_right; + left_most = false; + } + } + + ve = __create_victim_entry(sbi, mtime, segno); + + rb_link_node(&ve->rb_node, parent, p); + rb_insert_color_cached(&ve->rb_node, root, left_most); } static void add_victim_entry(struct f2fs_sb_info *sbi, @@ -461,19 +516,7 @@ if (sit_i->dirty_max_mtime - mtime < p->age_threshold) return; - insert_victim_entry(sbi, mtime, segno); -} - -static struct rb_node *lookup_central_victim(struct f2fs_sb_info *sbi, - struct victim_sel_policy *p) -{ - struct atgc_management *am = &sbi->am; - struct rb_node *parent = NULL; - bool left_most; - - f2fs_lookup_rb_tree_ext(sbi, &am->root, &parent, p->age, &left_most); - - return parent; + __insert_victim_entry(sbi, mtime, segno); } static void atgc_lookup_victim(struct f2fs_sb_info *sbi, @@ -483,7 +526,6 @@ struct atgc_management *am = &sbi->am; struct rb_root_cached *root = &am->root; struct rb_node *node; - struct rb_entry *re; struct victim_entry *ve; unsigned long long total_time; unsigned long long age, u, accu; @@ -510,12 +552,10 @@ node = rb_first_cached(root); next: - re = rb_entry_safe(node, struct rb_entry, rb_node); - if (!re) + ve = rb_entry_safe(node, struct victim_entry, rb_node); + if (!ve) return; - ve = (struct victim_entry *)re; - if (ve->mtime >= max_mtime || ve->mtime < min_mtime) goto skip; @@ -557,8 +597,6 @@ { struct sit_info *sit_i = SIT_I(sbi); struct atgc_management *am = &sbi->am; - struct rb_node *node; - struct rb_entry *re; struct victim_entry *ve; unsigned long long age; unsigned long long max_mtime = sit_i->dirty_max_mtime; @@ -568,25 +606,22 @@ unsigned int dirty_threshold = max(am->max_candidate_count, am->candidate_ratio * am->victim_count / 100); - unsigned int cost; - unsigned int iter = 0; + unsigned int cost, iter; int stage = 0; if (max_mtime < min_mtime) return; max_mtime += 1; next_stage: - node = lookup_central_victim(sbi, p); + iter = 0; + ve = __lookup_victim_entry(sbi, p->age); next_node: - re = rb_entry_safe(node, struct rb_entry, rb_node); - if (!re) { - if (stage == 0) - goto skip_stage; + if (!ve) { + if (stage++ == 0) + goto next_stage; return; } - ve = (struct victim_entry *)re; - if (ve->mtime >= max_mtime || ve->mtime < min_mtime) goto skip_node; @@ -612,24 +647,20 @@ } skip_node: if (iter < dirty_threshold) { - if (stage == 0) - node = rb_prev(node); - else if (stage == 1) - node = rb_next(node); + ve = rb_entry(stage == 0 ? rb_prev(&ve->rb_node) : + rb_next(&ve->rb_node), + struct victim_entry, rb_node); goto next_node; } -skip_stage: - if (stage < 1) { - stage++; - iter = 0; + + if (stage++ == 0) goto next_stage; - } } + static void lookup_victim_by_age(struct f2fs_sb_info *sbi, struct victim_sel_policy *p) { - f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi, - &sbi->am.root, true)); + f2fs_bug_on(sbi, !f2fs_check_victim_tree(sbi, &sbi->am.root)); if (p->gc_mode == GC_AT) atgc_lookup_victim(sbi, p); @@ -1783,6 +1814,7 @@ .iroot = RADIX_TREE_INIT(gc_list.iroot, GFP_NOFS), }; unsigned int skipped_round = 0, round = 0; + unsigned int upper_secs; trace_f2fs_gc_begin(sbi->sb, gc_type, gc_control->no_bg_gc, gc_control->nr_free_secs, @@ -1868,8 +1900,13 @@ } } - /* Write checkpoint to reclaim prefree segments */ - if (free_sections(sbi) < NR_CURSEG_PERSIST_TYPE && + __get_secs_required(sbi, NULL, &upper_secs, NULL); + + /* + * Write checkpoint to reclaim prefree segments. + * We need more three extra sections for writer's data/node/dentry. + */ + if (free_sections(sbi) <= upper_secs + NR_GC_CHECKPOINT_SECS && prefree_segments(sbi)) { ret = f2fs_write_checkpoint(sbi, &cpc); if (ret) @@ -2074,8 +2111,9 @@ } } -int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count) +int f2fs_resize_fs(struct file *filp, __u64 block_count) { + struct f2fs_sb_info *sbi = F2FS_I_SB(file_inode(filp)); __u64 old_block_count, shrunk_blocks; struct cp_control cpc = { CP_RESIZE, 0, 0, 0 }; unsigned int secs; @@ -2113,12 +2151,18 @@ return -EINVAL; } + err = mnt_want_write_file(filp); + if (err) + return err; + shrunk_blocks = old_block_count - block_count; secs = div_u64(shrunk_blocks, BLKS_PER_SEC(sbi)); /* stop other GC */ - if (!f2fs_down_write_trylock(&sbi->gc_lock)) - return -EAGAIN; + if (!f2fs_down_write_trylock(&sbi->gc_lock)) { + err = -EAGAIN; + goto out_drop_write; + } /* stop CP to protect MAIN_SEC in free_segment_range */ f2fs_lock_op(sbi); @@ -2138,10 +2182,18 @@ out_unlock: f2fs_unlock_op(sbi); f2fs_up_write(&sbi->gc_lock); +out_drop_write: + mnt_drop_write_file(filp); if (err) return err; freeze_super(sbi->sb); + + if (f2fs_readonly(sbi->sb)) { + thaw_super(sbi->sb); + return -EROFS; + } + f2fs_down_write(&sbi->gc_lock); f2fs_down_write(&sbi->cp_global_sem); diff -u linux-6.2.0/fs/f2fs/segment.c linux-6.2.0/fs/f2fs/segment.c --- linux-6.2.0/fs/f2fs/segment.c +++ linux-6.2.0/fs/f2fs/segment.c @@ -263,7 +263,7 @@ f2fs_put_dnode(&dn); trace_f2fs_replace_atomic_write_block(inode, F2FS_I(inode)->cow_inode, - index, *old_addr, new_addr, recover); + index, old_addr ? *old_addr : 0, new_addr, recover); return 0; } @@ -1487,7 +1487,7 @@ goto next; if (unlikely(dcc->rbtree_check)) f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi, - &dcc->root, false)); + &dcc->root)); blk_start_plug(&plug); list_for_each_entry_safe(dc, tmp, pend_list, list) { f2fs_bug_on(sbi, dc->state != D_PREP); @@ -3003,7 +3003,7 @@ mutex_lock(&dcc->cmd_lock); if (unlikely(dcc->rbtree_check)) f2fs_bug_on(sbi, !f2fs_check_rb_tree_consistence(sbi, - &dcc->root, false)); + &dcc->root)); dc = (struct discard_cmd *)f2fs_lookup_rb_tree_ret(&dcc->root, NULL, start, diff -u linux-6.2.0/fs/f2fs/segment.h linux-6.2.0/fs/f2fs/segment.h --- linux-6.2.0/fs/f2fs/segment.h +++ linux-6.2.0/fs/f2fs/segment.h @@ -602,8 +602,12 @@ return true; } -static inline bool has_not_enough_free_secs(struct f2fs_sb_info *sbi, - int freed, int needed) +/* + * calculate needed sections for dirty node/dentry + * and call has_curseg_enough_space + */ +static inline void __get_secs_required(struct f2fs_sb_info *sbi, + unsigned int *lower_p, unsigned int *upper_p, bool *curseg_p) { unsigned int total_node_blocks = get_pages(sbi, F2FS_DIRTY_NODES) + get_pages(sbi, F2FS_DIRTY_DENTS) + @@ -613,20 +617,37 @@ unsigned int dent_secs = total_dent_blocks / CAP_BLKS_PER_SEC(sbi); unsigned int node_blocks = total_node_blocks % CAP_BLKS_PER_SEC(sbi); unsigned int dent_blocks = total_dent_blocks % CAP_BLKS_PER_SEC(sbi); - unsigned int free, need_lower, need_upper; + + if (lower_p) + *lower_p = node_secs + dent_secs; + if (upper_p) + *upper_p = node_secs + dent_secs + + (node_blocks ? 1 : 0) + (dent_blocks ? 1 : 0); + if (curseg_p) + *curseg_p = has_curseg_enough_space(sbi, + node_blocks, dent_blocks); +} + +static inline bool has_not_enough_free_secs(struct f2fs_sb_info *sbi, + int freed, int needed) +{ + unsigned int free_secs, lower_secs, upper_secs; + bool curseg_space; if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING))) return false; - free = free_sections(sbi) + freed; - need_lower = node_secs + dent_secs + reserved_sections(sbi) + needed; - need_upper = need_lower + (node_blocks ? 1 : 0) + (dent_blocks ? 1 : 0); + __get_secs_required(sbi, &lower_secs, &upper_secs, &curseg_space); + + free_secs = free_sections(sbi) + freed; + lower_secs += needed + reserved_sections(sbi); + upper_secs += needed + reserved_sections(sbi); - if (free > need_upper) + if (free_secs > upper_secs) return false; - else if (free <= need_lower) + else if (free_secs <= lower_secs) return true; - return !has_curseg_enough_space(sbi, node_blocks, dent_blocks); + return !curseg_space; } static inline bool f2fs_is_checkpoint_ready(struct f2fs_sb_info *sbi) diff -u linux-6.2.0/fs/f2fs/super.c linux-6.2.0/fs/f2fs/super.c --- linux-6.2.0/fs/f2fs/super.c +++ linux-6.2.0/fs/f2fs/super.c @@ -2282,7 +2282,7 @@ if (f2fs_readonly(sb) && (*flags & SB_RDONLY)) goto skip; - if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) { + if (f2fs_dev_is_readonly(sbi) && !(*flags & SB_RDONLY)) { err = -EROFS; goto restore_opts; } diff -u linux-6.2.0/fs/fs-writeback.c linux-6.2.0/fs/fs-writeback.c --- linux-6.2.0/fs/fs-writeback.c +++ linux-6.2.0/fs/fs-writeback.c @@ -829,7 +829,7 @@ * is okay. The main goal is avoiding keeping an inode on * the wrong wb for an extended period of time. */ - if (hweight32(history) > WB_FRN_HIST_THR_SLOTS) + if (hweight16(history) > WB_FRN_HIST_THR_SLOTS) inode_switch_wbs(inode, max_id); } diff -u linux-6.2.0/fs/ksmbd/connection.c linux-6.2.0/fs/ksmbd/connection.c --- linux-6.2.0/fs/ksmbd/connection.c +++ linux-6.2.0/fs/ksmbd/connection.c @@ -20,7 +20,7 @@ static struct ksmbd_conn_ops default_conn_ops; LIST_HEAD(conn_list); -DEFINE_RWLOCK(conn_list_lock); +DECLARE_RWSEM(conn_list_lock); /** * ksmbd_conn_free() - free resources of the connection instance @@ -32,9 +32,9 @@ */ void ksmbd_conn_free(struct ksmbd_conn *conn) { - write_lock(&conn_list_lock); + down_write(&conn_list_lock); list_del(&conn->conns_list); - write_unlock(&conn_list_lock); + up_write(&conn_list_lock); xa_destroy(&conn->sessions); kvfree(conn->request_buf); @@ -56,7 +56,7 @@ return NULL; conn->need_neg = true; - conn->status = KSMBD_SESS_NEW; + ksmbd_conn_set_new(conn); conn->local_nls = load_nls("utf8"); if (!conn->local_nls) conn->local_nls = load_nls_default(); @@ -84,9 +84,9 @@ spin_lock_init(&conn->llist_lock); INIT_LIST_HEAD(&conn->lock_list); - write_lock(&conn_list_lock); + down_write(&conn_list_lock); list_add(&conn->conns_list, &conn_list); - write_unlock(&conn_list_lock); + up_write(&conn_list_lock); return conn; } @@ -95,7 +95,7 @@ struct ksmbd_conn *t; bool ret = false; - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(t, &conn_list, conns_list) { if (memcmp(t->ClientGUID, c->ClientGUID, SMB2_CLIENT_GUID_SIZE)) continue; @@ -103,7 +103,7 @@ ret = true; break; } - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); return ret; } @@ -149,19 +149,47 @@ return ret; } -static void ksmbd_conn_lock(struct ksmbd_conn *conn) +void ksmbd_conn_lock(struct ksmbd_conn *conn) { mutex_lock(&conn->srv_mutex); } -static void ksmbd_conn_unlock(struct ksmbd_conn *conn) +void ksmbd_conn_unlock(struct ksmbd_conn *conn) { mutex_unlock(&conn->srv_mutex); } -void ksmbd_conn_wait_idle(struct ksmbd_conn *conn) +void ksmbd_all_conn_set_status(u64 sess_id, u32 status) { + struct ksmbd_conn *conn; + + down_read(&conn_list_lock); + list_for_each_entry(conn, &conn_list, conns_list) { + if (conn->binding || xa_load(&conn->sessions, sess_id)) + WRITE_ONCE(conn->status, status); + } + up_read(&conn_list_lock); +} + +void ksmbd_conn_wait_idle(struct ksmbd_conn *conn, u64 sess_id) +{ + struct ksmbd_conn *bind_conn; + wait_event(conn->req_running_q, atomic_read(&conn->req_running) < 2); + + down_read(&conn_list_lock); + list_for_each_entry(bind_conn, &conn_list, conns_list) { + if (bind_conn == conn) + continue; + + if ((bind_conn->binding || xa_load(&bind_conn->sessions, sess_id)) && + !ksmbd_conn_releasing(bind_conn) && + atomic_read(&bind_conn->req_running)) { + wait_event(bind_conn->req_running_q, + atomic_read(&bind_conn->req_running) == 0); + } + } + up_read(&conn_list_lock); } int ksmbd_conn_write(struct ksmbd_work *work) @@ -245,7 +273,7 @@ if (!ksmbd_server_running()) return false; - if (conn->status == KSMBD_SESS_EXITING) + if (ksmbd_conn_exiting(conn)) return false; if (kthread_should_stop()) @@ -305,7 +333,7 @@ pdu_size = get_rfc1002_len(hdr_buf); ksmbd_debug(CONN, "RFC1002 header %u bytes\n", pdu_size); - if (conn->status == KSMBD_SESS_GOOD) + if (ksmbd_conn_good(conn)) max_allowed_pdu_size = SMB3_MAX_MSGSIZE + conn->vals->max_write_size; else @@ -314,7 +342,7 @@ if (pdu_size > max_allowed_pdu_size) { pr_err_ratelimited("PDU length(%u) excceed maximum allowed pdu size(%u) on connection(%d)\n", pdu_size, max_allowed_pdu_size, - conn->status); + READ_ONCE(conn->status)); break; } @@ -325,7 +353,8 @@ break; /* 4 for rfc1002 length field */ - size = pdu_size + 4; + /* 1 for implied bcc[0] */ + size = pdu_size + 4 + 1; conn->request_buf = kvmalloc(size, GFP_KERNEL); if (!conn->request_buf) break; @@ -362,10 +391,10 @@ } out: + ksmbd_conn_set_releasing(conn); /* Wait till all reference dropped to the Server object*/ wait_event(conn->r_count_q, atomic_read(&conn->r_count) == 0); - if (IS_ENABLED(CONFIG_UNICODE)) utf8_unload(conn->um); unload_nls(conn->local_nls); @@ -409,7 +438,7 @@ struct ksmbd_transport *t; again: - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(conn, &conn_list, conns_list) { struct task_struct *task; @@ -418,14 +447,14 @@ if (task) ksmbd_debug(CONN, "Stop session handler %s/%d\n", task->comm, task_pid_nr(task)); - conn->status = KSMBD_SESS_EXITING; + ksmbd_conn_set_exiting(conn); if (t->ops->shutdown) { - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); t->ops->shutdown(t); - read_lock(&conn_list_lock); + down_read(&conn_list_lock); } } - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); if (!list_empty(&conn_list)) { schedule_timeout_interruptible(HZ / 10); /* 100ms */ diff -u linux-6.2.0/fs/ksmbd/connection.h linux-6.2.0/fs/ksmbd/connection.h --- linux-6.2.0/fs/ksmbd/connection.h +++ linux-6.2.0/fs/ksmbd/connection.h @@ -26,7 +26,8 @@ KSMBD_SESS_GOOD, KSMBD_SESS_EXITING, KSMBD_SESS_NEED_RECONNECT, - KSMBD_SESS_NEED_NEGOTIATE + KSMBD_SESS_NEED_NEGOTIATE, + KSMBD_SESS_RELEASING }; struct ksmbd_stats { @@ -140,10 +141,10 @@ #define KSMBD_TCP_PEER_SOCKADDR(c) ((struct sockaddr *)&((c)->peer_addr)) extern struct list_head conn_list; -extern rwlock_t conn_list_lock; +extern struct rw_semaphore conn_list_lock; bool ksmbd_conn_alive(struct ksmbd_conn *conn); -void ksmbd_conn_wait_idle(struct ksmbd_conn *conn); +void ksmbd_conn_wait_idle(struct ksmbd_conn *conn, u64 sess_id); struct ksmbd_conn *ksmbd_conn_alloc(void); void ksmbd_conn_free(struct ksmbd_conn *conn); bool ksmbd_conn_lookup_dialect(struct ksmbd_conn *c); @@ -162,6 +163,8 @@ int ksmbd_conn_handler_loop(void *p); int ksmbd_conn_transport_init(void); void ksmbd_conn_transport_destroy(void); +void ksmbd_conn_lock(struct ksmbd_conn *conn); +void ksmbd_conn_unlock(struct ksmbd_conn *conn); /* * WARNING @@ -171,41 +174,58 @@ */ -static inline bool ksmbd_conn_good(struct ksmbd_work *work) +static inline bool ksmbd_conn_good(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_GOOD; + return READ_ONCE(conn->status) == KSMBD_SESS_GOOD; } -static inline bool ksmbd_conn_need_negotiate(struct ksmbd_work *work) +static inline bool ksmbd_conn_need_negotiate(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_NEED_NEGOTIATE; + return READ_ONCE(conn->status) == KSMBD_SESS_NEED_NEGOTIATE; } -static inline bool ksmbd_conn_need_reconnect(struct ksmbd_work *work) +static inline bool ksmbd_conn_need_reconnect(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_NEED_RECONNECT; + return READ_ONCE(conn->status) == KSMBD_SESS_NEED_RECONNECT; } -static inline bool ksmbd_conn_exiting(struct ksmbd_work *work) +static inline bool ksmbd_conn_exiting(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_EXITING; + return READ_ONCE(conn->status) == KSMBD_SESS_EXITING; } -static inline void ksmbd_conn_set_good(struct ksmbd_work *work) +static inline bool ksmbd_conn_releasing(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_GOOD; + return READ_ONCE(conn->status) == KSMBD_SESS_RELEASING; } -static inline void ksmbd_conn_set_need_negotiate(struct ksmbd_work *work) +static inline void ksmbd_conn_set_new(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_NEED_NEGOTIATE; + WRITE_ONCE(conn->status, KSMBD_SESS_NEW); } -static inline void ksmbd_conn_set_need_reconnect(struct ksmbd_work *work) +static inline void ksmbd_conn_set_good(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_NEED_RECONNECT; + WRITE_ONCE(conn->status, KSMBD_SESS_GOOD); } -static inline void ksmbd_conn_set_exiting(struct ksmbd_work *work) +static inline void ksmbd_conn_set_need_negotiate(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_EXITING; + WRITE_ONCE(conn->status, KSMBD_SESS_NEED_NEGOTIATE); } + +static inline void ksmbd_conn_set_need_reconnect(struct ksmbd_conn *conn) +{ + WRITE_ONCE(conn->status, KSMBD_SESS_NEED_RECONNECT); +} + +static inline void ksmbd_conn_set_exiting(struct ksmbd_conn *conn) +{ + WRITE_ONCE(conn->status, KSMBD_SESS_EXITING); +} + +static inline void ksmbd_conn_set_releasing(struct ksmbd_conn *conn) +{ + WRITE_ONCE(conn->status, KSMBD_SESS_RELEASING); +} + +void ksmbd_all_conn_set_status(u64 sess_id, u32 status); #endif /* __CONNECTION_H__ */ diff -u linux-6.2.0/fs/ksmbd/mgmt/tree_connect.c linux-6.2.0/fs/ksmbd/mgmt/tree_connect.c --- linux-6.2.0/fs/ksmbd/mgmt/tree_connect.c +++ linux-6.2.0/fs/ksmbd/mgmt/tree_connect.c @@ -137,6 +137,9 @@ struct ksmbd_tree_connect *tc; unsigned long id; + if (!sess) + return -EINVAL; + xa_for_each(&sess->tree_conns, id, tc) ret |= ksmbd_tree_conn_disconnect(sess, tc); xa_destroy(&sess->tree_conns); diff -u linux-6.2.0/fs/ksmbd/server.c linux-6.2.0/fs/ksmbd/server.c --- linux-6.2.0/fs/ksmbd/server.c +++ linux-6.2.0/fs/ksmbd/server.c @@ -93,7 +93,8 @@ { struct smb_hdr *rsp_hdr; - if (ksmbd_conn_exiting(work) || ksmbd_conn_need_reconnect(work)) { + if (ksmbd_conn_exiting(work->conn) || + ksmbd_conn_need_reconnect(work->conn)) { rsp_hdr = work->response_buf; rsp_hdr->Status.CifsError = STATUS_CONNECTION_DISCONNECTED; return 1; diff -u linux-6.2.0/fs/ksmbd/smb2misc.c linux-6.2.0/fs/ksmbd/smb2misc.c --- linux-6.2.0/fs/ksmbd/smb2misc.c +++ linux-6.2.0/fs/ksmbd/smb2misc.c @@ -416,8 +416,11 @@ /* * Allow a message that padded to 8byte boundary. + * Linux 4.19.217 with smb 3.0.2 are sometimes + * sending messages where the cls_len is exactly + * 8 bytes less than len. */ - if (clc_len < len && (len - clc_len) < 8) + if (clc_len < len && (len - clc_len) <= 8) goto validate_credit; pr_err_ratelimited( diff -u linux-6.2.0/fs/ksmbd/smb2pdu.c linux-6.2.0/fs/ksmbd/smb2pdu.c --- linux-6.2.0/fs/ksmbd/smb2pdu.c +++ linux-6.2.0/fs/ksmbd/smb2pdu.c @@ -74,14 +74,7 @@ struct channel *lookup_chann_list(struct ksmbd_session *sess, struct ksmbd_conn *conn) { - struct channel *chann; - - list_for_each_entry(chann, &sess->ksmbd_chann_list, chann_list) { - if (chann->conn == conn) - return chann; - } - - return NULL; + return xa_load(&sess->ksmbd_chann_list, (long)conn); } /** @@ -254,7 +247,7 @@ rsp = smb2_get_msg(work->response_buf); - WARN_ON(ksmbd_conn_good(work)); + WARN_ON(ksmbd_conn_good(conn)); rsp->StructureSize = cpu_to_le16(65); ksmbd_debug(SMB, "conn->dialect 0x%x\n", conn->dialect); @@ -284,7 +277,7 @@ rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE; conn->use_spnego = true; - ksmbd_conn_set_need_negotiate(work); + ksmbd_conn_set_need_negotiate(conn); return 0; } @@ -574,7 +567,7 @@ cmd == SMB2_SESSION_SETUP_HE) return 0; - if (!ksmbd_conn_good(work)) + if (!ksmbd_conn_good(conn)) return -EINVAL; sess_id = le64_to_cpu(req_hdr->SessionId); @@ -592,6 +585,7 @@ struct ksmbd_session *prev_sess = ksmbd_session_lookup_slowpath(id); struct ksmbd_user *prev_user; struct channel *chann; + long index; if (!prev_sess) return; @@ -605,10 +599,8 @@ return; prev_sess->state = SMB2_SESSION_EXPIRED; - write_lock(&prev_sess->chann_lock); - list_for_each_entry(chann, &prev_sess->ksmbd_chann_list, chann_list) - chann->conn->status = KSMBD_SESS_EXITING; - write_unlock(&prev_sess->chann_lock); + xa_for_each(&prev_sess->ksmbd_chann_list, index, chann) + ksmbd_conn_set_exiting(chann->conn); } /** @@ -1075,7 +1067,7 @@ ksmbd_debug(SMB, "Received negotiate request\n"); conn->need_neg = false; - if (ksmbd_conn_good(work)) { + if (ksmbd_conn_good(conn)) { pr_err("conn->tcp_status is already in CifsGood State\n"); work->send_no_response = 1; return rc; @@ -1230,7 +1222,7 @@ } conn->srv_sec_mode = le16_to_cpu(rsp->SecurityMode); - ksmbd_conn_set_need_negotiate(work); + ksmbd_conn_set_need_negotiate(conn); err_out: if (rc < 0) @@ -1381,7 +1373,7 @@ struct authenticate_message *authblob; struct ksmbd_user *user; char *name; - unsigned int auth_msg_len, name_off, name_len, secbuf_len; + unsigned int name_off, name_len, secbuf_len; secbuf_len = le16_to_cpu(req->SecurityBufferLength); if (secbuf_len < sizeof(struct authenticate_message)) { @@ -1391,9 +1383,8 @@ authblob = user_authblob(conn, req); name_off = le32_to_cpu(authblob->UserName.BufferOffset); name_len = le16_to_cpu(authblob->UserName.Length); - auth_msg_len = le16_to_cpu(req->SecurityBufferOffset) + secbuf_len; - if (auth_msg_len < (u64)name_off + name_len) + if (secbuf_len < (u64)name_off + name_len) return NULL; name = smb_strndup_from_utf16((const char *)authblob + name_off, @@ -1521,19 +1512,14 @@ binding_session: if (conn->dialect >= SMB30_PROT_ID) { - read_lock(&sess->chann_lock); chann = lookup_chann_list(sess, conn); - read_unlock(&sess->chann_lock); if (!chann) { chann = kmalloc(sizeof(struct channel), GFP_KERNEL); if (!chann) return -ENOMEM; chann->conn = conn; - INIT_LIST_HEAD(&chann->chann_list); - write_lock(&sess->chann_lock); - list_add(&chann->chann_list, &sess->ksmbd_chann_list); - write_unlock(&sess->chann_lock); + xa_store(&sess->ksmbd_chann_list, (long)conn, chann, GFP_KERNEL); } } @@ -1608,19 +1594,14 @@ } if (conn->dialect >= SMB30_PROT_ID) { - read_lock(&sess->chann_lock); chann = lookup_chann_list(sess, conn); - read_unlock(&sess->chann_lock); if (!chann) { chann = kmalloc(sizeof(struct channel), GFP_KERNEL); if (!chann) return -ENOMEM; chann->conn = conn; - INIT_LIST_HEAD(&chann->chann_list); - write_lock(&sess->chann_lock); - list_add(&chann->chann_list, &sess->ksmbd_chann_list); - write_unlock(&sess->chann_lock); + xa_store(&sess->ksmbd_chann_list, (long)conn, chann, GFP_KERNEL); } } @@ -1663,6 +1644,7 @@ rsp->SecurityBufferLength = 0; inc_rfc1001_len(work->response_buf, 9); + ksmbd_conn_lock(conn); if (!req->hdr.SessionId) { sess = ksmbd_smb2_session_create(); if (!sess) { @@ -1710,6 +1692,12 @@ goto out_err; } + if (ksmbd_conn_need_reconnect(conn)) { + rc = -EFAULT; + sess = NULL; + goto out_err; + } + if (ksmbd_session_lookup(conn, sess_id)) { rc = -EACCES; goto out_err; @@ -1734,12 +1722,20 @@ rc = -ENOENT; goto out_err; } + + if (sess->state == SMB2_SESSION_EXPIRED) { + rc = -EFAULT; + goto out_err; + } + + if (ksmbd_conn_need_reconnect(conn)) { + rc = -EFAULT; + sess = NULL; + goto out_err; + } } work->sess = sess; - if (sess->state == SMB2_SESSION_EXPIRED) - sess->state = SMB2_SESSION_IN_PROGRESS; - negblob_off = le16_to_cpu(req->SecurityBufferOffset); negblob_len = le16_to_cpu(req->SecurityBufferLength); if (negblob_off < offsetof(struct smb2_sess_setup_req, Buffer) || @@ -1769,8 +1765,10 @@ goto out_err; } - ksmbd_conn_set_good(work); - sess->state = SMB2_SESSION_VALID; + if (!ksmbd_conn_need_reconnect(conn)) { + ksmbd_conn_set_good(conn); + sess->state = SMB2_SESSION_VALID; + } kfree(sess->Preauth_HashValue); sess->Preauth_HashValue = NULL; } else if (conn->preferred_auth_mech == KSMBD_AUTH_NTLMSSP) { @@ -1792,8 +1790,10 @@ if (rc) goto out_err; - ksmbd_conn_set_good(work); - sess->state = SMB2_SESSION_VALID; + if (!ksmbd_conn_need_reconnect(conn)) { + ksmbd_conn_set_good(conn); + sess->state = SMB2_SESSION_VALID; + } if (conn->binding) { struct preauth_session *preauth_sess; @@ -1861,14 +1861,17 @@ if (sess->user && sess->user->flags & KSMBD_USER_FLAG_DELAY_SESSION) try_delay = true; - xa_erase(&conn->sessions, sess->id); - ksmbd_session_destroy(sess); - work->sess = NULL; - if (try_delay) + sess->last_active = jiffies; + sess->state = SMB2_SESSION_EXPIRED; + if (try_delay) { + ksmbd_conn_set_need_reconnect(conn); ssleep(5); + ksmbd_conn_set_need_negotiate(conn); + } } } + ksmbd_conn_unlock(conn); return rc; } @@ -2093,21 +2096,25 @@ { struct ksmbd_conn *conn = work->conn; struct smb2_logoff_rsp *rsp = smb2_get_msg(work->response_buf); - struct ksmbd_session *sess = work->sess; + struct ksmbd_session *sess; + struct smb2_logoff_req *req = smb2_get_msg(work->request_buf); + u64 sess_id = le64_to_cpu(req->hdr.SessionId); rsp->StructureSize = cpu_to_le16(4); inc_rfc1001_len(work->response_buf, 4); ksmbd_debug(SMB, "request\n"); - /* setting CifsExiting here may race with start_tcp_sess */ - ksmbd_conn_set_need_reconnect(work); + ksmbd_all_conn_set_status(sess_id, KSMBD_SESS_NEED_RECONNECT); ksmbd_close_session_fds(work); - ksmbd_conn_wait_idle(conn); + ksmbd_conn_wait_idle(conn, sess_id); + /* + * Re-lookup session to validate if session is deleted + * while waiting request complete + */ + sess = ksmbd_session_lookup_all(conn, sess_id); if (ksmbd_tree_conn_session_logoff(sess)) { - struct smb2_logoff_req *req = smb2_get_msg(work->request_buf); - ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId); rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; smb2_set_err_rsp(work); @@ -2119,9 +2126,7 @@ ksmbd_free_user(sess->user); sess->user = NULL; - - /* let start_tcp_sess free connection info now */ - ksmbd_conn_set_need_negotiate(work); + ksmbd_all_conn_set_status(sess_id, KSMBD_SESS_NEED_NEGOTIATE); return 0; } @@ -2475,7 +2480,7 @@ return -ENOENT; /* Parse SD BUFFER create contexts */ - context = smb2_find_context_vals(req, SMB2_CREATE_SD_BUFFER); + context = smb2_find_context_vals(req, SMB2_CREATE_SD_BUFFER, 4); if (!context) return -ENOENT; else if (IS_ERR(context)) @@ -2677,7 +2682,7 @@ if (req->CreateContextsOffset) { /* Parse non-durable handle create contexts */ - context = smb2_find_context_vals(req, SMB2_CREATE_EA_BUFFER); + context = smb2_find_context_vals(req, SMB2_CREATE_EA_BUFFER, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); goto err_out1; @@ -2697,7 +2702,7 @@ } context = smb2_find_context_vals(req, - SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST); + SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); goto err_out1; @@ -2708,7 +2713,7 @@ } context = smb2_find_context_vals(req, - SMB2_CREATE_TIMEWARP_REQUEST); + SMB2_CREATE_TIMEWARP_REQUEST, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); goto err_out1; @@ -2720,7 +2725,7 @@ if (tcon->posix_extensions) { context = smb2_find_context_vals(req, - SMB2_CREATE_TAG_POSIX); + SMB2_CREATE_TAG_POSIX, 16); if (IS_ERR(context)) { rc = PTR_ERR(context); goto err_out1; @@ -3119,7 +3124,7 @@ struct create_alloc_size_req *az_req; az_req = (struct create_alloc_size_req *)smb2_find_context_vals(req, - SMB2_CREATE_ALLOCATION_SIZE); + SMB2_CREATE_ALLOCATION_SIZE, 4); if (IS_ERR(az_req)) { rc = PTR_ERR(az_req); goto err_out; @@ -3146,7 +3151,7 @@ err); } - context = smb2_find_context_vals(req, SMB2_CREATE_QUERY_ON_DISK_ID); + context = smb2_find_context_vals(req, SMB2_CREATE_QUERY_ON_DISK_ID, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); goto err_out; @@ -6953,7 +6958,7 @@ nolock = 1; /* check locks in connection list */ - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(conn, &conn_list, conns_list) { spin_lock(&conn->llist_lock); list_for_each_entry_safe(cmp_lock, tmp2, &conn->lock_list, clist) { @@ -6970,7 +6975,7 @@ list_del(&cmp_lock->flist); list_del(&cmp_lock->clist); spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); locks_free_lock(cmp_lock->fl); kfree(cmp_lock); @@ -6992,7 +6997,7 @@ cmp_lock->start > smb_lock->start && cmp_lock->start < smb_lock->end) { spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); pr_err("previous lock conflict with zero byte lock range\n"); goto out; } @@ -7001,7 +7006,7 @@ smb_lock->start > cmp_lock->start && smb_lock->start < cmp_lock->end) { spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); pr_err("current lock conflict with zero byte lock range\n"); goto out; } @@ -7012,14 +7017,14 @@ cmp_lock->end >= smb_lock->end)) && !cmp_lock->zero_len && !smb_lock->zero_len) { spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); pr_err("Not allow lock operation on exclusive lock range\n"); goto out; } } spin_unlock(&conn->llist_lock); } - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); out_check_cl: if (smb_lock->fl->fl_type == F_UNLCK && nolock) { pr_err("Try to unlock nolocked range\n"); @@ -8434,14 +8439,11 @@ if (le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { signing_key = work->sess->smb3signingkey; } else { - read_lock(&work->sess->chann_lock); chann = lookup_chann_list(work->sess, conn); if (!chann) { - read_unlock(&work->sess->chann_lock); return 0; } signing_key = chann->smb3signingkey; - read_unlock(&work->sess->chann_lock); } if (!signing_key) { @@ -8501,14 +8503,11 @@ le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { signing_key = work->sess->smb3signingkey; } else { - read_lock(&work->sess->chann_lock); chann = lookup_chann_list(work->sess, work->conn); if (!chann) { - read_unlock(&work->sess->chann_lock); return; } signing_key = chann->smb3signingkey; - read_unlock(&work->sess->chann_lock); } if (!signing_key) diff -u linux-6.2.0/fs/ksmbd/transport_tcp.c linux-6.2.0/fs/ksmbd/transport_tcp.c --- linux-6.2.0/fs/ksmbd/transport_tcp.c +++ linux-6.2.0/fs/ksmbd/transport_tcp.c @@ -333,7 +333,7 @@ if (length == -EINTR) { total_read = -ESHUTDOWN; break; - } else if (conn->status == KSMBD_SESS_NEED_RECONNECT) { + } else if (ksmbd_conn_need_reconnect(conn)) { total_read = -EAGAIN; break; } else if (length == -ERESTARTSYS || length == -EAGAIN) { diff -u linux-6.2.0/fs/open.c linux-6.2.0/fs/open.c --- linux-6.2.0/fs/open.c +++ linux-6.2.0/fs/open.c @@ -1158,13 +1158,21 @@ } /* - * In order to ensure programs get explicit errors when trying to use - * O_TMPFILE on old kernels, O_TMPFILE is implemented such that it - * looks like (O_DIRECTORY|O_RDWR & ~O_CREAT) to old kernels. But we - * have to require userspace to explicitly set it. + * Block bugs where O_DIRECTORY | O_CREAT created regular files. + * Note, that blocking O_DIRECTORY | O_CREAT here also protects + * O_TMPFILE below which requires O_DIRECTORY being raised. */ + if ((flags & (O_DIRECTORY | O_CREAT)) == (O_DIRECTORY | O_CREAT)) + return -EINVAL; + + /* Now handle the creative implementation of O_TMPFILE. */ if (flags & __O_TMPFILE) { - if ((flags & O_TMPFILE_MASK) != O_TMPFILE) + /* + * In order to ensure programs get explicit errors when trying + * to use O_TMPFILE on old kernels we enforce that O_DIRECTORY + * is raised alongside __O_TMPFILE. + */ + if (!(flags & O_DIRECTORY)) return -EINVAL; if (!(acc_mode & MAY_WRITE)) return -EINVAL; diff -u linux-6.2.0/fs/overlayfs/file.c linux-6.2.0/fs/overlayfs/file.c --- linux-6.2.0/fs/overlayfs/file.c +++ linux-6.2.0/fs/overlayfs/file.c @@ -504,16 +504,33 @@ * * See also mm/prfile.c */ +#ifdef CONFIG_MMU static void ovl_vm_prfile_set(struct vm_area_struct *vma, struct file *file) { get_file(file); - vma->vm_prfile = file; -#ifndef CONFIG_MMU + swap(vma->vm_prfile, file); + /* Drop reference count from previous file value */ + if (file) + fput(file); +} +#else +static void ovl_vm_prfile_set(struct vm_area_struct *vma, + struct file *file) +{ + struct file *vm_region_file = file; + get_file(file); - vma->vm_region->vm_prfile = file; -#endif + get_file(vm_region_file); + swap(vma->vm_prfile, file); + swap(vma->vm_region->vm_prfile, vm_region_file); + /* Drop reference count from previous file values */ + if (file) + fput(file); + if (vm_region_file) + fput(vm_region_file); } +#endif static int ovl_mmap(struct file *file, struct vm_area_struct *vma) { diff -u linux-6.2.0/fs/proc/proc_sysctl.c linux-6.2.0/fs/proc/proc_sysctl.c --- linux-6.2.0/fs/proc/proc_sysctl.c +++ linux-6.2.0/fs/proc/proc_sysctl.c @@ -1287,7 +1287,10 @@ * __register_sysctl_table - register a leaf sysctl table * @set: Sysctl tree to register on * @path: The path to the directory the sysctl table is in. - * @table: the top-level table structure + * @table: the top-level table structure without any child. This table + * should not be free'd after registration. So it should not be + * used on stack. It can either be a global or dynamically allocated + * by the caller and free'd later after sysctl unregistration. * * Register a sysctl table hierarchy. @table should be a filled in ctl_table * array. A completely 0 filled entry terminates the table. @@ -1308,9 +1311,12 @@ * proc_handler - the text handler routine (described below) * * extra1, extra2 - extra pointers usable by the proc handler routines + * XXX: we should eventually modify these to use long min / max [0] + * [0] https://lkml.kernel.org/87zgpte9o4.fsf@email.froward.int.ebiederm.org * * Leaf nodes in the sysctl tree will be represented by a single file - * under /proc; non-leaf nodes will be represented by directories. + * under /proc; non-leaf nodes (where child is not NULL) are not allowed, + * sysctl_check_table() verifies this. * * There must be a proc_handler routine for any terminal nodes. * Several default handlers are available to cover common cases - @@ -1352,7 +1358,7 @@ spin_lock(&sysctl_lock); dir = &set->dir; - /* Reference moved down the diretory tree get_subdir */ + /* Reference moved down the directory tree get_subdir */ dir->header.nreg++; spin_unlock(&sysctl_lock); @@ -1369,6 +1375,11 @@ if (namelen == 0) continue; + /* + * namelen ensures if name is "foo/bar/yay" only foo is + * registered first. We traverse as if using mkdir -p and + * return a ctl_dir for the last directory entry. + */ dir = get_subdir(dir, name, namelen); if (IS_ERR(dir)) goto fail; @@ -1394,8 +1405,15 @@ /** * register_sysctl - register a sysctl table - * @path: The path to the directory the sysctl table is in. - * @table: the table structure + * @path: The path to the directory the sysctl table is in. If the path + * doesn't exist we will create it for you. + * @table: the table structure. The calller must ensure the life of the @table + * will be kept during the lifetime use of the syctl. It must not be freed + * until unregister_sysctl_table() is called with the given returned table + * with this registration. If your code is non modular then you don't need + * to call unregister_sysctl_table() and can instead use something like + * register_sysctl_init() which does not care for the result of the syctl + * registration. * * Register a sysctl table. @table should be a filled in ctl_table * array. A completely 0 filled entry terminates the table. @@ -1411,8 +1429,11 @@ /** * __register_sysctl_init() - register sysctl table to path - * @path: path name for sysctl base - * @table: This is the sysctl table that needs to be registered to the path + * @path: path name for sysctl base. If that path doesn't exist we will create + * it for you. + * @table: This is the sysctl table that needs to be registered to the path. + * The caller must ensure the life of the @table will be kept during the + * lifetime use of the sysctl. * @table_name: The name of sysctl table, only used for log printing when * registration fails * @@ -1424,10 +1445,7 @@ * register_sysctl() failing on init are extremely low, and so for both reasons * this function does not return any error as it is used by initialization code. * - * Context: Can only be called after your respective sysctl base path has been - * registered. So for instance, most base directories are registered early on - * init before init levels are processed through proc_sys_init() and - * sysctl_init_bases(). + * Context: if your base directory does not exist it will be created for you. */ void __init __register_sysctl_init(const char *path, struct ctl_table *table, const char *table_name) @@ -1557,6 +1575,7 @@ * * Register a sysctl table hierarchy. @table should be a filled in ctl_table * array. A completely 0 filled entry terminates the table. + * We are slowly deprecating this call so avoid its use. * * See __register_sysctl_table for more details. */ @@ -1628,6 +1647,7 @@ * * Register a sysctl table hierarchy. @table should be a filled in ctl_table * array. A completely 0 filled entry terminates the table. + * We are slowly deprecating this caller so avoid future uses of it. * * See __register_sysctl_paths for more details. */ diff -u linux-6.2.0/include/linux/mlx5/mlx5_ifc.h linux-6.2.0/include/linux/mlx5/mlx5_ifc.h --- linux-6.2.0/include/linux/mlx5/mlx5_ifc.h +++ linux-6.2.0/include/linux/mlx5/mlx5_ifc.h @@ -1645,7 +1645,9 @@ u8 rc[0x1]; u8 uar_4k[0x1]; - u8 reserved_at_241[0x9]; + u8 reserved_at_241[0x7]; + u8 fl_rc_qp_when_roce_disabled[0x1]; + u8 regexp_params[0x1]; u8 uar_sz[0x6]; u8 port_selection_cap[0x1]; u8 reserved_at_248[0x1]; diff -u linux-6.2.0/include/linux/mm.h linux-6.2.0/include/linux/mm.h --- linux-6.2.0/include/linux/mm.h +++ linux-6.2.0/include/linux/mm.h @@ -3439,6 +3439,22 @@ void vmemmap_free(unsigned long start, unsigned long end, struct vmem_altmap *altmap); #endif + +#ifdef CONFIG_ARCH_WANT_HUGETLB_PAGE_OPTIMIZE_VMEMMAP +static inline bool vmemmap_can_optimize(struct vmem_altmap *altmap, + struct dev_pagemap *pgmap) +{ + return is_power_of_2(sizeof(struct page)) && + pgmap && (pgmap_vmemmap_nr(pgmap) > 1) && !altmap; +} +#else +static inline bool vmemmap_can_optimize(struct vmem_altmap *altmap, + struct dev_pagemap *pgmap) +{ + return false; +} +#endif + void register_page_bootmem_memmap(unsigned long section_nr, struct page *map, unsigned long nr_pages); diff -u linux-6.2.0/include/linux/msi.h linux-6.2.0/include/linux/msi.h --- linux-6.2.0/include/linux/msi.h +++ linux-6.2.0/include/linux/msi.h @@ -379,6 +379,13 @@ void arch_teardown_msi_irq(unsigned int irq); int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type); void arch_teardown_msi_irqs(struct pci_dev *dev); +#endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS */ + +/* + * Xen uses non-default msi_domain_ops and hence needs a way to populate sysfs + * entries of MSI IRQs. + */ +#if defined(CONFIG_PCI_XEN) || defined(CONFIG_PCI_MSI_ARCH_FALLBACKS) #ifdef CONFIG_SYSFS int msi_device_populate_sysfs(struct device *dev); void msi_device_destroy_sysfs(struct device *dev); @@ -386,7 +393,7 @@ static inline int msi_device_populate_sysfs(struct device *dev) { return 0; } static inline void msi_device_destroy_sysfs(struct device *dev) { } #endif /* !CONFIG_SYSFS */ -#endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS */ +#endif /* CONFIG_PCI_XEN || CONFIG_PCI_MSI_ARCH_FALLBACKS */ /* * The restore hook is still available even for fully irq domain based diff -u linux-6.2.0/include/linux/netdevice.h linux-6.2.0/include/linux/netdevice.h --- linux-6.2.0/include/linux/netdevice.h +++ linux-6.2.0/include/linux/netdevice.h @@ -2445,6 +2445,7 @@ struct netdev_queue *netdev_get_tx_queue(const struct net_device *dev, unsigned int index) { + DEBUG_NET_WARN_ON_ONCE(index >= dev->num_tx_queues); return &dev->_tx[index]; } diff -u linux-6.2.0/include/linux/pci_ids.h linux-6.2.0/include/linux/pci_ids.h --- linux-6.2.0/include/linux/pci_ids.h +++ linux-6.2.0/include/linux/pci_ids.h @@ -567,6 +567,7 @@ #define PCI_DEVICE_ID_AMD_19H_M50H_DF_F3 0x166d #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_CNB17H_F3 0x1703 #define PCI_DEVICE_ID_AMD_LANCE 0x2000 #define PCI_DEVICE_ID_AMD_LANCE_HOME 0x2001 diff -u linux-6.2.0/include/linux/skbuff.h linux-6.2.0/include/linux/skbuff.h --- linux-6.2.0/include/linux/skbuff.h +++ linux-6.2.0/include/linux/skbuff.h @@ -1570,6 +1570,16 @@ to->l4_hash = from->l4_hash; }; +static inline int skb_cmp_decrypted(const struct sk_buff *skb1, + const struct sk_buff *skb2) +{ +#ifdef CONFIG_TLS_DEVICE + return skb2->decrypted - skb1->decrypted; +#else + return 0; +#endif +} + static inline void skb_copy_decrypted(struct sk_buff *to, const struct sk_buff *from) { diff -u linux-6.2.0/include/net/bonding.h linux-6.2.0/include/net/bonding.h --- linux-6.2.0/include/net/bonding.h +++ linux-6.2.0/include/net/bonding.h @@ -221,6 +221,7 @@ struct bond_up_slave __rcu *usable_slaves; struct bond_up_slave __rcu *all_slaves; bool force_primary; + bool notifier_ctx; s32 slave_cnt; /* never change this value outside the attach/detach wrappers */ int (*recv_probe)(const struct sk_buff *, struct bonding *, struct slave *); @@ -233,7 +234,7 @@ */ spinlock_t mode_lock; spinlock_t stats_lock; - u8 send_peer_notif; + u32 send_peer_notif; u8 igmp_retrans; #ifdef CONFIG_PROC_FS struct proc_dir_entry *proc_entry; diff -u linux-6.2.0/include/net/netfilter/nf_tables.h linux-6.2.0/include/net/netfilter/nf_tables.h --- linux-6.2.0/include/net/netfilter/nf_tables.h +++ linux-6.2.0/include/net/netfilter/nf_tables.h @@ -899,6 +899,7 @@ enum nft_trans_phase { NFT_TRANS_PREPARE, + NFT_TRANS_PREPARE_ERROR, NFT_TRANS_ABORT, NFT_TRANS_COMMIT, NFT_TRANS_RELEASE @@ -1007,7 +1008,10 @@ return (void *)&rule->data[rule->dlen]; } -void nf_tables_rule_release(const struct nft_ctx *ctx, struct nft_rule *rule); +void nft_rule_expr_activate(const struct nft_ctx *ctx, struct nft_rule *rule); +void nft_rule_expr_deactivate(const struct nft_ctx *ctx, struct nft_rule *rule, + enum nft_trans_phase phase); +void nf_tables_rule_destroy(const struct nft_ctx *ctx, struct nft_rule *rule); static inline void nft_set_elem_update_expr(const struct nft_set_ext *ext, struct nft_regs *regs, @@ -1090,6 +1094,8 @@ const struct nft_set_iter *iter, struct nft_set_elem *elem); int nft_set_catchall_validate(const struct nft_ctx *ctx, struct nft_set *set); +int nf_tables_bind_chain(const struct nft_ctx *ctx, struct nft_chain *chain); +void nf_tables_unbind_chain(const struct nft_ctx *ctx, struct nft_chain *chain); enum nft_chain_types { NFT_CHAIN_T_DEFAULT = 0, @@ -1126,11 +1132,17 @@ int nft_chain_validate_hooks(const struct nft_chain *chain, unsigned int hook_flags); +static inline bool nft_chain_binding(const struct nft_chain *chain) +{ + return chain->flags & NFT_CHAIN_BINDING; +} + static inline bool nft_chain_is_bound(struct nft_chain *chain) { return (chain->flags & NFT_CHAIN_BINDING) && chain->bound; } +int nft_chain_add(struct nft_table *table, struct nft_chain *chain); void nft_chain_del(struct nft_chain *chain); void nf_tables_chain_destroy(struct nft_ctx *ctx); @@ -1565,6 +1577,7 @@ struct nft_rule *rule; struct nft_flow_rule *flow; u32 rule_id; + bool bound; }; #define nft_trans_rule(trans) \ @@ -1573,6 +1586,8 @@ (((struct nft_trans_rule *)trans->data)->flow) #define nft_trans_rule_id(trans) \ (((struct nft_trans_rule *)trans->data)->rule_id) +#define nft_trans_rule_bound(trans) \ + (((struct nft_trans_rule *)trans->data)->bound) struct nft_trans_set { struct nft_set *set; @@ -1597,13 +1612,17 @@ (((struct nft_trans_set *)trans->data)->gc_int) struct nft_trans_chain { + struct nft_chain *chain; bool update; char *name; struct nft_stats __percpu *stats; u8 policy; + bool bound; u32 chain_id; }; +#define nft_trans_chain(trans) \ + (((struct nft_trans_chain *)trans->data)->chain) #define nft_trans_chain_update(trans) \ (((struct nft_trans_chain *)trans->data)->update) #define nft_trans_chain_name(trans) \ @@ -1612,6 +1631,8 @@ (((struct nft_trans_chain *)trans->data)->stats) #define nft_trans_chain_policy(trans) \ (((struct nft_trans_chain *)trans->data)->policy) +#define nft_trans_chain_bound(trans) \ + (((struct nft_trans_chain *)trans->data)->bound) #define nft_trans_chain_id(trans) \ (((struct nft_trans_chain *)trans->data)->chain_id) diff -u linux-6.2.0/include/net/sock.h linux-6.2.0/include/net/sock.h --- linux-6.2.0/include/net/sock.h +++ linux-6.2.0/include/net/sock.h @@ -2746,7 +2746,7 @@ __sock_recv_cmsgs(msg, sk, skb); else if (unlikely(sock_flag(sk, SOCK_TIMESTAMP))) sock_write_timestamp(sk, skb->tstamp); - else if (unlikely(sk->sk_stamp == SK_DEFAULT_STAMP)) + else if (unlikely(sock_read_timestamp(sk) == SK_DEFAULT_STAMP)) sock_write_timestamp(sk, 0); } diff -u linux-6.2.0/include/uapi/asm-generic/fcntl.h linux-6.2.0/include/uapi/asm-generic/fcntl.h --- linux-6.2.0/include/uapi/asm-generic/fcntl.h +++ linux-6.2.0/include/uapi/asm-generic/fcntl.h @@ -91,7 +91,6 @@ /* a horrid kludge trying to make sure that this will fail on old kernels */ #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY) -#define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT) #ifndef O_NDELAY #define O_NDELAY O_NONBLOCK diff -u linux-6.2.0/kernel/bpf/hashtab.c linux-6.2.0/kernel/bpf/hashtab.c --- linux-6.2.0/kernel/bpf/hashtab.c +++ linux-6.2.0/kernel/bpf/hashtab.c @@ -1197,7 +1197,7 @@ ret = htab_lock_bucket(htab, b, hash, &flags); if (ret) - return ret; + goto err_lock_bucket; l_old = lookup_elem_raw(head, hash, key, key_size); @@ -1218,6 +1218,7 @@ err: htab_unlock_bucket(htab, b, hash, flags); +err_lock_bucket: if (ret) htab_lru_push_free(htab, l_new); else if (l_old) @@ -1320,7 +1321,7 @@ ret = htab_lock_bucket(htab, b, hash, &flags); if (ret) - return ret; + goto err_lock_bucket; l_old = lookup_elem_raw(head, hash, key, key_size); @@ -1343,6 +1344,7 @@ ret = 0; err: htab_unlock_bucket(htab, b, hash, flags); +err_lock_bucket: if (l_new) bpf_lru_push_free(&htab->lru, &l_new->lru_node); return ret; diff -u linux-6.2.0/kernel/bpf/verifier.c linux-6.2.0/kernel/bpf/verifier.c --- linux-6.2.0/kernel/bpf/verifier.c +++ linux-6.2.0/kernel/bpf/verifier.c @@ -15840,7 +15840,7 @@ insn_buf[cnt++] = BPF_ALU64_IMM(BPF_RSH, insn->dst_reg, shift); - insn_buf[cnt++] = BPF_ALU64_IMM(BPF_AND, insn->dst_reg, + insn_buf[cnt++] = BPF_ALU32_IMM(BPF_AND, insn->dst_reg, (1ULL << size * 8) - 1); } } @@ -17384,6 +17384,10 @@ #if !defined CONFIG_PREEMPT_RCU && !defined CONFIG_TINY_RCU BTF_ID(func, rcu_read_unlock_strict) #endif +#if defined(CONFIG_DEBUG_PREEMPT) || defined(CONFIG_TRACE_PREEMPT_TOGGLE) +BTF_ID(func, preempt_count_add) +BTF_ID(func, preempt_count_sub) +#endif BTF_SET_END(btf_id_deny) static int check_attach_btf_id(struct bpf_verifier_env *env) diff -u linux-6.2.0/kernel/irq/msi.c linux-6.2.0/kernel/irq/msi.c --- linux-6.2.0/kernel/irq/msi.c +++ linux-6.2.0/kernel/irq/msi.c @@ -542,7 +542,7 @@ return ret; } -#ifdef CONFIG_PCI_MSI_ARCH_FALLBACKS +#if defined(CONFIG_PCI_MSI_ARCH_FALLBACKS) || defined(CONFIG_PCI_XEN) /** * msi_device_populate_sysfs - Populate msi_irqs sysfs entries for a device * @dev: The device (PCI, platform etc) which will get sysfs entries @@ -574,7 +574,7 @@ msi_for_each_desc(desc, dev, MSI_DESC_ALL) msi_sysfs_remove_desc(dev, desc); } -#endif /* CONFIG_PCI_MSI_ARCH_FALLBACK */ +#endif /* CONFIG_PCI_MSI_ARCH_FALLBACK || CONFIG_PCI_XEN */ #else /* CONFIG_SYSFS */ static inline int msi_sysfs_create_group(struct device *dev) { return 0; } static inline int msi_sysfs_populate_desc(struct device *dev, struct msi_desc *desc) { return 0; } diff -u linux-6.2.0/kernel/locking/rwsem.c linux-6.2.0/kernel/locking/rwsem.c --- linux-6.2.0/kernel/locking/rwsem.c +++ linux-6.2.0/kernel/locking/rwsem.c @@ -1251,7 +1251,7 @@ /* * lock for reading */ -static inline int __down_read_common(struct rw_semaphore *sem, int state) +static __always_inline int __down_read_common(struct rw_semaphore *sem, int state) { int ret = 0; long count; @@ -1269,17 +1269,17 @@ return ret; } -static inline void __down_read(struct rw_semaphore *sem) +static __always_inline void __down_read(struct rw_semaphore *sem) { __down_read_common(sem, TASK_UNINTERRUPTIBLE); } -static inline int __down_read_interruptible(struct rw_semaphore *sem) +static __always_inline int __down_read_interruptible(struct rw_semaphore *sem) { return __down_read_common(sem, TASK_INTERRUPTIBLE); } -static inline int __down_read_killable(struct rw_semaphore *sem) +static __always_inline int __down_read_killable(struct rw_semaphore *sem) { return __down_read_common(sem, TASK_KILLABLE); } diff -u linux-6.2.0/kernel/rcu/tree_exp.h linux-6.2.0/kernel/rcu/tree_exp.h --- linux-6.2.0/kernel/rcu/tree_exp.h +++ linux-6.2.0/kernel/rcu/tree_exp.h @@ -800,9 +800,11 @@ int ndetected = 0; struct task_struct *t; - if (!READ_ONCE(rnp->exp_tasks)) - return 0; raw_spin_lock_irqsave_rcu_node(rnp, flags); + if (!rnp->exp_tasks) { + raw_spin_unlock_irqrestore_rcu_node(rnp, flags); + return 0; + } t = list_entry(rnp->exp_tasks->prev, struct task_struct, rcu_node_entry); list_for_each_entry_continue(t, &rnp->blkd_tasks, rcu_node_entry) { diff -u linux-6.2.0/lib/debugobjects.c linux-6.2.0/lib/debugobjects.c --- linux-6.2.0/lib/debugobjects.c +++ linux-6.2.0/lib/debugobjects.c @@ -126,7 +126,7 @@ static void fill_pool(void) { - gfp_t gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN; + gfp_t gfp = __GFP_HIGH | __GFP_NOWARN; struct debug_obj *obj; unsigned long flags; diff -u linux-6.2.0/lib/maple_tree.c linux-6.2.0/lib/maple_tree.c --- linux-6.2.0/lib/maple_tree.c +++ linux-6.2.0/lib/maple_tree.c @@ -5343,15 +5343,9 @@ mt = mte_node_type(mas->node); pivots = ma_pivots(mas_mn(mas), mt); - if (offset) - mas->min = pivots[offset - 1] + 1; - - if (offset < mt_pivots[mt]) - mas->max = pivots[offset]; - - if (mas->index < mas->min) - mas->index = mas->min; - + min = mas_safe_min(mas, pivots, offset); + if (mas->index < min) + mas->index = min; mas->last = mas->index + size - 1; return 0; } diff -u linux-6.2.0/mm/page_alloc.c linux-6.2.0/mm/page_alloc.c --- linux-6.2.0/mm/page_alloc.c +++ linux-6.2.0/mm/page_alloc.c @@ -6861,10 +6861,12 @@ * of an altmap. See vmemmap_populate_compound_pages(). */ static inline unsigned long compound_nr_pages(struct vmem_altmap *altmap, - unsigned long nr_pages) + struct dev_pagemap *pgmap) { - return is_power_of_2(sizeof(struct page)) && - !altmap ? 2 * (PAGE_SIZE / sizeof(struct page)) : nr_pages; + if (!vmemmap_can_optimize(altmap, pgmap)) + return pgmap_vmemmap_nr(pgmap); + + return 2 * (PAGE_SIZE / sizeof(struct page)); } static void __ref memmap_init_compound(struct page *head, @@ -6929,7 +6931,7 @@ continue; memmap_init_compound(page, pfn, zone_idx, nid, pgmap, - compound_nr_pages(altmap, pfns_per_compound)); + compound_nr_pages(altmap, pgmap)); } pr_info("%s initialised %lu pages in %ums\n", __func__, diff -u linux-6.2.0/net/8021q/vlan_dev.c linux-6.2.0/net/8021q/vlan_dev.c --- linux-6.2.0/net/8021q/vlan_dev.c +++ linux-6.2.0/net/8021q/vlan_dev.c @@ -108,8 +108,8 @@ * NOTE: THIS ASSUMES DIX ETHERNET, SPECIFICALLY NOT SUPPORTING * OTHER THINGS LIKE FDDI/TokenRing/802.3 SNAPs... */ - if (veth->h_vlan_proto != vlan->vlan_proto || - vlan->flags & VLAN_FLAG_REORDER_HDR) { + if (vlan->flags & VLAN_FLAG_REORDER_HDR || + veth->h_vlan_proto != vlan->vlan_proto) { u16 vlan_tci; vlan_tci = vlan->vlan_id; vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb->priority); diff -u linux-6.2.0/net/bluetooth/hci_event.c linux-6.2.0/net/bluetooth/hci_event.c --- linux-6.2.0/net/bluetooth/hci_event.c +++ linux-6.2.0/net/bluetooth/hci_event.c @@ -886,8 +886,13 @@ if (rp->status) return rp->status; - if (hdev->max_page < rp->max_page) - hdev->max_page = rp->max_page; + if (hdev->max_page < rp->max_page) { + if (test_bit(HCI_QUIRK_BROKEN_LOCAL_EXT_FEATURES_PAGE_2, + &hdev->quirks)) + bt_dev_warn(hdev, "broken local ext features page 2"); + else + hdev->max_page = rp->max_page; + } if (rp->page < HCI_MAX_PAGES) memcpy(hdev->features[rp->page], rp->features, 8); diff -u linux-6.2.0/net/bluetooth/hci_sock.c linux-6.2.0/net/bluetooth/hci_sock.c --- linux-6.2.0/net/bluetooth/hci_sock.c +++ linux-6.2.0/net/bluetooth/hci_sock.c @@ -987,6 +987,34 @@ BT_DBG("cmd %x arg %lx", cmd, arg); + /* Make sure the cmd is valid before doing anything */ + switch (cmd) { + case HCIGETDEVLIST: + case HCIGETDEVINFO: + case HCIGETCONNLIST: + case HCIDEVUP: + case HCIDEVDOWN: + case HCIDEVRESET: + case HCIDEVRESTAT: + case HCISETSCAN: + case HCISETAUTH: + case HCISETENCRYPT: + case HCISETPTYPE: + case HCISETLINKPOL: + case HCISETLINKMODE: + case HCISETACLMTU: + case HCISETSCOMTU: + case HCIINQUIRY: + case HCISETRAW: + case HCIGETCONNINFO: + case HCIGETAUTHINFO: + case HCIBLOCKADDR: + case HCIUNBLOCKADDR: + break; + default: + return -ENOIOCTLCMD; + } + lock_sock(sk); if (hci_pi(sk)->channel != HCI_CHANNEL_RAW) { diff -u linux-6.2.0/net/bluetooth/hci_sync.c linux-6.2.0/net/bluetooth/hci_sync.c --- linux-6.2.0/net/bluetooth/hci_sync.c +++ linux-6.2.0/net/bluetooth/hci_sync.c @@ -4093,7 +4093,8 @@ { __le16 timeout = cpu_to_le16(hdev->rpa_timeout); - if (!(hdev->commands[35] & 0x04)) + if (!(hdev->commands[35] & 0x04) || + test_bit(HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT, &hdev->quirks)) return 0; return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RPA_TIMEOUT, @@ -4533,6 +4534,9 @@ "HCI Set Event Filter command not supported."), HCI_QUIRK_BROKEN(ENHANCED_SETUP_SYNC_CONN, "HCI Enhanced Setup Synchronous Connection command is " + "advertised, but not supported."), + HCI_QUIRK_BROKEN(SET_RPA_TIMEOUT, + "HCI LE Set Random Private Address Timeout command is " "advertised, but not supported.") }; diff -u linux-6.2.0/net/bluetooth/l2cap_core.c linux-6.2.0/net/bluetooth/l2cap_core.c --- linux-6.2.0/net/bluetooth/l2cap_core.c +++ linux-6.2.0/net/bluetooth/l2cap_core.c @@ -4694,7 +4694,6 @@ chan = l2cap_get_chan_by_scid(conn, scid); if (!chan) { - mutex_unlock(&conn->chan_lock); return 0; } diff -u linux-6.2.0/net/can/isotp.c linux-6.2.0/net/can/isotp.c --- linux-6.2.0/net/can/isotp.c +++ linux-6.2.0/net/can/isotp.c @@ -1106,7 +1106,7 @@ struct isotp_sock *so = isotp_sk(sk); int ret = 0; - if (flags & ~(MSG_DONTWAIT | MSG_TRUNC | MSG_PEEK)) + if (flags & ~(MSG_DONTWAIT | MSG_TRUNC | MSG_PEEK | MSG_CMSG_COMPAT)) return -EINVAL; if (!so->bound) diff -u linux-6.2.0/net/core/dev.c linux-6.2.0/net/core/dev.c --- linux-6.2.0/net/core/dev.c +++ linux-6.2.0/net/core/dev.c @@ -2534,6 +2534,8 @@ struct xps_map *map, *new_map; unsigned int nr_ids; + WARN_ON_ONCE(index >= dev->num_tx_queues); + if (dev->num_tc) { /* Do not allow XPS on subordinate device directly */ num_tc = dev->num_tc; @@ -3335,7 +3337,7 @@ type = eth->h_proto; } - return __vlan_get_protocol(skb, type, depth); + return vlan_get_protocol_and_depth(skb, type, depth); } /* openvswitch calls this on rx path, so we need a different check. diff -u linux-6.2.0/net/core/skbuff.c linux-6.2.0/net/core/skbuff.c --- linux-6.2.0/net/core/skbuff.c +++ linux-6.2.0/net/core/skbuff.c @@ -1608,7 +1608,7 @@ { int num_frags = skb_shinfo(skb)->nr_frags; struct page *page, *head = NULL; - int i, new_frags; + int i, order, psize, new_frags; u32 d_off; if (skb_shared(skb) || skb_unclone(skb, gfp_mask)) @@ -1617,9 +1617,17 @@ if (!num_frags) goto release; - new_frags = (__skb_pagelen(skb) + PAGE_SIZE - 1) >> PAGE_SHIFT; + /* We might have to allocate high order pages, so compute what minimum + * page order is needed. + */ + order = 0; + while ((PAGE_SIZE << order) * MAX_SKB_FRAGS < __skb_pagelen(skb)) + order++; + psize = (PAGE_SIZE << order); + + new_frags = (__skb_pagelen(skb) + psize - 1) >> (PAGE_SHIFT + order); for (i = 0; i < new_frags; i++) { - page = alloc_page(gfp_mask); + page = alloc_pages(gfp_mask | __GFP_COMP, order); if (!page) { while (head) { struct page *next = (struct page *)page_private(head); @@ -1646,11 +1654,11 @@ vaddr = kmap_atomic(p); while (done < p_len) { - if (d_off == PAGE_SIZE) { + if (d_off == psize) { d_off = 0; page = (struct page *)page_private(page); } - copy = min_t(u32, PAGE_SIZE - d_off, p_len - done); + copy = min_t(u32, psize - d_off, p_len - done); memcpy(page_address(page) + d_off, vaddr + p_off + done, copy); done += copy; @@ -1666,7 +1674,7 @@ /* skb frags point to kernel buffers */ for (i = 0; i < new_frags - 1; i++) { - __skb_fill_page_desc(skb, i, head, 0, PAGE_SIZE); + __skb_fill_page_desc(skb, i, head, 0, psize); head = (struct page *)page_private(head); } __skb_fill_page_desc(skb, new_frags - 1, head, 0, d_off); @@ -5039,8 +5047,10 @@ } else { skb = skb_clone(orig_skb, GFP_ATOMIC); - if (skb_orphan_frags_rx(skb, GFP_ATOMIC)) + if (skb_orphan_frags_rx(skb, GFP_ATOMIC)) { + kfree_skb(skb); return; + } } if (!skb) return; @@ -5111,7 +5121,7 @@ u32 csum_end = (u32)start + (u32)off + sizeof(__sum16); u32 csum_start = skb_headroom(skb) + (u32)start; - if (unlikely(csum_start > U16_MAX || csum_end > skb_headlen(skb))) { + if (unlikely(csum_start >= U16_MAX || csum_end > skb_headlen(skb))) { net_warn_ratelimited("bad partial csum: csum=%u/%u headroom=%u headlen=%u\n", start, off, skb_headroom(skb), skb_headlen(skb)); return false; @@ -5119,7 +5129,7 @@ skb->ip_summed = CHECKSUM_PARTIAL; skb->csum_start = csum_start; skb->csum_offset = off; - skb_set_transport_header(skb, start); + skb->transport_header = csum_start; return true; } EXPORT_SYMBOL_GPL(skb_partial_csum_set); diff -u linux-6.2.0/net/core/sock_map.c linux-6.2.0/net/core/sock_map.c --- linux-6.2.0/net/core/sock_map.c +++ linux-6.2.0/net/core/sock_map.c @@ -1624,9 +1624,10 @@ rcu_read_unlock(); sk_psock_stop(psock); release_sock(sk); - cancel_work_sync(&psock->work); + cancel_delayed_work_sync(&psock->work); sk_psock_put(sk, psock); } + /* Make sure we do not recurse. This is a bug. * Leak the socket instead of crashing on a stack overflow. */ diff -u linux-6.2.0/net/ipv4/inet_hashtables.c linux-6.2.0/net/ipv4/inet_hashtables.c --- linux-6.2.0/net/ipv4/inet_hashtables.c +++ linux-6.2.0/net/ipv4/inet_hashtables.c @@ -1022,7 +1022,7 @@ l3mdev = inet_sk_bound_l3mdev(sk); - inet_get_local_port_range(net, &low, &high); + inet_sk_get_local_port_range(sk, &low, &high); high++; /* [32768, 60999] -> [32768, 61000[ */ remaining = high - low; if (likely(remaining > 1)) diff -u linux-6.2.0/net/ipv4/ip_sockglue.c linux-6.2.0/net/ipv4/ip_sockglue.c --- linux-6.2.0/net/ipv4/ip_sockglue.c +++ linux-6.2.0/net/ipv4/ip_sockglue.c @@ -319,7 +319,14 @@ ipc->tos = val; ipc->priority = rt_tos2priority(ipc->tos); break; - + case IP_PROTOCOL: + if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) + return -EINVAL; + val = *(int *)CMSG_DATA(cmsg); + if (val < 1 || val > 255) + return -EINVAL; + ipc->protocol = val; + break; default: return -EINVAL; } @@ -925,6 +932,7 @@ case IP_CHECKSUM: case IP_RECVFRAGSIZE: case IP_RECVERR_RFC4884: + case IP_LOCAL_PORT_RANGE: if (optlen >= sizeof(int)) { if (copy_from_sockptr(&val, optval, sizeof(val))) return -EFAULT; @@ -1367,6 +1375,20 @@ WRITE_ONCE(inet->min_ttl, val); break; + case IP_LOCAL_PORT_RANGE: + { + const __u16 lo = val; + const __u16 hi = val >> 16; + + if (optlen != sizeof(__u32)) + goto e_inval; + if (lo != 0 && hi != 0 && lo > hi) + goto e_inval; + + inet->local_port_range.lo = lo; + inet->local_port_range.hi = hi; + break; + } default: err = -ENOPROTOOPT; break; @@ -1745,6 +1767,12 @@ case IP_MINTTL: val = inet->min_ttl; break; + case IP_LOCAL_PORT_RANGE: + val = inet->local_port_range.hi << 16 | inet->local_port_range.lo; + break; + case IP_PROTOCOL: + val = inet_sk(sk)->inet_num; + break; default: sockopt_release_sock(sk); return -ENOPROTOOPT; diff -u linux-6.2.0/net/ipv4/raw.c linux-6.2.0/net/ipv4/raw.c --- linux-6.2.0/net/ipv4/raw.c +++ linux-6.2.0/net/ipv4/raw.c @@ -530,6 +530,9 @@ } ipcm_init_sk(&ipc, inet); + /* Keep backward compat */ + if (hdrincl) + ipc.protocol = IPPROTO_RAW; if (msg->msg_controllen) { err = ip_cmsg_send(sk, msg, &ipc, false); @@ -597,7 +600,7 @@ flowi4_init_output(&fl4, ipc.oif, ipc.sockc.mark, tos, RT_SCOPE_UNIVERSE, - hdrincl ? IPPROTO_RAW : sk->sk_protocol, + hdrincl ? ipc.protocol : sk->sk_protocol, inet_sk_flowi_flags(sk) | (hdrincl ? FLOWI_FLAG_KNOWN_NH : 0), daddr, saddr, 0, 0, sk->sk_uid); diff -u linux-6.2.0/net/ipv4/tcp_bpf.c linux-6.2.0/net/ipv4/tcp_bpf.c --- linux-6.2.0/net/ipv4/tcp_bpf.c +++ linux-6.2.0/net/ipv4/tcp_bpf.c @@ -11,6 +11,24 @@ #include #include +void tcp_eat_skb(struct sock *sk, struct sk_buff *skb) +{ + struct tcp_sock *tcp; + int copied; + + if (!skb || !skb->len || !sk_is_tcp(sk)) + return; + + if (skb_bpf_strparser(skb)) + return; + + tcp = tcp_sk(sk); + copied = tcp->copied_seq + skb->len; + WRITE_ONCE(tcp->copied_seq, copied); + tcp_rcv_space_adjust(sk); + __tcp_cleanup_rbuf(sk, skb->len); +} + static int bpf_tcp_ingress(struct sock *sk, struct sk_psock *psock, struct sk_msg *msg, u32 apply_bytes, int flags) { @@ -168,20 +186,40 @@ sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk); ret = sk_wait_event(sk, &timeo, !list_empty(&psock->ingress_msg) || - !skb_queue_empty(&sk->sk_receive_queue), &wait); + !skb_queue_empty_lockless(&sk->sk_receive_queue), &wait); sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk); remove_wait_queue(sk_sleep(sk), &wait); return ret; } +static bool is_next_msg_fin(struct sk_psock *psock) +{ + struct scatterlist *sge; + struct sk_msg *msg_rx; + int i; + + msg_rx = sk_psock_peek_msg(psock); + i = msg_rx->sg.start; + sge = sk_msg_elem(msg_rx, i); + if (!sge->length) { + struct sk_buff *skb = msg_rx->skb; + + if (skb && TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN) + return true; + } + return false; +} + static int tcp_bpf_recvmsg_parser(struct sock *sk, struct msghdr *msg, size_t len, int flags, int *addr_len) { + struct tcp_sock *tcp = tcp_sk(sk); + u32 seq = tcp->copied_seq; struct sk_psock *psock; - int copied; + int copied = 0; if (unlikely(flags & MSG_ERRQUEUE)) return inet_recv_error(sk, msg, len, addr_len); @@ -194,8 +232,43 @@ return tcp_recvmsg(sk, msg, len, flags, addr_len); lock_sock(sk); + + /* We may have received data on the sk_receive_queue pre-accept and + * then we can not use read_skb in this context because we haven't + * assigned a sk_socket yet so have no link to the ops. The work-around + * is to check the sk_receive_queue and in these cases read skbs off + * queue again. The read_skb hook is not running at this point because + * of lock_sock so we avoid having multiple runners in read_skb. + */ + if (unlikely(!skb_queue_empty(&sk->sk_receive_queue))) { + tcp_data_ready(sk); + /* This handles the ENOMEM errors if we both receive data + * pre accept and are already under memory pressure. At least + * let user know to retry. + */ + if (unlikely(!skb_queue_empty(&sk->sk_receive_queue))) { + copied = -EAGAIN; + goto out; + } + } + msg_bytes_ready: copied = sk_msg_recvmsg(sk, psock, msg, len, flags); + /* The typical case for EFAULT is the socket was gracefully + * shutdown with a FIN pkt. So check here the other case is + * some error on copy_page_to_iter which would be unexpected. + * On fin return correct return code to zero. + */ + if (copied == -EFAULT) { + bool is_fin = is_next_msg_fin(psock); + + if (is_fin) { + copied = 0; + seq++; + goto out; + } + } + seq += copied; if (!copied) { long timeo; int data; @@ -233,6 +306,10 @@ copied = -EAGAIN; } out: + WRITE_ONCE(tcp->copied_seq, seq); + tcp_rcv_space_adjust(sk); + if (copied > 0) + __tcp_cleanup_rbuf(sk, copied); release_sock(sk); sk_psock_put(sk, psock); return copied; diff -u linux-6.2.0/net/ipv4/tcp_ipv4.c linux-6.2.0/net/ipv4/tcp_ipv4.c --- linux-6.2.0/net/ipv4/tcp_ipv4.c +++ linux-6.2.0/net/ipv4/tcp_ipv4.c @@ -829,6 +829,9 @@ inet_twsk(sk)->tw_priority : sk->sk_priority; transmit_time = tcp_transmit_time(sk); xfrm_sk_clone_policy(ctl_sk, sk); + } else { + ctl_sk->sk_mark = 0; + ctl_sk->sk_priority = 0; } ip_send_unicast_reply(ctl_sk, skb, &TCP_SKB_CB(skb)->header.h4.opt, @@ -836,7 +839,6 @@ &arg, arg.iov[0].iov_len, transmit_time); - ctl_sk->sk_mark = 0; xfrm_sk_free_policy(ctl_sk); sock_net_set(ctl_sk, &init_net); __TCP_INC_STATS(net, TCP_MIB_OUTSEGS); @@ -935,7 +937,6 @@ &arg, arg.iov[0].iov_len, transmit_time); - ctl_sk->sk_mark = 0; sock_net_set(ctl_sk, &init_net); __TCP_INC_STATS(net, TCP_MIB_OUTSEGS); local_bh_enable(); diff -u linux-6.2.0/net/ipv6/ip6_gre.c linux-6.2.0/net/ipv6/ip6_gre.c --- linux-6.2.0/net/ipv6/ip6_gre.c +++ linux-6.2.0/net/ipv6/ip6_gre.c @@ -1015,12 +1015,14 @@ ntohl(tun_id), ntohl(md->u.index), truncate, false); + proto = htons(ETH_P_ERSPAN); } else if (md->version == 2) { erspan_build_header_v2(skb, ntohl(tun_id), md->u.md2.dir, get_hwid(&md->u.md2), truncate, false); + proto = htons(ETH_P_ERSPAN2); } else { goto tx_err; } @@ -1043,24 +1045,25 @@ break; } - if (t->parms.erspan_ver == 1) + if (t->parms.erspan_ver == 1) { erspan_build_header(skb, ntohl(t->parms.o_key), t->parms.index, truncate, false); - else if (t->parms.erspan_ver == 2) + proto = htons(ETH_P_ERSPAN); + } else if (t->parms.erspan_ver == 2) { erspan_build_header_v2(skb, ntohl(t->parms.o_key), t->parms.dir, t->parms.hwid, truncate, false); - else + proto = htons(ETH_P_ERSPAN2); + } else { goto tx_err; + } fl6.daddr = t->parms.raddr; } /* Push GRE header. */ - proto = (t->parms.erspan_ver == 1) ? htons(ETH_P_ERSPAN) - : htons(ETH_P_ERSPAN2); gre_build_header(skb, 8, TUNNEL_SEQ, proto, 0, htonl(atomic_fetch_inc(&t->o_seqno))); /* TooBig packet may have updated dst->dev's mtu */ diff -u linux-6.2.0/net/ipv6/raw.c linux-6.2.0/net/ipv6/raw.c --- linux-6.2.0/net/ipv6/raw.c +++ linux-6.2.0/net/ipv6/raw.c @@ -791,7 +791,8 @@ if (!proto) proto = inet->inet_num; - else if (proto != inet->inet_num) + else if (proto != inet->inet_num && + inet->inet_num != IPPROTO_RAW) return -EINVAL; if (proto > 255) diff -u linux-6.2.0/net/ipv6/tcp_ipv6.c linux-6.2.0/net/ipv6/tcp_ipv6.c --- linux-6.2.0/net/ipv6/tcp_ipv6.c +++ linux-6.2.0/net/ipv6/tcp_ipv6.c @@ -1064,7 +1064,7 @@ if (np->repflow) label = ip6_flowlabel(ipv6h); priority = sk->sk_priority; - txhash = sk->sk_hash; + txhash = sk->sk_txhash; } if (sk->sk_state == TCP_TIME_WAIT) { label = cpu_to_be32(inet_twsk(sk)->tw_flowlabel); diff -u linux-6.2.0/net/mac80211/cfg.c linux-6.2.0/net/mac80211/cfg.c --- linux-6.2.0/net/mac80211/cfg.c +++ linux-6.2.0/net/mac80211/cfg.c @@ -1477,9 +1477,10 @@ sdata_dereference(link->u.ap.unsol_bcast_probe_resp, sdata); - /* abort any running channel switch */ + /* abort any running channel switch or color change */ mutex_lock(&local->mtx); link_conf->csa_active = false; + link_conf->color_change_active = false; if (link->csa_block_tx) { ieee80211_wake_vif_queues(local, sdata, IEEE80211_QUEUE_STOP_REASON_CSA); diff -u linux-6.2.0/net/mac80211/tx.c linux-6.2.0/net/mac80211/tx.c --- linux-6.2.0/net/mac80211/tx.c +++ linux-6.2.0/net/mac80211/tx.c @@ -3781,6 +3781,7 @@ ieee80211_tx_result r; struct ieee80211_vif *vif = txq->vif; int q = vif->hw_queue[txq->ac]; + unsigned long flags; bool q_stopped; WARN_ON_ONCE(softirq_count() == 0); @@ -3789,9 +3790,9 @@ return NULL; begin: - spin_lock(&local->queue_stop_reason_lock); + spin_lock_irqsave(&local->queue_stop_reason_lock, flags); q_stopped = local->queue_stop_reasons[q]; - spin_unlock(&local->queue_stop_reason_lock); + spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); if (unlikely(q_stopped)) { /* mark for waking later */ diff -u linux-6.2.0/net/netfilter/core.c linux-6.2.0/net/netfilter/core.c --- linux-6.2.0/net/netfilter/core.c +++ linux-6.2.0/net/netfilter/core.c @@ -699,9 +699,11 @@ rcu_read_lock(); ct_hook = rcu_dereference(nf_ct_hook); - BUG_ON(ct_hook == NULL); - ct_hook->destroy(nfct); + if (ct_hook) + ct_hook->destroy(nfct); rcu_read_unlock(); + + WARN_ON(!ct_hook); } EXPORT_SYMBOL(nf_conntrack_destroy); diff -u linux-6.2.0/net/netfilter/nf_conntrack_netlink.c linux-6.2.0/net/netfilter/nf_conntrack_netlink.c --- linux-6.2.0/net/netfilter/nf_conntrack_netlink.c +++ linux-6.2.0/net/netfilter/nf_conntrack_netlink.c @@ -1565,9 +1565,6 @@ static int ctnetlink_flush_iterate(struct nf_conn *ct, void *data) { - if (test_bit(IPS_OFFLOAD_BIT, &ct->status)) - return 0; - return ctnetlink_filter_match(ct, data); } @@ -1637,11 +1634,6 @@ ct = nf_ct_tuplehash_to_ctrack(h); - if (test_bit(IPS_OFFLOAD_BIT, &ct->status)) { - nf_ct_put(ct); - return -EBUSY; - } - if (cda[CTA_ID]) { __be32 id = nla_get_be32(cda[CTA_ID]); diff -u linux-6.2.0/net/netfilter/nf_conntrack_standalone.c linux-6.2.0/net/netfilter/nf_conntrack_standalone.c --- linux-6.2.0/net/netfilter/nf_conntrack_standalone.c +++ linux-6.2.0/net/netfilter/nf_conntrack_standalone.c @@ -1223,11 +1223,12 @@ nf_conntrack_htable_size_user = nf_conntrack_htable_size; #endif + nf_conntrack_init_end(); + ret = register_pernet_subsys(&nf_conntrack_net_ops); if (ret < 0) goto out_pernet; - nf_conntrack_init_end(); return 0; out_pernet: diff -u linux-6.2.0/net/netfilter/nf_tables_api.c linux-6.2.0/net/netfilter/nf_tables_api.c --- linux-6.2.0/net/netfilter/nf_tables_api.c +++ linux-6.2.0/net/netfilter/nf_tables_api.c @@ -171,7 +171,8 @@ kfree(trans); } -static void nft_set_trans_bind(const struct nft_ctx *ctx, struct nft_set *set) +static void __nft_set_trans_bind(const struct nft_ctx *ctx, struct nft_set *set, + bool bind) { struct nftables_pernet *nft_net; struct net *net = ctx->net; @@ -185,16 +186,80 @@ switch (trans->msg_type) { case NFT_MSG_NEWSET: if (nft_trans_set(trans) == set) - nft_trans_set_bound(trans) = true; + nft_trans_set_bound(trans) = bind; break; case NFT_MSG_NEWSETELEM: if (nft_trans_elem_set(trans) == set) - nft_trans_elem_set_bound(trans) = true; + nft_trans_elem_set_bound(trans) = bind; + break; + } + } +} + +static void nft_set_trans_bind(const struct nft_ctx *ctx, struct nft_set *set) +{ + return __nft_set_trans_bind(ctx, set, true); +} + +static void nft_set_trans_unbind(const struct nft_ctx *ctx, struct nft_set *set) +{ + return __nft_set_trans_bind(ctx, set, false); +} + +static void __nft_chain_trans_bind(const struct nft_ctx *ctx, + struct nft_chain *chain, bool bind) +{ + struct nftables_pernet *nft_net; + struct net *net = ctx->net; + struct nft_trans *trans; + + if (!nft_chain_binding(chain)) + return; + + nft_net = nft_pernet(net); + list_for_each_entry_reverse(trans, &nft_net->commit_list, list) { + switch (trans->msg_type) { + case NFT_MSG_NEWCHAIN: + if (nft_trans_chain(trans) == chain) + nft_trans_chain_bound(trans) = bind; + break; + case NFT_MSG_NEWRULE: + if (trans->ctx.chain == chain) + nft_trans_rule_bound(trans) = bind; break; } } } +static void nft_chain_trans_bind(const struct nft_ctx *ctx, + struct nft_chain *chain) +{ + __nft_chain_trans_bind(ctx, chain, true); +} + +int nf_tables_bind_chain(const struct nft_ctx *ctx, struct nft_chain *chain) +{ + if (!nft_chain_binding(chain)) + return 0; + + if (nft_chain_binding(ctx->chain)) + return -EOPNOTSUPP; + + if (chain->bound) + return -EBUSY; + + chain->bound = true; + chain->use++; + nft_chain_trans_bind(ctx, chain); + + return 0; +} + +void nf_tables_unbind_chain(const struct nft_ctx *ctx, struct nft_chain *chain) +{ + __nft_chain_trans_bind(ctx, chain, false); +} + static int nft_netdev_register_hooks(struct net *net, struct list_head *hook_list) { @@ -340,8 +405,9 @@ ntohl(nla_get_be32(ctx->nla[NFTA_CHAIN_ID])); } } - + nft_trans_chain(trans) = ctx->chain; nft_trans_commit_list_add_tail(ctx->net, trans); + return trans; } @@ -359,8 +425,7 @@ return 0; } -static void nft_rule_expr_activate(const struct nft_ctx *ctx, - struct nft_rule *rule) +void nft_rule_expr_activate(const struct nft_ctx *ctx, struct nft_rule *rule) { struct nft_expr *expr; @@ -373,9 +438,8 @@ } } -static void nft_rule_expr_deactivate(const struct nft_ctx *ctx, - struct nft_rule *rule, - enum nft_trans_phase phase) +void nft_rule_expr_deactivate(const struct nft_ctx *ctx, struct nft_rule *rule, + enum nft_trans_phase phase) { struct nft_expr *expr; @@ -1951,7 +2015,8 @@ static int nf_tables_parse_netdev_hooks(struct net *net, const struct nlattr *attr, - struct list_head *hook_list) + struct list_head *hook_list, + struct netlink_ext_ack *extack) { struct nft_hook *hook, *next; const struct nlattr *tmp; @@ -1965,10 +2030,12 @@ hook = nft_netdev_hook_alloc(net, tmp); if (IS_ERR(hook)) { + NL_SET_BAD_ATTR(extack, tmp); err = PTR_ERR(hook); goto err_hook; } if (nft_hook_list_find(hook_list, hook)) { + NL_SET_BAD_ATTR(extack, tmp); kfree(hook); err = -EEXIST; goto err_hook; @@ -2001,20 +2068,23 @@ static int nft_chain_parse_netdev(struct net *net, struct nlattr *tb[], - struct list_head *hook_list) + struct list_head *hook_list, + struct netlink_ext_ack *extack) { struct nft_hook *hook; int err; if (tb[NFTA_HOOK_DEV]) { hook = nft_netdev_hook_alloc(net, tb[NFTA_HOOK_DEV]); - if (IS_ERR(hook)) + if (IS_ERR(hook)) { + NL_SET_BAD_ATTR(extack, tb[NFTA_HOOK_DEV]); return PTR_ERR(hook); + } list_add_tail(&hook->list, hook_list); } else if (tb[NFTA_HOOK_DEVS]) { err = nf_tables_parse_netdev_hooks(net, tb[NFTA_HOOK_DEVS], - hook_list); + hook_list, extack); if (err < 0) return err; @@ -2047,8 +2117,10 @@ return err; if (ha[NFTA_HOOK_HOOKNUM] == NULL || - ha[NFTA_HOOK_PRIORITY] == NULL) - return -EINVAL; + ha[NFTA_HOOK_PRIORITY] == NULL) { + NL_SET_BAD_ATTR(extack, nla[NFTA_CHAIN_NAME]); + return -ENOENT; + } hook->num = ntohl(nla_get_be32(ha[NFTA_HOOK_HOOKNUM])); hook->priority = ntohl(nla_get_be32(ha[NFTA_HOOK_PRIORITY])); @@ -2082,7 +2154,7 @@ INIT_LIST_HEAD(&hook->list); if (nft_base_chain_netdev(family, hook->num)) { - err = nft_chain_parse_netdev(net, ha, &hook->list); + err = nft_chain_parse_netdev(net, ha, &hook->list, extack); if (err < 0) { module_put(type->owner); return err; @@ -2188,7 +2260,7 @@ return 0; } -static int nft_chain_add(struct nft_table *table, struct nft_chain *chain) +int nft_chain_add(struct nft_table *table, struct nft_chain *chain) { int err; @@ -3364,8 +3436,7 @@ return err; } -static void nf_tables_rule_destroy(const struct nft_ctx *ctx, - struct nft_rule *rule) +void nf_tables_rule_destroy(const struct nft_ctx *ctx, struct nft_rule *rule) { struct nft_expr *expr, *next; @@ -3382,7 +3453,7 @@ kfree(rule); } -void nf_tables_rule_release(const struct nft_ctx *ctx, struct nft_rule *rule) +static void nf_tables_rule_release(const struct nft_ctx *ctx, struct nft_rule *rule) { nft_rule_expr_deactivate(ctx, rule, NFT_TRANS_RELEASE); nf_tables_rule_destroy(ctx, rule); @@ -3542,8 +3613,6 @@ NL_SET_BAD_ATTR(extack, nla[NFTA_RULE_CHAIN]); return PTR_ERR(chain); } - if (nft_chain_is_bound(chain)) - return -EOPNOTSUPP; } else if (nla[NFTA_RULE_CHAIN_ID]) { chain = nft_chain_lookup_byid(net, table, nla[NFTA_RULE_CHAIN_ID], @@ -3556,6 +3625,9 @@ return -EINVAL; } + if (nft_chain_is_bound(chain)) + return -EOPNOTSUPP; + if (nla[NFTA_RULE_HANDLE]) { handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_HANDLE])); rule = __nft_rule_lookup(chain, handle); @@ -3719,7 +3791,7 @@ if (flow) nft_flow_rule_destroy(flow); err_release_rule: - nft_rule_expr_deactivate(&ctx, rule, NFT_TRANS_PREPARE); + nft_rule_expr_deactivate(&ctx, rule, NFT_TRANS_PREPARE_ERROR); nf_tables_rule_destroy(&ctx, rule); err_release_expr: for (i = 0; i < n; i++) { @@ -3743,12 +3815,10 @@ struct nft_trans *trans; list_for_each_entry(trans, &nft_net->commit_list, list) { - struct nft_rule *rule = nft_trans_rule(trans); - if (trans->msg_type == NFT_MSG_NEWRULE && trans->ctx.chain == chain && id == nft_trans_rule_id(trans)) - return rule; + return nft_trans_rule(trans); } return ERR_PTR(-ENOENT); } @@ -3810,6 +3880,8 @@ list_for_each_entry(chain, &table->chains, list) { if (!nft_is_active_next(net, chain)) continue; + if (nft_chain_is_bound(chain)) + continue; ctx.chain = chain; err = nft_delrule_by_chain(&ctx); @@ -5001,6 +5073,15 @@ enum nft_trans_phase phase) { switch (phase) { + case NFT_TRANS_PREPARE_ERROR: + nft_set_trans_unbind(ctx, set); + if (nft_set_is_anonymous(set)) + nft_deactivate_next(ctx->net, set); + else + list_del_rcu(&binding->list); + + set->use--; + break; case NFT_TRANS_PREPARE: if (nft_set_is_anonymous(set)) nft_deactivate_next(ctx->net, set); @@ -6497,7 +6578,6 @@ void nft_data_hold(const struct nft_data *data, enum nft_data_types type) { struct nft_chain *chain; - struct nft_rule *rule; if (type == NFT_DATA_VERDICT) { switch (data->verdict.code) { @@ -6505,15 +6585,6 @@ case NFT_GOTO: chain = data->verdict.chain; chain->use++; - - if (!nft_chain_is_bound(chain)) - break; - - chain->table->use++; - list_for_each_entry(rule, &chain->rules, list) - chain->use++; - - nft_chain_add(chain->table, chain); break; } } @@ -7515,6 +7586,7 @@ enum nft_trans_phase phase) { switch (phase) { + case NFT_TRANS_PREPARE_ERROR: case NFT_TRANS_PREPARE: case NFT_TRANS_ABORT: case NFT_TRANS_RELEASE: @@ -7553,9 +7625,10 @@ }; static int nft_flowtable_parse_hook(const struct nft_ctx *ctx, - const struct nlattr *attr, + const struct nlattr * const nla[], struct nft_flowtable_hook *flowtable_hook, - struct nft_flowtable *flowtable, bool add) + struct nft_flowtable *flowtable, + struct netlink_ext_ack *extack, bool add) { struct nlattr *tb[NFTA_FLOWTABLE_HOOK_MAX + 1]; struct nft_hook *hook; @@ -7564,15 +7637,18 @@ INIT_LIST_HEAD(&flowtable_hook->list); - err = nla_parse_nested_deprecated(tb, NFTA_FLOWTABLE_HOOK_MAX, attr, + err = nla_parse_nested_deprecated(tb, NFTA_FLOWTABLE_HOOK_MAX, + nla[NFTA_FLOWTABLE_HOOK], nft_flowtable_hook_policy, NULL); if (err < 0) return err; if (add) { if (!tb[NFTA_FLOWTABLE_HOOK_NUM] || - !tb[NFTA_FLOWTABLE_HOOK_PRIORITY]) - return -EINVAL; + !tb[NFTA_FLOWTABLE_HOOK_PRIORITY]) { + NL_SET_BAD_ATTR(extack, nla[NFTA_FLOWTABLE_NAME]); + return -ENOENT; + } hooknum = ntohl(nla_get_be32(tb[NFTA_FLOWTABLE_HOOK_NUM])); if (hooknum != NF_NETDEV_INGRESS) @@ -7602,7 +7678,8 @@ if (tb[NFTA_FLOWTABLE_HOOK_DEVS]) { err = nf_tables_parse_netdev_hooks(ctx->net, tb[NFTA_FLOWTABLE_HOOK_DEVS], - &flowtable_hook->list); + &flowtable_hook->list, + extack); if (err < 0) return err; } @@ -7734,7 +7811,7 @@ return err; } -static void nft_flowtable_hooks_destroy(struct list_head *hook_list) +static void nft_hooks_destroy(struct list_head *hook_list) { struct nft_hook *hook, *next; @@ -7745,7 +7822,8 @@ } static int nft_flowtable_update(struct nft_ctx *ctx, const struct nlmsghdr *nlh, - struct nft_flowtable *flowtable) + struct nft_flowtable *flowtable, + struct netlink_ext_ack *extack) { const struct nlattr * const *nla = ctx->nla; struct nft_flowtable_hook flowtable_hook; @@ -7755,8 +7833,8 @@ u32 flags; int err; - err = nft_flowtable_parse_hook(ctx, nla[NFTA_FLOWTABLE_HOOK], - &flowtable_hook, flowtable, false); + err = nft_flowtable_parse_hook(ctx, nla, &flowtable_hook, flowtable, + extack, false); if (err < 0) return err; @@ -7861,7 +7939,7 @@ nft_ctx_init(&ctx, net, skb, info->nlh, family, table, NULL, nla); - return nft_flowtable_update(&ctx, info->nlh, flowtable); + return nft_flowtable_update(&ctx, info->nlh, flowtable, extack); } nft_ctx_init(&ctx, net, skb, info->nlh, family, table, NULL, nla); @@ -7901,8 +7979,8 @@ if (err < 0) goto err3; - err = nft_flowtable_parse_hook(&ctx, nla[NFTA_FLOWTABLE_HOOK], - &flowtable_hook, flowtable, true); + err = nft_flowtable_parse_hook(&ctx, nla, &flowtable_hook, flowtable, + extack, true); if (err < 0) goto err4; @@ -7914,7 +7992,7 @@ &flowtable->hook_list, flowtable); if (err < 0) { - nft_flowtable_hooks_destroy(&flowtable->hook_list); + nft_hooks_destroy(&flowtable->hook_list); goto err4; } @@ -7954,7 +8032,8 @@ } static int nft_delflowtable_hook(struct nft_ctx *ctx, - struct nft_flowtable *flowtable) + struct nft_flowtable *flowtable, + struct netlink_ext_ack *extack) { const struct nlattr * const *nla = ctx->nla; struct nft_flowtable_hook flowtable_hook; @@ -7963,8 +8042,8 @@ struct nft_trans *trans; int err; - err = nft_flowtable_parse_hook(ctx, nla[NFTA_FLOWTABLE_HOOK], - &flowtable_hook, flowtable, false); + err = nft_flowtable_parse_hook(ctx, nla, &flowtable_hook, flowtable, + extack, false); if (err < 0) return err; @@ -8042,7 +8121,7 @@ nft_ctx_init(&ctx, net, skb, info->nlh, family, table, NULL, nla); if (nla[NFTA_FLOWTABLE_HOOK]) - return nft_delflowtable_hook(&ctx, flowtable); + return nft_delflowtable_hook(&ctx, flowtable, extack); if (flowtable->use > 0) { NL_SET_BAD_ATTR(extack, attr); @@ -8688,7 +8767,7 @@ break; case NFT_MSG_DELFLOWTABLE: if (nft_trans_flowtable_update(trans)) - nft_flowtable_hooks_destroy(&nft_trans_flowtable_hooks(trans)); + nft_hooks_destroy(&nft_trans_flowtable_hooks(trans)); else nf_tables_flowtable_destroy(nft_trans_flowtable(trans)); break; @@ -9334,7 +9413,7 @@ break; case NFT_MSG_NEWFLOWTABLE: if (nft_trans_flowtable_update(trans)) - nft_flowtable_hooks_destroy(&nft_trans_flowtable_hooks(trans)); + nft_hooks_destroy(&nft_trans_flowtable_hooks(trans)); else nf_tables_flowtable_destroy(nft_trans_flowtable(trans)); break; @@ -9383,7 +9462,7 @@ kfree(nft_trans_chain_name(trans)); nft_trans_destroy(trans); } else { - if (nft_chain_is_bound(trans->ctx.chain)) { + if (nft_trans_chain_bound(trans)) { nft_trans_destroy(trans); break; } @@ -9400,6 +9479,10 @@ nft_trans_destroy(trans); break; case NFT_MSG_NEWRULE: + if (nft_trans_rule_bound(trans)) { + nft_trans_destroy(trans); + break; + } trans->ctx.chain->use--; list_del_rcu(&nft_trans_rule(trans)->list); nft_rule_expr_deactivate(&trans->ctx, @@ -9946,22 +10029,12 @@ static void nft_verdict_uninit(const struct nft_data *data) { struct nft_chain *chain; - struct nft_rule *rule; switch (data->verdict.code) { case NFT_JUMP: case NFT_GOTO: chain = data->verdict.chain; chain->use--; - - if (!nft_chain_is_bound(chain)) - break; - - chain->table->use--; - list_for_each_entry(rule, &chain->rules, list) - chain->use--; - - nft_chain_del(chain); break; } } diff -u linux-6.2.0/net/netlink/af_netlink.c linux-6.2.0/net/netlink/af_netlink.c --- linux-6.2.0/net/netlink/af_netlink.c +++ linux-6.2.0/net/netlink/af_netlink.c @@ -1990,7 +1990,7 @@ skb_free_datagram(sk, skb); - if (nlk->cb_running && + if (READ_ONCE(nlk->cb_running) && atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) { ret = netlink_dump(sk); if (ret) { @@ -2304,7 +2304,7 @@ if (cb->done) cb->done(cb); - nlk->cb_running = false; + WRITE_ONCE(nlk->cb_running, false); module = cb->module; skb = cb->skb; mutex_unlock(nlk->cb_mutex); @@ -2367,7 +2367,7 @@ goto error_put; } - nlk->cb_running = true; + WRITE_ONCE(nlk->cb_running, true); nlk->dump_done_errno = INT_MAX; mutex_unlock(nlk->cb_mutex); @@ -2705,7 +2705,7 @@ nlk->groups ? (u32)nlk->groups[0] : 0, sk_rmem_alloc_get(s), sk_wmem_alloc_get(s), - nlk->cb_running, + READ_ONCE(nlk->cb_running), refcount_read(&s->sk_refcnt), atomic_read(&s->sk_drops), sock_i_ino(s) diff -u linux-6.2.0/net/packet/af_packet.c linux-6.2.0/net/packet/af_packet.c --- linux-6.2.0/net/packet/af_packet.c +++ linux-6.2.0/net/packet/af_packet.c @@ -1937,10 +1937,8 @@ /* Move network header to the right position for VLAN tagged packets */ if (likely(skb->dev->type == ARPHRD_ETHER) && eth_type_vlan(skb->protocol) && - __vlan_get_protocol(skb, skb->protocol, &depth) != 0) { - if (pskb_may_pull(skb, depth)) - skb_set_network_header(skb, depth); - } + vlan_get_protocol_and_depth(skb, skb->protocol, &depth) != 0) + skb_set_network_header(skb, depth); skb_probe_transport_header(skb); } @@ -2036,7 +2034,7 @@ goto retry; } - if (!dev_validate_header(dev, skb->data, len)) { + if (!dev_validate_header(dev, skb->data, len) || !skb->len) { err = -EINVAL; goto out_unlock; } diff -u linux-6.2.0/net/rxrpc/call_object.c linux-6.2.0/net/rxrpc/call_object.c --- linux-6.2.0/net/rxrpc/call_object.c +++ linux-6.2.0/net/rxrpc/call_object.c @@ -225,6 +225,13 @@ if (cp->exclusive) __set_bit(RXRPC_CALL_EXCLUSIVE, &call->flags); + if (p->timeouts.normal) + call->next_rx_timo = min(msecs_to_jiffies(p->timeouts.normal), 1UL); + if (p->timeouts.idle) + call->next_req_timo = min(msecs_to_jiffies(p->timeouts.idle), 1UL); + if (p->timeouts.hard) + call->hard_timo = p->timeouts.hard * HZ; + ret = rxrpc_init_client_call_security(call); if (ret < 0) { rxrpc_prefail_call(call, RXRPC_CALL_LOCAL_ERROR, ret); @@ -256,7 +263,7 @@ call->keepalive_at = j; call->expect_rx_by = j; call->expect_req_by = j; - call->expect_term_by = j; + call->expect_term_by = j + call->hard_timo; call->timer.expires = now; } diff -u linux-6.2.0/net/sched/act_mirred.c linux-6.2.0/net/sched/act_mirred.c --- linux-6.2.0/net/sched/act_mirred.c +++ linux-6.2.0/net/sched/act_mirred.c @@ -264,7 +264,7 @@ goto out; } - if (unlikely(!(dev->flags & IFF_UP))) { + if (unlikely(!(dev->flags & IFF_UP)) || !netif_carrier_ok(dev)) { net_notice_ratelimited("tc mirred to Houston: device %s is down\n", dev->name); goto out; diff -u linux-6.2.0/net/sched/sch_qfq.c linux-6.2.0/net/sched/sch_qfq.c --- linux-6.2.0/net/sched/sch_qfq.c +++ linux-6.2.0/net/sched/sch_qfq.c @@ -113,6 +113,7 @@ #define QFQ_MTU_SHIFT 16 /* to support TSO/GSO */ #define QFQ_MIN_LMAX 512 /* see qfq_slot_insert */ +#define QFQ_MAX_LMAX (1UL << QFQ_MTU_SHIFT) #define QFQ_MAX_AGG_CLASSES 8 /* max num classes per aggregate allowed */ @@ -214,9 +215,14 @@ return container_of(clc, struct qfq_class, common); } +static struct netlink_range_validation lmax_range = { + .min = QFQ_MIN_LMAX, + .max = QFQ_MAX_LMAX, +}; + static const struct nla_policy qfq_policy[TCA_QFQ_MAX + 1] = { - [TCA_QFQ_WEIGHT] = { .type = NLA_U32 }, - [TCA_QFQ_LMAX] = { .type = NLA_U32 }, + [TCA_QFQ_WEIGHT] = NLA_POLICY_RANGE(NLA_U32, 1, QFQ_MAX_WEIGHT), + [TCA_QFQ_LMAX] = NLA_POLICY_FULL_RANGE(NLA_U32, &lmax_range), }; /* @@ -375,8 +381,13 @@ u32 lmax) { struct qfq_sched *q = qdisc_priv(sch); - struct qfq_aggregate *new_agg = qfq_find_agg(q, lmax, weight); + struct qfq_aggregate *new_agg; + + /* 'lmax' can range from [QFQ_MIN_LMAX, pktlen + stab overhead] */ + if (lmax > QFQ_MAX_LMAX) + return -EINVAL; + new_agg = qfq_find_agg(q, lmax, weight); if (new_agg == NULL) { /* create new aggregate */ new_agg = kzalloc(sizeof(*new_agg), GFP_ATOMIC); if (new_agg == NULL) @@ -408,17 +419,13 @@ } err = nla_parse_nested_deprecated(tb, TCA_QFQ_MAX, tca[TCA_OPTIONS], - qfq_policy, NULL); + qfq_policy, extack); if (err < 0) return err; - if (tb[TCA_QFQ_WEIGHT]) { + if (tb[TCA_QFQ_WEIGHT]) weight = nla_get_u32(tb[TCA_QFQ_WEIGHT]); - if (!weight || weight > (1UL << QFQ_MAX_WSHIFT)) { - pr_notice("qfq: invalid weight %u\n", weight); - return -EINVAL; - } - } else + else weight = 1; if (tb[TCA_QFQ_LMAX]) @@ -426,11 +433,6 @@ else lmax = psched_mtu(qdisc_dev(sch)); - if (lmax < QFQ_MIN_LMAX || lmax > (1UL << QFQ_MTU_SHIFT)) { - pr_notice("qfq: invalid max length %u\n", lmax); - return -EINVAL; - } - inv_w = ONE_FP / weight; weight = ONE_FP / inv_w; diff -u linux-6.2.0/net/sctp/socket.c linux-6.2.0/net/sctp/socket.c --- linux-6.2.0/net/sctp/socket.c +++ linux-6.2.0/net/sctp/socket.c @@ -8325,7 +8325,7 @@ int low, high, remaining, index; unsigned int rover; - inet_get_local_port_range(net, &low, &high); + inet_sk_get_local_port_range(sk, &low, &high); remaining = (high - low) + 1; rover = get_random_u32_below(remaining) + low; diff -u linux-6.2.0/net/smc/af_smc.c linux-6.2.0/net/smc/af_smc.c --- linux-6.2.0/net/smc/af_smc.c +++ linux-6.2.0/net/smc/af_smc.c @@ -1985,8 +1985,10 @@ return rc; /* create send buffer and rmb */ - if (smc_buf_create(new_smc, false)) + if (smc_buf_create(new_smc, false)) { + smc_conn_abort(new_smc, ini->first_contact_local); return SMC_CLC_DECL_MEM; + } return 0; } @@ -2202,8 +2204,11 @@ smcr_version = ini->smcr_version; ini->smcr_version = SMC_V2; rc = smc_listen_rdma_init(new_smc, ini); - if (!rc) + if (!rc) { rc = smc_listen_rdma_reg(new_smc, ini->first_contact_local); + if (rc) + smc_conn_abort(new_smc, ini->first_contact_local); + } if (!rc) return; ini->smcr_version = smcr_version; diff -u linux-6.2.0/net/smc/smc_core.c linux-6.2.0/net/smc/smc_core.c --- linux-6.2.0/net/smc/smc_core.c +++ linux-6.2.0/net/smc/smc_core.c @@ -127,6 +127,7 @@ int i, j; /* do link balancing */ + conn->lnk = NULL; /* reset conn->lnk first */ for (i = 0; i < SMC_LINKS_PER_LGR_MAX; i++) { struct smc_link *lnk = &conn->lgr->lnk[i]; diff -u linux-6.2.0/net/socket.c linux-6.2.0/net/socket.c --- linux-6.2.0/net/socket.c +++ linux-6.2.0/net/socket.c @@ -2884,7 +2884,7 @@ * error to return on the next call or if the * app asks about it using getsockopt(SO_ERROR). */ - sock->sk->sk_err = -err; + WRITE_ONCE(sock->sk->sk_err, -err); } out_put: fput_light(sock->file, fput_needed); diff -u linux-6.2.0/net/sunrpc/sched.c linux-6.2.0/net/sunrpc/sched.c --- linux-6.2.0/net/sunrpc/sched.c +++ linux-6.2.0/net/sunrpc/sched.c @@ -927,11 +927,10 @@ */ do_action = task->tk_action; /* Tasks with an RPC error status should exit */ - if (do_action != rpc_exit_task && + if (do_action && do_action != rpc_exit_task && (status = READ_ONCE(task->tk_rpc_status)) != 0) { task->tk_status = status; - if (do_action != NULL) - do_action = rpc_exit_task; + do_action = rpc_exit_task; } /* Callbacks override all actions */ if (task->tk_callback) { diff -u linux-6.2.0/net/sunrpc/svc.c linux-6.2.0/net/sunrpc/svc.c --- linux-6.2.0/net/sunrpc/svc.c +++ linux-6.2.0/net/sunrpc/svc.c @@ -1006,7 +1006,7 @@ #endif } - trace_svc_register(progname, version, protocol, port, family, error); + trace_svc_register(progname, version, family, protocol, port, error); return error; } diff -u linux-6.2.0/net/tls/tls_device.c linux-6.2.0/net/tls/tls_device.c --- linux-6.2.0/net/tls/tls_device.c +++ linux-6.2.0/net/tls/tls_device.c @@ -1007,20 +1007,14 @@ struct tls_sw_context_rx *sw_ctx = tls_sw_ctx_rx(tls_ctx); struct sk_buff *skb = tls_strp_msg(sw_ctx); struct strp_msg *rxm = strp_msg(skb); - int is_decrypted = skb->decrypted; - int is_encrypted = !is_decrypted; - struct sk_buff *skb_iter; - int left; + int is_decrypted, is_encrypted; - left = rxm->full_len - skb->len; - /* Check if all the data is decrypted already */ - skb_iter = skb_shinfo(skb)->frag_list; - while (skb_iter && left > 0) { - is_decrypted &= skb_iter->decrypted; - is_encrypted &= !skb_iter->decrypted; - - left -= skb_iter->len; - skb_iter = skb_iter->next; + if (!tls_strp_msg_mixed_decrypted(sw_ctx)) { + is_decrypted = skb->decrypted; + is_encrypted = !is_decrypted; + } else { + is_decrypted = 0; + is_encrypted = 0; } trace_tls_device_decrypted(sk, tcp_sk(sk)->copied_seq - rxm->full_len, diff -u linux-6.2.0/net/tls/tls_main.c linux-6.2.0/net/tls/tls_main.c --- linux-6.2.0/net/tls/tls_main.c +++ linux-6.2.0/net/tls/tls_main.c @@ -111,7 +111,8 @@ break; } - if (sk_wait_event(sk, timeo, !sk->sk_write_pending, &wait)) + if (sk_wait_event(sk, timeo, + !READ_ONCE(sk->sk_write_pending), &wait)) break; } remove_wait_queue(sk_sleep(sk), &wait); diff -u linux-6.2.0/net/unix/af_unix.c linux-6.2.0/net/unix/af_unix.c --- linux-6.2.0/net/unix/af_unix.c +++ linux-6.2.0/net/unix/af_unix.c @@ -602,7 +602,7 @@ /* Clear state */ unix_state_lock(sk); sock_orphan(sk); - sk->sk_shutdown = SHUTDOWN_MASK; + WRITE_ONCE(sk->sk_shutdown, SHUTDOWN_MASK); path = u->path; u->path.dentry = NULL; u->path.mnt = NULL; @@ -627,7 +627,7 @@ if (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) { unix_state_lock(skpair); /* No more writes */ - skpair->sk_shutdown = SHUTDOWN_MASK; + WRITE_ONCE(skpair->sk_shutdown, SHUTDOWN_MASK); if (!skb_queue_empty(&sk->sk_receive_queue) || embrion) skpair->sk_err = ECONNRESET; unix_state_unlock(skpair); @@ -1441,7 +1441,7 @@ sched = !sock_flag(other, SOCK_DEAD) && !(other->sk_shutdown & RCV_SHUTDOWN) && - unix_recvq_full(other); + unix_recvq_full_lockless(other); unix_state_unlock(other); @@ -2552,7 +2552,7 @@ { struct unix_sock *u = unix_sk(sk); struct sk_buff *skb; - int err, copied; + int err; mutex_lock(&u->iolock); skb = skb_recv_datagram(sk, MSG_DONTWAIT, &err); @@ -2560,10 +2560,7 @@ if (!skb) return err; - copied = recv_actor(sk, skb); - kfree_skb(skb); - - return copied; + return recv_actor(sk, skb); } /* @@ -3007,7 +3004,7 @@ ++mode; unix_state_lock(sk); - sk->sk_shutdown |= mode; + WRITE_ONCE(sk->sk_shutdown, sk->sk_shutdown | mode); other = unix_peer(sk); if (other) sock_hold(other); @@ -3027,7 +3024,7 @@ if (mode&SEND_SHUTDOWN) peer_mode |= RCV_SHUTDOWN; unix_state_lock(other); - other->sk_shutdown |= peer_mode; + WRITE_ONCE(other->sk_shutdown, other->sk_shutdown | peer_mode); unix_state_unlock(other); other->sk_state_change(other); if (peer_mode == SHUTDOWN_MASK) @@ -3159,16 +3156,18 @@ { struct sock *sk = sock->sk; __poll_t mask; + u8 shutdown; sock_poll_wait(file, sock, wait); mask = 0; + shutdown = READ_ONCE(sk->sk_shutdown); /* exceptional events? */ if (sk->sk_err) mask |= EPOLLERR; - if (sk->sk_shutdown == SHUTDOWN_MASK) + if (shutdown == SHUTDOWN_MASK) mask |= EPOLLHUP; - if (sk->sk_shutdown & RCV_SHUTDOWN) + if (shutdown & RCV_SHUTDOWN) mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM; /* readable? */ @@ -3202,18 +3201,20 @@ struct sock *sk = sock->sk, *other; unsigned int writable; __poll_t mask; + u8 shutdown; sock_poll_wait(file, sock, wait); mask = 0; + shutdown = READ_ONCE(sk->sk_shutdown); /* exceptional events? */ if (sk->sk_err || !skb_queue_empty_lockless(&sk->sk_error_queue)) mask |= EPOLLERR | (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0); - if (sk->sk_shutdown & RCV_SHUTDOWN) + if (shutdown & RCV_SHUTDOWN) mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM; - if (sk->sk_shutdown == SHUTDOWN_MASK) + if (shutdown == SHUTDOWN_MASK) mask |= EPOLLHUP; /* readable? */ diff -u linux-6.2.0/net/xfrm/xfrm_user.c linux-6.2.0/net/xfrm/xfrm_user.c --- linux-6.2.0/net/xfrm/xfrm_user.c +++ linux-6.2.0/net/xfrm/xfrm_user.c @@ -1768,7 +1768,7 @@ } static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family, - struct netlink_ext_ack *extack) + int dir, struct netlink_ext_ack *extack) { u16 prev_family; int i; @@ -1794,6 +1794,10 @@ switch (ut[i].mode) { case XFRM_MODE_TUNNEL: case XFRM_MODE_BEET: + if (ut[i].optional && dir == XFRM_POLICY_OUT) { + NL_SET_ERR_MSG(extack, "Mode in optional template not allowed in outbound policy"); + return -EINVAL; + } break; default: if (ut[i].family != prev_family) { @@ -1831,7 +1835,7 @@ } static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs, - struct netlink_ext_ack *extack) + int dir, struct netlink_ext_ack *extack) { struct nlattr *rt = attrs[XFRMA_TMPL]; @@ -1842,7 +1846,7 @@ int nr = nla_len(rt) / sizeof(*utmpl); int err; - err = validate_tmpl(nr, utmpl, pol->family, extack); + err = validate_tmpl(nr, utmpl, pol->family, dir, extack); if (err) return err; @@ -1919,7 +1923,7 @@ if (err) goto error; - if (!(err = copy_from_user_tmpl(xp, attrs, extack))) + if (!(err = copy_from_user_tmpl(xp, attrs, p->dir, extack))) err = copy_from_user_sec_ctx(xp, attrs); if (err) goto error; @@ -1978,6 +1982,7 @@ if (err) { xfrm_dev_policy_delete(xp); + xfrm_dev_policy_free(xp); security_xfrm_policy_free(xp->security); kfree(xp); return err; @@ -3497,7 +3502,7 @@ return NULL; nr = ((len - sizeof(*p)) / sizeof(*ut)); - if (validate_tmpl(nr, ut, p->sel.family, NULL)) + if (validate_tmpl(nr, ut, p->sel.family, p->dir, NULL)) return NULL; if (p->dir > XFRM_POLICY_OUT) diff -u linux-6.2.0/sound/pci/hda/hda_intel.c linux-6.2.0/sound/pci/hda/hda_intel.c --- linux-6.2.0/sound/pci/hda/hda_intel.c +++ linux-6.2.0/sound/pci/hda/hda_intel.c @@ -2528,6 +2528,9 @@ /* Meteorlake-P */ { PCI_DEVICE(0x8086, 0x7e28), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, + /* Lunarlake-P */ + { PCI_DEVICE(0x8086, 0xa828), + .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, /* Broxton-P(Apollolake) */ { PCI_DEVICE(0x8086, 0x5a98), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_BROXTON }, diff -u linux-6.2.0/sound/pci/hda/patch_ca0132.c linux-6.2.0/sound/pci/hda/patch_ca0132.c --- linux-6.2.0/sound/pci/hda/patch_ca0132.c +++ linux-6.2.0/sound/pci/hda/patch_ca0132.c @@ -1306,6 +1306,7 @@ SND_PCI_QUIRK(0x1458, 0xA026, "Gigabyte G1.Sniper Z97", QUIRK_R3DI), SND_PCI_QUIRK(0x1458, 0xA036, "Gigabyte GA-Z170X-Gaming 7", QUIRK_R3DI), SND_PCI_QUIRK(0x3842, 0x1038, "EVGA X99 Classified", QUIRK_R3DI), + SND_PCI_QUIRK(0x3842, 0x104b, "EVGA X299 Dark", QUIRK_R3DI), SND_PCI_QUIRK(0x3842, 0x1055, "EVGA Z390 DARK", QUIRK_R3DI), SND_PCI_QUIRK(0x1102, 0x0013, "Recon3D", QUIRK_R3D), SND_PCI_QUIRK(0x1102, 0x0018, "Recon3D", QUIRK_R3D), diff -u linux-6.2.0/sound/pci/hda/patch_realtek.c linux-6.2.0/sound/pci/hda/patch_realtek.c --- linux-6.2.0/sound/pci/hda/patch_realtek.c +++ linux-6.2.0/sound/pci/hda/patch_realtek.c @@ -6700,9 +6700,17 @@ int i; for (i = 0; i < HDA_MAX_COMPONENTS; i++) { - if (spec->comps[i].dev) + if (spec->comps[i].dev && spec->comps[i].pre_playback_hook) + spec->comps[i].pre_playback_hook(spec->comps[i].dev, action); + } + for (i = 0; i < HDA_MAX_COMPONENTS; i++) { + if (spec->comps[i].dev && spec->comps[i].playback_hook) spec->comps[i].playback_hook(spec->comps[i].dev, action); } + for (i = 0; i < HDA_MAX_COMPONENTS; i++) { + if (spec->comps[i].dev && spec->comps[i].post_playback_hook) + spec->comps[i].post_playback_hook(spec->comps[i].dev, action); + } } struct cs35l41_dev_name { @@ -9363,7 +9371,7 @@ SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC), SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC), - SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), + SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360), SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC), SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360), SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), @@ -9458,7 +9466,7 @@ SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED), - SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), @@ -9469,19 +9477,25 @@ SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), + SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), + SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2), + SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2), + SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2), + SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED), - SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED), + SND_PCI_QUIRK(0x103c, 0x8c26, "HP HP EliteBook 800G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300), SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), @@ -9523,6 +9537,7 @@ SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC), SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), + SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS), SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC), SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401), @@ -9619,6 +9634,7 @@ SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), @@ -11664,6 +11680,7 @@ SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB), SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB), + SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB), SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2), SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2), SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2), @@ -11691,6 +11708,8 @@ SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN), 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, 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-6.2.0/sound/soc/amd/yc/acp6x-mach.c linux-6.2.0/sound/soc/amd/yc/acp6x-mach.c --- linux-6.2.0/sound/soc/amd/yc/acp6x-mach.c +++ linux-6.2.0/sound/soc/amd/yc/acp6x-mach.c @@ -48,6 +48,13 @@ { .driver_data = &acp6x_card, .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell G15 5525"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), DMI_MATCH(DMI_PRODUCT_NAME, "21D0"), } @@ -182,6 +189,13 @@ .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "21HY"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), DMI_MATCH(DMI_PRODUCT_NAME, "21J5"), } }, @@ -263,6 +277,13 @@ } }, { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_BOARD_NAME, "8A42"), + } + }, + { .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "HP"), diff -u linux-6.2.0/sound/soc/codecs/cs35l41.c linux-6.2.0/sound/soc/codecs/cs35l41.c --- linux-6.2.0/sound/soc/codecs/cs35l41.c +++ linux-6.2.0/sound/soc/codecs/cs35l41.c @@ -360,6 +360,7 @@ { switch (cs35l41->hw_cfg.bst_type) { case CS35L41_INT_BOOST: + case CS35L41_SHD_BOOST_ACTV: enable = enable ? CS35L41_BST_EN_DEFAULT : CS35L41_BST_DIS_FET_OFF; regmap_update_bits(cs35l41->regmap, CS35L41_PWR_CTRL2, CS35L41_BST_EN_MASK, enable << CS35L41_BST_EN_SHIFT); @@ -369,6 +370,16 @@ } } + +static void cs35l41_error_release(struct cs35l41_private *cs35l41, unsigned int irq_err_bit, + unsigned int rel_err_bit) +{ + regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, irq_err_bit); + regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); + regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, rel_err_bit, rel_err_bit); + regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, rel_err_bit, 0); +} + static irqreturn_t cs35l41_irq(int irq, void *data) { struct cs35l41_private *cs35l41 = data; @@ -405,54 +416,26 @@ */ if (status[0] & CS35L41_AMP_SHORT_ERR) { dev_crit_ratelimited(cs35l41->dev, "Amp short error\n"); - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_AMP_SHORT_ERR); - regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_AMP_SHORT_ERR_RLS, - CS35L41_AMP_SHORT_ERR_RLS); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_AMP_SHORT_ERR_RLS, 0); + cs35l41_error_release(cs35l41, CS35L41_AMP_SHORT_ERR, CS35L41_AMP_SHORT_ERR_RLS); ret = IRQ_HANDLED; } if (status[0] & CS35L41_TEMP_WARN) { dev_crit_ratelimited(cs35l41->dev, "Over temperature warning\n"); - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_TEMP_WARN); - regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_TEMP_WARN_ERR_RLS, - CS35L41_TEMP_WARN_ERR_RLS); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_TEMP_WARN_ERR_RLS, 0); + cs35l41_error_release(cs35l41, CS35L41_TEMP_WARN, CS35L41_TEMP_WARN_ERR_RLS); ret = IRQ_HANDLED; } if (status[0] & CS35L41_TEMP_ERR) { dev_crit_ratelimited(cs35l41->dev, "Over temperature error\n"); - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_TEMP_ERR); - regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_TEMP_ERR_RLS, - CS35L41_TEMP_ERR_RLS); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_TEMP_ERR_RLS, 0); + cs35l41_error_release(cs35l41, CS35L41_TEMP_ERR, CS35L41_TEMP_ERR_RLS); ret = IRQ_HANDLED; } if (status[0] & CS35L41_BST_OVP_ERR) { dev_crit_ratelimited(cs35l41->dev, "VBST Over Voltage error\n"); cs35l41_boost_enable(cs35l41, 0); - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_BST_OVP_ERR); - regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_BST_OVP_ERR_RLS, - CS35L41_BST_OVP_ERR_RLS); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_BST_OVP_ERR_RLS, 0); + cs35l41_error_release(cs35l41, CS35L41_BST_OVP_ERR, CS35L41_BST_OVP_ERR_RLS); cs35l41_boost_enable(cs35l41, 1); ret = IRQ_HANDLED; } @@ -460,14 +443,7 @@ if (status[0] & CS35L41_BST_DCM_UVP_ERR) { dev_crit_ratelimited(cs35l41->dev, "DCM VBST Under Voltage Error\n"); cs35l41_boost_enable(cs35l41, 0); - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_BST_DCM_UVP_ERR); - regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_BST_UVP_ERR_RLS, - CS35L41_BST_UVP_ERR_RLS); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_BST_UVP_ERR_RLS, 0); + cs35l41_error_release(cs35l41, CS35L41_BST_DCM_UVP_ERR, CS35L41_BST_UVP_ERR_RLS); cs35l41_boost_enable(cs35l41, 1); ret = IRQ_HANDLED; } @@ -478,12 +454,11 @@ - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_BST_SHORT_ERR); - regmap_write(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, 0); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_BST_SHORT_ERR_RLS, - CS35L41_BST_SHORT_ERR_RLS); - regmap_update_bits(cs35l41->regmap, CS35L41_PROTECT_REL_ERR_IGN, - CS35L41_BST_SHORT_ERR_RLS, 0); + cs35l41_error_release(cs35l41, CS35L41_BST_SHORT_ERR, CS35L41_BST_SHORT_ERR_RLS); cs35l41_boost_enable(cs35l41, 1); ret = IRQ_HANDLED; } + if (status[2] & CS35L41_PLL_LOCK) { + regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS3, CS35L41_PLL_LOCK); + complete(&cs35l41->pll_lock); + ret = IRQ_HANDLED; + } + @@ -515,7 +490,6 @@ { struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); struct cs35l41_private *cs35l41 = snd_soc_component_get_drvdata(component); - unsigned int val; int ret = 0; switch (event) { @@ -524,19 +498,12 @@ cs35l41_pup_patch, ARRAY_SIZE(cs35l41_pup_patch)); - cs35l41_global_enable(cs35l41->regmap, cs35l41->hw_cfg.bst_type, 1); + ret = cs35l41_global_enable(cs35l41->dev, cs35l41->regmap, cs35l41->hw_cfg.bst_type, + 1, &cs35l41->pll_lock, cs35l41->dsp.cs_dsp.running); break; case SND_SOC_DAPM_POST_PMD: - cs35l41_global_enable(cs35l41->regmap, cs35l41->hw_cfg.bst_type, 0); - - ret = regmap_read_poll_timeout(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - val, val & CS35L41_PDN_DONE_MASK, - 1000, 100000); - if (ret) - dev_warn(cs35l41->dev, "PDN failed: %d\n", ret); - - regmap_write(cs35l41->regmap, CS35L41_IRQ1_STATUS1, - CS35L41_PDN_DONE_MASK); + ret = cs35l41_global_enable(cs35l41->dev, cs35l41->regmap, cs35l41->hw_cfg.bst_type, + 0, &cs35l41->pll_lock, cs35l41->dsp.cs_dsp.running); regmap_multi_reg_write_bypassed(cs35l41->regmap, cs35l41_pdn_patch, @@ -834,6 +801,10 @@ static int cs35l41_pcm_startup(struct snd_pcm_substream *substream, struct snd_soc_dai *dai) { + struct cs35l41_private *cs35l41 = snd_soc_component_get_drvdata(dai->component); + + reinit_completion(&cs35l41->pll_lock); + if (substream->runtime) return snd_pcm_hw_constraint_list(substream->runtime, 0, SNDRV_PCM_HW_PARAM_RATE, @@ -1284,6 +1255,10 @@ /* Set interrupt masks for critical errors */ regmap_write(cs35l41->regmap, CS35L41_IRQ1_MASK1, CS35L41_INT1_MASK_DEFAULT); + if (cs35l41->hw_cfg.bst_type == CS35L41_SHD_BOOST_PASS || + cs35l41->hw_cfg.bst_type == CS35L41_SHD_BOOST_ACTV) + regmap_update_bits(cs35l41->regmap, CS35L41_IRQ1_MASK3, CS35L41_INT3_PLL_LOCK_MASK, + 0 << CS35L41_INT3_PLL_LOCK_SHIFT); ret = devm_request_threaded_irq(cs35l41->dev, cs35l41->irq, NULL, cs35l41_irq, IRQF_ONESHOT | IRQF_SHARED | irq_pol, @@ -1307,6 +1282,8 @@ if (ret < 0) goto err; + init_completion(&cs35l41->pll_lock); + pm_runtime_set_autosuspend_delay(cs35l41->dev, 3000); pm_runtime_use_autosuspend(cs35l41->dev); pm_runtime_mark_last_busy(cs35l41->dev); @@ -1349,6 +1326,10 @@ pm_runtime_disable(cs35l41->dev); regmap_write(cs35l41->regmap, CS35L41_IRQ1_MASK1, 0xFFFFFFFF); + if (cs35l41->hw_cfg.bst_type == CS35L41_SHD_BOOST_PASS || + cs35l41->hw_cfg.bst_type == CS35L41_SHD_BOOST_ACTV) + regmap_update_bits(cs35l41->regmap, CS35L41_IRQ1_MASK3, CS35L41_INT3_PLL_LOCK_MASK, + 1 << CS35L41_INT3_PLL_LOCK_SHIFT); kfree(cs35l41->dsp.system_name); wm_adsp2_remove(&cs35l41->dsp); cs35l41_safe_reset(cs35l41->regmap, cs35l41->hw_cfg.bst_type); diff -u linux-6.2.0/sound/soc/codecs/lpass-tx-macro.c linux-6.2.0/sound/soc/codecs/lpass-tx-macro.c --- linux-6.2.0/sound/soc/codecs/lpass-tx-macro.c +++ linux-6.2.0/sound/soc/codecs/lpass-tx-macro.c @@ -746,6 +746,8 @@ struct tx_macro *tx = snd_soc_component_get_drvdata(component); val = ucontrol->value.enumerated.item[0]; + if (val >= e->items) + return -EINVAL; switch (e->reg) { case CDC_TX_INP_MUX_ADC_MUX0_CFG0: @@ -772,6 +774,9 @@ case CDC_TX_INP_MUX_ADC_MUX7_CFG0: mic_sel_reg = CDC_TX7_TX_PATH_CFG0; break; + default: + dev_err(component->dev, "Error in configuration!!\n"); + return -EINVAL; } if (val != 0) { diff -u linux-6.2.0/sound/usb/format.c linux-6.2.0/sound/usb/format.c --- linux-6.2.0/sound/usb/format.c +++ linux-6.2.0/sound/usb/format.c @@ -423,6 +423,7 @@ case USB_ID(0x0e41, 0x4248): /* Line6 Helix >= fw 2.82 */ case USB_ID(0x0e41, 0x4249): /* Line6 Helix Rack >= fw 2.82 */ case USB_ID(0x0e41, 0x424a): /* Line6 Helix LT >= fw 2.82 */ + case USB_ID(0x0e41, 0x424b): /* Line6 Pod Go */ case USB_ID(0x19f7, 0x0011): /* Rode Rodecaster Pro */ return set_fixed_rate(fp, 48000, SNDRV_PCM_RATE_48000); } diff -u linux-6.2.0/tools/perf/builtin-record.c linux-6.2.0/tools/perf/builtin-record.c --- linux-6.2.0/tools/perf/builtin-record.c +++ linux-6.2.0/tools/perf/builtin-record.c @@ -1866,7 +1866,7 @@ int id_hdr_size; if (perf_evsel__read(&evsel->core, cpu_idx, thread_idx, &count) < 0) { - pr_err("read LOST count failed\n"); + pr_debug("read LOST count failed\n"); return; } diff -u linux-6.2.0/tools/perf/builtin-stat.c linux-6.2.0/tools/perf/builtin-stat.c --- linux-6.2.0/tools/perf/builtin-stat.c +++ linux-6.2.0/tools/perf/builtin-stat.c @@ -773,7 +773,7 @@ counter->reset_group = false; if (bpf_counter__load(counter, &target)) return -1; - if (!evsel__is_bpf(counter)) + if (!(evsel__is_bperf(counter))) all_counters_use_bpf = false; } @@ -789,7 +789,7 @@ if (counter->reset_group || counter->errored) continue; - if (evsel__is_bpf(counter)) + if (evsel__is_bperf(counter)) continue; try_again: if (create_perf_stat_counter(counter, &stat_config, &target, diff -u linux-6.2.0/tools/testing/selftests/bpf/Makefile linux-6.2.0/tools/testing/selftests/bpf/Makefile --- linux-6.2.0/tools/testing/selftests/bpf/Makefile +++ linux-6.2.0/tools/testing/selftests/bpf/Makefile @@ -193,7 +193,7 @@ $(OUTPUT)/sign-file: ../../../../scripts/sign-file.c $(call msg,SIGN-FILE,,$@) - $(Q)$(CC) $(shell $(HOSTPKG_CONFIG)--cflags libcrypto 2> /dev/null) \ + $(Q)$(CC) $(shell $(HOSTPKG_CONFIG) --cflags libcrypto 2> /dev/null) \ $< -o $@ \ $(shell $(HOSTPKG_CONFIG) --libs libcrypto 2> /dev/null || echo -lcrypto) diff -u linux-6.2.0/tools/testing/selftests/net/fib_tests.sh linux-6.2.0/tools/testing/selftests/net/fib_tests.sh --- linux-6.2.0/tools/testing/selftests/net/fib_tests.sh +++ linux-6.2.0/tools/testing/selftests/net/fib_tests.sh @@ -68,7 +68,7 @@ cleanup() { $IP link del dev dummy0 &> /dev/null - ip netns del ns1 + ip netns del ns1 &> /dev/null ip netns del ns2 &> /dev/null } diff -u linux-6.2.0/update-dkms-versions linux-6.2.0/update-dkms-versions --- linux-6.2.0/update-dkms-versions +++ linux-6.2.0/update-dkms-versions @@ -1,6 +1,7 @@ #!/bin/bash remote_repo='' +remote_branch='main' sru_cycle= while : do @@ -8,6 +9,10 @@ remote_repo="$2" shift 2 + elif [ "$1" = "--remote-branch" ]; then + remote_branch="$2" + shift 2 + elif [ "$1" = "--sru-cycle" ]; then sru_cycle="$2" shift 2 @@ -77,7 +82,6 @@ # https://git.launchpad.net/~canonical-kernel/+git/kernel-versions/plain/README # kv_repo="$HOME/.cache/kernel-versions-bare" -git_base="$remote_name/$sru_cycle" # Now we know where our repo is and what it called update it. # We maintain "persistent" remotes for main and security, but assume @@ -100,13 +104,24 @@ (cd "$kv_repo" && git cat-file "$@") || exit 1 } +# Determine if this is merge format (main branch exists). +present=$(cat_file -t "$remote_name/main" 2>/dev/null) +if [ "$present" ]; then + git_base="$remote_name/$remote_branch:$sru_cycle/" + git_base_devel="$remote_name/$remote_branch:tip/" +else + git_base="$remote_name/$sru_cycle:" + git_base_devel="$remote_name/master:" +fi +git_human="$remote_name/$sru_cycle" + # Determine if we have this cycle. present=$(cat_file -t "$git_base" 2>/dev/null) if [ "$present" = "" ]; then # If we don't have the cycle in the development cycle then # fall back to master. case "$sru_cycle" in - d*) git_base="$remote_name/master" ;; + d*) git_base="$git_base_devel" ;; *) echo "$sru_cycle: cycle not found in $remote_repo" 2>&1 exit 1 ;; @@ -146,7 +161,7 @@ "$our_mainline" do echo "II: trying $versions_path_tail ..." - versions_paths=$(echo $(cat_file -p "$git_base:map/dkms-versions/$versions_path_tail" 2>/dev/null)) + versions_paths=$(echo $(cat_file -p "${git_base}map/dkms-versions/$versions_path_tail" 2>/dev/null)) [ -n "$versions_paths" ] && break done @@ -161,7 +176,7 @@ : ">debian/dkms-versions.new" for versions_path in $versions_paths do - cat_file -p "$git_base:$versions_path" >>"debian/dkms-versions.new" + cat_file -p "$git_base$versions_path" >>"debian/dkms-versions.new" if [ "$?" -ne 0 ]; then echo "$0: unable to download an updated dkms-versions file" 1>&2 exit 1 @@ -171,7 +186,7 @@ thing="debian/dkms-versions" if ! git diff --exit-code -- "$thing" >/dev/null; then - git commit -m "UBUNTU: $thing -- update from kernel-versions ($git_base)" \ + git commit -m "UBUNTU: $thing -- update from kernel-versions ($git_human)" \ -m "BugLink: https://bugs.launchpad.net/bugs/1786013" \ -s -- "$thing" else diff -u linux-6.2.0/virt/kvm/kvm_main.c linux-6.2.0/virt/kvm/kvm_main.c --- linux-6.2.0/virt/kvm/kvm_main.c +++ linux-6.2.0/virt/kvm/kvm_main.c @@ -3967,18 +3967,19 @@ } vcpu->vcpu_idx = atomic_read(&kvm->online_vcpus); - r = xa_insert(&kvm->vcpu_array, vcpu->vcpu_idx, vcpu, GFP_KERNEL_ACCOUNT); - BUG_ON(r == -EBUSY); + r = xa_reserve(&kvm->vcpu_array, vcpu->vcpu_idx, GFP_KERNEL_ACCOUNT); if (r) goto unlock_vcpu_destroy; /* Now it's all set up, let userspace reach it */ kvm_get_kvm(kvm); r = create_vcpu_fd(vcpu); - if (r < 0) { - xa_erase(&kvm->vcpu_array, vcpu->vcpu_idx); - kvm_put_kvm_no_destroy(kvm); - goto unlock_vcpu_destroy; + if (r < 0) + goto kvm_put_xa_release; + + if (KVM_BUG_ON(!!xa_store(&kvm->vcpu_array, vcpu->vcpu_idx, vcpu, 0), kvm)) { + r = -EINVAL; + goto kvm_put_xa_release; } /* @@ -3993,6 +3994,9 @@ kvm_create_vcpu_debugfs(vcpu); return r; +kvm_put_xa_release: + kvm_put_kvm_no_destroy(kvm); + xa_release(&kvm->vcpu_array, vcpu->vcpu_idx); unlock_vcpu_destroy: mutex_unlock(&kvm->lock); kvm_dirty_ring_free(&vcpu->dirty_ring); only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/ABI/testing/sysfs-devices-system-cpu +++ linux-6.2.0/Documentation/ABI/testing/sysfs-devices-system-cpu @@ -513,17 +513,18 @@ cpu_capacity: capacity of cpuX. What: /sys/devices/system/cpu/vulnerabilities + /sys/devices/system/cpu/vulnerabilities/gather_data_sampling + /sys/devices/system/cpu/vulnerabilities/itlb_multihit + /sys/devices/system/cpu/vulnerabilities/l1tf + /sys/devices/system/cpu/vulnerabilities/mds /sys/devices/system/cpu/vulnerabilities/meltdown + /sys/devices/system/cpu/vulnerabilities/mmio_stale_data + /sys/devices/system/cpu/vulnerabilities/retbleed + /sys/devices/system/cpu/vulnerabilities/spec_store_bypass /sys/devices/system/cpu/vulnerabilities/spectre_v1 /sys/devices/system/cpu/vulnerabilities/spectre_v2 - /sys/devices/system/cpu/vulnerabilities/spec_store_bypass - /sys/devices/system/cpu/vulnerabilities/l1tf - /sys/devices/system/cpu/vulnerabilities/mds /sys/devices/system/cpu/vulnerabilities/srbds /sys/devices/system/cpu/vulnerabilities/tsx_async_abort - /sys/devices/system/cpu/vulnerabilities/itlb_multihit - /sys/devices/system/cpu/vulnerabilities/mmio_stale_data - /sys/devices/system/cpu/vulnerabilities/retbleed Date: January 2018 Contact: Linux kernel mailing list Description: Information about CPU vulnerabilities only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/admin-guide/hw-vuln/gather_data_sampling.rst +++ linux-6.2.0/Documentation/admin-guide/hw-vuln/gather_data_sampling.rst @@ -0,0 +1,109 @@ +.. SPDX-License-Identifier: GPL-2.0 + +GDS - Gather Data Sampling +========================== + +Gather Data Sampling is a hardware vulnerability which allows unprivileged +speculative access to data which was previously stored in vector registers. + +Problem +------- +When a gather instruction performs loads from memory, different data elements +are merged into the destination vector register. However, when a gather +instruction that is transiently executed encounters a fault, stale data from +architectural or internal vector registers may get transiently forwarded to the +destination vector register instead. This will allow a malicious attacker to +infer stale data using typical side channel techniques like cache timing +attacks. GDS is a purely sampling-based attack. + +The attacker uses gather instructions to infer the stale vector register data. +The victim does not need to do anything special other than use the vector +registers. The victim does not need to use gather instructions to be +vulnerable. + +Because the buffers are shared between Hyper-Threads cross Hyper-Thread attacks +are possible. + +Attack scenarios +---------------- +Without mitigation, GDS can infer stale data across virtually all +permission boundaries: + + Non-enclaves can infer SGX enclave data + Userspace can infer kernel data + Guests can infer data from hosts + Guest can infer guest from other guests + Users can infer data from other users + +Because of this, it is important to ensure that the mitigation stays enabled in +lower-privilege contexts like guests and when running outside SGX enclaves. + +The hardware enforces the mitigation for SGX. Likewise, VMMs should ensure +that guests are not allowed to disable the GDS mitigation. If a host erred and +allowed this, a guest could theoretically disable GDS mitigation, mount an +attack, and re-enable it. + +Mitigation mechanism +-------------------- +This issue is mitigated in microcode. The microcode defines the following new +bits: + + ================================ === ============================ + IA32_ARCH_CAPABILITIES[GDS_CTRL] R/O Enumerates GDS vulnerability + and mitigation support. + IA32_ARCH_CAPABILITIES[GDS_NO] R/O Processor is not vulnerable. + IA32_MCU_OPT_CTRL[GDS_MITG_DIS] R/W Disables the mitigation + 0 by default. + IA32_MCU_OPT_CTRL[GDS_MITG_LOCK] R/W Locks GDS_MITG_DIS=0. Writes + to GDS_MITG_DIS are ignored + Can't be cleared once set. + ================================ === ============================ + +GDS can also be mitigated on systems that don't have updated microcode by +disabling AVX. This can be done by setting gather_data_sampling="force" or +"clearcpuid=avx" on the kernel command-line. + +If used, these options will disable AVX use by turning off XSAVE YMM support. +However, the processor will still enumerate AVX support. Userspace that +does not follow proper AVX enumeration to check both AVX *and* XSAVE YMM +support will break. + +Mitigation control on the kernel command line +--------------------------------------------- +The mitigation can be disabled by setting "gather_data_sampling=off" or +"mitigations=off" on the kernel command line. Not specifying either will default +to the mitigation being enabled. Specifying "gather_data_sampling=force" will +use the microcode mitigation when available or disable AVX on affected systems +where the microcode hasn't been updated to include the mitigation. + +GDS System Information +------------------------ +The kernel provides vulnerability status information through sysfs. For +GDS this can be accessed by the following sysfs file: + +/sys/devices/system/cpu/vulnerabilities/gather_data_sampling + +The possible values contained in this file are: + + ============================== ============================================= + Not affected Processor not vulnerable. + Vulnerable Processor vulnerable and mitigation disabled. + Vulnerable: No microcode Processor vulnerable and microcode is missing + mitigation. + Mitigation: AVX disabled, + no microcode Processor is vulnerable and microcode is missing + mitigation. AVX disabled as mitigation. + Mitigation: Microcode Processor is vulnerable and mitigation is in + effect. + Mitigation: Microcode (locked) Processor is vulnerable and mitigation is in + effect and cannot be disabled. + Unknown: Dependent on + hypervisor status Running on a virtual guest processor that is + affected but with no way to know if host + processor is mitigated or vulnerable. + ============================== ============================================= + +GDS Default mitigation +---------------------- +The updated microcode will enable the mitigation by default. The kernel's +default action is to leave the mitigation enabled. only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/admin-guide/hw-vuln/index.rst +++ linux-6.2.0/Documentation/admin-guide/hw-vuln/index.rst @@ -19,3 +19,4 @@ l1d_flush.rst processor_mmio_stale_data.rst cross-thread-rsb.rst + gather_data_sampling.rst only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/arm64/silicon-errata.rst +++ linux-6.2.0/Documentation/arm64/silicon-errata.rst @@ -172,6 +172,8 @@ +----------------+-----------------+-----------------+-----------------------------+ | NVIDIA | Carmel Core | N/A | NVIDIA_CARMEL_CNP_ERRATUM | +----------------+-----------------+-----------------+-----------------------------+ +| NVIDIA | T241 GICv3/4.x | T241-FABRIC-4 | N/A | ++----------------+-----------------+-----------------+-----------------------------+ +----------------+-----------------+-----------------+-----------------------------+ | Freescale/NXP | LS2080A/LS1043A | A-008585 | FSL_ERRATUM_A008585 | +----------------+-----------------+-----------------+-----------------------------+ only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/devicetree/bindings/ata/ceva,ahci-1v84.yaml +++ linux-6.2.0/Documentation/devicetree/bindings/ata/ceva,ahci-1v84.yaml @@ -32,7 +32,7 @@ maxItems: 1 iommus: - maxItems: 1 + maxItems: 4 power-domains: maxItems: 1 only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml +++ linux-6.2.0/Documentation/devicetree/bindings/display/msm/dsi-controller-main.yaml @@ -66,6 +66,18 @@ Indicates if the DSI controller is driving a panel which needs 2 DSI links. + qcom,master-dsi: + type: boolean + description: | + Indicates if the DSI controller is the master DSI controller when + qcom,dual-dsi-mode enabled. + + qcom,sync-dual-dsi: + type: boolean + description: | + Indicates if the DSI controller needs to sync the other DSI controller + with MIPI DCS commands when qcom,dual-dsi-mode enabled. + assigned-clocks: maxItems: 2 description: | only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/devicetree/bindings/sound/cirrus,cs35l41.yaml +++ linux-6.2.0/Documentation/devicetree/bindings/sound/cirrus,cs35l41.yaml @@ -82,11 +82,19 @@ boost-cap-microfarad. External Boost must have GPIO1 as GPIO output. GPIO1 will be set high to enable boost voltage. + Shared boost allows two amplifiers to share a single boost circuit by + communicating on the MDSYNC bus. The active amplifier controls the boost + circuit using combined data from both amplifiers. GPIO1 should be + configured for Sync when shared boost is used. Shared boost is not + compatible with External boost. Active amplifier requires + boost-peak-milliamp, boost-ind-nanohenry and boost-cap-microfarad. 0 = Internal Boost 1 = External Boost + 2 = Shared Boost Active + 3 = Shared Boost Passive $ref: "/schemas/types.yaml#/definitions/uint32" minimum: 0 - maximum: 1 + maximum: 3 cirrus,gpio1-polarity-invert: description: only in patch2: unchanged: --- linux-6.2.0.orig/Documentation/devicetree/bindings/usb/cdns,usb3.yaml +++ linux-6.2.0/Documentation/devicetree/bindings/usb/cdns,usb3.yaml @@ -64,7 +64,7 @@ description: size of memory intended as internal memory for endpoints buffers expressed in KB - $ref: /schemas/types.yaml#/definitions/uint32 + $ref: /schemas/types.yaml#/definitions/uint16 cdns,phyrst-a-enable: description: Enable resetting of PHY if Rx fail is detected only in patch2: unchanged: --- linux-6.2.0.orig/arch/Kconfig +++ linux-6.2.0/arch/Kconfig @@ -285,6 +285,9 @@ config ARCH_HAS_DMA_CLEAR_UNCACHED bool +config ARCH_HAS_CPU_FINALIZE_INIT + bool + # Select if arch init_task must go in the __init_task_data section config ARCH_TASK_STRUCT_ON_STACK bool only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/boot/dts/aspeed-bmc-asrock-e3c246d4i.dts +++ linux-6.2.0/arch/arm/boot/dts/aspeed-bmc-asrock-e3c246d4i.dts @@ -63,7 +63,7 @@ status = "okay"; m25p,fast-read; label = "bmc"; - spi-max-frequency = <100000000>; /* 100 MHz */ + spi-max-frequency = <50000000>; /* 50 MHz */ #include "openbmc-flash-layout.dtsi" }; }; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/boot/dts/aspeed-bmc-asrock-romed8hm3.dts +++ linux-6.2.0/arch/arm/boot/dts/aspeed-bmc-asrock-romed8hm3.dts @@ -31,7 +31,7 @@ }; system-fault { - gpios = <&gpio ASPEED_GPIO(Z, 2) GPIO_ACTIVE_LOW>; + gpios = <&gpio ASPEED_GPIO(Z, 2) GPIO_ACTIVE_HIGH>; panic-indicator; }; }; @@ -51,7 +51,7 @@ status = "okay"; m25p,fast-read; label = "bmc"; - spi-max-frequency = <100000000>; /* 100 MHz */ + spi-max-frequency = <50000000>; /* 50 MHz */ #include "openbmc-flash-layout-64.dtsi" }; }; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/boot/dts/exynos4412-itop-elite.dts +++ linux-6.2.0/arch/arm/boot/dts/exynos4412-itop-elite.dts @@ -182,7 +182,7 @@ compatible = "wlf,wm8960"; reg = <0x1a>; clocks = <&pmu_system_controller 0>; - clock-names = "MCLK1"; + clock-names = "mclk"; wlf,shared-lrclk; #sound-dai-cells = <0>; }; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/boot/dts/imx6qdl-mba6.dtsi +++ linux-6.2.0/arch/arm/boot/dts/imx6qdl-mba6.dtsi @@ -209,6 +209,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_pcie>; reset-gpio = <&gpio6 7 GPIO_ACTIVE_LOW>; + vpcie-supply = <®_pcie>; status = "okay"; }; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/boot/dts/s5pv210.dtsi +++ linux-6.2.0/arch/arm/boot/dts/s5pv210.dtsi @@ -566,7 +566,7 @@ interrupts = <29>; clocks = <&clocks CLK_CSIS>, <&clocks SCLK_CSIS>; - clock-names = "clk_csis", + clock-names = "csis", "sclk_csis"; bus-width = <4>; status = "disabled"; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/include/asm/bugs.h +++ linux-6.2.0/arch/arm/include/asm/bugs.h @@ -1,7 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0-only */ /* - * arch/arm/include/asm/bugs.h - * * Copyright (C) 1995-2003 Russell King */ #ifndef __ASM_BUGS_H @@ -10,10 +8,8 @@ extern void check_writebuffer_bugs(void); #ifdef CONFIG_MMU -extern void check_bugs(void); extern void check_other_bugs(void); #else -#define check_bugs() do { } while (0) #define check_other_bugs() do { } while (0) #endif only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/kernel/bugs.c +++ linux-6.2.0/arch/arm/kernel/bugs.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 #include +#include #include #include @@ -11,7 +12,7 @@ #endif } -void __init check_bugs(void) +void __init arch_cpu_finalize_init(void) { check_writebuffer_bugs(); check_other_bugs(); only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm/mach-sa1100/jornada720_ssp.c +++ linux-6.2.0/arch/arm/mach-sa1100/jornada720_ssp.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only -/** +/* * arch/arm/mac-sa1100/jornada720_ssp.c * * Copyright (C) 2006/2007 Kristoffer Ericson @@ -26,6 +26,7 @@ /** * jornada_ssp_reverse - reverses input byte + * @byte: input byte to reverse * * we need to reverse all data we receive from the mcu due to its physical location * returns : 01110111 -> 11101110 @@ -46,6 +47,7 @@ /** * jornada_ssp_byte - waits for ready ssp bus and sends byte + * @byte: input byte to transmit * * waits for fifo buffer to clear and then transmits, if it doesn't then we will * timeout after rounds. Needs mcu running before its called. @@ -77,6 +79,7 @@ /** * jornada_ssp_inout - decide if input is command or trading byte + * @byte: input byte to send (may be %TXDUMMY) * * returns : (jornada_ssp_byte(byte)) on success * : %-ETIMEDOUT on timeout failure only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mn-var-som.dtsi +++ linux-6.2.0/arch/arm64/boot/dts/freescale/imx8mn-var-som.dtsi @@ -98,11 +98,17 @@ #address-cells = <1>; #size-cells = <0>; - ethphy: ethernet-phy@4 { + ethphy: ethernet-phy@4 { /* AR8033 or ADIN1300 */ compatible = "ethernet-phy-ieee802.3-c22"; reg = <4>; reset-gpios = <&gpio1 9 GPIO_ACTIVE_LOW>; reset-assert-us = <10000>; + /* + * Deassert delay: + * ADIN1300 requires 5ms. + * AR8033 requires 1ms. + */ + reset-deassert-us = <20000>; }; }; }; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi +++ linux-6.2.0/arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi @@ -1299,7 +1299,6 @@ #address-cells = <1>; #size-cells = <0>; dr_mode = "otg"; - snps,dis_u3_susphy_quirk; usb-role-switch; status = "okay"; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm64/include/asm/kvm_pgtable.h +++ linux-6.2.0/arch/arm64/include/asm/kvm_pgtable.h @@ -201,6 +201,7 @@ kvm_pte_t old; void *arg; struct kvm_pgtable_mm_ops *mm_ops; + u64 start; u64 addr; u64 end; u32 level; only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm64/kernel/mte.c +++ linux-6.2.0/arch/arm64/kernel/mte.c @@ -66,13 +66,10 @@ return; /* if PG_mte_tagged is set, tags have already been initialised */ - for (i = 0; i < nr_pages; i++, page++) { - if (!page_mte_tagged(page)) { + for (i = 0; i < nr_pages; i++, page++) + if (!page_mte_tagged(page)) mte_sync_page_tags(page, old_pte, check_swap, pte_is_tagged); - set_page_mte_tagged(page); - } - } /* ensure the tags are visible before the PTE is set */ smp_wmb(); only in patch2: unchanged: --- linux-6.2.0.orig/arch/arm64/kvm/hyp/pgtable.c +++ linux-6.2.0/arch/arm64/kvm/hyp/pgtable.c @@ -58,6 +58,7 @@ struct kvm_pgtable_walk_data { struct kvm_pgtable_walker *walker; + u64 start; u64 addr; u64 end; }; @@ -182,6 +183,7 @@ .old = READ_ONCE(*ptep), .arg = data->walker->arg, .mm_ops = mm_ops, + .start = data->start, .addr = data->addr, .end = data->end, .level = level, @@ -271,6 +273,7 @@ struct kvm_pgtable_walker *walker) { struct kvm_pgtable_walk_data walk_data = { + .start = ALIGN_DOWN(addr, PAGE_SIZE), .addr = ALIGN_DOWN(addr, PAGE_SIZE), .end = PAGE_ALIGN(walk_data.addr + size), .walker = walker, @@ -770,20 +773,43 @@ return !(pte & KVM_PTE_LEAF_ATTR_HI_S2_XN); } +static u64 stage2_map_walker_phys_addr(const struct kvm_pgtable_visit_ctx *ctx, + const struct stage2_map_data *data) +{ + u64 phys = data->phys; + + /* + * Stage-2 walks to update ownership data are communicated to the map + * walker using an invalid PA. Avoid offsetting an already invalid PA, + * which could overflow and make the address valid again. + */ + if (!kvm_phys_is_valid(phys)) + return phys; + + /* + * Otherwise, work out the correct PA based on how far the walk has + * gotten. + */ + return phys + (ctx->addr - ctx->start); +} + static bool stage2_leaf_mapping_allowed(const struct kvm_pgtable_visit_ctx *ctx, struct stage2_map_data *data) { + u64 phys = stage2_map_walker_phys_addr(ctx, data); + if (data->force_pte && (ctx->level < (KVM_PGTABLE_MAX_LEVELS - 1))) return false; - return kvm_block_mapping_supported(ctx, data->phys); + return kvm_block_mapping_supported(ctx, phys); } static int stage2_map_walker_try_leaf(const struct kvm_pgtable_visit_ctx *ctx, struct stage2_map_data *data) { kvm_pte_t new; - u64 granule = kvm_granule_size(ctx->level), phys = data->phys; + u64 phys = stage2_map_walker_phys_addr(ctx, data); + u64 granule = kvm_granule_size(ctx->level); struct kvm_pgtable *pgt = data->mmu->pgt; struct kvm_pgtable_mm_ops *mm_ops = ctx->mm_ops; @@ -817,8 +843,6 @@ stage2_make_pte(ctx, new); - if (kvm_phys_is_valid(phys)) - data->phys += granule; return 0; } only in patch2: unchanged: --- linux-6.2.0.orig/arch/ia64/Kconfig +++ linux-6.2.0/arch/ia64/Kconfig @@ -9,6 +9,7 @@ config IA64 bool select ARCH_BINFMT_ELF_EXTRA_PHDRS + select ARCH_HAS_CPU_FINALIZE_INIT select ARCH_HAS_DMA_MARK_CLEAN select ARCH_HAS_STRNCPY_FROM_USER select ARCH_HAS_STRNLEN_USER only in patch2: unchanged: --- linux-6.2.0.orig/arch/ia64/kernel/setup.c +++ linux-6.2.0/arch/ia64/kernel/setup.c @@ -1067,8 +1067,7 @@ } } -void __init -check_bugs (void) +void __init arch_cpu_finalize_init(void) { ia64_patch_mckinley_e9((unsigned long) __start___mckinley_e9_bundles, (unsigned long) __end___mckinley_e9_bundles); only in patch2: unchanged: --- linux-6.2.0.orig/arch/m68k/Kconfig +++ linux-6.2.0/arch/m68k/Kconfig @@ -4,6 +4,7 @@ default y select ARCH_32BIT_OFF_T select ARCH_HAS_BINFMT_FLAT + select ARCH_HAS_CPU_FINALIZE_INIT if MMU select ARCH_HAS_CURRENT_STACK_POINTER select ARCH_HAS_DMA_PREP_COHERENT if HAS_DMA && MMU && !COLDFIRE select ARCH_HAS_SYNC_DMA_FOR_DEVICE if HAS_DMA only in patch2: unchanged: --- linux-6.2.0.orig/arch/m68k/kernel/signal.c +++ linux-6.2.0/arch/m68k/kernel/signal.c @@ -858,11 +858,17 @@ } static inline void __user * -get_sigframe(struct ksignal *ksig, size_t frame_size) +get_sigframe(struct ksignal *ksig, struct pt_regs *tregs, size_t frame_size) { unsigned long usp = sigsp(rdusp(), ksig); + unsigned long gap = 0; - return (void __user *)((usp - frame_size) & -8UL); + if (CPU_IS_020_OR_030 && tregs->format == 0xb) { + /* USP is unreliable so use worst-case value */ + gap = 256; + } + + return (void __user *)((usp - gap - frame_size) & -8UL); } static int setup_frame(struct ksignal *ksig, sigset_t *set, @@ -880,7 +886,7 @@ return -EFAULT; } - frame = get_sigframe(ksig, sizeof(*frame) + fsize); + frame = get_sigframe(ksig, tregs, sizeof(*frame) + fsize); if (fsize) err |= copy_to_user (frame + 1, regs + 1, fsize); @@ -952,7 +958,7 @@ return -EFAULT; } - frame = get_sigframe(ksig, sizeof(*frame)); + frame = get_sigframe(ksig, tregs, sizeof(*frame)); if (fsize) err |= copy_to_user (&frame->uc.uc_extra, regs + 1, fsize); only in patch2: unchanged: --- linux-6.2.0.orig/arch/mips/include/asm/bugs.h +++ linux-6.2.0/arch/mips/include/asm/bugs.h @@ -1,17 +1,11 @@ /* SPDX-License-Identifier: GPL-2.0 */ /* - * This is included by init/main.c to check for architecture-dependent bugs. - * * Copyright (C) 2007 Maciej W. Rozycki - * - * Needs: - * void check_bugs(void); */ #ifndef _ASM_BUGS_H #define _ASM_BUGS_H #include -#include #include #include @@ -30,17 +24,6 @@ check_bugs64_early(); } -static inline void check_bugs(void) -{ - unsigned int cpu = smp_processor_id(); - - cpu_data[cpu].udelay_val = loops_per_jiffy; - check_bugs32(); - - if (IS_ENABLED(CONFIG_CPU_R4X00_BUGS64)) - check_bugs64(); -} - static inline int r4k_daddiu_bug(void) { if (!IS_ENABLED(CONFIG_CPU_R4X00_BUGS64)) only in patch2: unchanged: --- linux-6.2.0.orig/arch/mips/kernel/setup.c +++ linux-6.2.0/arch/mips/kernel/setup.c @@ -11,6 +11,8 @@ * Copyright (C) 2000, 2001, 2002, 2007 Maciej W. Rozycki */ #include +#include +#include #include #include #include @@ -839,3 +841,14 @@ } early_param("nocoherentio", setnocoherentio); #endif + +void __init arch_cpu_finalize_init(void) +{ + unsigned int cpu = smp_processor_id(); + + cpu_data[cpu].udelay_val = loops_per_jiffy; + check_bugs32(); + + if (IS_ENABLED(CONFIG_CPU_R4X00_BUGS64)) + check_bugs64(); +} only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/Kconfig +++ linux-6.2.0/arch/parisc/Kconfig @@ -129,6 +129,10 @@ config STACKTRACE_SUPPORT def_bool y +config LOCKDEP_SUPPORT + bool + default y + config ISA_DMA_API bool only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/include/asm/cacheflush.h +++ linux-6.2.0/arch/parisc/include/asm/cacheflush.h @@ -48,6 +48,10 @@ #define flush_dcache_mmap_lock(mapping) xa_lock_irq(&mapping->i_pages) #define flush_dcache_mmap_unlock(mapping) xa_unlock_irq(&mapping->i_pages) +#define flush_dcache_mmap_lock_irqsave(mapping, flags) \ + xa_lock_irqsave(&mapping->i_pages, flags) +#define flush_dcache_mmap_unlock_irqrestore(mapping, flags) \ + xa_unlock_irqrestore(&mapping->i_pages, flags) #define flush_icache_page(vma,page) do { \ flush_kernel_dcache_page_addr(page_address(page)); \ only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/include/asm/pdc.h +++ linux-6.2.0/arch/parisc/include/asm/pdc.h @@ -80,6 +80,7 @@ int pdc_do_reset(void); int pdc_soft_power_info(unsigned long *power_reg); int pdc_soft_power_button(int sw_control); +int pdc_soft_power_button_panic(int sw_control); void pdc_io_reset(void); void pdc_io_reset_devices(void); int pdc_iodc_getc(void); only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/kernel/alternative.c +++ linux-6.2.0/arch/parisc/kernel/alternative.c @@ -25,7 +25,7 @@ { struct alt_instr *entry; int index = 0, applied = 0; - int num_cpus = num_online_cpus(); + int num_cpus = num_present_cpus(); u16 cond_check; cond_check = ALT_COND_ALWAYS | only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/kernel/cache.c +++ linux-6.2.0/arch/parisc/kernel/cache.c @@ -399,6 +399,7 @@ unsigned long offset; unsigned long addr, old_addr = 0; unsigned long count = 0; + unsigned long flags; pgoff_t pgoff; if (mapping && !mapping_mapped(mapping)) { @@ -420,7 +421,7 @@ * to flush one address here for them all to become coherent * on machines that support equivalent aliasing */ - flush_dcache_mmap_lock(mapping); + flush_dcache_mmap_lock_irqsave(mapping, flags); vma_interval_tree_foreach(mpnt, &mapping->i_mmap, pgoff, pgoff) { offset = (pgoff - mpnt->vm_pgoff) << PAGE_SHIFT; addr = mpnt->vm_start + offset; @@ -460,7 +461,7 @@ } WARN_ON(++count == 4096); } - flush_dcache_mmap_unlock(mapping); + flush_dcache_mmap_unlock_irqrestore(mapping, flags); } EXPORT_SYMBOL(flush_dcache_page); only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/kernel/firmware.c +++ linux-6.2.0/arch/parisc/kernel/firmware.c @@ -1232,15 +1232,18 @@ } /* - * pdc_soft_power_button - Control the soft power button behaviour - * @sw_control: 0 for hardware control, 1 for software control + * pdc_soft_power_button{_panic} - Control the soft power button behaviour + * @sw_control: 0 for hardware control, 1 for software control * * * This PDC function places the soft power button under software or * hardware control. - * Under software control the OS may control to when to allow to shut - * down the system. Under hardware control pressing the power button + * Under software control the OS may control to when to allow to shut + * down the system. Under hardware control pressing the power button * powers off the system immediately. + * + * The _panic version relies on spin_trylock to prevent deadlock + * on panic path. */ int pdc_soft_power_button(int sw_control) { @@ -1251,6 +1254,22 @@ retval = mem_pdc_call(PDC_SOFT_POWER, PDC_SOFT_POWER_ENABLE, __pa(pdc_result), sw_control); spin_unlock_irqrestore(&pdc_lock, flags); + return retval; +} + +int pdc_soft_power_button_panic(int sw_control) +{ + int retval; + unsigned long flags; + + if (!spin_trylock_irqsave(&pdc_lock, flags)) { + pr_emerg("Couldn't enable soft power button\n"); + return -EBUSY; /* ignored by the panic notifier */ + } + + retval = mem_pdc_call(PDC_SOFT_POWER, PDC_SOFT_POWER_ENABLE, __pa(pdc_result), sw_control); + spin_unlock_irqrestore(&pdc_lock, flags); + return retval; } only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/kernel/process.c +++ linux-6.2.0/arch/parisc/kernel/process.c @@ -122,13 +122,18 @@ /* It seems we have no way to power the system off via * software. The user has to press the button himself. */ - printk(KERN_EMERG "System shut down completed.\n" - "Please power this system off now."); + printk("Power off or press RETURN to reboot.\n"); /* prevent soft lockup/stalled CPU messages for endless loop. */ rcu_sysrq_start(); lockup_detector_soft_poweroff(); - for (;;); + while (1) { + /* reboot if user presses RETURN key */ + if (pdc_iodc_getc() == 13) { + printk("Rebooting...\n"); + machine_restart(NULL); + } + } } void (*pm_power_off)(void); only in patch2: unchanged: --- linux-6.2.0.orig/arch/parisc/kernel/traps.c +++ linux-6.2.0/arch/parisc/kernel/traps.c @@ -291,19 +291,19 @@ } #ifdef CONFIG_KPROBES - if (unlikely(iir == PARISC_KPROBES_BREAK_INSN)) { + if (unlikely(iir == PARISC_KPROBES_BREAK_INSN && !user_mode(regs))) { parisc_kprobe_break_handler(regs); return; } - if (unlikely(iir == PARISC_KPROBES_BREAK_INSN2)) { + if (unlikely(iir == PARISC_KPROBES_BREAK_INSN2 && !user_mode(regs))) { parisc_kprobe_ss_handler(regs); return; } #endif #ifdef CONFIG_KGDB - if (unlikely(iir == PARISC_KGDB_COMPILED_BREAK_INSN || - iir == PARISC_KGDB_BREAK_INSN)) { + if (unlikely((iir == PARISC_KGDB_COMPILED_BREAK_INSN || + iir == PARISC_KGDB_BREAK_INSN)) && !user_mode(regs)) { kgdb_handle_exception(9, SIGTRAP, 0, regs); return; } only in patch2: unchanged: --- linux-6.2.0.orig/arch/powerpc/kernel/dma-iommu.c +++ linux-6.2.0/arch/powerpc/kernel/dma-iommu.c @@ -144,7 +144,7 @@ /* We support DMA to/from any memory page via the iommu */ int dma_iommu_dma_supported(struct device *dev, u64 mask) { - struct iommu_table *tbl = get_iommu_table_base(dev); + struct iommu_table *tbl; if (dev_is_pci(dev) && dma_iommu_bypass_supported(dev, mask)) { /* @@ -162,6 +162,8 @@ return 1; } + tbl = get_iommu_table_base(dev); + if (!tbl) { dev_err(dev, "Warning: IOMMU dma not supported: mask 0x%08llx, table unavailable\n", mask); return 0; only in patch2: unchanged: --- linux-6.2.0.orig/arch/powerpc/mm/book3s64/radix_pgtable.c +++ linux-6.2.0/arch/powerpc/mm/book3s64/radix_pgtable.c @@ -1040,8 +1040,8 @@ pte_t entry, unsigned long address, int psize) { struct mm_struct *mm = vma->vm_mm; - unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_ACCESSED | - _PAGE_RW | _PAGE_EXEC); + unsigned long set = pte_val(entry) & (_PAGE_DIRTY | _PAGE_SOFT_DIRTY | + _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC); unsigned long change = pte_val(entry) ^ pte_val(*ptep); /* only in patch2: unchanged: --- linux-6.2.0.orig/arch/powerpc/platforms/pseries/iommu.c +++ linux-6.2.0/arch/powerpc/platforms/pseries/iommu.c @@ -85,19 +85,24 @@ static void iommu_pseries_free_group(struct iommu_table_group *table_group, const char *node_name) { - struct iommu_table *tbl; - if (!table_group) return; - tbl = table_group->tables[0]; #ifdef CONFIG_IOMMU_API if (table_group->group) { iommu_group_put(table_group->group); BUG_ON(table_group->group); } #endif - iommu_tce_table_put(tbl); + + /* Default DMA window table is at index 0, while DDW at 1. SR-IOV + * adapters only have table on index 1. + */ + if (table_group->tables[0]) + iommu_tce_table_put(table_group->tables[0]); + + if (table_group->tables[1]) + iommu_tce_table_put(table_group->tables[1]); kfree(table_group); } only in patch2: unchanged: --- linux-6.2.0.orig/arch/riscv/kernel/Makefile +++ linux-6.2.0/arch/riscv/kernel/Makefile @@ -9,6 +9,7 @@ CFLAGS_REMOVE_sbi.o = $(CC_FLAGS_FTRACE) endif CFLAGS_syscall_table.o += $(call cc-option,-Wno-override-init,) +CFLAGS_compat_syscall_table.o += $(call cc-option,-Wno-override-init,) ifdef CONFIG_KEXEC AFLAGS_kexec_relocate.o := -mcmodel=medany $(call cc-option,-mno-relax) only in patch2: unchanged: --- linux-6.2.0.orig/arch/riscv/kernel/probes/Makefile +++ linux-6.2.0/arch/riscv/kernel/probes/Makefile @@ -4,3 +4,5 @@ obj-$(CONFIG_KPROBES_ON_FTRACE) += ftrace.o obj-$(CONFIG_UPROBES) += uprobes.o decode-insn.o simulate-insn.o CFLAGS_REMOVE_simulate-insn.o = $(CC_FLAGS_FTRACE) +CFLAGS_REMOVE_rethook.o = $(CC_FLAGS_FTRACE) +CFLAGS_REMOVE_rethook_trampoline.o = $(CC_FLAGS_FTRACE) only in patch2: unchanged: --- linux-6.2.0.orig/arch/riscv/mm/pageattr.c +++ linux-6.2.0/arch/riscv/mm/pageattr.c @@ -217,18 +217,26 @@ pgd = pgd_offset_k(addr); if (!pgd_present(*pgd)) return false; + if (pgd_leaf(*pgd)) + return true; p4d = p4d_offset(pgd, addr); if (!p4d_present(*p4d)) return false; + if (p4d_leaf(*p4d)) + return true; pud = pud_offset(p4d, addr); if (!pud_present(*pud)) return false; + if (pud_leaf(*pud)) + return true; pmd = pmd_offset(pud, addr); if (!pmd_present(*pmd)) return false; + if (pmd_leaf(*pmd)) + return true; pte = pte_offset_kernel(pmd, addr); return pte_present(*pte); only in patch2: unchanged: --- linux-6.2.0.orig/arch/s390/crypto/chacha-glue.c +++ linux-6.2.0/arch/s390/crypto/chacha-glue.c @@ -82,7 +82,7 @@ * it cannot handle a block of data or less, but otherwise * it can handle data of arbitrary size */ - if (bytes <= CHACHA_BLOCK_SIZE || nrounds != 20) + if (bytes <= CHACHA_BLOCK_SIZE || nrounds != 20 || !MACHINE_HAS_VX) chacha_crypt_generic(state, dst, src, bytes, nrounds); else chacha20_crypt_s390(state, dst, src, bytes, only in patch2: unchanged: --- linux-6.2.0.orig/arch/s390/kernel/Makefile +++ linux-6.2.0/arch/s390/kernel/Makefile @@ -10,6 +10,7 @@ # Do not trace early setup code CFLAGS_REMOVE_early.o = $(CC_FLAGS_FTRACE) +CFLAGS_REMOVE_rethook.o = $(CC_FLAGS_FTRACE) endif only in patch2: unchanged: --- linux-6.2.0.orig/arch/s390/kernel/uv.c +++ linux-6.2.0/arch/s390/kernel/uv.c @@ -192,21 +192,10 @@ return res; } -static int make_secure_pte(pte_t *ptep, unsigned long addr, - struct page *exp_page, struct uv_cb_header *uvcb) +static int make_page_secure(struct page *page, struct uv_cb_header *uvcb) { - pte_t entry = READ_ONCE(*ptep); - struct page *page; int expected, cc = 0; - if (!pte_present(entry)) - return -ENXIO; - if (pte_val(entry) & _PAGE_INVALID) - return -ENXIO; - - page = pte_page(entry); - if (page != exp_page) - return -ENXIO; if (PageWriteback(page)) return -EAGAIN; expected = expected_page_refs(page); @@ -304,17 +293,18 @@ goto out; rc = -ENXIO; - page = follow_page(vma, uaddr, FOLL_WRITE); - if (IS_ERR_OR_NULL(page)) - goto out; - - lock_page(page); ptep = get_locked_pte(gmap->mm, uaddr, &ptelock); - if (should_export_before_import(uvcb, gmap->mm)) - uv_convert_from_secure(page_to_phys(page)); - rc = make_secure_pte(ptep, uaddr, page, uvcb); + if (pte_present(*ptep) && !(pte_val(*ptep) & _PAGE_INVALID) && pte_write(*ptep)) { + page = pte_page(*ptep); + rc = -EAGAIN; + if (trylock_page(page)) { + if (should_export_before_import(uvcb, gmap->mm)) + uv_convert_from_secure(page_to_phys(page)); + rc = make_page_secure(page, uvcb); + unlock_page(page); + } + } pte_unmap_unlock(ptep, ptelock); - unlock_page(page); out: mmap_read_unlock(gmap->mm); only in patch2: unchanged: --- linux-6.2.0.orig/arch/s390/kvm/pv.c +++ linux-6.2.0/arch/s390/kvm/pv.c @@ -314,6 +314,11 @@ */ if (kvm->arch.pv.set_aside) return -EINVAL; + + /* Guest with segment type ASCE, refuse to destroy asynchronously */ + if ((kvm->arch.gmap->asce & _ASCE_TYPE_MASK) == _ASCE_TYPE_SEGMENT) + return -EINVAL; + priv = kzalloc(sizeof(*priv), GFP_KERNEL); if (!priv) return -ENOMEM; only in patch2: unchanged: --- linux-6.2.0.orig/arch/s390/mm/gmap.c +++ linux-6.2.0/arch/s390/mm/gmap.c @@ -2830,6 +2830,9 @@ * s390_replace_asce - Try to replace the current ASCE of a gmap with a copy * @gmap: the gmap whose ASCE needs to be replaced * + * If the ASCE is a SEGMENT type then this function will return -EINVAL, + * otherwise the pointers in the host_to_guest radix tree will keep pointing + * to the wrong pages, causing use-after-free and memory corruption. * If the allocation of the new top level page table fails, the ASCE is not * replaced. * In any case, the old ASCE is always removed from the gmap CRST list. @@ -2844,6 +2847,10 @@ s390_unlist_old_asce(gmap); + /* Replacing segment type ASCEs would cause serious issues */ + if ((gmap->asce & _ASCE_TYPE_MASK) == _ASCE_TYPE_SEGMENT) + return -EINVAL; + page = alloc_pages(GFP_KERNEL_ACCOUNT, CRST_ALLOC_ORDER); if (!page) return -ENOMEM; only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/Kconfig.debug +++ linux-6.2.0/arch/sh/Kconfig.debug @@ -15,7 +15,7 @@ config STACK_DEBUG bool "Check for stack overflows" - depends on DEBUG_KERNEL + depends on DEBUG_KERNEL && PRINTK help This option will cause messages to be printed if free stack space drops below a certain limit. Saying Y here will add overhead to only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/include/asm/processor.h +++ linux-6.2.0/arch/sh/include/asm/processor.h @@ -166,6 +166,8 @@ #define instruction_size(insn) (2) #endif +void select_idle_routine(void); + #endif /* __ASSEMBLY__ */ #include only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/kernel/head_32.S +++ linux-6.2.0/arch/sh/kernel/head_32.S @@ -64,7 +64,7 @@ ldc r0, r6_bank #endif -#ifdef CONFIG_OF_FLATTREE +#ifdef CONFIG_OF_EARLY_FLATTREE mov r4, r12 ! Store device tree blob pointer in r12 #endif @@ -315,7 +315,7 @@ 10: #endif -#ifdef CONFIG_OF_FLATTREE +#ifdef CONFIG_OF_EARLY_FLATTREE mov.l 8f, r0 ! Make flat device tree available early. jsr @r0 mov r12, r4 @@ -346,7 +346,7 @@ 5: .long start_kernel 6: .long cpu_init 7: .long init_thread_union -#if defined(CONFIG_OF_FLATTREE) +#if defined(CONFIG_OF_EARLY_FLATTREE) 8: .long sh_fdt_init #endif only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/kernel/idle.c +++ linux-6.2.0/arch/sh/kernel/idle.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/kernel/nmi_debug.c +++ linux-6.2.0/arch/sh/kernel/nmi_debug.c @@ -49,7 +49,7 @@ register_die_notifier(&nmi_debug_nb); if (*str != '=') - return 0; + return 1; for (p = str + 1; *p; p = sep + 1) { sep = strchr(p, ','); @@ -70,6 +70,6 @@ break; } - return 0; + return 1; } __setup("nmi_debug", nmi_debug_setup); only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/kernel/setup.c +++ linux-6.2.0/arch/sh/kernel/setup.c @@ -43,6 +43,7 @@ #include #include #include +#include #include #include @@ -244,7 +245,7 @@ { } -#ifdef CONFIG_OF_FLATTREE +#ifdef CONFIG_OF_EARLY_FLATTREE void __ref sh_fdt_init(phys_addr_t dt_phys) { static int done = 0; @@ -326,7 +327,7 @@ /* Let earlyprintk output early console messages */ sh_early_platform_driver_probe("earlyprintk", 1, 1); -#ifdef CONFIG_OF_FLATTREE +#ifdef CONFIG_OF_EARLY_FLATTREE #ifdef CONFIG_USE_BUILTIN_DTB unflatten_and_copy_device_tree(); #else @@ -354,3 +355,57 @@ { return sh_mv.mv_mode_pins() & pin; } + +void __init arch_cpu_finalize_init(void) +{ + char *p = &init_utsname()->machine[2]; /* "sh" */ + + select_idle_routine(); + + current_cpu_data.loops_per_jiffy = loops_per_jiffy; + + switch (current_cpu_data.family) { + case CPU_FAMILY_SH2: + *p++ = '2'; + break; + case CPU_FAMILY_SH2A: + *p++ = '2'; + *p++ = 'a'; + break; + case CPU_FAMILY_SH3: + *p++ = '3'; + break; + case CPU_FAMILY_SH4: + *p++ = '4'; + break; + case CPU_FAMILY_SH4A: + *p++ = '4'; + *p++ = 'a'; + break; + case CPU_FAMILY_SH4AL_DSP: + *p++ = '4'; + *p++ = 'a'; + *p++ = 'l'; + *p++ = '-'; + *p++ = 'd'; + *p++ = 's'; + *p++ = 'p'; + break; + case CPU_FAMILY_UNKNOWN: + /* + * Specifically use CPU_FAMILY_UNKNOWN rather than + * default:, so we're able to have the compiler whine + * about unhandled enumerations. + */ + break; + } + + pr_info("CPU: %s\n", get_cpu_subtype(¤t_cpu_data)); + +#ifndef __LITTLE_ENDIAN__ + /* 'eb' means 'Endian Big' */ + *p++ = 'e'; + *p++ = 'b'; +#endif + *p = '\0'; +} only in patch2: unchanged: --- linux-6.2.0.orig/arch/sh/math-emu/sfp-util.h +++ linux-6.2.0/arch/sh/math-emu/sfp-util.h @@ -67,7 +67,3 @@ } while (0) #define abort() return 0 - -#define __BYTE_ORDER __LITTLE_ENDIAN - - only in patch2: unchanged: --- linux-6.2.0.orig/arch/sparc/kernel/setup_32.c +++ linux-6.2.0/arch/sparc/kernel/setup_32.c @@ -412,3 +412,10 @@ } subsys_initcall(topology_init); + +#if defined(CONFIG_SPARC32) && !defined(CONFIG_SMP) +void __init arch_cpu_finalize_init(void) +{ + cpu_data(0).udelay_val = loops_per_jiffy; +} +#endif only in patch2: unchanged: --- linux-6.2.0.orig/arch/um/Kconfig +++ linux-6.2.0/arch/um/Kconfig @@ -6,6 +6,7 @@ bool default y select ARCH_EPHEMERAL_INODES + select ARCH_HAS_CPU_FINALIZE_INIT select ARCH_HAS_FORTIFY_SOURCE select ARCH_HAS_GCOV_PROFILE_ALL select ARCH_HAS_KCOV only in patch2: unchanged: --- linux-6.2.0.orig/arch/um/kernel/um_arch.c +++ linux-6.2.0/arch/um/kernel/um_arch.c @@ -3,6 +3,7 @@ * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) */ +#include #include #include #include @@ -426,7 +427,7 @@ } } -void __init check_bugs(void) +void __init arch_cpu_finalize_init(void) { arch_check_bugs(); os_check_bugs(); only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/events/intel/uncore_snbep.c +++ linux-6.2.0/arch/x86/events/intel/uncore_snbep.c @@ -6166,6 +6166,7 @@ }; #define UNCORE_SPR_NUM_UNCORE_TYPES 12 +#define UNCORE_SPR_CHA 0 #define UNCORE_SPR_IIO 1 #define UNCORE_SPR_IMC 6 @@ -6414,12 +6415,22 @@ return max + 1; } +#define SPR_MSR_UNC_CBO_CONFIG 0x2FFE + void spr_uncore_cpu_init(void) { + struct intel_uncore_type *type; + u64 num_cbo; + uncore_msr_uncores = uncore_get_uncores(UNCORE_ACCESS_MSR, UNCORE_SPR_MSR_EXTRA_UNCORES, spr_msr_uncores); + type = uncore_find_type_by_id(uncore_msr_uncores, UNCORE_SPR_CHA); + if (type) { + rdmsrl(SPR_MSR_UNC_CBO_CONFIG, num_cbo); + type->num_boxes = num_cbo; + } spr_uncore_iio_free_running.num_boxes = uncore_type_max_boxes(uncore_msr_uncores, UNCORE_SPR_IIO); } only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/include/asm/bugs.h +++ linux-6.2.0/arch/x86/include/asm/bugs.h @@ -4,8 +4,6 @@ #include -extern void check_bugs(void); - #if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32) int ppro_with_ram_bug(void); #else only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/include/asm/cpu.h +++ linux-6.2.0/arch/x86/include/asm/cpu.h @@ -98,4 +98,6 @@ int intel_find_matching_signature(void *mc, unsigned int csig, int cpf); int intel_microcode_sanity_check(void *mc, bool print_err, int hdr_type); +extern struct cpumask cpus_stop_mask; + #endif /* _ASM_X86_CPU_H */ only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/include/asm/cpufeatures.h +++ linux-6.2.0/arch/x86/include/asm/cpufeatures.h @@ -467,5 +467,6 @@ #define X86_BUG_RETBLEED X86_BUG(27) /* CPU is affected by RETBleed */ #define X86_BUG_EIBRS_PBRSB X86_BUG(28) /* EIBRS is vulnerable to Post Barrier RSB Predictions */ #define X86_BUG_SMT_RSB X86_BUG(29) /* CPU is vulnerable to Cross-Thread Return Address Predictions */ +#define X86_BUG_GDS X86_BUG(30) /* CPU is affected by Gather Data Sampling */ #endif /* _ASM_X86_CPUFEATURES_H */ only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/include/asm/fpu/api.h +++ linux-6.2.0/arch/x86/include/asm/fpu/api.h @@ -109,7 +109,7 @@ /* Boot, hotplug and resume */ extern void fpu__init_cpu(void); -extern void fpu__init_system(struct cpuinfo_x86 *c); +extern void fpu__init_system(void); extern void fpu__init_check_bugs(void); extern void fpu__resume_cpu(void); only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/include/asm/mem_encrypt.h +++ linux-6.2.0/arch/x86/include/asm/mem_encrypt.h @@ -17,6 +17,12 @@ #include +#ifdef CONFIG_X86_MEM_ENCRYPT +void __init mem_encrypt_init(void); +#else +static inline void mem_encrypt_init(void) { } +#endif + #ifdef CONFIG_AMD_MEM_ENCRYPT extern u64 sme_me_mask; @@ -86,9 +92,6 @@ #endif /* CONFIG_AMD_MEM_ENCRYPT */ -/* Architecture __weak replacement functions */ -void __init mem_encrypt_init(void); - void add_encrypt_protection_map(void); /* only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/include/asm/sigframe.h +++ linux-6.2.0/arch/x86/include/asm/sigframe.h @@ -85,6 +85,4 @@ #endif /* CONFIG_X86_64 */ -void __init init_sigframe_size(void); - #endif /* _ASM_X86_SIGFRAME_H */ only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/Makefile +++ linux-6.2.0/arch/x86/kernel/Makefile @@ -17,6 +17,7 @@ CFLAGS_REMOVE_early_printk.o = -pg CFLAGS_REMOVE_head64.o = -pg CFLAGS_REMOVE_sev.o = -pg +CFLAGS_REMOVE_rethook.o = -pg endif KASAN_SANITIZE_head$(BITS).o := n only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/amd_nb.c +++ linux-6.2.0/arch/x86/kernel/amd_nb.c @@ -36,6 +36,7 @@ #define PCI_DEVICE_ID_AMD_19H_M50H_DF_F4 0x166e #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 /* Protect the PCI config register pairs used for SMN. */ static DEFINE_MUTEX(smn_mutex); @@ -79,6 +80,7 @@ { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M50H_DF_F3) }, { 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) }, {} }; only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/cpu/cpu.h +++ linux-6.2.0/arch/x86/kernel/cpu/cpu.h @@ -79,9 +79,11 @@ extern void check_null_seg_clears_base(struct cpuinfo_x86 *c); unsigned int aperfmperf_get_khz(int cpu); +void cpu_select_mitigations(void); extern void x86_spec_ctrl_setup_ap(void); extern void update_srbds_msr(void); +extern void update_gds_msr(void); extern u64 x86_read_arch_cap_msr(void); only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/cpu/topology.c +++ linux-6.2.0/arch/x86/kernel/cpu/topology.c @@ -79,7 +79,7 @@ * initial apic id, which also represents 32-bit extended x2apic id. */ c->initial_apicid = edx; - smp_num_siblings = LEVEL_MAX_SIBLINGS(ebx); + smp_num_siblings = max_t(int, smp_num_siblings, LEVEL_MAX_SIBLINGS(ebx)); #endif return 0; } @@ -109,7 +109,8 @@ */ cpuid_count(leaf, SMT_LEVEL, &eax, &ebx, &ecx, &edx); c->initial_apicid = edx; - core_level_siblings = smp_num_siblings = LEVEL_MAX_SIBLINGS(ebx); + core_level_siblings = LEVEL_MAX_SIBLINGS(ebx); + smp_num_siblings = max_t(int, smp_num_siblings, LEVEL_MAX_SIBLINGS(ebx)); core_plus_mask_width = ht_mask_width = BITS_SHIFT_NEXT_LEVEL(eax); die_level_siblings = LEVEL_MAX_SIBLINGS(ebx); pkg_mask_width = die_plus_mask_width = BITS_SHIFT_NEXT_LEVEL(eax); only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/dumpstack.c +++ linux-6.2.0/arch/x86/kernel/dumpstack.c @@ -195,7 +195,6 @@ printk("%sCall Trace:\n", log_lvl); unwind_start(&state, task, regs, stack); - stack = stack ? : get_stack_pointer(task, regs); regs = unwind_get_entry_regs(&state, &partial); /* @@ -214,9 +213,13 @@ * - hardirq stack * - entry stack */ - for ( ; stack; stack = PTR_ALIGN(stack_info.next_sp, sizeof(long))) { + for (stack = stack ?: get_stack_pointer(task, regs); + stack; + stack = stack_info.next_sp) { const char *stack_name; + stack = PTR_ALIGN(stack, sizeof(long)); + if (get_stack_info(stack, task, &stack_info, &visit_mask)) { /* * We weren't on a valid stack. It's possible that only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/fpu/init.c +++ linux-6.2.0/arch/x86/kernel/fpu/init.c @@ -53,7 +53,7 @@ fpu__init_cpu_xstate(); } -static bool fpu__probe_without_cpuid(void) +static bool __init fpu__probe_without_cpuid(void) { unsigned long cr0; u16 fsw, fcw; @@ -71,7 +71,7 @@ return fsw == 0 && (fcw & 0x103f) == 0x003f; } -static void fpu__init_system_early_generic(struct cpuinfo_x86 *c) +static void __init fpu__init_system_early_generic(void) { if (!boot_cpu_has(X86_FEATURE_CPUID) && !test_bit(X86_FEATURE_FPU, (unsigned long *)cpu_caps_cleared)) { @@ -211,10 +211,10 @@ * Called on the boot CPU once per system bootup, to set up the initial * FPU state that is later cloned into all processes: */ -void __init fpu__init_system(struct cpuinfo_x86 *c) +void __init fpu__init_system(void) { fpstate_reset(¤t->thread.fpu); - fpu__init_system_early_generic(c); + fpu__init_system_early_generic(); /* * The FPU has to be operational for some of the only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kernel/process.c +++ linux-6.2.0/arch/x86/kernel/process.c @@ -744,15 +744,26 @@ } #endif +struct cpumask cpus_stop_mask; + void __noreturn stop_this_cpu(void *dummy) { + struct cpuinfo_x86 *c = this_cpu_ptr(&cpu_info); + unsigned int cpu = smp_processor_id(); + local_irq_disable(); + /* - * Remove this CPU: + * Remove this CPU from the online mask and disable it + * unconditionally. This might be redundant in case that the reboot + * vector was handled late and stop_other_cpus() sent an NMI. + * + * According to SDM and APM NMIs can be accepted even after soft + * disabling the local APIC. */ - set_cpu_online(smp_processor_id(), false); + set_cpu_online(cpu, false); disable_local_APIC(); - mcheck_cpu_clear(this_cpu_ptr(&cpu_info)); + mcheck_cpu_clear(c); /* * Use wbinvd on processors that support SME. This provides support @@ -766,8 +777,17 @@ * Test the CPUID bit directly because the machine might've cleared * X86_FEATURE_SME due to cmdline options. */ - if (cpuid_eax(0x8000001f) & BIT(0)) + if (c->extended_cpuid_level >= 0x8000001f && (cpuid_eax(0x8000001f) & BIT(0))) native_wbinvd(); + + /* + * This brings a cache line back and dirties it, but + * native_stop_other_cpus() will overwrite cpus_stop_mask after it + * observed that all CPUs reported stop. This write will invalidate + * the related cache line on this CPU. + */ + cpumask_clear_cpu(cpu, &cpus_stop_mask); + for (;;) { /* * Use native_halt() so that memory contents don't change only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/kvm_cache_regs.h +++ linux-6.2.0/arch/x86/kvm/kvm_cache_regs.h @@ -4,7 +4,7 @@ #include -#define KVM_POSSIBLE_CR0_GUEST_BITS X86_CR0_TS +#define KVM_POSSIBLE_CR0_GUEST_BITS (X86_CR0_TS | X86_CR0_WP) #define KVM_POSSIBLE_CR4_GUEST_BITS \ (X86_CR4_PVI | X86_CR4_DE | X86_CR4_PCE | X86_CR4_OSFXSR \ | X86_CR4_OSXMMEXCPT | X86_CR4_PGE | X86_CR4_TSD | X86_CR4_FSGSBASE) only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/mmu.h +++ linux-6.2.0/arch/x86/kvm/mmu.h @@ -113,6 +113,8 @@ bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu); int kvm_handle_page_fault(struct kvm_vcpu *vcpu, u64 error_code, u64 fault_address, char *insn, int insn_len); +void __kvm_mmu_refresh_passthrough_bits(struct kvm_vcpu *vcpu, + struct kvm_mmu *mmu); int kvm_mmu_load(struct kvm_vcpu *vcpu); void kvm_mmu_unload(struct kvm_vcpu *vcpu); @@ -153,6 +155,24 @@ vcpu->arch.mmu->root_role.level); } +static inline void kvm_mmu_refresh_passthrough_bits(struct kvm_vcpu *vcpu, + struct kvm_mmu *mmu) +{ + /* + * When EPT is enabled, KVM may passthrough CR0.WP to the guest, i.e. + * @mmu's snapshot of CR0.WP and thus all related paging metadata may + * be stale. Refresh CR0.WP and the metadata on-demand when checking + * for permission faults. Exempt nested MMUs, i.e. MMUs for shadowing + * nEPT and nNPT, as CR0.WP is ignored in both cases. Note, KVM does + * need to refresh nested_mmu, a.k.a. the walker used to translate L2 + * GVAs to GPAs, as that "MMU" needs to honor L2's CR0.WP. + */ + if (!tdp_enabled || mmu == &vcpu->arch.guest_mmu) + return; + + __kvm_mmu_refresh_passthrough_bits(vcpu, mmu); +} + /* * Check if a given access (described through the I/D, W/R and U/S bits of a * page fault error code pfec) causes a permission fault with the given PTE @@ -184,8 +204,12 @@ u64 implicit_access = access & PFERR_IMPLICIT_ACCESS; bool not_smap = ((rflags & X86_EFLAGS_AC) | implicit_access) == X86_EFLAGS_AC; int index = (pfec + (not_smap << PFERR_RSVD_BIT)) >> 1; - bool fault = (mmu->permissions[index] >> pte_access) & 1; u32 errcode = PFERR_PRESENT_MASK; + bool fault; + + kvm_mmu_refresh_passthrough_bits(vcpu, mmu); + + fault = (mmu->permissions[index] >> pte_access) & 1; WARN_ON(pfec & (PFERR_PK_MASK | PFERR_RSVD_MASK)); if (unlikely(mmu->pkru_mask)) { @@ -230,14 +254,14 @@ } #ifdef CONFIG_X86_64 -static inline bool is_tdp_mmu_enabled(struct kvm *kvm) { return kvm->arch.tdp_mmu_enabled; } +extern bool tdp_mmu_enabled; #else -static inline bool is_tdp_mmu_enabled(struct kvm *kvm) { return false; } +#define tdp_mmu_enabled false #endif static inline bool kvm_memslots_have_rmaps(struct kvm *kvm) { - return !is_tdp_mmu_enabled(kvm) || kvm_shadow_root_allocated(kvm); + return !tdp_mmu_enabled || kvm_shadow_root_allocated(kvm); } static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level) only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/mmu/mmu.c +++ linux-6.2.0/arch/x86/kvm/mmu/mmu.c @@ -99,6 +99,13 @@ */ bool tdp_enabled = false; +bool __ro_after_init tdp_mmu_allowed; + +#ifdef CONFIG_X86_64 +bool __read_mostly tdp_mmu_enabled = true; +module_param_named(tdp_mmu, tdp_mmu_enabled, bool, 0444); +#endif + static int max_huge_page_level __read_mostly; static int tdp_root_level __read_mostly; static int max_tdp_level __read_mostly; @@ -233,6 +240,20 @@ return regs; } +static unsigned long get_guest_cr3(struct kvm_vcpu *vcpu) +{ + return kvm_read_cr3(vcpu); +} + +static inline unsigned long kvm_mmu_get_guest_pgd(struct kvm_vcpu *vcpu, + struct kvm_mmu *mmu) +{ + if (IS_ENABLED(CONFIG_RETPOLINE) && mmu->get_guest_pgd == get_guest_cr3) + return kvm_read_cr3(vcpu); + + return mmu->get_guest_pgd(vcpu); +} + static inline bool kvm_available_flush_tlb_with_range(void) { return kvm_x86_ops.tlb_remote_flush_with_range; @@ -1279,7 +1300,7 @@ { struct kvm_rmap_head *rmap_head; - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) kvm_tdp_mmu_clear_dirty_pt_masked(kvm, slot, slot->base_gfn + gfn_offset, mask, true); @@ -1312,7 +1333,7 @@ { struct kvm_rmap_head *rmap_head; - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) kvm_tdp_mmu_clear_dirty_pt_masked(kvm, slot, slot->base_gfn + gfn_offset, mask, false); @@ -1395,7 +1416,7 @@ } } - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) write_protected |= kvm_tdp_mmu_write_protect_gfn(kvm, slot, gfn, min_level); @@ -1558,7 +1579,7 @@ if (kvm_memslots_have_rmaps(kvm)) flush = kvm_handle_gfn_range(kvm, range, kvm_zap_rmap); - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) flush = kvm_tdp_mmu_unmap_gfn_range(kvm, range, flush); return flush; @@ -1571,7 +1592,7 @@ if (kvm_memslots_have_rmaps(kvm)) flush = kvm_handle_gfn_range(kvm, range, kvm_set_pte_rmap); - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) flush |= kvm_tdp_mmu_set_spte_gfn(kvm, range); return flush; @@ -1646,7 +1667,7 @@ if (kvm_memslots_have_rmaps(kvm)) young = kvm_handle_gfn_range(kvm, range, kvm_age_rmap); - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) young |= kvm_tdp_mmu_age_gfn_range(kvm, range); return young; @@ -1659,7 +1680,7 @@ if (kvm_memslots_have_rmaps(kvm)) young = kvm_handle_gfn_range(kvm, range, kvm_test_age_rmap); - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) young |= kvm_tdp_mmu_test_age_gfn(kvm, range); return young; @@ -1921,7 +1942,7 @@ return true; /* TDP MMU pages do not use the MMU generation. */ - return !sp->tdp_mmu_page && + return !is_tdp_mmu_page(sp) && unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen); } @@ -3596,7 +3617,7 @@ if (r < 0) goto out_unlock; - if (is_tdp_mmu_enabled(vcpu->kvm)) { + if (tdp_mmu_enabled) { root = kvm_tdp_mmu_get_vcpu_root_hpa(vcpu); mmu->root.hpa = root; } else if (shadow_root_level >= PT64_ROOT_4LEVEL) { @@ -3699,7 +3720,7 @@ int quadrant, i, r; hpa_t root; - root_pgd = mmu->get_guest_pgd(vcpu); + root_pgd = kvm_mmu_get_guest_pgd(vcpu, mmu); root_gfn = root_pgd >> PAGE_SHIFT; if (mmu_check_root(vcpu, root_gfn)) @@ -4149,7 +4170,7 @@ arch.token = alloc_apf_token(vcpu); arch.gfn = gfn; arch.direct_map = vcpu->arch.mmu->root_role.direct; - arch.cr3 = vcpu->arch.mmu->get_guest_pgd(vcpu); + arch.cr3 = kvm_mmu_get_guest_pgd(vcpu, vcpu->arch.mmu); return kvm_setup_async_pf(vcpu, cr2_or_gpa, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch); @@ -4168,7 +4189,7 @@ return; if (!vcpu->arch.mmu->root_role.direct && - work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu)) + work->arch.cr3 != kvm_mmu_get_guest_pgd(vcpu, vcpu->arch.mmu)) return; kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true); @@ -4530,11 +4551,6 @@ } EXPORT_SYMBOL_GPL(kvm_mmu_new_pgd); -static unsigned long get_cr3(struct kvm_vcpu *vcpu) -{ - return kvm_read_cr3(vcpu); -} - static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn, unsigned int access) { @@ -5038,6 +5054,21 @@ return role; } +void __kvm_mmu_refresh_passthrough_bits(struct kvm_vcpu *vcpu, + struct kvm_mmu *mmu) +{ + const bool cr0_wp = !!kvm_read_cr0_bits(vcpu, X86_CR0_WP); + + BUILD_BUG_ON((KVM_MMU_CR0_ROLE_BITS & KVM_POSSIBLE_CR0_GUEST_BITS) != X86_CR0_WP); + BUILD_BUG_ON((KVM_MMU_CR4_ROLE_BITS & KVM_POSSIBLE_CR4_GUEST_BITS)); + + if (is_cr0_wp(mmu) == cr0_wp) + return; + + mmu->cpu_role.base.cr0_wp = cr0_wp; + reset_guest_paging_metadata(vcpu, mmu); +} + static inline int kvm_mmu_get_tdp_level(struct kvm_vcpu *vcpu) { /* tdp_root_level is architecture forced level, use it if nonzero */ @@ -5085,7 +5116,7 @@ context->page_fault = kvm_tdp_page_fault; context->sync_page = nonpaging_sync_page; context->invlpg = NULL; - context->get_guest_pgd = get_cr3; + context->get_guest_pgd = get_guest_cr3; context->get_pdptr = kvm_pdptr_read; context->inject_page_fault = kvm_inject_page_fault; @@ -5235,7 +5266,7 @@ kvm_init_shadow_mmu(vcpu, cpu_role); - context->get_guest_pgd = get_cr3; + context->get_guest_pgd = get_guest_cr3; context->get_pdptr = kvm_pdptr_read; context->inject_page_fault = kvm_inject_page_fault; } @@ -5249,7 +5280,7 @@ return; g_context->cpu_role.as_u64 = new_mode.as_u64; - g_context->get_guest_pgd = get_cr3; + g_context->get_guest_pgd = get_guest_cr3; g_context->get_pdptr = kvm_pdptr_read; g_context->inject_page_fault = kvm_inject_page_fault; @@ -5719,6 +5750,9 @@ tdp_root_level = tdp_forced_root_level; max_tdp_level = tdp_max_root_level; +#ifdef CONFIG_X86_64 + tdp_mmu_enabled = tdp_mmu_allowed && tdp_enabled; +#endif /* * max_huge_page_level reflects KVM's MMU capabilities irrespective * of kernel support, e.g. KVM may be capable of using 1GB pages when @@ -5966,7 +6000,7 @@ * write and in the same critical section as making the reload request, * e.g. before kvm_zap_obsolete_pages() could drop mmu_lock and yield. */ - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) kvm_tdp_mmu_invalidate_all_roots(kvm); /* @@ -5991,7 +6025,7 @@ * Deferring the zap until the final reference to the root is put would * lead to use-after-free. */ - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) kvm_tdp_mmu_zap_invalidated_roots(kvm); } @@ -6017,9 +6051,11 @@ INIT_LIST_HEAD(&kvm->arch.possible_nx_huge_pages); spin_lock_init(&kvm->arch.mmu_unsync_pages_lock); - r = kvm_mmu_init_tdp_mmu(kvm); - if (r < 0) - return r; + if (tdp_mmu_enabled) { + r = kvm_mmu_init_tdp_mmu(kvm); + if (r < 0) + return r; + } node->track_write = kvm_mmu_pte_write; node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot; @@ -6049,7 +6085,8 @@ kvm_page_track_unregister_notifier(kvm, node); - kvm_mmu_uninit_tdp_mmu(kvm); + if (tdp_mmu_enabled) + kvm_mmu_uninit_tdp_mmu(kvm); mmu_free_vm_memory_caches(kvm); } @@ -6103,7 +6140,7 @@ flush = kvm_rmap_zap_gfn_range(kvm, gfn_start, gfn_end); - if (is_tdp_mmu_enabled(kvm)) { + 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); @@ -6136,7 +6173,7 @@ write_unlock(&kvm->mmu_lock); } - if (is_tdp_mmu_enabled(kvm)) { + if (tdp_mmu_enabled) { read_lock(&kvm->mmu_lock); kvm_tdp_mmu_wrprot_slot(kvm, memslot, start_level); read_unlock(&kvm->mmu_lock); @@ -6379,7 +6416,7 @@ u64 start, u64 end, int target_level) { - if (!is_tdp_mmu_enabled(kvm)) + if (!tdp_mmu_enabled) return; if (kvm_memslots_have_rmaps(kvm)) @@ -6400,7 +6437,7 @@ u64 start = memslot->base_gfn; u64 end = start + memslot->npages; - if (!is_tdp_mmu_enabled(kvm)) + if (!tdp_mmu_enabled) return; if (kvm_memslots_have_rmaps(kvm)) { @@ -6483,7 +6520,7 @@ write_unlock(&kvm->mmu_lock); } - if (is_tdp_mmu_enabled(kvm)) { + if (tdp_mmu_enabled) { read_lock(&kvm->mmu_lock); kvm_tdp_mmu_zap_collapsible_sptes(kvm, slot); read_unlock(&kvm->mmu_lock); @@ -6518,7 +6555,7 @@ write_unlock(&kvm->mmu_lock); } - if (is_tdp_mmu_enabled(kvm)) { + if (tdp_mmu_enabled) { read_lock(&kvm->mmu_lock); kvm_tdp_mmu_clear_dirty_slot(kvm, memslot); read_unlock(&kvm->mmu_lock); @@ -6553,7 +6590,7 @@ kvm_mmu_commit_zap_page(kvm, &invalid_list); - if (is_tdp_mmu_enabled(kvm)) + if (tdp_mmu_enabled) kvm_tdp_mmu_zap_all(kvm); write_unlock(&kvm->mmu_lock); @@ -6718,6 +6755,13 @@ if (nx_huge_pages == -1) __set_nx_huge_pages(get_nx_auto_mode()); + /* + * Snapshot userspace's desire to enable the TDP MMU. Whether or not the + * TDP MMU is actually enabled is determined in kvm_configure_mmu() + * when the vendor module is loaded. + */ + tdp_mmu_allowed = tdp_mmu_enabled; + kvm_mmu_spte_module_init(); } only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/mmu/paging_tmpl.h +++ linux-6.2.0/arch/x86/kvm/mmu/paging_tmpl.h @@ -324,7 +324,7 @@ trace_kvm_mmu_pagetable_walk(addr, access); retry_walk: walker->level = mmu->cpu_role.base.level; - pte = mmu->get_guest_pgd(vcpu); + pte = kvm_mmu_get_guest_pgd(vcpu, mmu); have_ad = PT_HAVE_ACCESSED_DIRTY(mmu); #if PTTYPE == 64 only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/mmu/tdp_mmu.c +++ linux-6.2.0/arch/x86/kvm/mmu/tdp_mmu.c @@ -10,23 +10,15 @@ #include #include -static bool __read_mostly tdp_mmu_enabled = true; -module_param_named(tdp_mmu, tdp_mmu_enabled, bool, 0644); - /* Initializes the TDP MMU for the VM, if enabled. */ int kvm_mmu_init_tdp_mmu(struct kvm *kvm) { struct workqueue_struct *wq; - if (!tdp_enabled || !READ_ONCE(tdp_mmu_enabled)) - return 0; - wq = alloc_workqueue("kvm", WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 0); if (!wq) return -ENOMEM; - /* This should not be changed for the lifetime of the VM. */ - kvm->arch.tdp_mmu_enabled = true; INIT_LIST_HEAD(&kvm->arch.tdp_mmu_roots); spin_lock_init(&kvm->arch.tdp_mmu_pages_lock); kvm->arch.tdp_mmu_zap_wq = wq; @@ -47,10 +39,17 @@ void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm) { - if (!kvm->arch.tdp_mmu_enabled) - return; + /* + * Invalidate all roots, which besides the obvious, schedules all roots + * for zapping and thus puts the TDP MMU's reference to each root, i.e. + * ultimately frees all roots. + */ + kvm_tdp_mmu_invalidate_all_roots(kvm); - /* Also waits for any queued work items. */ + /* + * 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); WARN_ON(atomic64_read(&kvm->arch.tdp_mmu_pages)); @@ -126,16 +125,6 @@ queue_work(kvm->arch.tdp_mmu_zap_wq, &root->tdp_mmu_async_work); } -static inline bool kvm_tdp_root_mark_invalid(struct kvm_mmu_page *page) -{ - union kvm_mmu_page_role role = page->role; - role.invalid = true; - - /* No need to use cmpxchg, only the invalid bit can change. */ - role.word = xchg(&page->role.word, role.word); - return role.invalid; -} - void kvm_tdp_mmu_put_root(struct kvm *kvm, struct kvm_mmu_page *root, bool shared) { @@ -144,45 +133,12 @@ if (!refcount_dec_and_test(&root->tdp_mmu_root_count)) return; - WARN_ON(!root->tdp_mmu_page); - /* - * The root now has refcount=0. It is valid, but readers already - * cannot acquire a reference to it because kvm_tdp_mmu_get_root() - * rejects it. This remains true for the rest of the execution - * of this function, because readers visit valid roots only - * (except for tdp_mmu_zap_root_work(), which however - * does not acquire any reference itself). - * - * Even though there are flows that need to visit all roots for - * correctness, they all take mmu_lock for write, so they cannot yet - * run concurrently. The same is true after kvm_tdp_root_mark_invalid, - * since the root still has refcount=0. - * - * However, tdp_mmu_zap_root can yield, and writers do not expect to - * see refcount=0 (see for example kvm_tdp_mmu_invalidate_all_roots()). - * So the root temporarily gets an extra reference, going to refcount=1 - * while staying invalid. Readers still cannot acquire any reference; - * but writers are now allowed to run if tdp_mmu_zap_root yields and - * they might take an extra reference if they themselves yield. - * Therefore, when the reference is given back by the worker, - * there is no guarantee that the refcount is still 1. If not, whoever - * puts the last reference will free the page, but they will not have to - * zap the root because a root cannot go from invalid to valid. + * The TDP MMU itself holds a reference to each root until the root is + * explicitly invalidated, i.e. the final reference should be never be + * put for a valid root. */ - if (!kvm_tdp_root_mark_invalid(root)) { - refcount_set(&root->tdp_mmu_root_count, 1); - - /* - * Zapping the root in a worker is not just "nice to have"; - * it is required because kvm_tdp_mmu_invalidate_all_roots() - * skips already-invalid roots. If kvm_tdp_mmu_put_root() did - * not add the root to the workqueue, kvm_tdp_mmu_zap_all_fast() - * might return with some roots not zapped yet. - */ - tdp_mmu_schedule_zap_root(kvm, root); - return; - } + KVM_BUG_ON(!is_tdp_mmu_page(root) || !root->role.invalid, kvm); spin_lock(&kvm->arch.tdp_mmu_pages_lock); list_del_rcu(&root->link); @@ -330,7 +286,14 @@ root = tdp_mmu_alloc_sp(vcpu); tdp_mmu_init_sp(root, NULL, 0, role); - refcount_set(&root->tdp_mmu_root_count, 1); + /* + * TDP MMU roots are kept until they are explicitly invalidated, either + * 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(). + */ + refcount_set(&root->tdp_mmu_root_count, 2); spin_lock(&kvm->arch.tdp_mmu_pages_lock); list_add_rcu(&root->link, &kvm->arch.tdp_mmu_roots); @@ -1033,32 +996,49 @@ /* * 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, so a reference is taken on all roots. - * 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. - * - * Get a reference even if the root is already invalid, the asynchronous worker - * assumes it was gifted a reference to the root it processes. Because mmu_lock - * is held for write, it should be impossible to observe a root with zero refcount, - * i.e. the list of roots cannot be stale. + * 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. * - * This has essentially the same effect for the TDP MMU - * as updating mmu_valid_gen does for the shadow MMU. + * Note, the asynchronous worker 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) { struct kvm_mmu_page *root; - lockdep_assert_held_write(&kvm->mmu_lock); - list_for_each_entry(root, &kvm->arch.tdp_mmu_roots, link) { - if (!root->role.invalid && - !WARN_ON_ONCE(!kvm_tdp_mmu_get_root(root))) { + /* + * mmu_lock must be held for write to ensure that a root doesn't become + * invalid while there are active readers (invalidating a root while + * there are active readers may or may not be problematic in practice, + * but it's uncharted territory and not supported). + * + * Waive the assertion if there are no users of @kvm, i.e. the VM is + * being destroyed after all references have been put, or if no vCPUs + * have been created (which means there are no roots), i.e. the VM is + * being destroyed in an error path of KVM_CREATE_VM. + */ + if (IS_ENABLED(CONFIG_PROVE_LOCKING) && + refcount_read(&kvm->users_count) && kvm->created_vcpus) + lockdep_assert_held_write(&kvm->mmu_lock); + + /* + * 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. + */ + rcu_read_lock(); + + list_for_each_entry_rcu(root, &kvm->arch.tdp_mmu_roots, link) { + if (!root->role.invalid) { root->role.invalid = true; tdp_mmu_schedule_zap_root(kvm, root); } } + + rcu_read_unlock(); } /* only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/mmu/tdp_mmu.h +++ linux-6.2.0/arch/x86/kvm/mmu/tdp_mmu.h @@ -7,6 +7,9 @@ #include "spte.h" +int 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); __must_check static inline bool kvm_tdp_mmu_get_root(struct kvm_mmu_page *root) @@ -68,8 +71,6 @@ u64 *spte); #ifdef CONFIG_X86_64 -int kvm_mmu_init_tdp_mmu(struct kvm *kvm); -void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm); static inline bool is_tdp_mmu_page(struct kvm_mmu_page *sp) { return sp->tdp_mmu_page; } static inline bool is_tdp_mmu(struct kvm_mmu *mmu) @@ -89,8 +90,6 @@ return sp && is_tdp_mmu_page(sp) && sp->root_count; } #else -static inline int kvm_mmu_init_tdp_mmu(struct kvm *kvm) { return 0; } -static inline void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm) {} static inline bool is_tdp_mmu_page(struct kvm_mmu_page *sp) { return false; } static inline bool is_tdp_mmu(struct kvm_mmu *mmu) { return false; } #endif only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/pmu.c +++ linux-6.2.0/arch/x86/kvm/pmu.c @@ -438,9 +438,9 @@ if (!pmc) return 1; - if (!(kvm_read_cr4(vcpu) & X86_CR4_PCE) && + if (!(kvm_read_cr4_bits(vcpu, X86_CR4_PCE)) && (static_call(kvm_x86_get_cpl)(vcpu) != 0) && - (kvm_read_cr0(vcpu) & X86_CR0_PE)) + (kvm_read_cr0_bits(vcpu, X86_CR0_PE))) return 1; *data = pmc_read_counter(pmc) & mask; only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/kvm/vmx/vmx.h +++ linux-6.2.0/arch/x86/kvm/vmx/vmx.h @@ -640,6 +640,24 @@ (1 << VCPU_EXREG_EXIT_INFO_1) | \ (1 << VCPU_EXREG_EXIT_INFO_2)) +static inline unsigned long vmx_l1_guest_owned_cr0_bits(void) +{ + unsigned long bits = KVM_POSSIBLE_CR0_GUEST_BITS; + + /* + * CR0.WP needs to be intercepted when KVM is shadowing legacy paging + * in order to construct shadow PTEs with the correct protections. + * Note! CR0.WP technically can be passed through to the guest if + * paging is disabled, but checking CR0.PG would generate a cyclical + * dependency of sorts due to forcing the caller to ensure CR0 holds + * the correct value prior to determining which CR0 bits can be owned + * by L1. Keep it simple and limit the optimization to EPT. + */ + if (!enable_ept) + bits &= ~X86_CR0_WP; + return bits; +} + static inline struct kvm_vmx *to_kvm_vmx(struct kvm *kvm) { return container_of(kvm, struct kvm_vmx, kvm); only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/lib/clear_page_64.S +++ linux-6.2.0/arch/x86/lib/clear_page_64.S @@ -142,8 +142,8 @@ and $7, %edx jz .Lrep_good_exit -.Lrep_good_bytes: mov %edx, %ecx +.Lrep_good_bytes: rep stosb .Lrep_good_exit: only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/lib/retpoline.S +++ linux-6.2.0/arch/x86/lib/retpoline.S @@ -144,8 +144,8 @@ */ .align 64 .skip 63, 0xcc -SYM_FUNC_START_NOALIGN(zen_untrain_ret); - +SYM_START(zen_untrain_ret, SYM_L_GLOBAL, SYM_A_NONE) + ANNOTATE_NOENDBR /* * As executed from zen_untrain_ret, this is: * only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/pci/xen.c +++ linux-6.2.0/arch/x86/pci/xen.c @@ -198,7 +198,7 @@ i++; } kfree(v); - return 0; + return msi_device_populate_sysfs(&dev->dev); error: if (ret == -ENOSYS) @@ -254,7 +254,7 @@ dev_dbg(&dev->dev, "xen: msi --> pirq=%d --> irq=%d\n", pirq, irq); } - return 0; + return msi_device_populate_sysfs(&dev->dev); error: dev_err(&dev->dev, "Failed to create MSI%s! ret=%d!\n", @@ -346,7 +346,7 @@ if (ret < 0) goto out; } - ret = 0; + ret = msi_device_populate_sysfs(&dev->dev); out: return ret; } @@ -394,6 +394,8 @@ xen_destroy_irq(msidesc->irq + i); msidesc->irq = 0; } + + msi_device_destroy_sysfs(&dev->dev); } static void xen_pv_teardown_msi_irqs(struct pci_dev *dev) only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/video/fbdev.c +++ linux-6.2.0/arch/x86/video/fbdev.c @@ -14,26 +14,15 @@ int fb_is_primary_device(struct fb_info *info) { struct device *device = info->device; - struct pci_dev *default_device = vga_default_device(); struct pci_dev *pci_dev; - struct resource *res; if (!device || !dev_is_pci(device)) return 0; pci_dev = to_pci_dev(device); - if (default_device) { - if (pci_dev == default_device) - return 1; - return 0; - } - - res = pci_dev->resource + PCI_ROM_RESOURCE; - - if (res->flags & IORESOURCE_ROM_SHADOW) + if (pci_dev == vga_default_device()) return 1; - return 0; } EXPORT_SYMBOL(fb_is_primary_device); only in patch2: unchanged: --- linux-6.2.0.orig/arch/x86/xen/smp_pv.c +++ linux-6.2.0/arch/x86/xen/smp_pv.c @@ -63,6 +63,7 @@ cr4_init(); cpu_init(); + fpu__init_cpu(); touch_softlockup_watchdog(); /* PVH runs in ring 0 and allows us to do native syscalls. Yay! */ only in patch2: unchanged: --- linux-6.2.0.orig/arch/xtensa/kernel/signal.c +++ linux-6.2.0/arch/xtensa/kernel/signal.c @@ -343,7 +343,19 @@ struct rt_sigframe *frame; int err = 0, sig = ksig->sig; unsigned long sp, ra, tp, ps; + unsigned long handler = (unsigned long)ksig->ka.sa.sa_handler; + unsigned long handler_fdpic_GOT = 0; unsigned int base; + bool fdpic = IS_ENABLED(CONFIG_BINFMT_ELF_FDPIC) && + (current->personality & FDPIC_FUNCPTRS); + + if (fdpic) { + unsigned long __user *fdpic_func_desc = + (unsigned long __user *)handler; + if (__get_user(handler, &fdpic_func_desc[0]) || + __get_user(handler_fdpic_GOT, &fdpic_func_desc[1])) + return -EFAULT; + } sp = regs->areg[1]; @@ -373,20 +385,26 @@ err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set)); if (ksig->ka.sa.sa_flags & SA_RESTORER) { - ra = (unsigned long)ksig->ka.sa.sa_restorer; + if (fdpic) { + unsigned long __user *fdpic_func_desc = + (unsigned long __user *)ksig->ka.sa.sa_restorer; + + err |= __get_user(ra, fdpic_func_desc); + } else { + ra = (unsigned long)ksig->ka.sa.sa_restorer; + } } else { /* Create sys_rt_sigreturn syscall in stack frame */ err |= gen_return_code(frame->retcode); - - if (err) { - return -EFAULT; - } ra = (unsigned long) frame->retcode; } - /* + if (err) + return -EFAULT; + + /* * Create signal handler execution context. * Return context not modified until this point. */ @@ -394,8 +412,7 @@ /* Set up registers for signal handler; preserve the threadptr */ tp = regs->threadptr; ps = regs->ps; - start_thread(regs, (unsigned long) ksig->ka.sa.sa_handler, - (unsigned long) frame); + start_thread(regs, handler, (unsigned long)frame); /* Set up a stack frame for a call4 if userspace uses windowed ABI */ if (ps & PS_WOE_MASK) { @@ -413,6 +430,8 @@ regs->areg[base + 4] = (unsigned long) &frame->uc; regs->threadptr = tp; regs->ps = ps; + if (fdpic) + regs->areg[base + 11] = handler_fdpic_GOT; pr_debug("SIG rt deliver (%s:%d): signal=%d sp=%p pc=%08lx\n", current->comm, current->pid, sig, frame, regs->pc); only in patch2: unchanged: --- linux-6.2.0.orig/arch/xtensa/kernel/xtensa_ksyms.c +++ linux-6.2.0/arch/xtensa/kernel/xtensa_ksyms.c @@ -56,6 +56,8 @@ */ extern long long __ashrdi3(long long, int); extern long long __ashldi3(long long, int); +extern long long __bswapdi2(long long); +extern int __bswapsi2(int); extern long long __lshrdi3(long long, int); extern int __divsi3(int, int); extern int __modsi3(int, int); @@ -66,6 +68,8 @@ EXPORT_SYMBOL(__ashldi3); EXPORT_SYMBOL(__ashrdi3); +EXPORT_SYMBOL(__bswapdi2); +EXPORT_SYMBOL(__bswapsi2); EXPORT_SYMBOL(__lshrdi3); EXPORT_SYMBOL(__divsi3); EXPORT_SYMBOL(__modsi3); only in patch2: unchanged: --- linux-6.2.0.orig/arch/xtensa/lib/Makefile +++ linux-6.2.0/arch/xtensa/lib/Makefile @@ -4,7 +4,7 @@ # lib-y += memcopy.o memset.o checksum.o \ - ashldi3.o ashrdi3.o lshrdi3.o \ + ashldi3.o ashrdi3.o bswapdi2.o bswapsi2.o lshrdi3.o \ divsi3.o udivsi3.o modsi3.o umodsi3.o mulsi3.o umulsidi3.o \ usercopy.o strncpy_user.o strnlen_user.o lib-$(CONFIG_PCI) += pci-auto.o only in patch2: unchanged: --- linux-6.2.0.orig/arch/xtensa/lib/bswapdi2.S +++ linux-6.2.0/arch/xtensa/lib/bswapdi2.S @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 */ +#include +#include +#include + +ENTRY(__bswapdi2) + + abi_entry_default + ssai 8 + srli a4, a2, 16 + src a4, a4, a2 + src a4, a4, a4 + src a4, a2, a4 + srli a2, a3, 16 + src a2, a2, a3 + src a2, a2, a2 + src a2, a3, a2 + mov a3, a4 + abi_ret_default + +ENDPROC(__bswapdi2) only in patch2: unchanged: --- linux-6.2.0.orig/arch/xtensa/lib/bswapsi2.S +++ linux-6.2.0/arch/xtensa/lib/bswapsi2.S @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later WITH GCC-exception-2.0 */ +#include +#include +#include + +ENTRY(__bswapsi2) + + abi_entry_default + ssai 8 + srli a3, a2, 16 + src a3, a3, a2 + src a3, a3, a3 + src a2, a2, a3 + abi_ret_default + +ENDPROC(__bswapsi2) only in patch2: unchanged: --- linux-6.2.0.orig/block/bfq-iosched.c +++ linux-6.2.0/block/bfq-iosched.c @@ -637,6 +637,8 @@ sched_data->service_tree[i].wsum; } } + if (!wsum) + continue; limit = DIV_ROUND_CLOSEST(limit * entity->weight, wsum); if (entity->allocated >= limit) { bfq_log_bfqq(bfqq->bfqd, bfqq, only in patch2: unchanged: --- linux-6.2.0.orig/block/blk-map.c +++ linux-6.2.0/block/blk-map.c @@ -246,7 +246,7 @@ { struct bio *bio; - if (rq->cmd_flags & REQ_POLLED) { + if (rq->cmd_flags & REQ_POLLED && (nr_vecs <= BIO_INLINE_VECS)) { blk_opf_t opf = rq->cmd_flags | REQ_ALLOC_CACHE; bio = bio_alloc_bioset(NULL, nr_vecs, opf, gfp_mask, only in patch2: unchanged: --- linux-6.2.0.orig/block/blk-mq-tag.c +++ linux-6.2.0/block/blk-mq-tag.c @@ -41,16 +41,20 @@ { unsigned int users; + /* + * calling test_bit() prior to test_and_set_bit() is intentional, + * it avoids dirtying the cacheline if the queue is already active. + */ if (blk_mq_is_shared_tags(hctx->flags)) { struct request_queue *q = hctx->queue; - if (test_bit(QUEUE_FLAG_HCTX_ACTIVE, &q->queue_flags)) + if (test_bit(QUEUE_FLAG_HCTX_ACTIVE, &q->queue_flags) || + test_and_set_bit(QUEUE_FLAG_HCTX_ACTIVE, &q->queue_flags)) return; - set_bit(QUEUE_FLAG_HCTX_ACTIVE, &q->queue_flags); } else { - if (test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state)) + if (test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state) || + test_and_set_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state)) return; - set_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state); } users = atomic_inc_return(&hctx->tags->active_queues); only in patch2: unchanged: --- linux-6.2.0.orig/block/blk-wbt.c +++ linux-6.2.0/block/blk-wbt.c @@ -653,14 +653,16 @@ void wbt_enable_default(struct request_queue *q) { struct rq_qos *rqos; - bool disable_flag = q->elevator && - test_bit(ELEVATOR_FLAG_DISABLE_WBT, &q->elevator->flags); + bool enable = IS_ENABLED(CONFIG_BLK_WBT_MQ); + + if (q->elevator && + test_bit(ELEVATOR_FLAG_DISABLE_WBT, &q->elevator->flags)) + enable = false; /* Throttling already enabled? */ rqos = wbt_rq_qos(q); if (rqos) { - if (!disable_flag && - RQWB(rqos)->enable_state == WBT_STATE_OFF_DEFAULT) + if (enable && RQWB(rqos)->enable_state == WBT_STATE_OFF_DEFAULT) RQWB(rqos)->enable_state = WBT_STATE_ON_DEFAULT; return; } @@ -669,7 +671,7 @@ if (!blk_queue_registered(q)) return; - if (queue_is_mq(q) && !disable_flag) + if (queue_is_mq(q) && enable) wbt_init(q); } EXPORT_SYMBOL_GPL(wbt_enable_default); only in patch2: unchanged: --- linux-6.2.0.orig/crypto/crypto_engine.c +++ linux-6.2.0/crypto/crypto_engine.c @@ -54,7 +54,7 @@ } } lockdep_assert_in_softirq(); - req->complete(req, err); + crypto_request_complete(req, err); kthread_queue_work(engine->kworker, &engine->pump_requests); } @@ -129,9 +129,6 @@ if (!engine->retry_support) engine->cur_req = async_req; - if (backlog) - backlog->complete(backlog, -EINPROGRESS); - if (engine->busy) was_busy = true; else @@ -214,9 +211,12 @@ } req_err_2: - async_req->complete(async_req, ret); + crypto_request_complete(async_req, ret); retry: + if (backlog) + crypto_request_complete(backlog, -EINPROGRESS); + /* If retry mechanism is supported, send new requests to engine */ if (engine->retry_support) { spin_lock_irqsave(&engine->queue_lock, flags); only in patch2: unchanged: --- linux-6.2.0.orig/crypto/jitterentropy-kcapi.c +++ linux-6.2.0/crypto/jitterentropy-kcapi.c @@ -37,6 +37,7 @@ * DAMAGE. */ +#include #include #include #include @@ -59,11 +60,6 @@ kfree_sensitive(ptr); } -void jent_panic(char *s) -{ - panic("%s", s); -} - void jent_memcpy(void *dest, const void *src, unsigned int n) { memcpy(dest, src, n); @@ -102,7 +98,6 @@ struct jitterentropy { spinlock_t jent_lock; struct rand_data *entropy_collector; - unsigned int reset_cnt; }; static int jent_kcapi_init(struct crypto_tfm *tfm) @@ -138,32 +133,30 @@ spin_lock(&rng->jent_lock); - /* Return a permanent error in case we had too many resets in a row. */ - if (rng->reset_cnt > (1<<10)) { - ret = -EFAULT; - goto out; - } - ret = jent_read_entropy(rng->entropy_collector, rdata, dlen); - /* Reset RNG in case of health failures */ - if (ret < -1) { - pr_warn_ratelimited("Reset Jitter RNG due to health test failure: %s failure\n", - (ret == -2) ? "Repetition Count Test" : - "Adaptive Proportion Test"); - - rng->reset_cnt++; + if (ret == -3) { + /* Handle permanent health test error */ + /* + * If the kernel was booted with fips=1, it implies that + * the entire kernel acts as a FIPS 140 module. In this case + * an SP800-90B permanent health test error is treated as + * a FIPS module error. + */ + if (fips_enabled) + panic("Jitter RNG permanent health test failure\n"); + pr_err("Jitter RNG permanent health test failure\n"); + ret = -EFAULT; + } else if (ret == -2) { + /* Handle intermittent health test error */ + pr_warn_ratelimited("Reset Jitter RNG due to intermittent health test failure\n"); ret = -EAGAIN; - } else { - rng->reset_cnt = 0; - - /* Convert the Jitter RNG error into a usable error code */ - if (ret == -1) - ret = -EINVAL; + } else if (ret == -1) { + /* Handle other errors */ + ret = -EINVAL; } -out: spin_unlock(&rng->jent_lock); return ret; @@ -197,6 +190,10 @@ ret = jent_entropy_init(); if (ret) { + /* Handle permanent health test error */ + if (fips_enabled) + panic("jitterentropy: Initialization failed with host not compliant with requirements: %d\n", ret); + pr_info("jitterentropy: Initialization failed with host not compliant with requirements: %d\n", ret); return -EFAULT; } only in patch2: unchanged: --- linux-6.2.0.orig/crypto/jitterentropy.c +++ linux-6.2.0/crypto/jitterentropy.c @@ -85,10 +85,14 @@ * bit generation */ /* Repetition Count Test */ - int rct_count; /* Number of stuck values */ + unsigned int rct_count; /* Number of stuck values */ - /* Adaptive Proportion Test for a significance level of 2^-30 */ + /* Intermittent health test failure threshold of 2^-30 */ +#define JENT_RCT_CUTOFF 30 /* Taken from SP800-90B sec 4.4.1 */ #define JENT_APT_CUTOFF 325 /* Taken from SP800-90B sec 4.4.2 */ + /* Permanent health test failure threshold of 2^-60 */ +#define JENT_RCT_CUTOFF_PERMANENT 60 +#define JENT_APT_CUTOFF_PERMANENT 355 #define JENT_APT_WINDOW_SIZE 512 /* Data window size */ /* LSB of time stamp to process */ #define JENT_APT_LSB 16 @@ -97,8 +101,6 @@ unsigned int apt_count; /* APT counter */ unsigned int apt_base; /* APT base reference */ unsigned int apt_base_set:1; /* APT base reference set? */ - - unsigned int health_failure:1; /* Permanent health failure */ }; /* Flags that can be used to initialize the RNG */ @@ -169,19 +171,26 @@ return; } - if (delta_masked == ec->apt_base) { + if (delta_masked == ec->apt_base) ec->apt_count++; - if (ec->apt_count >= JENT_APT_CUTOFF) - ec->health_failure = 1; - } - ec->apt_observations++; if (ec->apt_observations >= JENT_APT_WINDOW_SIZE) jent_apt_reset(ec, delta_masked); } +/* APT health test failure detection */ +static int jent_apt_permanent_failure(struct rand_data *ec) +{ + return (ec->apt_count >= JENT_APT_CUTOFF_PERMANENT) ? 1 : 0; +} + +static int jent_apt_failure(struct rand_data *ec) +{ + return (ec->apt_count >= JENT_APT_CUTOFF) ? 1 : 0; +} + /*************************************************************************** * Stuck Test and its use as Repetition Count Test * @@ -206,55 +215,14 @@ */ static void jent_rct_insert(struct rand_data *ec, int stuck) { - /* - * If we have a count less than zero, a previous RCT round identified - * a failure. We will not overwrite it. - */ - if (ec->rct_count < 0) - return; - if (stuck) { ec->rct_count++; - - /* - * The cutoff value is based on the following consideration: - * alpha = 2^-30 as recommended in FIPS 140-2 IG 9.8. - * In addition, we require an entropy value H of 1/OSR as this - * is the minimum entropy required to provide full entropy. - * Note, we collect 64 * OSR deltas for inserting them into - * the entropy pool which should then have (close to) 64 bits - * of entropy. - * - * Note, ec->rct_count (which equals to value B in the pseudo - * code of SP800-90B section 4.4.1) starts with zero. Hence - * we need to subtract one from the cutoff value as calculated - * following SP800-90B. - */ - if ((unsigned int)ec->rct_count >= (31 * ec->osr)) { - ec->rct_count = -1; - ec->health_failure = 1; - } } else { + /* Reset RCT */ ec->rct_count = 0; } } -/* - * Is there an RCT health test failure? - * - * @ec [in] Reference to entropy collector - * - * @return - * 0 No health test failure - * 1 Permanent health test failure - */ -static int jent_rct_failure(struct rand_data *ec) -{ - if (ec->rct_count < 0) - return 1; - return 0; -} - static inline __u64 jent_delta(__u64 prev, __u64 next) { #define JENT_UINT64_MAX (__u64)(~((__u64) 0)) @@ -303,18 +271,26 @@ return 0; } -/* - * Report any health test failures - * - * @ec [in] Reference to entropy collector - * - * @return - * 0 No health test failure - * 1 Permanent health test failure - */ +/* RCT health test failure detection */ +static int jent_rct_permanent_failure(struct rand_data *ec) +{ + return (ec->rct_count >= JENT_RCT_CUTOFF_PERMANENT) ? 1 : 0; +} + +static int jent_rct_failure(struct rand_data *ec) +{ + return (ec->rct_count >= JENT_RCT_CUTOFF) ? 1 : 0; +} + +/* Report of health test failures */ static int jent_health_failure(struct rand_data *ec) { - return ec->health_failure; + return jent_rct_failure(ec) | jent_apt_failure(ec); +} + +static int jent_permanent_health_failure(struct rand_data *ec) +{ + return jent_rct_permanent_failure(ec) | jent_apt_permanent_failure(ec); } /*************************************************************************** @@ -600,8 +576,8 @@ * * The following error codes can occur: * -1 entropy_collector is NULL - * -2 RCT failed - * -3 APT test failed + * -2 Intermittent health failure + * -3 Permanent health failure */ int jent_read_entropy(struct rand_data *ec, unsigned char *data, unsigned int len) @@ -616,39 +592,23 @@ jent_gen_entropy(ec); - if (jent_health_failure(ec)) { - int ret; - - if (jent_rct_failure(ec)) - ret = -2; - else - ret = -3; - + if (jent_permanent_health_failure(ec)) { /* - * Re-initialize the noise source - * - * If the health test fails, the Jitter RNG remains - * in failure state and will return a health failure - * during next invocation. + * At this point, the Jitter RNG instance is considered + * as a failed instance. There is no rerun of the + * startup test any more, because the caller + * is assumed to not further use this instance. */ - if (jent_entropy_init()) - return ret; - - /* Set APT to initial state */ - jent_apt_reset(ec, 0); - ec->apt_base_set = 0; - - /* Set RCT to initial state */ - ec->rct_count = 0; - - /* Re-enable Jitter RNG */ - ec->health_failure = 0; - + return -3; + } else if (jent_health_failure(ec)) { /* - * Return the health test failure status to the - * caller as the generated value is not appropriate. + * Perform startup health tests and return permanent + * error if it fails. */ - return ret; + if (jent_entropy_init()) + return -3; + + return -2; } if ((DATA_SIZE_BITS / 8) < len) only in patch2: unchanged: --- linux-6.2.0.orig/crypto/jitterentropy.h +++ linux-6.2.0/crypto/jitterentropy.h @@ -2,7 +2,6 @@ extern void *jent_zalloc(unsigned int len); extern void jent_zfree(void *ptr); -extern void jent_panic(char *s); extern void jent_memcpy(void *dest, const void *src, unsigned int n); extern void jent_get_nstime(__u64 *out); only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/amd64/generic.modules.builtin +++ linux-6.2.0/debian.master/abi/amd64/generic.modules.builtin @@ -0,0 +1,322 @@ +8250 +8250_base +8250_mid +8250_pci +88pm860x +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 +cfbcopyarea +cfbfillrect +cfbimgblt +charger-manager +cn +compat_binfmt_elf +configfs +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c-intel +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da903x +da9052-core +da9052-i2c +da9052-spi +da9055 +da9063 +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +dwc2 +ecb +ecryptfs +edac_core +edd +efivarfs +ehci-hcd +ehci-pci +ehci-platform +elants_i2c +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fan +fat +fb +fbdev +fddi +firmware_class +fixed_phy +font +freq_table +fuse +fwnode_mdio +gcm +geniv +gf128mul +ghash-generic +ghes_edac +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-crystalcove +gpio-generic +grant-dma-ops +hed +hmac +hsu_dma +hwmon +hwspinlock_core +i2c-core +i2c-designware-core +i2c-designware-platform +i2c-dev +i8042 +icc-core +imsttfb +input-core +intel-agp +intel-gtt +intel-uncore +intel_pmc_core +intel_pmc_core_pltdrv +intel_pstate +intel_soc_pmic_crc +ioasid +iosf_mbi +iova +ipv6 +jbd2 +jitterentropy_rng +kdf_sp800108 +kgdboc +kpp +led-class +libaes +libata +libblake2s +libblake2s-x86_64 +libcryptoutils +libnvdimm +libphy +libps2 +libsha1 +libsha256 +linear_ranges +loop +lp8788 +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +max14577 +max310x +max77693 +mbcache +mctp +md-mod +md5 +mdio_devres +mfd-core +mmc_core +mousedev +mpi +mq-deadline +mt6323-poweroff +n_null +nd_e820 +nfs_ssc +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 +pretimeout_noop +processor +pstore +ptp +public_key +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +rapidio +rational +reactor_panic +reactor_printk +regmap-i2c +regmap-mmio +regmap-spi +remoteproc +restart-poweroff +rfkill +rng +rng-core +roles +rsa_generic +rtc-cmos +sccnxp +scsi_common +scsi_mod +sd_mod +selftests +seqiv +serdev +serial_core +serial_mctrl_gpio +serio +sg +sha1_generic +sha256_generic +sha512_generic +shpchp +skcipher +slhc +speedstep-centrino +squashfs +sr_mod +system_heap +t10-pi +tcp_cubic +thermal +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 +utf8data +vesafb +vfat +vgacon +via-agp +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +vivaldi-fmap +watch_queue +watchdog +wwan +wwnr +x509_key_parser +xen-acpi-processor +xen-blkfront +xen-netfront +xenbus +xenbus_probe_frontend +xhci-hcd +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/arm64/generic-64k.modules.builtin +++ linux-6.2.0/debian.master/abi/arm64/generic-64k.modules.builtin @@ -0,0 +1,527 @@ +8250 +8250_base +8250_dw +8250_mtk +8250_of +8250_omap +8250_pci +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 +arm_smmu +arm_smmu_v3 +armada_thermal +armmmci +as3722 +as3722-poweroff +asiliantfb +asn1_decoder +asn1_encoder +asymmetric_keys +atkbd +axg +axg-aoclk +backlight +battery +bcm84881 +binfmt_elf +binfmt_script +brcmstb_gisb +bsg +btree +button +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +charger-manager +clk-apmixed +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-imx8mq +clk-mpll +clk-mt6779 +clk-mt6779-aud +clk-mt6779-cam +clk-mt6779-img +clk-mt6779-ipe +clk-mt6779-mfg +clk-mt6779-mm +clk-mt6779-vdec +clk-mt6779-venc +clk-mtk +clk-mux +clk-pll +clk-pll +clk-regmap +clk-vexpress-osc +cma_heap +cmd-db +cn +compat_binfmt_elf +configfs +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crc8 +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da903x +da9052-core +da9052-i2c +da9052-spi +da9055 +da9063 +davinci_mdio +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +dwc2 +ecb +ecryptfs +edac_core +efivarfs +ehci-hcd +ehci-orion +ehci-pci +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fan +fat +fb +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 +g12a-aoclk +gcm +geniv +gf128mul +ghash-generic +ghes_edac +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-davinci +gpio-generic +gpio-imx-scu +gpio-mxc +gpio-pl061 +gpio-poweroff +gpio-restart +gpio-tegra +gpio-tegra186 +gpio-xilinx +grant-dma-ops +gxbb +gxbb-aoclk +hed +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 +input-core +interconnect_qcom +ioasid +iova +ipu_idmac +ipv6 +irq-al-fic +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 +k3-psil-lib +k3-ringacc +k3-udma +k3-udma-glue +kdf_sp800108 +kgdboc +kpp +kvm +led-class +libaes +libahci +libahci_platform +libata +libblake2s +libcryptoutils +libnvdimm +libphy +libps2 +libsha1 +libsha256 +linear_ranges +loop +lp8788 +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +max14577 +max310x +max77686 +max77693 +mbcache +mctp +md-mod +md5 +mdio-bitbang +mdio_devres +meson-aoclk +meson-clk-measure +meson-ee-pwrc +meson-eeclk +meson-gx-pwrc-vpu +meson_uart +mfd-core +mii +mmc_block +mmc_core +mousedev +mpi +mq-deadline +msm_serial +mt6323-poweroff +mtk-eint +mv_xor_v2 +mx3fb +mxc-clk +n_null +nfs_ssc +nls_base +nls_cp437 +npcm_wdt +nvmem_core +nvmem_zynqmp_nvmem +of_mdio +ohci-hcd +ohci-pci +oid_registry +omap-gpmc +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-meson-axg-mipi-pcie-analog +phy-meson-axg-pcie +phy-mxs-usb +phy-xgene +phylink +pinctrl-amd +pinctrl-as3722 +pinctrl-imx +pinctrl-imx8dxl +pinctrl-imx8mm +pinctrl-imx8mn +pinctrl-imx8mp +pinctrl-imx8mq +pinctrl-imx8qm +pinctrl-imx8qxp +pinctrl-meson +pinctrl-meson-a1 +pinctrl-meson-axg +pinctrl-meson-axg-pmx +pinctrl-meson-g12a +pinctrl-meson-gxbb +pinctrl-meson-gxl +pinctrl-meson8-pmx +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-scu +pinctrl-single +pinctrl-sprd +pinctrl-sprd-sc9860 +pkcs7_message +pldmfw +power_supply +powercap_sys +ppp_generic +pps_core +pretimeout_noop +processor +pstore +ptp +public_key +qcom-ebi2 +qcom-ipcc +qcom-pdc +qcom-scm +qcom-ssc-block-bus +qcom_rpmh +rapidio +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-imx7 +reset-meson +reset-microchip-sparx5 +reset-qcom-aoss +restart-poweroff +rfkill +rng +rng-core +rockchip-mailbox +roles +rpmhpd +rsa_generic +rtc-efi +rtc-mv +rtc-xgene +rzg2l-cpg +sccnxp +scmi-module +scsi_common +scsi_mod +scu-pd +sd_mod +sec-core +sec-irq +selftests +seqiv +serdev +serial_core +serial_mctrl_gpio +serio +sg +sh_cmt +sh_tmu +sha1_generic +sha256_generic +sha512_generic +shpchp +simple-pm-bus +skcipher +slhc +smc91x +spi-fsl-lib +spi-fsl-spi +spi-omap2-mcspi +spm +squashfs +sr_mod +stmpe-i2c +stmpe-spi +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 +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 +utf8data +vexpress-config +vexpress-sysreg +vfat +vid-pll-div +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +vivaldi-fmap +watch_queue +watchdog +wwan +wwnr +x509_key_parser +xen-blkfront +xen-netfront +xenbus +xenbus_probe_frontend +xgmac_mdio +xhci-hcd +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap +zynqmp-ipi-mailbox only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/arm64/generic.modules.builtin +++ linux-6.2.0/debian.master/abi/arm64/generic.modules.builtin @@ -0,0 +1,529 @@ +8250 +8250_base +8250_dw +8250_mtk +8250_of +8250_omap +8250_pci +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 +arm_smmu +arm_smmu_v3 +armada_thermal +armmmci +as3722 +as3722-poweroff +asiliantfb +asn1_decoder +asn1_encoder +asymmetric_keys +atkbd +axg +axg-aoclk +backlight +battery +bcm84881 +binfmt_elf +binfmt_script +brcmstb_gisb +bsg +btree +button +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +charger-manager +clk-apmixed +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-imx8mq +clk-mpll +clk-mt6779 +clk-mt6779-aud +clk-mt6779-cam +clk-mt6779-img +clk-mt6779-ipe +clk-mt6779-mfg +clk-mt6779-mm +clk-mt6779-vdec +clk-mt6779-venc +clk-mtk +clk-mux +clk-pll +clk-pll +clk-regmap +clk-vexpress-osc +cma_heap +cmd-db +cn +compat_binfmt_elf +configfs +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crc8 +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da903x +da9052-core +da9052-i2c +da9052-spi +da9055 +da9063 +davinci_mdio +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +dwc2 +ecb +ecryptfs +edac_core +efivarfs +ehci-hcd +ehci-orion +ehci-pci +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fan +fat +fb +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 +g12a-aoclk +gcm +geniv +gf128mul +ghash-generic +ghes_edac +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-davinci +gpio-generic +gpio-imx-scu +gpio-mxc +gpio-pl061 +gpio-poweroff +gpio-restart +gpio-tegra +gpio-tegra186 +gpio-xilinx +grant-dma-ops +gxbb +gxbb-aoclk +hed +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 +input-core +interconnect_qcom +ioasid +iova +ipu_idmac +ipv6 +irq-al-fic +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 +k3-psil-lib +k3-ringacc +k3-udma +k3-udma-glue +kdf_sp800108 +kgdboc +kpp +kvm +led-class +libaes +libahci +libahci_platform +libata +libblake2s +libcryptoutils +libnvdimm +libphy +libps2 +libsha1 +libsha256 +linear_ranges +loop +lp8788 +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +max14577 +max310x +max77686 +max77693 +mbcache +mctp +md-mod +md5 +mdio-bitbang +mdio_devres +meson-aoclk +meson-clk-measure +meson-ee-pwrc +meson-eeclk +meson-gx-pwrc-vpu +meson-secure-pwrc +meson_sm +meson_uart +mfd-core +mii +mmc_block +mmc_core +mousedev +mpi +mq-deadline +msm_serial +mt6323-poweroff +mtk-eint +mv_xor_v2 +mx3fb +mxc-clk +n_null +nfs_ssc +nls_base +nls_cp437 +npcm_wdt +nvmem_core +nvmem_zynqmp_nvmem +of_mdio +ohci-hcd +ohci-pci +oid_registry +omap-gpmc +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-meson-axg-mipi-pcie-analog +phy-meson-axg-pcie +phy-mxs-usb +phy-xgene +phylink +pinctrl-amd +pinctrl-as3722 +pinctrl-imx +pinctrl-imx8dxl +pinctrl-imx8mm +pinctrl-imx8mn +pinctrl-imx8mp +pinctrl-imx8mq +pinctrl-imx8qm +pinctrl-imx8qxp +pinctrl-meson +pinctrl-meson-a1 +pinctrl-meson-axg +pinctrl-meson-axg-pmx +pinctrl-meson-g12a +pinctrl-meson-gxbb +pinctrl-meson-gxl +pinctrl-meson8-pmx +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-scu +pinctrl-single +pinctrl-sprd +pinctrl-sprd-sc9860 +pkcs7_message +pldmfw +power_supply +powercap_sys +ppp_generic +pps_core +pretimeout_noop +processor +pstore +ptp +public_key +qcom-ebi2 +qcom-ipcc +qcom-pdc +qcom-scm +qcom-ssc-block-bus +qcom_rpmh +rapidio +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-imx7 +reset-meson +reset-microchip-sparx5 +reset-qcom-aoss +restart-poweroff +rfkill +rng +rng-core +rockchip-mailbox +roles +rpmhpd +rsa_generic +rtc-efi +rtc-mv +rtc-xgene +rzg2l-cpg +sccnxp +scmi-module +scsi_common +scsi_mod +scu-pd +sd_mod +sec-core +sec-irq +selftests +seqiv +serdev +serial_core +serial_mctrl_gpio +serio +sg +sh_cmt +sh_tmu +sha1_generic +sha256_generic +sha512_generic +shpchp +simple-pm-bus +skcipher +slhc +smc91x +spi-fsl-lib +spi-fsl-spi +spi-omap2-mcspi +spm +squashfs +sr_mod +stmpe-i2c +stmpe-spi +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 +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 +utf8data +vexpress-config +vexpress-sysreg +vfat +vid-pll-div +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +vivaldi-fmap +watch_queue +watchdog +wwan +wwnr +x509_key_parser +xen-blkfront +xen-netfront +xenbus +xenbus_probe_frontend +xgmac_mdio +xhci-hcd +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap +zynqmp-ipi-mailbox only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/armhf/generic-lpae.modules.builtin +++ linux-6.2.0/debian.master/abi/armhf/generic-lpae.modules.builtin @@ -0,0 +1,499 @@ +8250 +8250_base +8250_mtk +8250_of +8250_omap +8250_pci +8250_tegra +88pm860x +ac97_bus +adpll +aead +aes_generic +af_packet +ahci_imx +ahci_platform +akcipher +altera-sysmgr +altera_edac +amba-pl011 +arm-cci +arm-cci +arm-ccn +armada_thermal +armada_xp_edac +armmmci +as3722 +as3722-poweroff +asiliantfb +asn1_decoder +asn1_encoder +aspeed_wdt +asymmetric_keys +atkbd +backlight +bch +bcm84881 +binfmt_elf +binfmt_elf_fdpic +binfmt_script +brcmstb_gisb +bsg +btree +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +charger-manager +chipreg +clk-apmixed +clk-axm5516 +clk-cpumux +clk-fixed-mmio +clk-gate +clk-hi3559a +clk-imx8mm +clk-imx8mn +clk-imx8mp +clk-imx8mq +clk-mpll +clk-mtk +clk-mux +clk-pll +clk-pll +clk-regmap +clk-vexpress-osc +cma_heap +cmd-db +cmdlinepart +cn +configfs +cpsw-common +cpts +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +cpuidle-mvebu-v7 +cqhci +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crc8 +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da903x +da9052-core +da9052-i2c +da9052-spi +da9055 +da9063 +davinci_mdio +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +dwc2 +ecb +ecryptfs +edac_core +edma +efivarfs +ehci-hcd +ehci-orion +ehci-pci +em_sti +emxx_udc +encrypted-keys +evdev +exportfs +ext4 +extcon-core +exynos_thermal +ezx-pcap +fat +fb +fddi +fec +firmware_class +fixed +fixed_phy +font +freq_table +fuse +fwnode_mdio +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-aspeed-sgpio +gpio-generic +gpio-imx-scu +gpio-mxc +gpio-omap +gpio-pl061 +gpio-poweroff +gpio-rda +gpio-restart +gpio-tegra +gpio-twl4030 +gpio-twl6040 +gpio-xilinx +hmac +hwmon +hwspinlock_core +i2c-core +i2c-designware-core +i2c-designware-platform +i2c-dev +i2c-imx +i2c-omap +icc-core +imsttfb +imx +imx-pcm-dma +imx-pcm-fiq +imx-scu +imx-weim +input-core +interconnect_qcom +ipu_idmac +ipv6 +irq-al-fic +irq-meson-gpio +irq-renesas-intc-irqpin +irq-renesas-irqc +irq-renesas-rza1 +jbd2 +jitterentropy_rng +kdf_sp800108 +kgdboc +kpp +led-class +leds-asic3 +libaes +libahci +libahci_platform +libata +libblake2s +libcryptoutils +libnvdimm +libphy +libps2 +libsha1 +libsha256 +linear_ranges +loop +lp8788 +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +map_funcs +max14577 +max310x +max77686 +max77693 +mbcache +mctp +md-mod +md5 +mdio-bitbang +mdio_devres +meson-clk-measure +meson-ee-pwrc +meson-gx-pwrc-vpu +meson_uart +mfd-core +mii +mmc_block +mmc_core +mousedev +mpi +mq-deadline +msm_serial +mt6323-poweroff +mtd +mtd_blkdevs +mtdblock +mtk-eint +musb_hdrc +mvebu-devbus +mx3fb +mxc-clk +n_null +nand +nandcore +nfs_ssc +nls_base +nls_cp437 +npcm_wdt +nvmem_core +of_mdio +ofpart +ohci-hcd +ohci-pci +oid_registry +omap-cpufreq +omap-dma +omap-gpmc +omap-usb-host +omap-usb-tll +omap2_nand +omap_elm +omap_hsmmc +omap_l3_noc +omap_l3_smx +owl-uart +packing +palmas +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-host-common +pci-host-generic +pci-mvebu +pci-tegra +pcie-altera +pcie-altera-msi +pcie-histb +pcie-mediatek +pcie-microchip-host +phy-generic +phy-gmii-sel +phy-meson-axg-mipi-pcie-analog +phy-meson-axg-pcie +phy-mxs-usb +pinctrl-as3722 +pinctrl-imx +pinctrl-meson +pinctrl-meson8-pmx +pinctrl-microchip-sgpio +pinctrl-msm +pinctrl-mtk-common-v2 +pinctrl-npcm7xx +pinctrl-ocelot +pinctrl-palmas +pinctrl-rockchip +pinctrl-rza1 +pinctrl-rza2 +pinctrl-rzn1 +pinctrl-s500 +pinctrl-single +pinctrl-ti-iodelay +pkcs7_message +pldmfw +power_supply +powercap_sys +ppp_generic +pps_core +pretimeout_noop +pstore +ptp +public_key +qcom-ebi2 +qcom-ipcc +qcom-pdc +qcom-scm +qcom-ssc-block-bus +qcom_rpmh +ramoops +rapidio +rational +rcar-usb2-clock-sel +rda-uart +reactor_panic +reactor_printk +reed_solomon +regmap-i2c +regmap-mmio +regmap-spi +regulator-poweroff +remoteproc +renesas-cpg-mssr +reset +reset-berlin +reset-imx7 +reset-meson +reset-qcom-aoss +restart-poweroff +rfkill +rng +rng-core +rockchip-mailbox +roles +rpmhpd +rsa_generic +rtc-efi +rtc-mv +rtc-omap +rtc-pcf8523 +rtc-pl031 +rtc-twl +sata_highbank +sccnxp +scmi-module +scsi_common +scsi_mod +scu-pd +sd_mod +sdhci +sdhci-esdhc-imx +sdhci-pltfm +sec-core +sec-irq +selftests +seqiv +serdev +serial_core +serial_mctrl_gpio +serio +sg +sh_cmt +sh_mtu2 +sh_tmu +sha1_generic +sha256_generic +sha512_generic +simple-pm-bus +skcipher +slhc +sm501 +smc91x +snd +snd-compress +snd-pcm +snd-pcm-dmaengine +snd-soc-core +snd-soc-fsl-ssi +snd-soc-imx-audmux +snd-soc-imx-sgtl5000 +snd-soc-sgtl5000 +snd-timer +soundcore +spi-fsl-lib +spi-fsl-spi +spi-omap2-mcspi +spm +sppinctrl +squashfs +sr_mod +stmpe-i2c +stmpe-spi +sunplus-uart +system_heap +t10-pi +t7l66xb +tc3589x +tc6387xb +tc6393xb +tcp_cubic +tegra-ahb +tegra-mc +tegra-tcu +tegra124-cpufreq +tegra124-emc +tegra20-apb-dma +tegra20-cpufreq +tegra20-emc +tegra30-emc +ti-abb-regulator +ti-cpufreq +ti-opp-supply +ti-pwmss +ti-sysc +ti_cpsw +timer-tegra186 +timer-ti-dm +tpm +tpm_tis +tpm_tis_core +tps65086-restart +tps65217 +tps65217-regulator +tps6586x +tps65912-core +tps65912-i2c +tps65912-spi +trusted +ttyprintk +tun +twl-regulator +twl4030-audio +twl4030-power +twl6030-regulator +twl6040 +ucs2_string +udc-core +udmabuf +uhci-hcd +uinput +unicode +unix +usb-common +usbcore +utf8data +vexpress-config +vexpress-sysreg +vfat +virt-dma +virtio +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +vivaldi-fmap +watch_queue +watchdog +wwan +wwnr +x509_key_parser +xgmac_mdio +xhci-hcd +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/armhf/generic.modules.builtin +++ linux-6.2.0/debian.master/abi/armhf/generic.modules.builtin @@ -0,0 +1,499 @@ +8250 +8250_base +8250_mtk +8250_of +8250_omap +8250_pci +8250_tegra +88pm860x +ac97_bus +adpll +aead +aes_generic +af_packet +ahci_imx +ahci_platform +akcipher +altera-sysmgr +altera_edac +amba-pl011 +arm-cci +arm-cci +arm-ccn +armada_thermal +armada_xp_edac +armmmci +as3722 +as3722-poweroff +asiliantfb +asn1_decoder +asn1_encoder +aspeed_wdt +asymmetric_keys +atkbd +backlight +bch +bcm84881 +binfmt_elf +binfmt_elf_fdpic +binfmt_script +brcmstb_gisb +bsg +btree +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +charger-manager +chipreg +clk-apmixed +clk-cpumux +clk-fixed-mmio +clk-gate +clk-hi3559a +clk-imx8mm +clk-imx8mn +clk-imx8mp +clk-imx8mq +clk-mpll +clk-mtk +clk-mux +clk-pll +clk-pll +clk-regmap +clk-vexpress-osc +cma_heap +cmd-db +cmdlinepart +cn +configfs +cpsw-common +cpts +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +cpuidle-mvebu-v7 +cqhci +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crc8 +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da903x +da9052-core +da9052-i2c +da9052-spi +da9055 +da9063 +davinci_mdio +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +dwc2 +ecb +ecryptfs +edac_core +edma +efivarfs +ehci-hcd +ehci-orion +ehci-pci +em_sti +emxx_udc +encrypted-keys +evdev +exportfs +ext4 +extcon-core +exynos_thermal +ezx-pcap +fat +fb +fddi +fec +firmware_class +fixed +fixed_phy +font +freq_table +fuse +fwnode_mdio +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-aspeed-sgpio +gpio-generic +gpio-imx-scu +gpio-mxc +gpio-omap +gpio-pl061 +gpio-poweroff +gpio-rda +gpio-restart +gpio-tegra +gpio-twl4030 +gpio-twl6040 +gpio-xilinx +hmac +hwmon +hwspinlock_core +i2c-core +i2c-designware-core +i2c-designware-platform +i2c-dev +i2c-imx +i2c-omap +icc-core +imsttfb +imx +imx-pcm-dma +imx-pcm-fiq +imx-scu +imx-weim +input-core +interconnect_qcom +ipu_idmac +ipv6 +irq-al-fic +irq-meson-gpio +irq-renesas-intc-irqpin +irq-renesas-irqc +irq-renesas-rza1 +jbd2 +jitterentropy_rng +kdf_sp800108 +kgdboc +kpp +led-class +leds-asic3 +libaes +libahci +libahci_platform +libata +libblake2s +libcryptoutils +libphy +libps2 +libsha1 +libsha256 +linear_ranges +loop +lp8788 +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +map_funcs +max14577 +max310x +max77686 +max77693 +mbcache +mctp +md-mod +md5 +mdio-bitbang +mdio_devres +meson-clk-measure +meson-ee-pwrc +meson-gx-pwrc-vpu +meson_uart +mfd-core +mii +mmc_block +mmc_core +mousedev +mpi +mq-deadline +msm_serial +mt6323-poweroff +mtd +mtd_blkdevs +mtdblock +mtk-eint +musb_hdrc +mvebu-devbus +mx3fb +mxc-clk +n_null +nand +nandcore +nfs_ssc +nls_base +nls_cp437 +npcm_wdt +nvmem_core +of_mdio +ofpart +ohci-hcd +ohci-pci +oid_registry +omap-cpufreq +omap-dma +omap-gpmc +omap-usb-host +omap-usb-tll +omap2_nand +omap_elm +omap_hsmmc +omap_l3_noc +omap_l3_smx +owl-uart +packing +palmas +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-host-common +pci-host-generic +pci-mvebu +pci-tegra +pcie-altera +pcie-altera-msi +pcie-histb +pcie-mediatek +pcie-microchip-host +phy-generic +phy-gmii-sel +phy-meson-axg-mipi-pcie-analog +phy-meson-axg-pcie +phy-mxs-usb +pinctrl-as3722 +pinctrl-imx +pinctrl-meson +pinctrl-meson8-pmx +pinctrl-microchip-sgpio +pinctrl-msm +pinctrl-mtk-common-v2 +pinctrl-npcm7xx +pinctrl-ocelot +pinctrl-palmas +pinctrl-rockchip +pinctrl-rza1 +pinctrl-rza2 +pinctrl-rzn1 +pinctrl-s500 +pinctrl-single +pinctrl-ti-iodelay +pkcs7_message +pldmfw +power_supply +powercap_sys +ppp_generic +pps_core +pretimeout_noop +pstore +ptp +public_key +qcom-ebi2 +qcom-ipcc +qcom-pdc +qcom-scm +qcom-ssc-block-bus +qcom_rpmh +ramoops +rapidio +rational +rcar-usb2-clock-sel +rda-uart +reactor_panic +reactor_printk +reed_solomon +regmap-i2c +regmap-mmio +regmap-spi +regulator-poweroff +remoteproc +renesas-cpg-mssr +reset +reset-berlin +reset-imx7 +reset-meson +reset-qcom-aoss +restart-poweroff +rfkill +rng +rng-core +rockchip-mailbox +roles +rpmhpd +rsa_generic +rtc-efi +rtc-mv +rtc-omap +rtc-pcf8523 +rtc-pl031 +rtc-twl +sata_highbank +sccnxp +scmi-module +scsi_common +scsi_mod +scu-pd +sd_mod +sdhci +sdhci-esdhc-imx +sdhci-pltfm +sec-core +sec-irq +selftests +seqiv +serdev +serial_core +serial_mctrl_gpio +serio +sg +sh_cmt +sh_mtu2 +sh_tmu +sha1_generic +sha256_generic +sha512_generic +simple-pm-bus +skcipher +slhc +sm501 +smartreflex +smc91x +snd +snd-compress +snd-pcm +snd-pcm-dmaengine +snd-soc-core +snd-soc-fsl-ssi +snd-soc-imx-audmux +snd-soc-imx-sgtl5000 +snd-soc-sgtl5000 +snd-timer +soundcore +spi-fsl-lib +spi-fsl-spi +spi-omap2-mcspi +spm +sppinctrl +squashfs +sr_mod +stmpe-i2c +stmpe-spi +sunplus-uart +system_heap +t10-pi +t7l66xb +tc3589x +tc6387xb +tc6393xb +tcp_cubic +tegra-ahb +tegra-mc +tegra-tcu +tegra124-cpufreq +tegra124-emc +tegra20-apb-dma +tegra20-cpufreq +tegra20-emc +tegra30-emc +ti-abb-regulator +ti-cpufreq +ti-opp-supply +ti-pwmss +ti-sysc +ti_cpsw +timer-tegra186 +timer-ti-dm +tpm +tpm_tis +tpm_tis_core +tps65086-restart +tps65217 +tps65217-regulator +tps6586x +tps65912-core +tps65912-i2c +tps65912-spi +trusted +ttyprintk +tun +twl-regulator +twl4030-audio +twl4030-power +twl6030-regulator +twl6040 +ucs2_string +udc-core +udmabuf +uhci-hcd +uinput +unicode +unix +usb-common +usbcore +utf8data +vexpress-config +vexpress-sysreg +vfat +virt-dma +virtio +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +vivaldi-fmap +vrfb +watch_queue +watchdog +wwan +wwnr +x509_key_parser +xgmac_mdio +xhci-hcd +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/ppc64el/generic.modules.builtin +++ linux-6.2.0/debian.master/abi/ppc64el/generic.modules.builtin @@ -0,0 +1,301 @@ +8250 +8250_base +8250_of +8250_pci +88pm860x +aead +aes_generic +af_packet +agpgart +akcipher +as3722 +as3722-poweroff +asiliantfb +asn1_decoder +asn1_encoder +asymmetric_keys +atkbd +backlight +bcm84881 +binfmt_elf +binfmt_script +bitrev +bsg +btree +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +charger-manager +clk-fixed-mmio +cn +compat_binfmt_elf +configfs +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da903x +da9052-core +da9052-i2c +da9052-spi +da9055 +da9063 +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drop_monitor +dwc2 +ecb +ecryptfs +edac_core +ehci-hcd +ehci-pci +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fat +fb +fddi +firmware_class +fixed_phy +font +freq_table +fuse +fwnode_mdio +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-generic +gpio-poweroff +gpio-restart +gpio-xilinx +gxt4500 +hmac +hwmon +hwspinlock_core +i2c-core +i2c-designware-core +i2c-designware-platform +i2c-dev +i2c-opal +i8042 +icc-core +imsttfb +input-core +ipv6 +irq-al-fic +irqbypass +jbd2 +jitterentropy_rng +kdf_sp800108 +kgdboc +kpp +led-class +libaes +libata +libblake2s +libcryptoutils +libnvdimm +libphy +libps2 +libsha1 +libsha256 +linear_ranges +loop +lp8788 +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +max14577 +max310x +max77686 +max77693 +mbcache +mctp +md-mod +md5 +mdio_devres +mfd-core +mmc_core +mousedev +mpi +mq-deadline +mt6323-poweroff +n_null +nfs_ssc +nls_base +nls_cp437 +nvmem_core +nvram +of_mdio +ohci-hcd +ohci-pci +oid_registry +packing +palmas +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-host-common +pci-host-generic +pcie-microchip-host +pinctrl-as3722 +pinctrl-microchip-sgpio +pinctrl-ocelot +pinctrl-palmas +pinctrl-single +pkcs7_message +pldmfw +power_supply +powercap_sys +powernv-cpufreq +ppp_generic +pps_core +pretimeout_noop +pstore +ptp +public_key +rapidio +rational +reactor_panic +reactor_printk +regmap-i2c +regmap-mmio +regmap-spi +regulator-poweroff +remoteproc +restart-poweroff +rfkill +rng +rng-core +roles +rsa_generic +rtc-generic +rtc-opal +sccnxp +scsi_common +scsi_mod +scsi_transport_srp +sd_mod +sec-core +sec-irq +selftests +seqiv +serdev +serial_core +serial_mctrl_gpio +serio +sg +sha1_generic +sha256_generic +sha512_generic +simple-pm-bus +skcipher +slhc +spi-fsl-lib +spi-fsl-spi +squashfs +sr_mod +stmpe-i2c +stmpe-spi +system_heap +t10-pi +tc3589x +tcp_cubic +tpm +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_ibmvtpm +tpm_tis +tpm_tis_core +tps65086-restart +tps6586x +tps65912-core +tps65912-i2c +tps65912-spi +trusted +ttyprintk +tun +twl4030-audio +twl6040 +udmabuf +uhci-hcd +uinput +unicode +unix +usb-common +usbcore +utf8data +vfat +vgacon +virtio +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +vivaldi-fmap +watch_queue +watchdog +wwan +wwnr +x509_key_parser +xgmac_mdio +xhci-hcd +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/abi/s390x/generic.modules.builtin +++ linux-6.2.0/debian.master/abi/s390x/generic.modules.builtin @@ -0,0 +1,160 @@ +aead +aes_generic +af_packet +akcipher +asn1_decoder +asn1_encoder +asymmetric_keys +autofs4 +binfmt_elf +binfmt_script +bitrev +bsg +cbc +cdrom +cmm +cn +compat_binfmt_elf +configfs +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc64 +crc64-rocksoft +crc64_rocksoft_generic +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +dax +deflate +dh_generic +digsig +dm-mod +dns_resolver +drbg +drop_monitor +ecb +ecryptfs +encrypted-keys +evdev +exportfs +ext4 +fat +fb +firmware_class +fixed_phy +font +fuse +gcm +geniv +gf128mul +ghash-generic +glob +hmac +input-core +ipv6 +iucv +jbd2 +jitterentropy_rng +kdf_sp800108 +kpp +kvm +libaes +libblake2s +libcryptoutils +libphy +libsha1 +libsha256 +loop +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +mbcache +md-mod +md5 +mdio_devres +mpi +mq-deadline +multipath +n_null +nfs_ssc +nls_base +nls_cp437 +oid_registry +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pkcs7_message +pps_core +pretimeout_noop +public_key +raw3270 +reactor_panic +reactor_printk +restart-poweroff +rng +rng-core +rsa_generic +scsi_common +scsi_mod +sd_mod +selftests +seqiv +serdev +sg +sha1_generic +sha256_generic +sha512_generic +skcipher +smsgiucv +squashfs +sr_mod +system_heap +t10-pi +tcp_cubic +tpm +trusted +tty3270 +tun +udmabuf +unicode +unix +utf8data +vfat +virtio +virtio_balloon +virtio_console +virtio_pci +virtio_pci_legacy_dev +virtio_pci_modern_dev +virtio_ring +virtio_scsi +watch_queue +watchdog +wwnr +x509_key_parser +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_dfltcc +zlib_inflate +zpool +zsmalloc +zstd_common +zstd_compress +zstd_decompress +zswap only in patch2: unchanged: --- linux-6.2.0.orig/debian.master/upstream-stable +++ linux-6.2.0/debian.master/upstream-stable @@ -0,0 +1,5 @@ +# The following upstream stable releases have been ported: +[upstream-stable] + linux-6.1.y = v6.1.32 + linux-6.2.y = v6.2.16 + linux-6.3.y = v6.3.6 only in patch2: unchanged: --- linux-6.2.0.orig/drivers/acpi/acpi_apd.c +++ linux-6.2.0/drivers/acpi/acpi_apd.c @@ -83,6 +83,8 @@ if (!acpi_dev_get_property(adev, "clk-name", ACPI_TYPE_STRING, &obj)) { clk_data->name = devm_kzalloc(&adev->dev, obj->string.length, GFP_KERNEL); + if (!clk_data->name) + return -ENOMEM; strcpy(clk_data->name, obj->string.pointer); } else { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/acpi/acpica/dbnames.c +++ linux-6.2.0/drivers/acpi/acpica/dbnames.c @@ -652,6 +652,9 @@ object_info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_object_info)); + if (!object_info) + return (AE_NO_MEMORY); + /* Walk the namespace from the root */ (void)acpi_walk_namespace(ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/acpi/acpica/dswstate.c +++ linux-6.2.0/drivers/acpi/acpica/dswstate.c @@ -576,9 +576,14 @@ ACPI_FUNCTION_TRACE(ds_init_aml_walk); walk_state->parser_state.aml = - walk_state->parser_state.aml_start = aml_start; - walk_state->parser_state.aml_end = - walk_state->parser_state.pkg_end = aml_start + aml_length; + walk_state->parser_state.aml_start = + walk_state->parser_state.aml_end = + walk_state->parser_state.pkg_end = aml_start; + /* Avoid undefined behavior: applying zero offset to null pointer */ + if (aml_length != 0) { + walk_state->parser_state.aml_end += aml_length; + walk_state->parser_state.pkg_end += aml_length; + } /* The next_op of the next_walk will be the beginning of the method */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/acpi/ec.c +++ linux-6.2.0/drivers/acpi/ec.c @@ -1122,6 +1122,7 @@ void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit) { acpi_ec_remove_query_handlers(ec, false, query_bit); + flush_workqueue(ec_query_wq); } EXPORT_SYMBOL_GPL(acpi_ec_remove_query_handler); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/android/binder_alloc_selftest.c +++ linux-6.2.0/drivers/android/binder_alloc_selftest.c @@ -287,7 +287,7 @@ if (!binder_selftest_run) return; mutex_lock(&binder_selftest_lock); - if (!binder_selftest_run || !alloc->vma_addr) + if (!binder_selftest_run || !alloc->vma) goto done; pr_info("STARTED\n"); binder_selftest_alloc_offset(alloc, end_offset, 0); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/base/regmap/regcache.c +++ linux-6.2.0/drivers/base/regmap/regcache.c @@ -349,6 +349,9 @@ const char *name; bool bypass; + if (WARN_ON(map->cache_type == REGCACHE_NONE)) + return -EINVAL; + BUG_ON(!map->cache_ops); map->lock(map->lock_arg); @@ -418,6 +421,9 @@ const char *name; bool bypass; + if (WARN_ON(map->cache_type == REGCACHE_NONE)) + return -EINVAL; + BUG_ON(!map->cache_ops); map->lock(map->lock_arg); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/bluetooth/btintel.c +++ linux-6.2.0/drivers/bluetooth/btintel.c @@ -2553,9 +2553,8 @@ */ set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks); - /* Valid LE States quirk for GfP */ - if (INTEL_HW_VARIANT(ver_tlv.cnvi_bt) == 0x18) - set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks); + /* Apply LE States quirk from solar onwards */ + set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks); /* Setup MSFT Extension support */ btintel_set_msft_opcode(hdev, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/bluetooth/btrtl.c +++ linux-6.2.0/drivers/bluetooth/btrtl.c @@ -17,19 +17,25 @@ #define VERSION "0.1" +#define RTL_CHIP_8723CS_CG 3 +#define RTL_CHIP_8723CS_VF 4 +#define RTL_CHIP_8723CS_XX 5 #define RTL_EPATCH_SIGNATURE "Realtech" +#define RTL_ROM_LMP_8703B 0x8703 #define RTL_ROM_LMP_8723A 0x1200 #define RTL_ROM_LMP_8723B 0x8723 #define RTL_ROM_LMP_8821A 0x8821 #define RTL_ROM_LMP_8761A 0x8761 #define RTL_ROM_LMP_8822B 0x8822 #define RTL_ROM_LMP_8852A 0x8852 +#define RTL_ROM_LMP_8851B 0x8851 #define RTL_CONFIG_MAGIC 0x8723ab55 #define IC_MATCH_FL_LMPSUBV (1 << 0) #define IC_MATCH_FL_HCIREV (1 << 1) #define IC_MATCH_FL_HCIVER (1 << 2) #define IC_MATCH_FL_HCIBUS (1 << 3) +#define IC_MATCH_FL_CHIP_TYPE (1 << 4) #define IC_INFO(lmps, hcir, hciv, bus) \ .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_HCIREV | \ IC_MATCH_FL_HCIVER | IC_MATCH_FL_HCIBUS, \ @@ -51,6 +57,7 @@ CHIP_ID_8852A = 18, CHIP_ID_8852B = 20, CHIP_ID_8852C = 25, + CHIP_ID_8851B = 36, }; struct id_table { @@ -59,6 +66,7 @@ __u16 hci_rev; __u8 hci_ver; __u8 hci_bus; + __u8 chip_type; bool config_needed; bool has_rom_version; bool has_msft_ext; @@ -99,6 +107,39 @@ .fw_name = "rtl_bt/rtl8723b_fw.bin", .cfg_name = "rtl_bt/rtl8723b_config" }, + /* 8723CS-CG */ + { .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_CHIP_TYPE | + IC_MATCH_FL_HCIBUS, + .lmp_subver = RTL_ROM_LMP_8703B, + .chip_type = RTL_CHIP_8723CS_CG, + .hci_bus = HCI_UART, + .config_needed = true, + .has_rom_version = true, + .fw_name = "rtl_bt/rtl8723cs_cg_fw.bin", + .cfg_name = "rtl_bt/rtl8723cs_cg_config" }, + + /* 8723CS-VF */ + { .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_CHIP_TYPE | + IC_MATCH_FL_HCIBUS, + .lmp_subver = RTL_ROM_LMP_8703B, + .chip_type = RTL_CHIP_8723CS_VF, + .hci_bus = HCI_UART, + .config_needed = true, + .has_rom_version = true, + .fw_name = "rtl_bt/rtl8723cs_vf_fw.bin", + .cfg_name = "rtl_bt/rtl8723cs_vf_config" }, + + /* 8723CS-XX */ + { .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_CHIP_TYPE | + IC_MATCH_FL_HCIBUS, + .lmp_subver = RTL_ROM_LMP_8703B, + .chip_type = RTL_CHIP_8723CS_XX, + .hci_bus = HCI_UART, + .config_needed = true, + .has_rom_version = true, + .fw_name = "rtl_bt/rtl8723cs_xx_fw.bin", + .cfg_name = "rtl_bt/rtl8723cs_xx_config" }, + /* 8723D */ { IC_INFO(RTL_ROM_LMP_8723B, 0xd, 0x8, HCI_USB), .config_needed = true, @@ -205,10 +246,19 @@ .has_msft_ext = true, .fw_name = "rtl_bt/rtl8852cu_fw.bin", .cfg_name = "rtl_bt/rtl8852cu_config" }, + + /* 8851B */ + { IC_INFO(RTL_ROM_LMP_8851B, 0xb, 0xc, HCI_USB), + .config_needed = false, + .has_rom_version = true, + .has_msft_ext = false, + .fw_name = "rtl_bt/rtl8851bu_fw.bin", + .cfg_name = "rtl_bt/rtl8851bu_config" }, }; static const struct id_table *btrtl_match_ic(u16 lmp_subver, u16 hci_rev, - u8 hci_ver, u8 hci_bus) + u8 hci_ver, u8 hci_bus, + u8 chip_type) { int i; @@ -225,6 +275,9 @@ if ((ic_id_table[i].match_flags & IC_MATCH_FL_HCIBUS) && (ic_id_table[i].hci_bus != hci_bus)) continue; + if ((ic_id_table[i].match_flags & IC_MATCH_FL_CHIP_TYPE) && + (ic_id_table[i].chip_type != chip_type)) + continue; break; } @@ -307,6 +360,7 @@ { RTL_ROM_LMP_8723B, 1 }, { RTL_ROM_LMP_8821A, 2 }, { RTL_ROM_LMP_8761A, 3 }, + { RTL_ROM_LMP_8703B, 7 }, { RTL_ROM_LMP_8822B, 8 }, { RTL_ROM_LMP_8723B, 9 }, /* 8723D */ { RTL_ROM_LMP_8821A, 10 }, /* 8821C */ @@ -315,6 +369,7 @@ { RTL_ROM_LMP_8852A, 18 }, /* 8852A */ { RTL_ROM_LMP_8852A, 20 }, /* 8852B */ { RTL_ROM_LMP_8852A, 25 }, /* 8852C */ + { RTL_ROM_LMP_8851B, 36 }, /* 8851B */ }; min_size = sizeof(struct rtl_epatch_header) + sizeof(extension_sig) + 3; @@ -587,6 +642,48 @@ return ret; } +static bool rtl_has_chip_type(u16 lmp_subver) +{ + switch (lmp_subver) { + case RTL_ROM_LMP_8703B: + return true; + default: + break; + } + + return false; +} + +static int rtl_read_chip_type(struct hci_dev *hdev, u8 *type) +{ + struct rtl_chip_type_evt *chip_type; + struct sk_buff *skb; + const unsigned char cmd_buf[] = {0x00, 0x94, 0xa0, 0x00, 0xb0}; + + /* Read RTL chip type command */ + skb = __hci_cmd_sync(hdev, 0xfc61, 5, cmd_buf, HCI_INIT_TIMEOUT); + if (IS_ERR(skb)) { + rtl_dev_err(hdev, "Read chip type failed (%ld)", + PTR_ERR(skb)); + return PTR_ERR(skb); + } + + chip_type = skb_pull_data(skb, sizeof(*chip_type)); + if (!chip_type) { + rtl_dev_err(hdev, "RTL chip type event length mismatch"); + kfree_skb(skb); + return -EIO; + } + + rtl_dev_info(hdev, "chip_type status=%x type=%x", + chip_type->status, chip_type->type); + + *type = chip_type->type & 0x0f; + + kfree_skb(skb); + return 0; +} + void btrtl_free(struct btrtl_device_info *btrtl_dev) { kvfree(btrtl_dev->fw_data); @@ -603,7 +700,7 @@ struct hci_rp_read_local_version *resp; char cfg_name[40]; u16 hci_rev, lmp_subver; - u8 hci_ver; + u8 hci_ver, chip_type = 0; int ret; u16 opcode; u8 cmd[2]; @@ -629,8 +726,14 @@ hci_rev = le16_to_cpu(resp->hci_rev); lmp_subver = le16_to_cpu(resp->lmp_subver); + if (rtl_has_chip_type(lmp_subver)) { + ret = rtl_read_chip_type(hdev, &chip_type); + if (ret) + goto err_free; + } + btrtl_dev->ic_info = btrtl_match_ic(lmp_subver, hci_rev, hci_ver, - hdev->bus); + hdev->bus, chip_type); if (!btrtl_dev->ic_info) btrtl_dev->drop_fw = true; @@ -673,7 +776,7 @@ lmp_subver = le16_to_cpu(resp->lmp_subver); btrtl_dev->ic_info = btrtl_match_ic(lmp_subver, hci_rev, hci_ver, - hdev->bus); + hdev->bus, chip_type); } out_free: kfree_skb(skb); @@ -755,6 +858,8 @@ case RTL_ROM_LMP_8761A: case RTL_ROM_LMP_8822B: case RTL_ROM_LMP_8852A: + case RTL_ROM_LMP_8703B: + case RTL_ROM_LMP_8851B: return btrtl_setup_rtl8723b(hdev, btrtl_dev); default: rtl_dev_info(hdev, "assuming no firmware upload needed"); @@ -779,6 +884,7 @@ case CHIP_ID_8852A: case CHIP_ID_8852B: case CHIP_ID_8852C: + case CHIP_ID_8851B: set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks); set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks); @@ -795,6 +901,22 @@ rtl_dev_dbg(hdev, "WBS supported not enabled."); break; } + + if (!btrtl_dev->ic_info) + return; + + switch (btrtl_dev->ic_info->lmp_subver) { + case RTL_ROM_LMP_8703B: + /* 8723CS reports two pages for local ext features, + * but it doesn't support any features from page 2 - + * it either responds with garbage or with error status + */ + set_bit(HCI_QUIRK_BROKEN_LOCAL_EXT_FEATURES_PAGE_2, + &hdev->quirks); + break; + default: + break; + } } EXPORT_SYMBOL_GPL(btrtl_set_quirks); @@ -953,6 +1075,12 @@ MODULE_FIRMWARE("rtl_bt/rtl8723b_config.bin"); MODULE_FIRMWARE("rtl_bt/rtl8723bs_fw.bin"); MODULE_FIRMWARE("rtl_bt/rtl8723bs_config.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8723cs_cg_fw.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8723cs_cg_config.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8723cs_vf_fw.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8723cs_vf_config.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8723cs_xx_fw.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8723cs_xx_config.bin"); MODULE_FIRMWARE("rtl_bt/rtl8723ds_fw.bin"); MODULE_FIRMWARE("rtl_bt/rtl8723ds_config.bin"); MODULE_FIRMWARE("rtl_bt/rtl8761a_fw.bin"); @@ -967,3 +1095,5 @@ MODULE_FIRMWARE("rtl_bt/rtl8852bu_config.bin"); MODULE_FIRMWARE("rtl_bt/rtl8852cu_fw.bin"); MODULE_FIRMWARE("rtl_bt/rtl8852cu_config.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8851bu_fw.bin"); +MODULE_FIRMWARE("rtl_bt/rtl8851bu_config.bin"); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/bluetooth/btrtl.h +++ linux-6.2.0/drivers/bluetooth/btrtl.h @@ -14,6 +14,11 @@ struct btrtl_device_info; +struct rtl_chip_type_evt { + __u8 status; + __u8 type; +} __packed; + struct rtl_download_cmd { __u8 index; __u8 data[RTL_FRAG_LEN]; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/bluetooth/hci_h5.c +++ linux-6.2.0/drivers/bluetooth/hci_h5.c @@ -936,6 +936,8 @@ err = btrtl_download_firmware(h5->hu->hdev, btrtl_dev); /* Give the device some time before the hci-core sends it a reset */ usleep_range(10000, 20000); + if (err) + goto out_free; btrtl_set_quirks(h5->hu->hdev, btrtl_dev); @@ -1100,6 +1102,8 @@ .data = (const void *)&h5_data_rtl8822cs }, { .compatible = "realtek,rtl8723bs-bt", .data = (const void *)&h5_data_rtl8723bs }, + { .compatible = "realtek,rtl8723cs-bt", + .data = (const void *)&h5_data_rtl8723bs }, { .compatible = "realtek,rtl8723ds-bt", .data = (const void *)&h5_data_rtl8723bs }, #endif only in patch2: unchanged: --- linux-6.2.0.orig/drivers/char/tpm/tpm-interface.c +++ linux-6.2.0/drivers/char/tpm/tpm-interface.c @@ -412,6 +412,8 @@ } suspended: + chip->flags |= TPM_CHIP_FLAG_SUSPENDED; + if (rc) dev_err(dev, "Ignoring error %d while suspending\n", rc); return 0; @@ -429,6 +431,14 @@ if (chip == NULL) return -ENODEV; + chip->flags &= ~TPM_CHIP_FLAG_SUSPENDED; + + /* + * Guarantee that SUSPENDED is written last, so that hwrng does not + * activate before the chip has been fully resumed. + */ + wmb(); + return 0; } EXPORT_SYMBOL_GPL(tpm_pm_resume); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/char/tpm/tpm_tis.c +++ linux-6.2.0/drivers/char/tpm/tpm_tis.c @@ -83,6 +83,22 @@ DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T490s"), }, }, + { + .callback = tpm_tis_disable_irq, + .ident = "ThinkStation P360 Tiny", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkStation P360 Tiny"), + }, + }, + { + .callback = tpm_tis_disable_irq, + .ident = "ThinkPad L490", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad L490"), + }, + }, {} }; @@ -227,7 +243,7 @@ irq = tpm_info->irq; if (itpm || is_itpm(ACPI_COMPANION(dev))) - phy->priv.flags |= TPM_TIS_ITPM_WORKAROUND; + set_bit(TPM_TIS_ITPM_WORKAROUND, &phy->priv.flags); return tpm_tis_core_init(dev, &phy->priv, irq, &tpm_tcg, ACPI_HANDLE(dev)); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cpufreq/amd-pstate.c +++ linux-6.2.0/drivers/cpufreq/amd-pstate.c @@ -249,9 +249,8 @@ return 0; } -static int amd_pstate_target(struct cpufreq_policy *policy, - unsigned int target_freq, - unsigned int relation) +static int amd_pstate_update_freq(struct cpufreq_policy *policy, + unsigned int target_freq, bool fast_switch) { struct cpufreq_freqs freqs; struct amd_cpudata *cpudata = policy->driver_data; @@ -270,26 +269,50 @@ des_perf = DIV_ROUND_CLOSEST(target_freq * cap_perf, cpudata->max_freq); - cpufreq_freq_transition_begin(policy, &freqs); - amd_pstate_update(cpudata, min_perf, des_perf, - max_perf, false); - cpufreq_freq_transition_end(policy, &freqs, false); + WARN_ON(fast_switch && !policy->fast_switch_enabled); + /* + * If fast_switch is desired, then there aren't any registered + * transition notifiers. See comment for + * cpufreq_enable_fast_switch(). + */ + if (!fast_switch) + cpufreq_freq_transition_begin(policy, &freqs); + + amd_pstate_update(cpudata, min_perf, des_perf, max_perf, fast_switch); + + if (!fast_switch) + cpufreq_freq_transition_end(policy, &freqs, false); return 0; } +static int amd_pstate_target(struct cpufreq_policy *policy, + unsigned int target_freq, + unsigned int relation) +{ + return amd_pstate_update_freq(policy, target_freq, false); +} + +static unsigned int amd_pstate_fast_switch(struct cpufreq_policy *policy, + unsigned int target_freq) +{ + return amd_pstate_update_freq(policy, target_freq, true); +} + static void amd_pstate_adjust_perf(unsigned int cpu, unsigned long _min_perf, unsigned long target_perf, unsigned long capacity) { unsigned long max_perf, min_perf, des_perf, - cap_perf, lowest_nonlinear_perf; + cap_perf, lowest_nonlinear_perf, max_freq; struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); struct amd_cpudata *cpudata = policy->driver_data; + unsigned int target_freq; cap_perf = READ_ONCE(cpudata->highest_perf); lowest_nonlinear_perf = READ_ONCE(cpudata->lowest_nonlinear_perf); + max_freq = READ_ONCE(cpudata->max_freq); des_perf = cap_perf; if (target_perf < capacity) @@ -306,6 +329,10 @@ if (max_perf < min_perf) max_perf = min_perf; + des_perf = clamp_t(unsigned long, des_perf, min_perf, max_perf); + target_freq = div_u64(des_perf * max_freq, max_perf); + policy->cur = target_freq; + amd_pstate_update(cpudata, min_perf, des_perf, max_perf, true); cpufreq_cpu_put(policy); } @@ -517,6 +544,7 @@ freq_qos_remove_request(&cpudata->req[1]); freq_qos_remove_request(&cpudata->req[0]); + policy->fast_switch_possible = false; kfree(cpudata); return 0; @@ -608,6 +636,7 @@ .flags = CPUFREQ_CONST_LOOPS | CPUFREQ_NEED_UPDATE_LIMITS, .verify = amd_pstate_verify, .target = amd_pstate_target, + .fast_switch = amd_pstate_fast_switch, .init = amd_pstate_cpu_init, .exit = amd_pstate_cpu_exit, .suspend = amd_pstate_cpu_suspend, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c +++ linux-6.2.0/drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c @@ -151,7 +151,7 @@ } rctx->p_iv[i] = a; /* we need to setup all others IVs only in the decrypt way */ - if (rctx->op_dir & SS_ENCRYPTION) + if (rctx->op_dir == SS_ENCRYPTION) return 0; todo = min(len, sg_dma_len(sg)); len -= todo; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/crypto/ccp/psp-dev.c +++ linux-6.2.0/drivers/crypto/ccp/psp-dev.c @@ -42,6 +42,9 @@ /* Read the interrupt status: */ status = ioread32(psp->io_regs + psp->vdata->intsts_reg); + /* Clear the interrupt status by writing the same value we read. */ + iowrite32(status, psp->io_regs + psp->vdata->intsts_reg); + /* invoke subdevice interrupt handlers */ if (status) { if (psp->sev_irq_handler) @@ -51,9 +54,6 @@ psp->tee_irq_handler(irq, psp->tee_irq_data, status); } - /* Clear the interrupt status by writing the same value we read. */ - iowrite32(status, psp->io_regs + psp->vdata->intsts_reg); - return IRQ_HANDLED; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cxl/core/mbox.c +++ linux-6.2.0/drivers/cxl/core/mbox.c @@ -760,7 +760,7 @@ * cxl_dev_state_identify() - Send the IDENTIFY command to the device. * @cxlds: The device data for the operation * - * Return: 0 if identify was executed successfully. + * Return: 0 if identify was executed successfully or media not ready. * * This will dispatch the identify command to the device and on success populate * structures to be exported to sysfs. @@ -772,6 +772,9 @@ struct cxl_mbox_cmd mbox_cmd; int rc; + if (!cxlds->media_ready) + return 0; + mbox_cmd = (struct cxl_mbox_cmd) { .opcode = CXL_MBOX_OP_IDENTIFY, .size_out = sizeof(id), @@ -841,10 +844,12 @@ cxlds->persistent_only_bytes, "pmem"); } - rc = cxl_mem_get_partition_info(cxlds); - if (rc) { - dev_err(dev, "Failed to query partition information\n"); - return rc; + if (cxlds->media_ready) { + rc = cxl_mem_get_partition_info(cxlds); + if (rc) { + dev_err(dev, "Failed to query partition information\n"); + return rc; + } } rc = add_dpa_res(dev, &cxlds->dpa_res, &cxlds->ram_res, 0, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cxl/core/port.c +++ linux-6.2.0/drivers/cxl/core/port.c @@ -717,11 +717,10 @@ parent_port = parent_dport ? parent_dport->port : NULL; if (IS_ERR(port)) { - dev_dbg(uport, "Failed to add %s%s%s%s: %ld\n", - dev_name(&port->dev), - parent_port ? " to " : "", + dev_dbg(uport, "Failed to add%s%s%s: %ld\n", + parent_port ? " port to " : "", parent_port ? dev_name(&parent_port->dev) : "", - parent_port ? "" : " (root port)", + parent_port ? "" : " root port", PTR_ERR(port)); } else { dev_dbg(uport, "%s added%s%s%s\n", only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cxl/cxlmem.h +++ linux-6.2.0/drivers/cxl/cxlmem.h @@ -205,6 +205,7 @@ * @regs: Parsed register blocks * @cxl_dvsec: Offset to the PCIe device DVSEC * @rcd: operating in RCD mode (CXL 3.0 9.11.8 CXL Devices Attached to an RCH) + * @media_ready: Indicate whether the device media is usable * @payload_size: Size of space for payload * (CXL 2.0 8.2.8.4.3 Mailbox Capabilities Register) * @lsa_size: Size of Label Storage Area @@ -241,6 +242,7 @@ int cxl_dvsec; bool rcd; + bool media_ready; size_t payload_size; size_t lsa_size; struct mutex mbox_mutex; /* Protects device mailbox and firmware */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cxl/mem.c +++ linux-6.2.0/drivers/cxl/mem.c @@ -104,6 +104,9 @@ struct dentry *dentry; int rc; + if (!cxlds->media_ready) + return -EBUSY; + /* * Someone is trying to reattach this device after it lost its port * connection (an endpoint port previously registered by this memdev was only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cxl/pci.c +++ linux-6.2.0/drivers/cxl/pci.c @@ -476,6 +476,12 @@ if (rc) dev_dbg(&pdev->dev, "Failed to map RAS capability.\n"); + rc = cxl_await_media_ready(cxlds); + if (rc == 0) + cxlds->media_ready = true; + else + dev_warn(&pdev->dev, "Media not active (%d)\n", rc); + rc = cxl_pci_setup_mailbox(cxlds); if (rc) return rc; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/cxl/port.c +++ linux-6.2.0/drivers/cxl/port.c @@ -64,12 +64,6 @@ rc = cxl_hdm_decode_init(cxlds, cxlhdm); if (rc) return rc; - - rc = cxl_await_media_ready(cxlds); - if (rc) { - dev_err(dev, "Media not active (%d)\n", rc); - return rc; - } } rc = devm_cxl_enumerate_decoders(cxlhdm); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/edac/i10nm_base.c +++ linux-6.2.0/drivers/edac/i10nm_base.c @@ -13,7 +13,7 @@ #include "edac_module.h" #include "skx_common.h" -#define I10NM_REVISION "v0.0.5" +#define I10NM_REVISION "v0.0.6" #define EDAC_MOD_STR "i10nm_edac" /* Debug macros */ @@ -22,25 +22,34 @@ #define I10NM_GET_SCK_BAR(d, reg) \ pci_read_config_dword((d)->uracu, 0xd0, &(reg)) -#define I10NM_GET_IMC_BAR(d, i, reg) \ - pci_read_config_dword((d)->uracu, 0xd8 + (i) * 4, &(reg)) +#define I10NM_GET_IMC_BAR(d, i, reg) \ + pci_read_config_dword((d)->uracu, \ + (res_cfg->type == GNR ? 0xd4 : 0xd8) + (i) * 4, &(reg)) #define I10NM_GET_SAD(d, offset, i, reg)\ - pci_read_config_dword((d)->sad_all, (offset) + (i) * 8, &(reg)) + pci_read_config_dword((d)->sad_all, (offset) + (i) * \ + (res_cfg->type == GNR ? 12 : 8), &(reg)) #define I10NM_GET_HBM_IMC_BAR(d, reg) \ pci_read_config_dword((d)->uracu, 0xd4, &(reg)) #define I10NM_GET_CAPID3_CFG(d, reg) \ - pci_read_config_dword((d)->pcu_cr3, 0x90, &(reg)) + pci_read_config_dword((d)->pcu_cr3, \ + res_cfg->type == GNR ? 0x290 : 0x90, &(reg)) +#define I10NM_GET_CAPID5_CFG(d, reg) \ + pci_read_config_dword((d)->pcu_cr3, \ + res_cfg->type == GNR ? 0x298 : 0x98, &(reg)) #define I10NM_GET_DIMMMTR(m, i, j) \ - readl((m)->mbase + ((m)->hbm_mc ? 0x80c : 0x2080c) + \ + readl((m)->mbase + ((m)->hbm_mc ? 0x80c : \ + (res_cfg->type == GNR ? 0xc0c : 0x2080c)) + \ (i) * (m)->chan_mmio_sz + (j) * 4) #define I10NM_GET_MCDDRTCFG(m, i) \ readl((m)->mbase + ((m)->hbm_mc ? 0x970 : 0x20970) + \ (i) * (m)->chan_mmio_sz) #define I10NM_GET_MCMTR(m, i) \ - readl((m)->mbase + ((m)->hbm_mc ? 0xef8 : 0x20ef8) + \ + readl((m)->mbase + ((m)->hbm_mc ? 0xef8 : \ + (res_cfg->type == GNR ? 0xaf8 : 0x20ef8)) + \ (i) * (m)->chan_mmio_sz) #define I10NM_GET_AMAP(m, i) \ - readl((m)->mbase + ((m)->hbm_mc ? 0x814 : 0x20814) + \ + readl((m)->mbase + ((m)->hbm_mc ? 0x814 : \ + (res_cfg->type == GNR ? 0xc14 : 0x20814)) + \ (i) * (m)->chan_mmio_sz) #define I10NM_GET_REG32(m, i, offset) \ readl((m)->mbase + (i) * (m)->chan_mmio_sz + (offset)) @@ -56,7 +65,10 @@ #define I10NM_GET_HBM_IMC_MMIO_OFFSET(reg) \ ((GET_BITFIELD(reg, 0, 10) << 12) + 0x140000) +#define I10NM_GNR_IMC_MMIO_OFFSET 0x24c000 +#define I10NM_GNR_IMC_MMIO_SIZE 0x4000 #define I10NM_HBM_IMC_MMIO_SIZE 0x9000 +#define I10NM_DDR_IMC_CH_CNT(reg) GET_BITFIELD(reg, 21, 24) #define I10NM_IS_HBM_PRESENT(reg) GET_BITFIELD(reg, 27, 30) #define I10NM_IS_HBM_IMC(reg) GET_BITFIELD(reg, 29, 29) @@ -148,35 +160,47 @@ static void enable_retry_rd_err_log(bool enable) { + int i, j, imc_num, chan_num; struct skx_imc *imc; struct skx_dev *d; - int i, j; edac_dbg(2, "\n"); - list_for_each_entry(d, i10nm_edac_list, list) - for (i = 0; i < I10NM_NUM_IMC; i++) { + list_for_each_entry(d, i10nm_edac_list, list) { + imc_num = res_cfg->ddr_imc_num; + chan_num = res_cfg->ddr_chan_num; + + for (i = 0; i < imc_num; i++) { imc = &d->imc[i]; if (!imc->mbase) continue; - for (j = 0; j < I10NM_NUM_CHANNELS; j++) { - if (imc->hbm_mc) { - __enable_retry_rd_err_log(imc, j, enable, - res_cfg->offsets_scrub_hbm0, - res_cfg->offsets_demand_hbm0, - NULL); - __enable_retry_rd_err_log(imc, j, enable, - res_cfg->offsets_scrub_hbm1, - res_cfg->offsets_demand_hbm1, - NULL); - } else { - __enable_retry_rd_err_log(imc, j, enable, - res_cfg->offsets_scrub, - res_cfg->offsets_demand, - res_cfg->offsets_demand2); - } + for (j = 0; j < chan_num; j++) + __enable_retry_rd_err_log(imc, j, enable, + res_cfg->offsets_scrub, + res_cfg->offsets_demand, + res_cfg->offsets_demand2); + } + + imc_num += res_cfg->hbm_imc_num; + chan_num = res_cfg->hbm_chan_num; + + for (; i < imc_num; i++) { + imc = &d->imc[i]; + if (!imc->mbase || !imc->hbm_mc) + continue; + + for (j = 0; j < chan_num; j++) { + __enable_retry_rd_err_log(imc, j, enable, + res_cfg->offsets_scrub_hbm0, + res_cfg->offsets_demand_hbm0, + NULL); + __enable_retry_rd_err_log(imc, j, enable, + res_cfg->offsets_scrub_hbm1, + res_cfg->offsets_demand_hbm1, + NULL); } + } } } @@ -311,6 +335,79 @@ return pdev; } +/** + * i10nm_get_imc_num() - Get the number of present DDR memory controllers. + * + * @cfg : The pointer to the structure of EDAC resource configurations. + * + * For Granite Rapids CPUs, the number of present DDR memory controllers read + * at runtime overwrites the value statically configured in @cfg->ddr_imc_num. + * For other CPUs, the number of present DDR memory controllers is statically + * configured in @cfg->ddr_imc_num. + * + * RETURNS : 0 on success, < 0 on failure. + */ +static int i10nm_get_imc_num(struct res_config *cfg) +{ + int n, imc_num, chan_num = 0; + struct skx_dev *d; + u32 reg; + + list_for_each_entry(d, i10nm_edac_list, list) { + d->pcu_cr3 = pci_get_dev_wrapper(d->seg, d->bus[res_cfg->pcu_cr3_bdf.bus], + res_cfg->pcu_cr3_bdf.dev, + res_cfg->pcu_cr3_bdf.fun); + if (!d->pcu_cr3) + continue; + + if (I10NM_GET_CAPID5_CFG(d, reg)) + continue; + + n = I10NM_DDR_IMC_CH_CNT(reg); + + if (!chan_num) { + chan_num = n; + edac_dbg(2, "Get DDR CH number: %d\n", chan_num); + } else if (chan_num != n) { + i10nm_printk(KERN_NOTICE, "Get DDR CH numbers: %d, %d\n", chan_num, n); + } + } + + switch (cfg->type) { + case GNR: + /* + * One channel per DDR memory controller for Granite Rapids CPUs. + */ + imc_num = chan_num; + + if (!imc_num) { + i10nm_printk(KERN_ERR, "Invalid DDR MC number\n"); + return -ENODEV; + } + + if (imc_num > I10NM_NUM_DDR_IMC) { + i10nm_printk(KERN_ERR, "Need to make I10NM_NUM_DDR_IMC >= %d\n", imc_num); + return -EINVAL; + } + + if (cfg->ddr_imc_num != imc_num) { + /* + * Store the number of present DDR memory controllers. + */ + cfg->ddr_imc_num = imc_num; + edac_dbg(2, "Set DDR MC number: %d", imc_num); + } + + return 0; + default: + /* + * For other CPUs, the number of present DDR memory controllers + * is statically pre-configured in cfg->ddr_imc_num. + */ + return 0; + } +} + static bool i10nm_check_2lm(struct res_config *cfg) { struct skx_dev *d; @@ -318,9 +415,9 @@ int i; list_for_each_entry(d, i10nm_edac_list, list) { - d->sad_all = pci_get_dev_wrapper(d->seg, d->bus[1], - PCI_SLOT(cfg->sad_all_devfn), - PCI_FUNC(cfg->sad_all_devfn)); + d->sad_all = pci_get_dev_wrapper(d->seg, d->bus[res_cfg->sad_all_bdf.bus], + res_cfg->sad_all_bdf.dev, + res_cfg->sad_all_bdf.fun); if (!d->sad_all) continue; @@ -433,22 +530,154 @@ return true; } +/** + * get_gnr_mdev() - Get the PCI device of the @logical_idx-th DDR memory controller. + * + * @d : The pointer to the structure of CPU socket EDAC device. + * @logical_idx : The logical index of the present memory controller (0 ~ max present MC# - 1). + * @physical_idx : To store the corresponding physical index of @logical_idx. + * + * RETURNS : The PCI device of the @logical_idx-th DDR memory controller, NULL on failure. + */ +static struct pci_dev *get_gnr_mdev(struct skx_dev *d, int logical_idx, int *physical_idx) +{ +#define GNR_MAX_IMC_PCI_CNT 28 + + struct pci_dev *mdev; + int i, logical = 0; + + /* + * Detect present memory controllers from { PCI device: 8-5, function 7-1 } + */ + for (i = 0; i < GNR_MAX_IMC_PCI_CNT; i++) { + mdev = pci_get_dev_wrapper(d->seg, + d->bus[res_cfg->ddr_mdev_bdf.bus], + res_cfg->ddr_mdev_bdf.dev + i / 7, + res_cfg->ddr_mdev_bdf.fun + i % 7); + + if (mdev) { + if (logical == logical_idx) { + *physical_idx = i; + return mdev; + } + + pci_dev_put(mdev); + logical++; + } + } + + return NULL; +} + +/** + * get_ddr_munit() - Get the resource of the i-th DDR memory controller. + * + * @d : The pointer to the structure of CPU socket EDAC device. + * @i : The index of the CPU socket relative DDR memory controller. + * @offset : To store the MMIO offset of the i-th DDR memory controller. + * @size : To store the MMIO size of the i-th DDR memory controller. + * + * RETURNS : The PCI device of the i-th DDR memory controller, NULL on failure. + */ +static struct pci_dev *get_ddr_munit(struct skx_dev *d, int i, u32 *offset, unsigned long *size) +{ + struct pci_dev *mdev; + int physical_idx; + u32 reg; + + switch (res_cfg->type) { + case GNR: + if (I10NM_GET_IMC_BAR(d, 0, reg)) { + i10nm_printk(KERN_ERR, "Failed to get mc0 bar\n"); + return NULL; + } + + mdev = get_gnr_mdev(d, i, &physical_idx); + if (!mdev) + return NULL; + + *offset = I10NM_GET_IMC_MMIO_OFFSET(reg) + + I10NM_GNR_IMC_MMIO_OFFSET + + physical_idx * I10NM_GNR_IMC_MMIO_SIZE; + *size = I10NM_GNR_IMC_MMIO_SIZE; + + break; + default: + if (I10NM_GET_IMC_BAR(d, i, reg)) { + i10nm_printk(KERN_ERR, "Failed to get mc%d bar\n", i); + return NULL; + } + + mdev = pci_get_dev_wrapper(d->seg, + d->bus[res_cfg->ddr_mdev_bdf.bus], + res_cfg->ddr_mdev_bdf.dev + i, + res_cfg->ddr_mdev_bdf.fun); + if (!mdev) + return NULL; + + *offset = I10NM_GET_IMC_MMIO_OFFSET(reg); + *size = I10NM_GET_IMC_MMIO_SIZE(reg); + } + + return mdev; +} + +/** + * i10nm_imc_absent() - Check whether the memory controller @imc is absent + * + * @imc : The pointer to the structure of memory controller EDAC device. + * + * RETURNS : true if the memory controller EDAC device is absent, false otherwise. + */ +static bool i10nm_imc_absent(struct skx_imc *imc) +{ + u32 mcmtr; + int i; + + switch (res_cfg->type) { + case SPR: + for (i = 0; i < res_cfg->ddr_chan_num; i++) { + mcmtr = I10NM_GET_MCMTR(imc, i); + edac_dbg(1, "ch%d mcmtr reg %x\n", i, mcmtr); + if (mcmtr != ~0) + return false; + } + + /* + * Some workstations' absent memory controllers still + * appear as PCIe devices, misleading the EDAC driver. + * By observing that the MMIO registers of these absent + * memory controllers consistently hold the value of ~0. + * + * We identify a memory controller as absent by checking + * if its MMIO register "mcmtr" == ~0 in all its channels. + */ + return true; + default: + return false; + } +} + static int i10nm_get_ddr_munits(void) { struct pci_dev *mdev; void __iomem *mbase; unsigned long size; struct skx_dev *d; - int i, j = 0; + int i, lmc, j = 0; u32 reg, off; u64 base; list_for_each_entry(d, i10nm_edac_list, list) { - d->util_all = pci_get_dev_wrapper(d->seg, d->bus[1], 29, 1); + d->util_all = pci_get_dev_wrapper(d->seg, d->bus[res_cfg->util_all_bdf.bus], + res_cfg->util_all_bdf.dev, + res_cfg->util_all_bdf.fun); if (!d->util_all) return -ENODEV; - d->uracu = pci_get_dev_wrapper(d->seg, d->bus[0], 0, 1); + d->uracu = pci_get_dev_wrapper(d->seg, d->bus[res_cfg->uracu_bdf.bus], + res_cfg->uracu_bdf.dev, + res_cfg->uracu_bdf.fun); if (!d->uracu) return -ENODEV; @@ -461,9 +690,9 @@ edac_dbg(2, "socket%d mmio base 0x%llx (reg 0x%x)\n", j++, base, reg); - for (i = 0; i < I10NM_NUM_DDR_IMC; i++) { - mdev = pci_get_dev_wrapper(d->seg, d->bus[0], - 12 + i, 0); + for (lmc = 0, i = 0; i < res_cfg->ddr_imc_num; i++) { + mdev = get_ddr_munit(d, i, &off, &size); + if (i == 0 && !mdev) { i10nm_printk(KERN_ERR, "No IMC found\n"); return -ENODEV; @@ -471,15 +700,6 @@ if (!mdev) continue; - d->imc[i].mdev = mdev; - - if (I10NM_GET_IMC_BAR(d, i, reg)) { - i10nm_printk(KERN_ERR, "Failed to get mc bar\n"); - return -ENODEV; - } - - off = I10NM_GET_IMC_MMIO_OFFSET(reg); - size = I10NM_GET_IMC_MMIO_SIZE(reg); edac_dbg(2, "mc%d mmio base 0x%llx size 0x%lx (reg 0x%x)\n", i, base + off, size, reg); @@ -490,7 +710,17 @@ return -ENODEV; } - d->imc[i].mbase = mbase; + d->imc[lmc].mbase = mbase; + if (i10nm_imc_absent(&d->imc[lmc])) { + pci_dev_put(mdev); + iounmap(mbase); + d->imc[lmc].mbase = NULL; + edac_dbg(2, "Skip absent mc%d\n", i); + continue; + } else { + d->imc[lmc].mdev = mdev; + lmc++; + } } } @@ -519,7 +749,6 @@ u64 base; list_for_each_entry(d, i10nm_edac_list, list) { - d->pcu_cr3 = pci_get_dev_wrapper(d->seg, d->bus[1], 30, 3); if (!d->pcu_cr3) return -ENODEV; @@ -540,11 +769,13 @@ } base += I10NM_GET_HBM_IMC_MMIO_OFFSET(reg); - lmc = I10NM_NUM_DDR_IMC; + lmc = res_cfg->ddr_imc_num; + + for (i = 0; i < res_cfg->hbm_imc_num; i++) { + mdev = pci_get_dev_wrapper(d->seg, d->bus[res_cfg->hbm_mdev_bdf.bus], + res_cfg->hbm_mdev_bdf.dev + i / 4, + res_cfg->hbm_mdev_bdf.fun + i % 4); - for (i = 0; i < I10NM_NUM_HBM_IMC; i++) { - mdev = pci_get_dev_wrapper(d->seg, d->bus[0], - 12 + i / 4, 1 + i % 4); if (i == 0 && !mdev) { i10nm_printk(KERN_ERR, "No hbm mc found\n"); return -ENODEV; @@ -594,8 +825,16 @@ .type = I10NM, .decs_did = 0x3452, .busno_cfg_offset = 0xcc, + .ddr_imc_num = 4, + .ddr_chan_num = 2, + .ddr_dimm_num = 2, .ddr_chan_mmio_sz = 0x4000, - .sad_all_devfn = PCI_DEVFN(29, 0), + .sad_all_bdf = {1, 29, 0}, + .pcu_cr3_bdf = {1, 30, 3}, + .util_all_bdf = {1, 29, 1}, + .uracu_bdf = {0, 0, 1}, + .ddr_mdev_bdf = {0, 12, 0}, + .hbm_mdev_bdf = {0, 12, 1}, .sad_all_offset = 0x108, .offsets_scrub = offsets_scrub_icx, .offsets_demand = offsets_demand_icx, @@ -605,8 +844,16 @@ .type = I10NM, .decs_did = 0x3452, .busno_cfg_offset = 0xd0, + .ddr_imc_num = 4, + .ddr_chan_num = 2, + .ddr_dimm_num = 2, .ddr_chan_mmio_sz = 0x4000, - .sad_all_devfn = PCI_DEVFN(29, 0), + .sad_all_bdf = {1, 29, 0}, + .pcu_cr3_bdf = {1, 30, 3}, + .util_all_bdf = {1, 29, 1}, + .uracu_bdf = {0, 0, 1}, + .ddr_mdev_bdf = {0, 12, 0}, + .hbm_mdev_bdf = {0, 12, 1}, .sad_all_offset = 0x108, .offsets_scrub = offsets_scrub_icx, .offsets_demand = offsets_demand_icx, @@ -616,10 +863,21 @@ .type = SPR, .decs_did = 0x3252, .busno_cfg_offset = 0xd0, + .ddr_imc_num = 4, + .ddr_chan_num = 2, + .ddr_dimm_num = 2, + .hbm_imc_num = 16, + .hbm_chan_num = 2, + .hbm_dimm_num = 1, .ddr_chan_mmio_sz = 0x8000, .hbm_chan_mmio_sz = 0x4000, .support_ddr5 = true, - .sad_all_devfn = PCI_DEVFN(10, 0), + .sad_all_bdf = {1, 10, 0}, + .pcu_cr3_bdf = {1, 30, 3}, + .util_all_bdf = {1, 29, 1}, + .uracu_bdf = {0, 0, 1}, + .ddr_mdev_bdf = {0, 12, 0}, + .hbm_mdev_bdf = {0, 12, 1}, .sad_all_offset = 0x300, .offsets_scrub = offsets_scrub_spr, .offsets_scrub_hbm0 = offsets_scrub_spr_hbm0, @@ -630,6 +888,23 @@ .offsets_demand_hbm1 = offsets_demand_spr_hbm1, }; +static struct res_config gnr_cfg = { + .type = GNR, + .decs_did = 0x3252, + .busno_cfg_offset = 0xd0, + .ddr_imc_num = 12, + .ddr_chan_num = 1, + .ddr_dimm_num = 2, + .ddr_chan_mmio_sz = 0x4000, + .support_ddr5 = true, + .sad_all_bdf = {0, 13, 0}, + .pcu_cr3_bdf = {0, 5, 0}, + .util_all_bdf = {0, 13, 1}, + .uracu_bdf = {0, 0, 1}, + .ddr_mdev_bdf = {0, 5, 1}, + .sad_all_offset = 0x300, +}; + static const struct x86_cpu_id i10nm_cpuids[] = { X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ATOM_TREMONT_D, X86_STEPPINGS(0x0, 0x3), &i10nm_cfg0), X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ATOM_TREMONT_D, X86_STEPPINGS(0x4, 0xf), &i10nm_cfg1), @@ -637,6 +912,8 @@ X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ICELAKE_X, X86_STEPPINGS(0x4, 0xf), &i10nm_cfg1), X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(ICELAKE_D, X86_STEPPINGS(0x0, 0xf), &i10nm_cfg1), X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(SAPPHIRERAPIDS_X, X86_STEPPINGS(0x0, 0xf), &spr_cfg), + X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(EMERALDRAPIDS_X, X86_STEPPINGS(0x0, 0xf), &spr_cfg), + X86_MATCH_INTEL_FAM6_MODEL_STEPPINGS(GRANITERAPIDS_X, X86_STEPPINGS(0x0, 0xf), &gnr_cfg), {} }; MODULE_DEVICE_TABLE(x86cpu, i10nm_cpuids); @@ -656,7 +933,7 @@ { struct skx_pvt *pvt = mci->pvt_info; struct skx_imc *imc = pvt->imc; - u32 mtr, amap, mcddrtcfg; + u32 mtr, amap, mcddrtcfg = 0; struct dimm_info *dimm; int i, j, ndimms; @@ -666,7 +943,10 @@ ndimms = 0; amap = I10NM_GET_AMAP(imc, i); - mcddrtcfg = I10NM_GET_MCDDRTCFG(imc, i); + + if (res_cfg->type != GNR) + mcddrtcfg = I10NM_GET_MCDDRTCFG(imc, i); + for (j = 0; j < imc->num_dimms; j++) { dimm = edac_get_dimm(mci, i, j, 0); mtr = I10NM_GET_DIMMMTR(imc, i, j); @@ -752,6 +1032,7 @@ struct skx_dev *d; int rc, i, off[3] = {0xd0, 0xc8, 0xcc}; u64 tolm, tohm; + int imc_num; edac_dbg(2, "\n"); @@ -784,6 +1065,10 @@ return -ENODEV; } + rc = i10nm_get_imc_num(cfg); + if (rc < 0) + goto fail; + mem_cfg_2lm = i10nm_check_2lm(cfg); skx_set_mem_cfg(mem_cfg_2lm); @@ -792,6 +1077,8 @@ if (i10nm_get_hbm_munits() && rc) goto fail; + imc_num = res_cfg->ddr_imc_num + res_cfg->hbm_imc_num; + list_for_each_entry(d, i10nm_edac_list, list) { rc = skx_get_src_id(d, 0xf8, &src_id); if (rc < 0) @@ -802,7 +1089,7 @@ goto fail; edac_dbg(2, "src_id = %d node_id = %d\n", src_id, node_id); - for (i = 0; i < I10NM_NUM_IMC; i++) { + for (i = 0; i < imc_num; i++) { if (!d->imc[i].mdev) continue; @@ -812,12 +1099,12 @@ d->imc[i].node_id = node_id; if (d->imc[i].hbm_mc) { d->imc[i].chan_mmio_sz = cfg->hbm_chan_mmio_sz; - d->imc[i].num_channels = I10NM_NUM_HBM_CHANNELS; - d->imc[i].num_dimms = I10NM_NUM_HBM_DIMMS; + d->imc[i].num_channels = cfg->hbm_chan_num; + d->imc[i].num_dimms = cfg->hbm_dimm_num; } else { d->imc[i].chan_mmio_sz = cfg->ddr_chan_mmio_sz; - d->imc[i].num_channels = I10NM_NUM_DDR_CHANNELS; - d->imc[i].num_dimms = I10NM_NUM_DDR_DIMMS; + d->imc[i].num_channels = cfg->ddr_chan_num; + d->imc[i].num_dimms = cfg->ddr_dimm_num; } rc = skx_register_mci(&d->imc[i], d->imc[i].mdev, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/edac/qcom_edac.c +++ linux-6.2.0/drivers/edac/qcom_edac.c @@ -76,6 +76,8 @@ #define DRP0_INTERRUPT_ENABLE BIT(6) #define SB_DB_DRP_INTERRUPT_ENABLE 0x3 +#define ECC_POLL_MSEC 5000 + enum { LLCC_DRAM_CE = 0, LLCC_DRAM_UE, @@ -285,8 +287,7 @@ return ret; } -static irqreturn_t -llcc_ecc_irq_handler(int irq, void *edev_ctl) +static irqreturn_t llcc_ecc_irq_handler(int irq, void *edev_ctl) { struct edac_device_ctl_info *edac_dev_ctl = edev_ctl; struct llcc_drv_data *drv = edac_dev_ctl->dev->platform_data; @@ -332,6 +333,11 @@ return irq_rc; } +static void llcc_ecc_check(struct edac_device_ctl_info *edev_ctl) +{ + llcc_ecc_irq_handler(0, edev_ctl); +} + static int qcom_llcc_edac_probe(struct platform_device *pdev) { struct llcc_drv_data *llcc_driv_data = pdev->dev.platform_data; @@ -359,29 +365,31 @@ edev_ctl->ctl_name = "llcc"; edev_ctl->panic_on_ue = LLCC_ERP_PANIC_ON_UE; - rc = edac_device_add_device(edev_ctl); - if (rc) - goto out_mem; - - platform_set_drvdata(pdev, edev_ctl); - - /* Request for ecc irq */ + /* Check if LLCC driver has passed ECC IRQ */ ecc_irq = llcc_driv_data->ecc_irq; - if (ecc_irq < 0) { - rc = -ENODEV; - goto out_dev; - } - rc = devm_request_irq(dev, ecc_irq, llcc_ecc_irq_handler, + if (ecc_irq > 0) { + /* Use interrupt mode if IRQ is available */ + rc = devm_request_irq(dev, ecc_irq, llcc_ecc_irq_handler, IRQF_TRIGGER_HIGH, "llcc_ecc", edev_ctl); - if (rc) - goto out_dev; + if (!rc) { + edac_op_state = EDAC_OPSTATE_INT; + goto irq_done; + } + } - return rc; + /* Fall back to polling mode otherwise */ + edev_ctl->poll_msec = ECC_POLL_MSEC; + edev_ctl->edac_check = llcc_ecc_check; + edac_op_state = EDAC_OPSTATE_POLL; -out_dev: - edac_device_del_device(edev_ctl->dev); -out_mem: - edac_device_free_ctl_info(edev_ctl); +irq_done: + rc = edac_device_add_device(edev_ctl); + if (rc) { + edac_device_free_ctl_info(edev_ctl); + return rc; + } + + platform_set_drvdata(pdev, edev_ctl); return rc; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/edac/skx_common.c +++ linux-6.2.0/drivers/edac/skx_common.c @@ -560,44 +560,28 @@ tp_event = HW_EVENT_ERR_CORRECTED; } - /* - * According to Intel Architecture spec vol 3B, - * Table 15-10 "IA32_MCi_Status [15:0] Compound Error Code Encoding" - * memory errors should fit one of these masks: - * 000f 0000 1mmm cccc (binary) - * 000f 0010 1mmm cccc (binary) [RAM used as cache] - * where: - * f = Correction Report Filtering Bit. If 1, subsequent errors - * won't be shown - * mmm = error type - * cccc = channel - * If the mask doesn't match, report an error to the parsing logic - */ - if (!((errcode & 0xef80) == 0x80 || (errcode & 0xef80) == 0x280)) { - optype = "Can't parse: it is not a mem"; - } else { - switch (optypenum) { - case 0: - optype = "generic undef request error"; - break; - case 1: - optype = "memory read error"; - break; - case 2: - optype = "memory write error"; - break; - case 3: - optype = "addr/cmd error"; - break; - case 4: - optype = "memory scrubbing error"; - scrub_err = true; - break; - default: - optype = "reserved"; - break; - } + switch (optypenum) { + case 0: + optype = "generic undef request error"; + break; + case 1: + optype = "memory read error"; + break; + case 2: + optype = "memory write error"; + break; + case 3: + optype = "addr/cmd error"; + break; + case 4: + optype = "memory scrubbing error"; + scrub_err = true; + break; + default: + optype = "reserved"; + break; } + if (res->decoded_by_adxl) { len = snprintf(skx_msg, MSG_SIZE, "%s%s err_code:0x%04x:0x%04x %s", overflow ? " OVERFLOW" : "", @@ -632,12 +616,18 @@ if (!skx_mem_cfg_2lm) return false; - errcode = GET_BITFIELD(m->status, 0, 15); + errcode = GET_BITFIELD(m->status, 0, 15) & MCACOD_MEM_ERR_MASK; - if ((errcode & 0xef80) != 0x280) - return false; + return errcode == MCACOD_EXT_MEM_ERR; +} + +static bool skx_error_in_mem(const struct mce *m) +{ + u32 errcode; + + errcode = GET_BITFIELD(m->status, 0, 15) & MCACOD_MEM_ERR_MASK; - return true; + return (errcode == MCACOD_MEM_CTL_ERR || errcode == MCACOD_EXT_MEM_ERR); } int skx_mce_check_error(struct notifier_block *nb, unsigned long val, @@ -651,8 +641,8 @@ if (mce->kflags & MCE_HANDLED_CEC) return NOTIFY_DONE; - /* ignore unless this is memory related with an address */ - if ((mce->status & 0xefff) >> 7 != 1 || !(mce->status & MCI_STATUS_ADDRV)) + /* Ignore unless this is memory related with an address */ + if (!skx_error_in_mem(mce) || !(mce->status & MCI_STATUS_ADDRV)) return NOTIFY_DONE; memset(&res, 0, sizeof(res)); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/edac/skx_common.h +++ linux-6.2.0/drivers/edac/skx_common.h @@ -33,7 +33,7 @@ #define SKX_NUM_CHANNELS 3 /* Channels per memory controller */ #define SKX_NUM_DIMMS 2 /* Max DIMMS per channel */ -#define I10NM_NUM_DDR_IMC 4 +#define I10NM_NUM_DDR_IMC 12 #define I10NM_NUM_DDR_CHANNELS 2 #define I10NM_NUM_DDR_DIMMS 2 @@ -57,6 +57,30 @@ #define MCI_MISC_ECC_DDRT 8 /* read from DDRT */ /* + * According to Intel Architecture spec vol 3B, + * Table 15-10 "IA32_MCi_Status [15:0] Compound Error Code Encoding" + * memory errors should fit one of these masks: + * 000f 0000 1mmm cccc (binary) + * 000f 0010 1mmm cccc (binary) [RAM used as cache] + * where: + * f = Correction Report Filtering Bit. If 1, subsequent errors + * won't be shown + * mmm = error type + * cccc = channel + */ +#define MCACOD_MEM_ERR_MASK 0xef80 +/* + * Errors from either the memory of the 1-level memory system or the + * 2nd level memory (the slow "far" memory) of the 2-level memory system. + */ +#define MCACOD_MEM_CTL_ERR 0x80 +/* + * Errors from the 1st level memory (the fast "near" memory as cache) + * of the 2-level memory system. + */ +#define MCACOD_EXT_MEM_ERR 0x280 + +/* * Each cpu socket contains some pci devices that provide global * information, and also some that are local to each of the two * memory controllers on the die. @@ -105,7 +129,8 @@ enum type { SKX, I10NM, - SPR + SPR, + GNR }; enum { @@ -149,19 +174,47 @@ bool decoded_by_adxl; }; +struct pci_bdf { + u32 bus : 8; + u32 dev : 5; + u32 fun : 3; +}; + struct res_config { enum type type; /* Configuration agent device ID */ unsigned int decs_did; /* Default bus number configuration register offset */ int busno_cfg_offset; + /* DDR memory controllers per socket */ + int ddr_imc_num; + /* DDR channels per DDR memory controller */ + int ddr_chan_num; + /* DDR DIMMs per DDR memory channel */ + int ddr_dimm_num; /* Per DDR channel memory-mapped I/O size */ int ddr_chan_mmio_sz; + /* HBM memory controllers per socket */ + int hbm_imc_num; + /* HBM channels per HBM memory controller */ + int hbm_chan_num; + /* HBM DIMMs per HBM memory channel */ + int hbm_dimm_num; /* Per HBM channel memory-mapped I/O size */ int hbm_chan_mmio_sz; bool support_ddr5; - /* SAD device number and function number */ - unsigned int sad_all_devfn; + /* SAD device BDF */ + struct pci_bdf sad_all_bdf; + /* PCU device BDF */ + struct pci_bdf pcu_cr3_bdf; + /* UTIL device BDF */ + struct pci_bdf util_all_bdf; + /* URACU device BDF */ + struct pci_bdf uracu_bdf; + /* DDR mdev device BDF */ + struct pci_bdf ddr_mdev_bdf; + /* HBM mdev device BDF */ + struct pci_bdf hbm_mdev_bdf; int sad_all_offset; /* Offsets of retry_rd_err_log registers */ u32 *offsets_scrub; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/firmware/arm_ffa/bus.c +++ linux-6.2.0/drivers/firmware/arm_ffa/bus.c @@ -15,6 +15,8 @@ #include "common.h" +static DEFINE_IDA(ffa_bus_id); + static int ffa_device_match(struct device *dev, struct device_driver *drv) { const struct ffa_device_id *id_table; @@ -53,7 +55,8 @@ { struct ffa_driver *ffa_drv = to_ffa_driver(dev->driver); - ffa_drv->remove(to_ffa_dev(dev)); + if (ffa_drv->remove) + ffa_drv->remove(to_ffa_dev(dev)); } static int ffa_device_uevent(struct device *dev, struct kobj_uevent_env *env) @@ -130,6 +133,7 @@ { struct ffa_device *ffa_dev = to_ffa_dev(dev); + ida_free(&ffa_bus_id, ffa_dev->id); kfree(ffa_dev); } @@ -170,18 +174,24 @@ struct ffa_device *ffa_device_register(const uuid_t *uuid, int vm_id, const struct ffa_ops *ops) { - int ret; + int id, ret; struct device *dev; struct ffa_device *ffa_dev; + id = ida_alloc_min(&ffa_bus_id, 1, GFP_KERNEL); + if (id < 0) + return NULL; + ffa_dev = kzalloc(sizeof(*ffa_dev), GFP_KERNEL); - if (!ffa_dev) + if (!ffa_dev) { + ida_free(&ffa_bus_id, id); return NULL; + } dev = &ffa_dev->dev; dev->bus = &ffa_bus_type; dev->release = ffa_release_device; - dev_set_name(&ffa_dev->dev, "arm-ffa-%04x", vm_id); + dev_set_name(&ffa_dev->dev, "arm-ffa-%d", id); ffa_dev->vm_id = vm_id; ffa_dev->ops = ops; @@ -217,4 +227,5 @@ { ffa_devices_unregister(); bus_unregister(&ffa_bus_type); + ida_destroy(&ffa_bus_id); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/firmware/arm_ffa/driver.c +++ linux-6.2.0/drivers/firmware/arm_ffa/driver.c @@ -193,7 +193,8 @@ int idx, count, flags = 0, sz, buf_sz; ffa_value_t partition_info; - if (!buffer || !num_partitions) /* Just get the count for now */ + if (drv_info->version > FFA_VERSION_1_0 && + (!buffer || !num_partitions)) /* Just get the count for now */ flags = PARTITION_INFO_GET_RETURN_COUNT_ONLY; mutex_lock(&drv_info->rx_lock); @@ -420,12 +421,17 @@ ep_mem_access->receiver = args->attrs[idx].receiver; ep_mem_access->attrs = args->attrs[idx].attrs; ep_mem_access->composite_off = COMPOSITE_OFFSET(args->nattrs); + ep_mem_access->flag = 0; + ep_mem_access->reserved = 0; } + mem_region->reserved_0 = 0; + mem_region->reserved_1 = 0; mem_region->ep_count = args->nattrs; composite = buffer + COMPOSITE_OFFSET(args->nattrs); composite->total_pg_cnt = ffa_get_num_pages_sg(args->sg); composite->addr_range_cnt = num_entries; + composite->reserved = 0; length = COMPOSITE_CONSTITUENTS_OFFSET(args->nattrs, num_entries); frag_len = COMPOSITE_CONSTITUENTS_OFFSET(args->nattrs, 0); @@ -460,6 +466,7 @@ constituents->address = sg_phys(args->sg); constituents->pg_cnt = args->sg->length / FFA_PAGE_SIZE; + constituents->reserved = 0; constituents++; frag_len += sizeof(struct ffa_mem_region_addr_range); } while ((args->sg = sg_next(args->sg))); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/firmware/arm_sdei.c +++ linux-6.2.0/drivers/firmware/arm_sdei.c @@ -43,6 +43,8 @@ /* entry point from firmware to arch asm code */ static unsigned long sdei_entry_point; +static int sdei_hp_state; + struct sdei_event { /* These three are protected by the sdei_list_lock */ struct list_head list; @@ -301,8 +303,6 @@ { int err; - WARN_ON_ONCE(preemptible()); - err = invoke_sdei_fn(SDEI_1_0_FN_SDEI_PE_MASK, 0, 0, 0, 0, 0, NULL); if (err && err != -EIO) { pr_warn_once("failed to mask CPU[%u]: %d\n", @@ -315,6 +315,7 @@ static void _ipi_mask_cpu(void *ignored) { + WARN_ON_ONCE(preemptible()); sdei_mask_local_cpu(); } @@ -322,8 +323,6 @@ { int err; - WARN_ON_ONCE(preemptible()); - err = invoke_sdei_fn(SDEI_1_0_FN_SDEI_PE_UNMASK, 0, 0, 0, 0, 0, NULL); if (err && err != -EIO) { pr_warn_once("failed to unmask CPU[%u]: %d\n", @@ -336,6 +335,7 @@ static void _ipi_unmask_cpu(void *ignored) { + WARN_ON_ONCE(preemptible()); sdei_unmask_local_cpu(); } @@ -343,6 +343,8 @@ { int err; + WARN_ON_ONCE(preemptible()); + err = invoke_sdei_fn(SDEI_1_0_FN_SDEI_PRIVATE_RESET, 0, 0, 0, 0, 0, NULL); if (err && err != -EIO) @@ -389,8 +391,6 @@ int err; struct sdei_crosscall_args *arg = data; - WARN_ON_ONCE(preemptible()); - err = sdei_api_event_enable(arg->event->event_num); sdei_cross_call_return(arg, err); @@ -479,8 +479,6 @@ int err; struct sdei_crosscall_args *arg = data; - WARN_ON_ONCE(preemptible()); - err = sdei_api_event_unregister(arg->event->event_num); sdei_cross_call_return(arg, err); @@ -561,8 +559,6 @@ struct sdei_registered_event *reg; struct sdei_crosscall_args *arg = data; - WARN_ON(preemptible()); - reg = per_cpu_ptr(arg->event->private_registered, smp_processor_id()); err = sdei_api_event_register(arg->event->event_num, sdei_entry_point, reg, 0, 0); @@ -717,6 +713,8 @@ { int rv; + WARN_ON_ONCE(preemptible()); + switch (action) { case CPU_PM_ENTER: rv = sdei_mask_local_cpu(); @@ -765,7 +763,7 @@ int err; /* unregister private events */ - cpuhp_remove_state(CPUHP_AP_ARM_SDEI_STARTING); + cpuhp_remove_state(sdei_entry_point); err = sdei_unregister_shared(); if (err) @@ -786,12 +784,15 @@ return err; } - err = cpuhp_setup_state(CPUHP_AP_ARM_SDEI_STARTING, "SDEI", + err = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "SDEI", &sdei_cpuhp_up, &sdei_cpuhp_down); - if (err) + if (err < 0) { pr_warn("Failed to re-register CPU hotplug notifier...\n"); + return err; + } - return err; + sdei_hp_state = err; + return 0; } static int sdei_device_restore(struct device *dev) @@ -823,7 +824,7 @@ * We are going to reset the interface, after this there is no point * doing work when we take CPUs offline. */ - cpuhp_remove_state(CPUHP_AP_ARM_SDEI_STARTING); + cpuhp_remove_state(sdei_hp_state); sdei_platform_reset(); @@ -1003,13 +1004,15 @@ goto remove_cpupm; } - err = cpuhp_setup_state(CPUHP_AP_ARM_SDEI_STARTING, "SDEI", + err = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "SDEI", &sdei_cpuhp_up, &sdei_cpuhp_down); - if (err) { + if (err < 0) { pr_warn("Failed to register CPU hotplug notifier...\n"); goto remove_reboot; } + sdei_hp_state = err; + return 0; remove_reboot: only in patch2: unchanged: --- linux-6.2.0.orig/drivers/firmware/smccc/smccc.c +++ linux-6.2.0/drivers/firmware/smccc/smccc.c @@ -17,9 +17,13 @@ bool __ro_after_init smccc_trng_available = false; u64 __ro_after_init smccc_has_sve_hint = false; +s32 __ro_after_init smccc_soc_id_version = SMCCC_RET_NOT_SUPPORTED; +s32 __ro_after_init smccc_soc_id_revision = SMCCC_RET_NOT_SUPPORTED; void __init arm_smccc_version_init(u32 version, enum arm_smccc_conduit conduit) { + struct arm_smccc_res res; + smccc_version = version; smccc_conduit = conduit; @@ -27,6 +31,18 @@ if (IS_ENABLED(CONFIG_ARM64_SVE) && smccc_version >= ARM_SMCCC_VERSION_1_3) smccc_has_sve_hint = true; + + if ((smccc_version >= ARM_SMCCC_VERSION_1_2) && + (smccc_conduit != SMCCC_CONDUIT_NONE)) { + arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_FEATURES_FUNC_ID, + ARM_SMCCC_ARCH_SOC_ID, &res); + if ((s32)res.a0 >= 0) { + arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_SOC_ID, 0, &res); + smccc_soc_id_version = (s32)res.a0; + arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_SOC_ID, 1, &res); + smccc_soc_id_revision = (s32)res.a0; + } + } } enum arm_smccc_conduit arm_smccc_1_1_get_conduit(void) @@ -44,6 +60,16 @@ } EXPORT_SYMBOL_GPL(arm_smccc_get_version); +s32 arm_smccc_get_soc_id_version(void) +{ + return smccc_soc_id_version; +} + +s32 arm_smccc_get_soc_id_revision(void) +{ + return smccc_soc_id_revision; +} + static int __init smccc_devices_init(void) { struct platform_device *pdev; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/firmware/smccc/soc_id.c +++ linux-6.2.0/drivers/firmware/smccc/soc_id.c @@ -42,41 +42,23 @@ if (arm_smccc_get_version() < ARM_SMCCC_VERSION_1_2) return 0; - if (arm_smccc_1_1_get_conduit() == SMCCC_CONDUIT_NONE) { - pr_err("%s: invalid SMCCC conduit\n", __func__); - return -EOPNOTSUPP; - } - - arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_FEATURES_FUNC_ID, - ARM_SMCCC_ARCH_SOC_ID, &res); - - if ((int)res.a0 == SMCCC_RET_NOT_SUPPORTED) { + soc_id_version = arm_smccc_get_soc_id_version(); + if (soc_id_version == SMCCC_RET_NOT_SUPPORTED) { pr_info("ARCH_SOC_ID not implemented, skipping ....\n"); return 0; } - if ((int)res.a0 < 0) { - pr_info("ARCH_FEATURES(ARCH_SOC_ID) returned error: %lx\n", - res.a0); - return -EINVAL; - } - - arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_SOC_ID, 0, &res); - if ((int)res.a0 < 0) { + if (soc_id_version < 0) { pr_err("ARCH_SOC_ID(0) returned error: %lx\n", res.a0); return -EINVAL; } - soc_id_version = res.a0; - - arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_SOC_ID, 1, &res); - if ((int)res.a0 < 0) { + soc_id_rev = arm_smccc_get_soc_id_revision(); + if (soc_id_rev < 0) { pr_err("ARCH_SOC_ID(1) returned error: %lx\n", res.a0); return -EINVAL; } - soc_id_rev = res.a0; - soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL); if (!soc_dev_attr) return -ENOMEM; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpio/gpio-f7188x.c +++ linux-6.2.0/drivers/gpio/gpio-f7188x.c @@ -48,7 +48,7 @@ /* * Nuvoton devices. */ -#define SIO_NCT6116D_ID 0xD283 /* NCT6116D chipset ID */ +#define SIO_NCT6126D_ID 0xD283 /* NCT6126D chipset ID */ #define SIO_LD_GPIO_NUVOTON 0x07 /* GPIO logical device */ @@ -62,7 +62,7 @@ f81866, f81804, f81865, - nct6116d, + nct6126d, }; static const char * const f7188x_names[] = { @@ -74,7 +74,7 @@ "f81866", "f81804", "f81865", - "nct6116d", + "nct6126d", }; struct f7188x_sio { @@ -187,8 +187,8 @@ /* Output mode register (0:open drain 1:push-pull). */ #define f7188x_gpio_out_mode(base) ((base) + 3) -#define f7188x_gpio_dir_invert(type) ((type) == nct6116d) -#define f7188x_gpio_data_single(type) ((type) == nct6116d) +#define f7188x_gpio_dir_invert(type) ((type) == nct6126d) +#define f7188x_gpio_data_single(type) ((type) == nct6126d) static struct f7188x_gpio_bank f71869_gpio_bank[] = { F7188X_GPIO_BANK(0, 6, 0xF0, DRVNAME "-0"), @@ -274,7 +274,7 @@ F7188X_GPIO_BANK(60, 5, 0x90, DRVNAME "-6"), }; -static struct f7188x_gpio_bank nct6116d_gpio_bank[] = { +static struct f7188x_gpio_bank nct6126d_gpio_bank[] = { F7188X_GPIO_BANK(0, 8, 0xE0, DRVNAME "-0"), F7188X_GPIO_BANK(10, 8, 0xE4, DRVNAME "-1"), F7188X_GPIO_BANK(20, 8, 0xE8, DRVNAME "-2"), @@ -282,7 +282,7 @@ F7188X_GPIO_BANK(40, 8, 0xF0, DRVNAME "-4"), F7188X_GPIO_BANK(50, 8, 0xF4, DRVNAME "-5"), F7188X_GPIO_BANK(60, 8, 0xF8, DRVNAME "-6"), - F7188X_GPIO_BANK(70, 1, 0xFC, DRVNAME "-7"), + F7188X_GPIO_BANK(70, 8, 0xFC, DRVNAME "-7"), }; static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset) @@ -490,9 +490,9 @@ data->nr_bank = ARRAY_SIZE(f81865_gpio_bank); data->bank = f81865_gpio_bank; break; - case nct6116d: - data->nr_bank = ARRAY_SIZE(nct6116d_gpio_bank); - data->bank = nct6116d_gpio_bank; + case nct6126d: + data->nr_bank = ARRAY_SIZE(nct6126d_gpio_bank); + data->bank = nct6126d_gpio_bank; break; default: return -ENODEV; @@ -559,9 +559,9 @@ case SIO_F81865_ID: sio->type = f81865; break; - case SIO_NCT6116D_ID: + case SIO_NCT6126D_ID: sio->device = SIO_LD_GPIO_NUVOTON; - sio->type = nct6116d; + sio->type = nct6126d; break; default: pr_info("Unsupported Fintek device 0x%04x\n", devid); @@ -569,7 +569,7 @@ } /* double check manufacturer where possible */ - if (sio->type != nct6116d) { + if (sio->type != nct6126d) { manid = superio_inw(addr, SIO_FINTEK_MANID); if (manid != SIO_FINTEK_ID) { pr_debug("Not a Fintek device at 0x%08x\n", addr); @@ -581,7 +581,7 @@ err = 0; pr_info("Found %s at %#x\n", f7188x_names[sio->type], (unsigned int)addr); - if (sio->type != nct6116d) + if (sio->type != nct6126d) pr_info(" revision %d\n", superio_inb(addr, SIO_FINTEK_DEVREV)); err: only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpio/gpio-mockup.c +++ linux-6.2.0/drivers/gpio/gpio-mockup.c @@ -369,7 +369,7 @@ priv->offset = i; priv->desc = gpiochip_get_desc(gc, i); - debugfs_create_file(name, 0200, chip->dbg_dir, priv, + debugfs_create_file(name, 0600, chip->dbg_dir, priv, &gpio_mockup_debugfs_ops); } } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpio/gpiolib.c +++ linux-6.2.0/drivers/gpio/gpiolib.c @@ -192,6 +192,8 @@ break; /* nope, check the space right after the chip */ base = gdev->base + gdev->ngpio; + if (base < GPIO_DYNAMIC_BASE) + base = GPIO_DYNAMIC_BASE; } if (gpio_is_valid(base)) { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -1274,7 +1274,7 @@ r = drm_sched_job_add_dependency(&leader->base, fence); if (r) { dma_fence_put(fence); - goto error_cleanup; + return r; } } @@ -1301,7 +1301,8 @@ } if (r) { r = -EAGAIN; - goto error_unlock; + mutex_unlock(&p->adev->notifier_lock); + return r; } p->fence = dma_fence_get(&leader->base.s_fence->finished); @@ -1348,14 +1349,6 @@ mutex_unlock(&p->adev->notifier_lock); mutex_unlock(&p->bo_list->bo_list_mutex); return 0; - -error_unlock: - mutex_unlock(&p->adev->notifier_lock); - -error_cleanup: - for (i = 0; i < p->gang_size; ++i) - drm_sched_job_cleanup(&p->jobs[i]->base); - return r; } /* Cleanup the parser structure */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c @@ -683,9 +683,11 @@ if (r) return r; - r = amdgpu_irq_get(adev, &adev->gfx.cp_ecc_error_irq, 0); - if (r) - goto late_fini; + if (adev->gfx.cp_ecc_error_irq.funcs) { + r = amdgpu_irq_get(adev, &adev->gfx.cp_ecc_error_irq, 0); + if (r) + goto late_fini; + } } else { amdgpu_ras_feature_enable_on_boot(adev, ras_block, 0); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c @@ -21,6 +21,8 @@ * */ +#include + #include "amdgpu_mes.h" #include "amdgpu.h" #include "soc15_common.h" @@ -1326,12 +1328,9 @@ struct amdgpu_mes_ctx_data ctx_data = {0}; struct amdgpu_ring *added_rings[AMDGPU_MES_CTX_MAX_RINGS] = { NULL }; int gang_ids[3] = {0}; - int queue_types[][2] = { { AMDGPU_RING_TYPE_GFX, - AMDGPU_MES_CTX_MAX_GFX_RINGS}, - { AMDGPU_RING_TYPE_COMPUTE, - AMDGPU_MES_CTX_MAX_COMPUTE_RINGS}, - { AMDGPU_RING_TYPE_SDMA, - AMDGPU_MES_CTX_MAX_SDMA_RINGS } }; + int queue_types[][2] = { { AMDGPU_RING_TYPE_GFX, 1 }, + { AMDGPU_RING_TYPE_COMPUTE, 1 }, + { AMDGPU_RING_TYPE_SDMA, 1} }; int i, r, pasid, k = 0; pasid = amdgpu_pasid_alloc(16); @@ -1423,3 +1422,78 @@ kfree(vm); return 0; } + +int amdgpu_mes_init_microcode(struct amdgpu_device *adev, int pipe) +{ + const struct mes_firmware_header_v1_0 *mes_hdr; + struct amdgpu_firmware_info *info; + char ucode_prefix[30]; + char fw_name[40]; + bool need_retry = false; + int r; + + amdgpu_ucode_ip_version_decode(adev, GC_HWIP, ucode_prefix, + sizeof(ucode_prefix)); + if (adev->ip_versions[GC_HWIP][0] >= IP_VERSION(11, 0, 0)) { + snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes%s.bin", + ucode_prefix, + pipe == AMDGPU_MES_SCHED_PIPE ? "_2" : "1"); + need_retry = true; + } else { + snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes%s.bin", + ucode_prefix, + pipe == AMDGPU_MES_SCHED_PIPE ? "" : "1"); + } + + r = amdgpu_ucode_request(adev, &adev->mes.fw[pipe], fw_name); + if (r && need_retry && pipe == AMDGPU_MES_SCHED_PIPE) { + snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes.bin", + ucode_prefix); + DRM_INFO("try to fall back to %s\n", fw_name); + r = amdgpu_ucode_request(adev, &adev->mes.fw[pipe], + fw_name); + } + + if (r) + goto out; + + mes_hdr = (const struct mes_firmware_header_v1_0 *) + adev->mes.fw[pipe]->data; + adev->mes.uc_start_addr[pipe] = + le32_to_cpu(mes_hdr->mes_uc_start_addr_lo) | + ((uint64_t)(le32_to_cpu(mes_hdr->mes_uc_start_addr_hi)) << 32); + adev->mes.data_start_addr[pipe] = + le32_to_cpu(mes_hdr->mes_data_start_addr_lo) | + ((uint64_t)(le32_to_cpu(mes_hdr->mes_data_start_addr_hi)) << 32); + + if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) { + int ucode, ucode_data; + + if (pipe == AMDGPU_MES_SCHED_PIPE) { + ucode = AMDGPU_UCODE_ID_CP_MES; + ucode_data = AMDGPU_UCODE_ID_CP_MES_DATA; + } else { + ucode = AMDGPU_UCODE_ID_CP_MES1; + ucode_data = AMDGPU_UCODE_ID_CP_MES1_DATA; + } + + info = &adev->firmware.ucode[ucode]; + info->ucode_id = ucode; + info->fw = adev->mes.fw[pipe]; + adev->firmware.fw_size += + ALIGN(le32_to_cpu(mes_hdr->mes_ucode_size_bytes), + PAGE_SIZE); + + info = &adev->firmware.ucode[ucode_data]; + info->ucode_id = ucode_data; + info->fw = adev->mes.fw[pipe]; + adev->firmware.fw_size += + ALIGN(le32_to_cpu(mes_hdr->mes_ucode_data_size_bytes), + PAGE_SIZE); + } + + return 0; +out: + amdgpu_ucode_release(&adev->mes.fw[pipe]); + return r; +} only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h @@ -306,6 +306,7 @@ int amdgpu_mes_ctx_get_offs(struct amdgpu_ring *ring, unsigned int id_offs); +int amdgpu_mes_init_microcode(struct amdgpu_device *adev, int pipe); int amdgpu_mes_init(struct amdgpu_device *adev); void amdgpu_mes_fini(struct amdgpu_device *adev); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_sched.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_sched.c @@ -38,6 +38,7 @@ { struct fd f = fdget(fd); struct amdgpu_fpriv *fpriv; + struct amdgpu_ctx_mgr *mgr; struct amdgpu_ctx *ctx; uint32_t id; int r; @@ -51,8 +52,11 @@ return r; } - idr_for_each_entry(&fpriv->ctx_mgr.ctx_handles, ctx, id) + mgr = &fpriv->ctx_mgr; + mutex_lock(&mgr->lock); + idr_for_each_entry(&mgr->ctx_handles, ctx, id) amdgpu_ctx_priority_override(ctx, priority); + mutex_unlock(&mgr->lock); fdput(f); return 0; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c @@ -1091,3 +1091,39 @@ snprintf(ucode_prefix, len, "%s_%d_%d_%d", ip_name, maj, min, rev); } + +/* + * amdgpu_ucode_request - Fetch and validate amdgpu microcode + * + * @adev: amdgpu device + * @fw: pointer to load firmware to + * @fw_name: firmware to load + * + * This is a helper that will use request_firmware and amdgpu_ucode_validate + * to load and run basic validation on firmware. If the load fails, remap + * the error code to -ENODEV, so that early_init functions will fail to load. + */ +int amdgpu_ucode_request(struct amdgpu_device *adev, const struct firmware **fw, + const char *fw_name) +{ + int err = request_firmware(fw, fw_name, adev->dev); + + if (err) + return -ENODEV; + err = amdgpu_ucode_validate(*fw); + if (err) + dev_dbg(adev->dev, "\"%s\" failed to validate\n", fw_name); + + return err; +} + +/* + * amdgpu_ucode_release - Release firmware microcode + * + * @fw: pointer to firmware to release + */ +void amdgpu_ucode_release(const struct firmware **fw) +{ + release_firmware(*fw); + *fw = NULL; +} only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h @@ -544,6 +544,9 @@ void amdgpu_ucode_print_psp_hdr(const struct common_firmware_header *hdr); void amdgpu_ucode_print_gpu_info_hdr(const struct common_firmware_header *hdr); int amdgpu_ucode_validate(const struct firmware *fw); +int amdgpu_ucode_request(struct amdgpu_device *adev, const struct firmware **fw, + const char *fw_name); +void amdgpu_ucode_release(const struct firmware **fw); bool amdgpu_ucode_hdr_version(union amdgpu_firmware_header *hdr, uint16_t hdr_major, uint16_t hdr_minor); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c @@ -8238,8 +8238,14 @@ case IP_VERSION(10, 3, 3): case IP_VERSION(10, 3, 6): case IP_VERSION(10, 3, 7): + if (!enable) + amdgpu_gfx_off_ctrl(adev, false); + gfx_v10_cntl_pg(adev, enable); - amdgpu_gfx_off_ctrl(adev, enable); + + if (enable) + amdgpu_gfx_off_ctrl(adev, true); + break; default: break; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -3845,7 +3845,8 @@ { struct amdgpu_device *adev = (struct amdgpu_device *)handle; - amdgpu_irq_put(adev, &adev->gfx.cp_ecc_error_irq, 0); + if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__GFX)) + amdgpu_irq_put(adev, &adev->gfx.cp_ecc_error_irq, 0); amdgpu_irq_put(adev, &adev->gfx.priv_reg_irq, 0); amdgpu_irq_put(adev, &adev->gfx.priv_inst_irq, 0); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c @@ -1145,7 +1145,6 @@ return 0; } - amdgpu_irq_put(adev, &adev->gmc.ecc_irq, 0); amdgpu_irq_put(adev, &adev->gmc.vm_fault, 0); return 0; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c @@ -31,6 +31,8 @@ #include "umc_v8_10.h" #include "athub/athub_3_0_0_sh_mask.h" #include "athub/athub_3_0_0_offset.h" +#include "dcn/dcn_3_2_0_offset.h" +#include "dcn/dcn_3_2_0_sh_mask.h" #include "oss/osssys_6_0_0_offset.h" #include "ivsrcid/vmc/irqsrcs_vmc_1_0.h" #include "navi10_enum.h" @@ -530,7 +532,24 @@ static unsigned gmc_v11_0_get_vbios_fb_size(struct amdgpu_device *adev) { - return 0; + u32 d1vga_control = RREG32_SOC15(DCE, 0, regD1VGA_CONTROL); + unsigned size; + + if (REG_GET_FIELD(d1vga_control, D1VGA_CONTROL, D1VGA_MODE_ENABLE)) { + size = AMDGPU_VBIOS_VGA_ALLOCATION; + } else { + u32 viewport; + u32 pitch; + + viewport = RREG32_SOC15(DCE, 0, regHUBP0_DCSURF_PRI_VIEWPORT_DIMENSION); + pitch = RREG32_SOC15(DCE, 0, regHUBPREQ0_DCSURF_SURFACE_PITCH); + size = (REG_GET_FIELD(viewport, + HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION, PRI_VIEWPORT_HEIGHT) * + REG_GET_FIELD(pitch, HUBPREQ0_DCSURF_SURFACE_PITCH, PITCH) * + 4); + } + + return size; } static const struct amdgpu_gmc_funcs gmc_v11_0_gmc_funcs = { @@ -941,7 +960,6 @@ return 0; } - amdgpu_irq_put(adev, &adev->gmc.ecc_irq, 0); amdgpu_irq_put(adev, &adev->gmc.vm_fault, 0); gmc_v11_0_gart_disable(adev); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c @@ -1963,7 +1963,6 @@ if (adev->mmhub.funcs->update_power_gating) adev->mmhub.funcs->update_power_gating(adev, false); - amdgpu_irq_put(adev, &adev->gmc.ecc_irq, 0); amdgpu_irq_put(adev, &adev->gmc.vm_fault, 0); return 0; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/jpeg_v3_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/jpeg_v3_0.c @@ -54,6 +54,7 @@ switch (adev->ip_versions[UVD_HWIP][0]) { case IP_VERSION(3, 1, 1): + case IP_VERSION(3, 1, 2): break; default: harvest = RREG32_SOC15(JPEG, 0, mmCC_UVD_HARVESTING); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/mes_v10_1.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/mes_v10_1.c @@ -379,89 +379,6 @@ .resume_gang = mes_v10_1_resume_gang, }; -static int mes_v10_1_init_microcode(struct amdgpu_device *adev, - enum admgpu_mes_pipe pipe) -{ - const char *chip_name; - char fw_name[30]; - int err; - const struct mes_firmware_header_v1_0 *mes_hdr; - struct amdgpu_firmware_info *info; - - switch (adev->ip_versions[GC_HWIP][0]) { - case IP_VERSION(10, 1, 10): - chip_name = "navi10"; - break; - case IP_VERSION(10, 3, 0): - chip_name = "sienna_cichlid"; - break; - default: - BUG(); - } - - if (pipe == AMDGPU_MES_SCHED_PIPE) - snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes.bin", - chip_name); - else - snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes1.bin", - chip_name); - - err = request_firmware(&adev->mes.fw[pipe], fw_name, adev->dev); - if (err) - return err; - - err = amdgpu_ucode_validate(adev->mes.fw[pipe]); - if (err) { - release_firmware(adev->mes.fw[pipe]); - adev->mes.fw[pipe] = NULL; - return err; - } - - mes_hdr = (const struct mes_firmware_header_v1_0 *) - adev->mes.fw[pipe]->data; - adev->mes.uc_start_addr[pipe] = - le32_to_cpu(mes_hdr->mes_uc_start_addr_lo) | - ((uint64_t)(le32_to_cpu(mes_hdr->mes_uc_start_addr_hi)) << 32); - adev->mes.data_start_addr[pipe] = - le32_to_cpu(mes_hdr->mes_data_start_addr_lo) | - ((uint64_t)(le32_to_cpu(mes_hdr->mes_data_start_addr_hi)) << 32); - - if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) { - int ucode, ucode_data; - - if (pipe == AMDGPU_MES_SCHED_PIPE) { - ucode = AMDGPU_UCODE_ID_CP_MES; - ucode_data = AMDGPU_UCODE_ID_CP_MES_DATA; - } else { - ucode = AMDGPU_UCODE_ID_CP_MES1; - ucode_data = AMDGPU_UCODE_ID_CP_MES1_DATA; - } - - info = &adev->firmware.ucode[ucode]; - info->ucode_id = ucode; - info->fw = adev->mes.fw[pipe]; - adev->firmware.fw_size += - ALIGN(le32_to_cpu(mes_hdr->mes_ucode_size_bytes), - PAGE_SIZE); - - info = &adev->firmware.ucode[ucode_data]; - info->ucode_id = ucode_data; - info->fw = adev->mes.fw[pipe]; - adev->firmware.fw_size += - ALIGN(le32_to_cpu(mes_hdr->mes_ucode_data_size_bytes), - PAGE_SIZE); - } - - return 0; -} - -static void mes_v10_1_free_microcode(struct amdgpu_device *adev, - enum admgpu_mes_pipe pipe) -{ - release_firmware(adev->mes.fw[pipe]); - adev->mes.fw[pipe] = NULL; -} - static int mes_v10_1_allocate_ucode_buffer(struct amdgpu_device *adev, enum admgpu_mes_pipe pipe) { @@ -1019,10 +936,6 @@ if (!adev->enable_mes_kiq && pipe == AMDGPU_MES_KIQ_PIPE) continue; - r = mes_v10_1_init_microcode(adev, pipe); - if (r) - return r; - r = mes_v10_1_allocate_eop_buf(adev, pipe); if (r) return r; @@ -1059,8 +972,7 @@ amdgpu_bo_free_kernel(&adev->mes.eop_gpu_obj[pipe], &adev->mes.eop_gpu_addr[pipe], NULL); - - mes_v10_1_free_microcode(adev, pipe); + amdgpu_ucode_release(&adev->mes.fw[pipe]); } amdgpu_bo_free_kernel(&adev->gfx.kiq.ring.mqd_obj, @@ -1229,6 +1141,22 @@ return amdgpu_mes_resume(adev); } +static int mes_v10_0_early_init(void *handle) +{ + struct amdgpu_device *adev = (struct amdgpu_device *)handle; + int pipe, r; + + for (pipe = 0; pipe < AMDGPU_MAX_MES_PIPES; pipe++) { + if (!adev->enable_mes_kiq && pipe == AMDGPU_MES_KIQ_PIPE) + continue; + r = amdgpu_mes_init_microcode(adev, pipe); + if (r) + return r; + } + + return 0; +} + static int mes_v10_0_late_init(void *handle) { struct amdgpu_device *adev = (struct amdgpu_device *)handle; @@ -1241,6 +1169,7 @@ static const struct amd_ip_funcs mes_v10_1_ip_funcs = { .name = "mes_v10_1", + .early_init = mes_v10_0_early_init, .late_init = mes_v10_0_late_init, .sw_init = mes_v10_1_sw_init, .sw_fini = mes_v10_1_sw_fini, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c @@ -33,14 +33,19 @@ #include "mes_v11_api_def.h" MODULE_FIRMWARE("amdgpu/gc_11_0_0_mes.bin"); +MODULE_FIRMWARE("amdgpu/gc_11_0_0_mes_2.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_0_mes1.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_1_mes.bin"); +MODULE_FIRMWARE("amdgpu/gc_11_0_1_mes_2.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_1_mes1.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_2_mes.bin"); +MODULE_FIRMWARE("amdgpu/gc_11_0_2_mes_2.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_2_mes1.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_3_mes.bin"); +MODULE_FIRMWARE("amdgpu/gc_11_0_3_mes_2.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_3_mes1.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_4_mes.bin"); +MODULE_FIRMWARE("amdgpu/gc_11_0_4_mes_2.bin"); MODULE_FIRMWARE("amdgpu/gc_11_0_4_mes1.bin"); static int mes_v11_0_hw_fini(void *handle); @@ -460,80 +465,6 @@ .misc_op = mes_v11_0_misc_op, }; -static int mes_v11_0_init_microcode(struct amdgpu_device *adev, - enum admgpu_mes_pipe pipe) -{ - char fw_name[30]; - char ucode_prefix[30]; - int err; - const struct mes_firmware_header_v1_0 *mes_hdr; - struct amdgpu_firmware_info *info; - - amdgpu_ucode_ip_version_decode(adev, GC_HWIP, ucode_prefix, sizeof(ucode_prefix)); - - if (pipe == AMDGPU_MES_SCHED_PIPE) - snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes.bin", - ucode_prefix); - else - snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_mes1.bin", - ucode_prefix); - - err = request_firmware(&adev->mes.fw[pipe], fw_name, adev->dev); - if (err) - return err; - - err = amdgpu_ucode_validate(adev->mes.fw[pipe]); - if (err) { - release_firmware(adev->mes.fw[pipe]); - adev->mes.fw[pipe] = NULL; - return err; - } - - mes_hdr = (const struct mes_firmware_header_v1_0 *) - adev->mes.fw[pipe]->data; - adev->mes.uc_start_addr[pipe] = - le32_to_cpu(mes_hdr->mes_uc_start_addr_lo) | - ((uint64_t)(le32_to_cpu(mes_hdr->mes_uc_start_addr_hi)) << 32); - adev->mes.data_start_addr[pipe] = - le32_to_cpu(mes_hdr->mes_data_start_addr_lo) | - ((uint64_t)(le32_to_cpu(mes_hdr->mes_data_start_addr_hi)) << 32); - - if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) { - int ucode, ucode_data; - - if (pipe == AMDGPU_MES_SCHED_PIPE) { - ucode = AMDGPU_UCODE_ID_CP_MES; - ucode_data = AMDGPU_UCODE_ID_CP_MES_DATA; - } else { - ucode = AMDGPU_UCODE_ID_CP_MES1; - ucode_data = AMDGPU_UCODE_ID_CP_MES1_DATA; - } - - info = &adev->firmware.ucode[ucode]; - info->ucode_id = ucode; - info->fw = adev->mes.fw[pipe]; - adev->firmware.fw_size += - ALIGN(le32_to_cpu(mes_hdr->mes_ucode_size_bytes), - PAGE_SIZE); - - info = &adev->firmware.ucode[ucode_data]; - info->ucode_id = ucode_data; - info->fw = adev->mes.fw[pipe]; - adev->firmware.fw_size += - ALIGN(le32_to_cpu(mes_hdr->mes_ucode_data_size_bytes), - PAGE_SIZE); - } - - return 0; -} - -static void mes_v11_0_free_microcode(struct amdgpu_device *adev, - enum admgpu_mes_pipe pipe) -{ - release_firmware(adev->mes.fw[pipe]); - adev->mes.fw[pipe] = NULL; -} - static int mes_v11_0_allocate_ucode_buffer(struct amdgpu_device *adev, enum admgpu_mes_pipe pipe) { @@ -1101,10 +1032,6 @@ if (!adev->enable_mes_kiq && pipe == AMDGPU_MES_KIQ_PIPE) continue; - r = mes_v11_0_init_microcode(adev, pipe); - if (r) - return r; - r = mes_v11_0_allocate_eop_buf(adev, pipe); if (r) return r; @@ -1141,8 +1068,7 @@ amdgpu_bo_free_kernel(&adev->mes.eop_gpu_obj[pipe], &adev->mes.eop_gpu_addr[pipe], NULL); - - mes_v11_0_free_microcode(adev, pipe); + amdgpu_ucode_release(&adev->mes.fw[pipe]); } amdgpu_bo_free_kernel(&adev->gfx.kiq.ring.mqd_obj, @@ -1339,6 +1265,22 @@ return amdgpu_mes_resume(adev); } +static int mes_v11_0_early_init(void *handle) +{ + struct amdgpu_device *adev = (struct amdgpu_device *)handle; + int pipe, r; + + for (pipe = 0; pipe < AMDGPU_MAX_MES_PIPES; pipe++) { + if (!adev->enable_mes_kiq && pipe == AMDGPU_MES_KIQ_PIPE) + continue; + r = amdgpu_mes_init_microcode(adev, pipe); + if (r) + return r; + } + + return 0; +} + static int mes_v11_0_late_init(void *handle) { struct amdgpu_device *adev = (struct amdgpu_device *)handle; @@ -1353,6 +1295,7 @@ static const struct amd_ip_funcs mes_v11_0_ip_funcs = { .name = "mes_v11_0", + .early_init = mes_v11_0_early_init, .late_init = mes_v11_0_late_init, .sw_init = mes_v11_0_sw_init, .sw_fini = mes_v11_0_sw_fini, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c @@ -1908,7 +1908,7 @@ amdgpu_ring_fini(&adev->sdma.instance[i].page); } - if (adev->ip_versions[SDMA0_HWIP][0] == IP_VERSION(4, 2, 0) || + if (adev->ip_versions[SDMA0_HWIP][0] == IP_VERSION(4, 2, 2) || adev->ip_versions[SDMA0_HWIP][0] == IP_VERSION(4, 4, 0)) amdgpu_sdma_destroy_inst_ctx(adev, true); else @@ -1941,9 +1941,11 @@ return 0; } - for (i = 0; i < adev->sdma.num_instances; i++) { - amdgpu_irq_put(adev, &adev->sdma.ecc_irq, - AMDGPU_SDMA_IRQ_INSTANCE0 + i); + if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__SDMA)) { + for (i = 0; i < adev->sdma.num_instances; i++) { + amdgpu_irq_put(adev, &adev->sdma.ecc_irq, + AMDGPU_SDMA_IRQ_INSTANCE0 + i); + } } sdma_v4_0_ctx_switch_enable(adev, false); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c @@ -516,11 +516,8 @@ info->i2c_slave_address = record->i2c_slave_addr; /* TODO: check how to get register offset for en, Y, etc. */ - info->gpio_info.clk_a_register_index = - le16_to_cpu( - header->gpio_pin[table_index].data_a_reg_index); - info->gpio_info.clk_a_shift = - header->gpio_pin[table_index].gpio_bitshift; + info->gpio_info.clk_a_register_index = le16_to_cpu(pin->data_a_reg_index); + info->gpio_info.clk_a_shift = pin->gpio_bitshift; return BP_RESULT_OK; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn314/dcn314_clk_mgr.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn314/dcn314_clk_mgr.c @@ -108,6 +108,11 @@ stream->signal == SIGNAL_TYPE_DVI_SINGLE_LINK || stream->signal == SIGNAL_TYPE_DVI_DUAL_LINK) tmds_present = true; + + /* Checking stream / link detection ensuring that PHY is active*/ + if (dc_is_dp_signal(stream->signal) && !stream->dpms_off) + display_count++; + } for (i = 0; i < dc->link_count; i++) { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn32/dcn32_clk_mgr.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn32/dcn32_clk_mgr.c @@ -719,6 +719,8 @@ struct pp_smu_funcs *pp_smu, struct dccg *dccg) { + struct clk_log_info log_info = {0}; + clk_mgr->base.ctx = ctx; clk_mgr->base.funcs = &dcn32_funcs; if (ASICREV_IS_GC_11_0_2(clk_mgr->base.ctx->asic_id.hw_internal_rev)) { @@ -752,6 +754,7 @@ clk_mgr->base.clks.ref_dtbclk_khz = 268750; } + /* integer part is now VCO frequency in kHz */ clk_mgr->base.dentist_vco_freq_khz = dcn32_get_vco_frequency_from_reg(clk_mgr); @@ -759,6 +762,8 @@ if (clk_mgr->base.dentist_vco_freq_khz == 0) clk_mgr->base.dentist_vco_freq_khz = 4300000; /* Updated as per HW docs */ + dcn32_dump_clk_registers(&clk_mgr->base.boot_snapshot, &clk_mgr->base, &log_info); + if (ctx->dc->debug.disable_dtb_ref_clk_switch && clk_mgr->base.clks.ref_dtbclk_khz != clk_mgr->base.boot_snapshot.dtbclk) { clk_mgr->base.clks.ref_dtbclk_khz = clk_mgr->base.boot_snapshot.dtbclk; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/core/dc_resource.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c @@ -1707,6 +1707,9 @@ struct dc_stream_status *stream_status = NULL; struct resource_pool *pool = dc->res_pool; + if (!plane_state) + return true; + for (i = 0; i < context->stream_count; i++) if (context->streams[i] == stream) { stream_status = &context->stream_status[i]; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dc_dmub_srv.c @@ -750,7 +750,8 @@ !pipe->top_pipe && !pipe->prev_odm_pipe && pipe->stream->mall_stream_config.type == SUBVP_MAIN) { populate_subvp_cmd_pipe_info(dc, context, &cmd, pipe, cmd_pipe_index++); - } else if (pipe->plane_state && pipe->stream->mall_stream_config.type == SUBVP_NONE) { + } else if (pipe->plane_state && pipe->stream->mall_stream_config.type == SUBVP_NONE && + !pipe->top_pipe && !pipe->prev_odm_pipe) { // Don't need to check for ActiveDRAMClockChangeMargin < 0, not valid in cases where // we run through DML without calculating "natural" P-state support populate_subvp_cmd_vblank_pipe_info(dc, context, &cmd, pipe, cmd_pipe_index++); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dc_types.h +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dc_types.h @@ -1000,4 +1000,10 @@ }; #endif +enum dc_hpd_enable_select { + HPD_EN_FOR_ALL_EDP = 0, + HPD_EN_FOR_PRIMARY_EDP_ONLY, + HPD_EN_FOR_SECONDARY_EDP_ONLY, +}; + #endif /* DC_TYPES_H_ */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dce/dce_transform.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dce/dce_transform.c @@ -1009,7 +1009,7 @@ color_depth = COLOR_DEPTH_101010; pixel_depth = 0; expan_mode = 1; - BREAK_TO_DEBUGGER(); + DC_LOG_DC("The pixel depth %d is not valid, set COLOR_DEPTH_101010 instead.", depth); break; } @@ -1023,8 +1023,7 @@ if (!(xfm_dce->lb_pixel_depth_supported & depth)) { /*we should use unsupported capabilities * unless it is required by w/a*/ - DC_LOG_WARNING("%s: Capability not supported", - __func__); + DC_LOG_DC("%s: Capability not supported", __func__); } } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c @@ -728,11 +728,15 @@ } } -static void power_on_plane( +static void power_on_plane_resources( struct dce_hwseq *hws, int plane_id) { DC_LOGGER_INIT(hws->ctx->logger); + + if (hws->funcs.dpp_root_clock_control) + hws->funcs.dpp_root_clock_control(hws, plane_id, true); + if (REG(DC_IP_REQUEST_CNTL)) { REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 1); @@ -1239,11 +1243,15 @@ hws->funcs.hubp_pg_control(hws, hubp->inst, false); dpp->funcs->dpp_reset(dpp); + REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 0); DC_LOG_DEBUG( "Power gated front end %d\n", hubp->inst); } + + if (hws->funcs.dpp_root_clock_control) + hws->funcs.dpp_root_clock_control(hws, dpp->inst, false); } /* disable HW used by plane. @@ -2464,7 +2472,7 @@ undo_DEGVIDCN10_253_wa(dc); - power_on_plane(dc->hwseq, + power_on_plane_resources(dc->hwseq, pipe_ctx->plane_res.hubp->inst); /* enable DCFCLK current DCHUB */ @@ -3383,7 +3391,9 @@ for (test_pipe = pipe_ctx->top_pipe; test_pipe; test_pipe = test_pipe->top_pipe) { // Skip invisible layer and pipe-split plane on same layer - if (!test_pipe->plane_state->visible || test_pipe->plane_state->layer_index == cur_layer) + if (!test_pipe->plane_state || + !test_pipe->plane_state->visible || + test_pipe->plane_state->layer_index == cur_layer) continue; r2 = test_pipe->plane_res.scl_data.recout; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c @@ -1110,11 +1110,15 @@ } -static void dcn20_power_on_plane( +static void dcn20_power_on_plane_resources( struct dce_hwseq *hws, struct pipe_ctx *pipe_ctx) { DC_LOGGER_INIT(hws->ctx->logger); + + if (hws->funcs.dpp_root_clock_control) + hws->funcs.dpp_root_clock_control(hws, pipe_ctx->plane_res.dpp->inst, true); + if (REG(DC_IP_REQUEST_CNTL)) { REG_SET(DC_IP_REQUEST_CNTL, 0, IP_REQUEST_EN, 1); @@ -1138,7 +1142,7 @@ //if (dc->debug.sanity_checks) { // dcn10_verify_allow_pstate_change_high(dc); //} - dcn20_power_on_plane(dc->hwseq, pipe_ctx); + dcn20_power_on_plane_resources(dc->hwseq, pipe_ctx); /* enable DCFCLK current DCHUB */ pipe_ctx->plane_res.hubp->funcs->hubp_clk_cntl(pipe_ctx->plane_res.hubp, true); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_dccg.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_dccg.c @@ -66,17 +66,8 @@ REG_UPDATE(DPPCLK_DTO_CTRL, DPPCLK_DTO_ENABLE[dpp_inst], 1); } else { - //DTO must be enabled to generate a 0Hz clock output - if (dccg->ctx->dc->debug.root_clock_optimization.bits.dpp) { - REG_UPDATE(DPPCLK_DTO_CTRL, - DPPCLK_DTO_ENABLE[dpp_inst], 1); - REG_SET_2(DPPCLK_DTO_PARAM[dpp_inst], 0, - DPPCLK0_DTO_PHASE, 0, - DPPCLK0_DTO_MODULO, 1); - } else { - REG_UPDATE(DPPCLK_DTO_CTRL, - DPPCLK_DTO_ENABLE[dpp_inst], 0); - } + REG_UPDATE(DPPCLK_DTO_CTRL, + DPPCLK_DTO_ENABLE[dpp_inst], 0); } dccg->pipe_dppclk_khz[dpp_inst] = req_dppclk; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hwseq.c @@ -286,7 +286,7 @@ if (dc->clk_mgr->funcs->notify_wm_ranges) dc->clk_mgr->funcs->notify_wm_ranges(dc->clk_mgr); - if (dc->clk_mgr->funcs->set_hard_max_memclk) + if (dc->clk_mgr->funcs->set_hard_max_memclk && !dc->clk_mgr->dc_mode_softmax_enabled) dc->clk_mgr->funcs->set_hard_max_memclk(dc->clk_mgr); if (dc->res_pool->hubbub->funcs->force_pstate_change_control) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_dccg.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_dccg.c @@ -289,8 +289,31 @@ dccg314_set_dtbclk_dto(dccg, &dto_params); } +static void dccg314_dpp_root_clock_control( + struct dccg *dccg, + unsigned int dpp_inst, + bool clock_on) +{ + struct dcn_dccg *dccg_dcn = TO_DCN_DCCG(dccg); + + if (clock_on) { + /* turn off the DTO and leave phase/modulo at max */ + REG_UPDATE(DPPCLK_DTO_CTRL, DPPCLK_DTO_ENABLE[dpp_inst], 0); + REG_SET_2(DPPCLK_DTO_PARAM[dpp_inst], 0, + DPPCLK0_DTO_PHASE, 0xFF, + DPPCLK0_DTO_MODULO, 0xFF); + } else { + /* turn on the DTO to generate a 0hz clock */ + REG_UPDATE(DPPCLK_DTO_CTRL, DPPCLK_DTO_ENABLE[dpp_inst], 1); + REG_SET_2(DPPCLK_DTO_PARAM[dpp_inst], 0, + DPPCLK0_DTO_PHASE, 0, + DPPCLK0_DTO_MODULO, 1); + } +} + static const struct dccg_funcs dccg314_funcs = { .update_dpp_dto = dccg31_update_dpp_dto, + .dpp_root_clock_control = dccg314_dpp_root_clock_control, .get_dccg_ref_freq = dccg31_get_dccg_ref_freq, .dccg_init = dccg31_init, .set_dpstreamclk = dccg314_set_dpstreamclk, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c @@ -949,7 +949,6 @@ int plane_count; int i; unsigned int optimized_min_dst_y_next_start_us; - bool allow_z8 = context->bw_ctx.dml.vba.StutterPeriod > 1000.0; plane_count = 0; optimized_min_dst_y_next_start_us = 0; @@ -974,6 +973,9 @@ else if (context->stream_count == 1 && context->streams[0]->signal == SIGNAL_TYPE_EDP) { struct dc_link *link = context->streams[0]->sink->link; struct dc_stream_status *stream_status = &context->stream_status[0]; + int minmum_z8_residency = dc->debug.minimum_z8_residency_time > 0 ? dc->debug.minimum_z8_residency_time : 1000; + bool allow_z8 = context->bw_ctx.dml.vba.StutterPeriod > (double)minmum_z8_residency; + bool is_pwrseq0 = link->link_index == 0; if (dc_extended_blank_supported(dc)) { for (i = 0; i < dc->res_pool->pipe_count; i++) { @@ -986,18 +988,17 @@ } } } - /* zstate only supported on PWRSEQ0 and when there's <2 planes*/ - if (link->link_index != 0 || stream_status->plane_count > 1) + + /* Don't support multi-plane configurations */ + if (stream_status->plane_count > 1) return DCN_ZSTATE_SUPPORT_DISALLOW; - if (context->bw_ctx.dml.vba.StutterPeriod > 5000.0 || optimized_min_dst_y_next_start_us > 5000) + if (is_pwrseq0 && (context->bw_ctx.dml.vba.StutterPeriod > 5000.0 || optimized_min_dst_y_next_start_us > 5000)) return DCN_ZSTATE_SUPPORT_ALLOW; - else if (link->psr_settings.psr_version == DC_PSR_VERSION_1 && !link->panel_config.psr.disable_psr) + else if (is_pwrseq0 && link->psr_settings.psr_version == DC_PSR_VERSION_1 && !link->panel_config.psr.disable_psr) return allow_z8 ? DCN_ZSTATE_SUPPORT_ALLOW_Z8_Z10_ONLY : DCN_ZSTATE_SUPPORT_ALLOW_Z10_ONLY; else return allow_z8 ? DCN_ZSTATE_SUPPORT_ALLOW_Z8_ONLY : DCN_ZSTATE_SUPPORT_DISALLOW; - } else if (allow_z8) { - return DCN_ZSTATE_SUPPORT_ALLOW_Z8_ONLY; } else { return DCN_ZSTATE_SUPPORT_DISALLOW; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c @@ -4304,11 +4304,11 @@ v->AudioSampleRate[k], v->AudioSampleLayout[k], v->ODMCombineEnablePerState[i][k]); - } else if (v->Output[k] == dm_dp || v->Output[k] == dm_edp) { + } else if (v->Output[k] == dm_dp || v->Output[k] == dm_edp || v->Output[k] == dm_dp2p0) { if (v->DSCEnable[k] == true) { v->RequiresDSC[i][k] = true; v->LinkDSCEnable = true; - if (v->Output[k] == dm_dp) { + if (v->Output[k] == dm_dp || v->Output[k] == dm_dp2p0) { v->RequiresFEC[i][k] = true; } else { v->RequiresFEC[i][k] = false; @@ -4316,107 +4316,201 @@ } else { v->RequiresDSC[i][k] = false; v->LinkDSCEnable = false; - v->RequiresFEC[i][k] = false; - } - - v->Outbpp = BPP_INVALID; - if (v->PHYCLKPerState[i] >= 270.0) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 2700, - v->OutputLinkDPLanes[k], - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - // TODO: Need some other way to handle this nonsense - // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR" - } - if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 540.0) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 5400, - v->OutputLinkDPLanes[k], - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - // TODO: Need some other way to handle this nonsense - // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR2" - } - if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 810.0) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 8100, - v->OutputLinkDPLanes[k], - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - // TODO: Need some other way to handle this nonsense - // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR3" - } - if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[i] >= 10000.0 / 18) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 10000, - 4, - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - //v->OutputTypeAndRatePerState[i][k] = v->Output[k] & "10x4"; + if (v->Output[k] == dm_dp2p0) { + v->RequiresFEC[i][k] = true; + } else { + v->RequiresFEC[i][k] = false; + } } - if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[i] >= 12000.0 / 18) { - v->Outbpp = TruncToValidBPP( - 12000, - 4, - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - //v->OutputTypeAndRatePerState[i][k] = v->Output[k] & "12x4"; + if (v->Output[k] == dm_dp2p0) { + v->Outbpp = BPP_INVALID; + if ((v->OutputLinkDPRate[k] == dm_dp_rate_na || v->OutputLinkDPRate[k] == dm_dp_rate_uhbr10) && + v->PHYCLKD18PerState[k] >= 10000.0 / 18.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 10000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[k] < 13500.0 / 18.0 && + v->DSCEnable[k] == true && v->ForcedOutputLinkBPP[k] == 0) { + v->RequiresDSC[i][k] = true; + v->LinkDSCEnable = true; + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 10000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + } + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " UHBR10" + } + if (v->Outbpp == BPP_INVALID && + (v->OutputLinkDPRate[k] == dm_dp_rate_na || v->OutputLinkDPRate[k] == dm_dp_rate_uhbr13p5) && + v->PHYCLKD18PerState[k] >= 13500.0 / 18.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 13500, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[k] < 20000.0 / 18.0 && + v->DSCEnable[k] == true && v->ForcedOutputLinkBPP[k] == 0) { + v->RequiresDSC[i][k] = true; + v->LinkDSCEnable = true; + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 13500, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + } + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " UHBR13p5" + } + if (v->Outbpp == BPP_INVALID && + (v->OutputLinkDPRate[k] == dm_dp_rate_na || v->OutputLinkDPRate[k] == dm_dp_rate_uhbr20) && + v->PHYCLKD18PerState[k] >= 20000.0 / 18.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 20000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + if (v->Outbpp == BPP_INVALID && v->DSCEnable[k] == true && + v->ForcedOutputLinkBPP[k] == 0) { + v->RequiresDSC[i][k] = true; + v->LinkDSCEnable = true; + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 20000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + } + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " UHBR20" + } + } else { + v->Outbpp = BPP_INVALID; + if (v->PHYCLKPerState[i] >= 270.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 2700, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR" + } + if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 540.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 5400, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR2" + } + if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 810.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 8100, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR3" + } } } } else { @@ -5094,7 +5188,7 @@ v->DETBufferSizeCThisState[k], &v->UrgentBurstFactorCursorPre[k], &v->UrgentBurstFactorLumaPre[k], - &v->UrgentBurstFactorChroma[k], + &v->UrgentBurstFactorChromaPre[k], &v->NotUrgentLatencyHidingPre[k]); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn314/dcn314_fpu.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn314/dcn314_fpu.c @@ -149,8 +149,8 @@ .num_states = 5, .sr_exit_time_us = 16.5, .sr_enter_plus_exit_time_us = 18.5, - .sr_exit_z8_time_us = 280.0, - .sr_enter_plus_exit_z8_time_us = 350.0, + .sr_exit_z8_time_us = 268.0, + .sr_enter_plus_exit_z8_time_us = 393.0, .writeback_latency_us = 12.0, .dram_channel_width_bytes = 4, .round_trip_ping_latency_dcfclk_cycles = 106, @@ -308,6 +308,10 @@ pipe->plane_state->src_rect.width < pipe->plane_state->dst_rect.width)) upscaled = true; + /* Apply HostVM policy - either based on hypervisor globally enabled, or rIOMMU active */ + if (dc->debug.dml_hostvm_override == DML_HOSTVM_NO_OVERRIDE) + pipes[i].pipe.src.hostvm = dc->vm_pa_config.is_hvm_enabled || dc->res_pool->hubbub->riommu_active; + /* * Immediate flip can be set dynamically after enabling the plane. * We need to require support for immediate flip or underflow can be only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn314/display_mode_vba_314.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn314/display_mode_vba_314.c @@ -4402,11 +4402,11 @@ v->AudioSampleRate[k], v->AudioSampleLayout[k], v->ODMCombineEnablePerState[i][k]); - } else if (v->Output[k] == dm_dp || v->Output[k] == dm_edp) { + } else if (v->Output[k] == dm_dp || v->Output[k] == dm_edp || v->Output[k] == dm_dp2p0) { if (v->DSCEnable[k] == true) { v->RequiresDSC[i][k] = true; v->LinkDSCEnable = true; - if (v->Output[k] == dm_dp) { + if (v->Output[k] == dm_dp || v->Output[k] == dm_dp2p0) { v->RequiresFEC[i][k] = true; } else { v->RequiresFEC[i][k] = false; @@ -4414,107 +4414,201 @@ } else { v->RequiresDSC[i][k] = false; v->LinkDSCEnable = false; - v->RequiresFEC[i][k] = false; - } - - v->Outbpp = BPP_INVALID; - if (v->PHYCLKPerState[i] >= 270.0) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 2700, - v->OutputLinkDPLanes[k], - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - // TODO: Need some other way to handle this nonsense - // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR" - } - if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 540.0) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 5400, - v->OutputLinkDPLanes[k], - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - // TODO: Need some other way to handle this nonsense - // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR2" - } - if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 810.0) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 8100, - v->OutputLinkDPLanes[k], - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - // TODO: Need some other way to handle this nonsense - // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR3" - } - if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[i] >= 10000.0 / 18) { - v->Outbpp = TruncToValidBPP( - (1.0 - v->Downspreading / 100.0) * 10000, - 4, - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - //v->OutputTypeAndRatePerState[i][k] = v->Output[k] & "10x4"; + if (v->Output[k] == dm_dp2p0) { + v->RequiresFEC[i][k] = true; + } else { + v->RequiresFEC[i][k] = false; + } } - if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[i] >= 12000.0 / 18) { - v->Outbpp = TruncToValidBPP( - 12000, - 4, - v->HTotal[k], - v->HActive[k], - v->PixelClockBackEnd[k], - v->ForcedOutputLinkBPP[k], - v->LinkDSCEnable, - v->Output[k], - v->OutputFormat[k], - v->DSCInputBitPerComponent[k], - v->NumberOfDSCSlices[k], - v->AudioSampleRate[k], - v->AudioSampleLayout[k], - v->ODMCombineEnablePerState[i][k]); - v->OutputBppPerState[i][k] = v->Outbpp; - //v->OutputTypeAndRatePerState[i][k] = v->Output[k] & "12x4"; + if (v->Output[k] == dm_dp2p0) { + v->Outbpp = BPP_INVALID; + if ((v->OutputLinkDPRate[k] == dm_dp_rate_na || v->OutputLinkDPRate[k] == dm_dp_rate_uhbr10) && + v->PHYCLKD18PerState[k] >= 10000.0 / 18.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 10000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[k] < 13500.0 / 18.0 && + v->DSCEnable[k] == true && v->ForcedOutputLinkBPP[k] == 0) { + v->RequiresDSC[i][k] = true; + v->LinkDSCEnable = true; + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 10000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + } + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " UHBR10" + } + if (v->Outbpp == BPP_INVALID && + (v->OutputLinkDPRate[k] == dm_dp_rate_na || v->OutputLinkDPRate[k] == dm_dp_rate_uhbr13p5) && + v->PHYCLKD18PerState[k] >= 13500.0 / 18.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 13500, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + if (v->Outbpp == BPP_INVALID && v->PHYCLKD18PerState[k] < 20000.0 / 18.0 && + v->DSCEnable[k] == true && v->ForcedOutputLinkBPP[k] == 0) { + v->RequiresDSC[i][k] = true; + v->LinkDSCEnable = true; + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 13500, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + } + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " UHBR13p5" + } + if (v->Outbpp == BPP_INVALID && + (v->OutputLinkDPRate[k] == dm_dp_rate_na || v->OutputLinkDPRate[k] == dm_dp_rate_uhbr20) && + v->PHYCLKD18PerState[k] >= 20000.0 / 18.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 20000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + if (v->Outbpp == BPP_INVALID && v->DSCEnable[k] == true && + v->ForcedOutputLinkBPP[k] == 0) { + v->RequiresDSC[i][k] = true; + v->LinkDSCEnable = true; + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 20000, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + } + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " UHBR20" + } + } else { + v->Outbpp = BPP_INVALID; + if (v->PHYCLKPerState[i] >= 270.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 2700, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR" + } + if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 540.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 5400, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR2" + } + if (v->Outbpp == BPP_INVALID && v->PHYCLKPerState[i] >= 810.0) { + v->Outbpp = TruncToValidBPP( + (1.0 - v->Downspreading / 100.0) * 8100, + v->OutputLinkDPLanes[k], + v->HTotal[k], + v->HActive[k], + v->PixelClockBackEnd[k], + v->ForcedOutputLinkBPP[k], + v->LinkDSCEnable, + v->Output[k], + v->OutputFormat[k], + v->DSCInputBitPerComponent[k], + v->NumberOfDSCSlices[k], + v->AudioSampleRate[k], + v->AudioSampleLayout[k], + v->ODMCombineEnablePerState[i][k]); + v->OutputBppPerState[i][k] = v->Outbpp; + // TODO: Need some other way to handle this nonsense + // v->OutputTypeAndRatePerState[i][k] = v->Output[k] & " HBR3" + } } } } else { @@ -5191,7 +5285,7 @@ v->DETBufferSizeCThisState[k], &v->UrgentBurstFactorCursorPre[k], &v->UrgentBurstFactorLumaPre[k], - &v->UrgentBurstFactorChroma[k], + &v->UrgentBurstFactorChromaPre[k], &v->NotUrgentLatencyHidingPre[k]); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_32.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_32.c @@ -807,7 +807,8 @@ v->SwathHeightY[k], v->SwathHeightC[k], TWait, - v->DRAMSpeedPerState[mode_lib->vba.VoltageLevel] <= MEM_STROBE_FREQ_MHZ ? + (v->DRAMSpeedPerState[mode_lib->vba.VoltageLevel] <= MEM_STROBE_FREQ_MHZ || + v->DCFCLKPerState[mode_lib->vba.VoltageLevel] <= MIN_DCFCLK_FREQ_MHZ) ? mode_lib->vba.ip.min_prefetch_in_strobe_us : 0, /* Output */ &v->DSTXAfterScaler[k], @@ -3289,7 +3290,7 @@ v->swath_width_chroma_ub_this_state[k], v->SwathHeightYThisState[k], v->SwathHeightCThisState[k], v->TWait, - v->DRAMSpeedPerState[i] <= MEM_STROBE_FREQ_MHZ ? + (v->DRAMSpeedPerState[i] <= MEM_STROBE_FREQ_MHZ || v->DCFCLKState[i][j] <= MIN_DCFCLK_FREQ_MHZ) ? mode_lib->vba.ip.min_prefetch_in_strobe_us : 0, /* Output */ @@ -3333,7 +3334,7 @@ /* Output */ &mode_lib->vba.UrgentBurstFactorCursorPre[k], &mode_lib->vba.UrgentBurstFactorLumaPre[k], - &mode_lib->vba.UrgentBurstFactorChroma[k], + &mode_lib->vba.UrgentBurstFactorChromaPre[k], &mode_lib->vba.NotUrgentLatencyHidingPre[k]); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_32.h +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_32.h @@ -52,6 +52,7 @@ #define BPP_BLENDED_PIPE 0xffffffff #define MEM_STROBE_FREQ_MHZ 1600 +#define MIN_DCFCLK_FREQ_MHZ 200 #define MEM_STROBE_MAX_DELIVERY_TIME_US 60.0 struct display_mode_lib; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/inc/hw/dccg.h +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/inc/hw/dccg.h @@ -148,18 +148,21 @@ struct dccg *dccg, int inst); -void (*set_pixel_rate_div)( - struct dccg *dccg, - uint32_t otg_inst, - enum pixel_rate_div k1, - enum pixel_rate_div k2); + void (*set_pixel_rate_div)(struct dccg *dccg, + uint32_t otg_inst, + enum pixel_rate_div k1, + enum pixel_rate_div k2); -void (*set_valid_pixel_rate)( - struct dccg *dccg, - int ref_dtbclk_khz, - int otg_inst, - int pixclk_khz); + void (*set_valid_pixel_rate)( + struct dccg *dccg, + int ref_dtbclk_khz, + int otg_inst, + int pixclk_khz); + void (*dpp_root_clock_control)( + struct dccg *dccg, + unsigned int dpp_inst, + bool clock_on); }; #endif //__DAL_DCCG_H__ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dc/inc/hw_sequencer_private.h +++ linux-6.2.0/drivers/gpu/drm/amd/display/dc/inc/hw_sequencer_private.h @@ -115,6 +115,10 @@ void (*plane_atomic_disable)(struct dc *dc, struct pipe_ctx *pipe_ctx); void (*enable_power_gating_plane)(struct dce_hwseq *hws, bool enable); + void (*dpp_root_clock_control)( + struct dce_hwseq *hws, + unsigned int dpp_inst, + bool clock_on); void (*dpp_pg_control)(struct dce_hwseq *hws, unsigned int dpp_inst, bool power_on); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/display/dmub/src/dmub_dcn32.c +++ linux-6.2.0/drivers/gpu/drm/amd/display/dmub/src/dmub_dcn32.c @@ -130,12 +130,13 @@ REG_WRITE(DMCUB_INBOX1_WPTR, 0); REG_WRITE(DMCUB_OUTBOX1_RPTR, 0); REG_WRITE(DMCUB_OUTBOX1_WPTR, 0); + REG_WRITE(DMCUB_OUTBOX0_RPTR, 0); + REG_WRITE(DMCUB_OUTBOX0_WPTR, 0); REG_WRITE(DMCUB_SCRATCH0, 0); } void dmub_dcn32_reset_release(struct dmub_srv *dmub) { - REG_WRITE(DMCUB_GPINT_DATAIN1, 0); REG_UPDATE(MMHUBBUB_SOFT_RESET, DMUIF_SOFT_RESET, 0); REG_WRITE(DMCUB_SCRATCH15, dmub->psp_version & 0x001100FF); REG_UPDATE_2(DMCUB_CNTL, DMCUB_ENABLE, 1, DMCUB_TRACEPORT_EN, 1); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/pm/amdgpu_dpm.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/amdgpu_dpm.c @@ -36,6 +36,8 @@ #define amdgpu_dpm_enable_bapm(adev, e) \ ((adev)->powerplay.pp_funcs->enable_bapm((adev)->powerplay.pp_handle, (e))) +#define amdgpu_dpm_is_legacy_dpm(adev) ((adev)->powerplay.pp_handle == (adev)) + int amdgpu_dpm_get_sclk(struct amdgpu_device *adev, bool low) { const struct amd_pm_funcs *pp_funcs = adev->powerplay.pp_funcs; @@ -1414,15 +1416,24 @@ int amdgpu_dpm_is_overdrive_supported(struct amdgpu_device *adev) { - struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle; - struct smu_context *smu = adev->powerplay.pp_handle; + if (is_support_sw_smu(adev)) { + struct smu_context *smu = adev->powerplay.pp_handle; - if ((is_support_sw_smu(adev) && smu->od_enabled) || - (is_support_sw_smu(adev) && smu->is_apu) || - (!is_support_sw_smu(adev) && hwmgr->od_enabled)) - return true; + return (smu->od_enabled || smu->is_apu); + } else { + struct pp_hwmgr *hwmgr; + + /* + * dpm on some legacy asics don't carry od_enabled member + * as its pp_handle is casted directly from adev. + */ + if (amdgpu_dpm_is_legacy_dpm(adev)) + return false; - return false; + hwmgr = (struct pp_hwmgr *)adev->powerplay.pp_handle; + + return hwmgr->od_enabled; + } } int amdgpu_dpm_set_pp_table(struct amdgpu_device *adev, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/pm/amdgpu_pm.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c @@ -869,13 +869,11 @@ } if (ret == -ENOENT) { size = amdgpu_dpm_print_clock_levels(adev, OD_SCLK, buf); - if (size > 0) { - size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf + size); - size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf + size); - size += amdgpu_dpm_print_clock_levels(adev, OD_VDDGFX_OFFSET, buf + size); - size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf + size); - size += amdgpu_dpm_print_clock_levels(adev, OD_CCLK, buf + size); - } + size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf + size); + size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf + size); + size += amdgpu_dpm_print_clock_levels(adev, OD_VDDGFX_OFFSET, buf + size); + size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf + size); + size += amdgpu_dpm_print_clock_levels(adev, OD_CCLK, buf + size); } if (size == 0) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/pm/swsmu/smu11/navi10_ppt.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu11/navi10_ppt.c @@ -3406,26 +3406,8 @@ return 0; ret = navi10_run_umc_cdr_workaround(smu); - if (ret) { + if (ret) dev_err(adev->dev, "Failed to apply umc cdr workaround!\n"); - return ret; - } - - if (!smu->dc_controlled_by_gpio) { - /* - * For Navi1X, manually switch it to AC mode as PMFW - * may boot it with DC mode. - */ - ret = smu_v11_0_set_power_source(smu, - adev->pm.ac_power ? - SMU_POWER_SOURCE_AC : - SMU_POWER_SOURCE_DC); - if (ret) { - dev_err(adev->dev, "Failed to switch to %s mode!\n", - adev->pm.ac_power ? "AC" : "DC"); - return ret; - } - } return ret; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c +++ linux-6.2.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c @@ -2489,3 +2489,51 @@ return ret; } + +int smu_v13_0_update_pcie_parameters(struct smu_context *smu, + uint32_t pcie_gen_cap, + uint32_t pcie_width_cap) +{ + struct smu_13_0_dpm_context *dpm_context = smu->smu_dpm.dpm_context; + struct smu_13_0_pcie_table *pcie_table = + &dpm_context->dpm_tables.pcie_table; + int num_of_levels = pcie_table->num_of_link_levels; + uint32_t smu_pcie_arg; + int ret, i; + + if (!amdgpu_device_pcie_dynamic_switching_supported()) { + if (pcie_table->pcie_gen[num_of_levels - 1] < pcie_gen_cap) + pcie_gen_cap = pcie_table->pcie_gen[num_of_levels - 1]; + + if (pcie_table->pcie_lane[num_of_levels - 1] < pcie_width_cap) + pcie_width_cap = pcie_table->pcie_lane[num_of_levels - 1]; + + /* Force all levels to use the same settings */ + for (i = 0; i < num_of_levels; i++) { + pcie_table->pcie_gen[i] = pcie_gen_cap; + pcie_table->pcie_lane[i] = pcie_width_cap; + } + } else { + for (i = 0; i < num_of_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; + } + } + + for (i = 0; i < num_of_levels; i++) { + smu_pcie_arg = i << 16; + smu_pcie_arg |= pcie_table->pcie_gen[i] << 8; + smu_pcie_arg |= pcie_table->pcie_lane[i]; + + ret = smu_cmn_send_smc_msg_with_param(smu, + SMU_MSG_OverridePcieParameters, + smu_pcie_arg, + NULL); + if (ret) + return ret; + } + + return 0; +} only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/arm/hdlcd_drv.c +++ linux-6.2.0/drivers/gpu/drm/arm/hdlcd_drv.c @@ -297,7 +297,7 @@ */ if (hdlcd_read(hdlcd, HDLCD_REG_COMMAND)) { hdlcd_write(hdlcd, HDLCD_REG_COMMAND, 0); - drm_aperture_remove_framebuffers(false, &hdlcd_driver); + drm_aperture_remove_framebuffers(&hdlcd_driver); } drm_mode_config_reset(drm); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/ast/ast_drv.c +++ linux-6.2.0/drivers/gpu/drm/ast/ast_drv.c @@ -101,7 +101,7 @@ primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW; #endif - return drm_aperture_remove_conflicting_framebuffers(base, size, primary, &ast_driver); + return drm_aperture_remove_conflicting_framebuffers(base, size, &ast_driver); } static int ast_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/ast/ast_main.c +++ linux-6.2.0/drivers/gpu/drm/ast/ast_main.c @@ -426,11 +426,12 @@ return ERR_PTR(-EIO); /* - * If we don't have IO space at all, use MMIO now and - * assume the chip has MMIO enabled by default (rev 0x20 - * and higher). + * After AST2500, MMIO is enabled by default, and it should be adopted + * to be compatible with Arm. */ - if (!(pci_resource_flags(pdev, 2) & IORESOURCE_IO)) { + if (pdev->revision >= 0x40) { + ast->ioregs = ast->regs + AST_IO_MM_OFFSET; + } else if (!(pci_resource_flags(pdev, 2) & IORESOURCE_IO)) { drm_info(dev, "platform has no IO space, trying MMIO\n"); ast->ioregs = ast->regs + AST_IO_MM_OFFSET; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/drm_aperture.c +++ linux-6.2.0/drivers/gpu/drm/drm_aperture.c @@ -32,17 +32,13 @@ * * static int remove_conflicting_framebuffers(struct pci_dev *pdev) * { - * bool primary = false; * resource_size_t base, size; * int ret; * * base = pci_resource_start(pdev, 0); * size = pci_resource_len(pdev, 0); - * #ifdef CONFIG_X86 - * primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW; - * #endif * - * return drm_aperture_remove_conflicting_framebuffers(base, size, primary, + * return drm_aperture_remove_conflicting_framebuffers(base, size, * &example_driver); * } * @@ -161,7 +157,6 @@ * drm_aperture_remove_conflicting_framebuffers - remove existing framebuffers in the given range * @base: the aperture's base address in physical memory * @size: aperture size in bytes - * @primary: also kick vga16fb if present * @req_driver: requesting DRM driver * * This function removes graphics device drivers which use the memory range described by @@ -171,9 +166,9 @@ * 0 on success, or a negative errno code otherwise */ int drm_aperture_remove_conflicting_framebuffers(resource_size_t base, resource_size_t size, - bool primary, const struct drm_driver *req_driver) + const struct drm_driver *req_driver) { - return aperture_remove_conflicting_devices(base, size, primary, req_driver->name); + return aperture_remove_conflicting_devices(base, size, req_driver->name); } EXPORT_SYMBOL(drm_aperture_remove_conflicting_framebuffers); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/drm_displayid.c +++ linux-6.2.0/drivers/gpu/drm/drm_displayid.c @@ -7,13 +7,28 @@ #include #include +static const struct displayid_header * +displayid_get_header(const u8 *displayid, int length, int index) +{ + const struct displayid_header *base; + + if (sizeof(*base) > length - index) + return ERR_PTR(-EINVAL); + + base = (const struct displayid_header *)&displayid[index]; + + return base; +} + static int validate_displayid(const u8 *displayid, int length, int idx) { int i, dispid_length; u8 csum = 0; const struct displayid_header *base; - base = (const struct displayid_header *)&displayid[idx]; + base = displayid_get_header(displayid, length, idx); + if (IS_ERR(base)) + return PTR_ERR(base); DRM_DEBUG_KMS("base revision 0x%x, length %d, %d %d\n", base->rev, base->bytes, base->prod_id, base->ext_count); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/drm_managed.c +++ linux-6.2.0/drivers/gpu/drm/drm_managed.c @@ -264,28 +264,10 @@ } EXPORT_SYMBOL(drmm_kfree); -static void drmm_mutex_release(struct drm_device *dev, void *res) +void __drmm_mutex_release(struct drm_device *dev, void *res) { struct mutex *lock = res; mutex_destroy(lock); } - -/** - * drmm_mutex_init - &drm_device-managed mutex_init() - * @dev: DRM device - * @lock: lock to be initialized - * - * Returns: - * 0 on success, or a negative errno code otherwise. - * - * This is a &drm_device-managed version of mutex_init(). The initialized - * lock is automatically destroyed on the final drm_dev_put(). - */ -int drmm_mutex_init(struct drm_device *dev, struct mutex *lock) -{ - mutex_init(lock); - - return drmm_add_action_or_reset(dev, drmm_mutex_release, lock); -} -EXPORT_SYMBOL(drmm_mutex_init); +EXPORT_SYMBOL(__drmm_mutex_release); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/exynos/exynos_drm_g2d.h +++ linux-6.2.0/drivers/gpu/drm/exynos/exynos_drm_g2d.h @@ -34,11 +34,11 @@ return -ENODEV; } -int g2d_open(struct drm_device *drm_dev, struct drm_file *file) +static inline int g2d_open(struct drm_device *drm_dev, struct drm_file *file) { return 0; } -void g2d_close(struct drm_device *drm_dev, struct drm_file *file) +static inline void g2d_close(struct drm_device *drm_dev, struct drm_file *file) { } #endif only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/gma500/psb_drv.c +++ linux-6.2.0/drivers/gpu/drm/gma500/psb_drv.c @@ -7,6 +7,7 @@ * **************************************************************************/ +#include #include #include #include @@ -19,7 +20,6 @@ #include #include -#include #include #include #include @@ -416,20 +416,45 @@ return ret; } +/* + * Hardware for gma500 is a hybrid device, which both acts as a PCI + * device (for legacy vga functionality) but also more like an + * integrated display on a SoC where the framebuffer simply + * resides in main memory and not in a special PCI bar (that + * internally redirects to a stolen range of main memory) like all + * other integrated PCI display devices implement it. + * + * To catch all cases we need to remove conflicting firmware devices + * for the stolen system memory and for the VGA functionality. As we + * currently cannot easily find the framebuffer's location in stolen + * memory, we remove all framebuffers here. + * + * TODO: Refactor psb_driver_load() to map vdc_reg earlier. Then + * we might be able to read the framebuffer range from the + * device. + */ +static int gma_remove_conflicting_framebuffers(struct pci_dev *pdev, + const struct drm_driver *req_driver) +{ + resource_size_t base = 0; + resource_size_t size = U32_MAX; /* 4 GiB HW limit */ + const char *name = req_driver->name; + int ret; + + ret = aperture_remove_conflicting_devices(base, size, name); + if (ret) + return ret; + + return __aperture_remove_legacy_vga_devices(pdev); +} + static int psb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) { struct drm_psb_private *dev_priv; struct drm_device *dev; int ret; - /* - * We cannot yet easily find the framebuffer's location in memory. So - * remove all framebuffers here. - * - * TODO: Refactor psb_driver_load() to map vdc_reg earlier. Then we - * might be able to read the framebuffer range from the device. - */ - ret = drm_aperture_remove_framebuffers(true, &driver); + ret = gma_remove_conflicting_framebuffers(pdev, &driver); if (ret) return ret; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/hyperv/hyperv_drm_drv.c +++ linux-6.2.0/drivers/gpu/drm/hyperv/hyperv_drm_drv.c @@ -74,7 +74,6 @@ drm_aperture_remove_conflicting_framebuffers(screen_info.lfb_base, screen_info.lfb_size, - false, &hyperv_driver); hv->fb_size = (unsigned long)hv->mmio_megabytes * 1024 * 1024; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/i915/display/intel_atomic_plane.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/intel_atomic_plane.c @@ -1025,7 +1025,7 @@ int ret; if (old_obj) { - const struct intel_crtc_state *crtc_state = + const struct intel_crtc_state *new_crtc_state = intel_atomic_get_new_crtc_state(state, to_intel_crtc(old_plane_state->hw.crtc)); @@ -1040,7 +1040,7 @@ * This should only fail upon a hung GPU, in which case we * can safely continue. */ - if (intel_crtc_needs_modeset(crtc_state)) { + if (new_crtc_state && intel_crtc_needs_modeset(new_crtc_state)) { ret = i915_sw_fence_await_reservation(&state->commit_ready, old_obj->base.resv, false, 0, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/i915/display/intel_dsi_vbt.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/intel_dsi_vbt.c @@ -762,17 +762,6 @@ gpiod_set_value_cansleep(intel_dsi->gpio_backlight, 0); } -void intel_dsi_msleep(struct intel_dsi *intel_dsi, int msec) -{ - struct intel_connector *connector = intel_dsi->attached_connector; - - /* For v3 VBTs in vid-mode the delays are part of the VBT sequences */ - if (is_vid_mode(intel_dsi) && connector->panel.vbt.dsi.seq_version >= 3) - return; - - msleep(msec); -} - void intel_dsi_log_params(struct intel_dsi *intel_dsi) { struct drm_i915_private *i915 = to_i915(intel_dsi->base.base.dev); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/i915/display/intel_dsi_vbt.h +++ linux-6.2.0/drivers/gpu/drm/i915/display/intel_dsi_vbt.h @@ -16,7 +16,6 @@ void intel_dsi_vbt_gpio_cleanup(struct intel_dsi *intel_dsi); void intel_dsi_vbt_exec_sequence(struct intel_dsi *intel_dsi, enum mipi_seq seq_id); -void intel_dsi_msleep(struct intel_dsi *intel_dsi, int msec); void intel_dsi_log_params(struct intel_dsi *intel_dsi); #endif /* __INTEL_DSI_VBT_H__ */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/i915/display/skl_scaler.c +++ linux-6.2.0/drivers/gpu/drm/i915/display/skl_scaler.c @@ -87,6 +87,10 @@ #define ICL_MAX_SRC_H 4096 #define ICL_MAX_DST_W 5120 #define ICL_MAX_DST_H 4096 +#define MTL_MAX_SRC_W 4096 +#define MTL_MAX_SRC_H 8192 +#define MTL_MAX_DST_W 8192 +#define MTL_MAX_DST_H 8192 #define SKL_MIN_YUV_420_SRC_W 16 #define SKL_MIN_YUV_420_SRC_H 16 @@ -103,6 +107,10 @@ struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode; + int pipe_src_w = drm_rect_width(&crtc_state->pipe_src); + int pipe_src_h = drm_rect_height(&crtc_state->pipe_src); + int min_src_w, min_src_h, min_dst_w, min_dst_h; + int max_src_w, max_src_h, max_dst_w, max_dst_h; /* * Src coordinates are already rotated by 270 degrees for @@ -157,15 +165,33 @@ return -EINVAL; } + min_src_w = SKL_MIN_SRC_W; + min_src_h = SKL_MIN_SRC_H; + min_dst_w = SKL_MIN_DST_W; + min_dst_h = SKL_MIN_DST_H; + + if (DISPLAY_VER(dev_priv) < 11) { + max_src_w = SKL_MAX_SRC_W; + max_src_h = SKL_MAX_SRC_H; + max_dst_w = SKL_MAX_DST_W; + max_dst_h = SKL_MAX_DST_H; + } else if (DISPLAY_VER(dev_priv) < 14) { + max_src_w = ICL_MAX_SRC_W; + max_src_h = ICL_MAX_SRC_H; + max_dst_w = ICL_MAX_DST_W; + max_dst_h = ICL_MAX_DST_H; + } else { + max_src_w = MTL_MAX_SRC_W; + max_src_h = MTL_MAX_SRC_H; + max_dst_w = MTL_MAX_DST_W; + max_dst_h = MTL_MAX_DST_H; + } + /* range checks */ - if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H || - dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H || - (DISPLAY_VER(dev_priv) >= 11 && - (src_w > ICL_MAX_SRC_W || src_h > ICL_MAX_SRC_H || - dst_w > ICL_MAX_DST_W || dst_h > ICL_MAX_DST_H)) || - (DISPLAY_VER(dev_priv) < 11 && - (src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H || - dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H))) { + if (src_w < min_src_w || src_h < min_src_h || + dst_w < min_dst_w || dst_h < min_dst_h || + src_w > max_src_w || src_h > max_src_h || + dst_w > max_dst_w || dst_h > max_dst_h) { drm_dbg_kms(&dev_priv->drm, "scaler_user index %u.%u: src %ux%u dst %ux%u " "size is out of scaler range\n", @@ -174,6 +200,21 @@ return -EINVAL; } + /* + * The pipe scaler does not use all the bits of PIPESRC, at least + * on the earlier platforms. So even when we're scaling a plane + * the *pipe* source size must not be too large. For simplicity + * we assume the limits match the scaler source size limits. Might + * not be 100% accurate on all platforms, but good enough for now. + */ + if (pipe_src_w > max_src_w || pipe_src_h > max_src_h) { + drm_dbg_kms(&dev_priv->drm, + "scaler_user index %u.%u: pipe src size %ux%u " + "is out of scaler range\n", + crtc->pipe, scaler_user, pipe_src_w, pipe_src_h); + return -EINVAL; + } + /* mark this plane as a scaler user in crtc_state */ scaler_state->scaler_users |= (1 << scaler_user); drm_dbg_kms(&dev_priv->drm, "scaler_user index %u.%u: " only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/i915/i915_params.c +++ linux-6.2.0/drivers/gpu/drm/i915/i915_params.c @@ -122,7 +122,7 @@ "Default: 0"); i915_param_named_unsafe(force_probe, charp, 0400, - "Force probe the driver for specified devices. " + "Force probe options for specified supported devices. " "See CONFIG_DRM_I915_FORCE_PROBE for details."); i915_param_named_unsafe(disable_power_well, int, 0400, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/i915/i915_pci.c +++ linux-6.2.0/drivers/gpu/drm/i915/i915_pci.c @@ -1133,6 +1133,8 @@ static const struct intel_device_info mtl_info = { XE_HP_FEATURES, XE_LPDP_FEATURES, + .__runtime.cpu_transcoder_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) | + BIT(TRANSCODER_C) | BIT(TRANSCODER_D), /* * Real graphics IP version will be obtained from hardware GMD_ID * register. Value provided here is just for sanity checking. @@ -1253,7 +1255,7 @@ } /* is device_id present in comma separated list of ids */ -static bool force_probe(u16 device_id, const char *devices) +static bool device_id_in_list(u16 device_id, const char *devices, bool negative) { char *s, *p, *tok; bool ret; @@ -1262,7 +1264,9 @@ return false; /* match everything */ - if (strcmp(devices, "*") == 0) + if (negative && strcmp(devices, "!*") == 0) + return true; + if (!negative && strcmp(devices, "*") == 0) return true; s = kstrdup(devices, GFP_KERNEL); @@ -1272,6 +1276,12 @@ for (p = s, ret = false; (tok = strsep(&p, ",")) != NULL; ) { u16 val; + if (negative && tok[0] == '!') + tok++; + else if ((negative && tok[0] != '!') || + (!negative && tok[0] == '!')) + continue; + if (kstrtou16(tok, 16, &val) == 0 && val == device_id) { ret = true; break; @@ -1283,6 +1293,16 @@ return ret; } +static bool id_forced(u16 device_id) +{ + return device_id_in_list(device_id, i915_modparams.force_probe, false); +} + +static bool id_blocked(u16 device_id) +{ + return device_id_in_list(device_id, i915_modparams.force_probe, true); +} + bool i915_pci_resource_valid(struct pci_dev *pdev, int bar) { if (!pci_resource_flags(pdev, bar)) @@ -1308,10 +1328,9 @@ (struct intel_device_info *) ent->driver_data; int err; - if (intel_info->require_force_probe && - !force_probe(pdev->device, i915_modparams.force_probe)) { + if (intel_info->require_force_probe && !id_forced(pdev->device)) { dev_info(&pdev->dev, - "Your graphics device %04x is not properly supported by the driver in this\n" + "Your graphics device %04x is not properly supported by i915 in this\n" "kernel version. To force driver probe anyway, use i915.force_probe=%04x\n" "module parameter or CONFIG_DRM_I915_FORCE_PROBE=%04x configuration option,\n" "or (recommended) check for kernel updates.\n", @@ -1319,6 +1338,18 @@ return -ENODEV; } + if (id_blocked(pdev->device)) { + dev_info(&pdev->dev, "I915 probe blocked for Device ID %04x.\n", + pdev->device); + return -ENODEV; + } + + if (intel_info->require_force_probe) { + dev_info(&pdev->dev, "Force probing unsupported Device ID %04x, tainting kernel\n", + pdev->device); + add_taint(TAINT_USER, LOCKDEP_STILL_OK); + } + /* Only bind to function 0 of the device. Early generations * used function 1 as a placeholder for multi-head. This causes * us confusion instead, especially on the systems where both only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/mgag200/mgag200_mode.c +++ linux-6.2.0/drivers/gpu/drm/mgag200/mgag200_mode.c @@ -640,6 +640,11 @@ if (funcs->pixpllc_atomic_update) funcs->pixpllc_atomic_update(crtc, old_state); + if (crtc_state->gamma_lut) + mgag200_crtc_set_gamma(mdev, format, crtc_state->gamma_lut->data); + else + mgag200_crtc_set_gamma_linear(mdev, format); + mgag200_enable_display(mdev); if (funcs->enable_vidrst) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.c +++ linux-6.2.0/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.c @@ -15,7 +15,7 @@ /* * Register offsets in MDSS register file for the interrupt registers - * w.r.t. to the MDP base + * w.r.t. the MDP base */ #define MDP_SSPP_TOP0_OFF 0x0 #define MDP_INTF_0_OFF 0x6A000 @@ -24,6 +24,9 @@ #define MDP_INTF_3_OFF 0x6B800 #define MDP_INTF_4_OFF 0x6C000 #define MDP_INTF_5_OFF 0x6C800 +#define INTF_INTR_EN 0x1c0 +#define INTF_INTR_STATUS 0x1c4 +#define INTF_INTR_CLEAR 0x1c8 #define MDP_AD4_0_OFF 0x7C000 #define MDP_AD4_1_OFF 0x7D000 #define MDP_AD4_INTR_EN_OFF 0x41c only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.c +++ linux-6.2.0/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.c @@ -56,11 +56,6 @@ #define INTF_TPG_RGB_MAPPING 0x11C #define INTF_PROG_FETCH_START 0x170 #define INTF_PROG_ROT_START 0x174 - -#define INTF_FRAME_LINE_COUNT_EN 0x0A8 -#define INTF_FRAME_COUNT 0x0AC -#define INTF_LINE_COUNT 0x0B0 - #define INTF_MUX 0x25C #define INTF_CFG_ACTIVE_H_EN BIT(29) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_wb.c +++ linux-6.2.0/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_wb.c @@ -61,6 +61,7 @@ for (i = 0; i < m->wb_count; i++) { if (wb == m->wb[i].id) { b->blk_addr = addr + m->wb[i].base; + b->log_mask = DPU_DBG_MASK_WB; return &m->wb[i]; } } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_hwio.h +++ linux-6.2.0/drivers/gpu/drm/msm/disp/dpu1/dpu_hwio.h @@ -20,9 +20,6 @@ #define HIST_INTR_EN 0x01c #define HIST_INTR_STATUS 0x020 #define HIST_INTR_CLEAR 0x024 -#define INTF_INTR_EN 0x1C0 -#define INTF_INTR_STATUS 0x1C4 -#define INTF_INTR_CLEAR 0x1C8 #define SPLIT_DISPLAY_EN 0x2F4 #define SPLIT_DISPLAY_UPPER_PIPE_CTRL 0x2F8 #define DSPP_IGC_COLOR0_RAM_LUTN 0x300 only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/dp/dp_audio.c +++ linux-6.2.0/drivers/gpu/drm/msm/dp/dp_audio.c @@ -593,6 +593,18 @@ .i2s = 1, }; +void dp_unregister_audio_driver(struct device *dev, struct dp_audio *dp_audio) +{ + struct dp_audio_private *audio_priv; + + audio_priv = container_of(dp_audio, struct dp_audio_private, dp_audio); + + if (audio_priv->audio_pdev) { + platform_device_unregister(audio_priv->audio_pdev); + audio_priv->audio_pdev = NULL; + } +} + int dp_register_audio_driver(struct device *dev, struct dp_audio *dp_audio) { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/dp/dp_audio.h +++ linux-6.2.0/drivers/gpu/drm/msm/dp/dp_audio.h @@ -53,6 +53,8 @@ int dp_register_audio_driver(struct device *dev, struct dp_audio *dp_audio); +void dp_unregister_audio_driver(struct device *dev, struct dp_audio *dp_audio); + /** * dp_audio_put() * only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/dp/dp_aux.c +++ linux-6.2.0/drivers/gpu/drm/msm/dp/dp_aux.c @@ -162,47 +162,6 @@ return i; } -static void dp_aux_native_handler(struct dp_aux_private *aux, u32 isr) -{ - if (isr & DP_INTR_AUX_I2C_DONE) - aux->aux_error_num = DP_AUX_ERR_NONE; - else if (isr & DP_INTR_WRONG_ADDR) - aux->aux_error_num = DP_AUX_ERR_ADDR; - else if (isr & DP_INTR_TIMEOUT) - aux->aux_error_num = DP_AUX_ERR_TOUT; - if (isr & DP_INTR_NACK_DEFER) - aux->aux_error_num = DP_AUX_ERR_NACK; - if (isr & DP_INTR_AUX_ERROR) { - aux->aux_error_num = DP_AUX_ERR_PHY; - dp_catalog_aux_clear_hw_interrupts(aux->catalog); - } -} - -static void dp_aux_i2c_handler(struct dp_aux_private *aux, u32 isr) -{ - if (isr & DP_INTR_AUX_I2C_DONE) { - if (isr & (DP_INTR_I2C_NACK | DP_INTR_I2C_DEFER)) - aux->aux_error_num = DP_AUX_ERR_NACK; - else - aux->aux_error_num = DP_AUX_ERR_NONE; - } else { - if (isr & DP_INTR_WRONG_ADDR) - aux->aux_error_num = DP_AUX_ERR_ADDR; - else if (isr & DP_INTR_TIMEOUT) - aux->aux_error_num = DP_AUX_ERR_TOUT; - if (isr & DP_INTR_NACK_DEFER) - aux->aux_error_num = DP_AUX_ERR_NACK_DEFER; - if (isr & DP_INTR_I2C_NACK) - aux->aux_error_num = DP_AUX_ERR_NACK; - if (isr & DP_INTR_I2C_DEFER) - aux->aux_error_num = DP_AUX_ERR_DEFER; - if (isr & DP_INTR_AUX_ERROR) { - aux->aux_error_num = DP_AUX_ERR_PHY; - dp_catalog_aux_clear_hw_interrupts(aux->catalog); - } - } -} - static void dp_aux_update_offset_and_segment(struct dp_aux_private *aux, struct drm_dp_aux_msg *input_msg) { @@ -427,13 +386,42 @@ if (!isr) return; - if (!aux->cmd_busy) + if (!aux->cmd_busy) { + DRM_ERROR("Unexpected DP AUX IRQ %#010x when not busy\n", isr); return; + } - if (aux->native) - dp_aux_native_handler(aux, isr); - else - dp_aux_i2c_handler(aux, isr); + /* + * The logic below assumes only one error bit is set (other than "done" + * which can apparently be set at the same time as some of the other + * bits). Warn if more than one get set so we know we need to improve + * the logic. + */ + if (hweight32(isr & ~DP_INTR_AUX_XFER_DONE) > 1) + DRM_WARN("Some DP AUX interrupts unhandled: %#010x\n", isr); + + if (isr & DP_INTR_AUX_ERROR) { + aux->aux_error_num = DP_AUX_ERR_PHY; + dp_catalog_aux_clear_hw_interrupts(aux->catalog); + } else if (isr & DP_INTR_NACK_DEFER) { + aux->aux_error_num = DP_AUX_ERR_NACK_DEFER; + } else if (isr & DP_INTR_WRONG_ADDR) { + aux->aux_error_num = DP_AUX_ERR_ADDR; + } else if (isr & DP_INTR_TIMEOUT) { + aux->aux_error_num = DP_AUX_ERR_TOUT; + } else if (!aux->native && (isr & DP_INTR_I2C_NACK)) { + aux->aux_error_num = DP_AUX_ERR_NACK; + } else if (!aux->native && (isr & DP_INTR_I2C_DEFER)) { + if (isr & DP_INTR_AUX_XFER_DONE) + aux->aux_error_num = DP_AUX_ERR_NACK; + else + aux->aux_error_num = DP_AUX_ERR_DEFER; + } else if (isr & DP_INTR_AUX_XFER_DONE) { + aux->aux_error_num = DP_AUX_ERR_NONE; + } else { + DRM_WARN("Unexpected interrupt: %#010x\n", isr); + return; + } complete(&aux->comp); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/dp/dp_catalog.c +++ linux-6.2.0/drivers/gpu/drm/msm/dp/dp_catalog.c @@ -27,7 +27,7 @@ #define DP_INTF_CONFIG_DATABUS_WIDEN BIT(4) #define DP_INTERRUPT_STATUS1 \ - (DP_INTR_AUX_I2C_DONE| \ + (DP_INTR_AUX_XFER_DONE| \ DP_INTR_WRONG_ADDR | DP_INTR_TIMEOUT | \ DP_INTR_NACK_DEFER | DP_INTR_WRONG_DATA_CNT | \ DP_INTR_I2C_NACK | DP_INTR_I2C_DEFER | \ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/dp/dp_catalog.h +++ linux-6.2.0/drivers/gpu/drm/msm/dp/dp_catalog.h @@ -13,7 +13,7 @@ /* interrupts */ #define DP_INTR_HPD BIT(0) -#define DP_INTR_AUX_I2C_DONE BIT(3) +#define DP_INTR_AUX_XFER_DONE BIT(3) #define DP_INTR_WRONG_ADDR BIT(6) #define DP_INTR_TIMEOUT BIT(9) #define DP_INTR_NACK_DEFER BIT(12) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/dp/dp_display.c +++ linux-6.2.0/drivers/gpu/drm/msm/dp/dp_display.c @@ -323,6 +323,7 @@ kthread_stop(dp->ev_tsk); dp_power_client_deinit(dp->power); + dp_unregister_audio_driver(dev, dp->audio); dp_aux_unregister(dp->aux); dp->drm_dev = NULL; dp->aux->drm_dev = NULL; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/msm/msm_fbdev.c +++ linux-6.2.0/drivers/gpu/drm/msm/msm_fbdev.c @@ -155,7 +155,7 @@ } /* the fw fb could be anywhere in memory */ - ret = drm_aperture_remove_framebuffers(false, dev->driver); + ret = drm_aperture_remove_framebuffers(dev->driver); if (ret) goto fini; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/nouveau/include/nvif/if0012.h +++ linux-6.2.0/drivers/gpu/drm/nouveau/include/nvif/if0012.h @@ -2,6 +2,8 @@ #ifndef __NVIF_IF0012_H__ #define __NVIF_IF0012_H__ +#include + union nvif_outp_args { struct nvif_outp_v0 { __u8 version; @@ -63,7 +65,7 @@ __u8 hda; __u8 mst; __u8 pad04[4]; - __u8 dpcd[16]; + __u8 dpcd[DP_RECEIVER_CAP_SIZE]; } dp; }; } v0; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.h +++ linux-6.2.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.h @@ -3,6 +3,7 @@ #define __NVKM_DISP_OUTP_H__ #include "priv.h" +#include #include #include #include @@ -42,7 +43,7 @@ bool aux_pwr_pu; u8 lttpr[6]; u8 lttprs; - u8 dpcd[16]; + u8 dpcd[DP_RECEIVER_CAP_SIZE]; struct { int dpcd; /* -1, or index into SUPPORTED_LINK_RATES table */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/nouveau/nvkm/engine/disp/uoutp.c +++ linux-6.2.0/drivers/gpu/drm/nouveau/nvkm/engine/disp/uoutp.c @@ -146,7 +146,7 @@ } static int -nvkm_uoutp_mthd_acquire_dp(struct nvkm_outp *outp, u8 dpcd[16], +nvkm_uoutp_mthd_acquire_dp(struct nvkm_outp *outp, u8 dpcd[DP_RECEIVER_CAP_SIZE], u8 link_nr, u8 link_bw, bool hda, bool mst) { int ret; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/panel/panel-orisetech-otm8009a.c +++ linux-6.2.0/drivers/gpu/drm/panel/panel-orisetech-otm8009a.c @@ -471,7 +471,7 @@ DRM_MODE_CONNECTOR_DSI); ctx->bl_dev = devm_backlight_device_register(dev, dev_name(dev), - dsi->host->dev, ctx, + dev, ctx, &otm8009a_backlight_ops, NULL); if (IS_ERR(ctx->bl_dev)) { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/radeon/radeon_irq_kms.c +++ linux-6.2.0/drivers/gpu/drm/radeon/radeon_irq_kms.c @@ -100,6 +100,16 @@ static void radeon_dp_work_func(struct work_struct *work) { + struct radeon_device *rdev = container_of(work, struct radeon_device, + dp_work); + struct drm_device *dev = rdev->ddev; + struct drm_mode_config *mode_config = &dev->mode_config; + struct drm_connector *connector; + + mutex_lock(&mode_config->mutex); + list_for_each_entry(connector, &mode_config->connector_list, head) + radeon_connector_hotplug(connector); + mutex_unlock(&mode_config->mutex); } /** only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c +++ linux-6.2.0/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c @@ -640,6 +640,7 @@ struct rockchip_hdmi *hdmi = dev_get_drvdata(dev); dw_hdmi_unbind(hdmi->hdmi); + drm_encoder_cleanup(&hdmi->encoder.encoder); clk_disable_unprepare(hdmi->ref_clk); regulator_disable(hdmi->avdd_1v8); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/rockchip/rockchip_drm_drv.c +++ linux-6.2.0/drivers/gpu/drm/rockchip/rockchip_drm_drv.c @@ -140,7 +140,7 @@ int ret; /* Remove existing drivers that may own the framebuffer memory. */ - ret = drm_aperture_remove_framebuffers(false, &rockchip_drm_driver); + ret = drm_aperture_remove_framebuffers(&rockchip_drm_driver); if (ret) { DRM_DEV_ERROR(dev, "Failed to remove existing framebuffers - %d.\n", only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/stm/drv.c +++ linux-6.2.0/drivers/gpu/drm/stm/drv.c @@ -185,7 +185,7 @@ DRM_DEBUG("%s\n", __func__); - ret = drm_aperture_remove_framebuffers(false, &drv_driver); + ret = drm_aperture_remove_framebuffers(&drv_driver); if (ret) return ret; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/tegra/drm.c +++ linux-6.2.0/drivers/gpu/drm/tegra/drm.c @@ -1252,7 +1252,7 @@ drm_mode_config_reset(drm); - err = drm_aperture_remove_framebuffers(false, &tegra_drm_driver); + err = drm_aperture_remove_framebuffers(&tegra_drm_driver); if (err < 0) goto hub; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/tegra/sor.c +++ linux-6.2.0/drivers/gpu/drm/tegra/sor.c @@ -1153,7 +1153,7 @@ struct drm_dp_link *link) { const u64 f = 100000, link_rate = link->rate * 1000; - const u64 pclk = mode->clock * 1000; + const u64 pclk = (u64)mode->clock * 1000; u64 input, output, watermark, num; struct tegra_sor_params params; u32 num_syms_per_line; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/gpu/drm/vc4/vc4_drv.c +++ linux-6.2.0/drivers/gpu/drm/vc4/vc4_drv.c @@ -351,7 +351,7 @@ return -EPROBE_DEFER; } - ret = drm_aperture_remove_framebuffers(false, driver); + ret = drm_aperture_remove_framebuffers(driver); if (ret) return ret; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/hid/hid-apple.c +++ linux-6.2.0/drivers/hid/hid-apple.c @@ -875,14 +875,16 @@ { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO), - .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, + .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | + APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | APPLE_RDESC_JIS }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO), - .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, + .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | + APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | APPLE_RDESC_JIS }, @@ -901,7 +903,8 @@ { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO), - .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, + .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | + APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN | APPLE_RDESC_JIS }, @@ -942,31 +945,31 @@ { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI), .driver_data = APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO), - .driver_data = APPLE_HAS_FN }, + .driver_data = APPLE_HAS_FN | APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS), .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI), .driver_data = APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO), - .driver_data = APPLE_HAS_FN }, + .driver_data = APPLE_HAS_FN | APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS), .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI), .driver_data = APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO), - .driver_data = APPLE_HAS_FN }, + .driver_data = APPLE_HAS_FN | APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS), .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI), .driver_data = APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_ISO), - .driver_data = APPLE_HAS_FN }, + .driver_data = APPLE_HAS_FN | APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4_JIS), .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ANSI), .driver_data = APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_ISO), - .driver_data = APPLE_HAS_FN }, + .driver_data = APPLE_HAS_FN | APPLE_ISO_TILDE_QUIRK }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS), .driver_data = APPLE_HAS_FN | APPLE_RDESC_JIS }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING5_ANSI), only in patch2: unchanged: --- linux-6.2.0.orig/drivers/hid/wacom_wac.c +++ linux-6.2.0/drivers/hid/wacom_wac.c @@ -1308,6 +1308,9 @@ struct input_dev *pen_input = wacom->pen_input; unsigned char *data = wacom->data; + int number_of_valid_frames = 0; + int time_interval = 15000000; + ktime_t time_packet_received = ktime_get(); int i; if (wacom->features.type == INTUOSP2_BT || @@ -1328,12 +1331,30 @@ wacom->id[0] |= (wacom->serial[0] >> 32) & 0xFFFFF; } + /* number of valid frames */ for (i = 0; i < pen_frames; i++) { unsigned char *frame = &data[i*pen_frame_len + 1]; bool valid = frame[0] & 0x80; + + if (valid) + number_of_valid_frames++; + } + + if (number_of_valid_frames) { + if (wacom->hid_data.time_delayed) + time_interval = ktime_get() - wacom->hid_data.time_delayed; + time_interval /= number_of_valid_frames; + wacom->hid_data.time_delayed = time_packet_received; + } + + for (i = 0; i < number_of_valid_frames; i++) { + unsigned char *frame = &data[i*pen_frame_len + 1]; + bool valid = frame[0] & 0x80; bool prox = frame[0] & 0x40; bool range = frame[0] & 0x20; bool invert = frame[0] & 0x10; + int frames_number_reversed = number_of_valid_frames - i - 1; + int event_timestamp = time_packet_received - frames_number_reversed * time_interval; if (!valid) continue; @@ -1346,6 +1367,7 @@ wacom->tool[0] = 0; wacom->id[0] = 0; wacom->serial[0] = 0; + wacom->hid_data.time_delayed = 0; return; } @@ -1382,6 +1404,7 @@ get_unaligned_le16(&frame[11])); } } + if (wacom->tool[0]) { input_report_abs(pen_input, ABS_PRESSURE, get_unaligned_le16(&frame[5])); if (wacom->features.type == INTUOSP2_BT || @@ -1405,6 +1428,9 @@ wacom->shared->stylus_in_proximity = prox; + /* add timestamp to unpack the frames */ + input_set_timestamp(pen_input, event_timestamp); + input_sync(pen_input); } } @@ -1895,6 +1921,7 @@ int fmax = field->logical_maximum; unsigned int equivalent_usage = wacom_equivalent_usage(usage->hid); int resolution_code = code; + int resolution = hidinput_calc_abs_res(field, resolution_code); if (equivalent_usage == HID_DG_TWIST) { resolution_code = ABS_RZ; @@ -1915,8 +1942,15 @@ switch (type) { case EV_ABS: input_set_abs_params(input, code, fmin, fmax, fuzz, 0); - input_abs_set_res(input, code, - hidinput_calc_abs_res(field, resolution_code)); + + /* older tablet may miss physical usage */ + if ((code == ABS_X || code == ABS_Y) && !resolution) { + resolution = WACOM_INTUOS_RES; + hid_warn(input, + "Wacom usage (%d) missing resolution \n", + code); + } + input_abs_set_res(input, code, resolution); break; case EV_KEY: case EV_MSC: @@ -1929,18 +1963,7 @@ static void wacom_wac_battery_usage_mapping(struct hid_device *hdev, struct hid_field *field, struct hid_usage *usage) { - struct wacom *wacom = hid_get_drvdata(hdev); - struct wacom_wac *wacom_wac = &wacom->wacom_wac; - struct wacom_features *features = &wacom_wac->features; - unsigned equivalent_usage = wacom_equivalent_usage(usage->hid); - - switch (equivalent_usage) { - case HID_DG_BATTERYSTRENGTH: - case WACOM_HID_WD_BATTERY_LEVEL: - case WACOM_HID_WD_BATTERY_CHARGING: - features->quirks |= WACOM_QUIRK_BATTERY; - break; - } + return; } static void wacom_wac_battery_event(struct hid_device *hdev, struct hid_field *field, @@ -1961,18 +1984,21 @@ wacom_wac->hid_data.bat_connected = 1; wacom_wac->hid_data.bat_status = WACOM_POWER_SUPPLY_STATUS_AUTO; } + wacom_wac->features.quirks |= WACOM_QUIRK_BATTERY; break; case WACOM_HID_WD_BATTERY_LEVEL: value = value * 100 / (field->logical_maximum - field->logical_minimum); wacom_wac->hid_data.battery_capacity = value; wacom_wac->hid_data.bat_connected = 1; wacom_wac->hid_data.bat_status = WACOM_POWER_SUPPLY_STATUS_AUTO; + wacom_wac->features.quirks |= WACOM_QUIRK_BATTERY; break; case WACOM_HID_WD_BATTERY_CHARGING: wacom_wac->hid_data.bat_charging = value; wacom_wac->hid_data.ps_connected = value; wacom_wac->hid_data.bat_connected = 1; wacom_wac->hid_data.bat_status = WACOM_POWER_SUPPLY_STATUS_AUTO; + wacom_wac->features.quirks |= WACOM_QUIRK_BATTERY; break; } } @@ -1988,18 +2014,15 @@ { struct wacom *wacom = hid_get_drvdata(hdev); struct wacom_wac *wacom_wac = &wacom->wacom_wac; - struct wacom_features *features = &wacom_wac->features; - if (features->quirks & WACOM_QUIRK_BATTERY) { - int status = wacom_wac->hid_data.bat_status; - int capacity = wacom_wac->hid_data.battery_capacity; - bool charging = wacom_wac->hid_data.bat_charging; - bool connected = wacom_wac->hid_data.bat_connected; - bool powered = wacom_wac->hid_data.ps_connected; + int status = wacom_wac->hid_data.bat_status; + int capacity = wacom_wac->hid_data.battery_capacity; + bool charging = wacom_wac->hid_data.bat_charging; + bool connected = wacom_wac->hid_data.bat_connected; + bool powered = wacom_wac->hid_data.ps_connected; - wacom_notify_battery(wacom_wac, status, capacity, charging, - connected, powered); - } + wacom_notify_battery(wacom_wac, status, capacity, charging, + connected, powered); } static void wacom_wac_pad_usage_mapping(struct hid_device *hdev, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/hid/wacom_wac.h +++ linux-6.2.0/drivers/hid/wacom_wac.h @@ -324,6 +324,7 @@ int ps_connected; bool pad_input_event_flag; unsigned short sequence_number; + int time_delayed; }; struct wacom_remote_data { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/hwtracing/coresight/coresight-tmc-etr.c +++ linux-6.2.0/drivers/hwtracing/coresight/coresight-tmc-etr.c @@ -942,7 +942,7 @@ len = tmc_etr_buf_get_data(etr_buf, offset, CORESIGHT_BARRIER_PKT_SIZE, &bufp); - if (WARN_ON(len < CORESIGHT_BARRIER_PKT_SIZE)) + if (WARN_ON(len < 0 || len < CORESIGHT_BARRIER_PKT_SIZE)) return -EINVAL; coresight_insert_barrier_packet(bufp); return offset + CORESIGHT_BARRIER_PKT_SIZE; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/i2c/busses/i2c-tegra.c +++ linux-6.2.0/drivers/i2c/busses/i2c-tegra.c @@ -242,9 +242,10 @@ * @is_dvc: identifies the DVC I2C controller, has a different register layout * @is_vi: identifies the VI I2C controller, has a different register layout * @msg_complete: transfer completion notifier + * @msg_buf_remaining: size of unsent data in the message buffer + * @msg_len: length of message in current transfer * @msg_err: error code for completed message * @msg_buf: pointer to current message data - * @msg_buf_remaining: size of unsent data in the message buffer * @msg_read: indicates that the transfer is a read access * @timings: i2c timings information like bus frequency * @multimaster_mode: indicates that I2C controller is in multi-master mode @@ -277,6 +278,7 @@ struct completion msg_complete; size_t msg_buf_remaining; + unsigned int msg_len; int msg_err; u8 *msg_buf; @@ -1169,7 +1171,7 @@ else i2c_writel(i2c_dev, packet_header, I2C_TX_FIFO); - packet_header = msg->len - 1; + packet_header = i2c_dev->msg_len - 1; if (i2c_dev->dma_mode && !i2c_dev->msg_read) *dma_buf++ = packet_header; @@ -1242,20 +1244,32 @@ return err; i2c_dev->msg_buf = msg->buf; + i2c_dev->msg_len = msg->len; - /* The condition true implies smbus block read and len is already read */ - if (msg->flags & I2C_M_RECV_LEN && end_state != MSG_END_CONTINUE) - i2c_dev->msg_buf = msg->buf + 1; - - i2c_dev->msg_buf_remaining = msg->len; i2c_dev->msg_err = I2C_ERR_NONE; i2c_dev->msg_read = !!(msg->flags & I2C_M_RD); reinit_completion(&i2c_dev->msg_complete); + /* + * For SMBUS block read command, read only 1 byte in the first transfer. + * Adjust that 1 byte for the next transfer in the msg buffer and msg + * length. + */ + if (msg->flags & I2C_M_RECV_LEN) { + if (end_state == MSG_END_CONTINUE) { + i2c_dev->msg_len = 1; + } else { + i2c_dev->msg_buf += 1; + i2c_dev->msg_len -= 1; + } + } + + i2c_dev->msg_buf_remaining = i2c_dev->msg_len; + if (i2c_dev->msg_read) - xfer_size = msg->len; + xfer_size = i2c_dev->msg_len; else - xfer_size = msg->len + I2C_PACKET_HEADER_SIZE; + xfer_size = i2c_dev->msg_len + I2C_PACKET_HEADER_SIZE; xfer_size = ALIGN(xfer_size, BYTES_PER_FIFO_WORD); @@ -1295,7 +1309,7 @@ if (!i2c_dev->msg_read) { if (i2c_dev->dma_mode) { memcpy(i2c_dev->dma_buf + I2C_PACKET_HEADER_SIZE, - msg->buf, msg->len); + msg->buf, i2c_dev->msg_len); dma_sync_single_for_device(i2c_dev->dma_dev, i2c_dev->dma_phys, @@ -1352,7 +1366,7 @@ i2c_dev->dma_phys, xfer_size, DMA_FROM_DEVICE); - memcpy(i2c_dev->msg_buf, i2c_dev->dma_buf, msg->len); + memcpy(i2c_dev->msg_buf, i2c_dev->dma_buf, i2c_dev->msg_len); } } @@ -1408,8 +1422,8 @@ ret = tegra_i2c_xfer_msg(i2c_dev, &msgs[i], MSG_END_CONTINUE); if (ret) break; - /* Set the read byte as msg len */ - msgs[i].len = msgs[i].buf[0]; + /* Set the msg length from first byte */ + msgs[i].len += msgs[i].buf[0]; dev_dbg(i2c_dev->dev, "reading %d bytes\n", msgs[i].len); } ret = tegra_i2c_xfer_msg(i2c_dev, &msgs[i], end_type); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/infiniband/sw/rxe/rxe_icrc.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_icrc.c @@ -21,7 +21,7 @@ tfm = crypto_alloc_shash("crc32", 0, 0); if (IS_ERR(tfm)) { - rxe_dbg(rxe, "failed to init crc32 algorithm err: %ld\n", + rxe_dbg_dev(rxe, "failed to init crc32 algorithm err: %ld\n", PTR_ERR(tfm)); return PTR_ERR(tfm); } @@ -51,7 +51,7 @@ *(__be32 *)shash_desc_ctx(shash) = crc; err = crypto_shash_update(shash, next, len); if (unlikely(err)) { - rxe_dbg(rxe, "failed crc calculation, err: %d\n", err); + rxe_dbg_dev(rxe, "failed crc calculation, err: %d\n", err); return (__force __be32)crc32_le((__force u32)crc, next, len); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/infiniband/sw/rxe/rxe_mmap.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_mmap.c @@ -79,7 +79,7 @@ /* Don't allow a mmap larger than the object. */ if (size > ip->info.size) { - rxe_dbg(rxe, "mmap region is larger than the object!\n"); + rxe_dbg_dev(rxe, "mmap region is larger than the object!\n"); spin_unlock_bh(&rxe->pending_lock); ret = -EINVAL; goto done; @@ -87,7 +87,7 @@ goto found_it; } - rxe_dbg(rxe, "unable to find pending mmap info\n"); + rxe_dbg_dev(rxe, "unable to find pending mmap info\n"); spin_unlock_bh(&rxe->pending_lock); ret = -EINVAL; goto done; @@ -98,7 +98,7 @@ ret = remap_vmalloc_range(vma, ip->obj, 0); if (ret) { - rxe_dbg(rxe, "err %d from remap_vmalloc_range\n", ret); + rxe_dbg_dev(rxe, "err %d from remap_vmalloc_range\n", ret); goto done; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/infiniband/sw/rxe/rxe_net.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_net.c @@ -596,7 +596,7 @@ rxe_port_down(rxe); break; case NETDEV_CHANGEMTU: - rxe_dbg(rxe, "%s changed mtu to %d\n", ndev->name, ndev->mtu); + rxe_dbg_dev(rxe, "%s changed mtu to %d\n", ndev->name, ndev->mtu); rxe_set_mtu(rxe, ndev->mtu); break; case NETDEV_CHANGE: @@ -608,7 +608,7 @@ case NETDEV_CHANGENAME: case NETDEV_FEAT_CHANGE: default: - rxe_dbg(rxe, "ignoring netdev event = %ld for %s\n", + rxe_dbg_dev(rxe, "ignoring netdev event = %ld for %s\n", event, ndev->name); break; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/infiniband/sw/rxe/rxe_pool.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_pool.c @@ -116,55 +116,12 @@ WARN_ON(!xa_empty(&pool->xa)); } -void *rxe_alloc(struct rxe_pool *pool) -{ - struct rxe_pool_elem *elem; - void *obj; - int err; - - if (WARN_ON(!(pool->type == RXE_TYPE_MR))) - return NULL; - - if (atomic_inc_return(&pool->num_elem) > pool->max_elem) - goto err_cnt; - - obj = kzalloc(pool->elem_size, GFP_KERNEL); - if (!obj) - goto err_cnt; - - elem = (struct rxe_pool_elem *)((u8 *)obj + pool->elem_offset); - - elem->pool = pool; - elem->obj = obj; - kref_init(&elem->ref_cnt); - init_completion(&elem->complete); - - /* allocate index in array but leave pointer as NULL so it - * can't be looked up until rxe_finalize() is called - */ - err = xa_alloc_cyclic(&pool->xa, &elem->index, NULL, pool->limit, - &pool->next, GFP_KERNEL); - if (err < 0) - goto err_free; - - return obj; - -err_free: - kfree(obj); -err_cnt: - atomic_dec(&pool->num_elem); - return NULL; -} - int __rxe_add_to_pool(struct rxe_pool *pool, struct rxe_pool_elem *elem, bool sleepable) { int err; gfp_t gfp_flags; - if (WARN_ON(pool->type == RXE_TYPE_MR)) - return -EINVAL; - if (atomic_inc_return(&pool->num_elem) > pool->max_elem) goto err_cnt; @@ -275,9 +232,6 @@ if (pool->cleanup) pool->cleanup(elem); - if (pool->type == RXE_TYPE_MR) - kfree_rcu(elem->obj); - atomic_dec(&pool->num_elem); return err; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/infiniband/sw/rxe/rxe_pool.h +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_pool.h @@ -54,9 +54,6 @@ /* free resources from object pool */ void rxe_pool_cleanup(struct rxe_pool *pool); -/* allocate an object from pool */ -void *rxe_alloc(struct rxe_pool *pool); - /* connect already allocated object to pool */ int __rxe_add_to_pool(struct rxe_pool *pool, struct rxe_pool_elem *elem, bool sleepable); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/infiniband/sw/rxe/rxe_srq.c +++ linux-6.2.0/drivers/infiniband/sw/rxe/rxe_srq.c @@ -13,13 +13,13 @@ struct ib_srq_attr *attr = &init->attr; if (attr->max_wr > rxe->attr.max_srq_wr) { - rxe_dbg(rxe, "max_wr(%d) > max_srq_wr(%d)\n", + rxe_dbg_dev(rxe, "max_wr(%d) > max_srq_wr(%d)\n", attr->max_wr, rxe->attr.max_srq_wr); goto err1; } if (attr->max_wr <= 0) { - rxe_dbg(rxe, "max_wr(%d) <= 0\n", attr->max_wr); + rxe_dbg_dev(rxe, "max_wr(%d) <= 0\n", attr->max_wr); goto err1; } @@ -27,7 +27,7 @@ attr->max_wr = RXE_MIN_SRQ_WR; if (attr->max_sge > rxe->attr.max_srq_sge) { - rxe_dbg(rxe, "max_sge(%d) > max_srq_sge(%d)\n", + rxe_dbg_dev(rxe, "max_sge(%d) > max_srq_sge(%d)\n", attr->max_sge, rxe->attr.max_srq_sge); goto err1; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c +++ linux-6.2.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c @@ -501,6 +501,7 @@ { .compatible = "qcom,qcm2290-smmu-500", .data = &qcom_smmu_500_impl0_data }, { .compatible = "qcom,qdu1000-smmu-500", .data = &qcom_smmu_500_impl0_data }, { .compatible = "qcom,sc7180-smmu-500", .data = &qcom_smmu_500_impl0_data }, + { .compatible = "qcom,sc7180-smmu-v2", .data = &qcom_smmu_v2_data }, { .compatible = "qcom,sc7280-smmu-500", .data = &qcom_smmu_500_impl0_data }, { .compatible = "qcom,sc8180x-smmu-500", .data = &qcom_smmu_500_impl0_data }, { .compatible = "qcom,sc8280xp-smmu-500", .data = &qcom_smmu_500_impl0_data }, @@ -545,5 +546,14 @@ if (match) return qcom_smmu_create(smmu, match->data); + /* + * If you hit this WARN_ON() you are missing an entry in the + * qcom_smmu_impl_of_match[] table, and GPU per-process page- + * tables will be broken. + */ + WARN(of_device_is_compatible(np, "qcom,adreno-smmu"), + "Missing qcom_smmu_impl_of_match entry for: %s", + dev_name(smmu->dev)); + return smmu; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/irqchip/Kconfig +++ linux-6.2.0/drivers/irqchip/Kconfig @@ -35,6 +35,7 @@ select IRQ_DOMAIN_HIERARCHY select PARTITION_PERCPU select GENERIC_IRQ_EFFECTIVE_AFF_MASK if SMP + select HAVE_ARM_SMCCC_DISCOVERY config ARM_GIC_V3_ITS bool only in patch2: unchanged: --- linux-6.2.0.orig/drivers/irqchip/irq-gic-v3.c +++ linux-6.2.0/drivers/irqchip/irq-gic-v3.c @@ -24,6 +24,9 @@ #include #include #include +#include +#include +#include #include #include @@ -47,6 +50,7 @@ struct gic_chip_data { struct fwnode_handle *fwnode; + phys_addr_t dist_phys_base; void __iomem *dist_base; struct redist_region *redist_regions; struct rdists rdists; @@ -59,6 +63,10 @@ struct partition_desc **ppi_descs; }; +#define T241_CHIPS_MAX 4 +static void __iomem *t241_dist_base_alias[T241_CHIPS_MAX] __read_mostly; +static DEFINE_STATIC_KEY_FALSE(gic_nvidia_t241_erratum); + static struct gic_chip_data gic_data __read_mostly; static DEFINE_STATIC_KEY_TRUE(supports_deactivate_key); @@ -188,6 +196,39 @@ } } +static inline void __iomem *gic_dist_base_alias(struct irq_data *d) +{ + if (static_branch_unlikely(&gic_nvidia_t241_erratum)) { + irq_hw_number_t hwirq = irqd_to_hwirq(d); + u32 chip; + + /* + * For the erratum T241-FABRIC-4, read accesses to GICD_In{E} + * registers are directed to the chip that owns the SPI. The + * the alias region can also be used for writes to the + * GICD_In{E} except GICD_ICENABLERn. Each chip has support + * for 320 {E}SPIs. Mappings for all 4 chips: + * Chip0 = 32-351 + * Chip1 = 352-671 + * Chip2 = 672-991 + * Chip3 = 4096-4415 + */ + switch (__get_intid_range(hwirq)) { + case SPI_RANGE: + chip = (hwirq - 32) / 320; + break; + case ESPI_RANGE: + chip = 3; + break; + default: + unreachable(); + } + return t241_dist_base_alias[chip]; + } + + return gic_data.dist_base; +} + static inline void __iomem *gic_dist_base(struct irq_data *d) { switch (get_intid_range(d)) { @@ -346,7 +387,7 @@ if (gic_irq_in_rdist(d)) base = gic_data_rdist_sgi_base(); else - base = gic_data.dist_base; + base = gic_dist_base_alias(d); return !!(readl_relaxed(base + offset + (index / 32) * 4) & mask); } @@ -597,7 +638,7 @@ if (gic_irq_in_rdist(d)) base = gic_data_rdist_sgi_base(); else - base = gic_data.dist_base; + base = gic_dist_base_alias(d); offset = convert_offset_index(d, GICD_ICFGR, &index); @@ -1719,6 +1760,43 @@ return false; } +#define T241_CHIPN_MASK GENMASK_ULL(45, 44) +#define T241_CHIP_GICDA_OFFSET 0x1580000 +#define SMCCC_SOC_ID_T241 0x036b0241 + +static bool gic_enable_quirk_nvidia_t241(void *data) +{ + s32 soc_id = arm_smccc_get_soc_id_version(); + unsigned long chip_bmask = 0; + phys_addr_t phys; + u32 i; + + /* Check JEP106 code for NVIDIA T241 chip (036b:0241) */ + if ((soc_id < 0) || (soc_id != SMCCC_SOC_ID_T241)) + return false; + + /* Find the chips based on GICR regions PHYS addr */ + for (i = 0; i < gic_data.nr_redist_regions; i++) { + chip_bmask |= BIT(FIELD_GET(T241_CHIPN_MASK, + (u64)gic_data.redist_regions[i].phys_base)); + } + + if (hweight32(chip_bmask) < 3) + return false; + + /* Setup GICD alias regions */ + for (i = 0; i < ARRAY_SIZE(t241_dist_base_alias); i++) { + if (chip_bmask & BIT(i)) { + phys = gic_data.dist_phys_base + T241_CHIP_GICDA_OFFSET; + phys |= FIELD_PREP(T241_CHIPN_MASK, i); + t241_dist_base_alias[i] = ioremap(phys, SZ_64K); + WARN_ON_ONCE(!t241_dist_base_alias[i]); + } + } + static_branch_enable(&gic_nvidia_t241_erratum); + return true; +} + static const struct gic_quirk gic_quirks[] = { { .desc = "GICv3: Qualcomm MSM8996 broken firmware", @@ -1751,6 +1829,12 @@ .init = gic_enable_quirk_cavium_38539, }, { + .desc = "GICv3: NVIDIA erratum T241-FABRIC-4", + .iidr = 0x0402043b, + .mask = 0xffffffff, + .init = gic_enable_quirk_nvidia_t241, + }, + { } }; @@ -1817,7 +1901,8 @@ gic_chip.flags |= IRQCHIP_SUPPORTS_NMI; } -static int __init gic_init_bases(void __iomem *dist_base, +static int __init gic_init_bases(phys_addr_t dist_phys_base, + void __iomem *dist_base, struct redist_region *rdist_regs, u32 nr_redist_regions, u64 redist_stride, @@ -1833,6 +1918,7 @@ pr_info("GIC: Using split EOI/Deactivate mode\n"); gic_data.fwnode = handle; + gic_data.dist_phys_base = dist_phys_base; gic_data.dist_base = dist_base; gic_data.redist_regions = rdist_regs; gic_data.nr_redist_regions = nr_redist_regions; @@ -1860,10 +1946,13 @@ gic_data.domain = irq_domain_create_tree(handle, &gic_irq_domain_ops, &gic_data); gic_data.rdists.rdist = alloc_percpu(typeof(*gic_data.rdists.rdist)); - gic_data.rdists.has_rvpeid = true; - gic_data.rdists.has_vlpis = true; - gic_data.rdists.has_direct_lpi = true; - gic_data.rdists.has_vpend_valid_dirty = true; + if (!static_branch_unlikely(&gic_nvidia_t241_erratum)) { + /* Disable GICv4.x features for the erratum T241-FABRIC-4 */ + gic_data.rdists.has_rvpeid = true; + gic_data.rdists.has_vlpis = true; + gic_data.rdists.has_direct_lpi = true; + gic_data.rdists.has_vpend_valid_dirty = true; + } if (WARN_ON(!gic_data.domain) || WARN_ON(!gic_data.rdists.rdist)) { err = -ENOMEM; @@ -2069,6 +2158,7 @@ static int __init gic_of_init(struct device_node *node, struct device_node *parent) { + phys_addr_t dist_phys_base; void __iomem *dist_base; struct redist_region *rdist_regs; struct resource res; @@ -2082,6 +2172,8 @@ return PTR_ERR(dist_base); } + dist_phys_base = res.start; + err = gic_validate_dist_version(dist_base); if (err) { pr_err("%pOF: no distributor detected, giving up\n", node); @@ -2113,8 +2205,8 @@ gic_enable_of_quirks(node, gic_quirks, &gic_data); - err = gic_init_bases(dist_base, rdist_regs, nr_redist_regions, - redist_stride, &node->fwnode); + err = gic_init_bases(dist_phys_base, dist_base, rdist_regs, + nr_redist_regions, redist_stride, &node->fwnode); if (err) goto out_unmap_rdist; @@ -2430,8 +2522,9 @@ goto out_redist_unmap; } - err = gic_init_bases(acpi_data.dist_base, acpi_data.redist_regs, - acpi_data.nr_redist_regions, 0, gsi_domain_handle); + err = gic_init_bases(dist->base_address, acpi_data.dist_base, + acpi_data.redist_regs, acpi_data.nr_redist_regions, + 0, gsi_domain_handle); if (err) goto out_fwhandle_free; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/irqchip/irq-loongson-eiointc.c +++ linux-6.2.0/drivers/irqchip/irq-loongson-eiointc.c @@ -280,9 +280,6 @@ { int i; - if (cpu_has_flatmode) - node = cpu_to_node(node * CORES_PER_EIO_NODE); - for (i = 0; i < MAX_IO_PICS; i++) { if (node == vec_group[i].node) { vec_group[i].parent = parent; @@ -343,19 +340,27 @@ if (parent) return pch_pic_acpi_init(parent, pchpic_entry); - return -EINVAL; + return 0; } static int __init pch_msi_parse_madt(union acpi_subtable_headers *header, const unsigned long end) { + struct irq_domain *parent; struct acpi_madt_msi_pic *pchmsi_entry = (struct acpi_madt_msi_pic *)header; - struct irq_domain *parent = acpi_get_vec_parent(eiointc_priv[nr_pics - 1]->node, msi_group); + int node; + + if (cpu_has_flatmode) + node = cpu_to_node(eiointc_priv[nr_pics - 1]->node * CORES_PER_EIO_NODE); + else + node = eiointc_priv[nr_pics - 1]->node; + + parent = acpi_get_vec_parent(node, msi_group); if (parent) return pch_msi_acpi_init(parent, pchmsi_entry); - return -EINVAL; + return 0; } static int __init acpi_cascade_irqdomain_init(void) @@ -379,6 +384,7 @@ int i, ret, parent_irq; unsigned long node_map; struct eiointc_priv *priv; + int node; priv = kzalloc(sizeof(*priv), GFP_KERNEL); if (!priv) @@ -416,13 +422,19 @@ parent_irq = irq_create_mapping(parent, acpi_eiointc->cascade); irq_set_chained_handler_and_data(parent_irq, eiointc_irq_dispatch, priv); - register_syscore_ops(&eiointc_syscore_ops); - cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_LOONGARCH_STARTING, + if (nr_pics == 1) { + register_syscore_ops(&eiointc_syscore_ops); + cpuhp_setup_state_nocalls(CPUHP_AP_IRQ_LOONGARCH_STARTING, "irqchip/loongarch/intc:starting", eiointc_router_init, NULL); + } - acpi_set_vec_parent(acpi_eiointc->node, priv->eiointc_domain, pch_group); - acpi_set_vec_parent(acpi_eiointc->node, priv->eiointc_domain, msi_group); + if (cpu_has_flatmode) + node = cpu_to_node(acpi_eiointc->node * CORES_PER_EIO_NODE); + else + node = acpi_eiointc->node; + acpi_set_vec_parent(node, priv->eiointc_domain, pch_group); + acpi_set_vec_parent(node, priv->eiointc_domain, msi_group); ret = acpi_cascade_irqdomain_init(); return ret; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/irqchip/irq-loongson-pch-pic.c +++ linux-6.2.0/drivers/irqchip/irq-loongson-pch-pic.c @@ -311,7 +311,8 @@ pch_pic_handle[nr_pics] = domain_handle; pch_pic_priv[nr_pics++] = priv; - register_syscore_ops(&pch_pic_syscore_ops); + if (nr_pics == 1) + register_syscore_ops(&pch_pic_syscore_ops); return 0; @@ -403,6 +404,9 @@ int ret, vec_base; struct fwnode_handle *domain_handle; + if (find_pch_pic(acpi_pchpic->gsi_base) >= 0) + return 0; + vec_base = acpi_pchpic->gsi_base - GSI_MIN_PCH_IRQ; domain_handle = irq_domain_alloc_fwnode(&acpi_pchpic->address); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/irqchip/irq-mips-gic.c +++ linux-6.2.0/drivers/irqchip/irq-mips-gic.c @@ -50,7 +50,7 @@ static DEFINE_PER_CPU_READ_MOSTLY(unsigned long[GIC_MAX_LONGS], pcpu_masks); -static DEFINE_SPINLOCK(gic_lock); +static DEFINE_RAW_SPINLOCK(gic_lock); static struct irq_domain *gic_irq_domain; static int gic_shared_intrs; static unsigned int gic_cpu_pin; @@ -211,7 +211,7 @@ irq = GIC_HWIRQ_TO_SHARED(d->hwirq); - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); switch (type & IRQ_TYPE_SENSE_MASK) { case IRQ_TYPE_EDGE_FALLING: pol = GIC_POL_FALLING_EDGE; @@ -251,7 +251,7 @@ else irq_set_chip_handler_name_locked(d, &gic_level_irq_controller, handle_level_irq, NULL); - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); return 0; } @@ -269,7 +269,7 @@ return -EINVAL; /* Assumption : cpumask refers to a single CPU */ - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); /* Re-route this IRQ */ write_gic_map_vp(irq, BIT(mips_cm_vp_id(cpu))); @@ -280,7 +280,7 @@ set_bit(irq, per_cpu_ptr(pcpu_masks, cpu)); irq_data_update_effective_affinity(d, cpumask_of(cpu)); - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); return IRQ_SET_MASK_OK; } @@ -358,12 +358,12 @@ cd = irq_data_get_irq_chip_data(d); cd->mask = false; - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); for_each_online_cpu(cpu) { write_gic_vl_other(mips_cm_vp_id(cpu)); write_gic_vo_rmask(BIT(intr)); } - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); } static void gic_unmask_local_irq_all_vpes(struct irq_data *d) @@ -376,12 +376,12 @@ cd = irq_data_get_irq_chip_data(d); cd->mask = true; - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); for_each_online_cpu(cpu) { write_gic_vl_other(mips_cm_vp_id(cpu)); write_gic_vo_smask(BIT(intr)); } - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); } static void gic_all_vpes_irq_cpu_online(void) @@ -394,19 +394,21 @@ unsigned long flags; int i; - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); for (i = 0; i < ARRAY_SIZE(local_intrs); i++) { unsigned int intr = local_intrs[i]; struct gic_all_vpes_chip_data *cd; + if (!gic_local_irq_is_routable(intr)) + continue; cd = &gic_all_vpes_chip_data[intr]; write_gic_vl_map(mips_gic_vx_map_reg(intr), cd->map); if (cd->mask) write_gic_vl_smask(BIT(intr)); } - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); } static struct irq_chip gic_all_vpes_local_irq_controller = { @@ -436,11 +438,11 @@ data = irq_get_irq_data(virq); - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); write_gic_map_pin(intr, GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin); write_gic_map_vp(intr, BIT(mips_cm_vp_id(cpu))); irq_data_update_effective_affinity(data, cpumask_of(cpu)); - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); return 0; } @@ -535,12 +537,12 @@ if (!gic_local_irq_is_routable(intr)) return -EPERM; - spin_lock_irqsave(&gic_lock, flags); + raw_spin_lock_irqsave(&gic_lock, flags); for_each_online_cpu(cpu) { write_gic_vl_other(mips_cm_vp_id(cpu)); write_gic_vo_map(mips_gic_vx_map_reg(intr), map); } - spin_unlock_irqrestore(&gic_lock, flags); + raw_spin_unlock_irqrestore(&gic_lock, flags); return 0; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/mcb/mcb-pci.c +++ linux-6.2.0/drivers/mcb/mcb-pci.c @@ -31,7 +31,7 @@ { struct resource *res; struct priv *priv; - int ret; + int ret, table_size; unsigned long flags; priv = devm_kzalloc(&pdev->dev, sizeof(struct priv), GFP_KERNEL); @@ -90,7 +90,30 @@ if (ret < 0) goto out_mcb_bus; - dev_dbg(&pdev->dev, "Found %d cells\n", ret); + table_size = ret; + + if (table_size < CHAM_HEADER_SIZE) { + /* Release the previous resources */ + devm_iounmap(&pdev->dev, priv->base); + devm_release_mem_region(&pdev->dev, priv->mapbase, CHAM_HEADER_SIZE); + + /* Then, allocate it again with the actual chameleon table size */ + res = devm_request_mem_region(&pdev->dev, priv->mapbase, + table_size, + KBUILD_MODNAME); + if (!res) { + dev_err(&pdev->dev, "Failed to request PCI memory\n"); + ret = -EBUSY; + goto out_mcb_bus; + } + + priv->base = devm_ioremap(&pdev->dev, priv->mapbase, table_size); + if (!priv->base) { + dev_err(&pdev->dev, "Cannot ioremap\n"); + ret = -ENOMEM; + goto out_mcb_bus; + } + } mcb_bus_add_devices(priv->bus); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/dvb-core/dvb_frontend.c +++ linux-6.2.0/drivers/media/dvb-core/dvb_frontend.c @@ -293,14 +293,22 @@ } if (events->eventw == events->eventr) { - int ret; + struct wait_queue_entry wait; + int ret = 0; if (flags & O_NONBLOCK) return -EWOULDBLOCK; - ret = wait_event_interruptible(events->wait_queue, - dvb_frontend_test_event(fepriv, events)); - + init_waitqueue_entry(&wait, current); + add_wait_queue(&events->wait_queue, &wait); + while (!dvb_frontend_test_event(fepriv, events)) { + wait_woken(&wait, TASK_INTERRUPTIBLE, 0); + if (signal_pending(current)) { + ret = -ERESTARTSYS; + break; + } + } + remove_wait_queue(&events->wait_queue, &wait); if (ret < 0) return ret; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/pci/cx23885/cx23885-core.c +++ linux-6.2.0/drivers/media/pci/cx23885/cx23885-core.c @@ -1325,7 +1325,9 @@ { struct cx23885_riscmem *risc = &buf->risc; - dma_free_coherent(&dev->pci->dev, risc->size, risc->cpu, risc->dma); + if (risc->cpu) + dma_free_coherent(&dev->pci->dev, risc->size, risc->cpu, risc->dma); + memset(risc, 0, sizeof(*risc)); } static void cx23885_tsport_reg_dump(struct cx23885_tsport *port) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/pci/cx23885/cx23885-video.c +++ linux-6.2.0/drivers/media/pci/cx23885/cx23885-video.c @@ -342,6 +342,7 @@ static int buffer_prepare(struct vb2_buffer *vb) { + int ret; struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); struct cx23885_dev *dev = vb->vb2_queue->drv_priv; struct cx23885_buffer *buf = @@ -358,12 +359,12 @@ switch (dev->field) { case V4L2_FIELD_TOP: - cx23885_risc_buffer(dev->pci, &buf->risc, + ret = cx23885_risc_buffer(dev->pci, &buf->risc, sgt->sgl, 0, UNSET, buf->bpl, 0, dev->height); break; case V4L2_FIELD_BOTTOM: - cx23885_risc_buffer(dev->pci, &buf->risc, + ret = cx23885_risc_buffer(dev->pci, &buf->risc, sgt->sgl, UNSET, 0, buf->bpl, 0, dev->height); break; @@ -391,21 +392,21 @@ line0_offset = 0; line1_offset = buf->bpl; } - cx23885_risc_buffer(dev->pci, &buf->risc, + ret = cx23885_risc_buffer(dev->pci, &buf->risc, sgt->sgl, line0_offset, line1_offset, buf->bpl, buf->bpl, dev->height >> 1); break; case V4L2_FIELD_SEQ_TB: - cx23885_risc_buffer(dev->pci, &buf->risc, + ret = cx23885_risc_buffer(dev->pci, &buf->risc, sgt->sgl, 0, buf->bpl * (dev->height >> 1), buf->bpl, 0, dev->height >> 1); break; case V4L2_FIELD_SEQ_BT: - cx23885_risc_buffer(dev->pci, &buf->risc, + ret = cx23885_risc_buffer(dev->pci, &buf->risc, sgt->sgl, buf->bpl * (dev->height >> 1), 0, buf->bpl, 0, @@ -418,7 +419,7 @@ buf, buf->vb.vb2_buf.index, dev->width, dev->height, dev->fmt->depth, dev->fmt->fourcc, (unsigned long)buf->risc.dma); - return 0; + return ret; } static void buffer_finish(struct vb2_buffer *vb) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/pci/netup_unidvb/netup_unidvb_core.c +++ linux-6.2.0/drivers/media/pci/netup_unidvb/netup_unidvb_core.c @@ -697,7 +697,7 @@ netup_unidvb_dma_enable(dma, 0); msleep(50); cancel_work_sync(&dma->work); - del_timer(&dma->timeout); + del_timer_sync(&dma->timeout); } static int netup_unidvb_dma_setup(struct netup_unidvb_dev *ndev) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/pci/tw68/tw68-video.c +++ linux-6.2.0/drivers/media/pci/tw68/tw68-video.c @@ -437,6 +437,7 @@ */ static int tw68_buf_prepare(struct vb2_buffer *vb) { + int ret; struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); struct vb2_queue *vq = vb->vb2_queue; struct tw68_dev *dev = vb2_get_drv_priv(vq); @@ -452,30 +453,30 @@ bpl = (dev->width * dev->fmt->depth) >> 3; switch (dev->field) { case V4L2_FIELD_TOP: - tw68_risc_buffer(dev->pci, buf, dma->sgl, + ret = tw68_risc_buffer(dev->pci, buf, dma->sgl, 0, UNSET, bpl, 0, dev->height); break; case V4L2_FIELD_BOTTOM: - tw68_risc_buffer(dev->pci, buf, dma->sgl, + ret = tw68_risc_buffer(dev->pci, buf, dma->sgl, UNSET, 0, bpl, 0, dev->height); break; case V4L2_FIELD_SEQ_TB: - tw68_risc_buffer(dev->pci, buf, dma->sgl, + ret = tw68_risc_buffer(dev->pci, buf, dma->sgl, 0, bpl * (dev->height >> 1), bpl, 0, dev->height >> 1); break; case V4L2_FIELD_SEQ_BT: - tw68_risc_buffer(dev->pci, buf, dma->sgl, + ret = tw68_risc_buffer(dev->pci, buf, dma->sgl, bpl * (dev->height >> 1), 0, bpl, 0, dev->height >> 1); break; case V4L2_FIELD_INTERLACED: default: - tw68_risc_buffer(dev->pci, buf, dma->sgl, + ret = tw68_risc_buffer(dev->pci, buf, dma->sgl, 0, bpl, bpl, bpl, dev->height >> 1); break; } - return 0; + return ret; } static void tw68_buf_finish(struct vb2_buffer *vb) @@ -485,7 +486,8 @@ struct tw68_dev *dev = vb2_get_drv_priv(vq); struct tw68_buf *buf = container_of(vbuf, struct tw68_buf, vb); - dma_free_coherent(&dev->pci->dev, buf->size, buf->cpu, buf->dma); + if (buf->cpu) + dma_free_coherent(&dev->pci->dev, buf->size, buf->cpu, buf->dma); } static int tw68_start_streaming(struct vb2_queue *q, unsigned int count) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/platform/renesas/vsp1/vsp1_drm.c +++ linux-6.2.0/drivers/media/platform/renesas/vsp1/vsp1_drm.c @@ -66,7 +66,9 @@ struct vsp1_entity *prev, unsigned int prev_pad, struct vsp1_entity *next, unsigned int next_pad) { - struct v4l2_subdev_format format; + struct v4l2_subdev_format format = { + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; int ret; if (!uif) { @@ -82,8 +84,6 @@ prev->sink = uif; prev->sink_pad = UIF_PAD_SINK; - memset(&format, 0, sizeof(format)); - format.which = V4L2_SUBDEV_FORMAT_ACTIVE; format.pad = prev_pad; ret = v4l2_subdev_call(&prev->subdev, pad, get_fmt, NULL, &format); @@ -118,8 +118,12 @@ struct vsp1_entity *uif, unsigned int brx_input) { - struct v4l2_subdev_selection sel; - struct v4l2_subdev_format format; + struct v4l2_subdev_selection sel = { + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; + struct v4l2_subdev_format format = { + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; const struct v4l2_rect *crop; int ret; @@ -129,8 +133,6 @@ */ crop = &vsp1->drm->inputs[rpf->entity.index].crop; - memset(&format, 0, sizeof(format)); - format.which = V4L2_SUBDEV_FORMAT_ACTIVE; format.pad = RWPF_PAD_SINK; format.format.width = crop->width + crop->left; format.format.height = crop->height + crop->top; @@ -147,8 +149,6 @@ __func__, format.format.width, format.format.height, format.format.code, rpf->entity.index); - memset(&sel, 0, sizeof(sel)); - sel.which = V4L2_SUBDEV_FORMAT_ACTIVE; sel.pad = RWPF_PAD_SINK; sel.target = V4L2_SEL_TGT_CROP; sel.r = *crop; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/platform/renesas/vsp1/vsp1_entity.c +++ linux-6.2.0/drivers/media/platform/renesas/vsp1/vsp1_entity.c @@ -184,15 +184,14 @@ int vsp1_entity_init_cfg(struct v4l2_subdev *subdev, struct v4l2_subdev_state *sd_state) { - struct v4l2_subdev_format format; unsigned int pad; for (pad = 0; pad < subdev->entity.num_pads - 1; ++pad) { - memset(&format, 0, sizeof(format)); - - format.pad = pad; - format.which = sd_state ? V4L2_SUBDEV_FORMAT_TRY - : V4L2_SUBDEV_FORMAT_ACTIVE; + struct v4l2_subdev_format format = { + .pad = pad, + .which = sd_state ? V4L2_SUBDEV_FORMAT_TRY + : V4L2_SUBDEV_FORMAT_ACTIVE, + }; v4l2_subdev_call(subdev, pad, set_fmt, sd_state, &format); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/platform/samsung/exynos4-is/fimc-capture.c +++ linux-6.2.0/drivers/media/platform/samsung/exynos4-is/fimc-capture.c @@ -763,7 +763,10 @@ struct fimc_dev *fimc = ctx->fimc_dev; struct fimc_pipeline *p = to_fimc_pipeline(fimc->vid_cap.ve.pipe); struct v4l2_subdev *sd = p->subdevs[IDX_SENSOR]; - struct v4l2_subdev_format sfmt; + struct v4l2_subdev_format sfmt = { + .which = set ? V4L2_SUBDEV_FORMAT_ACTIVE + : V4L2_SUBDEV_FORMAT_TRY, + }; struct v4l2_mbus_framefmt *mf = &sfmt.format; struct media_entity *me; struct fimc_fmt *ffmt; @@ -774,9 +777,7 @@ if (WARN_ON(!sd || !tfmt)) return -EINVAL; - memset(&sfmt, 0, sizeof(sfmt)); sfmt.format = *tfmt; - sfmt.which = set ? V4L2_SUBDEV_FORMAT_ACTIVE : V4L2_SUBDEV_FORMAT_TRY; me = fimc_pipeline_get_head(&sd->entity); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/platform/ti/am437x/am437x-vpfe.c +++ linux-6.2.0/drivers/media/platform/ti/am437x/am437x-vpfe.c @@ -1499,7 +1499,9 @@ struct v4l2_frmsizeenum *fsize) { struct vpfe_device *vpfe = video_drvdata(file); - struct v4l2_subdev_frame_size_enum fse; + struct v4l2_subdev_frame_size_enum fse = { + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; struct v4l2_subdev *sd = vpfe->current_subdev->sd; struct vpfe_fmt *fmt; int ret; @@ -1514,11 +1516,9 @@ memset(fsize->reserved, 0x0, sizeof(fsize->reserved)); - memset(&fse, 0x0, sizeof(fse)); fse.index = fsize->index; fse.pad = 0; fse.code = fmt->code; - fse.which = V4L2_SUBDEV_FORMAT_ACTIVE; ret = v4l2_subdev_call(sd, pad, enum_frame_size, NULL, &fse); if (ret) return ret; @@ -2146,7 +2146,6 @@ { struct vpfe_device *vpfe = container_of(notifier->v4l2_dev, struct vpfe_device, v4l2_dev); - struct v4l2_subdev_mbus_code_enum mbus_code; struct vpfe_subdev_info *sdinfo; struct vpfe_fmt *fmt; int ret = 0; @@ -2173,9 +2172,11 @@ vpfe->num_active_fmt = 0; for (j = 0, i = 0; (ret != -EINVAL); ++j) { - memset(&mbus_code, 0, sizeof(mbus_code)); - mbus_code.index = j; - mbus_code.which = V4L2_SUBDEV_FORMAT_ACTIVE; + struct v4l2_subdev_mbus_code_enum mbus_code = { + .index = j, + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; + ret = v4l2_subdev_call(subdev, pad, enum_mbus_code, NULL, &mbus_code); if (ret) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/platform/ti/cal/cal-video.c +++ linux-6.2.0/drivers/media/platform/ti/cal/cal-video.c @@ -811,7 +811,6 @@ static int cal_ctx_v4l2_init_formats(struct cal_ctx *ctx) { - struct v4l2_subdev_mbus_code_enum mbus_code; struct v4l2_mbus_framefmt mbus_fmt; const struct cal_format_info *fmtinfo; unsigned int i, j, k; @@ -826,10 +825,11 @@ ctx->num_active_fmt = 0; for (j = 0, i = 0; ; ++j) { + struct v4l2_subdev_mbus_code_enum mbus_code = { + .index = j, + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; - memset(&mbus_code, 0, sizeof(mbus_code)); - mbus_code.index = j; - mbus_code.which = V4L2_SUBDEV_FORMAT_ACTIVE; ret = v4l2_subdev_call(ctx->phy->source, pad, enum_mbus_code, NULL, &mbus_code); if (ret == -EINVAL) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/radio/radio-shark.c +++ linux-6.2.0/drivers/media/radio/radio-shark.c @@ -316,6 +316,16 @@ { struct shark_device *shark; int retval = -ENOMEM; + static const u8 ep_addresses[] = { + SHARK_IN_EP | USB_DIR_IN, + SHARK_OUT_EP | USB_DIR_OUT, + 0}; + + /* Are the expected endpoints present? */ + if (!usb_check_int_endpoints(intf, ep_addresses)) { + dev_err(&intf->dev, "Invalid radioSHARK device\n"); + return -EINVAL; + } shark = kzalloc(sizeof(struct shark_device), GFP_KERNEL); if (!shark) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/radio/radio-shark2.c +++ linux-6.2.0/drivers/media/radio/radio-shark2.c @@ -282,6 +282,16 @@ { struct shark_device *shark; int retval = -ENOMEM; + static const u8 ep_addresses[] = { + SHARK_IN_EP | USB_DIR_IN, + SHARK_OUT_EP | USB_DIR_OUT, + 0}; + + /* Are the expected endpoints present? */ + if (!usb_check_int_endpoints(intf, ep_addresses)) { + dev_err(&intf->dev, "Invalid radioSHARK2 device\n"); + return -EINVAL; + } shark = kzalloc(sizeof(struct shark_device), GFP_KERNEL); if (!shark) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/usb/dvb-usb/cxusb-analog.c +++ linux-6.2.0/drivers/media/usb/dvb-usb/cxusb-analog.c @@ -1014,7 +1014,10 @@ { struct dvb_usb_device *dvbdev = video_drvdata(file); struct cxusb_medion_dev *cxdev = dvbdev->priv; - struct v4l2_subdev_format subfmt; + struct v4l2_subdev_format subfmt = { + .which = isset ? V4L2_SUBDEV_FORMAT_ACTIVE : + V4L2_SUBDEV_FORMAT_TRY, + }; u32 field; int ret; @@ -1024,9 +1027,6 @@ field = vb2_start_streaming_called(&cxdev->videoqueue) ? cxdev->field_order : cxusb_medion_field_order(cxdev); - memset(&subfmt, 0, sizeof(subfmt)); - subfmt.which = isset ? V4L2_SUBDEV_FORMAT_ACTIVE : - V4L2_SUBDEV_FORMAT_TRY; subfmt.format.width = f->fmt.pix.width & ~1; subfmt.format.height = f->fmt.pix.height & ~1; subfmt.format.code = MEDIA_BUS_FMT_FIXED; @@ -1464,7 +1464,9 @@ .buf = tuner_analog_msg_data, .len = sizeof(tuner_analog_msg_data) }; - struct v4l2_subdev_format subfmt; + struct v4l2_subdev_format subfmt = { + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; int ret; /* switch tuner to analog mode so IF demod will become accessible */ @@ -1507,8 +1509,6 @@ v4l2_subdev_call(cxdev->tuner, video, s_std, cxdev->norm); v4l2_subdev_call(cxdev->cx25840, video, s_std, cxdev->norm); - memset(&subfmt, 0, sizeof(subfmt)); - subfmt.which = V4L2_SUBDEV_FORMAT_ACTIVE; subfmt.format.width = cxdev->width; subfmt.format.height = cxdev->height; subfmt.format.code = MEDIA_BUS_FMT_FIXED; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/media/usb/pvrusb2/Kconfig +++ linux-6.2.0/drivers/media/usb/pvrusb2/Kconfig @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only config VIDEO_PVRUSB2 tristate "Hauppauge WinTV-PVR USB2 support" - depends on VIDEO_DEV && I2C + depends on VIDEO_DEV && I2C && DVB_CORE select VIDEO_TUNER select VIDEO_TVEEPROM select VIDEO_CX2341X @@ -37,6 +37,7 @@ bool "pvrusb2 ATSC/DVB support" default y depends on VIDEO_PVRUSB2 && DVB_CORE + depends on VIDEO_PVRUSB2=m || DVB_CORE=y select DVB_LGDT330X if MEDIA_SUBDRV_AUTOSELECT select DVB_S5H1409 if MEDIA_SUBDRV_AUTOSELECT select DVB_S5H1411 if MEDIA_SUBDRV_AUTOSELECT only in patch2: unchanged: --- linux-6.2.0.orig/drivers/message/fusion/mptlan.c +++ linux-6.2.0/drivers/message/fusion/mptlan.c @@ -1433,7 +1433,9 @@ { MPT_ADAPTER *ioc = pci_get_drvdata(pdev); struct net_device *dev = ioc->netdev; + struct mpt_lan_priv *priv = netdev_priv(dev); + cancel_delayed_work_sync(&priv->post_buckets_task); if(dev != NULL) { unregister_netdev(dev); free_netdev(dev); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/mfd/dln2.c +++ linux-6.2.0/drivers/mfd/dln2.c @@ -827,6 +827,7 @@ dln2_stop_rx_urbs(dln2); out_free: + usb_put_dev(dln2->usb_dev); dln2_free(dln2); return ret; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/mfd/intel-lpss-pci.c +++ linux-6.2.0/drivers/mfd/intel-lpss-pci.c @@ -447,6 +447,21 @@ { PCI_VDEVICE(INTEL, 0x7e79), (kernel_ulong_t)&bxt_i2c_info }, { PCI_VDEVICE(INTEL, 0x7e7a), (kernel_ulong_t)&bxt_i2c_info }, { PCI_VDEVICE(INTEL, 0x7e7b), (kernel_ulong_t)&bxt_i2c_info }, + /* MTP-S */ + { PCI_VDEVICE(INTEL, 0x7f28), (kernel_ulong_t)&bxt_uart_info }, + { PCI_VDEVICE(INTEL, 0x7f29), (kernel_ulong_t)&bxt_uart_info }, + { PCI_VDEVICE(INTEL, 0x7f2a), (kernel_ulong_t)&tgl_info }, + { PCI_VDEVICE(INTEL, 0x7f2b), (kernel_ulong_t)&tgl_info }, + { PCI_VDEVICE(INTEL, 0x7f4c), (kernel_ulong_t)&bxt_i2c_info }, + { PCI_VDEVICE(INTEL, 0x7f4d), (kernel_ulong_t)&bxt_i2c_info }, + { PCI_VDEVICE(INTEL, 0x7f4e), (kernel_ulong_t)&bxt_i2c_info }, + { PCI_VDEVICE(INTEL, 0x7f4f), (kernel_ulong_t)&bxt_i2c_info }, + { PCI_VDEVICE(INTEL, 0x7f5c), (kernel_ulong_t)&bxt_uart_info }, + { PCI_VDEVICE(INTEL, 0x7f5d), (kernel_ulong_t)&bxt_uart_info }, + { PCI_VDEVICE(INTEL, 0x7f5e), (kernel_ulong_t)&tgl_info }, + { PCI_VDEVICE(INTEL, 0x7f5f), (kernel_ulong_t)&tgl_info }, + { PCI_VDEVICE(INTEL, 0x7f7a), (kernel_ulong_t)&bxt_i2c_info }, + { PCI_VDEVICE(INTEL, 0x7f7b), (kernel_ulong_t)&bxt_i2c_info }, /* LKF */ { PCI_VDEVICE(INTEL, 0x98a8), (kernel_ulong_t)&bxt_uart_info }, { PCI_VDEVICE(INTEL, 0x98a9), (kernel_ulong_t)&bxt_uart_info }, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/mfd/intel_soc_pmic_chtwc.c +++ linux-6.2.0/drivers/mfd/intel_soc_pmic_chtwc.c @@ -159,11 +159,19 @@ DMI_MATCH(DMI_PRODUCT_NAME, "Mipad2"), }, }, { - /* Lenovo Yoga Book X90F / X91F / X91L */ + /* Lenovo Yoga Book X90F / X90L */ .driver_data = (void *)(long)INTEL_CHT_WC_LENOVO_YOGABOOK1, .matches = { - /* Non exact match to match all versions */ - DMI_MATCH(DMI_PRODUCT_NAME, "Lenovo YB1-X9"), + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Intel Corporation"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "CHERRYVIEW D1 PLATFORM"), + DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "YETI-11"), + }, + }, { + /* Lenovo Yoga Book X91F / X91L */ + .driver_data = (void *)(long)INTEL_CHT_WC_LENOVO_YOGABOOK1, + .matches = { + /* Non exact match to match F + L versions */ + DMI_MATCH(DMI_PRODUCT_NAME, "Lenovo YB1-X91"), }, }, { } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/misc/lkdtm/stackleak.c +++ linux-6.2.0/drivers/misc/lkdtm/stackleak.c @@ -43,12 +43,14 @@ * STACK_END_MAGIC, and in either casee something is seriously wrong. */ if (current_sp < task_stack_low || current_sp >= task_stack_high) { + instrumentation_begin(); pr_err("FAIL: current_stack_pointer (0x%lx) outside of task stack bounds [0x%lx..0x%lx]\n", current_sp, task_stack_low, task_stack_high - 1); test_failed = true; goto out; } if (lowest_sp < task_stack_low || lowest_sp >= task_stack_high) { + instrumentation_begin(); pr_err("FAIL: current->lowest_stack (0x%lx) outside of task stack bounds [0x%lx..0x%lx]\n", lowest_sp, task_stack_low, task_stack_high - 1); test_failed = true; @@ -86,11 +88,14 @@ if (*(unsigned long *)poison_low == STACKLEAK_POISON) continue; + instrumentation_begin(); pr_err("FAIL: non-poison value %lu bytes below poison boundary: 0x%lx\n", poison_high - poison_low, *(unsigned long *)poison_low); test_failed = true; + goto out; } + instrumentation_begin(); pr_info("stackleak stack usage:\n" " high offset: %lu bytes\n" " current: %lu bytes\n" @@ -113,6 +118,7 @@ } else { pr_info("OK: the rest of the thread stack is properly erased\n"); } + instrumentation_end(); } static void lkdtm_STACKLEAK_ERASING(void) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/mmc/core/block.c +++ linux-6.2.0/drivers/mmc/core/block.c @@ -266,6 +266,7 @@ goto out_put; } req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_BOOT_WP; + req_to_mmc_queue_req(req)->drv_op_result = -EIO; blk_execute_rq(req, false); ret = req_to_mmc_queue_req(req)->drv_op_result; blk_mq_free_request(req); @@ -644,6 +645,7 @@ idatas[0] = idata; req_to_mmc_queue_req(req)->drv_op = rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL; + req_to_mmc_queue_req(req)->drv_op_result = -EIO; req_to_mmc_queue_req(req)->drv_op_data = idatas; req_to_mmc_queue_req(req)->ioc_count = 1; blk_execute_rq(req, false); @@ -715,6 +717,7 @@ } req_to_mmc_queue_req(req)->drv_op = rpmb ? MMC_DRV_OP_IOCTL_RPMB : MMC_DRV_OP_IOCTL; + req_to_mmc_queue_req(req)->drv_op_result = -EIO; req_to_mmc_queue_req(req)->drv_op_data = idata; req_to_mmc_queue_req(req)->ioc_count = n; blk_execute_rq(req, false); @@ -2799,6 +2802,7 @@ if (IS_ERR(req)) return PTR_ERR(req); req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_CARD_STATUS; + req_to_mmc_queue_req(req)->drv_op_result = -EIO; blk_execute_rq(req, false); ret = req_to_mmc_queue_req(req)->drv_op_result; if (ret >= 0) { @@ -2837,6 +2841,7 @@ goto out_free; } req_to_mmc_queue_req(req)->drv_op = MMC_DRV_OP_GET_EXT_CSD; + req_to_mmc_queue_req(req)->drv_op_result = -EIO; req_to_mmc_queue_req(req)->drv_op_data = &ext_csd; blk_execute_rq(req, false); err = req_to_mmc_queue_req(req)->drv_op_result; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/mmc/host/sdhci-esdhc-imx.c +++ linux-6.2.0/drivers/mmc/host/sdhci-esdhc-imx.c @@ -1592,6 +1592,10 @@ if (ret) return ret; + /* HS400/HS400ES require 8 bit bus */ + if (!(host->mmc->caps & MMC_CAP_8_BIT_DATA)) + host->mmc->caps2 &= ~(MMC_CAP2_HS400 | MMC_CAP2_HS400_ES); + if (mmc_gpio_get_cd(host->mmc) >= 0) host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION; @@ -1676,10 +1680,6 @@ host->mmc_host_ops.execute_tuning = usdhc_execute_tuning; } - err = sdhci_esdhc_imx_probe_dt(pdev, host, imx_data); - if (err) - goto disable_ahb_clk; - if (imx_data->socdata->flags & ESDHC_FLAG_MAN_TUNING) sdhci_esdhc_ops.platform_execute_tuning = esdhc_executing_tuning; @@ -1687,15 +1687,13 @@ if (imx_data->socdata->flags & ESDHC_FLAG_ERR004536) host->quirks |= SDHCI_QUIRK_BROKEN_ADMA; - if (host->mmc->caps & MMC_CAP_8_BIT_DATA && - imx_data->socdata->flags & ESDHC_FLAG_HS400) + if (imx_data->socdata->flags & ESDHC_FLAG_HS400) host->mmc->caps2 |= MMC_CAP2_HS400; if (imx_data->socdata->flags & ESDHC_FLAG_BROKEN_AUTO_CMD23) host->quirks2 |= SDHCI_QUIRK2_ACMD23_BROKEN; - if (host->mmc->caps & MMC_CAP_8_BIT_DATA && - imx_data->socdata->flags & ESDHC_FLAG_HS400_ES) { + if (imx_data->socdata->flags & ESDHC_FLAG_HS400_ES) { host->mmc->caps2 |= MMC_CAP2_HS400_ES; host->mmc_host_ops.hs400_enhanced_strobe = esdhc_hs400_enhanced_strobe; @@ -1717,6 +1715,10 @@ goto disable_ahb_clk; } + err = sdhci_esdhc_imx_probe_dt(pdev, host, imx_data); + if (err) + goto disable_ahb_clk; + sdhci_esdhc_imx_hwinit(host); err = sdhci_add_host(host); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/bonding/bond_netlink.c +++ linux-6.2.0/drivers/net/bonding/bond_netlink.c @@ -84,6 +84,11 @@ return -EMSGSIZE; } +/* Limit the max delay range to 300s */ +static struct netlink_range_validation delay_range = { + .max = 300000, +}; + static const struct nla_policy bond_policy[IFLA_BOND_MAX + 1] = { [IFLA_BOND_MODE] = { .type = NLA_U8 }, [IFLA_BOND_ACTIVE_SLAVE] = { .type = NLA_U32 }, @@ -114,7 +119,7 @@ [IFLA_BOND_AD_ACTOR_SYSTEM] = { .type = NLA_BINARY, .len = ETH_ALEN }, [IFLA_BOND_TLB_DYNAMIC_LB] = { .type = NLA_U8 }, - [IFLA_BOND_PEER_NOTIF_DELAY] = { .type = NLA_U32 }, + [IFLA_BOND_PEER_NOTIF_DELAY] = NLA_POLICY_FULL_RANGE(NLA_U32, &delay_range), [IFLA_BOND_MISSED_MAX] = { .type = NLA_U8 }, [IFLA_BOND_NS_IP6_TARGET] = { .type = NLA_NESTED }, }; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/bonding/bond_options.c +++ linux-6.2.0/drivers/net/bonding/bond_options.c @@ -169,6 +169,12 @@ { NULL, -1, 0} }; +static const struct bond_opt_value bond_peer_notif_delay_tbl[] = { + { "off", 0, 0}, + { "maxval", 300000, BOND_VALFLAG_MAX}, + { NULL, -1, 0} +}; + static const struct bond_opt_value bond_primary_reselect_tbl[] = { { "always", BOND_PRI_RESELECT_ALWAYS, BOND_VALFLAG_DEFAULT}, { "better", BOND_PRI_RESELECT_BETTER, 0}, @@ -488,7 +494,7 @@ .id = BOND_OPT_PEER_NOTIF_DELAY, .name = "peer_notif_delay", .desc = "Delay between each peer notification on failover event, in milliseconds", - .values = bond_intmax_tbl, + .values = bond_peer_notif_delay_tbl, .set = bond_option_peer_notif_delay_set } }; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/can/dev/skb.c +++ linux-6.2.0/drivers/net/can/dev/skb.c @@ -54,7 +54,8 @@ /* check flag whether this packet has to be looped back */ if (!(dev->flags & IFF_ECHO) || (skb->protocol != htons(ETH_P_CAN) && - skb->protocol != htons(ETH_P_CANFD))) { + skb->protocol != htons(ETH_P_CANFD) && + skb->protocol != htons(ETH_P_CANXL))) { kfree_skb(skb); return 0; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/can/kvaser_pciefd.c +++ linux-6.2.0/drivers/net/can/kvaser_pciefd.c @@ -71,10 +71,12 @@ #define KVASER_PCIEFD_SYSID_BUILD_REG (KVASER_PCIEFD_SYSID_BASE + 0x14) /* Shared receive buffer registers */ #define KVASER_PCIEFD_SRB_BASE 0x1f200 +#define KVASER_PCIEFD_SRB_FIFO_LAST_REG (KVASER_PCIEFD_SRB_BASE + 0x1f4) #define KVASER_PCIEFD_SRB_CMD_REG (KVASER_PCIEFD_SRB_BASE + 0x200) #define KVASER_PCIEFD_SRB_IEN_REG (KVASER_PCIEFD_SRB_BASE + 0x204) #define KVASER_PCIEFD_SRB_IRQ_REG (KVASER_PCIEFD_SRB_BASE + 0x20c) #define KVASER_PCIEFD_SRB_STAT_REG (KVASER_PCIEFD_SRB_BASE + 0x210) +#define KVASER_PCIEFD_SRB_RX_NR_PACKETS_REG (KVASER_PCIEFD_SRB_BASE + 0x214) #define KVASER_PCIEFD_SRB_CTRL_REG (KVASER_PCIEFD_SRB_BASE + 0x218) /* EPCS flash controller registers */ #define KVASER_PCIEFD_SPI_BASE 0x1fc00 @@ -111,6 +113,9 @@ /* DMA support */ #define KVASER_PCIEFD_SRB_STAT_DMA BIT(24) +/* SRB current packet level */ +#define KVASER_PCIEFD_SRB_RX_NR_PACKETS_MASK 0xff + /* DMA Enable */ #define KVASER_PCIEFD_SRB_CTRL_DMA_ENABLE BIT(0) @@ -526,7 +531,7 @@ KVASER_PCIEFD_KCAN_IRQ_TOF | KVASER_PCIEFD_KCAN_IRQ_ABD | KVASER_PCIEFD_KCAN_IRQ_TAE | KVASER_PCIEFD_KCAN_IRQ_TAL | KVASER_PCIEFD_KCAN_IRQ_FDIC | KVASER_PCIEFD_KCAN_IRQ_BPP | - KVASER_PCIEFD_KCAN_IRQ_TAR | KVASER_PCIEFD_KCAN_IRQ_TFD; + KVASER_PCIEFD_KCAN_IRQ_TAR; iowrite32(msk, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); @@ -554,6 +559,8 @@ if (can->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) mode |= KVASER_PCIEFD_KCAN_MODE_LOM; + else + mode &= ~KVASER_PCIEFD_KCAN_MODE_LOM; mode |= KVASER_PCIEFD_KCAN_MODE_EEN; mode |= KVASER_PCIEFD_KCAN_MODE_EPEN; @@ -572,7 +579,7 @@ spin_lock_irqsave(&can->lock, irq); iowrite32(-1, can->reg_base + KVASER_PCIEFD_KCAN_IRQ_REG); - iowrite32(KVASER_PCIEFD_KCAN_IRQ_ABD | KVASER_PCIEFD_KCAN_IRQ_TFD, + iowrite32(KVASER_PCIEFD_KCAN_IRQ_ABD, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); status = ioread32(can->reg_base + KVASER_PCIEFD_KCAN_STAT_REG); @@ -615,7 +622,7 @@ iowrite32(0, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); iowrite32(-1, can->reg_base + KVASER_PCIEFD_KCAN_IRQ_REG); - iowrite32(KVASER_PCIEFD_KCAN_IRQ_ABD | KVASER_PCIEFD_KCAN_IRQ_TFD, + iowrite32(KVASER_PCIEFD_KCAN_IRQ_ABD, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); mode = ioread32(can->reg_base + KVASER_PCIEFD_KCAN_MODE_REG); @@ -719,6 +726,7 @@ iowrite32(0, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); del_timer(&can->bec_poll_timer); } + can->can.state = CAN_STATE_STOPPED; close_candev(netdev); return ret; @@ -1007,8 +1015,7 @@ SET_NETDEV_DEV(netdev, &pcie->pci->dev); iowrite32(-1, can->reg_base + KVASER_PCIEFD_KCAN_IRQ_REG); - iowrite32(KVASER_PCIEFD_KCAN_IRQ_ABD | - KVASER_PCIEFD_KCAN_IRQ_TFD, + iowrite32(KVASER_PCIEFD_KCAN_IRQ_ABD, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); pcie->can[i] = can; @@ -1058,6 +1065,7 @@ { int i; u32 srb_status; + u32 srb_packet_count; dma_addr_t dma_addr[KVASER_PCIEFD_DMA_COUNT]; /* Disable the DMA */ @@ -1085,6 +1093,15 @@ KVASER_PCIEFD_SRB_CMD_RDB1, pcie->reg_base + KVASER_PCIEFD_SRB_CMD_REG); + /* Empty Rx FIFO */ + srb_packet_count = ioread32(pcie->reg_base + KVASER_PCIEFD_SRB_RX_NR_PACKETS_REG) & + KVASER_PCIEFD_SRB_RX_NR_PACKETS_MASK; + while (srb_packet_count) { + /* Drop current packet in FIFO */ + ioread32(pcie->reg_base + KVASER_PCIEFD_SRB_FIFO_LAST_REG); + srb_packet_count--; + } + srb_status = ioread32(pcie->reg_base + KVASER_PCIEFD_SRB_STAT_REG); if (!(srb_status & KVASER_PCIEFD_SRB_STAT_DI)) { dev_err(&pcie->pci->dev, "DMA not idle before enabling\n"); @@ -1425,9 +1442,6 @@ cmd = KVASER_PCIEFD_KCAN_CMD_AT; cmd |= ++can->cmd_seq << KVASER_PCIEFD_KCAN_CMD_SEQ_SHIFT; iowrite32(cmd, can->reg_base + KVASER_PCIEFD_KCAN_CMD_REG); - - iowrite32(KVASER_PCIEFD_KCAN_IRQ_TFD, - can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG); } else if (p->header[0] & KVASER_PCIEFD_SPACK_IDET && p->header[0] & KVASER_PCIEFD_SPACK_IRM && cmdseq == (p->header[1] & KVASER_PCIEFD_PACKET_SEQ_MSK) && @@ -1714,15 +1728,6 @@ if (irq & KVASER_PCIEFD_KCAN_IRQ_TOF) netdev_err(can->can.dev, "Tx FIFO overflow\n"); - if (irq & KVASER_PCIEFD_KCAN_IRQ_TFD) { - u8 count = ioread32(can->reg_base + - KVASER_PCIEFD_KCAN_TX_NPACKETS_REG) & 0xff; - - if (count == 0) - iowrite32(KVASER_PCIEFD_KCAN_CTRL_EFLUSH, - can->reg_base + KVASER_PCIEFD_KCAN_CTRL_REG); - } - if (irq & KVASER_PCIEFD_KCAN_IRQ_BPP) netdev_err(can->can.dev, "Fail to change bittiming, when not in reset mode\n"); @@ -1824,6 +1829,11 @@ if (err) goto err_teardown_can_ctrls; + err = request_irq(pcie->pci->irq, kvaser_pciefd_irq_handler, + IRQF_SHARED, KVASER_PCIEFD_DRV_NAME, pcie); + if (err) + goto err_teardown_can_ctrls; + iowrite32(KVASER_PCIEFD_SRB_IRQ_DPD0 | KVASER_PCIEFD_SRB_IRQ_DPD1, pcie->reg_base + KVASER_PCIEFD_SRB_IRQ_REG); @@ -1844,11 +1854,6 @@ iowrite32(KVASER_PCIEFD_SRB_CMD_RDB1, pcie->reg_base + KVASER_PCIEFD_SRB_CMD_REG); - err = request_irq(pcie->pci->irq, kvaser_pciefd_irq_handler, - IRQF_SHARED, KVASER_PCIEFD_DRV_NAME, pcie); - if (err) - goto err_teardown_can_ctrls; - err = kvaser_pciefd_reg_candev(pcie); if (err) goto err_free_irq; @@ -1856,6 +1861,8 @@ return 0; err_free_irq: + /* Disable PCI interrupts */ + iowrite32(0, pcie->reg_base + KVASER_PCIEFD_IEN_REG); free_irq(pcie->pci->irq, pcie); err_teardown_can_ctrls: only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/dsa/mv88e6xxx/port.h +++ linux-6.2.0/drivers/net/dsa/mv88e6xxx/port.h @@ -276,7 +276,7 @@ /* Offset 0x10: Extended Port Control Command */ #define MV88E6393X_PORT_EPC_CMD 0x10 #define MV88E6393X_PORT_EPC_CMD_BUSY 0x8000 -#define MV88E6393X_PORT_EPC_CMD_WRITE 0x0300 +#define MV88E6393X_PORT_EPC_CMD_WRITE 0x3000 #define MV88E6393X_PORT_EPC_INDEX_PORT_ETYPE 0x02 /* Offset 0x11: Extended Port Control Data */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/dsa/rzn1_a5psw.c +++ linux-6.2.0/drivers/net/dsa/rzn1_a5psw.c @@ -120,6 +120,22 @@ a5psw_port_pattern_set(a5psw, port, A5PSW_PATTERN_MGMTFWD, enable); } +static void a5psw_port_tx_enable(struct a5psw *a5psw, int port, bool enable) +{ + u32 mask = A5PSW_PORT_ENA_TX(port); + u32 reg = enable ? mask : 0; + + /* Even though the port TX is disabled through TXENA bit in the + * PORT_ENA register, it can still send BPDUs. This depends on the tag + * configuration added when sending packets from the CPU port to the + * switch port. Indeed, when using forced forwarding without filtering, + * even disabled ports will be able to send packets that are tagged. + * This allows to implement STP support when ports are in a state where + * forwarding traffic should be stopped but BPDUs should still be sent. + */ + a5psw_reg_rmw(a5psw, A5PSW_PORT_ENA, mask, reg); +} + static void a5psw_port_enable_set(struct a5psw *a5psw, int port, bool enable) { u32 port_ena = 0; @@ -292,6 +308,22 @@ return 0; } +static void a5psw_port_learning_set(struct a5psw *a5psw, int port, bool learn) +{ + u32 mask = A5PSW_INPUT_LEARN_DIS(port); + u32 reg = !learn ? mask : 0; + + a5psw_reg_rmw(a5psw, A5PSW_INPUT_LEARN, mask, reg); +} + +static void a5psw_port_rx_block_set(struct a5psw *a5psw, int port, bool block) +{ + u32 mask = A5PSW_INPUT_LEARN_BLOCK(port); + u32 reg = block ? mask : 0; + + a5psw_reg_rmw(a5psw, A5PSW_INPUT_LEARN, mask, reg); +} + static void a5psw_flooding_set_resolution(struct a5psw *a5psw, int port, bool set) { @@ -308,6 +340,14 @@ a5psw_reg_writel(a5psw, offsets[i], a5psw->bridged_ports); } +static void a5psw_port_set_standalone(struct a5psw *a5psw, int port, + bool standalone) +{ + a5psw_port_learning_set(a5psw, port, !standalone); + a5psw_flooding_set_resolution(a5psw, port, !standalone); + a5psw_port_mgmtfwd_set(a5psw, port, standalone); +} + static int a5psw_port_bridge_join(struct dsa_switch *ds, int port, struct dsa_bridge bridge, bool *tx_fwd_offload, @@ -323,8 +363,7 @@ } a5psw->br_dev = bridge.dev; - a5psw_flooding_set_resolution(a5psw, port, true); - a5psw_port_mgmtfwd_set(a5psw, port, false); + a5psw_port_set_standalone(a5psw, port, false); return 0; } @@ -334,8 +373,7 @@ { struct a5psw *a5psw = ds->priv; - a5psw_flooding_set_resolution(a5psw, port, false); - a5psw_port_mgmtfwd_set(a5psw, port, true); + a5psw_port_set_standalone(a5psw, port, true); /* No more ports bridged */ if (a5psw->bridged_ports == BIT(A5PSW_CPU_PORT)) @@ -344,28 +382,35 @@ static void a5psw_port_stp_state_set(struct dsa_switch *ds, int port, u8 state) { - u32 mask = A5PSW_INPUT_LEARN_DIS(port) | A5PSW_INPUT_LEARN_BLOCK(port); + bool learning_enabled, rx_enabled, tx_enabled; struct a5psw *a5psw = ds->priv; - u32 reg = 0; switch (state) { case BR_STATE_DISABLED: case BR_STATE_BLOCKING: - reg |= A5PSW_INPUT_LEARN_DIS(port); - reg |= A5PSW_INPUT_LEARN_BLOCK(port); - break; case BR_STATE_LISTENING: - reg |= A5PSW_INPUT_LEARN_DIS(port); + rx_enabled = false; + tx_enabled = false; + learning_enabled = false; break; case BR_STATE_LEARNING: - reg |= A5PSW_INPUT_LEARN_BLOCK(port); + rx_enabled = false; + tx_enabled = false; + learning_enabled = true; break; case BR_STATE_FORWARDING: - default: + rx_enabled = true; + tx_enabled = true; + learning_enabled = true; break; + default: + dev_err(ds->dev, "invalid STP state: %d\n", state); + return; } - a5psw_reg_rmw(a5psw, A5PSW_INPUT_LEARN, mask, reg); + a5psw_port_learning_set(a5psw, port, learning_enabled); + a5psw_port_rx_block_set(a5psw, port, !rx_enabled); + a5psw_port_tx_enable(a5psw, port, tx_enabled); } static void a5psw_port_fast_age(struct dsa_switch *ds, int port) @@ -673,7 +718,7 @@ } /* Configure management port */ - reg = A5PSW_CPU_PORT | A5PSW_MGMT_CFG_DISCARD; + reg = A5PSW_CPU_PORT | A5PSW_MGMT_CFG_ENABLE; a5psw_reg_writel(a5psw, A5PSW_MGMT_CFG, reg); /* Set pattern 0 to forward all frame to mgmt port */ @@ -722,13 +767,15 @@ if (dsa_port_is_unused(dp)) continue; - /* Enable egress flooding for CPU port */ - if (dsa_port_is_cpu(dp)) + /* Enable egress flooding and learning for CPU port */ + if (dsa_port_is_cpu(dp)) { a5psw_flooding_set_resolution(a5psw, port, true); + a5psw_port_learning_set(a5psw, port, true); + } - /* Enable management forward only for user ports */ + /* Enable standalone mode for user ports */ if (dsa_port_is_user(dp)) - a5psw_port_mgmtfwd_set(a5psw, port, true); + a5psw_port_set_standalone(a5psw, port, true); } return 0; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/dsa/rzn1_a5psw.h +++ linux-6.2.0/drivers/net/dsa/rzn1_a5psw.h @@ -19,6 +19,7 @@ #define A5PSW_PORT_OFFSET(port) (0x400 * (port)) #define A5PSW_PORT_ENA 0x8 +#define A5PSW_PORT_ENA_TX(port) BIT(port) #define A5PSW_PORT_ENA_RX_SHIFT 16 #define A5PSW_PORT_ENA_TX_RX(port) (BIT((port) + A5PSW_PORT_ENA_RX_SHIFT) | \ BIT(port)) @@ -36,7 +37,7 @@ #define A5PSW_INPUT_LEARN_BLOCK(p) BIT(p) #define A5PSW_MGMT_CFG 0x20 -#define A5PSW_MGMT_CFG_DISCARD BIT(7) +#define A5PSW_MGMT_CFG_ENABLE BIT(6) #define A5PSW_MODE_CFG 0x24 #define A5PSW_MODE_STATS_RESET BIT(31) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/3com/3c589_cs.c +++ linux-6.2.0/drivers/net/ethernet/3com/3c589_cs.c @@ -195,6 +195,7 @@ { struct el3_private *lp; struct net_device *dev; + int ret; dev_dbg(&link->dev, "3c589_attach()\n"); @@ -218,7 +219,15 @@ dev->ethtool_ops = &netdev_ethtool_ops; - return tc589_config(link); + ret = tc589_config(link); + if (ret) + goto err_free_netdev; + + return 0; + +err_free_netdev: + free_netdev(dev); + return ret; } static void tc589_detach(struct pcmcia_device *link) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/freescale/enetc/enetc_qos.c +++ linux-6.2.0/drivers/net/ethernet/freescale/enetc/enetc_qos.c @@ -1255,7 +1255,7 @@ int index; index = enetc_get_free_index(priv); - if (sfi->handle < 0) { + if (index < 0) { NL_SET_ERR_MSG_MOD(extack, "No Stream Filter resource!"); err = -ENOSPC; goto free_fmi; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/freescale/fec_main.c +++ linux-6.2.0/drivers/net/ethernet/freescale/fec_main.c @@ -3737,7 +3737,7 @@ entries_free = fec_enet_get_free_txdesc_num(txq); if (entries_free < MAX_SKB_FRAGS + 1) { netdev_err(fep->netdev, "NOT enough BD for SG!\n"); - return NETDEV_TX_OK; + return NETDEV_TX_BUSY; } /* Fill in a Tx ring entry */ @@ -3773,6 +3773,11 @@ index = fec_enet_get_bd_index(last_bdp, &txq->bd); txq->tx_skbuff[index] = NULL; + /* Make sure the updates to rest of the descriptor are performed before + * transferring ownership. + */ + dma_wmb(); + /* Send it on its way. Tell FEC it's ready, interrupt when done, * it's the last BD of the frame, and to put the CRC on the end. */ @@ -3782,8 +3787,14 @@ /* If this was the last BD in the ring, start at the beginning again. */ bdp = fec_enet_get_nextdesc(last_bdp, &txq->bd); + /* Make sure the update to bdp are performed before txq->bd.cur. */ + dma_wmb(); + txq->bd.cur = bdp; + /* Trigger transmission start */ + writel(0, txq->bd.reg_desc_active); + return 0; } @@ -3795,6 +3806,7 @@ struct fec_enet_private *fep = netdev_priv(dev); struct fec_enet_priv_tx_q *txq; int cpu = smp_processor_id(); + unsigned int sent_frames = 0; struct netdev_queue *nq; unsigned int queue; int i; @@ -3805,18 +3817,15 @@ __netif_tx_lock(nq, cpu); - for (i = 0; i < num_frames; i++) - fec_enet_txq_xmit_frame(fep, txq, frames[i]); - - /* Make sure the update to bdp and tx_skbuff are performed. */ - wmb(); - - /* Trigger transmission start */ - writel(0, txq->bd.reg_desc_active); + for (i = 0; i < num_frames; i++) { + if (fec_enet_txq_xmit_frame(fep, txq, frames[i]) != 0) + break; + sent_frames++; + } __netif_tx_unlock(nq); - return num_frames; + return sent_frames; } static const struct net_device_ops fec_netdev_ops = { @@ -4419,9 +4428,11 @@ struct device_node *np = pdev->dev.of_node; int ret; - ret = pm_runtime_resume_and_get(&pdev->dev); + ret = pm_runtime_get_sync(&pdev->dev); if (ret < 0) - return ret; + dev_err(&pdev->dev, + "Failed to resume device in remove callback (%pe)\n", + ERR_PTR(ret)); cancel_work_sync(&fep->tx_timeout_work); fec_ptp_stop(pdev); @@ -4434,8 +4445,13 @@ of_phy_deregister_fixed_link(np); of_node_put(fep->phy_node); - clk_disable_unprepare(fep->clk_ahb); - clk_disable_unprepare(fep->clk_ipg); + /* After pm_runtime_get_sync() failed, the clks are still off, so skip + * disabling them again. + */ + if (ret >= 0) { + clk_disable_unprepare(fep->clk_ahb); + clk_disable_unprepare(fep->clk_ipg); + } pm_runtime_put_noidle(&pdev->dev); pm_runtime_disable(&pdev->dev); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/google/gve/gve_main.c +++ linux-6.2.0/drivers/net/ethernet/google/gve/gve_main.c @@ -284,19 +284,6 @@ bool reschedule = false; int work_done = 0; - /* Clear PCI MSI-X Pending Bit Array (PBA) - * - * This bit is set if an interrupt event occurs while the vector is - * masked. If this bit is set and we reenable the interrupt, it will - * fire again. Since we're just about to poll the queue state, we don't - * need it to fire again. - * - * Under high softirq load, it's possible that the interrupt condition - * is triggered twice before we got the chance to process it. - */ - gve_write_irq_doorbell_dqo(priv, block, - GVE_ITR_NO_UPDATE_DQO | GVE_ITR_CLEAR_PBA_BIT_DQO); - if (block->tx) reschedule |= gve_tx_poll_dqo(block, /*do_clean=*/true); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_common/hclge_comm_cmd.c +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3_common/hclge_comm_cmd.c @@ -330,9 +330,25 @@ return head == hw->cmq.csq.next_to_use; } -static void hclge_comm_wait_for_resp(struct hclge_comm_hw *hw, +static u32 hclge_get_cmdq_tx_timeout(u16 opcode, u32 tx_timeout) +{ + static const struct hclge_cmdq_tx_timeout_map cmdq_tx_timeout_map[] = { + {HCLGE_OPC_CFG_RST_TRIGGER, HCLGE_COMM_CMDQ_TX_TIMEOUT_500MS}, + }; + u32 i; + + for (i = 0; i < ARRAY_SIZE(cmdq_tx_timeout_map); i++) + if (cmdq_tx_timeout_map[i].opcode == opcode) + return cmdq_tx_timeout_map[i].tx_timeout; + + return tx_timeout; +} + +static void hclge_comm_wait_for_resp(struct hclge_comm_hw *hw, u16 opcode, bool *is_completed) { + u32 cmdq_tx_timeout = hclge_get_cmdq_tx_timeout(opcode, + hw->cmq.tx_timeout); u32 timeout = 0; do { @@ -342,7 +358,7 @@ } udelay(1); timeout++; - } while (timeout < hw->cmq.tx_timeout); + } while (timeout < cmdq_tx_timeout); } static int hclge_comm_cmd_convert_err_code(u16 desc_ret) @@ -406,7 +422,8 @@ * if multi descriptors to be sent, use the first one to check */ if (HCLGE_COMM_SEND_SYNC(le16_to_cpu(desc->flag))) - hclge_comm_wait_for_resp(hw, &is_completed); + hclge_comm_wait_for_resp(hw, le16_to_cpu(desc->opcode), + &is_completed); if (!is_completed) ret = -EBADE; @@ -528,7 +545,7 @@ cmdq->crq.desc_num = HCLGE_COMM_NIC_CMQ_DESC_NUM; /* Setup Tx write back timeout */ - cmdq->tx_timeout = HCLGE_COMM_CMDQ_TX_TIMEOUT; + cmdq->tx_timeout = HCLGE_COMM_CMDQ_TX_TIMEOUT_DEFAULT; /* Setup queue rings */ ret = hclge_comm_alloc_cmd_queue(hw, HCLGE_COMM_TYPE_CSQ); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_common/hclge_comm_cmd.h +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3_common/hclge_comm_cmd.h @@ -54,7 +54,8 @@ #define HCLGE_COMM_NIC_SW_RST_RDY BIT(HCLGE_COMM_NIC_SW_RST_RDY_B) #define HCLGE_COMM_NIC_CMQ_DESC_NUM_S 3 #define HCLGE_COMM_NIC_CMQ_DESC_NUM 1024 -#define HCLGE_COMM_CMDQ_TX_TIMEOUT 30000 +#define HCLGE_COMM_CMDQ_TX_TIMEOUT_DEFAULT 30000 +#define HCLGE_COMM_CMDQ_TX_TIMEOUT_500MS 500000 enum hclge_opcode_type { /* Generic commands */ @@ -357,6 +358,11 @@ u16 local_bit; }; +struct hclge_cmdq_tx_timeout_map { + u32 opcode; + u32 tx_timeout; +}; + struct hclge_comm_firmware_compat_cmd { __le32 compat; u8 rsv[20]; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c @@ -130,7 +130,7 @@ .name = "tx_bd_queue", .cmd = HNAE3_DBG_CMD_TX_BD, .dentry = HNS3_DBG_DENTRY_TX_BD, - .buf_len = HNS3_DBG_READ_LEN_4MB, + .buf_len = HNS3_DBG_READ_LEN_5MB, .init = hns3_dbg_bd_file_init, }, { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.h +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.h @@ -10,6 +10,7 @@ #define HNS3_DBG_READ_LEN_128KB 0x20000 #define HNS3_DBG_READ_LEN_1MB 0x100000 #define HNS3_DBG_READ_LEN_4MB 0x400000 +#define HNS3_DBG_READ_LEN_5MB 0x500000 #define HNS3_DBG_WRITE_LEN 1024 #define HNS3_DBG_DATA_STR_LEN 32 only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -8053,12 +8053,15 @@ /* If it is not PF reset or FLR, the firmware will disable the MAC, * so it only need to stop phy here. */ - if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) && - hdev->reset_type != HNAE3_FUNC_RESET && - hdev->reset_type != HNAE3_FLR_RESET) { - hclge_mac_stop_phy(hdev); - hclge_update_link_status(hdev); - return; + if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state)) { + hclge_pfc_pause_en_cfg(hdev, HCLGE_PFC_TX_RX_DISABLE, + HCLGE_PFC_DISABLE); + if (hdev->reset_type != HNAE3_FUNC_RESET && + hdev->reset_type != HNAE3_FLR_RESET) { + hclge_mac_stop_phy(hdev); + hclge_update_link_status(hdev); + return; + } } hclge_reset_tqp(handle); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c @@ -171,8 +171,8 @@ return hclge_cmd_send(&hdev->hw, &desc, 1); } -static int hclge_pfc_pause_en_cfg(struct hclge_dev *hdev, u8 tx_rx_bitmap, - u8 pfc_bitmap) +int hclge_pfc_pause_en_cfg(struct hclge_dev *hdev, u8 tx_rx_bitmap, + u8 pfc_bitmap) { struct hclge_desc desc; struct hclge_pfc_en_cmd *pfc = (struct hclge_pfc_en_cmd *)desc.data; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h @@ -164,6 +164,9 @@ u32 rsvd1; }; +#define HCLGE_PFC_DISABLE 0 +#define HCLGE_PFC_TX_RX_DISABLE 0 + struct hclge_pfc_en_cmd { u8 tx_rx_en_bitmap; u8 pri_en_bitmap; @@ -235,6 +238,8 @@ void hclge_tm_pfc_info_update(struct hclge_dev *hdev); int hclge_tm_dwrr_cfg(struct hclge_dev *hdev); int hclge_tm_init_hw(struct hclge_dev *hdev, bool init); +int hclge_pfc_pause_en_cfg(struct hclge_dev *hdev, u8 tx_rx_bitmap, + u8 pfc_bitmap); int hclge_mac_pause_en_cfg(struct hclge_dev *hdev, bool tx, bool rx); int hclge_pause_addr_cfg(struct hclge_dev *hdev, const u8 *mac_addr); void hclge_pfc_rx_stats_get(struct hclge_dev *hdev, u64 *stats); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ linux-6.2.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -1436,7 +1436,10 @@ * might happen in case reset assertion was made by PF. Yes, this also * means we might end up waiting bit more even for VF reset. */ - msleep(5000); + if (hdev->reset_type == HNAE3_VF_FULL_RESET) + msleep(5000); + else + msleep(500); return 0; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/intel/ice/ice_vf_lib.c +++ linux-6.2.0/drivers/net/ethernet/intel/ice/ice_vf_lib.c @@ -186,6 +186,25 @@ } /** + * ice_check_vf_ready_for_reset - check if VF is ready to be reset + * @vf: VF to check if it's ready to be reset + * + * The purpose of this function is to ensure that the VF is not in reset, + * disabled, and is both initialized and active, thus enabling us to safely + * initialize another reset. + */ +int ice_check_vf_ready_for_reset(struct ice_vf *vf) +{ + int ret; + + ret = ice_check_vf_ready_for_cfg(vf); + if (!ret && !test_bit(ICE_VF_STATE_ACTIVE, vf->vf_states)) + ret = -EAGAIN; + + return ret; +} + +/** * ice_trigger_vf_reset - Reset a VF on HW * @vf: pointer to the VF structure * @is_vflr: true if VFLR was issued, false if not @@ -673,7 +692,7 @@ * ice_set_vf_state_qs_dis - Set VF queues state to disabled * @vf: pointer to the VF structure */ -void ice_set_vf_state_qs_dis(struct ice_vf *vf) +static void ice_set_vf_state_qs_dis(struct ice_vf *vf) { /* Clear Rx/Tx enabled queues flag */ bitmap_zero(vf->txq_ena, ICE_MAX_RSS_QS_PER_VF); @@ -681,6 +700,16 @@ clear_bit(ICE_VF_STATE_QS_ENA, vf->vf_states); } +/** + * ice_set_vf_state_dis - Set VF state to disabled + * @vf: pointer to the VF structure + */ +void ice_set_vf_state_dis(struct ice_vf *vf) +{ + ice_set_vf_state_qs_dis(vf); + vf->vf_ops->clear_reset_state(vf); +} + /* Private functions only accessed from other virtualization files */ /** only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/intel/ice/ice_vf_lib.h +++ linux-6.2.0/drivers/net/ethernet/intel/ice/ice_vf_lib.h @@ -56,6 +56,7 @@ struct ice_vf_ops { enum ice_disq_rst_src reset_type; void (*free)(struct ice_vf *vf); + void (*clear_reset_state)(struct ice_vf *vf); void (*clear_mbx_register)(struct ice_vf *vf); void (*trigger_reset_register)(struct ice_vf *vf, bool is_vflr); bool (*poll_reset_status)(struct ice_vf *vf); @@ -213,7 +214,8 @@ struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf); bool ice_is_vf_disabled(struct ice_vf *vf); int ice_check_vf_ready_for_cfg(struct ice_vf *vf); -void ice_set_vf_state_qs_dis(struct ice_vf *vf); +int ice_check_vf_ready_for_reset(struct ice_vf *vf); +void ice_set_vf_state_dis(struct ice_vf *vf); bool ice_is_any_vf_in_unicast_promisc(struct ice_pf *pf); void ice_vf_get_promisc_masks(struct ice_vf *vf, struct ice_vsi *vsi, @@ -259,7 +261,7 @@ return -EOPNOTSUPP; } -static inline void ice_set_vf_state_qs_dis(struct ice_vf *vf) +static inline void ice_set_vf_state_dis(struct ice_vf *vf) { } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/intel/ice/ice_virtchnl.c +++ linux-6.2.0/drivers/net/ethernet/intel/ice/ice_virtchnl.c @@ -3908,6 +3908,7 @@ ice_vc_notify_vf_link_state(vf); break; case VIRTCHNL_OP_RESET_VF: + clear_bit(ICE_VF_STATE_ACTIVE, vf->vf_states); ops->reset_vf(vf); break; case VIRTCHNL_OP_ADD_ETH_ADDR: only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/intel/igb/e1000_mac.c +++ linux-6.2.0/drivers/net/ethernet/intel/igb/e1000_mac.c @@ -426,7 +426,7 @@ static u32 igb_hash_mc_addr(struct e1000_hw *hw, u8 *mc_addr) { u32 hash_value, hash_mask; - u8 bit_shift = 0; + u8 bit_shift = 1; /* Register count multiplied by bits per register */ hash_mask = (hw->mac.mta_reg_count * 32) - 1; @@ -434,7 +434,7 @@ /* For a mc_filter_type of 0, bit_shift is the number of left-shifts * where 0xFF would still fall within the hash mask. */ - while (hash_mask >> bit_shift != 0xFF) + while (hash_mask >> bit_shift != 0xFF && bit_shift < 4) bit_shift++; /* The portion of the address that is used for the hash table only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c +++ linux-6.2.0/drivers/net/ethernet/intel/ixgbe/ixgbe_lib.c @@ -1035,9 +1035,6 @@ adapter->q_vector[v_idx] = NULL; __netif_napi_del(&q_vector->napi); - if (static_key_enabled(&ixgbe_xdp_locking_key)) - static_branch_dec(&ixgbe_xdp_locking_key); - /* * after a call to __netif_napi_del() napi may still be used and * ixgbe_get_stats64() might access the rings on this vector, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ linux-6.2.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c @@ -6495,6 +6495,10 @@ set_bit(0, adapter->fwd_bitmask); set_bit(__IXGBE_DOWN, &adapter->state); + /* enable locking for XDP_TX if we have more CPUs than queues */ + if (nr_cpu_ids > IXGBE_MAX_XDP_QS) + static_branch_enable(&ixgbe_xdp_locking_key); + return 0; } @@ -10288,8 +10292,6 @@ */ if (nr_cpu_ids > IXGBE_MAX_XDP_QS * 2) return -ENOMEM; - else if (nr_cpu_ids > IXGBE_MAX_XDP_QS) - static_branch_inc(&ixgbe_xdp_locking_key); old_prog = xchg(&adapter->xdp_prog, prog); need_reset = (!!prog != !!old_prog); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/cgx.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c @@ -1231,6 +1231,14 @@ linfo->an = FIELD_GET(RESP_LINKSTAT_AN, lstat); linfo->fec = FIELD_GET(RESP_LINKSTAT_FEC, lstat); linfo->lmac_type_id = FIELD_GET(RESP_LINKSTAT_LMAC_TYPE, lstat); + + if (linfo->lmac_type_id >= LMAC_MODE_MAX) { + dev_err(&cgx->pdev->dev, "Unknown lmac_type_id %d reported by firmware on cgx port%d:%d", + linfo->lmac_type_id, cgx->cgx_id, lmac_id); + strncpy(linfo->lmac_type, "Unknown", LMACTYPE_STR_LEN - 1); + return; + } + lmac_string = cgx_lmactype_string[linfo->lmac_type_id]; strncpy(linfo->lmac_type, lmac_string, LMACTYPE_STR_LEN - 1); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mbox.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mbox.c @@ -157,7 +157,7 @@ */ int otx2_mbox_regions_init(struct otx2_mbox *mbox, void **hwbase, struct pci_dev *pdev, void *reg_base, - int direction, int ndevs) + int direction, int ndevs, unsigned long *pf_bmap) { struct otx2_mbox_dev *mdev; int devid, err; @@ -169,6 +169,9 @@ mbox->hwbase = hwbase[0]; for (devid = 0; devid < ndevs; devid++) { + if (!test_bit(devid, pf_bmap)) + continue; + mdev = &mbox->dev[devid]; mdev->mbase = hwbase[devid]; mdev->hwbase = hwbase[devid]; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mbox.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mbox.h @@ -96,9 +96,10 @@ int otx2_mbox_init(struct otx2_mbox *mbox, void __force *hwbase, struct pci_dev *pdev, void __force *reg_base, int direction, int ndevs); + int otx2_mbox_regions_init(struct otx2_mbox *mbox, void __force **hwbase, struct pci_dev *pdev, void __force *reg_base, - int direction, int ndevs); + int direction, int ndevs, unsigned long *bmap); void otx2_mbox_msg_send(struct otx2_mbox *mbox, int devid); int otx2_mbox_wait_for_rsp(struct otx2_mbox *mbox, int devid); int otx2_mbox_busy_poll_for_rsp(struct otx2_mbox *mbox, int devid); @@ -242,9 +243,9 @@ M(NPC_MCAM_GET_STATS, 0x6012, npc_mcam_entry_stats, \ npc_mcam_get_stats_req, \ npc_mcam_get_stats_rsp) \ -M(NPC_GET_SECRET_KEY, 0x6013, npc_get_secret_key, \ - npc_get_secret_key_req, \ - npc_get_secret_key_rsp) \ +M(NPC_GET_FIELD_HASH_INFO, 0x6013, npc_get_field_hash_info, \ + npc_get_field_hash_info_req, \ + npc_get_field_hash_info_rsp) \ M(NPC_GET_FIELD_STATUS, 0x6014, npc_get_field_status, \ npc_get_field_status_req, \ npc_get_field_status_rsp) \ @@ -1517,14 +1518,20 @@ u8 stat_ena; /* enabled */ }; -struct npc_get_secret_key_req { +struct npc_get_field_hash_info_req { struct mbox_msghdr hdr; u8 intf; }; -struct npc_get_secret_key_rsp { +struct npc_get_field_hash_info_rsp { struct mbox_msghdr hdr; u64 secret_key[3]; +#define NPC_MAX_HASH 2 +#define NPC_MAX_HASH_MASK 2 + /* NPC_AF_INTF(0..1)_HASH(0..1)_MASK(0..1) */ + u64 hash_mask[NPC_MAX_INTF][NPC_MAX_HASH][NPC_MAX_HASH_MASK]; + /* NPC_AF_INTF(0..1)_HASH(0..1)_RESULT_CTRL */ + u64 hash_ctrl[NPC_MAX_INTF][NPC_MAX_HASH]; }; enum ptp_op { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mcs.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mcs.c @@ -473,6 +473,8 @@ for (reg_id = 0; reg_id < 4; reg_id++) { reg = MCSX_CPM_RX_SLAVE_FLOWID_TCAM_DATAX(reg_id, flow_id); mcs_reg_write(mcs, reg, data[reg_id]); + } + for (reg_id = 0; reg_id < 4; reg_id++) { reg = MCSX_CPM_RX_SLAVE_FLOWID_TCAM_MASKX(reg_id, flow_id); mcs_reg_write(mcs, reg, mask[reg_id]); } @@ -480,6 +482,8 @@ for (reg_id = 0; reg_id < 4; reg_id++) { reg = MCSX_CPM_TX_SLAVE_FLOWID_TCAM_DATAX(reg_id, flow_id); mcs_reg_write(mcs, reg, data[reg_id]); + } + for (reg_id = 0; reg_id < 4; reg_id++) { reg = MCSX_CPM_TX_SLAVE_FLOWID_TCAM_MASKX(reg_id, flow_id); mcs_reg_write(mcs, reg, mask[reg_id]); } @@ -494,6 +498,9 @@ /* Flow entry */ flow_id = mcs->hw->tcam_entries - MCS_RSRC_RSVD_CNT; + __set_bit(flow_id, mcs->rx.flow_ids.bmap); + __set_bit(flow_id, mcs->tx.flow_ids.bmap); + for (reg_id = 0; reg_id < 4; reg_id++) { reg = MCSX_CPM_RX_SLAVE_FLOWID_TCAM_MASKX(reg_id, flow_id); mcs_reg_write(mcs, reg, GENMASK_ULL(63, 0)); @@ -504,6 +511,8 @@ } /* secy */ secy_id = mcs->hw->secy_entries - MCS_RSRC_RSVD_CNT; + __set_bit(secy_id, mcs->rx.secy.bmap); + __set_bit(secy_id, mcs->tx.secy.bmap); /* Set validate frames to NULL and enable control port */ plcy = 0x7ull; @@ -528,6 +537,7 @@ /* Enable Flowid entry */ mcs_ena_dis_flowid_entry(mcs, flow_id, MCS_RX, true); mcs_ena_dis_flowid_entry(mcs, flow_id, MCS_TX, true); + return 0; } @@ -926,60 +936,42 @@ mcs_add_intr_wq_entry(mcs, &event); } -static void mcs_bbe_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction dir) +void cn10kb_mcs_bbe_intr_handler(struct mcs *mcs, u64 intr, + enum mcs_direction dir) { - struct mcs_intr_event event = { 0 }; - int i; + u64 val, reg; + int lmac; - if (!(intr & MCS_BBE_INT_MASK)) + if (!(intr & 0x6ULL)) return; - event.mcs_id = mcs->mcs_id; - event.pcifunc = mcs->pf_map[0]; + if (intr & BIT_ULL(1)) + reg = (dir == MCS_RX) ? MCSX_BBE_RX_SLAVE_DFIFO_OVERFLOW_0 : + MCSX_BBE_TX_SLAVE_DFIFO_OVERFLOW_0; + else + reg = (dir == MCS_RX) ? MCSX_BBE_RX_SLAVE_PLFIFO_OVERFLOW_0 : + MCSX_BBE_TX_SLAVE_PLFIFO_OVERFLOW_0; + val = mcs_reg_read(mcs, reg); - for (i = 0; i < MCS_MAX_BBE_INT; i++) { - if (!(intr & BIT_ULL(i))) + /* policy/data over flow occurred */ + for (lmac = 0; lmac < mcs->hw->lmac_cnt; lmac++) { + if (!(val & BIT_ULL(lmac))) continue; - - /* Lower nibble denotes data fifo overflow interrupts and - * upper nibble indicates policy fifo overflow interrupts. - */ - if (intr & 0xFULL) - event.intr_mask = (dir == MCS_RX) ? - MCS_BBE_RX_DFIFO_OVERFLOW_INT : - MCS_BBE_TX_DFIFO_OVERFLOW_INT; - else - event.intr_mask = (dir == MCS_RX) ? - MCS_BBE_RX_PLFIFO_OVERFLOW_INT : - MCS_BBE_TX_PLFIFO_OVERFLOW_INT; - - /* Notify the lmac_id info which ran into BBE fatal error */ - event.lmac_id = i & 0x3ULL; - mcs_add_intr_wq_entry(mcs, &event); + dev_warn(mcs->dev, "BEE:Policy or data overflow occurred on lmac:%d\n", lmac); } } -static void mcs_pab_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction dir) +void cn10kb_mcs_pab_intr_handler(struct mcs *mcs, u64 intr, + enum mcs_direction dir) { - struct mcs_intr_event event = { 0 }; - int i; + int lmac; - if (!(intr & MCS_PAB_INT_MASK)) + if (!(intr & 0xFFFFFULL)) return; - event.mcs_id = mcs->mcs_id; - event.pcifunc = mcs->pf_map[0]; - - for (i = 0; i < MCS_MAX_PAB_INT; i++) { - if (!(intr & BIT_ULL(i))) - continue; - - event.intr_mask = (dir == MCS_RX) ? MCS_PAB_RX_CHAN_OVERFLOW_INT : - MCS_PAB_TX_CHAN_OVERFLOW_INT; - - /* Notify the lmac_id info which ran into PAB fatal error */ - event.lmac_id = i; - mcs_add_intr_wq_entry(mcs, &event); + for (lmac = 0; lmac < mcs->hw->lmac_cnt; lmac++) { + if (intr & BIT_ULL(lmac)) + dev_warn(mcs->dev, "PAB: overflow occurred on lmac:%d\n", lmac); } } @@ -988,9 +980,8 @@ struct mcs *mcs = (struct mcs *)mcs_irq; u64 intr, cpm_intr, bbe_intr, pab_intr; - /* Disable and clear the interrupt */ + /* Disable the interrupt */ mcs_reg_write(mcs, MCSX_IP_INT_ENA_W1C, BIT_ULL(0)); - mcs_reg_write(mcs, MCSX_IP_INT, BIT_ULL(0)); /* Check which block has interrupt*/ intr = mcs_reg_read(mcs, MCSX_TOP_SLAVE_INT_SUM); @@ -1037,7 +1028,7 @@ /* BBE RX */ if (intr & MCS_BBE_RX_INT_ENA) { bbe_intr = mcs_reg_read(mcs, MCSX_BBE_RX_SLAVE_BBE_INT); - mcs_bbe_intr_handler(mcs, bbe_intr, MCS_RX); + mcs->mcs_ops->mcs_bbe_intr_handler(mcs, bbe_intr, MCS_RX); /* Clear the interrupt */ mcs_reg_write(mcs, MCSX_BBE_RX_SLAVE_BBE_INT_INTR_RW, 0); @@ -1047,7 +1038,7 @@ /* BBE TX */ if (intr & MCS_BBE_TX_INT_ENA) { bbe_intr = mcs_reg_read(mcs, MCSX_BBE_TX_SLAVE_BBE_INT); - mcs_bbe_intr_handler(mcs, bbe_intr, MCS_TX); + mcs->mcs_ops->mcs_bbe_intr_handler(mcs, bbe_intr, MCS_TX); /* Clear the interrupt */ mcs_reg_write(mcs, MCSX_BBE_TX_SLAVE_BBE_INT_INTR_RW, 0); @@ -1057,7 +1048,7 @@ /* PAB RX */ if (intr & MCS_PAB_RX_INT_ENA) { pab_intr = mcs_reg_read(mcs, MCSX_PAB_RX_SLAVE_PAB_INT); - mcs_pab_intr_handler(mcs, pab_intr, MCS_RX); + mcs->mcs_ops->mcs_pab_intr_handler(mcs, pab_intr, MCS_RX); /* Clear the interrupt */ mcs_reg_write(mcs, MCSX_PAB_RX_SLAVE_PAB_INT_INTR_RW, 0); @@ -1067,14 +1058,15 @@ /* PAB TX */ if (intr & MCS_PAB_TX_INT_ENA) { pab_intr = mcs_reg_read(mcs, MCSX_PAB_TX_SLAVE_PAB_INT); - mcs_pab_intr_handler(mcs, pab_intr, MCS_TX); + mcs->mcs_ops->mcs_pab_intr_handler(mcs, pab_intr, MCS_TX); /* Clear the interrupt */ mcs_reg_write(mcs, MCSX_PAB_TX_SLAVE_PAB_INT_INTR_RW, 0); mcs_reg_write(mcs, MCSX_PAB_TX_SLAVE_PAB_INT, pab_intr); } - /* Enable the interrupt */ + /* Clear and enable the interrupt */ + mcs_reg_write(mcs, MCSX_IP_INT, BIT_ULL(0)); mcs_reg_write(mcs, MCSX_IP_INT_ENA_W1S, BIT_ULL(0)); return IRQ_HANDLED; @@ -1156,7 +1148,7 @@ return ret; } - ret = request_irq(pci_irq_vector(mcs->pdev, MCS_INT_VEC_IP), + ret = request_irq(pci_irq_vector(mcs->pdev, mcs->hw->ip_vec), mcs_ip_intr_handler, 0, "MCS_IP", mcs); if (ret) { dev_err(mcs->dev, "MCS IP irq registration failed\n"); @@ -1175,11 +1167,11 @@ mcs_reg_write(mcs, MCSX_CPM_TX_SLAVE_TX_INT_ENB, 0x7ULL); mcs_reg_write(mcs, MCSX_CPM_RX_SLAVE_RX_INT_ENB, 0x7FULL); - mcs_reg_write(mcs, MCSX_BBE_RX_SLAVE_BBE_INT_ENB, 0xff); - mcs_reg_write(mcs, MCSX_BBE_TX_SLAVE_BBE_INT_ENB, 0xff); + mcs_reg_write(mcs, MCSX_BBE_RX_SLAVE_BBE_INT_ENB, 0xFFULL); + mcs_reg_write(mcs, MCSX_BBE_TX_SLAVE_BBE_INT_ENB, 0xFFULL); - mcs_reg_write(mcs, MCSX_PAB_RX_SLAVE_PAB_INT_ENB, 0xff); - mcs_reg_write(mcs, MCSX_PAB_TX_SLAVE_PAB_INT_ENB, 0xff); + mcs_reg_write(mcs, MCSX_PAB_RX_SLAVE_PAB_INT_ENB, 0xFFFFFULL); + mcs_reg_write(mcs, MCSX_PAB_TX_SLAVE_PAB_INT_ENB, 0xFFFFFULL); mcs->tx_sa_active = alloc_mem(mcs, mcs->hw->sc_entries); if (!mcs->tx_sa_active) { @@ -1190,7 +1182,7 @@ return ret; free_irq: - free_irq(pci_irq_vector(mcs->pdev, MCS_INT_VEC_IP), mcs); + free_irq(pci_irq_vector(mcs->pdev, mcs->hw->ip_vec), mcs); exit: pci_free_irq_vectors(mcs->pdev); mcs->num_vec = 0; @@ -1325,8 +1317,11 @@ void mcs_set_lmac_mode(struct mcs *mcs, int lmac_id, u8 mode) { u64 reg; + int id = lmac_id * 2; - reg = MCSX_MCS_TOP_SLAVE_CHANNEL_CFG(lmac_id * 2); + reg = MCSX_MCS_TOP_SLAVE_CHANNEL_CFG(id); + mcs_reg_write(mcs, reg, (u64)mode); + reg = MCSX_MCS_TOP_SLAVE_CHANNEL_CFG((id + 1)); mcs_reg_write(mcs, reg, (u64)mode); } @@ -1484,6 +1479,7 @@ hw->lmac_cnt = 20; /* lmacs/ports per mcs block */ hw->mcs_x2p_intf = 5; /* x2p clabration intf */ hw->mcs_blks = 1; /* MCS blocks */ + hw->ip_vec = MCS_CN10KB_INT_VEC_IP; /* IP vector */ } static struct mcs_ops cn10kb_mcs_ops = { @@ -1492,6 +1488,8 @@ .mcs_tx_sa_mem_map_write = cn10kb_mcs_tx_sa_mem_map_write, .mcs_rx_sa_mem_map_write = cn10kb_mcs_rx_sa_mem_map_write, .mcs_flowid_secy_map = cn10kb_mcs_flowid_secy_map, + .mcs_bbe_intr_handler = cn10kb_mcs_bbe_intr_handler, + .mcs_pab_intr_handler = cn10kb_mcs_pab_intr_handler, }; static int mcs_probe(struct pci_dev *pdev, const struct pci_device_id *id) @@ -1592,7 +1590,7 @@ /* Set MCS to external bypass */ mcs_set_external_bypass(mcs, true); - free_irq(pci_irq_vector(pdev, MCS_INT_VEC_IP), mcs); + free_irq(pci_irq_vector(pdev, mcs->hw->ip_vec), mcs); pci_free_irq_vectors(pdev); pci_release_regions(pdev); pci_disable_device(pdev); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mcs.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mcs.h @@ -43,24 +43,15 @@ /* Reserved resources for default bypass entry */ #define MCS_RSRC_RSVD_CNT 1 -/* MCS Interrupt Vector Enumeration */ -enum mcs_int_vec_e { - MCS_INT_VEC_MIL_RX_GBL = 0x0, - MCS_INT_VEC_MIL_RX_LMACX = 0x1, - MCS_INT_VEC_MIL_TX_LMACX = 0x5, - MCS_INT_VEC_HIL_RX_GBL = 0x9, - MCS_INT_VEC_HIL_RX_LMACX = 0xa, - MCS_INT_VEC_HIL_TX_GBL = 0xe, - MCS_INT_VEC_HIL_TX_LMACX = 0xf, - MCS_INT_VEC_IP = 0x13, - MCS_INT_VEC_CNT = 0x14, -}; +/* MCS Interrupt Vector */ +#define MCS_CNF10KB_INT_VEC_IP 0x13 +#define MCS_CN10KB_INT_VEC_IP 0x53 #define MCS_MAX_BBE_INT 8ULL #define MCS_BBE_INT_MASK 0xFFULL -#define MCS_MAX_PAB_INT 4ULL -#define MCS_PAB_INT_MASK 0xFULL +#define MCS_MAX_PAB_INT 8ULL +#define MCS_PAB_INT_MASK 0xFULL #define MCS_BBE_RX_INT_ENA BIT_ULL(0) #define MCS_BBE_TX_INT_ENA BIT_ULL(1) @@ -137,6 +128,7 @@ u8 lmac_cnt; u8 mcs_blks; unsigned long lmac_bmap; /* bitmap of enabled mcs lmac */ + u16 ip_vec; }; struct mcs { @@ -165,6 +157,8 @@ void (*mcs_tx_sa_mem_map_write)(struct mcs *mcs, struct mcs_tx_sc_sa_map *map); void (*mcs_rx_sa_mem_map_write)(struct mcs *mcs, struct mcs_rx_sc_sa_map *map); void (*mcs_flowid_secy_map)(struct mcs *mcs, struct secy_mem_map *map, int dir); + void (*mcs_bbe_intr_handler)(struct mcs *mcs, u64 intr, enum mcs_direction dir); + void (*mcs_pab_intr_handler)(struct mcs *mcs, u64 intr, enum mcs_direction dir); }; extern struct pci_driver mcs_driver; @@ -219,6 +213,8 @@ void cn10kb_mcs_flowid_secy_map(struct mcs *mcs, struct secy_mem_map *map, int dir); void cn10kb_mcs_rx_sa_mem_map_write(struct mcs *mcs, struct mcs_rx_sc_sa_map *map); void cn10kb_mcs_parser_cfg(struct mcs *mcs); +void cn10kb_mcs_pab_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction dir); +void cn10kb_mcs_bbe_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction dir); /* CNF10K-B APIs */ struct mcs_ops *cnf10kb_get_mac_ops(void); @@ -229,6 +225,8 @@ void cnf10kb_mcs_parser_cfg(struct mcs *mcs); void cnf10kb_mcs_tx_pn_thresh_reached_handler(struct mcs *mcs); void cnf10kb_mcs_tx_pn_wrapped_handler(struct mcs *mcs); +void cnf10kb_mcs_bbe_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction dir); +void cnf10kb_mcs_pab_intr_handler(struct mcs *mcs, u64 intr, enum mcs_direction dir); /* Stats APIs */ void mcs_get_sc_stats(struct mcs *mcs, struct mcs_sc_stats *stats, int id, int dir); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mcs_cnf10kb.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mcs_cnf10kb.c @@ -13,6 +13,8 @@ .mcs_tx_sa_mem_map_write = cnf10kb_mcs_tx_sa_mem_map_write, .mcs_rx_sa_mem_map_write = cnf10kb_mcs_rx_sa_mem_map_write, .mcs_flowid_secy_map = cnf10kb_mcs_flowid_secy_map, + .mcs_bbe_intr_handler = cnf10kb_mcs_bbe_intr_handler, + .mcs_pab_intr_handler = cnf10kb_mcs_pab_intr_handler, }; struct mcs_ops *cnf10kb_get_mac_ops(void) @@ -31,6 +33,7 @@ hw->lmac_cnt = 4; /* lmacs/ports per mcs block */ hw->mcs_x2p_intf = 1; /* x2p clabration intf */ hw->mcs_blks = 7; /* MCS blocks */ + hw->ip_vec = MCS_CNF10KB_INT_VEC_IP; /* IP vector */ } void cnf10kb_mcs_parser_cfg(struct mcs *mcs) @@ -212,3 +215,63 @@ mcs_add_intr_wq_entry(mcs, &event); } } + +void cnf10kb_mcs_bbe_intr_handler(struct mcs *mcs, u64 intr, + enum mcs_direction dir) +{ + struct mcs_intr_event event = { 0 }; + int i; + + if (!(intr & MCS_BBE_INT_MASK)) + return; + + event.mcs_id = mcs->mcs_id; + event.pcifunc = mcs->pf_map[0]; + + for (i = 0; i < MCS_MAX_BBE_INT; i++) { + if (!(intr & BIT_ULL(i))) + continue; + + /* Lower nibble denotes data fifo overflow interrupts and + * upper nibble indicates policy fifo overflow interrupts. + */ + if (intr & 0xFULL) + event.intr_mask = (dir == MCS_RX) ? + MCS_BBE_RX_DFIFO_OVERFLOW_INT : + MCS_BBE_TX_DFIFO_OVERFLOW_INT; + else + event.intr_mask = (dir == MCS_RX) ? + MCS_BBE_RX_PLFIFO_OVERFLOW_INT : + MCS_BBE_TX_PLFIFO_OVERFLOW_INT; + + /* Notify the lmac_id info which ran into BBE fatal error */ + event.lmac_id = i & 0x3ULL; + mcs_add_intr_wq_entry(mcs, &event); + } +} + +void cnf10kb_mcs_pab_intr_handler(struct mcs *mcs, u64 intr, + enum mcs_direction dir) +{ + struct mcs_intr_event event = { 0 }; + int i; + + if (!(intr & MCS_PAB_INT_MASK)) + return; + + event.mcs_id = mcs->mcs_id; + event.pcifunc = mcs->pf_map[0]; + + for (i = 0; i < MCS_MAX_PAB_INT; i++) { + if (!(intr & BIT_ULL(i))) + continue; + + event.intr_mask = (dir == MCS_RX) ? + MCS_PAB_RX_CHAN_OVERFLOW_INT : + MCS_PAB_TX_CHAN_OVERFLOW_INT; + + /* Notify the lmac_id info which ran into PAB fatal error */ + event.lmac_id = i; + mcs_add_intr_wq_entry(mcs, &event); + } +} only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mcs_reg.h @@ -97,6 +97,7 @@ #define MCSX_PEX_TX_SLAVE_VLAN_CFGX(a) (0x46f8ull + (a) * 0x8ull) #define MCSX_PEX_TX_SLAVE_CUSTOM_TAG_REL_MODE_SEL(a) (0x788ull + (a) * 0x8ull) #define MCSX_PEX_TX_SLAVE_PORT_CONFIG(a) (0x4738ull + (a) * 0x8ull) +#define MCSX_PEX_RX_SLAVE_PORT_CFGX(a) (0x3b98ull + (a) * 0x8ull) #define MCSX_PEX_RX_SLAVE_RULE_ETYPE_CFGX(a) ({ \ u64 offset; \ \ @@ -275,7 +276,10 @@ #define MCSX_BBE_RX_SLAVE_CAL_ENTRY 0x180ull #define MCSX_BBE_RX_SLAVE_CAL_LEN 0x188ull #define MCSX_PAB_RX_SLAVE_FIFO_SKID_CFGX(a) (0x290ull + (a) * 0x40ull) - +#define MCSX_BBE_RX_SLAVE_DFIFO_OVERFLOW_0 0xe20 +#define MCSX_BBE_TX_SLAVE_DFIFO_OVERFLOW_0 0x1298 +#define MCSX_BBE_RX_SLAVE_PLFIFO_OVERFLOW_0 0xe40 +#define MCSX_BBE_TX_SLAVE_PLFIFO_OVERFLOW_0 0x12b8 #define MCSX_BBE_RX_SLAVE_BBE_INT ({ \ u64 offset; \ \ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/mcs_rvu_if.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/mcs_rvu_if.c @@ -11,6 +11,7 @@ #include "mcs.h" #include "rvu.h" +#include "mcs_reg.h" #include "lmac_common.h" #define M(_name, _id, _fn_name, _req_type, _rsp_type) \ @@ -32,6 +33,42 @@ MBOX_UP_MCS_MESSAGES #undef M +void rvu_mcs_ptp_cfg(struct rvu *rvu, u8 rpm_id, u8 lmac_id, bool ena) +{ + struct mcs *mcs; + u64 cfg; + u8 port; + + if (!rvu->mcs_blk_cnt) + return; + + /* When ptp is enabled, RPM appends 8B header for all + * RX packets. MCS PEX need to configure to skip 8B + * during packet parsing. + */ + + /* CNF10K-B */ + if (rvu->mcs_blk_cnt > 1) { + mcs = mcs_get_pdata(rpm_id); + cfg = mcs_reg_read(mcs, MCSX_PEX_RX_SLAVE_PEX_CONFIGURATION); + if (ena) + cfg |= BIT_ULL(lmac_id); + else + cfg &= ~BIT_ULL(lmac_id); + mcs_reg_write(mcs, MCSX_PEX_RX_SLAVE_PEX_CONFIGURATION, cfg); + return; + } + /* CN10KB */ + mcs = mcs_get_pdata(0); + port = (rpm_id * rvu->hw->lmac_per_cgx) + lmac_id; + cfg = mcs_reg_read(mcs, MCSX_PEX_RX_SLAVE_PORT_CFGX(port)); + if (ena) + cfg |= BIT_ULL(0); + else + cfg &= ~BIT_ULL(0); + mcs_reg_write(mcs, MCSX_PEX_RX_SLAVE_PORT_CFGX(port), cfg); +} + int rvu_mbox_handler_mcs_set_lmac_mode(struct rvu *rvu, struct mcs_set_lmac_mode *req, struct msg_rsp *rsp) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.c @@ -2274,7 +2274,7 @@ } static int rvu_get_mbox_regions(struct rvu *rvu, void **mbox_addr, - int num, int type) + int num, int type, unsigned long *pf_bmap) { struct rvu_hwinfo *hw = rvu->hw; int region; @@ -2286,6 +2286,9 @@ */ if (type == TYPE_AFVF) { for (region = 0; region < num; region++) { + if (!test_bit(region, pf_bmap)) + continue; + if (hw->cap.per_pf_mbox_regs) { bar4 = rvu_read64(rvu, BLKADDR_RVUM, RVU_AF_PFX_BAR4_ADDR(0)) + @@ -2307,6 +2310,9 @@ * RVU_AF_PF_BAR4_ADDR register. */ for (region = 0; region < num; region++) { + if (!test_bit(region, pf_bmap)) + continue; + if (hw->cap.per_pf_mbox_regs) { bar4 = rvu_read64(rvu, BLKADDR_RVUM, RVU_AF_PFX_BAR4_ADDR(region)); @@ -2335,20 +2341,41 @@ int err = -EINVAL, i, dir, dir_up; void __iomem *reg_base; struct rvu_work *mwork; + unsigned long *pf_bmap; void **mbox_regions; const char *name; + u64 cfg; - mbox_regions = kcalloc(num, sizeof(void *), GFP_KERNEL); - if (!mbox_regions) + pf_bmap = bitmap_zalloc(num, GFP_KERNEL); + if (!pf_bmap) return -ENOMEM; + /* RVU VFs */ + if (type == TYPE_AFVF) + bitmap_set(pf_bmap, 0, num); + + if (type == TYPE_AFPF) { + /* Mark enabled PFs in bitmap */ + for (i = 0; i < num; i++) { + cfg = rvu_read64(rvu, BLKADDR_RVUM, RVU_PRIV_PFX_CFG(i)); + if (cfg & BIT_ULL(20)) + set_bit(i, pf_bmap); + } + } + + mbox_regions = kcalloc(num, sizeof(void *), GFP_KERNEL); + if (!mbox_regions) { + err = -ENOMEM; + goto free_bitmap; + } + switch (type) { case TYPE_AFPF: name = "rvu_afpf_mailbox"; dir = MBOX_DIR_AFPF; dir_up = MBOX_DIR_AFPF_UP; reg_base = rvu->afreg_base; - err = rvu_get_mbox_regions(rvu, mbox_regions, num, TYPE_AFPF); + err = rvu_get_mbox_regions(rvu, mbox_regions, num, TYPE_AFPF, pf_bmap); if (err) goto free_regions; break; @@ -2357,7 +2384,7 @@ dir = MBOX_DIR_PFVF; dir_up = MBOX_DIR_PFVF_UP; reg_base = rvu->pfreg_base; - err = rvu_get_mbox_regions(rvu, mbox_regions, num, TYPE_AFVF); + err = rvu_get_mbox_regions(rvu, mbox_regions, num, TYPE_AFVF, pf_bmap); if (err) goto free_regions; break; @@ -2388,16 +2415,19 @@ } err = otx2_mbox_regions_init(&mw->mbox, mbox_regions, rvu->pdev, - reg_base, dir, num); + reg_base, dir, num, pf_bmap); if (err) goto exit; err = otx2_mbox_regions_init(&mw->mbox_up, mbox_regions, rvu->pdev, - reg_base, dir_up, num); + reg_base, dir_up, num, pf_bmap); if (err) goto exit; for (i = 0; i < num; i++) { + if (!test_bit(i, pf_bmap)) + continue; + mwork = &mw->mbox_wrk[i]; mwork->rvu = rvu; INIT_WORK(&mwork->work, mbox_handler); @@ -2406,8 +2436,7 @@ mwork->rvu = rvu; INIT_WORK(&mwork->work, mbox_up_handler); } - kfree(mbox_regions); - return 0; + goto free_regions; exit: destroy_workqueue(mw->mbox_wq); @@ -2416,6 +2445,8 @@ iounmap((void __iomem *)mbox_regions[num]); free_regions: kfree(mbox_regions); +free_bitmap: + bitmap_free(pf_bmap); return err; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c @@ -773,6 +773,8 @@ /* This flag is required to clean up CGX conf if app gets killed */ pfvf->hw_rx_tstamp_en = enable; + /* Inform MCS about 8B RX header */ + rvu_mcs_ptp_cfg(rvu, cgx_id, lmac_id, enable); return 0; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_cn10k.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cn10k.c @@ -60,13 +60,14 @@ u64 iova, u64 *lmt_addr) { u64 pa, val, pf; - int err; + int err = 0; if (!iova) { dev_err(rvu->dev, "%s Requested Null address for transulation\n", __func__); return -EINVAL; } + mutex_lock(&rvu->rsrc_lock); rvu_write64(rvu, BLKADDR_RVUM, RVU_AF_SMMU_ADDR_REQ, iova); pf = rvu_get_pf(pcifunc) & 0x1F; val = BIT_ULL(63) | BIT_ULL(14) | BIT_ULL(13) | pf << 8 | @@ -76,12 +77,13 @@ err = rvu_poll_reg(rvu, BLKADDR_RVUM, RVU_AF_SMMU_ADDR_RSP_STS, BIT_ULL(0), false); if (err) { dev_err(rvu->dev, "%s LMTLINE iova transulation failed\n", __func__); - return err; + goto exit; } val = rvu_read64(rvu, BLKADDR_RVUM, RVU_AF_SMMU_ADDR_RSP_STS); if (val & ~0x1ULL) { dev_err(rvu->dev, "%s LMTLINE iova transulation failed err:%llx\n", __func__, val); - return -EIO; + err = -EIO; + goto exit; } /* PA[51:12] = RVU_AF_SMMU_TLN_FLIT0[57:18] * PA[11:0] = IOVA[11:0] @@ -89,8 +91,9 @@ pa = rvu_read64(rvu, BLKADDR_RVUM, RVU_AF_SMMU_TLN_FLIT0) >> 18; pa &= GENMASK_ULL(39, 0); *lmt_addr = (pa << 12) | (iova & 0xFFF); - - return 0; +exit: + mutex_unlock(&rvu->rsrc_lock); + return err; } static int rvu_update_lmtaddr(struct rvu *rvu, u16 pcifunc, u64 lmt_addr) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_fs.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_fs.c @@ -13,11 +13,6 @@ #include "rvu_npc_fs.h" #include "rvu_npc_hash.h" -#define NPC_BYTESM GENMASK_ULL(19, 16) -#define NPC_HDR_OFFSET GENMASK_ULL(15, 8) -#define NPC_KEY_OFFSET GENMASK_ULL(5, 0) -#define NPC_LDATA_EN BIT_ULL(7) - static const char * const npc_flow_names[] = { [NPC_DMAC] = "dmac", [NPC_SMAC] = "smac", @@ -442,6 +437,7 @@ static void npc_scan_ldata(struct rvu *rvu, int blkaddr, u8 lid, u8 lt, u64 cfg, u8 intf) { + struct npc_mcam_kex_hash *mkex_hash = rvu->kpu.mkex_hash; struct npc_mcam *mcam = &rvu->hw->mcam; u8 hdr, key, nr_bytes, bit_offset; u8 la_ltype, la_start; @@ -490,8 +486,21 @@ NPC_SCAN_HDR(NPC_SIP_IPV4, NPC_LID_LC, NPC_LT_LC_IP, 12, 4); NPC_SCAN_HDR(NPC_DIP_IPV4, NPC_LID_LC, NPC_LT_LC_IP, 16, 4); NPC_SCAN_HDR(NPC_IPFRAG_IPV6, NPC_LID_LC, NPC_LT_LC_IP6_EXT, 6, 1); - NPC_SCAN_HDR(NPC_SIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 8, 16); - NPC_SCAN_HDR(NPC_DIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 24, 16); + if (rvu->hw->cap.npc_hash_extract) { + if (mkex_hash->lid_lt_ld_hash_en[intf][lid][lt][0]) + NPC_SCAN_HDR(NPC_SIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 8, 4); + else + NPC_SCAN_HDR(NPC_SIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 8, 16); + + if (mkex_hash->lid_lt_ld_hash_en[intf][lid][lt][1]) + NPC_SCAN_HDR(NPC_DIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 24, 4); + else + NPC_SCAN_HDR(NPC_DIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 24, 16); + } else { + NPC_SCAN_HDR(NPC_SIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 8, 16); + NPC_SCAN_HDR(NPC_DIP_IPV6, NPC_LID_LC, NPC_LT_LC_IP6, 24, 16); + } + NPC_SCAN_HDR(NPC_SPORT_UDP, NPC_LID_LD, NPC_LT_LD_UDP, 0, 2); NPC_SCAN_HDR(NPC_DPORT_UDP, NPC_LID_LD, NPC_LT_LD_UDP, 2, 2); NPC_SCAN_HDR(NPC_SPORT_TCP, NPC_LID_LD, NPC_LT_LD_TCP, 0, 2); @@ -594,8 +603,7 @@ */ masked_cfg = cfg & NPC_EXACT_NIBBLE; bitnr = NPC_EXACT_NIBBLE_START; - for_each_set_bit_from(bitnr, (unsigned long *)&masked_cfg, - NPC_EXACT_NIBBLE_START) { + for_each_set_bit_from(bitnr, (unsigned long *)&masked_cfg, NPC_EXACT_NIBBLE_END + 1) { npc_scan_exact_result(mcam, bitnr, key_nibble, intf); key_nibble++; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_fs.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_fs.h @@ -9,6 +9,10 @@ #define __RVU_NPC_FS_H #define IPV6_WORDS 4 +#define NPC_BYTESM GENMASK_ULL(19, 16) +#define NPC_HDR_OFFSET GENMASK_ULL(15, 8) +#define NPC_KEY_OFFSET GENMASK_ULL(5, 0) +#define NPC_LDATA_EN BIT_ULL(7) void npc_update_entry(struct rvu *rvu, enum key_fields type, struct mcam_entry *entry, u64 val_lo, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_hash.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_hash.c @@ -78,42 +78,43 @@ return hash_out; } -u32 npc_field_hash_calc(u64 *ldata, struct npc_mcam_kex_hash *mkex_hash, - u64 *secret_key, u8 intf, u8 hash_idx) +u32 npc_field_hash_calc(u64 *ldata, struct npc_get_field_hash_info_rsp rsp, + u8 intf, u8 hash_idx) { u64 hash_key[3]; u64 data_padded[2]; u32 field_hash; - hash_key[0] = secret_key[1] << 31; - hash_key[0] |= secret_key[2]; - hash_key[1] = secret_key[1] >> 33; - hash_key[1] |= secret_key[0] << 31; - hash_key[2] = secret_key[0] >> 33; + hash_key[0] = rsp.secret_key[1] << 31; + hash_key[0] |= rsp.secret_key[2]; + hash_key[1] = rsp.secret_key[1] >> 33; + hash_key[1] |= rsp.secret_key[0] << 31; + hash_key[2] = rsp.secret_key[0] >> 33; - data_padded[0] = mkex_hash->hash_mask[intf][hash_idx][0] & ldata[0]; - data_padded[1] = mkex_hash->hash_mask[intf][hash_idx][1] & ldata[1]; + data_padded[0] = rsp.hash_mask[intf][hash_idx][0] & ldata[0]; + data_padded[1] = rsp.hash_mask[intf][hash_idx][1] & ldata[1]; field_hash = rvu_npc_toeplitz_hash(data_padded, hash_key, 128, 159); - field_hash &= mkex_hash->hash_ctrl[intf][hash_idx] >> 32; - field_hash |= mkex_hash->hash_ctrl[intf][hash_idx]; + field_hash &= FIELD_GET(GENMASK(63, 32), rsp.hash_ctrl[intf][hash_idx]); + field_hash += FIELD_GET(GENMASK(31, 0), rsp.hash_ctrl[intf][hash_idx]); return field_hash; } -static u64 npc_update_use_hash(int lt, int ld) +static u64 npc_update_use_hash(struct rvu *rvu, int blkaddr, + u8 intf, int lid, int lt, int ld) { - u64 cfg = 0; + u8 hdr, key; + u64 cfg; - switch (lt) { - case NPC_LT_LC_IP6: - /* Update use_hash(bit-20) and bytesm1 (bit-16:19) - * in KEX_LD_CFG - */ - cfg = KEX_LD_CFG_USE_HASH(0x1, 0x03, - ld ? 0x8 : 0x18, - 0x1, 0x0, 0x10); - break; - } + cfg = rvu_read64(rvu, blkaddr, NPC_AF_INTFX_LIDX_LTX_LDX_CFG(intf, lid, lt, ld)); + hdr = FIELD_GET(NPC_HDR_OFFSET, cfg); + key = FIELD_GET(NPC_KEY_OFFSET, cfg); + + /* Update use_hash(bit-20) to 'true' and + * bytesm1(bit-16:19) to '0x3' in KEX_LD_CFG + */ + cfg = KEX_LD_CFG_USE_HASH(0x1, 0x03, + hdr, 0x1, 0x0, key); return cfg; } @@ -132,12 +133,13 @@ for (lt = 0; lt < NPC_MAX_LT; lt++) { for (ld = 0; ld < NPC_MAX_LD; ld++) { if (mkex_hash->lid_lt_ld_hash_en[intf][lid][lt][ld]) { - u64 cfg = npc_update_use_hash(lt, ld); + u64 cfg; - hash_cnt++; if (hash_cnt == NPC_MAX_HASH) return; + cfg = npc_update_use_hash(rvu, blkaddr, + intf, lid, lt, ld); /* Set updated KEX configuration */ SET_KEX_LD(intf, lid, lt, ld, cfg); /* Set HASH configuration */ @@ -149,6 +151,8 @@ mkex_hash->hash_mask[intf][ld][1]); SET_KEX_LD_HASH_CTRL(intf, ld, mkex_hash->hash_ctrl[intf][ld]); + + hash_cnt++; } } } @@ -169,12 +173,13 @@ for (lt = 0; lt < NPC_MAX_LT; lt++) { for (ld = 0; ld < NPC_MAX_LD; ld++) if (mkex_hash->lid_lt_ld_hash_en[intf][lid][lt][ld]) { - u64 cfg = npc_update_use_hash(lt, ld); + u64 cfg; - hash_cnt++; if (hash_cnt == NPC_MAX_HASH) return; + cfg = npc_update_use_hash(rvu, blkaddr, + intf, lid, lt, ld); /* Set updated KEX configuration */ SET_KEX_LD(intf, lid, lt, ld, cfg); /* Set HASH configuration */ @@ -187,8 +192,6 @@ SET_KEX_LD_HASH_CTRL(intf, ld, mkex_hash->hash_ctrl[intf][ld]); hash_cnt++; - if (hash_cnt == NPC_MAX_HASH) - return; } } } @@ -242,8 +245,8 @@ struct flow_msg *omask) { struct npc_mcam_kex_hash *mkex_hash = rvu->kpu.mkex_hash; - struct npc_get_secret_key_req req; - struct npc_get_secret_key_rsp rsp; + struct npc_get_field_hash_info_req req; + struct npc_get_field_hash_info_rsp rsp; u64 ldata[2], cfg; u32 field_hash; u8 hash_idx; @@ -254,7 +257,7 @@ } req.intf = intf; - rvu_mbox_handler_npc_get_secret_key(rvu, &req, &rsp); + rvu_mbox_handler_npc_get_field_hash_info(rvu, &req, &rsp); for (hash_idx = 0; hash_idx < NPC_MAX_HASH; hash_idx++) { cfg = rvu_read64(rvu, blkaddr, NPC_AF_INTFX_HASHX_CFG(intf, hash_idx)); @@ -270,44 +273,45 @@ * is hashed to 32 bit value. */ case NPC_LT_LC_IP6: - if (features & BIT_ULL(NPC_SIP_IPV6)) { + /* ld[0] == hash_idx[0] == Source IPv6 + * ld[1] == hash_idx[1] == Destination IPv6 + */ + if ((features & BIT_ULL(NPC_SIP_IPV6)) && !hash_idx) { u32 src_ip[IPV6_WORDS]; be32_to_cpu_array(src_ip, pkt->ip6src, IPV6_WORDS); - ldata[0] = (u64)src_ip[0] << 32 | src_ip[1]; - ldata[1] = (u64)src_ip[2] << 32 | src_ip[3]; + ldata[1] = (u64)src_ip[0] << 32 | src_ip[1]; + ldata[0] = (u64)src_ip[2] << 32 | src_ip[3]; field_hash = npc_field_hash_calc(ldata, - mkex_hash, - rsp.secret_key, + rsp, intf, hash_idx); npc_update_entry(rvu, NPC_SIP_IPV6, entry, - field_hash, 0, 32, 0, intf); + field_hash, 0, + GENMASK(31, 0), 0, intf); memcpy(&opkt->ip6src, &pkt->ip6src, sizeof(pkt->ip6src)); memcpy(&omask->ip6src, &mask->ip6src, sizeof(mask->ip6src)); - break; - } - - if (features & BIT_ULL(NPC_DIP_IPV6)) { + } else if ((features & BIT_ULL(NPC_DIP_IPV6)) && hash_idx) { u32 dst_ip[IPV6_WORDS]; be32_to_cpu_array(dst_ip, pkt->ip6dst, IPV6_WORDS); - ldata[0] = (u64)dst_ip[0] << 32 | dst_ip[1]; - ldata[1] = (u64)dst_ip[2] << 32 | dst_ip[3]; + ldata[1] = (u64)dst_ip[0] << 32 | dst_ip[1]; + ldata[0] = (u64)dst_ip[2] << 32 | dst_ip[3]; field_hash = npc_field_hash_calc(ldata, - mkex_hash, - rsp.secret_key, + rsp, intf, hash_idx); npc_update_entry(rvu, NPC_DIP_IPV6, entry, - field_hash, 0, 32, 0, intf); + field_hash, 0, + GENMASK(31, 0), 0, intf); memcpy(&opkt->ip6dst, &pkt->ip6dst, sizeof(pkt->ip6dst)); memcpy(&omask->ip6dst, &mask->ip6dst, sizeof(mask->ip6dst)); } + break; } } @@ -315,13 +319,13 @@ } } -int rvu_mbox_handler_npc_get_secret_key(struct rvu *rvu, - struct npc_get_secret_key_req *req, - struct npc_get_secret_key_rsp *rsp) +int rvu_mbox_handler_npc_get_field_hash_info(struct rvu *rvu, + struct npc_get_field_hash_info_req *req, + struct npc_get_field_hash_info_rsp *rsp) { u64 *secret_key = rsp->secret_key; u8 intf = req->intf; - int blkaddr; + int i, j, blkaddr; blkaddr = rvu_get_blkaddr(rvu, BLKTYPE_NPC, 0); if (blkaddr < 0) { @@ -333,6 +337,19 @@ secret_key[1] = rvu_read64(rvu, blkaddr, NPC_AF_INTFX_SECRET_KEY1(intf)); secret_key[2] = rvu_read64(rvu, blkaddr, NPC_AF_INTFX_SECRET_KEY2(intf)); + for (i = 0; i < NPC_MAX_HASH; i++) { + for (j = 0; j < NPC_MAX_HASH_MASK; j++) { + rsp->hash_mask[NIX_INTF_RX][i][j] = + GET_KEX_LD_HASH_MASK(NIX_INTF_RX, i, j); + rsp->hash_mask[NIX_INTF_TX][i][j] = + GET_KEX_LD_HASH_MASK(NIX_INTF_TX, i, j); + } + } + + for (i = 0; i < NPC_MAX_INTF; i++) + for (j = 0; j < NPC_MAX_HASH; j++) + rsp->hash_ctrl[i][j] = GET_KEX_LD_HASH_CTRL(i, j); + return 0; } @@ -1878,9 +1895,9 @@ rvu->hw->table = table; /* Read table size, ways and depth */ - table->mem_table.depth = FIELD_GET(GENMASK_ULL(31, 24), npc_const3); table->mem_table.ways = FIELD_GET(GENMASK_ULL(19, 16), npc_const3); - table->cam_table.depth = FIELD_GET(GENMASK_ULL(15, 0), npc_const3); + table->mem_table.depth = FIELD_GET(GENMASK_ULL(15, 0), npc_const3); + table->cam_table.depth = FIELD_GET(GENMASK_ULL(31, 24), npc_const3); dev_dbg(rvu->dev, "%s: NPC exact match 4way_2k table(ways=%d, depth=%d)\n", __func__, table->mem_table.ways, table->cam_table.depth); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_hash.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc_hash.h @@ -31,6 +31,12 @@ rvu_write64(rvu, blkaddr, \ NPC_AF_INTFX_HASHX_MASKX(intf, ld, mask_idx), cfg) +#define GET_KEX_LD_HASH_CTRL(intf, ld) \ + rvu_read64(rvu, blkaddr, NPC_AF_INTFX_HASHX_RESULT_CTRL(intf, ld)) + +#define GET_KEX_LD_HASH_MASK(intf, ld, mask_idx) \ + rvu_read64(rvu, blkaddr, NPC_AF_INTFX_HASHX_MASKX(intf, ld, mask_idx)) + #define SET_KEX_LD_HASH_CTRL(intf, ld, cfg) \ rvu_write64(rvu, blkaddr, \ NPC_AF_INTFX_HASHX_RESULT_CTRL(intf, ld), cfg) @@ -56,8 +62,8 @@ struct flow_msg *omask); void npc_config_secret_key(struct rvu *rvu, int blkaddr); void npc_program_mkex_hash(struct rvu *rvu, int blkaddr); -u32 npc_field_hash_calc(u64 *ldata, struct npc_mcam_kex_hash *mkex_hash, - u64 *secret_key, u8 intf, u8 hash_idx); +u32 npc_field_hash_calc(u64 *ldata, struct npc_get_field_hash_info_rsp rsp, + u8 intf, u8 hash_idx); static struct npc_mcam_kex_hash npc_mkex_hash_default __maybe_unused = { .lid_lt_ld_hash_en = { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c @@ -9,6 +9,7 @@ #include #include "otx2_common.h" +#define MCS_TCAM0_MAC_DA_MASK GENMASK_ULL(47, 0) #define MCS_TCAM0_MAC_SA_MASK GENMASK_ULL(63, 48) #define MCS_TCAM1_MAC_SA_MASK GENMASK_ULL(31, 0) #define MCS_TCAM1_ETYPE_MASK GENMASK_ULL(47, 32) @@ -149,11 +150,20 @@ enum mcs_rsrc_type type, u16 hw_rsrc_id, bool all) { + struct mcs_clear_stats *clear_req; struct mbox *mbox = &pfvf->mbox; struct mcs_free_rsrc_req *req; mutex_lock(&mbox->lock); + clear_req = otx2_mbox_alloc_msg_mcs_clear_stats(mbox); + if (!clear_req) + goto fail; + + clear_req->id = hw_rsrc_id; + clear_req->type = type; + clear_req->dir = dir; + req = otx2_mbox_alloc_msg_mcs_free_resources(mbox); if (!req) goto fail; @@ -237,8 +247,10 @@ struct cn10k_mcs_rxsc *rxsc, u8 hw_secy_id) { struct macsec_rx_sc *sw_rx_sc = rxsc->sw_rxsc; + struct macsec_secy *secy = rxsc->sw_secy; struct mcs_flowid_entry_write_req *req; struct mbox *mbox = &pfvf->mbox; + u64 mac_da; int ret; mutex_lock(&mbox->lock); @@ -249,11 +261,16 @@ goto fail; } + mac_da = ether_addr_to_u64(secy->netdev->dev_addr); + + req->data[0] = FIELD_PREP(MCS_TCAM0_MAC_DA_MASK, mac_da); + req->mask[0] = ~0ULL; + req->mask[0] = ~MCS_TCAM0_MAC_DA_MASK; + req->data[1] = FIELD_PREP(MCS_TCAM1_ETYPE_MASK, ETH_P_MACSEC); req->mask[1] = ~0ULL; req->mask[1] &= ~MCS_TCAM1_ETYPE_MASK; - req->mask[0] = ~0ULL; req->mask[2] = ~0ULL; req->mask[3] = ~0ULL; @@ -997,7 +1014,7 @@ /* Check if sync is really needed */ if (secy->validate_frames == txsc->last_validate_frames && - secy->protect_frames == txsc->last_protect_frames) + secy->replay_protect == txsc->last_replay_protect) return; cn10k_mcs_secy_stats(pfvf, txsc->hw_secy_id_rx, &rx_rsp, MCS_RX, true); @@ -1019,19 +1036,19 @@ rxsc->stats.InPktsInvalid += sc_rsp.pkt_invalid_cnt; rxsc->stats.InPktsNotValid += sc_rsp.pkt_notvalid_cnt; - if (txsc->last_protect_frames) + if (txsc->last_replay_protect) rxsc->stats.InPktsLate += sc_rsp.pkt_late_cnt; else rxsc->stats.InPktsDelayed += sc_rsp.pkt_late_cnt; - if (txsc->last_validate_frames == MACSEC_VALIDATE_CHECK) + if (txsc->last_validate_frames == MACSEC_VALIDATE_DISABLED) rxsc->stats.InPktsUnchecked += sc_rsp.pkt_unchecked_cnt; else rxsc->stats.InPktsOK += sc_rsp.pkt_unchecked_cnt; } txsc->last_validate_frames = secy->validate_frames; - txsc->last_protect_frames = secy->protect_frames; + txsc->last_replay_protect = secy->replay_protect; } static int cn10k_mdo_open(struct macsec_context *ctx) @@ -1100,7 +1117,7 @@ txsc->sw_secy = secy; txsc->encoding_sa = secy->tx_sc.encoding_sa; txsc->last_validate_frames = secy->validate_frames; - txsc->last_protect_frames = secy->protect_frames; + txsc->last_replay_protect = secy->replay_protect; list_add(&txsc->entry, &cfg->txsc_list); @@ -1117,6 +1134,7 @@ struct macsec_secy *secy = ctx->secy; struct macsec_tx_sa *sw_tx_sa; struct cn10k_mcs_txsc *txsc; + bool active; u8 sa_num; int err; @@ -1124,15 +1142,19 @@ if (!txsc) return -ENOENT; - txsc->encoding_sa = secy->tx_sc.encoding_sa; - - sa_num = txsc->encoding_sa; - sw_tx_sa = rcu_dereference_bh(secy->tx_sc.sa[sa_num]); + /* Encoding SA got changed */ + if (txsc->encoding_sa != secy->tx_sc.encoding_sa) { + txsc->encoding_sa = secy->tx_sc.encoding_sa; + sa_num = txsc->encoding_sa; + sw_tx_sa = rcu_dereference_bh(secy->tx_sc.sa[sa_num]); + active = sw_tx_sa ? sw_tx_sa->active : false; + cn10k_mcs_link_tx_sa2sc(pfvf, secy, txsc, sa_num, active); + } if (netif_running(secy->netdev)) { cn10k_mcs_sync_stats(pfvf, secy, txsc); - err = cn10k_mcs_secy_tx_cfg(pfvf, secy, txsc, sw_tx_sa, sa_num); + err = cn10k_mcs_secy_tx_cfg(pfvf, secy, txsc, NULL, 0); if (err) return err; } @@ -1521,12 +1543,12 @@ rxsc->stats.InPktsInvalid += rsp.pkt_invalid_cnt; rxsc->stats.InPktsNotValid += rsp.pkt_notvalid_cnt; - if (secy->protect_frames) + if (secy->replay_protect) rxsc->stats.InPktsLate += rsp.pkt_late_cnt; else rxsc->stats.InPktsDelayed += rsp.pkt_late_cnt; - if (secy->validate_frames == MACSEC_VALIDATE_CHECK) + if (secy->validate_frames == MACSEC_VALIDATE_DISABLED) rxsc->stats.InPktsUnchecked += rsp.pkt_unchecked_cnt; else rxsc->stats.InPktsOK += rsp.pkt_unchecked_cnt; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h @@ -335,11 +335,11 @@ #define OTX2_PER_VF_VLAN_FLOWS 2 /* Rx + Tx per VF */ #define OTX2_VF_VLAN_RX_INDEX 0 #define OTX2_VF_VLAN_TX_INDEX 1 - u16 max_flows; - u8 dmacflt_max_flows; u32 *bmap_to_dmacindex; unsigned long *dmacflt_bmap; struct list_head flow_list; + u32 dmacflt_max_flows; + u16 max_flows; }; struct otx2_tc_info { @@ -389,7 +389,7 @@ struct cn10k_txsc_stats stats; struct list_head entry; enum macsec_validation_type last_validate_frames; - bool last_protect_frames; + bool last_replay_protect; u16 hw_secy_id_tx; u16 hw_secy_id_rx; u16 hw_flow_id; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c @@ -1835,13 +1835,22 @@ otx2_dmacflt_reinstall_flows(pf); err = otx2_rxtx_enable(pf, true); - if (err) + /* If a mbox communication error happens at this point then interface + * will end up in a state such that it is in down state but hardware + * mcam entries are enabled to receive the packets. Hence disable the + * packet I/O. + */ + if (err == EIO) + goto err_disable_rxtx; + else if (err) goto err_tx_stop_queues; otx2_do_set_rx_mode(pf); return 0; +err_disable_rxtx: + otx2_rxtx_enable(pf, false); err_tx_stop_queues: netif_tx_stop_all_queues(netdev); netif_carrier_off(netdev); @@ -3069,8 +3078,6 @@ otx2_config_pause_frm(pf); } - cn10k_mcs_free(pf); - #ifdef CONFIG_DCB /* Disable PFC config */ if (pf->pfc_en) { @@ -3084,6 +3091,7 @@ otx2_unregister_dl(pf); unregister_netdev(netdev); + cn10k_mcs_free(pf); otx2_sriov_disable(pf->pdev); otx2_sriov_vfcfg_cleanup(pf); if (pf->otx2_wq) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_tc.c +++ linux-6.2.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_tc.c @@ -544,7 +544,7 @@ if (match.mask->flags & FLOW_DIS_IS_FRAGMENT) { if (ntohs(flow_spec->etype) == ETH_P_IP) { flow_spec->ip_flag = IPV4_FLAG_MORE; - flow_mask->ip_flag = 0xff; + flow_mask->ip_flag = IPV4_FLAG_MORE; req->features |= BIT_ULL(NPC_IPFRAG_IPV4); } else if (ntohs(flow_spec->etype) == ETH_P_IPV6) { flow_spec->next_header = IPPROTO_FRAGMENT; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/cmd.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c @@ -1893,9 +1893,10 @@ static void cmd_status_log(struct mlx5_core_dev *dev, u16 opcode, u8 status, u32 syndrome, int err) { + const char *namep = mlx5_command_str(opcode); struct mlx5_cmd_stats *stats; - if (!err) + if (!err || !(strcmp(namep, "unknown command opcode"))) return; stats = &dev->cmd.stats[opcode]; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_encap.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_encap.c @@ -1338,11 +1338,13 @@ struct mlx5e_tc_flow *flow; list_for_each_entry(flow, encap_flows, tmp_list) { - struct mlx5_flow_attr *attr = flow->attr; struct mlx5_esw_flow_attr *esw_attr; + struct mlx5_flow_attr *attr; if (!mlx5e_is_offloaded_flow(flow)) continue; + + attr = mlx5e_tc_get_encap_attr(flow); esw_attr = attr->esw_attr; if (flow_flag_test(flow, SLOW)) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_tx.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en_tx.c @@ -777,6 +777,17 @@ } } +void mlx5e_txqsq_wake(struct mlx5e_txqsq *sq) +{ + if (netif_tx_queue_stopped(sq->txq) && + mlx5e_wqc_has_room_for(&sq->wq, sq->cc, sq->pc, sq->stop_room) && + mlx5e_ptpsq_fifo_has_room(sq) && + !test_bit(MLX5E_SQ_STATE_RECOVERING, &sq->state)) { + netif_tx_wake_queue(sq->txq); + sq->stats->wake++; + } +} + bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget) { struct mlx5e_sq_stats *stats; @@ -876,13 +887,7 @@ netdev_tx_completed_queue(sq->txq, npkts, nbytes); - if (netif_tx_queue_stopped(sq->txq) && - mlx5e_wqc_has_room_for(&sq->wq, sq->cc, sq->pc, sq->stop_room) && - mlx5e_ptpsq_fifo_has_room(sq) && - !test_bit(MLX5E_SQ_STATE_RECOVERING, &sq->state)) { - netif_tx_wake_queue(sq->txq); - stats->wake++; - } + mlx5e_txqsq_wake(sq); return (i == MLX5E_TX_CQ_POLL_BUDGET); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c @@ -161,20 +161,22 @@ } } + /* budget=0 means we may be in IRQ context, do as little as possible */ + if (unlikely(!budget)) + goto out; + busy |= mlx5e_poll_xdpsq_cq(&c->xdpsq.cq); if (c->xdp) busy |= mlx5e_poll_xdpsq_cq(&c->rq_xdpsq.cq); - if (likely(budget)) { /* budget=0 means: don't poll rx rings */ - if (xsk_open) - work_done = mlx5e_poll_rx_cq(&xskrq->cq, budget); + if (xsk_open) + work_done = mlx5e_poll_rx_cq(&xskrq->cq, budget); - if (likely(budget - work_done)) - work_done += mlx5e_poll_rx_cq(&rq->cq, budget - work_done); + if (likely(budget - work_done)) + work_done += mlx5e_poll_rx_cq(&rq->cq, budget - work_done); - busy |= work_done == budget; - } + busy |= work_done == budget; mlx5e_poll_ico_cq(&c->icosq.cq); if (mlx5e_poll_ico_cq(&c->async_icosq.cq)) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.c @@ -3,6 +3,7 @@ #include #include "lib/devcom.h" +#include "mlx5_core.h" static LIST_HEAD(devcom_list); @@ -13,7 +14,7 @@ struct mlx5_devcom_component { struct { - void *data; + void __rcu *data; } device[MLX5_DEVCOM_PORTS_SUPPORTED]; mlx5_devcom_event_handler_t handler; @@ -77,6 +78,7 @@ if (MLX5_CAP_GEN(dev, num_lag_ports) != MLX5_DEVCOM_PORTS_SUPPORTED) return NULL; + mlx5_dev_list_lock(); sguid0 = mlx5_query_nic_system_image_guid(dev); list_for_each_entry(iter, &devcom_list, list) { struct mlx5_core_dev *tmp_dev = NULL; @@ -102,8 +104,10 @@ if (!priv) { priv = mlx5_devcom_list_alloc(); - if (!priv) - return ERR_PTR(-ENOMEM); + if (!priv) { + devcom = ERR_PTR(-ENOMEM); + goto out; + } idx = 0; new_priv = true; @@ -112,13 +116,16 @@ priv->devs[idx] = dev; devcom = mlx5_devcom_alloc(priv, idx); if (!devcom) { - kfree(priv); - return ERR_PTR(-ENOMEM); + if (new_priv) + kfree(priv); + devcom = ERR_PTR(-ENOMEM); + goto out; } if (new_priv) list_add(&priv->list, &devcom_list); - +out: + mlx5_dev_list_unlock(); return devcom; } @@ -131,6 +138,7 @@ if (IS_ERR_OR_NULL(devcom)) return; + mlx5_dev_list_lock(); priv = devcom->priv; priv->devs[devcom->idx] = NULL; @@ -141,10 +149,12 @@ break; if (i != MLX5_DEVCOM_PORTS_SUPPORTED) - return; + goto out; list_del(&priv->list); kfree(priv); +out: + mlx5_dev_list_unlock(); } void mlx5_devcom_register_component(struct mlx5_devcom *devcom, @@ -162,7 +172,7 @@ comp = &devcom->priv->components[id]; down_write(&comp->sem); comp->handler = handler; - comp->device[devcom->idx].data = data; + rcu_assign_pointer(comp->device[devcom->idx].data, data); up_write(&comp->sem); } @@ -176,8 +186,9 @@ comp = &devcom->priv->components[id]; down_write(&comp->sem); - comp->device[devcom->idx].data = NULL; + RCU_INIT_POINTER(comp->device[devcom->idx].data, NULL); up_write(&comp->sem); + synchronize_rcu(); } int mlx5_devcom_send_event(struct mlx5_devcom *devcom, @@ -193,12 +204,15 @@ comp = &devcom->priv->components[id]; down_write(&comp->sem); - for (i = 0; i < MLX5_DEVCOM_PORTS_SUPPORTED; i++) - if (i != devcom->idx && comp->device[i].data) { - err = comp->handler(event, comp->device[i].data, - event_data); + for (i = 0; i < MLX5_DEVCOM_PORTS_SUPPORTED; i++) { + void *data = rcu_dereference_protected(comp->device[i].data, + lockdep_is_held(&comp->sem)); + + if (i != devcom->idx && data) { + err = comp->handler(event, data, event_data); break; } + } up_write(&comp->sem); return err; @@ -213,7 +227,7 @@ comp = &devcom->priv->components[id]; WARN_ON(!rwsem_is_locked(&comp->sem)); - comp->paired = paired; + WRITE_ONCE(comp->paired, paired); } bool mlx5_devcom_is_paired(struct mlx5_devcom *devcom, @@ -222,7 +236,7 @@ if (IS_ERR_OR_NULL(devcom)) return false; - return devcom->priv->components[id].paired; + return READ_ONCE(devcom->priv->components[id].paired); } void *mlx5_devcom_get_peer_data(struct mlx5_devcom *devcom, @@ -236,7 +250,7 @@ comp = &devcom->priv->components[id]; down_read(&comp->sem); - if (!comp->paired) { + if (!READ_ONCE(comp->paired)) { up_read(&comp->sem); return NULL; } @@ -245,7 +259,29 @@ if (i != devcom->idx) break; - return comp->device[i].data; + return rcu_dereference_protected(comp->device[i].data, lockdep_is_held(&comp->sem)); +} + +void *mlx5_devcom_get_peer_data_rcu(struct mlx5_devcom *devcom, enum mlx5_devcom_components id) +{ + struct mlx5_devcom_component *comp; + int i; + + if (IS_ERR_OR_NULL(devcom)) + return NULL; + + for (i = 0; i < MLX5_DEVCOM_PORTS_SUPPORTED; i++) + if (i != devcom->idx) + break; + + comp = &devcom->priv->components[id]; + /* This can change concurrently, however 'data' pointer will remain + * valid for the duration of RCU read section. + */ + if (!READ_ONCE(comp->paired)) + return NULL; + + return rcu_dereference(comp->device[i].data); } void mlx5_devcom_release_peer_data(struct mlx5_devcom *devcom, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.h +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.h @@ -41,6 +41,7 @@ void *mlx5_devcom_get_peer_data(struct mlx5_devcom *devcom, enum mlx5_devcom_components id); +void *mlx5_devcom_get_peer_data_rcu(struct mlx5_devcom *devcom, enum mlx5_devcom_components id); void mlx5_devcom_release_peer_data(struct mlx5_devcom *devcom, enum mlx5_devcom_components id); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_cmd.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_cmd.c @@ -117,6 +117,8 @@ caps->gvmi = MLX5_CAP_GEN(mdev, vhca_id); caps->flex_protocols = MLX5_CAP_GEN(mdev, flex_parser_protocols); caps->sw_format_ver = MLX5_CAP_GEN(mdev, steering_format_version); + caps->roce_caps.fl_rc_qp_when_roce_disabled = + MLX5_CAP_GEN(mdev, fl_rc_qp_when_roce_disabled); if (MLX5_CAP_GEN(mdev, roce)) { err = dr_cmd_query_nic_vport_roce_en(mdev, 0, &roce_en); @@ -124,7 +126,7 @@ return err; caps->roce_caps.roce_en = roce_en; - caps->roce_caps.fl_rc_qp_when_roce_disabled = + caps->roce_caps.fl_rc_qp_when_roce_disabled |= MLX5_CAP_ROCE(mdev, fl_rc_qp_when_roce_disabled); caps->roce_caps.fl_rc_qp_when_roce_enabled = MLX5_CAP_ROCE(mdev, fl_rc_qp_when_roce_enabled); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.c +++ linux-6.2.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.c @@ -15,7 +15,8 @@ { u32 crc = crc32(0, input_data, length); - return (__force u32)htonl(crc); + return (__force u32)((crc >> 24) & 0xff) | ((crc << 8) & 0xff0000) | + ((crc >> 8) & 0xff00) | ((crc << 24) & 0xff000000); } bool mlx5dr_ste_supp_ttl_cs_recalc(struct mlx5dr_cmd_caps *caps) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/microchip/lan966x/lan966x_main.c +++ linux-6.2.0/drivers/net/ethernet/microchip/lan966x/lan966x_main.c @@ -1008,6 +1008,16 @@ reset_control_reset(switch_reset); + /* Don't reinitialize the switch core, if it is already initialized. In + * case it is initialized twice, some pointers inside the queue system + * in HW will get corrupted and then after a while the queue system gets + * full and no traffic is passing through the switch. The issue is seen + * when loading and unloading the driver and sending traffic through the + * switch. + */ + if (lan_rd(lan966x, SYS_RESET_CFG) & SYS_RESET_CFG_CORE_ENA) + return 0; + lan_wr(SYS_RESET_CFG_CORE_ENA_SET(0), lan966x, SYS_RESET_CFG); lan_wr(SYS_RAM_INIT_RAM_INIT_SET(1), lan966x, SYS_RAM_INIT); ret = readx_poll_timeout(lan966x_ram_init, lan966x, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/mscc/vsc7514_regs.c +++ linux-6.2.0/drivers/net/ethernet/mscc/vsc7514_regs.c @@ -252,15 +252,15 @@ REG(SYS_COUNT_DROP_YELLOW_PRIO_4, 0x000218), REG(SYS_COUNT_DROP_YELLOW_PRIO_5, 0x00021c), REG(SYS_COUNT_DROP_YELLOW_PRIO_6, 0x000220), - REG(SYS_COUNT_DROP_YELLOW_PRIO_7, 0x000214), - REG(SYS_COUNT_DROP_GREEN_PRIO_0, 0x000218), - REG(SYS_COUNT_DROP_GREEN_PRIO_1, 0x00021c), - REG(SYS_COUNT_DROP_GREEN_PRIO_2, 0x000220), - REG(SYS_COUNT_DROP_GREEN_PRIO_3, 0x000224), - REG(SYS_COUNT_DROP_GREEN_PRIO_4, 0x000228), - REG(SYS_COUNT_DROP_GREEN_PRIO_5, 0x00022c), - REG(SYS_COUNT_DROP_GREEN_PRIO_6, 0x000230), - REG(SYS_COUNT_DROP_GREEN_PRIO_7, 0x000234), + REG(SYS_COUNT_DROP_YELLOW_PRIO_7, 0x000224), + REG(SYS_COUNT_DROP_GREEN_PRIO_0, 0x000228), + REG(SYS_COUNT_DROP_GREEN_PRIO_1, 0x00022c), + REG(SYS_COUNT_DROP_GREEN_PRIO_2, 0x000230), + REG(SYS_COUNT_DROP_GREEN_PRIO_3, 0x000234), + REG(SYS_COUNT_DROP_GREEN_PRIO_4, 0x000238), + REG(SYS_COUNT_DROP_GREEN_PRIO_5, 0x00023c), + REG(SYS_COUNT_DROP_GREEN_PRIO_6, 0x000240), + REG(SYS_COUNT_DROP_GREEN_PRIO_7, 0x000244), REG(SYS_RESET_CFG, 0x000508), REG(SYS_CMID, 0x00050c), REG(SYS_VLAN_ETYPE_CFG, 0x000510), only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/nvidia/forcedeth.c +++ linux-6.2.0/drivers/net/ethernet/nvidia/forcedeth.c @@ -6138,6 +6138,7 @@ return 0; out_error: + nv_mgmt_release_sema(dev); if (phystate_orig) writel(phystate|NVREG_ADAPTCTL_RUNNING, base + NvRegAdapterControl); out_freering: only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/pasemi/pasemi_mac.c +++ linux-6.2.0/drivers/net/ethernet/pasemi/pasemi_mac.c @@ -1423,7 +1423,7 @@ write_dma_reg(PAS_DMA_TXCHAN_INCR(txring->chan.chno), 2); } -static int pasemi_mac_start_tx(struct sk_buff *skb, struct net_device *dev) +static netdev_tx_t pasemi_mac_start_tx(struct sk_buff *skb, struct net_device *dev) { struct pasemi_mac * const mac = netdev_priv(dev); struct pasemi_mac_txring * const txring = tx_ring(mac); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/pensando/ionic/ionic_devlink.c +++ linux-6.2.0/drivers/net/ethernet/pensando/ionic/ionic_devlink.c @@ -61,6 +61,8 @@ struct devlink *dl; dl = devlink_alloc(&ionic_dl_ops, sizeof(struct ionic), dev); + if (!dl) + return NULL; return devlink_priv(dl); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/pensando/ionic/ionic_ethtool.c +++ linux-6.2.0/drivers/net/ethernet/pensando/ionic/ionic_ethtool.c @@ -691,7 +691,7 @@ info->data = lif->nxqs; break; default: - netdev_err(netdev, "Command parameter %d is not supported\n", + netdev_dbg(netdev, "Command parameter %d is not supported\n", info->cmd); err = -EOPNOTSUPP; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/sfc/ef100_netdev.c +++ linux-6.2.0/drivers/net/ethernet/sfc/ef100_netdev.c @@ -372,7 +372,9 @@ efx->net_dev = net_dev; SET_NETDEV_DEV(net_dev, &efx->pci_dev->dev); - net_dev->features |= efx->type->offload_features; + /* enable all supported features except rx-fcs and rx-all */ + net_dev->features |= efx->type->offload_features & + ~(NETIF_F_RXFCS | NETIF_F_RXALL); net_dev->hw_features |= efx->type->offload_features; net_dev->hw_enc_features |= efx->type->offload_features; net_dev->vlan_features |= NETIF_F_HW_CSUM | NETIF_F_SG | only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/sfc/mcdi_port_common.c +++ linux-6.2.0/drivers/net/ethernet/sfc/mcdi_port_common.c @@ -972,12 +972,15 @@ /* A QSFP+ NIC may actually have an SFP+ module attached. * The ID is page 0, byte 0. + * QSFP28 is of type SFF_8636, however, this is treated + * the same by ethtool, so we can also treat them the same. */ switch (efx_mcdi_phy_get_module_eeprom_byte(efx, 0, 0)) { - case 0x3: + case 0x3: /* SFP */ return MC_CMD_MEDIA_SFP_PLUS; - case 0xc: - case 0xd: + case 0xc: /* QSFP */ + case 0xd: /* QSFP+ */ + case 0x11: /* QSFP28 */ return MC_CMD_MEDIA_QSFP_PLUS; default: return 0; @@ -1075,7 +1078,7 @@ case MC_CMD_MEDIA_QSFP_PLUS: modinfo->type = ETH_MODULE_SFF_8436; - modinfo->eeprom_len = ETH_MODULE_SFF_8436_LEN; + modinfo->eeprom_len = ETH_MODULE_SFF_8436_MAX_LEN; break; default: only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac4.h +++ linux-6.2.0/drivers/net/ethernet/stmicro/stmmac/dwmac4.h @@ -181,6 +181,7 @@ #define GMAC4_LPI_CTRL_STATUS 0xd0 #define GMAC4_LPI_TIMER_CTRL 0xd4 #define GMAC4_LPI_ENTRY_TIMER 0xd8 +#define GMAC4_MAC_ONEUS_TIC_COUNTER 0xdc /* LPI control and status defines */ #define GMAC4_LPI_CTRL_STATUS_LPITCSE BIT(21) /* LPI Tx Clock Stop Enable */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/ethernet/sun/cassini.c +++ linux-6.2.0/drivers/net/ethernet/sun/cassini.c @@ -5077,6 +5077,8 @@ cas_shutdown(cp); mutex_unlock(&cp->pm_mutex); + vfree(cp->fw_data); + pci_iounmap(pdev, cp->regs); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/mdio/mdio-mvusb.c +++ linux-6.2.0/drivers/net/mdio/mdio-mvusb.c @@ -73,6 +73,7 @@ struct device *dev = &interface->dev; struct mvusb_mdio *mvusb; struct mii_bus *mdio; + int ret; mdio = devm_mdiobus_alloc_size(dev, sizeof(*mvusb)); if (!mdio) @@ -93,7 +94,15 @@ mdio->write = mvusb_mdio_write; usb_set_intfdata(interface, mvusb); - return of_mdiobus_register(mdio, dev->of_node); + ret = of_mdiobus_register(mdio, dev->of_node); + if (ret) + goto put_dev; + + return 0; + +put_dev: + usb_put_dev(mvusb->udev); + return ret; } static void mvusb_mdio_disconnect(struct usb_interface *interface) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/phy/bcm-phy-lib.h +++ linux-6.2.0/drivers/net/phy/bcm-phy-lib.h @@ -40,6 +40,11 @@ return bcm_phy_write_exp(phydev, reg | MII_BCM54XX_EXP_SEL_ER, val); } +static inline int bcm_phy_read_exp_sel(struct phy_device *phydev, u16 reg) +{ + return bcm_phy_read_exp(phydev, reg | MII_BCM54XX_EXP_SEL_ER); +} + int bcm54xx_auxctl_write(struct phy_device *phydev, u16 regnum, u16 val); int bcm54xx_auxctl_read(struct phy_device *phydev, u16 regnum); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/phy/bcm7xxx.c +++ linux-6.2.0/drivers/net/phy/bcm7xxx.c @@ -487,7 +487,7 @@ bcm_phy_write_misc(phydev, 0x0038, 0x0002, 0xede0); /* Read CORE_EXPA9 */ - tmp = bcm_phy_read_exp(phydev, 0x00a9); + tmp = bcm_phy_read_exp_sel(phydev, 0x00a9); /* CORE_EXPA9[6:1] is rcalcode[5:0] */ rcalcode = (tmp & 0x7e) / 2; /* Correct RCAL code + 1 is -1% rprogr, LP: +16 */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/phy/dp83867.c +++ linux-6.2.0/drivers/net/phy/dp83867.c @@ -42,6 +42,7 @@ #define DP83867_STRAP_STS1 0x006E #define DP83867_STRAP_STS2 0x006f #define DP83867_RGMIIDCTL 0x0086 +#define DP83867_DSP_FFE_CFG 0x012c #define DP83867_RXFCFG 0x0134 #define DP83867_RXFPMD1 0x0136 #define DP83867_RXFPMD2 0x0137 @@ -910,8 +911,27 @@ usleep_range(10, 20); - return phy_modify(phydev, MII_DP83867_PHYCTRL, + err = phy_modify(phydev, MII_DP83867_PHYCTRL, DP83867_PHYCR_FORCE_LINK_GOOD, 0); + if (err < 0) + return err; + + /* Configure the DSP Feedforward Equalizer Configuration register to + * improve short cable (< 1 meter) performance. This will not affect + * long cable performance. + */ + err = phy_write_mmd(phydev, DP83867_DEVADDR, DP83867_DSP_FFE_CFG, + 0x0e81); + if (err < 0) + return err; + + err = phy_write(phydev, DP83867_CTRL, DP83867_SW_RESTART); + if (err < 0) + return err; + + usleep_range(10, 20); + + return 0; } static void dp83867_link_change_notify(struct phy_device *phydev) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/phy/mscc/mscc.h +++ linux-6.2.0/drivers/net/phy/mscc/mscc.h @@ -179,6 +179,7 @@ #define VSC8502_RGMII_CNTL 20 #define VSC8502_RGMII_RX_DELAY_MASK 0x0070 #define VSC8502_RGMII_TX_DELAY_MASK 0x0007 +#define VSC8502_RGMII_RX_CLK_DISABLE 0x0800 #define MSCC_PHY_WOL_LOWER_MAC_ADDR 21 #define MSCC_PHY_WOL_MID_MAC_ADDR 22 only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/phy/mscc/mscc_main.c +++ linux-6.2.0/drivers/net/phy/mscc/mscc_main.c @@ -527,14 +527,27 @@ * * 2.0 ns (which causes the data to be sampled at exactly half way between * clock transitions at 1000 Mbps) if delays should be enabled */ -static int vsc85xx_rgmii_set_skews(struct phy_device *phydev, u32 rgmii_cntl, - u16 rgmii_rx_delay_mask, - u16 rgmii_tx_delay_mask) +static int vsc85xx_update_rgmii_cntl(struct phy_device *phydev, u32 rgmii_cntl, + u16 rgmii_rx_delay_mask, + u16 rgmii_tx_delay_mask) { u16 rgmii_rx_delay_pos = ffs(rgmii_rx_delay_mask) - 1; u16 rgmii_tx_delay_pos = ffs(rgmii_tx_delay_mask) - 1; u16 reg_val = 0; - int rc; + u16 mask = 0; + int rc = 0; + + /* For traffic to pass, the VSC8502 family needs the RX_CLK disable bit + * to be unset for all PHY modes, so do that as part of the paged + * register modification. + * For some family members (like VSC8530/31/40/41) this bit is reserved + * and read-only, and the RX clock is enabled by default. + */ + if (rgmii_cntl == VSC8502_RGMII_CNTL) + mask |= VSC8502_RGMII_RX_CLK_DISABLE; + + if (phy_interface_is_rgmii(phydev)) + mask |= rgmii_rx_delay_mask | rgmii_tx_delay_mask; mutex_lock(&phydev->lock); @@ -545,10 +558,9 @@ phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) reg_val |= RGMII_CLK_DELAY_2_0_NS << rgmii_tx_delay_pos; - rc = phy_modify_paged(phydev, MSCC_PHY_PAGE_EXTENDED_2, - rgmii_cntl, - rgmii_rx_delay_mask | rgmii_tx_delay_mask, - reg_val); + if (mask) + rc = phy_modify_paged(phydev, MSCC_PHY_PAGE_EXTENDED_2, + rgmii_cntl, mask, reg_val); mutex_unlock(&phydev->lock); @@ -557,19 +569,11 @@ static int vsc85xx_default_config(struct phy_device *phydev) { - int rc; - phydev->mdix_ctrl = ETH_TP_MDI_AUTO; - if (phy_interface_mode_is_rgmii(phydev->interface)) { - rc = vsc85xx_rgmii_set_skews(phydev, VSC8502_RGMII_CNTL, - VSC8502_RGMII_RX_DELAY_MASK, - VSC8502_RGMII_TX_DELAY_MASK); - if (rc) - return rc; - } - - return 0; + return vsc85xx_update_rgmii_cntl(phydev, VSC8502_RGMII_CNTL, + VSC8502_RGMII_RX_DELAY_MASK, + VSC8502_RGMII_TX_DELAY_MASK); } static int vsc85xx_get_tunable(struct phy_device *phydev, @@ -1766,13 +1770,11 @@ if (ret) return ret; - if (phy_interface_is_rgmii(phydev)) { - ret = vsc85xx_rgmii_set_skews(phydev, VSC8572_RGMII_CNTL, - VSC8572_RGMII_RX_DELAY_MASK, - VSC8572_RGMII_TX_DELAY_MASK); - if (ret) - return ret; - } + ret = vsc85xx_update_rgmii_cntl(phydev, VSC8572_RGMII_CNTL, + VSC8572_RGMII_RX_DELAY_MASK, + VSC8572_RGMII_TX_DELAY_MASK); + if (ret) + return ret; ret = genphy_soft_reset(phydev); if (ret) @@ -2664,6 +2666,7 @@ module_phy_driver(vsc85xx_driver); static struct mdio_device_id __maybe_unused vsc85xx_tbl[] = { + { PHY_ID_VSC8502, 0xfffffff0, }, { PHY_ID_VSC8504, 0xfffffff0, }, { PHY_ID_VSC8514, 0xfffffff0, }, { PHY_ID_VSC8530, 0xfffffff0, }, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/team/team.c +++ linux-6.2.0/drivers/net/team/team.c @@ -1629,6 +1629,7 @@ team->dev = dev; team_set_no_mode(team); + team->notifier_ctx = false; team->pcpu_stats = netdev_alloc_pcpu_stats(struct team_pcpu_stats); if (!team->pcpu_stats) @@ -3022,7 +3023,11 @@ team_del_slave(port->team->dev, dev); break; case NETDEV_FEAT_CHANGE: - team_compute_features(port->team); + if (!port->team->notifier_ctx) { + port->team->notifier_ctx = true; + team_compute_features(port->team); + port->team->notifier_ctx = false; + } break; case NETDEV_PRECHANGEMTU: /* Forbid to change mtu of underlaying device */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/usb/cdc_ncm.c +++ linux-6.2.0/drivers/net/usb/cdc_ncm.c @@ -181,9 +181,12 @@ else min = ctx->max_datagram_size + ctx->max_ndp_size + sizeof(struct usb_cdc_ncm_nth32); - max = min_t(u32, CDC_NCM_NTB_MAX_SIZE_TX, le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize)); - if (max == 0) + if (le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize) == 0) max = CDC_NCM_NTB_MAX_SIZE_TX; /* dwNtbOutMaxSize not set */ + else + max = clamp_t(u32, le32_to_cpu(ctx->ncm_parm.dwNtbOutMaxSize), + USB_CDC_NCM_NTB_MIN_OUT_SIZE, + CDC_NCM_NTB_MAX_SIZE_TX); /* some devices set dwNtbOutMaxSize too low for the above default */ min = min(min, max); @@ -1244,6 +1247,9 @@ * further. */ if (skb_out == NULL) { + /* If even the smallest allocation fails, abort. */ + if (ctx->tx_curr_size == USB_CDC_NCM_NTB_MIN_OUT_SIZE) + goto alloc_failed; ctx->tx_low_mem_max_cnt = min(ctx->tx_low_mem_max_cnt + 1, (unsigned)CDC_NCM_LOW_MEM_MAX_CNT); ctx->tx_low_mem_val = ctx->tx_low_mem_max_cnt; @@ -1262,13 +1268,8 @@ skb_out = alloc_skb(ctx->tx_curr_size, GFP_ATOMIC); /* No allocation possible so we will abort */ - if (skb_out == NULL) { - if (skb != NULL) { - dev_kfree_skb_any(skb); - dev->net->stats.tx_dropped++; - } - goto exit_no_skb; - } + if (!skb_out) + goto alloc_failed; ctx->tx_low_mem_val--; } if (ctx->is_ndp16) { @@ -1461,6 +1462,11 @@ return skb_out; +alloc_failed: + if (skb) { + dev_kfree_skb_any(skb); + dev->net->stats.tx_dropped++; + } exit_no_skb: /* Start timer, if there is a remaining non-empty skb */ if (ctx->tx_curr_skb != NULL && n > 0) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/usb/r8152.c +++ linux-6.2.0/drivers/net/usb/r8152.c @@ -199,6 +199,7 @@ #define OCP_EEE_AR 0xa41a #define OCP_EEE_DATA 0xa41c #define OCP_PHY_STATUS 0xa420 +#define OCP_INTR_EN 0xa424 #define OCP_NCTL_CFG 0xa42c #define OCP_POWER_CFG 0xa430 #define OCP_EEE_CFG 0xa432 @@ -620,6 +621,9 @@ #define PHY_STAT_LAN_ON 3 #define PHY_STAT_PWRDN 5 +/* OCP_INTR_EN */ +#define INTR_SPEED_FORCE BIT(3) + /* OCP_NCTL_CFG */ #define PGA_RETURN_EN BIT(1) @@ -3023,12 +3027,16 @@ ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data); switch (tp->version) { - case RTL_VER_08: - case RTL_VER_09: - case RTL_VER_14: - r8153b_rx_agg_chg_indicate(tp); + case RTL_VER_01: + case RTL_VER_02: + case RTL_VER_03: + case RTL_VER_04: + case RTL_VER_05: + case RTL_VER_06: + case RTL_VER_07: break; default: + r8153b_rx_agg_chg_indicate(tp); break; } @@ -3082,7 +3090,6 @@ 640 / 8); ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EXTRA_AGGR_TMR, ocp_data); - r8153b_rx_agg_chg_indicate(tp); break; default: @@ -3116,7 +3123,6 @@ case RTL_VER_15: ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, ocp_data / 8); - r8153b_rx_agg_chg_indicate(tp); break; default: WARN_ON_ONCE(1); @@ -5986,6 +5992,25 @@ r8153_aldps_en(tp, true); } +static u32 fc_pause_on_auto(struct r8152 *tp) +{ + return (ALIGN(mtu_to_size(tp->netdev->mtu), 1024) + 6 * 1024); +} + +static u32 fc_pause_off_auto(struct r8152 *tp) +{ + return (ALIGN(mtu_to_size(tp->netdev->mtu), 1024) + 14 * 1024); +} + +static void r8156_fc_parameter(struct r8152 *tp) +{ + u32 pause_on = tp->fc_pause_on ? tp->fc_pause_on : fc_pause_on_auto(tp); + u32 pause_off = tp->fc_pause_off ? tp->fc_pause_off : fc_pause_off_auto(tp); + + ocp_write_word(tp, MCU_TYPE_PLA, PLA_RX_FIFO_FULL, pause_on / 16); + ocp_write_word(tp, MCU_TYPE_PLA, PLA_RX_FIFO_EMPTY, pause_off / 16); +} + static int rtl8156_enable(struct r8152 *tp) { u32 ocp_data; @@ -5994,6 +6019,7 @@ if (test_bit(RTL8152_UNPLUG, &tp->flags)) return -ENODEV; + r8156_fc_parameter(tp); set_tx_qlen(tp); rtl_set_eee_plus(tp); r8153_set_rx_early_timeout(tp); @@ -6025,9 +6051,24 @@ ocp_write_word(tp, MCU_TYPE_USB, USB_L1_CTRL, ocp_data); } + ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK); + ocp_data &= ~FC_PATCH_TASK; + ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data); + usleep_range(1000, 2000); + ocp_data |= FC_PATCH_TASK; + ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data); + return rtl_enable(tp); } +static void rtl8156_disable(struct r8152 *tp) +{ + ocp_write_word(tp, MCU_TYPE_PLA, PLA_RX_FIFO_FULL, 0); + ocp_write_word(tp, MCU_TYPE_PLA, PLA_RX_FIFO_EMPTY, 0); + + rtl8153_disable(tp); +} + static int rtl8156b_enable(struct r8152 *tp) { u32 ocp_data; @@ -6429,25 +6470,6 @@ r8153b_u1u2en(tp, true); } -static inline u32 fc_pause_on_auto(struct r8152 *tp) -{ - return (ALIGN(mtu_to_size(tp->netdev->mtu), 1024) + 6 * 1024); -} - -static inline u32 fc_pause_off_auto(struct r8152 *tp) -{ - return (ALIGN(mtu_to_size(tp->netdev->mtu), 1024) + 14 * 1024); -} - -static void r8156_fc_parameter(struct r8152 *tp) -{ - u32 pause_on = tp->fc_pause_on ? tp->fc_pause_on : fc_pause_on_auto(tp); - u32 pause_off = tp->fc_pause_off ? tp->fc_pause_off : fc_pause_off_auto(tp); - - ocp_write_word(tp, MCU_TYPE_PLA, PLA_RX_FIFO_FULL, pause_on / 16); - ocp_write_word(tp, MCU_TYPE_PLA, PLA_RX_FIFO_EMPTY, pause_off / 16); -} - static void rtl8156_change_mtu(struct r8152 *tp) { u32 rx_max_size = mtu_to_size(tp->netdev->mtu); @@ -7538,6 +7560,11 @@ ((swap_a & 0x1f) << 8) | ((swap_a >> 8) & 0x1f)); } + + /* Notify the MAC when the speed is changed to force mode. */ + data = ocp_reg_read(tp, OCP_INTR_EN); + data |= INTR_SPEED_FORCE; + ocp_reg_write(tp, OCP_INTR_EN, data); break; default: break; @@ -7933,6 +7960,11 @@ break; } + /* Notify the MAC when the speed is changed to force mode. */ + data = ocp_reg_read(tp, OCP_INTR_EN); + data |= INTR_SPEED_FORCE; + ocp_reg_write(tp, OCP_INTR_EN, data); + if (rtl_phy_patch_request(tp, true, true)) return; @@ -9377,7 +9409,7 @@ case RTL_VER_10: ops->init = r8156_init; ops->enable = rtl8156_enable; - ops->disable = rtl8153_disable; + ops->disable = rtl8156_disable; ops->up = rtl8156_up; ops->down = rtl8156_down; ops->unload = rtl8153_unload; @@ -9618,6 +9650,9 @@ if (version == RTL_VER_UNKNOWN) return -ENODEV; + if (intf->cur_altsetting->desc.bInterfaceClass != USB_CLASS_VENDOR_SPEC) + return -ENODEV; + if (!rtl_vendor_mode(intf)) return -ENODEV; @@ -9814,43 +9849,35 @@ } } -#define REALTEK_USB_DEVICE(vend, prod) { \ - USB_DEVICE_INTERFACE_CLASS(vend, prod, USB_CLASS_VENDOR_SPEC), \ -}, \ -{ \ - USB_DEVICE_AND_INTERFACE_INFO(vend, prod, USB_CLASS_COMM, \ - USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE), \ -} - /* table of devices that work with this driver */ static const struct usb_device_id rtl8152_table[] = { /* Realtek */ - REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8050), - REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8053), - REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152), - REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153), - REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8155), - REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8156), + { USB_DEVICE(VENDOR_ID_REALTEK, 0x8050) }, + { USB_DEVICE(VENDOR_ID_REALTEK, 0x8053) }, + { USB_DEVICE(VENDOR_ID_REALTEK, 0x8152) }, + { USB_DEVICE(VENDOR_ID_REALTEK, 0x8153) }, + { USB_DEVICE(VENDOR_ID_REALTEK, 0x8155) }, + { USB_DEVICE(VENDOR_ID_REALTEK, 0x8156) }, /* Microsoft */ - REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07ab), - REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07c6), - REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927), - REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0c5e), - REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3054), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3062), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3069), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3082), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7205), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x720c), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7214), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x721e), - REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0xa387), - REALTEK_USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041), - REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff), - REALTEK_USB_DEVICE(VENDOR_ID_TPLINK, 0x0601), + { USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07ab) }, + { USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07c6) }, + { USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927) }, + { USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0c5e) }, + { USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x304f) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x3054) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x3062) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x3069) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x3082) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x7205) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x720c) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x7214) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0x721e) }, + { USB_DEVICE(VENDOR_ID_LENOVO, 0xa387) }, + { USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041) }, + { USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) }, + { USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) }, {} }; @@ -9870,7 +9897,61 @@ .disable_hub_initiated_lpm = 1, }; -module_usb_driver(rtl8152_driver); +static int rtl8152_cfgselector_probe(struct usb_device *udev) +{ + struct usb_host_config *c; + int i, num_configs; + + /* The vendor mode is not always config #1, so to find it out. */ + c = udev->config; + num_configs = udev->descriptor.bNumConfigurations; + for (i = 0; i < num_configs; (i++, c++)) { + struct usb_interface_descriptor *desc = NULL; + + if (!c->desc.bNumInterfaces) + continue; + desc = &c->intf_cache[0]->altsetting->desc; + if (desc->bInterfaceClass == USB_CLASS_VENDOR_SPEC) + break; + } + + if (i == num_configs) + return -ENODEV; + + if (usb_set_configuration(udev, c->desc.bConfigurationValue)) { + dev_err(&udev->dev, "Failed to set configuration %d\n", + c->desc.bConfigurationValue); + return -ENODEV; + } + + return 0; +} + +static struct usb_device_driver rtl8152_cfgselector_driver = { + .name = MODULENAME "-cfgselector", + .probe = rtl8152_cfgselector_probe, + .id_table = rtl8152_table, + .generic_subclass = 1, +}; + +static int __init rtl8152_driver_init(void) +{ + int ret; + + ret = usb_register_device_driver(&rtl8152_cfgselector_driver, THIS_MODULE); + if (ret) + return ret; + return usb_register(&rtl8152_driver); +} + +static void __exit rtl8152_driver_exit(void) +{ + usb_deregister(&rtl8152_driver); + usb_deregister_device_driver(&rtl8152_cfgselector_driver); +} + +module_init(rtl8152_driver_init); +module_exit(rtl8152_driver_exit); MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/ath/ath.h +++ linux-6.2.0/drivers/net/wireless/ath/ath.h @@ -96,11 +96,13 @@ u8 kv_type; u8 kv_pad; u16 kv_len; - u8 kv_val[16]; /* TK */ - u8 kv_mic[8]; /* Michael MIC key */ - u8 kv_txmic[8]; /* Michael MIC TX key (used only if the hardware - * supports both MIC keys in the same key cache entry; - * in that case, kv_mic is the RX key) */ + struct_group(kv_values, + u8 kv_val[16]; /* TK */ + u8 kv_mic[8]; /* Michael MIC key */ + u8 kv_txmic[8]; /* Michael MIC TX key (used only if the hardware + * supports both MIC keys in the same key cache entry; + * in that case, kv_mic is the RX key) */ + ); }; enum ath_cipher { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/ath/ath11k/dp.c +++ linux-6.2.0/drivers/net/wireless/ath/ath11k/dp.c @@ -36,6 +36,7 @@ } ath11k_peer_rx_tid_cleanup(ar, peer); + peer->dp_setup_done = false; crypto_free_shash(peer->tfm_mmic); spin_unlock_bh(&ab->base_lock); } @@ -72,7 +73,8 @@ ret = ath11k_peer_rx_frag_setup(ar, addr, vdev_id); if (ret) { ath11k_warn(ab, "failed to setup rx defrag context\n"); - return ret; + tid--; + goto peer_clean; } /* TODO: Setup other peer specific resource used in data path */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/ath/ath11k/peer.h +++ linux-6.2.0/drivers/net/wireless/ath/ath11k/peer.h @@ -35,6 +35,7 @@ u16 sec_type; u16 sec_type_grp; bool is_authorized; + bool dp_setup_done; }; void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/ath/key.c +++ linux-6.2.0/drivers/net/wireless/ath/key.c @@ -503,7 +503,7 @@ hk.kv_len = key->keylen; if (key->keylen) - memcpy(hk.kv_val, key->key, key->keylen); + memcpy(&hk.kv_values, key->key, key->keylen); if (!(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { switch (vif->type) { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c +++ linux-6.2.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c @@ -1331,6 +1331,9 @@ brcmf_usb_detach(devinfo); } +/* Forward declaration for usb_match_id() call */ +static const struct usb_device_id brcmf_usb_devid_table[]; + static int brcmf_usb_probe(struct usb_interface *intf, const struct usb_device_id *id) { @@ -1342,6 +1345,14 @@ u32 num_of_eps; u8 endpoint_num, ep; + if (!id) { + id = usb_match_id(intf, brcmf_usb_devid_table); + if (!id) { + dev_err(&intf->dev, "Error could not find matching usb_device_id\n"); + return -ENODEV; + } + } + brcmf_dbg(USB, "Enter 0x%04x:0x%04x\n", id->idVendor, id->idProduct); devinfo = kzalloc(sizeof(*devinfo), GFP_ATOMIC); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/intel/iwlwifi/dvm/sta.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/dvm/sta.c @@ -1081,6 +1081,7 @@ { __le16 key_flags; struct iwl_addsta_cmd sta_cmd; + size_t to_copy; int i; spin_lock_bh(&priv->sta_lock); @@ -1100,7 +1101,9 @@ sta_cmd.key.tkip_rx_tsc_byte2 = tkip_iv32; for (i = 0; i < 5; i++) sta_cmd.key.tkip_rx_ttak[i] = cpu_to_le16(tkip_p1k[i]); - memcpy(sta_cmd.key.key, keyconf->key, keyconf->keylen); + /* keyconf may contain MIC rx/tx keys which iwl does not use */ + to_copy = min_t(size_t, sizeof(sta_cmd.key.key), keyconf->keylen); + memcpy(sta_cmd.key.key, keyconf->key, to_copy); break; case WLAN_CIPHER_SUITE_WEP104: key_flags |= STA_KEY_FLG_KEY_SIZE_MSK; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/intel/iwlwifi/fw/acpi.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/fw/acpi.c @@ -38,7 +38,7 @@ }, { .ident = "ASUS", .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "ASUSTek COMPUTER INC."), + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), }, }, {} only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/intel/iwlwifi/fw/api/d3.h +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/fw/api/d3.h @@ -767,7 +767,7 @@ } __packed; /* WOWLAN_STATUSES_RSP_API_S_VER_12 */ /** - * struct iwl_wowlan_info_notif - WoWLAN information notification + * struct iwl_wowlan_info_notif_v1 - WoWLAN information notification * @gtk: GTK data * @igtk: IGTK data * @replay_ctr: GTK rekey replay counter @@ -785,7 +785,7 @@ * @station_id: station id * @reserved2: reserved */ -struct iwl_wowlan_info_notif { +struct iwl_wowlan_info_notif_v1 { struct iwl_wowlan_gtk_status_v3 gtk[WOWLAN_GTK_KEYS_NUM]; struct iwl_wowlan_igtk_status igtk[WOWLAN_IGTK_KEYS_NUM]; __le64 replay_ctr; @@ -804,6 +804,39 @@ } __packed; /* WOWLAN_INFO_NTFY_API_S_VER_1 */ /** + * struct iwl_wowlan_info_notif - WoWLAN information notification + * @gtk: GTK data + * @igtk: IGTK data + * @replay_ctr: GTK rekey replay counter + * @pattern_number: number of the matched patterns + * @reserved1: reserved + * @qos_seq_ctr: QoS sequence counters to use next + * @wakeup_reasons: wakeup reasons, see &enum iwl_wowlan_wakeup_reason + * @num_of_gtk_rekeys: number of GTK rekeys + * @transmitted_ndps: number of transmitted neighbor discovery packets + * @received_beacons: number of received beacons + * @tid_tear_down: bit mask of tids whose BA sessions were closed + * in suspend state + * @station_id: station id + * @reserved2: reserved + */ +struct iwl_wowlan_info_notif { + struct iwl_wowlan_gtk_status_v3 gtk[WOWLAN_GTK_KEYS_NUM]; + struct iwl_wowlan_igtk_status igtk[WOWLAN_IGTK_KEYS_NUM]; + __le64 replay_ctr; + __le16 pattern_number; + __le16 reserved1; + __le16 qos_seq_ctr[8]; + __le32 wakeup_reasons; + __le32 num_of_gtk_rekeys; + __le32 transmitted_ndps; + __le32 received_beacons; + u8 tid_tear_down; + u8 station_id; + u8 reserved2[2]; +} __packed; /* WOWLAN_INFO_NTFY_API_S_VER_2 */ + +/** * struct iwl_wowlan_wake_pkt_notif - WoWLAN wake packet notification * @wake_packet_length: wakeup packet length * @station_id: station id only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/fw.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c @@ -1076,7 +1076,7 @@ }, { .ident = "LENOVO", .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "Lenovo"), + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), }, }, { .ident = "DELL", only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/nvm.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/nvm.c @@ -445,6 +445,11 @@ struct iwl_mcc_update_resp *mcc_resp = (void *)pkt->data; n_channels = __le32_to_cpu(mcc_resp->n_channels); + if (iwl_rx_packet_payload_len(pkt) != + struct_size(mcc_resp, channels, n_channels)) { + resp_cp = ERR_PTR(-EINVAL); + goto exit; + } resp_len = sizeof(struct iwl_mcc_update_resp) + n_channels * sizeof(__le32); resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL); @@ -456,6 +461,11 @@ struct iwl_mcc_update_resp_v3 *mcc_resp_v3 = (void *)pkt->data; n_channels = __le32_to_cpu(mcc_resp_v3->n_channels); + if (iwl_rx_packet_payload_len(pkt) != + struct_size(mcc_resp_v3, channels, n_channels)) { + resp_cp = ERR_PTR(-EINVAL); + goto exit; + } resp_len = sizeof(struct iwl_mcc_update_resp) + n_channels * sizeof(__le32); resp_cp = kzalloc(resp_len, GFP_KERNEL); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/tx.c +++ linux-6.2.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c @@ -791,10 +791,11 @@ struct ieee80211_sta *sta, unsigned int tid) { struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); - enum nl80211_band band = mvmsta->vif->bss_conf.chandef.chan->band; u8 ac = tid_to_mac80211_ac[tid]; + enum nl80211_band band; unsigned int txf; - int lmac = iwl_mvm_get_lmac_id(mvm->fw, band); + unsigned int val; + int lmac; /* For HE redirect to trigger based fifos */ if (sta->deflink.he_cap.has_he && !WARN_ON(!iwl_mvm_has_new_tx_api(mvm))) @@ -808,7 +809,37 @@ * We also want to have the start of the next packet inside the * fifo to be able to send bursts. */ - return min_t(unsigned int, mvmsta->max_amsdu_len, + val = mvmsta->max_amsdu_len; + + if (hweight16(sta->valid_links) <= 1) { + if (sta->valid_links) { + struct ieee80211_bss_conf *link_conf; + unsigned int link = ffs(sta->valid_links) - 1; + + rcu_read_lock(); + link_conf = rcu_dereference(mvmsta->vif->link_conf[link]); + if (WARN_ON(!link_conf)) + band = NL80211_BAND_2GHZ; + else + band = link_conf->chandef.chan->band; + rcu_read_unlock(); + } else { + band = mvmsta->vif->bss_conf.chandef.chan->band; + } + + lmac = iwl_mvm_get_lmac_id(mvm->fw, band); + } else if (fw_has_capa(&mvm->fw->ucode_capa, + IWL_UCODE_TLV_CAPA_CDB_SUPPORT)) { + /* for real MLO restrict to both LMACs if they exist */ + lmac = IWL_LMAC_5G_INDEX; + val = min_t(unsigned int, val, + mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); + lmac = IWL_LMAC_24G_INDEX; + } else { + lmac = IWL_LMAC_24G_INDEX; + } + + return min_t(unsigned int, val, mvm->fwrt.smem_cfg.lmac[lmac].txfifo_size[txf] - 256); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/mediatek/mt76/mt76_connac2_mac.h +++ linux-6.2.0/drivers/net/wireless/mediatek/mt76/mt76_connac2_mac.h @@ -163,7 +163,7 @@ #define MT_TXS5_MPDU_TX_CNT GENMASK(31, 23) #define MT_TXS6_MPDU_FAIL_CNT GENMASK(31, 23) - +#define MT_TXS7_MPDU_RETRY_BYTE GENMASK(22, 0) #define MT_TXS7_MPDU_RETRY_CNT GENMASK(31, 23) /* RXD DW1 */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/realtek/rtw88/usb.h +++ linux-6.2.0/drivers/net/wireless/realtek/rtw88/usb.h @@ -78,7 +78,7 @@ u8 pipe_interrupt; u8 pipe_in; u8 out_ep[RTW_USB_EP_MAX]; - u8 qsel_to_ep[TX_DESC_QSEL_MAX]; + int qsel_to_ep[TX_DESC_QSEL_MAX]; u8 usb_txagg_num; struct workqueue_struct *txwq, *rxwq; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wireless/realtek/rtw89/mac.h +++ linux-6.2.0/drivers/net/wireless/realtek/rtw89/mac.h @@ -789,6 +789,7 @@ const struct rtw89_dle_size wde_size0; const struct rtw89_dle_size wde_size4; const struct rtw89_dle_size wde_size6; + const struct rtw89_dle_size wde_size7; const struct rtw89_dle_size wde_size9; const struct rtw89_dle_size wde_size18; const struct rtw89_dle_size wde_size19; @@ -801,6 +802,7 @@ const struct rtw89_wde_quota wde_qt0; const struct rtw89_wde_quota wde_qt4; const struct rtw89_wde_quota wde_qt6; + const struct rtw89_wde_quota wde_qt7; const struct rtw89_wde_quota wde_qt17; const struct rtw89_wde_quota wde_qt18; const struct rtw89_ple_quota ple_qt4; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wwan/iosm/iosm_ipc_imem_ops.c +++ linux-6.2.0/drivers/net/wwan/iosm/iosm_ipc_imem_ops.c @@ -77,8 +77,8 @@ } /* Initialize wwan channel */ -void ipc_imem_wwan_channel_init(struct iosm_imem *ipc_imem, - enum ipc_mux_protocol mux_type) +int ipc_imem_wwan_channel_init(struct iosm_imem *ipc_imem, + enum ipc_mux_protocol mux_type) { struct ipc_chnl_cfg chnl_cfg = { 0 }; @@ -87,7 +87,7 @@ /* If modem version is invalid (0xffffffff), do not initialize WWAN. */ if (ipc_imem->cp_version == -1) { dev_err(ipc_imem->dev, "invalid CP version"); - return; + return -EIO; } ipc_chnl_cfg_get(&chnl_cfg, ipc_imem->nr_of_channels); @@ -104,9 +104,13 @@ /* WWAN registration. */ ipc_imem->wwan = ipc_wwan_init(ipc_imem, ipc_imem->dev); - if (!ipc_imem->wwan) + if (!ipc_imem->wwan) { dev_err(ipc_imem->dev, "failed to register the ipc_wwan interfaces"); + return -ENOMEM; + } + + return 0; } /* Map SKB to DMA for transfer */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/net/wwan/iosm/iosm_ipc_imem_ops.h +++ linux-6.2.0/drivers/net/wwan/iosm/iosm_ipc_imem_ops.h @@ -91,9 +91,11 @@ * MUX. * @ipc_imem: Pointer to iosm_imem struct. * @mux_type: Type of mux protocol. + * + * Return: 0 on success and failure value on error */ -void ipc_imem_wwan_channel_init(struct iosm_imem *ipc_imem, - enum ipc_mux_protocol mux_type); +int ipc_imem_wwan_channel_init(struct iosm_imem *ipc_imem, + enum ipc_mux_protocol mux_type); /** * ipc_imem_sys_devlink_open - Open a Flash/CD Channel link to CP only in patch2: unchanged: --- linux-6.2.0.orig/drivers/parisc/power.c +++ linux-6.2.0/drivers/parisc/power.c @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #include @@ -175,16 +174,21 @@ -/* parisc_panic_event() is called by the panic handler. - * As soon as a panic occurs, our tasklets above will not be - * executed any longer. This function then re-enables the - * soft-power switch and allows the user to switch off the system +/* + * parisc_panic_event() is called by the panic handler. + * + * As soon as a panic occurs, our tasklets above will not + * be executed any longer. This function then re-enables + * the soft-power switch and allows the user to switch off + * the system. We rely in pdc_soft_power_button_panic() + * since this version spin_trylocks (instead of regular + * spinlock), preventing deadlocks on panic path. */ static int parisc_panic_event(struct notifier_block *this, unsigned long event, void *ptr) { /* re-enable the soft-power switch */ - pdc_soft_power_button(0); + pdc_soft_power_button_panic(0); return NOTIFY_DONE; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/phy/st/phy-miphy28lp.c +++ linux-6.2.0/drivers/phy/st/phy-miphy28lp.c @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -484,19 +485,11 @@ static inline int miphy28lp_wait_compensation(struct miphy28lp_phy *miphy_phy) { - unsigned long finish = jiffies + 5 * HZ; u8 val; /* Waiting for Compensation to complete */ - do { - val = readb_relaxed(miphy_phy->base + MIPHY_COMP_FSM_6); - - if (time_after_eq(jiffies, finish)) - return -EBUSY; - cpu_relax(); - } while (!(val & COMP_DONE)); - - return 0; + return readb_relaxed_poll_timeout(miphy_phy->base + MIPHY_COMP_FSM_6, + val, val & COMP_DONE, 1, 5 * USEC_PER_SEC); } @@ -805,7 +798,6 @@ static inline int miphy_is_ready(struct miphy28lp_phy *miphy_phy) { - unsigned long finish = jiffies + 5 * HZ; u8 mask = HFC_PLL | HFC_RDY; u8 val; @@ -816,21 +808,14 @@ if (miphy_phy->type == PHY_TYPE_SATA) mask |= PHY_RDY; - do { - val = readb_relaxed(miphy_phy->base + MIPHY_STATUS_1); - if ((val & mask) != mask) - cpu_relax(); - else - return 0; - } while (!time_after_eq(jiffies, finish)); - - return -EBUSY; + return readb_relaxed_poll_timeout(miphy_phy->base + MIPHY_STATUS_1, + val, (val & mask) == mask, 1, + 5 * USEC_PER_SEC); } static int miphy_osc_is_ready(struct miphy28lp_phy *miphy_phy) { struct miphy28lp_dev *miphy_dev = miphy_phy->phydev; - unsigned long finish = jiffies + 5 * HZ; u32 val; if (!miphy_phy->osc_rdy) @@ -839,17 +824,10 @@ if (!miphy_phy->syscfg_reg[SYSCFG_STATUS]) return -EINVAL; - do { - regmap_read(miphy_dev->regmap, - miphy_phy->syscfg_reg[SYSCFG_STATUS], &val); - - if ((val & MIPHY_OSC_RDY) != MIPHY_OSC_RDY) - cpu_relax(); - else - return 0; - } while (!time_after_eq(jiffies, finish)); - - return -EBUSY; + return regmap_read_poll_timeout(miphy_dev->regmap, + miphy_phy->syscfg_reg[SYSCFG_STATUS], + val, val & MIPHY_OSC_RDY, 1, + 5 * USEC_PER_SEC); } static int miphy28lp_get_resource_byname(struct device_node *child, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/mellanox/mlxbf-pmc.c +++ linux-6.2.0/drivers/platform/mellanox/mlxbf-pmc.c @@ -1348,9 +1348,8 @@ for (i = 0; i < pmc->total_blocks; ++i) { if (strstr(pmc->block_name[i], "tile")) { - ret = sscanf(pmc->block_name[i], "tile%d", &tile_num); - if (ret < 0) - return ret; + if (sscanf(pmc->block_name[i], "tile%d", &tile_num) != 1) + return -EINVAL; if (tile_num >= pmc->tile_count) continue; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/x86/hp/hp-wmi.c +++ linux-6.2.0/drivers/platform/x86/hp/hp-wmi.c @@ -211,6 +211,7 @@ static const struct key_entry hp_wmi_keymap[] = { { KE_KEY, 0x02, { KEY_BRIGHTNESSUP } }, { KE_KEY, 0x03, { KEY_BRIGHTNESSDOWN } }, + { KE_KEY, 0x270, { KEY_MICMUTE } }, { KE_KEY, 0x20e6, { KEY_PROG1 } }, { KE_KEY, 0x20e8, { KEY_MEDIA } }, { KE_KEY, 0x2142, { KEY_MEDIA } }, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/x86/intel/ifs/load.c +++ linux-6.2.0/drivers/platform/x86/intel/ifs/load.c @@ -208,7 +208,7 @@ continue; reinit_completion(&ifs_done); local_work.dev = dev; - INIT_WORK(&local_work.w, copy_hashes_authenticate_chunks); + INIT_WORK_ONSTACK(&local_work.w, copy_hashes_authenticate_chunks); schedule_work_on(cpu, &local_work.w); wait_for_completion(&ifs_done); if (ifsd->loading_error) { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/x86/intel/speed_select_if/isst_if_common.c +++ linux-6.2.0/drivers/platform/x86/intel/speed_select_if/isst_if_common.c @@ -294,14 +294,13 @@ static struct isst_if_cpu_info *isst_cpu_info; static struct isst_if_pkg_info *isst_pkg_info; -#define ISST_MAX_PCI_DOMAINS 8 - static struct pci_dev *_isst_if_get_pci_dev(int cpu, int bus_no, int dev, int fn) { struct pci_dev *matched_pci_dev = NULL; struct pci_dev *pci_dev = NULL; + struct pci_dev *_pci_dev = NULL; int no_matches = 0, pkg_id; - int i, bus_number; + int bus_number; if (bus_no < 0 || bus_no >= ISST_MAX_BUS_NUMBER || cpu < 0 || cpu >= nr_cpu_ids || cpu >= num_possible_cpus()) @@ -313,12 +312,11 @@ if (bus_number < 0) return NULL; - for (i = 0; i < ISST_MAX_PCI_DOMAINS; ++i) { - struct pci_dev *_pci_dev; + for_each_pci_dev(_pci_dev) { int node; - _pci_dev = pci_get_domain_bus_and_slot(i, bus_number, PCI_DEVFN(dev, fn)); - if (!_pci_dev) + if (_pci_dev->bus->number != bus_number || + _pci_dev->devfn != PCI_DEVFN(dev, fn)) continue; ++no_matches; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/x86/intel/uncore-frequency/uncore-frequency-common.c +++ linux-6.2.0/drivers/platform/x86/intel/uncore-frequency/uncore-frequency-common.c @@ -44,14 +44,18 @@ int min_max) { unsigned int input; + int ret; if (kstrtouint(buf, 10, &input)) return -EINVAL; mutex_lock(&uncore_lock); - uncore_write(data, input, min_max); + ret = uncore_write(data, input, min_max); mutex_unlock(&uncore_lock); + if (ret) + return ret; + return count; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/x86/touchscreen_dmi.c +++ linux-6.2.0/drivers/platform/x86/touchscreen_dmi.c @@ -336,6 +336,22 @@ .properties = dexp_ursus_7w_props, }; +static const struct property_entry dexp_ursus_kx210i_props[] = { + PROPERTY_ENTRY_U32("touchscreen-min-x", 5), + PROPERTY_ENTRY_U32("touchscreen-min-y", 2), + PROPERTY_ENTRY_U32("touchscreen-size-x", 1720), + PROPERTY_ENTRY_U32("touchscreen-size-y", 1137), + PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-dexp-ursus-kx210i.fw"), + PROPERTY_ENTRY_U32("silead,max-fingers", 10), + PROPERTY_ENTRY_BOOL("silead,home-button"), + { } +}; + +static const struct ts_dmi_data dexp_ursus_kx210i_data = { + .acpi_name = "MSSL1680:00", + .properties = dexp_ursus_kx210i_props, +}; + static const struct property_entry digma_citi_e200_props[] = { PROPERTY_ENTRY_U32("touchscreen-size-x", 1980), PROPERTY_ENTRY_U32("touchscreen-size-y", 1500), @@ -378,6 +394,11 @@ .properties = gdix1001_upside_down_props, }; +static const struct ts_dmi_data gdix1002_00_upside_down_data = { + .acpi_name = "GDIX1002:00", + .properties = gdix1001_upside_down_props, +}; + static const struct property_entry gp_electronic_t701_props[] = { PROPERTY_ENTRY_U32("touchscreen-size-x", 960), PROPERTY_ENTRY_U32("touchscreen-size-y", 640), @@ -1186,6 +1207,14 @@ }, }, { + /* DEXP Ursus KX210i */ + .driver_data = (void *)&dexp_ursus_kx210i_data, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "INSYDE Corp."), + DMI_MATCH(DMI_PRODUCT_NAME, "S107I"), + }, + }, + { /* Digma Citi E200 */ .driver_data = (void *)&digma_citi_e200_data, .matches = { @@ -1296,6 +1325,18 @@ }, }, { + /* Juno Tablet */ + .driver_data = (void *)&gdix1002_00_upside_down_data, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Default string"), + /* Both product- and board-name being "Default string" is somewhat rare */ + DMI_MATCH(DMI_PRODUCT_NAME, "Default string"), + DMI_MATCH(DMI_BOARD_NAME, "Default string"), + /* Above matches are too generic, add partial bios-version match */ + DMI_MATCH(DMI_BIOS_VERSION, "JP2V1."), + }, + }, + { /* Mediacom WinPad 7.0 W700 (same hw as Wintron surftab 7") */ .driver_data = (void *)&trekstor_surftab_wintron70_data, .matches = { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/platform/x86/x86-android-tablets.c +++ linux-6.2.0/drivers/platform/x86/x86-android-tablets.c @@ -265,6 +265,88 @@ }, }; +static struct gpiod_lookup_table int3496_reference_gpios = { + .dev_id = "intel-int3496", + .table = { + GPIO_LOOKUP("INT33FC:01", 15, "vbus", GPIO_ACTIVE_HIGH), + GPIO_LOOKUP("INT33FC:02", 1, "mux", GPIO_ACTIVE_HIGH), + GPIO_LOOKUP("INT33FC:02", 18, "id", GPIO_ACTIVE_HIGH), + { } + }, +}; + +/* Acer Iconia One 7 B1-750 has an Android factory img with everything hardcoded */ +static const char * const acer_b1_750_mount_matrix[] = { + "-1", "0", "0", + "0", "1", "0", + "0", "0", "1" +}; + +static const struct property_entry acer_b1_750_bma250e_props[] = { + PROPERTY_ENTRY_STRING_ARRAY("mount-matrix", acer_b1_750_mount_matrix), + { } +}; + +static const struct software_node acer_b1_750_bma250e_node = { + .properties = acer_b1_750_bma250e_props, +}; + +static const struct x86_i2c_client_info acer_b1_750_i2c_clients[] __initconst = { + { + /* Novatek NVT-ts touchscreen */ + .board_info = { + .type = "NVT-ts", + .addr = 0x34, + .dev_name = "NVT-ts", + }, + .adapter_path = "\\_SB_.I2C4", + .irq_data = { + .type = X86_ACPI_IRQ_TYPE_GPIOINT, + .chip = "INT33FC:02", + .index = 3, + .trigger = ACPI_EDGE_SENSITIVE, + .polarity = ACPI_ACTIVE_LOW, + }, + }, { + /* BMA250E accelerometer */ + .board_info = { + .type = "bma250e", + .addr = 0x18, + .swnode = &acer_b1_750_bma250e_node, + }, + .adapter_path = "\\_SB_.I2C3", + .irq_data = { + .type = X86_ACPI_IRQ_TYPE_GPIOINT, + .chip = "INT33FC:02", + .index = 25, + .trigger = ACPI_LEVEL_SENSITIVE, + .polarity = ACPI_ACTIVE_HIGH, + }, + }, +}; + +static struct gpiod_lookup_table acer_b1_750_goodix_gpios = { + .dev_id = "i2c-NVT-ts", + .table = { + GPIO_LOOKUP("INT33FC:01", 26, "reset", GPIO_ACTIVE_LOW), + { } + }, +}; + +static struct gpiod_lookup_table * const acer_b1_750_gpios[] = { + &acer_b1_750_goodix_gpios, + &int3496_reference_gpios, + NULL +}; + +static const struct x86_dev_info acer_b1_750_info __initconst = { + .i2c_client_info = acer_b1_750_i2c_clients, + .i2c_client_count = ARRAY_SIZE(acer_b1_750_i2c_clients), + .pdev_info = int3496_pdevs, + .pdev_count = ARRAY_SIZE(int3496_pdevs), + .gpiod_lookup_tables = acer_b1_750_gpios, +}; + /* * Advantech MICA-071 * This is a standard Windows tablet, but it has an extra "quick launch" button @@ -1298,17 +1380,8 @@ }, }; -static struct gpiod_lookup_table nextbook_ares8_int3496_gpios = { - .dev_id = "intel-int3496", - .table = { - GPIO_LOOKUP("INT33FC:02", 1, "mux", GPIO_ACTIVE_HIGH), - GPIO_LOOKUP("INT33FC:02", 18, "id", GPIO_ACTIVE_HIGH), - { } - }, -}; - static struct gpiod_lookup_table * const nextbook_ares8_gpios[] = { - &nextbook_ares8_int3496_gpios, + &int3496_reference_gpios, NULL }; @@ -1436,6 +1509,14 @@ static const struct dmi_system_id x86_android_tablet_ids[] __initconst = { { + /* Acer Iconia One 7 B1-750 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Insyde"), + DMI_MATCH(DMI_PRODUCT_NAME, "VESPA2"), + }, + .driver_data = (void *)&acer_b1_750_info, + }, + { /* Advantech MICA-071 */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Advantech"), only in patch2: unchanged: --- linux-6.2.0.orig/drivers/power/supply/bq25890_charger.c +++ linux-6.2.0/drivers/power/supply/bq25890_charger.c @@ -710,7 +710,7 @@ if (bq->chip_version != BQ25892) return; - ret = power_supply_get_property_from_supplier(bq->charger, + ret = power_supply_get_property_from_supplier(psy, POWER_SUPPLY_PROP_USB_TYPE, &val); if (ret) @@ -735,6 +735,7 @@ } bq25890_field_write(bq, F_IINLIM, input_current_limit); + power_supply_changed(psy); } static int bq25890_get_chip_state(struct bq25890_device *bq, @@ -1034,6 +1035,8 @@ dev_info(bq->dev, "Hi-voltage charging requested, input voltage is %d mV\n", voltage); + power_supply_changed(bq->charger); + return; error_print: bq25890_field_write(bq, F_PUMPX_EN, 0); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/power/supply/bq27xxx_battery.c +++ linux-6.2.0/drivers/power/supply/bq27xxx_battery.c @@ -1761,60 +1761,6 @@ return POWER_SUPPLY_HEALTH_GOOD; } -void bq27xxx_battery_update(struct bq27xxx_device_info *di) -{ - struct bq27xxx_reg_cache cache = {0, }; - bool has_singe_flag = di->opts & BQ27XXX_O_ZERO; - - cache.flags = bq27xxx_read(di, BQ27XXX_REG_FLAGS, has_singe_flag); - if ((cache.flags & 0xff) == 0xff) - cache.flags = -1; /* read error */ - if (cache.flags >= 0) { - cache.temperature = bq27xxx_battery_read_temperature(di); - if (di->regs[BQ27XXX_REG_TTE] != INVALID_REG_ADDR) - cache.time_to_empty = bq27xxx_battery_read_time(di, BQ27XXX_REG_TTE); - if (di->regs[BQ27XXX_REG_TTECP] != INVALID_REG_ADDR) - cache.time_to_empty_avg = bq27xxx_battery_read_time(di, BQ27XXX_REG_TTECP); - if (di->regs[BQ27XXX_REG_TTF] != INVALID_REG_ADDR) - cache.time_to_full = bq27xxx_battery_read_time(di, BQ27XXX_REG_TTF); - - cache.charge_full = bq27xxx_battery_read_fcc(di); - cache.capacity = bq27xxx_battery_read_soc(di); - if (di->regs[BQ27XXX_REG_AE] != INVALID_REG_ADDR) - cache.energy = bq27xxx_battery_read_energy(di); - di->cache.flags = cache.flags; - cache.health = bq27xxx_battery_read_health(di); - if (di->regs[BQ27XXX_REG_CYCT] != INVALID_REG_ADDR) - cache.cycle_count = bq27xxx_battery_read_cyct(di); - - /* We only have to read charge design full once */ - if (di->charge_design_full <= 0) - di->charge_design_full = bq27xxx_battery_read_dcap(di); - } - - if ((di->cache.capacity != cache.capacity) || - (di->cache.flags != cache.flags)) - power_supply_changed(di->bat); - - if (memcmp(&di->cache, &cache, sizeof(cache)) != 0) - di->cache = cache; - - di->last_update = jiffies; -} -EXPORT_SYMBOL_GPL(bq27xxx_battery_update); - -static void bq27xxx_battery_poll(struct work_struct *work) -{ - struct bq27xxx_device_info *di = - container_of(work, struct bq27xxx_device_info, - work.work); - - bq27xxx_battery_update(di); - - if (poll_interval > 0) - schedule_delayed_work(&di->work, poll_interval * HZ); -} - static bool bq27xxx_battery_is_full(struct bq27xxx_device_info *di, int flags) { if (di->opts & BQ27XXX_O_ZERO) @@ -1833,7 +1779,8 @@ static int bq27xxx_battery_current_and_status( struct bq27xxx_device_info *di, union power_supply_propval *val_curr, - union power_supply_propval *val_status) + union power_supply_propval *val_status, + struct bq27xxx_reg_cache *cache) { bool single_flags = (di->opts & BQ27XXX_O_ZERO); int curr; @@ -1845,10 +1792,14 @@ return curr; } - flags = bq27xxx_read(di, BQ27XXX_REG_FLAGS, single_flags); - if (flags < 0) { - dev_err(di->dev, "error reading flags\n"); - return flags; + if (cache) { + flags = cache->flags; + } else { + flags = bq27xxx_read(di, BQ27XXX_REG_FLAGS, single_flags); + if (flags < 0) { + dev_err(di->dev, "error reading flags\n"); + return flags; + } } if (di->opts & BQ27XXX_O_ZERO) { @@ -1883,6 +1834,78 @@ return 0; } +static void bq27xxx_battery_update_unlocked(struct bq27xxx_device_info *di) +{ + union power_supply_propval status = di->last_status; + struct bq27xxx_reg_cache cache = {0, }; + bool has_singe_flag = di->opts & BQ27XXX_O_ZERO; + + cache.flags = bq27xxx_read(di, BQ27XXX_REG_FLAGS, has_singe_flag); + if ((cache.flags & 0xff) == 0xff) + cache.flags = -1; /* read error */ + if (cache.flags >= 0) { + cache.temperature = bq27xxx_battery_read_temperature(di); + if (di->regs[BQ27XXX_REG_TTE] != INVALID_REG_ADDR) + cache.time_to_empty = bq27xxx_battery_read_time(di, BQ27XXX_REG_TTE); + if (di->regs[BQ27XXX_REG_TTECP] != INVALID_REG_ADDR) + cache.time_to_empty_avg = bq27xxx_battery_read_time(di, BQ27XXX_REG_TTECP); + if (di->regs[BQ27XXX_REG_TTF] != INVALID_REG_ADDR) + cache.time_to_full = bq27xxx_battery_read_time(di, BQ27XXX_REG_TTF); + + cache.charge_full = bq27xxx_battery_read_fcc(di); + cache.capacity = bq27xxx_battery_read_soc(di); + if (di->regs[BQ27XXX_REG_AE] != INVALID_REG_ADDR) + cache.energy = bq27xxx_battery_read_energy(di); + di->cache.flags = cache.flags; + cache.health = bq27xxx_battery_read_health(di); + if (di->regs[BQ27XXX_REG_CYCT] != INVALID_REG_ADDR) + cache.cycle_count = bq27xxx_battery_read_cyct(di); + + /* + * On gauges with signed current reporting the current must be + * checked to detect charging <-> discharging status changes. + */ + if (!(di->opts & BQ27XXX_O_ZERO)) + bq27xxx_battery_current_and_status(di, NULL, &status, &cache); + + /* We only have to read charge design full once */ + if (di->charge_design_full <= 0) + di->charge_design_full = bq27xxx_battery_read_dcap(di); + } + + if ((di->cache.capacity != cache.capacity) || + (di->cache.flags != cache.flags) || + (di->last_status.intval != status.intval)) { + di->last_status.intval = status.intval; + power_supply_changed(di->bat); + } + + if (memcmp(&di->cache, &cache, sizeof(cache)) != 0) + di->cache = cache; + + di->last_update = jiffies; + + if (!di->removed && poll_interval > 0) + mod_delayed_work(system_wq, &di->work, poll_interval * HZ); +} + +void bq27xxx_battery_update(struct bq27xxx_device_info *di) +{ + mutex_lock(&di->lock); + bq27xxx_battery_update_unlocked(di); + mutex_unlock(&di->lock); +} +EXPORT_SYMBOL_GPL(bq27xxx_battery_update); + +static void bq27xxx_battery_poll(struct work_struct *work) +{ + struct bq27xxx_device_info *di = + container_of(work, struct bq27xxx_device_info, + work.work); + + bq27xxx_battery_update(di); +} + /* * Get the average power in µW * Return < 0 if something fails. @@ -1985,10 +2008,8 @@ struct bq27xxx_device_info *di = power_supply_get_drvdata(psy); mutex_lock(&di->lock); - if (time_is_before_jiffies(di->last_update + 5 * HZ)) { - cancel_delayed_work_sync(&di->work); - bq27xxx_battery_poll(&di->work.work); - } + if (time_is_before_jiffies(di->last_update + 5 * HZ)) + bq27xxx_battery_update_unlocked(di); mutex_unlock(&di->lock); if (psp != POWER_SUPPLY_PROP_PRESENT && di->cache.flags < 0) @@ -1996,7 +2017,7 @@ switch (psp) { case POWER_SUPPLY_PROP_STATUS: - ret = bq27xxx_battery_current_and_status(di, NULL, val); + ret = bq27xxx_battery_current_and_status(di, NULL, val, NULL); break; case POWER_SUPPLY_PROP_VOLTAGE_NOW: ret = bq27xxx_battery_voltage(di, val); @@ -2005,7 +2026,7 @@ val->intval = di->cache.flags < 0 ? 0 : 1; break; case POWER_SUPPLY_PROP_CURRENT_NOW: - ret = bq27xxx_battery_current_and_status(di, val, NULL); + ret = bq27xxx_battery_current_and_status(di, val, NULL, NULL); break; case POWER_SUPPLY_PROP_CAPACITY: ret = bq27xxx_simple_value(di->cache.capacity, val); @@ -2078,8 +2099,8 @@ { struct bq27xxx_device_info *di = power_supply_get_drvdata(psy); - cancel_delayed_work_sync(&di->work); - schedule_delayed_work(&di->work, 0); + /* After charger plug in/out wait 0.5s for things to stabilize */ + mod_delayed_work(system_wq, &di->work, HZ / 2); } int bq27xxx_battery_setup(struct bq27xxx_device_info *di) @@ -2127,22 +2148,18 @@ void bq27xxx_battery_teardown(struct bq27xxx_device_info *di) { - /* - * power_supply_unregister call bq27xxx_battery_get_property which - * call bq27xxx_battery_poll. - * Make sure that bq27xxx_battery_poll will not call - * schedule_delayed_work again after unregister (which cause OOPS). - */ - poll_interval = 0; - - cancel_delayed_work_sync(&di->work); - - power_supply_unregister(di->bat); - mutex_lock(&bq27xxx_list_lock); list_del(&di->list); mutex_unlock(&bq27xxx_list_lock); + /* Set removed to avoid bq27xxx_battery_update() re-queuing the work */ + mutex_lock(&di->lock); + di->removed = true; + mutex_unlock(&di->lock); + + cancel_delayed_work_sync(&di->work); + + power_supply_unregister(di->bat); mutex_destroy(&di->lock); } EXPORT_SYMBOL_GPL(bq27xxx_battery_teardown); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/power/supply/bq27xxx_battery_i2c.c +++ linux-6.2.0/drivers/power/supply/bq27xxx_battery_i2c.c @@ -179,7 +179,7 @@ i2c_set_clientdata(client, di); if (client->irq) { - ret = devm_request_threaded_irq(&client->dev, client->irq, + ret = request_threaded_irq(client->irq, NULL, bq27xxx_battery_irq_handler_thread, IRQF_ONESHOT, di->name, di); @@ -209,6 +209,7 @@ { struct bq27xxx_device_info *di = i2c_get_clientdata(client); + free_irq(client->irq, di); bq27xxx_battery_teardown(di); mutex_lock(&battery_mutex); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/power/supply/mt6360_charger.c +++ linux-6.2.0/drivers/power/supply/mt6360_charger.c @@ -796,7 +796,9 @@ mci->vinovp = 6500000; mutex_init(&mci->chgdet_lock); platform_set_drvdata(pdev, mci); - devm_work_autocancel(&pdev->dev, &mci->chrdet_work, mt6360_chrdet_work); + ret = devm_work_autocancel(&pdev->dev, &mci->chrdet_work, mt6360_chrdet_work); + if (ret) + return dev_err_probe(&pdev->dev, ret, "Failed to set delayed work\n"); ret = device_property_read_u32(&pdev->dev, "richtek,vinovp-microvolt", &mci->vinovp); if (ret) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/power/supply/power_supply_leds.c +++ linux-6.2.0/drivers/power/supply/power_supply_leds.c @@ -34,8 +34,9 @@ led_trigger_event(psy->charging_full_trig, LED_FULL); led_trigger_event(psy->charging_trig, LED_OFF); led_trigger_event(psy->full_trig, LED_FULL); - led_trigger_event(psy->charging_blink_full_solid_trig, - LED_FULL); + /* Going from blink to LED on requires a LED_OFF event to stop blink */ + led_trigger_event(psy->charging_blink_full_solid_trig, LED_OFF); + led_trigger_event(psy->charging_blink_full_solid_trig, LED_FULL); break; case POWER_SUPPLY_STATUS_CHARGING: led_trigger_event(psy->charging_full_trig, LED_FULL); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/power/supply/sbs-charger.c +++ linux-6.2.0/drivers/power/supply/sbs-charger.c @@ -24,7 +24,7 @@ #define SBS_CHARGER_REG_STATUS 0x13 #define SBS_CHARGER_REG_ALARM_WARNING 0x16 -#define SBS_CHARGER_STATUS_CHARGE_INHIBITED BIT(1) +#define SBS_CHARGER_STATUS_CHARGE_INHIBITED BIT(0) #define SBS_CHARGER_STATUS_RES_COLD BIT(9) #define SBS_CHARGER_STATUS_RES_HOT BIT(10) #define SBS_CHARGER_STATUS_BATTERY_PRESENT BIT(14) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/regulator/mt6359-regulator.c +++ linux-6.2.0/drivers/regulator/mt6359-regulator.c @@ -951,9 +951,12 @@ struct regulator_config config = {}; struct regulator_dev *rdev; struct mt6359_regulator_info *mt6359_info; - int i, hw_ver; + int i, hw_ver, ret; + + ret = regmap_read(mt6397->regmap, MT6359P_HWCID, &hw_ver); + if (ret) + return ret; - regmap_read(mt6397->regmap, MT6359P_HWCID, &hw_ver); if (hw_ver >= MT6359P_CHIP_VER) mt6359_info = mt6359p_regulators; else only in patch2: unchanged: --- linux-6.2.0.orig/drivers/regulator/pca9450-regulator.c +++ linux-6.2.0/drivers/regulator/pca9450-regulator.c @@ -264,7 +264,7 @@ .vsel_reg = PCA9450_REG_BUCK2OUT_DVS0, .vsel_mask = BUCK2OUT_DVS0_MASK, .enable_reg = PCA9450_REG_BUCK2CTRL, - .enable_mask = BUCK1_ENMODE_MASK, + .enable_mask = BUCK2_ENMODE_MASK, .ramp_reg = PCA9450_REG_BUCK2CTRL, .ramp_mask = BUCK2_RAMP_MASK, .ramp_delay_table = pca9450_dvs_buck_ramp_table, @@ -502,7 +502,7 @@ .vsel_reg = PCA9450_REG_BUCK2OUT_DVS0, .vsel_mask = BUCK2OUT_DVS0_MASK, .enable_reg = PCA9450_REG_BUCK2CTRL, - .enable_mask = BUCK1_ENMODE_MASK, + .enable_mask = BUCK2_ENMODE_MASK, .ramp_reg = PCA9450_REG_BUCK2CTRL, .ramp_mask = BUCK2_RAMP_MASK, .ramp_delay_table = pca9450_dvs_buck_ramp_table, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/remoteproc/imx_dsp_rproc.c +++ linux-6.2.0/drivers/remoteproc/imx_dsp_rproc.c @@ -627,15 +627,19 @@ rmem = of_reserved_mem_lookup(it.node); if (!rmem) { + of_node_put(it.node); dev_err(dev, "unable to acquire memory-region\n"); return -EINVAL; } - if (imx_dsp_rproc_sys_to_da(priv, rmem->base, rmem->size, &da)) + if (imx_dsp_rproc_sys_to_da(priv, rmem->base, rmem->size, &da)) { + of_node_put(it.node); return -EINVAL; + } cpu_addr = devm_ioremap_wc(dev, rmem->base, rmem->size); if (!cpu_addr) { + of_node_put(it.node); dev_err(dev, "failed to map memory %p\n", &rmem->base); return -ENOMEM; } @@ -644,10 +648,12 @@ mem = rproc_mem_entry_init(dev, (void __force *)cpu_addr, (dma_addr_t)rmem->base, rmem->size, da, NULL, NULL, it.node->name); - if (mem) + if (mem) { rproc_coredump_add_segment(rproc, da, rmem->size); - else + } else { + of_node_put(it.node); return -ENOMEM; + } rproc_add_carveout(rproc, mem); } @@ -715,6 +721,191 @@ dev_err(dev, "%s: failed (%d, err:%d)\n", __func__, vqid, err); } +/* + * Custom memory copy implementation for i.MX DSP Cores + * + * The IRAM is part of the HiFi DSP. + * According to hw specs only 32-bits writes are allowed. + */ +static int imx_dsp_rproc_memcpy(void *dst, const void *src, size_t size) +{ + void __iomem *dest = (void __iomem *)dst; + const u8 *src_byte = src; + const u32 *source = src; + u32 affected_mask; + int i, q, r; + u32 tmp; + + /* destination must be 32bit aligned */ + if (!IS_ALIGNED((uintptr_t)dest, 4)) + return -EINVAL; + + q = size / 4; + r = size % 4; + + /* copy data in units of 32 bits at a time */ + for (i = 0; i < q; i++) + writel(source[i], dest + i * 4); + + if (r) { + affected_mask = GENMASK(8 * r, 0); + + /* + * first read the 32bit data of dest, then change affected + * bytes, and write back to dest. + * For unaffected bytes, it should not be changed + */ + tmp = readl(dest + q * 4); + tmp &= ~affected_mask; + + /* avoid reading after end of source */ + for (i = 0; i < r; i++) + tmp |= (src_byte[q * 4 + i] << (8 * i)); + + writel(tmp, dest + q * 4); + } + + return 0; +} + +/* + * Custom memset implementation for i.MX DSP Cores + * + * The IRAM is part of the HiFi DSP. + * According to hw specs only 32-bits writes are allowed. + */ +static int imx_dsp_rproc_memset(void *addr, u8 value, size_t size) +{ + void __iomem *tmp_dst = (void __iomem *)addr; + u32 tmp_val = value; + u32 affected_mask; + int q, r; + u32 tmp; + + /* destination must be 32bit aligned */ + if (!IS_ALIGNED((uintptr_t)addr, 4)) + return -EINVAL; + + tmp_val |= tmp_val << 8; + tmp_val |= tmp_val << 16; + + q = size / 4; + r = size % 4; + + while (q--) + writel(tmp_val, tmp_dst++); + + if (r) { + affected_mask = GENMASK(8 * r, 0); + + /* + * first read the 32bit data of addr, then change affected + * bytes, and write back to addr. + * For unaffected bytes, it should not be changed + */ + tmp = readl(tmp_dst); + tmp &= ~affected_mask; + + tmp |= (tmp_val & affected_mask); + writel(tmp, tmp_dst); + } + + return 0; +} + +/* + * imx_dsp_rproc_elf_load_segments() - load firmware segments to memory + * @rproc: remote processor which will be booted using these fw segments + * @fw: the ELF firmware image + * + * This function loads the firmware segments to memory, where the remote + * processor expects them. + * + * Return: 0 on success and an appropriate error code otherwise + */ +static int imx_dsp_rproc_elf_load_segments(struct rproc *rproc, const struct firmware *fw) +{ + struct device *dev = &rproc->dev; + const void *ehdr, *phdr; + int i, ret = 0; + u16 phnum; + const u8 *elf_data = fw->data; + u8 class = fw_elf_get_class(fw); + u32 elf_phdr_get_size = elf_size_of_phdr(class); + + ehdr = elf_data; + phnum = elf_hdr_get_e_phnum(class, ehdr); + phdr = elf_data + elf_hdr_get_e_phoff(class, ehdr); + + /* go through the available ELF segments */ + for (i = 0; i < phnum; i++, phdr += elf_phdr_get_size) { + u64 da = elf_phdr_get_p_paddr(class, phdr); + u64 memsz = elf_phdr_get_p_memsz(class, phdr); + u64 filesz = elf_phdr_get_p_filesz(class, phdr); + u64 offset = elf_phdr_get_p_offset(class, phdr); + u32 type = elf_phdr_get_p_type(class, phdr); + void *ptr; + + if (type != PT_LOAD || !memsz) + continue; + + dev_dbg(dev, "phdr: type %d da 0x%llx memsz 0x%llx filesz 0x%llx\n", + type, da, memsz, filesz); + + if (filesz > memsz) { + dev_err(dev, "bad phdr filesz 0x%llx memsz 0x%llx\n", + filesz, memsz); + ret = -EINVAL; + break; + } + + if (offset + filesz > fw->size) { + dev_err(dev, "truncated fw: need 0x%llx avail 0x%zx\n", + offset + filesz, fw->size); + ret = -EINVAL; + break; + } + + if (!rproc_u64_fit_in_size_t(memsz)) { + dev_err(dev, "size (%llx) does not fit in size_t type\n", + memsz); + ret = -EOVERFLOW; + break; + } + + /* grab the kernel address for this device address */ + ptr = rproc_da_to_va(rproc, da, memsz, NULL); + if (!ptr) { + dev_err(dev, "bad phdr da 0x%llx mem 0x%llx\n", da, + memsz); + ret = -EINVAL; + break; + } + + /* put the segment where the remote processor expects it */ + if (filesz) { + ret = imx_dsp_rproc_memcpy(ptr, elf_data + offset, filesz); + if (ret) { + dev_err(dev, "memory copy failed for da 0x%llx memsz 0x%llx\n", + da, memsz); + break; + } + } + + /* zero out remaining memory for this segment */ + if (memsz > filesz) { + ret = imx_dsp_rproc_memset(ptr + filesz, 0, memsz - filesz); + if (ret) { + dev_err(dev, "memset failed for da 0x%llx memsz 0x%llx\n", + da, memsz); + break; + } + } + } + + return ret; +} + static int imx_dsp_rproc_parse_fw(struct rproc *rproc, const struct firmware *fw) { if (rproc_elf_load_rsc_table(rproc, fw)) @@ -729,7 +920,7 @@ .start = imx_dsp_rproc_start, .stop = imx_dsp_rproc_stop, .kick = imx_dsp_rproc_kick, - .load = rproc_elf_load_segments, + .load = imx_dsp_rproc_elf_load_segments, .parse_fw = imx_dsp_rproc_parse_fw, .sanity_check = rproc_elf_sanity_check, .get_boot_addr = rproc_elf_get_boot_addr, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/remoteproc/imx_rproc.c +++ linux-6.2.0/drivers/remoteproc/imx_rproc.c @@ -541,6 +541,7 @@ rmem = of_reserved_mem_lookup(it.node); if (!rmem) { + of_node_put(it.node); dev_err(priv->dev, "unable to acquire memory-region\n"); return -EINVAL; } @@ -553,10 +554,12 @@ imx_rproc_mem_alloc, imx_rproc_mem_release, it.node->name); - if (mem) + if (mem) { rproc_coredump_add_segment(rproc, da, rmem->size); - else + } else { + of_node_put(it.node); return -ENOMEM; + } rproc_add_carveout(rproc, mem); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/remoteproc/rcar_rproc.c +++ linux-6.2.0/drivers/remoteproc/rcar_rproc.c @@ -62,13 +62,16 @@ rmem = of_reserved_mem_lookup(it.node); if (!rmem) { + of_node_put(it.node); dev_err(&rproc->dev, "unable to acquire memory-region\n"); return -EINVAL; } - if (rmem->base > U32_MAX) + if (rmem->base > U32_MAX) { + of_node_put(it.node); return -EINVAL; + } /* No need to translate pa to da, R-Car use same map */ da = rmem->base; @@ -79,8 +82,10 @@ rcar_rproc_mem_release, it.node->name); - if (!mem) + if (!mem) { + of_node_put(it.node); return -ENOMEM; + } rproc_add_carveout(rproc, mem); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/remoteproc/st_remoteproc.c +++ linux-6.2.0/drivers/remoteproc/st_remoteproc.c @@ -129,6 +129,7 @@ while (of_phandle_iterator_next(&it) == 0) { rmem = of_reserved_mem_lookup(it.node); if (!rmem) { + of_node_put(it.node); dev_err(dev, "unable to acquire memory-region\n"); return -EINVAL; } @@ -150,8 +151,10 @@ it.node->name); } - if (!mem) + if (!mem) { + of_node_put(it.node); return -ENOMEM; + } rproc_add_carveout(rproc, mem); index++; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/remoteproc/stm32_rproc.c +++ linux-6.2.0/drivers/remoteproc/stm32_rproc.c @@ -223,11 +223,13 @@ while (of_phandle_iterator_next(&it) == 0) { rmem = of_reserved_mem_lookup(it.node); if (!rmem) { + of_node_put(it.node); dev_err(dev, "unable to acquire memory-region\n"); return -EINVAL; } if (stm32_rproc_pa_to_da(rproc, rmem->base, &da) < 0) { + of_node_put(it.node); dev_err(dev, "memory region not valid %pa\n", &rmem->base); return -EINVAL; @@ -254,8 +256,10 @@ it.node->name); } - if (!mem) + if (!mem) { + of_node_put(it.node); return -ENOMEM; + } rproc_add_carveout(rproc, mem); index++; @@ -287,8 +291,16 @@ struct stm32_mbox *mb = container_of(work, struct stm32_mbox, vq_work); struct rproc *rproc = dev_get_drvdata(mb->client.dev); + mutex_lock(&rproc->lock); + + if (rproc->state != RPROC_RUNNING) + goto unlock_mutex; + if (rproc_vq_interrupt(rproc, mb->vq_id) == IRQ_NONE) dev_dbg(&rproc->dev, "no message found in vq%d\n", mb->vq_id); + +unlock_mutex: + mutex_unlock(&rproc->lock); } static void stm32_rproc_mb_callback(struct mbox_client *cl, void *data) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/s390/cio/device.c +++ linux-6.2.0/drivers/s390/cio/device.c @@ -1102,6 +1102,8 @@ cdev = sch_get_cdev(sch); if (cdev) dev_fsm_event(cdev, DEV_EVENT_VERIFY); + else + css_schedule_eval(sch->schid); } static void io_subchannel_terminate_path(struct subchannel *sch, u8 mask) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/s390/cio/qdio.h +++ linux-6.2.0/drivers/s390/cio/qdio.h @@ -95,7 +95,7 @@ " lgr 1,%[token]\n" " .insn rsy,0xeb000000008a,%[qs],%[ccq],0(%[state])" : [ccq] "+&d" (_ccq), [qs] "+&d" (_queuestart) - : [state] "d" ((unsigned long)state), [token] "d" (token) + : [state] "a" ((unsigned long)state), [token] "d" (token) : "memory", "cc", "1"); *count = _ccq & 0xff; *start = _queuestart & 0xff; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/scsi/lpfc/lpfc_debugfs.c +++ linux-6.2.0/drivers/scsi/lpfc/lpfc_debugfs.c @@ -2157,10 +2157,13 @@ char mybuf[64]; char *pbuf; int i; + size_t bsize; memset(mybuf, 0, sizeof(mybuf)); - if (copy_from_user(mybuf, buf, nbytes)) + bsize = min(nbytes, (sizeof(mybuf) - 1)); + + if (copy_from_user(mybuf, buf, bsize)) return -EFAULT; pbuf = &mybuf[0]; @@ -2181,7 +2184,7 @@ qp->lock_conflict.wq_access = 0; } } - return nbytes; + return bsize; } #endif only in patch2: unchanged: --- linux-6.2.0.orig/drivers/scsi/lpfc/lpfc_els.c +++ linux-6.2.0/drivers/scsi/lpfc/lpfc_els.c @@ -5428,18 +5428,20 @@ * these conditions and release the RPI. */ if (phba->sli_rev == LPFC_SLI_REV4 && - (vport && vport->port_type == LPFC_NPIV_PORT) && - !(ndlp->fc4_xpt_flags & SCSI_XPT_REGD) && - ndlp->nlp_flag & NLP_RELEASE_RPI) { - if (ndlp->nlp_state != NLP_STE_PLOGI_ISSUE && - ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) { - lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi); - spin_lock_irq(&ndlp->lock); - ndlp->nlp_rpi = LPFC_RPI_ALLOC_ERROR; - ndlp->nlp_flag &= ~NLP_RELEASE_RPI; - spin_unlock_irq(&ndlp->lock); - lpfc_drop_node(vport, ndlp); + vport && vport->port_type == LPFC_NPIV_PORT && + !(ndlp->fc4_xpt_flags & SCSI_XPT_REGD)) { + if (ndlp->nlp_flag & NLP_RELEASE_RPI) { + if (ndlp->nlp_state != NLP_STE_PLOGI_ISSUE && + ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) { + lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi); + spin_lock_irq(&ndlp->lock); + ndlp->nlp_rpi = LPFC_RPI_ALLOC_ERROR; + ndlp->nlp_flag &= ~NLP_RELEASE_RPI; + spin_unlock_irq(&ndlp->lock); + } } + + lpfc_drop_node(vport, ndlp); } /* Release the originating I/O reference. */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/scsi/qedi/qedi_main.c +++ linux-6.2.0/drivers/scsi/qedi/qedi_main.c @@ -2450,6 +2450,9 @@ qedi_ops->ll2->stop(qedi->cdev); } + cancel_delayed_work_sync(&qedi->recovery_work); + cancel_delayed_work_sync(&qedi->board_disable_work); + qedi_free_iscsi_pf_param(qedi); rval = qedi_ops->common->update_drv_state(qedi->cdev, false); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/soundwire/bus.c +++ linux-6.2.0/drivers/soundwire/bus.c @@ -571,9 +571,11 @@ { int ret; - ret = pm_runtime_resume_and_get(&slave->dev); - if (ret < 0 && ret != -EACCES) + ret = pm_runtime_get_sync(&slave->dev); + if (ret < 0 && ret != -EACCES) { + pm_runtime_put_noidle(&slave->dev); return ret; + } ret = sdw_nread_no_pm(slave, addr, count, val); @@ -595,9 +597,11 @@ { int ret; - ret = pm_runtime_resume_and_get(&slave->dev); - if (ret < 0 && ret != -EACCES) + ret = pm_runtime_get_sync(&slave->dev); + if (ret < 0 && ret != -EACCES) { + pm_runtime_put_noidle(&slave->dev); return ret; + } ret = sdw_nwrite_no_pm(slave, addr, count, val); @@ -1565,9 +1569,10 @@ sdw_modify_slave_status(slave, SDW_SLAVE_ALERT); - ret = pm_runtime_resume_and_get(&slave->dev); + ret = pm_runtime_get_sync(&slave->dev); if (ret < 0 && ret != -EACCES) { dev_err(&slave->dev, "Failed to resume device: %d\n", ret); + pm_runtime_put_noidle(&slave->dev); return ret; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/soundwire/dmi-quirks.c +++ linux-6.2.0/drivers/soundwire/dmi-quirks.c @@ -73,6 +73,23 @@ {} }; +/* + * Intel NUC M15 LAPRC510 and LAPRC710 + */ +static const struct adr_remap intel_rooks_county[] = { + /* rt711-sdca on link0 */ + { + 0x000020025d071100ull, + 0x000030025d071101ull + }, + /* rt1316-sdca on link2 */ + { + 0x000120025d071100ull, + 0x000230025d131601ull + }, + {} +}; + static const struct dmi_system_id adr_remap_quirk_table[] = { /* TGL devices */ { @@ -99,6 +116,14 @@ .driver_data = (void *)intel_tgl_bios, }, { + /* quirk used for NUC15 'Rooks County' LAPRC510 and LAPRC710 skews */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Intel(R) Client Systems"), + DMI_MATCH(DMI_PRODUCT_NAME, "LAPRC"), + }, + .driver_data = (void *)intel_rooks_county, + }, + { .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0A3E") only in patch2: unchanged: --- linux-6.2.0.orig/drivers/spi/spi-fsl-cpm.c +++ linux-6.2.0/drivers/spi/spi-fsl-cpm.c @@ -21,6 +21,7 @@ #include #include #include +#include #include "spi-fsl-cpm.h" #include "spi-fsl-lib.h" @@ -120,6 +121,21 @@ mspi->rx_dma = mspi->dma_dummy_rx; mspi->map_rx_dma = 0; } + if (t->bits_per_word == 16 && t->tx_buf) { + const u16 *src = t->tx_buf; + u16 *dst; + int i; + + dst = kmalloc(t->len, GFP_KERNEL); + if (!dst) + return -ENOMEM; + + for (i = 0; i < t->len >> 1; i++) + dst[i] = cpu_to_le16p(src + i); + + mspi->tx = dst; + mspi->map_tx_dma = 1; + } if (mspi->map_tx_dma) { void *nonconst_tx = (void *)mspi->tx; /* shut up gcc */ @@ -173,6 +189,13 @@ if (mspi->map_rx_dma) dma_unmap_single(dev, mspi->rx_dma, t->len, DMA_FROM_DEVICE); mspi->xfer_in_progress = NULL; + + if (t->bits_per_word == 16 && t->rx_buf) { + int i; + + for (i = 0; i < t->len; i += 2) + le16_to_cpus(t->rx_buf + i); + } } EXPORT_SYMBOL_GPL(fsl_spi_cpm_bufs_complete); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/staging/axis-fifo/axis-fifo.c +++ linux-6.2.0/drivers/staging/axis-fifo/axis-fifo.c @@ -103,17 +103,17 @@ * globals * ---------------------------- */ -static int read_timeout = 1000; /* ms to wait before read() times out */ -static int write_timeout = 1000; /* ms to wait before write() times out */ +static long read_timeout = 1000; /* ms to wait before read() times out */ +static long write_timeout = 1000; /* ms to wait before write() times out */ /* ---------------------------- * module command-line arguments * ---------------------------- */ -module_param(read_timeout, int, 0444); +module_param(read_timeout, long, 0444); MODULE_PARM_DESC(read_timeout, "ms to wait before blocking read() timing out; set to -1 for no timeout"); -module_param(write_timeout, int, 0444); +module_param(write_timeout, long, 0444); MODULE_PARM_DESC(write_timeout, "ms to wait before blocking write() timing out; set to -1 for no timeout"); /* ---------------------------- @@ -384,9 +384,7 @@ mutex_lock(&fifo->read_lock); ret = wait_event_interruptible_timeout(fifo->read_queue, ioread32(fifo->base_addr + XLLF_RDFO_OFFSET), - (read_timeout >= 0) ? - msecs_to_jiffies(read_timeout) : - MAX_SCHEDULE_TIMEOUT); + read_timeout); if (ret <= 0) { if (ret == 0) { @@ -528,9 +526,7 @@ ret = wait_event_interruptible_timeout(fifo->write_queue, ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) >= words_to_write, - (write_timeout >= 0) ? - msecs_to_jiffies(write_timeout) : - MAX_SCHEDULE_TIMEOUT); + write_timeout); if (ret <= 0) { if (ret == 0) { @@ -948,7 +944,17 @@ static int __init axis_fifo_init(void) { - pr_info("axis-fifo driver loaded with parameters read_timeout = %i, write_timeout = %i\n", + if (read_timeout >= 0) + read_timeout = msecs_to_jiffies(read_timeout); + else + read_timeout = MAX_SCHEDULE_TIMEOUT; + + if (write_timeout >= 0) + write_timeout = msecs_to_jiffies(write_timeout); + else + write_timeout = MAX_SCHEDULE_TIMEOUT; + + pr_info("axis-fifo driver loaded with parameters read_timeout = %li, write_timeout = %li\n", read_timeout, write_timeout); return platform_driver_register(&axis_fifo_driver); } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/staging/media/imx/imx-media-capture.c +++ linux-6.2.0/drivers/staging/media/imx/imx-media-capture.c @@ -501,14 +501,14 @@ struct v4l2_streamparm *a) { struct capture_priv *priv = video_drvdata(file); - struct v4l2_subdev_frame_interval fi; + struct v4l2_subdev_frame_interval fi = { + .pad = priv->src_sd_pad, + }; int ret; if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) return -EINVAL; - memset(&fi, 0, sizeof(fi)); - fi.pad = priv->src_sd_pad; ret = v4l2_subdev_call(priv->src_sd, video, g_frame_interval, &fi); if (ret < 0) return ret; @@ -523,14 +523,14 @@ struct v4l2_streamparm *a) { struct capture_priv *priv = video_drvdata(file); - struct v4l2_subdev_frame_interval fi; + struct v4l2_subdev_frame_interval fi = { + .pad = priv->src_sd_pad, + }; int ret; if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) return -EINVAL; - memset(&fi, 0, sizeof(fi)); - fi.pad = priv->src_sd_pad; fi.interval = a->parm.capture.timeperframe; ret = v4l2_subdev_call(priv->src_sd, video, s_frame_interval, &fi); if (ret < 0) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/staging/media/imx/imx-media-utils.c +++ linux-6.2.0/drivers/staging/media/imx/imx-media-utils.c @@ -432,15 +432,15 @@ struct v4l2_subdev_state *sd_state) { struct v4l2_mbus_framefmt *mf_try; - struct v4l2_subdev_format format; unsigned int pad; int ret; for (pad = 0; pad < sd->entity.num_pads; pad++) { - memset(&format, 0, sizeof(format)); + struct v4l2_subdev_format format = { + .pad = pad, + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; - format.pad = pad; - format.which = V4L2_SUBDEV_FORMAT_ACTIVE; ret = v4l2_subdev_call(sd, pad, get_fmt, NULL, &format); if (ret) continue; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/staging/media/omap4iss/iss_video.c +++ linux-6.2.0/drivers/staging/media/omap4iss/iss_video.c @@ -242,7 +242,9 @@ __iss_video_get_format(struct iss_video *video, struct v4l2_mbus_framefmt *format) { - struct v4l2_subdev_format fmt; + struct v4l2_subdev_format fmt = { + .which = V4L2_SUBDEV_FORMAT_ACTIVE, + }; struct v4l2_subdev *subdev; u32 pad; int ret; @@ -251,9 +253,7 @@ if (!subdev) return -EINVAL; - memset(&fmt, 0, sizeof(fmt)); fmt.pad = pad; - fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE; mutex_lock(&video->mutex); ret = v4l2_subdev_call(subdev, pad, get_fmt, NULL, &fmt); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/staging/sm750fb/sm750.c +++ linux-6.2.0/drivers/staging/sm750fb/sm750.c @@ -1000,7 +1000,7 @@ IORESOURCE_ROM_SHADOW; #endif - return aperture_remove_conflicting_devices(base, size, primary, "sm750_fb1"); + return aperture_remove_conflicting_devices(base, size, "sm750_fb1"); } static int lynxfb_pci_probe(struct pci_dev *pdev, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/tee/optee/smc_abi.c +++ linux-6.2.0/drivers/tee/optee/smc_abi.c @@ -984,8 +984,10 @@ invoke_fn(OPTEE_SMC_GET_ASYNC_NOTIF_VALUE, 0, 0, 0, 0, 0, 0, 0, &res); - if (res.a0) + if (res.a0) { + *value_valid = false; return 0; + } *value_valid = (res.a2 & OPTEE_SMC_ASYNC_NOTIF_VALUE_VALID); *value_pending = (res.a2 & OPTEE_SMC_ASYNC_NOTIF_VALUE_PENDING); return res.a1; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/tty/serial/8250/8250_core.c +++ linux-6.2.0/drivers/tty/serial/8250/8250_core.c @@ -1158,6 +1158,7 @@ uart->port.type = PORT_UNKNOWN; uart->port.dev = &serial8250_isa_devs->dev; uart->capabilities = 0; + serial8250_init_port(uart); serial8250_apply_quirks(uart); uart_add_one_port(&serial8250_reg, &uart->port); } else { only in patch2: unchanged: --- linux-6.2.0.orig/drivers/tty/serial/8250/8250_exar.c +++ linux-6.2.0/drivers/tty/serial/8250/8250_exar.c @@ -40,9 +40,13 @@ #define PCI_DEVICE_ID_COMMTECH_4224PCIE 0x0020 #define PCI_DEVICE_ID_COMMTECH_4228PCIE 0x0021 #define PCI_DEVICE_ID_COMMTECH_4222PCIE 0x0022 + #define PCI_DEVICE_ID_EXAR_XR17V4358 0x4358 #define PCI_DEVICE_ID_EXAR_XR17V8358 0x8358 +#define PCI_SUBDEVICE_ID_USR_2980 0x0128 +#define PCI_SUBDEVICE_ID_USR_2981 0x0129 + #define PCI_DEVICE_ID_SEALEVEL_710xC 0x1001 #define PCI_DEVICE_ID_SEALEVEL_720xC 0x1002 #define PCI_DEVICE_ID_SEALEVEL_740xC 0x1004 @@ -829,6 +833,15 @@ (kernel_ulong_t)&bd \ } +#define USR_DEVICE(devid, sdevid, bd) { \ + PCI_DEVICE_SUB( \ + PCI_VENDOR_ID_USR, \ + PCI_DEVICE_ID_EXAR_##devid, \ + PCI_VENDOR_ID_EXAR, \ + PCI_SUBDEVICE_ID_USR_##sdevid), 0, 0, \ + (kernel_ulong_t)&bd \ + } + static const struct pci_device_id exar_pci_tbl[] = { EXAR_DEVICE(ACCESSIO, COM_2S, pbn_exar_XR17C15x), EXAR_DEVICE(ACCESSIO, COM_4S, pbn_exar_XR17C15x), @@ -853,6 +866,10 @@ IBM_DEVICE(XR17C152, SATURN_SERIAL_ONE_PORT, pbn_exar_ibm_saturn), + /* USRobotics USR298x-OEM PCI Modems */ + USR_DEVICE(XR17C152, 2980, pbn_exar_XR17C15x), + USR_DEVICE(XR17C152, 2981, pbn_exar_XR17C15x), + /* Exar Corp. XR17C15[248] Dual/Quad/Octal UART */ EXAR_DEVICE(EXAR, XR17C152, pbn_exar_XR17C15x), EXAR_DEVICE(EXAR, XR17C154, pbn_exar_XR17C15x), only in patch2: unchanged: --- linux-6.2.0.orig/drivers/tty/serial/8250/8250_pci.c +++ linux-6.2.0/drivers/tty/serial/8250/8250_pci.c @@ -1940,6 +1940,8 @@ #define PCI_SUBDEVICE_ID_SIIG_DUAL_30 0x2530 #define PCI_VENDOR_ID_ADVANTECH 0x13fe #define PCI_DEVICE_ID_INTEL_CE4100_UART 0x2e66 +#define PCI_DEVICE_ID_ADVANTECH_PCI1600 0x1600 +#define PCI_DEVICE_ID_ADVANTECH_PCI1600_1611 0x1611 #define PCI_DEVICE_ID_ADVANTECH_PCI3620 0x3620 #define PCI_DEVICE_ID_ADVANTECH_PCI3618 0x3618 #define PCI_DEVICE_ID_ADVANTECH_PCIf618 0xf618 @@ -4105,6 +4107,9 @@ pciserial_resume_one); static const struct pci_device_id serial_pci_tbl[] = { + { PCI_VENDOR_ID_ADVANTECH, PCI_DEVICE_ID_ADVANTECH_PCI1600, + PCI_DEVICE_ID_ADVANTECH_PCI1600_1611, PCI_ANY_ID, 0, 0, + pbn_b0_4_921600 }, /* Advantech use PCI_DEVICE_ID_ADVANTECH_PCI3620 (0x3620) as 'PCI_SUBVENDOR_ID' */ { PCI_VENDOR_ID_ADVANTECH, PCI_DEVICE_ID_ADVANTECH_PCI3620, PCI_DEVICE_ID_ADVANTECH_PCI3620, 0x0001, 0, 0, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/tty/serial/arc_uart.c +++ linux-6.2.0/drivers/tty/serial/arc_uart.c @@ -606,10 +606,11 @@ } uart->baud = val; - port->membase = of_iomap(np, 0); - if (!port->membase) + port->membase = devm_platform_ioremap_resource(pdev, 0); + if (IS_ERR(port->membase)) { /* No point of dev_err since UART itself is hosed here */ - return -ENXIO; + return PTR_ERR(port->membase); + } port->irq = irq_of_parse_and_map(np, 0); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/tty/serial/qcom_geni_serial.c +++ linux-6.2.0/drivers/tty/serial/qcom_geni_serial.c @@ -1484,19 +1484,18 @@ platform_set_drvdata(pdev, port); port->handle_rx = console ? handle_rx_console : handle_rx_uart; - ret = uart_add_one_port(drv, uport); - if (ret) - return ret; - irq_set_status_flags(uport->irq, IRQ_NOAUTOEN); ret = devm_request_irq(uport->dev, uport->irq, qcom_geni_serial_isr, IRQF_TRIGGER_HIGH, port->name, uport); if (ret) { dev_err(uport->dev, "Failed to get IRQ ret %d\n", ret); - uart_remove_one_port(drv, uport); return ret; } + ret = uart_add_one_port(drv, uport); + if (ret) + return ret; + /* * Set pm_runtime status as ACTIVE so that wakeup_irq gets * enabled/disabled from dev_pm_arm_wake_irq during system only in patch2: unchanged: --- linux-6.2.0.orig/drivers/ufs/host/ufshcd-pci.c +++ linux-6.2.0/drivers/ufs/host/ufshcd-pci.c @@ -607,6 +607,7 @@ { PCI_VDEVICE(INTEL, 0x51FF), (kernel_ulong_t)&ufs_intel_adl_hba_vops }, { PCI_VDEVICE(INTEL, 0x54FF), (kernel_ulong_t)&ufs_intel_adl_hba_vops }, { PCI_VDEVICE(INTEL, 0x7E47), (kernel_ulong_t)&ufs_intel_mtl_hba_vops }, + { PCI_VDEVICE(INTEL, 0xA847), (kernel_ulong_t)&ufs_intel_mtl_hba_vops }, { } /* terminate list */ }; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/class/usbtmc.c +++ linux-6.2.0/drivers/usb/class/usbtmc.c @@ -1928,6 +1928,8 @@ if (request.req.wLength > USBTMC_BUFSIZE) return -EMSGSIZE; + if (request.req.wLength == 0) /* Length-0 requests are never IN */ + request.req.bRequestType &= ~USB_DIR_IN; is_in = request.req.bRequestType & USB_DIR_IN; only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/gadget/function/u_ether.c +++ linux-6.2.0/drivers/usb/gadget/function/u_ether.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "u_ether.h" @@ -978,6 +979,8 @@ dev = netdev_priv(net); snprintf(host_addr, len, "%pm", dev->host_mac); + string_upper(host_addr, host_addr); + return strlen(host_addr); } EXPORT_SYMBOL_GPL(gether_get_host_addr_cdc); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/host/uhci-pci.c +++ linux-6.2.0/drivers/usb/host/uhci-pci.c @@ -119,11 +119,13 @@ uhci->rh_numports = uhci_count_ports(hcd); - /* Intel controllers report the OverCurrent bit active on. - * VIA controllers report it active off, so we'll adjust the - * bit value. (It's not standardized in the UHCI spec.) + /* + * Intel controllers report the OverCurrent bit active on. VIA + * and ZHAOXIN controllers report it active off, so we'll adjust + * the bit value. (It's not standardized in the UHCI spec.) */ - if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_VIA) + if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_VIA || + to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_ZHAOXIN) uhci->oc_low = 1; /* HP's server management chip requires a longer port reset delay. */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/host/xhci-ring.c +++ linux-6.2.0/drivers/usb/host/xhci-ring.c @@ -276,6 +276,26 @@ trace_xhci_inc_enq(ring); } +static int xhci_num_trbs_to(struct xhci_segment *start_seg, union xhci_trb *start, + struct xhci_segment *end_seg, union xhci_trb *end, + unsigned int num_segs) +{ + union xhci_trb *last_on_seg; + int num = 0; + int i = 0; + + do { + if (start_seg == end_seg && end >= start) + return num + (end - start); + last_on_seg = &start_seg->trbs[TRBS_PER_SEGMENT - 1]; + num += last_on_seg - start; + start_seg = start_seg->next; + start = start_seg->trbs; + } while (i++ <= num_segs); + + return -EINVAL; +} + /* * Check to see if there's room to enqueue num_trbs on the ring and make sure * enqueue pointer will not advance into dequeue segment. See rules above. @@ -2140,6 +2160,7 @@ u32 trb_comp_code) { struct xhci_ep_ctx *ep_ctx; + int trbs_freed; ep_ctx = xhci_get_ep_ctx(xhci, ep->vdev->out_ctx, ep->ep_index); @@ -2209,9 +2230,15 @@ } /* Update ring dequeue pointer */ + trbs_freed = xhci_num_trbs_to(ep_ring->deq_seg, ep_ring->dequeue, + td->last_trb_seg, td->last_trb, + ep_ring->num_segs); + if (trbs_freed < 0) + xhci_dbg(xhci, "Failed to count freed trbs at TD finish\n"); + else + ep_ring->num_trbs_free += trbs_freed; ep_ring->dequeue = td->last_trb; ep_ring->deq_seg = td->last_trb_seg; - ep_ring->num_trbs_free += td->num_trbs - 1; inc_deq(xhci, ep_ring); return xhci_td_cleanup(xhci, td, ep_ring, td->status); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/host/xhci.h +++ linux-6.2.0/drivers/usb/host/xhci.h @@ -1895,7 +1895,7 @@ #define XHCI_DISABLE_SPARSE BIT_ULL(38) #define XHCI_SG_TRB_CACHE_SIZE_QUIRK BIT_ULL(39) #define XHCI_NO_SOFT_RETRY BIT_ULL(40) -#define XHCI_BROKEN_D3COLD BIT_ULL(41) +#define XHCI_BROKEN_D3COLD_S2I BIT_ULL(41) #define XHCI_EP_CTX_BROKEN_DCS BIT_ULL(42) #define XHCI_SUSPEND_RESUME_CLKS BIT_ULL(43) #define XHCI_RESET_TO_DEFAULT BIT_ULL(44) only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/misc/sisusbvga/sisusbvga.c +++ linux-6.2.0/drivers/usb/misc/sisusbvga/sisusbvga.c @@ -2778,6 +2778,20 @@ struct usb_device *dev = interface_to_usbdev(intf); struct sisusb_usb_data *sisusb; int retval = 0, i; + static const u8 ep_addresses[] = { + SISUSB_EP_GFX_IN | USB_DIR_IN, + SISUSB_EP_GFX_OUT | USB_DIR_OUT, + SISUSB_EP_GFX_BULK_OUT | USB_DIR_OUT, + SISUSB_EP_GFX_LBULK_OUT | USB_DIR_OUT, + SISUSB_EP_BRIDGE_IN | USB_DIR_IN, + SISUSB_EP_BRIDGE_OUT | USB_DIR_OUT, + 0}; + + /* Are the expected endpoints present? */ + if (!usb_check_bulk_endpoints(intf, ep_addresses)) { + dev_err(&intf->dev, "Invalid USB2VGA device\n"); + return -EINVAL; + } dev_info(&dev->dev, "USB2VGA dongle found at address %d\n", dev->devnum); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/usb/storage/scsiglue.c +++ linux-6.2.0/drivers/usb/storage/scsiglue.c @@ -406,22 +406,25 @@ ***********************************************************************/ /* Command timeout and abort */ -static int command_abort(struct scsi_cmnd *srb) +static int command_abort_matching(struct us_data *us, struct scsi_cmnd *srb_match) { - struct us_data *us = host_to_us(srb->device->host); - - usb_stor_dbg(us, "%s called\n", __func__); - /* * us->srb together with the TIMED_OUT, RESETTING, and ABORTING * bits are protected by the host lock. */ scsi_lock(us_to_host(us)); - /* Is this command still active? */ - if (us->srb != srb) { + /* is there any active pending command to abort ? */ + if (!us->srb) { scsi_unlock(us_to_host(us)); usb_stor_dbg(us, "-- nothing to abort\n"); + return SUCCESS; + } + + /* Does the command match the passed srb if any ? */ + if (srb_match && us->srb != srb_match) { + scsi_unlock(us_to_host(us)); + usb_stor_dbg(us, "-- pending command mismatch\n"); return FAILED; } @@ -444,6 +447,14 @@ return SUCCESS; } +static int command_abort(struct scsi_cmnd *srb) +{ + struct us_data *us = host_to_us(srb->device->host); + + usb_stor_dbg(us, "%s called\n", __func__); + return command_abort_matching(us, srb); +} + /* * This invokes the transport reset mechanism to reset the state of the * device @@ -455,6 +466,9 @@ usb_stor_dbg(us, "%s called\n", __func__); + /* abort any pending command before reset */ + command_abort_matching(us, NULL); + /* lock the device pointers and do the reset */ mutex_lock(&(us->dev_mutex)); result = us->transport_reset(us); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/video/aperture.c +++ linux-6.2.0/drivers/video/aperture.c @@ -43,7 +43,7 @@ * base = mem->start; * size = resource_size(mem); * - * ret = aperture_remove_conflicting_devices(base, size, false, "example"); + * ret = aperture_remove_conflicting_devices(base, size, "example"); * if (ret) * return ret; * @@ -274,7 +274,6 @@ * aperture_remove_conflicting_devices - remove devices in the given range * @base: the aperture's base address in physical memory * @size: aperture size in bytes - * @primary: also kick vga16fb if present; only relevant for VGA devices * @name: a descriptive name of the requesting driver * * This function removes devices that own apertures within @base and @size. @@ -283,7 +282,7 @@ * 0 on success, or a negative errno code otherwise */ int aperture_remove_conflicting_devices(resource_size_t base, resource_size_t size, - bool primary, const char *name) + const char *name) { /* * If a driver asked to unregister a platform device registered by @@ -298,19 +297,42 @@ aperture_detach_devices(base, size); - /* - * If this is the primary adapter, there could be a VGA device - * that consumes the VGA framebuffer I/O range. Remove this device - * as well. - */ - if (primary) - aperture_detach_devices(VGA_FB_PHYS_BASE, VGA_FB_PHYS_SIZE); - return 0; } EXPORT_SYMBOL(aperture_remove_conflicting_devices); /** + * __aperture_remove_legacy_vga_devices - remove legacy VGA devices of a PCI devices + * @pdev: PCI device + * + * This function removes VGA devices provided by @pdev, such as a VGA + * framebuffer or a console. This is useful if you have a VGA-compatible + * PCI graphics device with framebuffers in non-BAR locations. Drivers + * should acquire ownership of those memory areas and afterwards call + * this helper to release remaining VGA devices. + * + * If your hardware has its framebuffers accessible via PCI BARS, use + * aperture_remove_conflicting_pci_devices() instead. The function will + * release any VGA devices automatically. + * + * WARNING: Apparently we must remove graphics drivers before calling + * this helper. Otherwise the vga fbdev driver falls over if + * we have vgacon configured. + * + * Returns: + * 0 on success, or a negative errno code otherwise + */ +int __aperture_remove_legacy_vga_devices(struct pci_dev *pdev) +{ + /* VGA framebuffer */ + aperture_detach_devices(VGA_FB_PHYS_BASE, VGA_FB_PHYS_SIZE); + + /* VGA textmode console */ + return vga_remove_vgacon(pdev); +} +EXPORT_SYMBOL(__aperture_remove_legacy_vga_devices); + +/** * aperture_remove_conflicting_pci_devices - remove existing framebuffers for PCI devices * @pdev: PCI device * @name: a descriptive name of the requesting driver @@ -326,11 +348,13 @@ { bool primary = false; resource_size_t base, size; - int bar, ret; + int bar, ret = 0; -#ifdef CONFIG_X86 - primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW; -#endif + if (pdev == vga_default_device()) + primary = true; + + if (primary) + sysfb_disable(); for (bar = 0; bar < PCI_STD_NUM_BARS; ++bar) { if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) @@ -338,20 +362,18 @@ base = pci_resource_start(pdev, bar); size = pci_resource_len(pdev, bar); - ret = aperture_remove_conflicting_devices(base, size, primary, name); - if (ret) - return ret; + aperture_detach_devices(base, size); } /* - * WARNING: Apparently we must kick fbdev drivers before vgacon, - * otherwise the vga fbdev driver falls over. + * If this is the primary adapter, there could be a VGA device + * that consumes the VGA framebuffer I/O range. Remove this + * device as well. */ - ret = vga_remove_vgacon(pdev); - if (ret) - return ret; + if (primary) + ret = __aperture_remove_legacy_vga_devices(pdev); - return 0; + return ret; } EXPORT_SYMBOL(aperture_remove_conflicting_pci_devices); only in patch2: unchanged: --- linux-6.2.0.orig/drivers/video/fbdev/arcfb.c +++ linux-6.2.0/drivers/video/fbdev/arcfb.c @@ -523,7 +523,7 @@ info = framebuffer_alloc(sizeof(struct arcfb_par), &dev->dev); if (!info) - goto err; + goto err_fb_alloc; info->screen_base = (char __iomem *)videomemory; info->fbops = &arcfb_ops; @@ -535,7 +535,7 @@ if (!dio_addr || !cio_addr || !c2io_addr) { printk(KERN_WARNING "no IO addresses supplied\n"); - goto err1; + goto err_addr; } par->dio_addr = dio_addr; par->cio_addr = cio_addr; @@ -551,12 +551,12 @@ printk(KERN_INFO "arcfb: Failed req IRQ %d\n", par->irq); retval = -EBUSY; - goto err1; + goto err_addr; } } retval = register_framebuffer(info); if (retval < 0) - goto err1; + goto err_register_fb; platform_set_drvdata(dev, info); fb_info(info, "Arc frame buffer device, using %dK of video memory\n", videomemorysize >> 10); @@ -580,9 +580,12 @@ } return 0; -err1: + +err_register_fb: + free_irq(par->irq, info); +err_addr: framebuffer_release(info); -err: +err_fb_alloc: vfree(videomemory); return retval; } only in patch2: unchanged: --- linux-6.2.0.orig/drivers/video/fbdev/aty/radeon_base.c +++ linux-6.2.0/drivers/video/fbdev/aty/radeon_base.c @@ -2243,7 +2243,7 @@ resource_size_t base = pci_resource_start(pdev, 0); resource_size_t size = pci_resource_len(pdev, 0); - return aperture_remove_conflicting_devices(base, size, false, KBUILD_MODNAME); + return aperture_remove_conflicting_devices(base, size, KBUILD_MODNAME); } static int radeonfb_pci_register(struct pci_dev *pdev, only in patch2: unchanged: --- linux-6.2.0.orig/drivers/video/fbdev/hyperv_fb.c +++ linux-6.2.0/drivers/video/fbdev/hyperv_fb.c @@ -1078,7 +1078,7 @@ getmem_done: aperture_remove_conflicting_devices(info->apertures->ranges[0].base, info->apertures->ranges[0].size, - false, KBUILD_MODNAME); + KBUILD_MODNAME); if (gen2vm) { /* framebuffer is reallocated, clear screen_info to avoid misuse from kexec */ only in patch2: unchanged: --- linux-6.2.0.orig/drivers/video/fbdev/udlfb.c +++ linux-6.2.0/drivers/video/fbdev/udlfb.c @@ -27,6 +27,8 @@ #include